[FFmpeg-cvslog] r21326 - trunk/configure
mru
subversion
Tue Jan 19 16:59:04 CET 2010
Author: mru
Date: Tue Jan 19 16:59:04 2010
New Revision: 21326
Log:
configure: inlcude sys/types.h when checking sys/socket.h
Silly BSD systems need this despite POSIX requiring nothing of the
kind. Any system with sys/socket.h should also have sys/types.h,
so this is unlikely to break anything, and we already do this in
another place.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Tue Jan 19 16:52:43 2010 (r21325)
+++ trunk/configure Tue Jan 19 16:59:04 2010 (r21326)
@@ -2499,7 +2499,7 @@ texi2html -version > /dev/null 2>&1 && e
if enabled network; then
check_type "sys/types.h sys/socket.h" socklen_t
check_type netdb.h "struct addrinfo"
- check_type sys/socket.h "struct sockaddr_storage"
+ check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
# Prefer arpa/inet.h over winsock2
if check_header arpa/inet.h ; then
check_func closesocket
More information about the ffmpeg-cvslog
mailing list