summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-06-01 16:42:37 -0300
committerJames Almer <jamrial@gmail.com>2015-06-01 17:49:21 -0300
commit7fc6545d5d7301196d1c23a45a24a9707bac0060 (patch)
tree0fa7a6dcd093fe6cb82026cd02cc024f1e8b7609 /configure
parent89fa32e5b469e61f5cfab984595620568f8d91e7 (diff)
configure: don't enable any tls protocol if network is disabled
This was a regression introduced with 4a006b9eb7e7d736fd00e6045b5612978ef6404b. Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index aabcdc253f..8460bc65c5 100755
--- a/configure
+++ b/configure
@@ -2652,6 +2652,9 @@ tcp_protocol_select="network"
tls_securetransport_protocol_deps="securetransport"
tls_gnutls_protocol_deps="gnutls !tls_securetransport_protocol"
tls_openssl_protocol_deps="openssl !tls_securetransport_protocol !tls_gnutls_protocol"
+tls_gnutls_protocol_select="tcp_protocol"
+tls_openssl_protocol_select="tcp_protocol"
+tls_securetransport_protocol_select="tcp_protocol"
tls_protocol_deps_any="tls_securetransport_protocol tls_gnutls_protocol tls_openssl_protocol"
tls_protocol_select="tcp_protocol"
udp_protocol_select="network"