pkgsrc/net/mDNSResponder/patches/patch-ae

81 lines
2.3 KiB
Text

--- ./mDNSShared/CommonServices.h.orig 2009-08-11 01:13:47.000000000 +0000
+++ ./mDNSShared/CommonServices.h 2011-08-29 03:29:36.000000000 +0000
@@ -64,6 +64,32 @@
#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_FREEBSD ) )
+ #if( defined( __FreeBSD__ ) )
+ #define TARGET_OS_FREEBSD 1
+ #else
+ #define TARGET_OS_FREEBSD 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 +116,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__) && !defined(__FreeBSD__))
#define TARGET_OS_VXWORKS 1
#else
#define TARGET_OS_VXWORKS 0
@@ -186,6 +212,27 @@
#include <stdint.h>
#include <arpa/inet.h>
+#elif ( TARGET_OS_NETBSD )
+
+ // NetBSD
+
+ #include <arpa/inet.h>
+
+#elif ( TARGET_OS_FREEBSD )
+
+ // FreeBSD
+
+ #include <stdint.h>
+ #include <arpa/inet.h>
+ #include <sys/socket.h> // for AF_INET6 definition
+
+#elif ( TARGET_OS_DRAGONFLY )
+
+ // DragonFly
+
+ #include <arpa/inet.h>
+ #include <sys/socket.h> // for AF_INET6 definition
+
#elif( TARGET_OS_SOLARIS )
// Solaris
@@ -455,7 +502,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 && !TARGET_OS_FREEBSD)
typedef int ssize_t;
#endif
#endif