diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2003-03-12 01:53:59 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2003-03-12 01:53:59 +0000 |
commit | 6b8229085c1b50d14b67f4aa47c2573f9e0415b7 (patch) | |
tree | d7c8b7a5e398e7bd0314af1f7d734272f285121f /net/soup | |
parent | c61d0fe86c5486423c70a3d5e93d570835f7c178 (diff) | |
download | pkgsrc-6b8229085c1b50d14b67f4aa47c2573f9e0415b7.tar.gz |
fix bug with static initializers which prevented compilition on 64 bit
platforms
Diffstat (limited to 'net/soup')
-rw-r--r-- | net/soup/distinfo | 3 | ||||
-rw-r--r-- | net/soup/patches/patch-ac | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/soup/distinfo b/net/soup/distinfo index b543d1b7d76..a9478a48c9c 100644 --- a/net/soup/distinfo +++ b/net/soup/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2003/01/13 14:36:52 jmmv Exp $ +$NetBSD: distinfo,v 1.4 2003/03/12 01:53:59 dmcmahill Exp $ SHA1 (soup-0.7.10.tar.bz2) = c383fb880d5e32f6600c8c0757d97edede1e2114 Size (soup-0.7.10.tar.bz2) = 303967 bytes SHA1 (patch-aa) = 6c984de61e93fae33673fb0330e8b3a5c710da95 SHA1 (patch-ab) = 4a1ec8c278a3b1cc0343dc3edca2f7dec8d25583 +SHA1 (patch-ac) = da73ee261bd8e4247738d99210a2ed12c0315a13 diff --git a/net/soup/patches/patch-ac b/net/soup/patches/patch-ac new file mode 100644 index 00000000000..a0fdab4e4a7 --- /dev/null +++ b/net/soup/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2003/03/12 01:54:00 dmcmahill Exp $ + +guint isn't big enough for a pointer on LP64 systems... + +--- src/libsoup/soup-message.c.orig Mon Dec 2 11:03:15 2002 ++++ src/libsoup/soup-message.c Sun Mar 2 15:34:32 2003 +@@ -1008,5 +1008,5 @@ + NULL, + RESPONSE_HEADER_HANDLER, +- { (guint) "Location" } ++ { .header = "Location" } + }, + /* |