diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-02 17:21:50 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-02-20 18:20:07 +0100 |
commit | 6adf4290ebcf65ac8243d74f34ba0a508f561633 (patch) | |
tree | abcf913178fd85c87d1dee7f0f1986561976b516 | |
parent | 9c029f67ca82147ddfa83a1546ee1e109e11fbd4 (diff) | |
download | ffmpeg-6adf4290ebcf65ac8243d74f34ba0a508f561633.tar.gz |
configure: Move inet_aton check into network function check block
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3791,6 +3791,7 @@ if ! disabled network; then check_type netinet/sctp.h "struct sctp_event_subscribe" check_func getaddrinfo $network_extralibs check_func getservbyport $network_extralibs + check_func inet_aton $network_extralibs # Prefer arpa/inet.h over winsock2 if check_header arpa/inet.h ; then check_func closesocket @@ -3825,7 +3826,6 @@ check_func getopt check_func getrusage check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss check_func gettimeofday -check_func inet_aton $network_extralibs check_func isatty check_func localtime_r check_func ${malloc_prefix}memalign && enable memalign |