From: Michal Bielicki - cypromis Date: Wed, 31 Aug 2011 18:33:55 +0000 (+0200) Subject: fix of ldns for solaris and probably other platforms that actualy have b64_pton,... X-Git-Tag: v1.2-rc1~51^2~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f83473581974a3c9b597f018c7415baeeeef4ff;p=thirdparty%2Ffreeswitch.git fix of ldns for solaris and probably other platforms that actualy have b64_pton, thanks to math for the help --- diff --git a/libs/ldns/ldns/config.h.in b/libs/ldns/ldns/config.h.in index 473f1ff7c5..81783db33b 100644 --- a/libs/ldns/ldns/config.h.in +++ b/libs/ldns/ldns/config.h.in @@ -467,4 +467,10 @@ size_t strlcpy(char *dst, const char *src, size_t siz); #ifndef HAVE_STRTOUL #define strtoul (unsigned long)strtol #endif +#ifdef HAVE_B64_PTON +#define ldns_b64_pton b64_pton +#endif +#ifdef HAVE_B64_NTOP +#define ldns_b64_ntop b64_ntop +#endif