mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
- Fixed bug #50345 (nanosleep not detected properly on some solaris versions)
This commit is contained in:
parent
4944354eec
commit
14c70e0959
2 changed files with 5 additions and 3 deletions
2
NEWS
2
NEWS
|
@ -26,6 +26,8 @@ PHP NEWS
|
||||||
- Fixed memory leak in extension loading when an error occurs on Windows.
|
- Fixed memory leak in extension loading when an error occurs on Windows.
|
||||||
(Pierre)
|
(Pierre)
|
||||||
|
|
||||||
|
- Fixed bug #50345 (nanosleep not detected properly on some solaris versions).
|
||||||
|
(Jani)
|
||||||
- Fixed bug #50340 (php.ini parser does not allow spaces in ini keys). (Jani)
|
- Fixed bug #50340 (php.ini parser does not allow spaces in ini keys). (Jani)
|
||||||
- Fixed bug #50285 (xmlrpc does not preserve keys in encoded indexed arrays).
|
- Fixed bug #50285 (xmlrpc does not preserve keys in encoded indexed arrays).
|
||||||
(Felipe)
|
(Felipe)
|
||||||
|
|
|
@ -387,9 +387,6 @@ dnl Check for inet_aton
|
||||||
dnl in -lc, -lbind and -lresolv
|
dnl in -lc, -lbind and -lresolv
|
||||||
PHP_CHECK_FUNC(inet_aton, resolv, bind)
|
PHP_CHECK_FUNC(inet_aton, resolv, bind)
|
||||||
|
|
||||||
dnl Some systems (like OpenSolaris) do not have nanosleep in libc
|
|
||||||
PHP_CHECK_FUNC(nanosleep, rt)
|
|
||||||
|
|
||||||
dnl Then headers.
|
dnl Then headers.
|
||||||
dnl -------------------------------------------------------------------------
|
dnl -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -614,6 +611,9 @@ vasprintf \
|
||||||
asprintf \
|
asprintf \
|
||||||
)
|
)
|
||||||
|
|
||||||
|
dnl Some systems (like OpenSolaris) do not have nanosleep in libc
|
||||||
|
AC_CACHE_CHECK([for nanosleep], ac_cv_func_nanosleep, [PHP_CHECK_FUNC_LIB(nanosleep, rt)])
|
||||||
|
|
||||||
dnl Check for getaddrinfo, should be a better way, but...
|
dnl Check for getaddrinfo, should be a better way, but...
|
||||||
dnl Also check for working getaddrinfo
|
dnl Also check for working getaddrinfo
|
||||||
AC_CACHE_CHECK([for getaddrinfo], ac_cv_func_getaddrinfo,
|
AC_CACHE_CHECK([for getaddrinfo], ac_cv_func_getaddrinfo,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue