mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-09 23:37:05 +02:00
Bug fix release http://php.net/archive/2017.php#id2017-03-16-1 - removes getrandom patch - adds libressl patch to allow configure with libressl
14 lines
572 B
Diff
14 lines
572 B
Diff
--- a/aclocal.m4
|
|
+++ b/aclocal.m4
|
|
@@ -2337,9 +2337,7 @@
|
|
|
|
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=1.1 openssl; then
|
|
- AC_MSG_ERROR([OpenSSL version >= 1.1 is not supported.])
|
|
- elif $PKG_CONFIG --atleast-version=0.9.8 openssl; then
|
|
+ if $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`
|