summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
-rw-r--r--libao2/ao_mpegpes.c2
-rw-r--r--libvo/vo_mpegpes.c4
-rw-r--r--stream/dvb_tune.c2
-rw-r--r--stream/stream_dvb.c2
-rw-r--r--stream/stream_pvr.c2
6 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index f7acba82d8..08f4e22655 100755
--- a/configure
+++ b/configure
@@ -4529,7 +4529,7 @@ echocheck "DVB"
if test "$_dvb" = auto ; then
_dvb=no
cat >$TMPC << EOF
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <time.h>
@@ -4559,7 +4559,7 @@ if test "$_dvbhead" = auto ; then
_dvbhead=no
cat >$TMPC << EOF
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <time.h>
diff --git a/libao2/ao_mpegpes.c b/libao2/ao_mpegpes.c
index ccb9d04553..14918d467e 100644
--- a/libao2/ao_mpegpes.c
+++ b/libao2/ao_mpegpes.c
@@ -11,7 +11,7 @@
#include "config.h"
#ifdef CONFIG_DVB
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#endif
diff --git a/libvo/vo_mpegpes.c b/libvo/vo_mpegpes.c
index 902be94f27..7858256f20 100644
--- a/libvo/vo_mpegpes.c
+++ b/libvo/vo_mpegpes.c
@@ -26,7 +26,7 @@
#ifdef CONFIG_DVB
#ifndef CONFIG_DVB_HEAD
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#include <stdio.h>
@@ -41,7 +41,7 @@
#else
#define true 1
#define false 0
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/ioctl.h>
#include <stdio.h>
diff --git a/stream/dvb_tune.c b/stream/dvb_tune.c
index 2235541fe1..64a2b0fb0a 100644
--- a/stream/dvb_tune.c
+++ b/stream/dvb_tune.c
@@ -27,7 +27,7 @@
#include <stdlib.h>
#include <ctype.h>
#include <sys/ioctl.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
diff --git a/stream/stream_dvb.c b/stream/stream_dvb.c
index 948bd70c81..5068fd0dbb 100644
--- a/stream/stream_dvb.c
+++ b/stream/stream_dvb.c
@@ -34,7 +34,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include <ctype.h>
#include <sys/ioctl.h>
#include <sys/time.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
diff --git a/stream/stream_pvr.c b/stream/stream_pvr.c
index 562ce705b7..8cc0eef6a0 100644
--- a/stream/stream_pvr.c
+++ b/stream/stream_pvr.c
@@ -36,7 +36,7 @@
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <inttypes.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <linux/types.h>
#include <linux/videodev2.h>