diff options
author | sketch <sketch> | 2009-02-21 00:39:45 +0000 |
---|---|---|
committer | sketch <sketch> | 2009-02-21 00:39:45 +0000 |
commit | 53e5d188aca5932fbed91134f9520cb0561416b9 (patch) | |
tree | 4f320d1a41e3b617ee1ac3fc6f30ea05e1813ba6 /net/howl | |
parent | d2ffb72e36e552e6bfdac739e6237f2a302a1ebc (diff) | |
download | pkgsrc-53e5d188aca5932fbed91134f9520cb0561416b9.tar.gz |
#if -> #ifdef, fix Sun Studio 64bit build. PR#35559.
Diffstat (limited to 'net/howl')
-rw-r--r-- | net/howl/distinfo | 3 | ||||
-rw-r--r-- | net/howl/patches/patch-ab | 13 |
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 |