From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 03:35:26 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 319C516A4CE for ; Sat, 14 Aug 2004 03:35:26 +0000 (GMT) Received: from out001.verizon.net (out001pub.verizon.net [206.46.170.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9F3943D2D for ; Sat, 14 Aug 2004 03:35:25 +0000 (GMT) (envelope-from Alex.Kovalenko@verizon.net) Received: from [10.0.3.231] ([141.153.201.221]) by out001.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040814033524.NQLN24594.out001.verizon.net@[10.0.3.231]>; Fri, 13 Aug 2004 22:35:24 -0500 From: "Alexandre \"Sunny\" Kovalenko" To: Joe Marcus Clarke In-Reply-To: <1092325897.733.2.camel@gyros> References: <1092317571.691.5.camel@RabbitsDen> <1092325897.733.2.camel@gyros> Content-Type: multipart/mixed; boundary="=-7PxqL8CySH6O7t5yIjZ4" Message-Id: <1092454476.702.2.camel@RabbitsDen> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 13 Aug 2004 23:34:37 -0400 X-Authentication-Info: Submitted using SMTP AUTH at out001.verizon.net from [141.153.201.221] at Fri, 13 Aug 2004 22:35:23 -0500 cc: FreeBSD GNOME Users Subject: Re: Patches for soup-0.7.11 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: Sat, 14 Aug 2004 03:35:26 -0000 --=-7PxqL8CySH6O7t5yIjZ4 Content-Type: text/plain Content-Transfer-Encoding: 7bit On Thu, 2004-08-12 at 11:51, Joe Marcus Clarke wrote: > On Thu, 2004-08-12 at 09:32, Alexandre "Sunny" Kovalenko wrote: > > I have attached (rather mechanical) patches to allow devel/soup (0.7.11) > > to be compiled with gcc 3.4.2 (now standard in FreeBSD-current). I see > > no reason why these patches would not work with previous versions of > > gcc, but I have been wrong before. > > > > If you need to contact me, please, E-mail direct, as I am not > > subscribing to ports@. > > Please resubmit in unified diff format. Thanks. > > Joe > > > > > --- > > Alexandre "Sunny" Kovalenko. > > > > > > ______________________________________________________________________ > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" Sorry for being stupid -- don't do patches too often... ;) Attached udiff ones. Please, let me know if there is anything else I can do. --- Alexandre "Sunny" Kovalenko. --=-7PxqL8CySH6O7t5yIjZ4 Content-Disposition: attachment; filename=wsdl-soap-memory.c.udiff Content-Type: text/plain; name=wsdl-soap-memory.c.udiff; charset=ASCII Content-Transfer-Encoding: 7bit --- wsdl-soap-memory.c.ORIG Fri Aug 13 23:25:57 2004 +++ wsdl-soap-memory.c Fri Aug 13 23:28:22 2004 @@ -33,14 +33,14 @@ while (param->name != NULL) { if (param->typecode == NULL) { - g_warning (G_GNUC_FUNCTION - ": Parameter %s has no typecode!", + g_warning ("%s: Parameter %s has no typecode!", + G_GNUC_FUNCTION, param->name); } else { if (param->param == NULL) { - g_warning (G_GNUC_FUNCTION - ": Parameter %s has no " + g_warning ("%s: Parameter %s has no " "memory location!", + G_GNUC_FUNCTION, param->name); } else { memset (param->param, @@ -71,8 +71,8 @@ while (param->name != NULL) { if (param->typecode == NULL) { - g_warning (G_GNUC_FUNCTION - ": Parameter %s has no typecode!", + g_warning ("%s: Parameter %s has no typecode!", + G_GNUC_FUNCTION, param->name); } else { if (param->param != NULL && --=-7PxqL8CySH6O7t5yIjZ4 Content-Disposition: attachment; filename=wsdl-soap-parse.c.udiff Content-Type: text/plain; name=wsdl-soap-parse.c.udiff; charset=ASCII Content-Transfer-Encoding: 7bit --- wsdl-soap-parse.c.ORIG Fri Aug 13 23:26:21 2004 +++ wsdl-soap-parse.c Fri Aug 13 23:28:47 2004 @@ -37,7 +37,7 @@ switch (wsdl_typecode_kind (typecode)) { case WSDL_TK_GLIB_NULL: - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION); + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION); break; case WSDL_TK_GLIB_VOID: @@ -203,7 +203,7 @@ /* Handled elsewhere */ break; case WSDL_TK_GLIB_MAX: - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION); + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION); break; } } --=-7PxqL8CySH6O7t5yIjZ4 Content-Disposition: attachment; filename=wsdl-typecodes.c.udiff Content-Type: text/plain; name=wsdl-typecodes.c.udiff; charset=ASCII Content-Transfer-Encoding: 7bit --- wsdl-typecodes.c.ORIG Fri Aug 13 23:26:48 2004 +++ wsdl-typecodes.c Fri Aug 13 23:29:09 2004 @@ -977,7 +977,7 @@ { switch (tc->kind) { case WSDL_TK_GLIB_NULL: - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION); + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION); return (0); break; @@ -1082,7 +1082,7 @@ break; case WSDL_TK_GLIB_MAX: - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION); + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION); return (0); break; } @@ -1106,7 +1106,7 @@ { switch (tc->kind) { case WSDL_TK_GLIB_NULL: - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION); + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION); return (0); break; @@ -1218,7 +1218,7 @@ break; case WSDL_TK_GLIB_MAX: - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION); + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION); return (0); break; } --=-7PxqL8CySH6O7t5yIjZ4--