diff options
author | Francis Dupont <fdupont@isc.org> | 2021-04-20 17:03:51 +0200 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2021-05-05 12:12:41 +0200 |
commit | baa19fbf7a61b0bcefd7552cc0497c6c04c3b25a (patch) | |
tree | 12a8869fd5a2a331125ed30c8f56aa5da6749891 /configure.ac | |
parent | Fix the PostgreSQL initial setup issues on FreeBSD (diff) | |
download | kea-baa19fbf7a61b0bcefd7552cc0497c6c04c3b25a.tar.xz kea-baa19fbf7a61b0bcefd7552cc0497c6c04c3b25a.zip |
[#1665] Ported TLS Botan boost support
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2b0c38cca7..a4201b361c 100644 --- a/configure.ac +++ b/configure.ac @@ -1425,12 +1425,15 @@ tls_support=no if test "x${CRYPTO_NAME}" = "xOpenSSL"; then tls_support=yes fi +if test "x${CRYPTO_NAME}" = "xBotan" && test "x$BOTAN_BOOST" = "xyes"; then + tls_support=yes +fi # Decide if the shell TLS test can work. ### This will be simpler when Python 2 support will be dropped. ca_tls_test=no if test "x$enable_shell" != "xno"; then - major=` echo $PYTHON_VERSION | cut -d '.' -f 1` + major=`echo $PYTHON_VERSION | cut -d '.' -f 1` if test "x$major" = "x3"; then ca_tls_test="$tls_support" else |