$NetBSD: patch-ae,v 1.3 2011/01/12 08:53:52 adam Exp $

--- mDNSShared/CommonServices.h.orig	2009-08-11 01:13:47.000000000 +0000
+++ mDNSShared/CommonServices.h
@@ -64,6 +64,24 @@
 	#endif
 #endif
 
+// NetBSD
+
+#if( !defined( TARGET_OS_NETBSD ) )
+	#if( defined( __NetBSD__ ) )
+		#define	TARGET_OS_NETBSD		1
+	#else
+		#define	TARGET_OS_NETBSD		0
+	#endif
+#endif
+
+#if( !defined( TARGET_OS_DRAGONFLY ) )
+	#if( defined( __DragonFly__ ) )
+		#define	TARGET_OS_DRAGONFLY		1
+	#else
+	#define	TARGET_OS_DRAGONFLY		0
+	#endif
+#endif
+
 // Solaris
 
 #if( !defined( TARGET_OS_SOLARIS ) )
@@ -90,7 +108,7 @@
 	
 	// No predefined macro for VxWorks so just assume VxWorks if nothing else is set.
 	
-	#if( !macintosh && !__MACH__  && !defined( __linux__ ) && !defined ( __SVR4 ) && !defined ( __sun ) && !defined( __PALMOS_TRAPS__ ) && !defined( __PALMOS_ARMLET__ ) && !defined( _WIN32 ) )
+	#if( !macintosh && !__MACH__  && !defined( __linux__ ) && !defined ( __SVR4 ) && !defined ( __sun ) && !defined( __PALMOS_TRAPS__ ) && !defined( __PALMOS_ARMLET__ ) && !defined( _WIN32 ) && !defined(__NetBSD__) && !defined(__DragonFly__))
 		#define	TARGET_OS_VXWORKS		1
 	#else
 		#define	TARGET_OS_VXWORKS		0
@@ -186,6 +204,19 @@
 	#include	<stdint.h>
 	#include	<arpa/inet.h>
 	
+#elif ( TARGET_OS_NETBSD )
+
+	// NetBSD
+
+	#include	<arpa/inet.h>
+
+#elif ( TARGET_OS_DRAGONFLY )
+
+	// DragonFly
+
+	#include	<arpa/inet.h>
+	#include	<sys/socket.h> // for AF_INET6 definition
+
 #elif( TARGET_OS_SOLARIS )
 	
 	// Solaris
@@ -455,7 +486,7 @@
 // - Windows
 
 #if( TARGET_LANGUAGE_C_LIKE )
-	#if( !defined(_SSIZE_T) && ( TARGET_OS_WIN32 || !defined( _BSD_SSIZE_T_DEFINED_ ) ) && !TARGET_OS_LINUX && !TARGET_OS_VXWORKS && !TARGET_OS_MAC)
+	#if( !defined(_SSIZE_T) && ( TARGET_OS_WIN32 || !defined( _BSD_SSIZE_T_DEFINED_ ) ) && !TARGET_OS_LINUX && !TARGET_OS_VXWORKS && !TARGET_OS_MAC && !TARGET_OS_NETBSD && !TARGET_OS_DRAGONFLY)
 		typedef int						ssize_t;
 	#endif
 #endif
