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 | 444ea3c911f601a27a82dc2471370a82c91484ca (patch) | |
tree | cd592056979c1a90a9814b254927c8d1b4aa1827 /configure.in | |
parent | cda3b82d6dd8c6bfed7d550f4b149c037f8f19a9 (diff) | |
download | php-git-444ea3c911f601a27a82dc2471370a82c91484ca.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 e8557bcaad..7cbb0ac7cf 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 |