Skip to content

Commit 60fe575

Browse files
dilyanpalauzovcmb69
authored andcommitted
Fix #75725: ./configure: detecting RAND_egd
Closes GH-7668.
1 parent be1cb5a commit 60fe575

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
@@ -13,6 +13,9 @@ PHP NEWS
1313
- GD:
1414
. Fixed bug #71316 (libpng warning from imagecreatefromstring). (cmb)
1515

16+
- OpenSSL:
17+
. Fixed bug #75725 (./configure: detecting RAND_egd). (Dilyan Palauzov)
18+
1619
- Standard:
1720
. Fixed bug #81618 (dns_get_record fails on FreeBSD for missing type).
1821
(fsbruva)

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)