]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
autoconf: Fix engine checks for openssl 1.1
authorJames Bottomley <James.Bottomley@HansenPartnership.com>
Sun, 29 Oct 2017 15:34:48 +0000 (15:34 +0000)
committerGert Doering <gert@greenie.muc.de>
Sat, 4 Nov 2017 17:53:44 +0000 (18:53 +0100)
In openssl 1.1, ENGINE_cleanup became a #define instead of a function
(because it's no longer needed as engines are self cleaning).  Update
the autoconf.ac script to check for ENGINE_cleanup as a declaration to
avoid falsely undefinig HAVE_OPENSSL_ENGINE in openssl 1.1+

Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Acked-by: Steffan Karger <steffan.karger@fox-it.com>
Message-Id: <1509291288.3116.14.camel@HansenPartnership.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg15676.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
configure.ac

index 6f59baefb4198107afbf7bfd391840e3ca000cd8..45aa5017b800ddc47e2294a069ba4dfde9dbe7bb 100644 (file)
@@ -899,6 +899,13 @@ if test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "openssl"; then
                ,
                [have_openssl_engine="no"; break]
        )
+       if test "${have_openssl_engine}" = "no"; then
+               AC_CHECK_DECL( [ENGINE_cleanup], [have_openssl_engine="yes"],,
+                       [[
+                               #include <openssl/engine.h>
+                       ]]
+               )
+       fi
        if test "${have_openssl_engine}" = "yes"; then
                AC_DEFINE([HAVE_OPENSSL_ENGINE], [1], [OpenSSL engine support available])
        fi