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 | |
| parent | 174f6b6f883862d427d52df5644a0d07883c3853 (diff) | |
| download | php-git-b46352043c69880e97d3487458a63467e355cc3a.tar.gz | |
Raise required OpenSSL version to 0.9.6.
| -rw-r--r-- | acinclude.m4 | 6 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 4 insertions, 4 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 diff --git a/configure.in b/configure.in index a5f80c641c..e5a5fc1e93 100644 --- a/configure.in +++ b/configure.in @@ -728,7 +728,7 @@ dnl dnl OpenSSL configure dnl PHP_ARG_WITH(openssl,for OpenSSL support, -[ --with-openssl[=DIR] Include OpenSSL support (requires OpenSSL >= 0.9.5) ]) +[ --with-openssl[=DIR] Include OpenSSL support (requires OpenSSL >= 0.9.6) ]) if test "$PHP_OPENSSL" != "no"; then ext_openssl_shared=$ext_shared |
