From 2868e7f99b42c407fbe1a0fa482e70a436f16315 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 27 Aug 2006 16:14:31 +0000 Subject: r17851: Fix a warning & attempt to fix the Tru64 build (This used to be commit b05cac3cb5b35fa305f3d881012cc8e7eca87bd8) --- source3/libaddns/dns.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'source3/libaddns/dns.h') diff --git a/source3/libaddns/dns.h b/source3/libaddns/dns.h index a95183a218..ed12966d7d 100644 --- a/source3/libaddns/dns.h +++ b/source3/libaddns/dns.h @@ -50,6 +50,30 @@ #include #endif +#ifdef HAVE_INTTYPES_H +#include + +#ifndef int16 +#define int16 int16_t +#endif + +#ifndef uint16 +#define uint16 uint16_t +#endif + +#ifndef int32 +#define int32 int32_t +#endif + +#ifndef uint32 +#define uint32 uint32_t +#endif +#endif + +#ifdef HAVE_KRB5_H +#include +#endif + #if HAVE_GSSAPI_H #include #elif HAVE_GSSAPI_GSSAPI_H -- cgit