iliaa Thu Jan 2 14:20:57 2003 EDT Modified files: /php4 configure.in acinclude.m4 Log: Raise required OpenSSL version to 0.9.6. Index: php4/configure.in diff -u php4/configure.in:1.410 php4/configure.in:1.411 --- php4/configure.in:1.410 Wed Jan 1 04:58:16 2003 +++ php4/configure.in Thu Jan 2 14:20:55 2003 @@ -1,4 +1,4 @@ -dnl ## $Id: configure.in,v 1.410 2003/01/01 09:58:16 wez Exp $ -*- sh -*- +dnl ## $Id: configure.in,v 1.411 2003/01/02 19:20:55 iliaa Exp $ -*- sh -*- dnl ## Process this file with autoconf to produce a configure script. divert(1) @@ -728,7 +728,7 @@ 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 Index: php4/acinclude.m4 diff -u php4/acinclude.m4:1.222 php4/acinclude.m4:1.223 --- php4/acinclude.m4:1.222 Wed Jan 1 04:58:16 2003 +++ php4/acinclude.m4 Thu Jan 2 14:20:57 2003 @@ -1,4 +1,4 @@ -dnl $Id: acinclude.m4,v 1.222 2003/01/01 09:58:16 wez Exp $ +dnl $Id: acinclude.m4,v 1.223 2003/01/02 19:20:57 iliaa Exp $ dnl dnl This file contains local autoconf functions. @@ -204,13 +204,13 @@ 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
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php