summaryrefslogtreecommitdiff
path: root/devel/libgnome
diff options
context:
space:
mode:
authorreinoud <reinoud@pkgsrc.org>2004-10-08 00:28:17 +0000
committerreinoud <reinoud@pkgsrc.org>2004-10-08 00:28:17 +0000
commit13f80f8ff1ee03ca1925e5eecc56ed85114955e2 (patch)
tree662a4b55972f9d85581bb6c4fb31307ff3843cd4 /devel/libgnome
parent7f88a7c9175c01b4526fc955439a70a4270d08e5 (diff)
downloadpkgsrc-13f80f8ff1ee03ca1925e5eecc56ed85114955e2.tar.gz
Fix small compilation error on Alpha; a va_args was represented by a 0 and
not by a NULL in an initialisation function; this broke with the NetBSD/alpha compiler on Alpha (gcc 3.3.3)
Diffstat (limited to 'devel/libgnome')
-rw-r--r--devel/libgnome/distinfo3
-rw-r--r--devel/libgnome/patches/patch-ba11
2 files changed, 13 insertions, 1 deletions
diff --git a/devel/libgnome/distinfo b/devel/libgnome/distinfo
index 92059ab4921..bbdfb82bac6 100644
--- a/devel/libgnome/distinfo
+++ b/devel/libgnome/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.16 2004/09/21 16:46:14 jmmv Exp $
+$NetBSD: distinfo,v 1.17 2004/10/08 00:28:17 reinoud Exp $
SHA1 (libgnome-2.8.0.tar.bz2) = a7b986ae10570ee7a05227a57fb79e2359ba5a2a
Size (libgnome-2.8.0.tar.bz2) = 1164177 bytes
SHA1 (patch-aa) = 349be2770b6578057ae1ded589e71765c63c12af
SHA1 (patch-af) = 783e295d1714b7c121538ed7459ffbcf3ff3713a
+SHA1 (patch-ba) = 10dfdbe045085ae7e62391eaddd765bbedf55419
diff --git a/devel/libgnome/patches/patch-ba b/devel/libgnome/patches/patch-ba
new file mode 100644
index 00000000000..2575a6e7331
--- /dev/null
+++ b/devel/libgnome/patches/patch-ba
@@ -0,0 +1,11 @@
+$NetBSD: patch-ba,v 1.1 2004/10/08 00:28:18 reinoud Exp $
+
+--- libgnome/gnome-program.c.orig 2004-08-25 01:39:18.000000000 +0200
++++ libgnome/gnome-program.c
+@@ -1929,5 +1929,5 @@ gnome_program_init_paramv (GType type,
+ guint nparams, GParameter *params)
+ {
+ return gnome_program_init_common (type, app_id, app_version, module_info,
+- argc, argv, NULL, 0, nparams, params);
++ argc, argv, NULL, NULL, nparams, params);
+ }