diff options
author | Jani Taskinen <jani@php.net> | 2009-10-08 14:21:53 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-10-08 14:21:53 +0000 |
commit | b2ff362a5c29c9f951fc1231362e62d45c1ace19 (patch) | |
tree | fac1ae3a20baa5c413fe870a6b8135bce0cd8b9b /configure.in | |
parent | 4e6a1c2754df97d3a68d4808f72bb1901a6dc5f0 (diff) | |
download | php-git-b2ff362a5c29c9f951fc1231362e62d45c1ace19.tar.gz |
- Fixed bug #49809 (time_sleep_until is not available on solaris)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 79a5f11c4e..af89dac5fc 100644 --- a/configure.in +++ b/configure.in @@ -402,6 +402,8 @@ dnl Check for inet_aton dnl in -lc, -lbind and -lresolv 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 ------------------------------------------------------------------------- @@ -621,7 +623,6 @@ tzset \ unlockpt \ unsetenv \ usleep \ -nanosleep \ utime \ vsnprintf \ vasprintf \ |