summaryrefslogtreecommitdiff
path: root/net/howl/patches
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2005-01-08 06:24:41 +0000
committerschmonz <schmonz@pkgsrc.org>2005-01-08 06:24:41 +0000
commite581808d26beb76377e1e55e60a82ee4ea294ed2 (patch)
treee5a33f07f64421c0b47baf181f13f58013e5cafd /net/howl/patches
parent2600405a8af57ab3ea210ccdb046f35526215699 (diff)
downloadpkgsrc-e581808d26beb76377e1e55e60a82ee4ea294ed2.tar.gz
Update to 0.9.8, mostly from Ian Zagorskih on tech-pkg@. Changes:
- FIX: shared library naming scheme included the howl version number (jdub@perkypants.org) - FIX: pkgconfig include pathing included the howl version number (eloli@hotmail.com) - FIX: howl_config.h was being included when compiling apps that use howl (sebastien.estienne@gmail.com) - FIX: publish sample had reversed callback parameters (sebastien.estienne@gmail.com) - nicer printing of text records in browse example (sebastien.estienne@gmail.com) Additional pkgsrc changes by me: * Create a "howl" user and group. * Add rc.d script. * Format DESCR.
Diffstat (limited to 'net/howl/patches')
-rw-r--r--net/howl/patches/patch-aa12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/howl/patches/patch-aa b/net/howl/patches/patch-aa
index fefbf802254..5764134d3ec 100644
--- a/net/howl/patches/patch-aa
+++ b/net/howl/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.2 2004/11/20 14:43:32 mjl Exp $
+$NetBSD: patch-aa,v 1.3 2005/01/08 06:24:41 schmonz Exp $
---- src/lib/howl/socket.c.orig 2004-11-20 14:57:33.000000000 +0100
-+++ src/lib/howl/socket.c 2004-11-20 14:57:38.000000000 +0100
-@@ -261,7 +261,7 @@
+--- src/lib/howl/socket.c.orig 2004-10-27 13:39:52.000000000 -0400
++++ src/lib/howl/socket.c
+@@ -261,7 +261,7 @@ sw_multicast_socket_super_init(
err = sw_translate_error(self->m_desc != SW_INVALID_SOCKET, sw_socket_errno());
sw_check_okay_log(err, exit);
@@ -11,7 +11,7 @@ $NetBSD: patch-aa,v 1.2 2004/11/20 14:43:32 mjl Exp $
res = setsockopt(self->m_desc, SOL_SOCKET, SO_REUSEPORT, (char*) &opt, sizeof(opt));
#else
res = setsockopt(self->m_desc, SOL_SOCKET, SO_REUSEADDR, (char*) &opt, sizeof(opt));
-@@ -375,6 +375,7 @@
+@@ -375,6 +375,7 @@ sw_socket_join_multicast_group(
#endif
int res;
sw_result err;
@@ -19,7 +19,7 @@ $NetBSD: patch-aa,v 1.2 2004/11/20 14:43:32 mjl Exp $
/*
initialize the group membership
-@@ -425,7 +426,7 @@
+@@ -425,7 +426,7 @@ sw_socket_join_multicast_group(
err = sw_translate_error(res == 0, sw_socket_errno());
sw_check_okay_log(err, exit);