diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2012-04-21 14:03:05 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2012-05-08 16:06:49 -0700 |
commit | 5699884c2e2b76c43df405b8613e40a953338738 (patch) | |
tree | c5b31be9246adf606e943b820e6cd2a15627054a /configure | |
parent | 38f06a1415cf8394cf60f7b7a3cad84a3659beb4 (diff) | |
download | ffmpeg-5699884c2e2b76c43df405b8613e40a953338738.tar.gz |
sctp: Initial tcp-alike sctp support with streams
Signed-off-by: Jordi Ortiz <nenjordi@gmail.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1110,6 +1110,7 @@ HAVE_LIST=" memalign mkstemp mmap + netinet_sctp_h poll_h posix_memalign round @@ -1513,6 +1514,7 @@ mmst_protocol_deps="network" rtmp_protocol_deps="!librtmp_protocol" rtmp_protocol_select="tcp_protocol" rtp_protocol_select="udp_protocol" +sctp_protocol_deps="network netinet_sctp_h" tcp_protocol_deps="network" tls_protocol_deps_any="openssl gnutls" tls_protocol_select="tcp_protocol" @@ -2846,6 +2848,7 @@ if enabled network; then check_type netinet/in.h "struct sockaddr_in6" 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 # Prefer arpa/inet.h over winsock2 if check_header arpa/inet.h ; then check_func closesocket |