]> git.sesse.net Git - vlc/commitdiff
Fix #include
authorRémi Denis-Courmont <rem@videolan.org>
Sun, 20 Jan 2008 11:01:07 +0000 (11:01 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sun, 20 Jan 2008 11:01:07 +0000 (11:01 +0000)
modules/access/mms/mmstu.c
modules/control/netsync.c
modules/control/telnet.c

index e2f1dc60c4ede1f3d556a724194a41c8aff9d135..ce21dff92c5677935ec3306eb94f94dda199c685 100644 (file)
 #ifdef HAVE_SYS_STAT_H
 #   include <sys/stat.h>
 #endif
+#ifdef HAVE_POLL_H
+#   include <poll.h>
+#endif
 
 #include <vlc_network.h>
-#include <poll.h>
 #include "vlc_url.h"
 #include "asf.h"
 #include "buffer.h"
index 11ddf7767950a06e4393b2410a284fea675a3266..da6b40466fd84cedc242ab10b36d478915a85115 100644 (file)
@@ -38,6 +38,9 @@
 #ifdef HAVE_SYS_TYPES_H
 #   include <sys/types.h>
 #endif
+#ifdef HAVE_POLL_H
+#   include <poll.h>
+#endif
 
 #include <vlc_network.h>
 
index 363b11bee53a67a2f01fd767932147986385fb0a..6f1c2dc0359e1c8a27ff2a1f4b5836e45166f083 100644 (file)
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
 #endif
+#ifdef HAVE_POLL_H
+#   include <poll.h>
+#endif
 
 #include <vlc_network.h>
-#include <poll.h>
 #include <vlc_url.h>
 #include <vlc_vlm.h>