]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix configure, autoconf for #1406.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 16 Apr 2026 08:55:57 +0000 (10:55 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 16 Apr 2026 08:55:57 +0000 (10:55 +0200)
config.h.in
configure
doc/Changelog

index 3372ae4dc2418fab389b2425baf7d4034c7de80d..d14257fda80e95221a5efe6454546dc5e59d1549 100644 (file)
 #endif
 
 
-/* Define to 1 to prefer TLS crypto settings from the system. */
-#undef USE_SYSTEM_TLS
-
 /* Define this to enable server TCP Fast Open. */
 #undef USE_TCP_FASTOPEN
 
index 62bc2496c6819ebb17818d938576828af8f73a62..de41ecd1483d752586e13880a8894a81b5f7f614 100755 (executable)
--- a/configure
+++ b/configure
@@ -669,7 +669,6 @@ SOURCEFILE
 SOURCEDETERMINE
 IPSET_OBJ
 IPSET_SRC
-SYSTEM_TLS_DEFAULT
 IPSECMOD_HEADER
 IPSECMOD_OBJ
 CACHEDB_OBJ
@@ -937,7 +936,6 @@ enable_dnscrypt
 with_libsodium
 enable_cachedb
 enable_ipsecmod
-enable_system_tls
 enable_ipset
 with_libmnl
 enable_explicit_port_randomisation
@@ -1643,8 +1641,6 @@ Optional Features:
                           storage
   --enable-ipsecmod       Enable ipsecmod module that facilitates
                           opportunistic IPsec
-  --enable-system-tls     Enable preference of system configured TLS socket
-                          options
   --enable-ipset          enable ipset module
   --disable-explicit-port-randomisation
                           disable explicit source port randomisation and rely
@@ -25123,26 +25119,6 @@ printf "%s\n" "#define USE_IPSECMOD 1" >>confdefs.h
                ;;
 esac
 
-# check for system TLS preference if requested
-# Check whether --enable-system-tls was given.
-if test ${enable_system_tls+y}
-then :
-  enableval=$enable_system_tls;
-fi
-
-case "$enable_system_tls" in
-       yes)
-
-printf "%s\n" "#define USE_SYSTEM_TLS 1" >>confdefs.h
-
-               SYSTEM_TLS_DEFAULT="yes"
-               ;;
-       no|*)
-               SYSTEM_TLS_DEFAULT="no"
-               ;;
-esac
-
-
 # check for ipset if requested
 # Check whether --enable-ipset was given.
 if test ${enable_ipset+y}
index 8b24670984b431a1528222ca20e3f5c787953ddd..f8667c7751461fbf7f50d837eabf0db820aaf5cb 100644 (file)
@@ -12,6 +12,9 @@
          configure option, related to #1401, is no longer needed with the new
          option and the current default.
 
+16 April 2026: Wouter
+       - Fix configure, autoconf for #1406.
+
 15 April 2026: Wouter
        - Fix RFC7766 compliance when client sends EOF over TCP. It stops
          pending replies and closes. Thanks to Yuxiao Wu, Tsinghua