$NetBSD: patch-ac,v 1.1.1.1 2004/06/05 19:03:12 nathanw Exp $

--- src/lib/howl/NotOSX/DNSServices.h.orig	2004-06-04 16:21:47.000000000 -0400
+++ src/lib/howl/NotOSX/DNSServices.h	2004-06-04 16:23:20.000000000 -0400
@@ -244,7 +244,11 @@
 	@abstract	32-bit unsigned data type.
 */
 
+#if defined(_LP64) || defined (__LP64__)
+typedef unsigned int		DNSUInt32;
+#else
 typedef unsigned long		DNSUInt32;
+#endif
 
 dns_check_compile_time( sizeof( DNSUInt32 ) == 4 );
 
@@ -254,7 +258,11 @@
 	@abstract	32-bit signed data type.
 */
 
+#if defined(_LP64) || defined (__LP64__)
+typedef signed int		DNSSInt32;
+#else
 typedef signed long		DNSSInt32;
+#endif
 
 dns_check_compile_time( sizeof( DNSSInt32 ) == 4 );
 
