diff options
author | Darren Tucker <dtucker@zip.com.au> | 2015-12-15 14:27:09 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2015-12-15 14:27:09 +1100 |
commit | c1d7e546f6029024f3257cc25c92f2bddf163125 (patch) | |
tree | 86a4c428cdbced931f57359d74abf813107175ac | |
parent | c6f5f01651526e88c00d988ce59d71f481ebac62 (diff) |
Include openssl crypto.h for SSLeay.
Patch from doughdemon via github.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 85e984375..3ef3c4293 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -2426,6 +2426,7 @@ if test "x$openssl" = "xyes" ; then | |||
2426 | [AC_LANG_PROGRAM([[ | 2426 | [AC_LANG_PROGRAM([[ |
2427 | #include <string.h> | 2427 | #include <string.h> |
2428 | #include <openssl/opensslv.h> | 2428 | #include <openssl/opensslv.h> |
2429 | #include <openssl/crypto.h> | ||
2429 | ]], [[ | 2430 | ]], [[ |
2430 | exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); | 2431 | exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); |
2431 | ]])], | 2432 | ]])], |