[SCM] libav/experimental: Check for sys/select.h and poll.h unconditionally, not just if ffserver is enabled. The headers are used throughout the code.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:27:33 UTC 2013


The following commit has been merged in the experimental branch:
commit bf6ce82d817eb59f8329a231ab846e57087c3bb0
Author: Diego Biurrun <diego at biurrun.de>
Date:   Thu Aug 14 14:03:32 2008 +0000

    Check for sys/select.h and poll.h unconditionally, not just if ffserver
    is enabled. The headers are used throughout the code.
    
    Originally committed as revision 14755 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/configure b/configure
index d7747f8..7dd76b7 100755
--- a/configure
+++ b/configure
@@ -1641,8 +1641,10 @@ check_header byteswap.h
 check_header conio.h
 check_header dlfcn.h
 check_header malloc.h
+check_header poll.h
 check_header sys/mman.h
 check_header sys/resource.h
+check_header sys/select.h
 check_header termios.h
 
 if ! enabled_any memalign memalign_hack && enabled need_memalign ; then
@@ -1652,13 +1654,6 @@ fi
 enabled  zlib && check_lib  zlib.h      zlibVersion -lz   || disable  zlib
 enabled bzlib && check_lib bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
 
-# ffserver uses poll(),
-# if it's not found we can emulate it using select().
-if enabled ffserver; then
-    check_header poll.h
-    check_header sys/select.h
-fi
-
 # check for some common methods of building with pthread support
 # do this before the optional library checks as some of them require pthreads
 if enabled pthreads; then

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list