summaryrefslogtreecommitdiff
path: root/net/howl
diff options
context:
space:
mode:
authorsketch <sketch@pkgsrc.org>2009-02-21 00:39:45 +0000
committersketch <sketch@pkgsrc.org>2009-02-21 00:39:45 +0000
commitceab9dfc9802d02ce7d7fc8798f1ad08659a385a (patch)
tree4f320d1a41e3b617ee1ac3fc6f30ea05e1813ba6 /net/howl
parent97e08aa14b3d010b3eb1a274e22ee0cd6fe6a93e (diff)
downloadpkgsrc-ceab9dfc9802d02ce7d7fc8798f1ad08659a385a.tar.gz
#if -> #ifdef, fix Sun Studio 64bit build. PR#35559.
Diffstat (limited to 'net/howl')
-rw-r--r--net/howl/distinfo3
-rw-r--r--net/howl/patches/patch-ab13
2 files changed, 15 insertions, 1 deletions
diff --git a/net/howl/distinfo b/net/howl/distinfo
index 76ed04c9f51..6ad57cf2d03 100644
--- a/net/howl/distinfo
+++ b/net/howl/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.7 2006/01/01 18:27:53 tron Exp $
+$NetBSD: distinfo,v 1.8 2009/02/21 00:39:45 sketch Exp $
SHA1 (howl-1.0.0.tar.gz) = 0592b72e8d2fac24e737cf3455969a95c6505e24
RMD160 (howl-1.0.0.tar.gz) = f8eb6633d9edbb62038795ea66dcbf9dca4cffc1
Size (howl-1.0.0.tar.gz) = 542782 bytes
SHA1 (patch-aa) = 1766b2457f52a81f649e8b22c453a55342846a27
+SHA1 (patch-ab) = 83b869463d34261374d32f12fbfe5f70021e5f8d
diff --git a/net/howl/patches/patch-ab b/net/howl/patches/patch-ab
new file mode 100644
index 00000000000..c78f0f494f2
--- /dev/null
+++ b/net/howl/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.3 2009/02/21 00:39:45 sketch Exp $
+
+--- src/lib/mDNSResponder/mDNSClientAPI.h.orig Sat Feb 21 00:36:59 2009
++++ src/lib/mDNSResponder/mDNSClientAPI.h Sat Feb 21 00:37:28 2009
+@@ -526,7 +526,7 @@
+ typedef unsigned char mDNSu8;
+ typedef signed short mDNSs16;
+ typedef unsigned short mDNSu16;
+-#if _LP64
++#ifdef _LP64
+ typedef signed int mDNSs32;
+ typedef unsigned int mDNSu32;
+ #else