summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-14 15:54:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-14 15:54:53 +0000
commit511729a3a206fc069626b39d6c08f1db4b56b0b0 (patch)
tree116d1aef40d0a418e1b3150abc2384b2fba20cd2 /configure
parent20e0b5c83156993a57667436fd96a03272f0e551 (diff)
downloadmpv-511729a3a206fc069626b39d6c08f1db4b56b0b0.tar.bz2
mpv-511729a3a206fc069626b39d6c08f1db4b56b0b0.tar.xz
Use '#include <poll.h>' instead of '#include <sys/poll.h>'.
It is the standard location as defined by the Open Group. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27463 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 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>