File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 55- Core:
66 . Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer).
77 (zeriyoshi)
8+ . Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot)
89
910- MySQLnd:
1011 . Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb,
Original file line number Diff line number Diff line change 264264
265265dnl Detect musl libc
266266AC_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
268268then
269269 AC_MSG_RESULT ( yes )
270270 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
1414
1515dnl Skip pathconf and fpathconf check on musl libc due to limited implementation
1616dnl (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+ [ ] ,
1819 [ AC_CHECK_FUNCS ( pathconf fpathconf ) ] )
1920
2021 AC_MSG_CHECKING ( [ for working ttyname_r() implementation] )
You can’t perform that action at this time.
0 commit comments