head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.42 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.40 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.38 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.36 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.34 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.32 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.30 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.28 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.26 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.24 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.22 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.20 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.18 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.16 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.14 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.12 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.10 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.8 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.6 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.4 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.5.0.2 pkgsrc-2005Q2-base:1.5 pkgsrc-2005Q1:1.4.0.2 pkgsrc-2005Q1-base:1.4 pkgsrc-2004Q4:1.2.0.2 pkgsrc-2004Q4-base:1.2; locks; strict; comment @# @; 1.5 date 2005.03.22.15.57.06; author jmmv; state dead; branches; next 1.4; 1.4 date 2005.02.26.15.04.43; author jmmv; state Exp; branches; next 1.3; 1.3 date 2005.02.22.19.55.42; author jmmv; state dead; branches; next 1.2; 1.2 date 2004.10.08.00.42.07; author reinoud; state Exp; branches; next 1.1; 1.1 date 2004.10.08.00.28.18; author reinoud; state Exp; branches; next ; desc @@ 1.5 log @Update to 2.10.0: libgnome 2.9.2 -------------- What's new since 2.9.1 * Bug fixes: - Make it build again on 64-bit platforms (James Henstridge) - Build fixes for Darwin (Hans Petter Jansson) * Translations: - Added Xhosa (xs) - Updated Arabic (ar), Belarusian (be), Estii (et), Spanish (es), Norwegian bokmål (nb/no) libgnome 2.9.1 -------------- What's new since 2.8.0 * Bug fixes: - Handle empty Real Name fields in /etc/passwd (Callum McKenzie) - Fix builddir/srcdir errors (Thomas Fitzimmons) - Deprecation: gnome-config.[ch], gnome-i18n.[ch], gnome-score.[ch] (Anders Carlsson) * Translations: - Various updated translations (en_CA, es, fr, hr, it, ko lt, th) @ text @$NetBSD: patch-ba,v 1.4 2005/02/26 15:04:43 jmmv Exp $ --- libgnome/gnome-program.c.orig 2005-02-21 13:39:01.000000000 +0100 +++ libgnome/gnome-program.c @@@@ -1928,7 +1928,9 @@@@ gnome_program_init_paramv (GType type, int argc, char **argv, guint nparams, GParameter *params) { - va_list args = 0; + /* Leaving args uninitialized is safe because gnome_program_init_common + * checks for the value of nparams. */ + va_list args; return gnome_program_init_common (type, app_id, app_version, module_info, argc, argv, NULL, args, nparams, params); @ 1.4 log @Fix build on archs where va_list is not a pointer. Closes PR pkg/29535 by Kibum Han (reporting failure under amd64). @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Update to 2.8.1: * Bug fixes: - Build fixes (Thomas Fitzsimmons, Kjartan Maraas ) - Escape the app id in gconf (Anders Carlsson) - Handle blank real name fields in /etc/password in gnome-scores.c (Callum McKenzie) Closes bug #149270 * Translations: - Various updated translations (en_CA, fr, it, hu, ko, th) @ text @d1 1 a1 1 $NetBSD: patch-ba,v 1.2 2004/10/08 00:42:07 reinoud Exp $ d3 1 a3 1 --- libgnome/gnome-program.c.orig 2004-08-25 01:39:18.000000000 +0200 d5 1 a5 1 @@@@ -1928,6 +1928,8 @@@@ gnome_program_init_paramv (GType type, d9 3 d13 1 a13 1 + d15 1 a15 3 - argc, argv, NULL, 0, nparams, params); + argc, argv, NULL, args, nparams, params); } @ 1.2 log @Fix former commit ... sorry @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @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) @ text @d5 2 a6 1 @@@@ -1929,5 +1929,5 @@@@ gnome_program_init_paramv (GType type, d9 2 d13 1 a13 1 + argc, argv, NULL, NULL, nparams, params); @