File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ PHP 8.3 INTERNALS UPGRADE NOTES
35
35
2. Build system changes
36
36
========================
37
37
38
+ * Removed the HAVE_DEV_URANDOM compile time check. HAVE_DEV_URANDOM will
39
+ now never be defined. Any checks relying on HAVE_DEV_URANDOM should be
40
+ removed. Even with HAVE_DEV_URANDOM it was not guaranteed that
41
+ /dev/urandom is actually available at run time and thus a runtime
42
+ check needs to happen in all cases.
43
+
38
44
========================
39
45
3. Module changes
40
46
========================
Original file line number Diff line number Diff line change @@ -304,14 +304,6 @@ AC_MSG_RESULT($ZEND_SIGNALS)
304
304
305
305
] )
306
306
307
- AC_MSG_CHECKING ( whether / dev/urandom exists )
308
- if test -r "/dev/urandom" && test -c "/dev/urandom"; then
309
- AC_DEFINE ( [ HAVE_DEV_URANDOM] , 1 , [ Define if the target system has /dev/urandom device] )
310
- AC_MSG_RESULT ( yes )
311
- else
312
- AC_MSG_RESULT ( no )
313
- fi
314
-
315
307
AC_ARG_ENABLE ( [ gcc-global-regs] ,
316
308
[ AS_HELP_STRING ( [ --disable-gcc-global-regs] ,
317
309
[ whether to enable GCC global register variables] ) ] ,
You can’t perform that action at this time.
0 commit comments