summaryrefslogtreecommitdiff
path: root/net/howl/patches/patch-ad
diff options
context:
space:
mode:
authormjl <mjl@pkgsrc.org>2004-11-20 14:43:32 +0000
committermjl <mjl@pkgsrc.org>2004-11-20 14:43:32 +0000
commitb7adfd544b9fdf9f942a35812b1df244e5b2d040 (patch)
tree9445eb34be5f098d1071663a17586da375352fe0 /net/howl/patches/patch-ad
parent10d44c56a9c80c1c3734073dac57fc08c32862e5 (diff)
downloadpkgsrc-b7adfd544b9fdf9f942a35812b1df244e5b2d040.tar.gz
Update howl to 0.9.7
- FIX: network interface index was not being initialized correctly on non-Linux platforms - FIX: sw_mdns_stub_init() was not initializing m_pending_ops - FIX: autoipd was not handling return code from fcntl correctly - FIX: portability patches from GNOME team - integration of patches necessary to build and run on Solaris - Separate Apple code into separate mDNSResponder library. - Add sw_discovery_query_record() to discovery API to query individual resource records - Support for discovery operations on specific network interfaces - Support for 64 bit Linux - FIX: client side memory leak when cancelling discovery operations - FIX: FreeBSD mDNSResponder didn't work with -a switch - FIX: mDNSResponder would occasionally crash when waking from sleep on Windows - FIX: mDNSResponder code for parsing config files had buffer overflow
Diffstat (limited to 'net/howl/patches/patch-ad')
-rw-r--r--net/howl/patches/patch-ad25
1 files changed, 0 insertions, 25 deletions
diff --git a/net/howl/patches/patch-ad b/net/howl/patches/patch-ad
deleted file mode 100644
index 2bb381ba355..00000000000
--- a/net/howl/patches/patch-ad
+++ /dev/null
@@ -1,25 +0,0 @@
- $NetBSD: patch-ad,v 1.1 2004/06/10 10:20:28 lha Exp $
-
-NetBSD needs SO_REUSEPORT not SO_REUSEADDR, should use "int" not
-"long" otherwise it wont work on big-endian machines.
-
---- src/lib/howl/socket.c 2004-06-09 20:10:51.000000000 +0200
-+++ src/lib/howl/socket.c.new 2004-06-09 20:10:59.000000000 +0200
-@@ -242,7 +242,7 @@
- sw_multicast_socket_super_init(
- sw_socket self)
- {
-- sw_ulong opt = 1;
-+ int opt = 1;
-
- SW_TRY(sw_socket_init(self, SW_FALSE, &sw_socket_udp_connect, &sw_socket_udp_send, &sw_socket_udp_sendto, &sw_socket_udp_recv, &sw_socket_udp_recvfrom, &sw_socket_udp_close));
-
-@@ -252,7 +252,7 @@
- return SW_E_FAIL;
- }
-
--#if defined(__APPLE__) || defined(__VXWORKS__)
-+#if defined(__APPLE__) || defined(__VXWORKS__) || defined(__NetBSD__)
- if (setsockopt(self->m_fd, SOL_SOCKET, SO_REUSEPORT, (char*) &opt, sizeof(opt)) == -1)
- #else
- if (setsockopt(self->m_fd, SOL_SOCKET, SO_REUSEADDR, (char*) &opt, sizeof(opt)) == -1)