From owner-freebsd-gnome@FreeBSD.ORG Tue Aug 3 00:42:06 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54C5316A4CE for ; Tue, 3 Aug 2004 00:42:06 +0000 (GMT) Received: from mail.mcneil.com (rrcs-west-24-199-45-54.biz.rr.com [24.199.45.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C53D43D5C for ; Tue, 3 Aug 2004 00:42:06 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from localhost (localhost.mcneil.com [127.0.0.1]) by mail.mcneil.com (Postfix) with ESMTP id EB2ACFD034; Mon, 2 Aug 2004 17:42:05 -0700 (PDT) Received: from mail.mcneil.com ([127.0.0.1]) by localhost (server.mcneil.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 63102-02; Mon, 2 Aug 2004 17:42:05 -0700 (PDT) Received: from [24.199.45.54] (mcneil.com [24.199.45.54]) by mail.mcneil.com (Postfix) with ESMTP id 6593AFD02D; Mon, 2 Aug 2004 17:42:05 -0700 (PDT) From: Sean McNeil To: Joe Marcus Clarke In-Reply-To: <1091493216.60865.0.camel@shumai.marcuscom.com> References: <1091492791.50656.2.camel@server.mcneil.com> <1091493216.60865.0.camel@shumai.marcuscom.com> Content-Type: text/plain Message-Id: <1091493725.63110.6.camel@server.mcneil.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 02 Aug 2004 17:42:05 -0700 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at mcneil.com cc: freebsd-gnome@freebsd.org Subject: Re: patch for print/gnome-cups-manager and gcc 3.4.2 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Aug 2004 00:42:06 -0000 On Mon, 2004-08-02 at 17:33, Joe Marcus Clarke wrote: > On Mon, 2004-08-02 at 20:26, Sean McNeil wrote: > > Here is a patch to get print/gnome-cups-manager to build with -CURRENT > > compiler. > > Please post these as they do not come through on the list. Here you are.... print/gnome-cups-manager *** gnome-cups-add/snmpkit/snmpkit_interface.C.orig Mon Aug 2 17:20:05 2004 --- gnome-cups-add/snmpkit/snmpkit_interface.C Mon Aug 2 17:21:44 2004 *************** int sk_sfiller_remove(SNMPTABLE *st,cons *** 508,514 **** void **sk_table_get(SNMPTABLE *st){ std::list vals; from_c(st)->get(vals); ! void **retval=new (void*)[vals.size()+1]; retval[vals.size()]=NULL; int i=0; for(std::list::iterator cur=vals.begin();cur!=vals.end();cur++,i++) --- 508,514 ---- void **sk_table_get(SNMPTABLE *st){ std::list vals; from_c(st)->get(vals); ! void **retval=new void* [vals.size()+1]; retval[vals.size()]=NULL; int i=0; for(std::list::iterator cur=vals.begin();cur!=vals.end();cur++,i++) palm/gnomepilot2... *** capplet/gnome-pilot-capplet.c.orig Mon Aug 2 16:41:30 2004 --- capplet/gnome-pilot-capplet.c Mon Aug 2 16:42:05 2004 *************** init (GnomePilotCapplet *gpcap) *** 183,188 **** --- 183,189 ---- init_widgets (gpcap); error: + return; } GnomePilotCapplet * *** capplet/gnome-pilot-cdialog.c.orig Mon Aug 2 16:44:15 2004 --- capplet/gnome-pilot-cdialog.c Mon Aug 2 16:44:35 2004 *************** init (GnomePilotCDialog *gpcd) *** 123,128 **** --- 123,129 ---- gnome_dialog_close_hides (GNOME_DIALOG (priv->dialog), TRUE); error: + return; } *** capplet/gnome-pilot-ddialog.c.orig Mon Aug 2 16:43:33 2004 --- capplet/gnome-pilot-ddialog.c Mon Aug 2 16:43:43 2004 *************** init (GnomePilotDDialog *gpdd) *** 123,128 **** --- 123,129 ---- } error: + return; } *** capplet/gnome-pilot-druid.c.orig Mon Aug 2 16:46:03 2004 --- capplet/gnome-pilot-druid.c Mon Aug 2 16:46:25 2004 *************** init (GnomePilotDruid *gpd) *** 181,186 **** --- 181,187 ---- init_widgets (gpd); error: + return; } *** capplet/gnome-pilot-pdialog.c.orig Mon Aug 2 16:42:46 2004 --- capplet/gnome-pilot-pdialog.c Mon Aug 2 16:43:01 2004 *************** init (GnomePilotPDialog *gppd) *** 144,149 **** --- 144,150 ---- } error: + return; } Cheers, Sean