am7xxx-play: add a fallback definition for ENOTSUP
[libam7xxx.git] / examples / am7xxx-play.c
index 8a52ae0..49b5234 100644 (file)
 
 #include <am7xxx.h>
 
 
 #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 {
 static unsigned int run = 1;
 
 struct video_input_ctx {