summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-14 23:50:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-14 23:50:29 +0000
commitf169b750b8bf231df6df776343acbd3e3979ada5 (patch)
tree3e796423531b2906ab1992d8cc6e8c1ea53fb1c7
parent86295eef136b3cc1c5d7b15c613ca1d0ae557216 (diff)
downloadgnurl-f169b750b8bf231df6df776343acbd3e3979ada5.tar.gz
gnurl-f169b750b8bf231df6df776343acbd3e3979ada5.tar.bz2
gnurl-f169b750b8bf231df6df776343acbd3e3979ada5.zip
check for ENGINE_load_builtin_engines() as well if engine is around
-rw-r--r--configure.ac8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 28ecb7cae..fb45ecf84 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])