diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-08-01 18:27:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-08-01 18:27:59 +0000 |
commit | 668b65bd838daa6178ea72ce5f27056fba9a9e46 (patch) | |
tree | af5ffd9f693bdc73ba323d6fce5854e533757400 | |
parent | 2e11268ea9812cec9ca334c8c0e825dcfb64bef9 (diff) | |
download | ffmpeg-668b65bd838daa6178ea72ce5f27056fba9a9e46.tar.gz |
Only check for socklen_t if network support is enabled.
Originally committed as revision 14498 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1754,12 +1754,11 @@ fi texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html -check_type sys/socket.h socklen_t - ########################################## # Network check if enabled network; then + check_type sys/socket.h socklen_t # Prefer arpa/inet.h over winsock2 if check_header arpa/inet.h ; then check_func closesocket |