Overview
Comment: | Updated to ensure that the SNI functinality was available from the SSL library |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 |
Files: | files | file ages | folders |
SHA1: |
7f86ac3e48f5e7570eff5d1a701bc7a5 |
User & Date: | rkeene on 2016-12-06 16:53:46 |
Other Links: | branch diff | manifest | tags |
Context
2016-12-06
| ||
20:56 | Added a fallback for Tcl 8.4 with minimal support for loading the package check-in: 9c0b46c781 user: rkeene tags: tls-1-7 | |
16:53 | Updated to ensure that the SNI functinality was available from the SSL library check-in: 7f86ac3e48 user: rkeene tags: tls-1-7 | |
16:38 | Enabled a more tolerant (if confusing) mechanism for requiring Tcl 8.5 check-in: 0ee20f0650 user: rkeene tags: tls-1-7 | |
Changes
Modified aclocal/tcltls_openssl.m4 from [7142f8c416] to [488956d001].
︙ | ︙ | |||
122 123 124 125 126 127 128 129 130 131 132 133 134 | tcltls_ssl_tls1_2='false' ]) fi if test "$tcltls_ssl_tls1_2" = "false"; then AC_DEFINE(NO_TLS1_2, [1], [Define this to disable TLSv1.2 in OpenSSL support]) fi dnl Restore compile-altering variables LIBS="${SAVE_LIBS}" CFLAGS="${SAVE_CFLAGS}" CPPFLAGS="${SAVE_CPPFLAGS}" ]) | > > > > > > > > > > > > | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | tcltls_ssl_tls1_2='false' ]) fi if test "$tcltls_ssl_tls1_2" = "false"; then AC_DEFINE(NO_TLS1_2, [1], [Define this to disable TLSv1.2 in OpenSSL support]) fi AC_CACHE_VAL([tcltls_cv_func_tlsext_hostname], [ AC_CHECK_FUNC(SSL_set_tlsext_host_name, [ tcltls_cv_func_tlsext_hostname='yes' ], [ tcltls_cv_func_tlsext_hostname='no' ]) ]) if test "$tcltls_cv_func_tlsext_hostname" = 'no'; then AC_DEFINE([OPENSSL_NO_TLSEXT], [1], [Define this if your OpenSSL does not support the TLS Extension for SNI]) fi dnl Restore compile-altering variables LIBS="${SAVE_LIBS}" CFLAGS="${SAVE_CFLAGS}" CPPFLAGS="${SAVE_CPPFLAGS}" ]) |