]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2081] remove attempt to link with OpenSSL 1.1
authorAndrei Pavel <andrei@isc.org>
Fri, 10 Sep 2021 10:41:44 +0000 (13:41 +0300)
committerTomek Mrugalski <tomek@isc.org>
Mon, 20 Sep 2021 17:45:35 +0000 (17:45 +0000)
m4macros/ax_crypto.m4

index db619d75b71b4191ed72353c50ce2b621cdda006..e1b43f8f0ce258042494428b74890e933692f468 100644 (file)
@@ -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