[vlc-devel] [PATCH] logger: fix compilation on OS/2
KO Myung-Hun
komh78 at gmail.com
Mon Feb 23 14:27:57 CET 2015
-----
CC logger/console.lo
logger/console.c: In function 'Open':
logger/console.c:115:5: error: implicit declaration of function 'isatty' [-Werror=implicit-function-declaration]
if (isatty(STDERR_FILENO) && var_InheritBool(obj, "color"))
^
logger/console.c:115:16: error: 'STDERR_FILENO' undeclared (first use in this function)
if (isatty(STDERR_FILENO) && var_InheritBool(obj, "color"))
^
logger/console.c:115:16: note: each undeclared identifier is reported only once for each function it appears in
cc1.exe: some warnings being treated as errors
-----
---
modules/logger/console.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/logger/console.c b/modules/logger/console.c
index 2b877c3..45a8932 100644
--- a/modules/logger/console.c
+++ b/modules/logger/console.c
@@ -26,6 +26,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <inttypes.h>
+#include <unistd.h> /* isatty(), STDERR_FILNO */
#include <vlc_common.h>
#include <vlc_plugin.h>
--
1.8.5.2
More information about the vlc-devel
mailing list