Browse Source

Check for the presence of sys/select.h and conditionally #include it.

patch by Michael Kostylev, mik niipt ru

Originally committed as revision 11324 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Kostylev Diego Biurrun 17 years ago
parent
commit
81644c2ee0
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      configure
  2. +1
    -1
      libavformat/os_support.c

+ 2
- 0
configure View File

@@ -718,6 +718,7 @@ HAVE_LIST="
sdl_video_size
soundcard_h
sys_poll_h
sys_select_h
sys_soundcard_h
termios_h
threads
@@ -1563,6 +1564,7 @@ enabled zlib && check_lib zlib.h zlibVersion -lz || disable zlib
# if it's not found we can emulate it using select().
if enabled ffserver; then
check_header sys/poll.h
check_header sys/select.h
fi

# check for some common methods of building with pthread support


+ 1
- 1
libavformat/os_support.c View File

@@ -29,7 +29,7 @@
#ifndef HAVE_SYS_POLL_H
#ifdef HAVE_WINSOCK2_H
#include <winsock2.h>
#else
#elif defined (HAVE_SYS_SELECT_H)
#include <sys/select.h>
#endif
#endif


Loading…
Cancel
Save