diff options
author | Antony Dovgal <tony2001@php.net> | 2010-10-05 13:43:35 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2010-10-05 13:43:35 +0000 |
commit | 421b86ed5ee81f5669d698b5e94f7c96d1246514 (patch) | |
tree | 978f8996b216e044ca8a7b089aa2999f73372a11 /configure.in | |
parent | ccaff0e9941e55035292540746e9c8ea40d5463d (diff) | |
download | php-git-421b86ed5ee81f5669d698b5e94f7c96d1246514.tar.gz |
fix bug #50345 (nanosleep not detected properly on some solaris versions)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ba1f73181d..0efb672e63 100644 --- a/configure.in +++ b/configure.in @@ -611,7 +611,7 @@ asprintf \ ) dnl Some systems (like OpenSolaris) do not have nanosleep in libc -PHP_CHECK_FUNC(nanosleep, rt) +PHP_CHECK_FUNC_LIB(nanosleep, rt) dnl Check for getaddrinfo, should be a better way, but... dnl Also check for working getaddrinfo |