From: Yang Tse Date: Thu, 28 May 2009 16:43:17 +0000 (+0000) Subject: fix compilation on AIX X-Git-Tag: curl-7_19_6~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf2277e26359676bec7c4d2a8205eda0bc0044e5;p=thirdparty%2Fcurl.git fix compilation on AIX --- diff --git a/ares/adig.c b/ares/adig.c index 8b5cb2a80b..c218e46960 100644 --- a/ares/adig.c +++ b/ares/adig.c @@ -84,6 +84,11 @@ #define T_SRV 33 /* server selection */ #endif +/* AIX portability check */ +#ifndef T_NAPTR +#define T_NAPTR 35 /* naming authority pointer */ +#endif + struct nv { const char *name; int value;