diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-15 19:17:25 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-15 19:17:25 +0000 |
commit | ce95a3cb27a9e0fe669a81e778bf8166dba47e43 (patch) | |
tree | a37a9f806797fcd21e616c6e41293d5456ff37e8 /configure.ac | |
parent | 625717a9fb3815adc180680339719b5ce8174916 (diff) |
- Implement CERTFP
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2237 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index b63875c..fffe714 100644 --- a/configure.ac +++ b/configure.ac @@ -117,12 +117,12 @@ else fi AS_IF([test "$cf_enable_openssl" != "no"], - [AC_MSG_CHECKING(for OpenSSL 0.9.8s or above) + [AC_MSG_CHECKING(for OpenSSL 0.9.8 or above) AC_RUN_IFELSE([ AC_LANG_PROGRAM([ #include <openssl/opensslv.h> #include <stdlib.h>], - [[ exit(!(OPENSSL_VERSION_NUMBER >= 0x0090813f)); ]])], + [[ exit(!(OPENSSL_VERSION_NUMBER >= 0x00908000)); ]])], [cf_openssl_version_ok=yes], [cf_openssl_version_ok=no], [cf_openssl_version_ok=no]) |