pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/libgnome Fix small compilation error on Alpha; a...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bd146bb31078
branches:  trunk
changeset: 481583:bd146bb31078
user:      reinoud <reinoud%pkgsrc.org@localhost>
date:      Fri Oct 08 00:28:17 2004 +0000

description:
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:

 devel/libgnome/distinfo         |   3 ++-
 devel/libgnome/patches/patch-ba |  11 +++++++++++
 2 files changed, 13 insertions(+), 1 deletions(-)

diffs (27 lines):

diff -r a8816d1c5fda -r bd146bb31078 devel/libgnome/distinfo
--- a/devel/libgnome/distinfo   Thu Oct 07 17:29:16 2004 +0000
+++ b/devel/libgnome/distinfo   Fri Oct 08 00:28:17 2004 +0000
@@ -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 -r a8816d1c5fda -r bd146bb31078 devel/libgnome/patches/patch-ba
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/libgnome/patches/patch-ba   Fri Oct 08 00:28:17 2004 +0000
@@ -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);
+ }



Home | Main Index | Thread Index | Old Index