From 146c3bd28c8dbee9c4b06465d9c9facab96b1e9b Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Mon, 26 Feb 2018 12:51:29 +1100 Subject: Check dlopen has RTLD_NOW before enabling pkcs11. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 0ba2ff44..7e6e1ebd 100644 --- a/configure.ac +++ b/configure.ac @@ -1876,7 +1876,10 @@ AC_ARG_ENABLE([pkcs11], if test "x$openssl" = "xyes" && test "x$disable_pkcs11" = "x"; then # PKCS#11 support requires dlopen() and co AC_SEARCH_LIBS([dlopen], [dl], - [AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support])] + AC_CHECK_DECL([RTLD_NOW], + AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support]), + [], [#include ] + ) ) fi -- cgit v1.2.3