diff options
author | Remi Collet <fedora@famillecollet.com> | 2017-02-21 16:27:51 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2017-02-22 08:39:07 +0100 |
commit | 015a80ef7bb5d691745b6fba35060d996c788a53 (patch) | |
tree | a5dc903418056d2c2d27980d069d57593552fcd7 /acinclude.m4 | |
parent | 9eaf551c86593697805b4f8f75a2d5b83b45fc1e (diff) | |
download | php-git-015a80ef7bb5d691745b6fba35060d996c788a53.tar.gz |
report about OpenSSL 1.1 not supported during configure
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 36bd1c22e5..25c3c7d66b 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2337,13 +2337,15 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ dnl If pkg-config is found try using it if test "$PHP_OPENSSL_DIR" = "yes" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then - if $PKG_CONFIG --atleast-version=0.9.8 openssl; then + if $PKG_CONFIG --atleast-version=1.1 openssl; then + AC_MSG_ERROR([OpenSSL version >= 1.1 is not supported.]) + elif $PKG_CONFIG --atleast-version=0.9.8 openssl; then found_openssl=yes OPENSSL_LIBS=`$PKG_CONFIG --libs openssl` OPENSSL_INCS=`$PKG_CONFIG --cflags-only-I openssl` OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` else - AC_MSG_ERROR([OpenSSL version 0.9.8 or greater required.]) + AC_MSG_ERROR([OpenSSL version >= 0.9.8 and < 1.1 required.]) fi if test -n "$OPENSSL_LIBS"; then |