summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-08 16:01:01 +0200
committerMartin Storsjö <martin@martin.st>2012-08-09 22:22:38 +0300
commit83c93fe74af013a1c376a39ee28759c89c483542 (patch)
tree52312b21b94e7d1855a3337381c9ce409530368a /configure
parentc72f12cbae93671cbd390eb51ce62573b443bf6c (diff)
configure: Check for a sctp struct instead of just the header
This fixes build failures on debian/kfreebsd, which has the sctp.h header, but it is currently broken (a cpp test succeeds, but a compile test fails), see http://bugs.debian.org/684330 for details. Also remove the checked item from HAVE_LIST, since the corresponding HAVE_* define isn't used by the source code. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index aeb9928f70..c5f4567006 100755
--- a/configure
+++ b/configure
@@ -1153,7 +1153,6 @@ HAVE_LIST="
mm_empty
mmap
nanosleep
- netinet_sctp_h
poll_h
posix_memalign
rdtsc
@@ -1605,7 +1604,7 @@ rtmpt_protocol_select="ffrtmphttp_protocol"
rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
rtp_protocol_select="udp_protocol"
-sctp_protocol_deps="network netinet_sctp_h"
+sctp_protocol_deps="network struct_sctp_event_subscribe"
tcp_protocol_deps="network"
tls_protocol_deps_any="openssl gnutls"
tls_protocol_select="tcp_protocol"
@@ -2979,7 +2978,7 @@ if enabled network; then
check_type poll.h "struct pollfd"
check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
- check_header netinet/sctp.h
+ check_type netinet/sctp.h "struct sctp_event_subscribe"
check_func getaddrinfo $network_extralibs
# Prefer arpa/inet.h over winsock2
if check_header arpa/inet.h ; then