From: Daniel Stenberg Date: Mon, 14 Feb 2005 23:50:29 +0000 (+0000) Subject: check for ENGINE_load_builtin_engines() as well if engine is around X-Git-Tag: curl-7_13_1~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f169b750b8bf231df6df776343acbd3e3979ada5;p=thirdparty%2Fcurl.git check for ENGINE_load_builtin_engines() as well if engine is around --- diff --git a/configure.ac b/configure.ac index 28ecb7caeb..fb45ecf84b 100644 --- a/configure.ac +++ b/configure.ac @@ -838,8 +838,12 @@ dnl ********************************************************************** if test X"$OPENSSL_ENABLED" = X"1"; then dnl If the ENGINE library seems to be around, check for the OpenSSL engine - dnl header, it is kind of "separated" from the main SSL check - AC_CHECK_FUNC(ENGINE_init, [ AC_CHECK_HEADERS(openssl/engine.h) ]) + dnl stuff, it is kind of "separated" from the main SSL check + AC_CHECK_FUNC(ENGINE_init, + [ + AC_CHECK_HEADERS(openssl/engine.h) + AC_CHECK_FUNCS( ENGINE_load_builtin_engines ) + ]) AC_MSG_CHECKING([CA cert bundle install path])