diff options
author | Andrei Pavel <andrei@isc.org> | 2021-09-10 12:41:44 +0200 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2021-09-20 19:45:35 +0200 |
commit | c19e6343c9899e8923a6bfe0de6c1398c99986b2 (patch) | |
tree | 25c007534d018b230e25387051a09c4a8452acea /m4macros/ax_crypto.m4 | |
parent | [#1307] Fixed ARM spelling errors (diff) | |
download | kea-c19e6343c9899e8923a6bfe0de6c1398c99986b2.tar.xz kea-c19e6343c9899e8923a6bfe0de6c1398c99986b2.zip |
[#2081] remove attempt to link with OpenSSL 1.1
Diffstat (limited to 'm4macros/ax_crypto.m4')
-rw-r--r-- | m4macros/ax_crypto.m4 | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/m4macros/ax_crypto.m4 b/m4macros/ax_crypto.m4 index db619d75b7..e1b43f8f0c 100644 --- a/m4macros/ax_crypto.m4 +++ b/m4macros/ax_crypto.m4 @@ -278,25 +278,6 @@ else ;; esac - # Search for an OpenSSL 11 compatibility library first. It should exist e.g. on CentOS 7. - if test "${use_openssl}" = "yes" ; then - for d in /usr /usr/local /usr/local/ssl /usr/local/opt/openssl /usr/pkg /usr/sfw; do - if test -f "${d}/include/openssl11/openssl/opensslv.h"; then - use_openssl="${d}" - openssl_headers="${d}/include/openssl11" - for l in lib lib64; do - if test -f "${d}/${l}/openssl11/libssl.so"; then - openssl_libraries="${d}/${l}/openssl11" - break - fi - done - if test -n "${openssl_headers}" && test -n "${openssl_libraries}"; then - break - fi - fi - done - fi - # Now search for the system OpenSSL library. if test "${use_openssl}" = "yes" ; then for d in /usr /usr/local /usr/local/ssl /usr/local/opt/openssl /usr/pkg /usr/sfw; do |