Skip to content

Commit b29e85a

Browse files
committed
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: Fix #75725: ./configure: detecting RAND_egd
2 parents 241bd3f + 60fe575 commit b29e85a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ PHP NEWS
1919
- GD:
2020
. Fixed bug #71316 (libpng warning from imagecreatefromstring). (cmb)
2121

22+
- OpenSSL:
23+
. Fixed bug #75725 (./configure: detecting RAND_egd). (Dilyan Palauzov)
24+
2225
- SPL:
2326
. Fixed bug #81587 (MultipleIterator Segmentation fault w/ SimpleXMLElement
2427
attached). (Nikita)

ext/openssl/config0.m4

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ if test "$PHP_OPENSSL" != "no"; then
2828
PHP_EVAL_LIBLINE($KERBEROS_LIBS, OPENSSL_SHARED_LIBADD)
2929
fi
3030

31-
AC_CHECK_FUNCS([RAND_egd])
32-
3331
PHP_SETUP_OPENSSL(OPENSSL_SHARED_LIBADD,
3432
[
3533
AC_DEFINE(HAVE_OPENSSL_EXT,1,[ ])
@@ -39,4 +37,5 @@ if test "$PHP_OPENSSL" != "no"; then
3937
if test "$PHP_SYSTEM_CIPHERS" != "no"; then
4038
AC_DEFINE(USE_OPENSSL_SYSTEM_CIPHERS,1,[ Use system default cipher list instead of hardcoded value ])
4139
fi
40+
AC_CHECK_FUNCS([RAND_egd])
4241
fi

0 commit comments

Comments
 (0)