diff options
author | foobar <sniper@php.net> | 2001-03-11 03:49:21 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-03-11 03:49:21 +0000 |
commit | 6795032cb8bfb902c8968f4ad57cb03a3104d11f (patch) | |
tree | beb9e34e69e6e61de85503bae2f63c0ded33eb75 /ext/standard/dns.c | |
parent | 85980139b217a1b967812e414041c30817bf07d2 (diff) | |
download | php-git-6795032cb8bfb902c8968f4ad57cb03a3104d11f.tar.gz |
HAVE_BINDLIB --> HAVE_LIBBIND
Diffstat (limited to 'ext/standard/dns.c')
-rw-r--r-- | ext/standard/dns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/dns.c b/ext/standard/dns.c index a2b6ebf501..fc530e1fcf 100644 --- a/ext/standard/dns.c +++ b/ext/standard/dns.c @@ -23,7 +23,7 @@ #include <sys/socket.h> #endif #ifdef PHP_WIN32 -#if HAVE_BINDLIB +#if HAVE_LIBBIND #ifndef WINNT #define WINNT 1 #endif @@ -167,7 +167,7 @@ char *php_gethostbyname(char *name) return estrdup(inet_ntoa(in)); } -#if HAVE_BINDLIB && !(defined(__BEOS__)||defined(PHP_WIN32)) +#if HAVE_LIBBIND && !(defined(__BEOS__)||defined(PHP_WIN32)) /* {{{ proto int checkdnsrr(string host [, string type]) Check DNS records corresponding to a given Internet host name or IP address */ |