From e4da452bcec7be43e19b552f2fdbecaff455a1dd Mon Sep 17 00:00:00 2001
From: Antonio Ospite <ospite@studenti.unina.it>
Date: Tue, 22 May 2012 16:16:15 +0200
Subject: [PATCH] am7xxx-play: add a fallback definition for ENOTSUP

---
 examples/am7xxx-play.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c
index 8a52ae0..49b5234 100644
--- a/examples/am7xxx-play.c
+++ b/examples/am7xxx-play.c
@@ -35,6 +35,13 @@
 
 #include <am7xxx.h>
 
+/* On some systems ENOTSUP is not defined, fallback to its value on
+ * linux which is equal to EOPNOTSUPP which is 95
+ */
+#ifndef ENOTSUP
+#define ENOTSUP 95
+#endif
+
 static unsigned int run = 1;
 
 struct video_input_ctx {
-- 
2.1.4