diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-07-17 19:48:55 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-07-17 19:48:55 +0000 |
commit | f0d8951cd200b9abeca00eb92b07ec309bca5739 (patch) | |
tree | 1df8837d4697862000e50eefa42657c422f1f804 /m4 | |
parent | d3c4da014fc5ea559c59ea019da10276985deebc (diff) |
- m_server.c: fixed build with LibreSSL which hasn't compression support
- ax_check_openssl.m4: 0.9.8m is now the minimum requirement
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@4248 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ax_check_openssl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ax_check_openssl.m4 b/m4/ax_check_openssl.m4 index cef7493..510b53d 100644 --- a/m4/ax_check_openssl.m4 +++ b/m4/ax_check_openssl.m4 @@ -61,12 +61,12 @@ else fi AS_IF([test "$cf_enable_openssl" != "no"], - [AC_MSG_CHECKING(for OpenSSL 0.9.8 or above) + [AC_MSG_CHECKING(for OpenSSL 0.9.8m or above) AC_RUN_IFELSE([ AC_LANG_PROGRAM([ #include <openssl/opensslv.h> #include <stdlib.h>], - [[ exit(!(OPENSSL_VERSION_NUMBER >= 0x00908000)); ]])], + [[ exit(!(OPENSSL_VERSION_NUMBER >= 0x009080dfL)); ]])], [cf_openssl_version_ok=yes], [cf_openssl_version_ok=no], [cf_openssl_version_ok=no]) |