Overview
Comment: | Fixed check for SSL_set_tlsext_host_name |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 |
Files: | files | file ages | folders |
SHA1: |
8df81b363aa46edf989a0aefa33a5470 |
User & Date: | rkeene on 2016-12-07 16:25:52 |
Other Links: | branch diff | manifest | tags |
Context
2016-12-07
| ||
16:41 | Set a default channel type version check-in: fe5bc0bc67 user: rkeene tags: tls-1-7 | |
16:25 | Fixed check for SSL_set_tlsext_host_name check-in: 8df81b363a user: rkeene tags: tls-1-7 | |
16:22 | Remove weird "force_off" configuration check-in: 7245859364 user: rkeene tags: tls-1-7 | |
Changes
Modified aclocal/tcltls_openssl.m4 from [60143a0cca] to [455408bceb].
︙ | ︙ | |||
109 110 111 112 113 114 115 | # include <openssl/conf.h> #endif ], [ (void)SSL_set_tlsext_host_name((void *) 0, (void *) 0); ])], [ AC_MSG_RESULT([yes]) tcltls_cv_func_tlsext_hostname='yes' | < > < < < < | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | # include <openssl/conf.h> #endif ], [ (void)SSL_set_tlsext_host_name((void *) 0, (void *) 0); ])], [ AC_MSG_RESULT([yes]) tcltls_cv_func_tlsext_hostname='yes' ], [ AC_MSG_RESULT([no]) tcltls_cv_func_tlsext_hostname='no' ]) AC_LANG_POP([C]) ]) 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 |
︙ | ︙ |