File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5
5
- Core:
6
6
. Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer).
7
7
(zeriyoshi)
8
+ . Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot)
8
9
9
10
- MySQLnd:
10
11
. Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb,
Original file line number Diff line number Diff line change 264
264
265
265
dnl Detect musl libc
266
266
AC_MSG_CHECKING ( [ whether we are using musl libc] )
267
- if command -v ldd >/dev/null && ldd --version 2>&1 | grep -q ^musl
267
+ if command -v ldd >/dev/null && ldd --version 2>&1 | grep ^musl >/dev/null 2>&1
268
268
then
269
269
AC_MSG_RESULT ( yes )
270
270
AC_DEFINE ( [ __MUSL__] , [ 1] , [ Define when using musl libc] )
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ if test "$PHP_POSIX" = "yes"; then
14
14
15
15
dnl Skip pathconf and fpathconf check on musl libc due to limited implementation
16
16
dnl (first argument is not validated and has different error).
17
- AS_IF ( [ command -v ldd >/dev/null && ldd --version 2>&1 | grep -q "^musl"] ,[ ] ,
17
+ AS_IF ( [ command -v ldd >/dev/null && ldd --version 2>&1 | grep ^musl >/dev/null 2>&1] ,
18
+ [ ] ,
18
19
[ AC_CHECK_FUNCS ( pathconf fpathconf ) ] )
19
20
20
21
AC_MSG_CHECKING ( [ for working ttyname_r() implementation] )
You can’t perform that action at this time.
0 commit comments