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/patches | |
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/patches')
-rw-r--r-- | net/soup/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
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" } + }, + /* |