Skip to content

Commit

Permalink
- Fixed bug #50345 (nanosleep not detected properly on some solaris v…
Browse files Browse the repository at this point in the history
…ersions)
  • Loading branch information
Jani Taskinen committed Dec 2, 2009
1 parent eb3a2ee commit 84bc7c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions NEWS
Expand Up @@ -6,11 +6,14 @@ PHP NEWS

- Improved fix for bug #50006 (Segfault caused by uksort()). (Stas)

- Fixed bug #50345 (nanosleep not detected properly on some solaris versions).
(Jani)
- Fixed bug #50266 (conflicting types for llabs). (Jani)
- Fixed bug #50168 (FastCGI fails with wrong error on HEAD request to
non-existent file). (Dmitry)
- Fixed bug #49660 (libxml 2.7.3+ limits text nodes to 10MB). (Felipe)


27 Nov 2009, PHP 5.2.12RC3
- Fixed break in the build chain introduced in 5.2.12RC2 (Jani)

Expand Down
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -359,9 +359,6 @@ dnl in -lc, -lbind and -lresolv
PHP_CHECK_FUNC(inet_aton, resolv, bind)
PHP_CHECK_FUNC(dn_skipname, resolv, bind)

dnl Some systems (like OpenSolaris) do not have nanosleep in libc
PHP_CHECK_FUNC(nanosleep, rt)

dnl Then headers.
dnl -------------------------------------------------------------------------

Expand Down Expand Up @@ -594,6 +591,9 @@ utime \
vsnprintf \
)

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 Also check for working getaddrinfo
AC_CACHE_CHECK([for getaddrinfo], ac_cv_func_getaddrinfo,
Expand Down

0 comments on commit 84bc7c4

Please sign in to comment.