diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-02 19:20:57 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-02 19:20:57 +0000 |
commit | b46352043c69880e97d3487458a63467e355cc3a (patch) | |
tree | 1bdcf9a3846296f03fe82016a02884b447f51a80 /acinclude.m4 | |
parent | 174f6b6f883862d427d52df5644a0d07883c3853 (diff) | |
download | php-git-b46352043c69880e97d3487458a63467e355cc3a.tar.gz |
Raise required OpenSSL version to 0.9.6.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index b4380881e4..e328b9adf5 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -204,13 +204,13 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ AC_MSG_CHECKING([for OpenSSL version]) AC_EGREP_CPP(yes,[ #include <openssl/opensslv.h> -#if OPENSSL_VERSION_NUMBER >= 0x0090500fL +#if OPENSSL_VERSION_NUMBER >= 0x0090600fL yes #endif ],[ - AC_MSG_RESULT([>= 0.9.5]) + AC_MSG_RESULT([>= 0.9.6]) ],[ - AC_MSG_ERROR([OpenSSL version 0.9.5 or greater required.]) + AC_MSG_ERROR([OpenSSL version 0.9.6 or greater required.]) ]) CPPFLAGS=$old_CPPFLAGS |