summaryrefslogtreecommitdiff
path: root/lib/memdebug.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-07-04 02:27:11 +0000
committerYang Tse <yangsita@gmail.com>2006-07-04 02:27:11 +0000
commit55138753c63cb7a6d1191028df25b689b73baefa (patch)
tree92fd56a386080ea72041fbe4430387e9c7456ffd /lib/memdebug.h
parent43369b8096d14950f73a92126c4c5ba0bac4cd4a (diff)
downloadcurl-55138753c63cb7a6d1191028df25b689b73baefa.tar.gz
Test HAVE_GETNAMEINFO definition before using GETNAMEINFO_XXX definitions.
Diffstat (limited to 'lib/memdebug.h')
-rw-r--r--lib/memdebug.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/memdebug.h b/lib/memdebug.h
index 4d965fb1f..d64defed6 100644
--- a/lib/memdebug.h
+++ b/lib/memdebug.h
@@ -96,10 +96,14 @@ CURL_EXTERN int curl_fclose(FILE *file, int line, const char *source);
#define getaddrinfo(host,serv,hint,res) \
curl_dogetaddrinfo(host,serv,hint,res,__LINE__,__FILE__)
#endif
+
+#ifdef HAVE_GETNAMEINFO
#undef getnameinfo
#define getnameinfo(sa,salen,host,hostlen,serv,servlen,flags) \
curl_dogetnameinfo(sa,salen,host,hostlen,serv,servlen,flags, __LINE__, \
__FILE__)
+#endif
+
#undef freeaddrinfo
#define freeaddrinfo(data) \
curl_dofreeaddrinfo(data,__LINE__,__FILE__)