diff options
author | Scott MacVicar <scottmac@php.net> | 2009-08-11 22:07:35 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2009-08-11 22:07:35 +0000 |
commit | 050653466fa1cbe7854699c2140483037da7a198 (patch) | |
tree | 1de14f48466e4d73cf44fba4d2545213da4eb640 /ext/standard/config.m4 | |
parent | 6ffe4b2eff016022d7eda20d4cadb48f429d0486 (diff) | |
download | php-git-050653466fa1cbe7854699c2140483037da7a198.tar.gz |
Merge chanes from head to improve DNS on OSX and allow usage of bind9 stuff with the bind8 compatibility layer.
Diffstat (limited to 'ext/standard/config.m4')
-rw-r--r-- | ext/standard/config.m4 | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index 8b793c619b..e0f04e0bd4 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -247,21 +247,18 @@ fi dnl dnl Detect library functions needed by php dns_xxx functions -dnl ext/standard/php_dns.h will collect these in a single define: HAVE_DNS_FUNCS +dnl ext/standard/php_dns.h will collect these in a single define: HAVE_FULL_DNS_FUNCS dnl -PHP_CHECK_FUNC(res_nmkquery, resolv, bind, socket) -PHP_CHECK_FUNC(res_nsend, resolv, bind, socket) -PHP_CHECK_FUNC(res_search, resolv, bind, socket) +PHP_CHECK_FUNC(res_nsearch, resolv, bind, socket) +PHP_CHECK_FUNC(dns_search, resolv, bind, socket) PHP_CHECK_FUNC(dn_expand, resolv, bind, socket) PHP_CHECK_FUNC(dn_skipname, resolv, bind, socket) dnl -dnl These are old deprecated functions, a single define of HAVE_DEPRECATED_DNS_FUNCS -dnl will be set in ext/standard/php_dns.h +dnl These are old deprecated functions dnl -PHP_CHECK_FUNC(res_mkquery, resolv, bind, socket) -PHP_CHECK_FUNC(res_send, resolv, bind, socket) +PHP_CHECK_FUNC(res_search, resolv, bind, socket) dnl dnl Check if atof() accepts NAN |