summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorLuca Abeni <lucabe72@email.it>2008-02-13 12:51:14 +0000
committerLuca Abeni <lucabe72@email.it>2008-02-13 12:51:14 +0000
commitf8cda19ee6285cc83471f87357a1c6f6076706ef (patch)
treeb5795202deeaa819074e9b0b3f51b95ebef16b0c /configure
parentd435e520d813c5f3e0c06359e145432a3325d880 (diff)
Include poll.h instead of sys/poll.h
Originally committed as revision 11924 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 27db60cd99..b8f564878f 100755
--- a/configure
+++ b/configure
@@ -745,7 +745,7 @@ HAVE_LIST="
sdl_video_size
socklen_t
soundcard_h
- sys_poll_h
+ poll_h
sys_select_h
sys_soundcard_h
termios_h
@@ -1595,7 +1595,7 @@ enabled zlib && check_lib zlib.h zlibVersion -lz || disable zlib
# ffserver uses poll(),
# if it's not found we can emulate it using select().
if enabled ffserver; then
- check_header sys/poll.h
+ check_header poll.h
check_header sys/select.h
fi