From owner-freebsd-gnome@FreeBSD.ORG Thu Aug 12 13:33:37 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 F007D16A4CE for ; Thu, 12 Aug 2004 13:33:37 +0000 (GMT) Received: from out004.verizon.net (out004pub.verizon.net [206.46.170.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ABCB43D48 for ; Thu, 12 Aug 2004 13:33:37 +0000 (GMT) (envelope-from Alex.Kovalenko@verizon.net) Received: from [10.0.3.231] ([141.153.201.221]) by out004.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040812133336.UKG28868.out004.verizon.net@[10.0.3.231]> for ; Thu, 12 Aug 2004 08:33:36 -0500 From: "Alexandre \"Sunny\" Kovalenko" To: gnome@freebsd.org Content-Type: multipart/mixed; boundary="=-CClIE0+K53qLSGKSsiFI" Message-Id: <1092317571.691.5.camel@RabbitsDen> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Thu, 12 Aug 2004 09:32:52 -0400 X-Authentication-Info: Submitted using SMTP AUTH at out004.verizon.net from [141.153.201.221] at Thu, 12 Aug 2004 08:33:35 -0500 Subject: 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: Thu, 12 Aug 2004 13:33:38 -0000 --=-CClIE0+K53qLSGKSsiFI Content-Type: text/plain Content-Transfer-Encoding: 7bit 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@. --- Alexandre "Sunny" Kovalenko. --=-CClIE0+K53qLSGKSsiFI Content-Disposition: attachment; filename=wsdl-soap-memory.c.diff Content-Type: text/x-patch; name=wsdl-soap-memory.c.diff; charset=ASCII Content-Transfer-Encoding: 7bit 36,37c36,37 < g_warning (G_GNUC_FUNCTION < ": Parameter %s has no typecode!", --- > g_warning ("%s: Parameter %s has no typecode!", > G_GNUC_FUNCTION, 41,42c41 < g_warning (G_GNUC_FUNCTION < ": Parameter %s has no " --- > g_warning ("%s: Parameter %s has no " 43a43 > G_GNUC_FUNCTION, 74,75c74,75 < g_warning (G_GNUC_FUNCTION < ": Parameter %s has no typecode!", --- > g_warning ("%s: Parameter %s has no typecode!", > G_GNUC_FUNCTION, --=-CClIE0+K53qLSGKSsiFI Content-Disposition: attachment; filename=wsdl-soap-parse.c.diff Content-Type: text/x-patch; name=wsdl-soap-parse.c.diff; charset=ASCII Content-Transfer-Encoding: 7bit 40c40 < g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION); --- > g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION); 206c206 < g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION); --- > g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION); --=-CClIE0+K53qLSGKSsiFI Content-Disposition: attachment; filename=wsdl-typecodes.c.diff Content-Type: text/x-patch; name=wsdl-typecodes.c.diff; charset=ASCII Content-Transfer-Encoding: 7bit 980c980 < g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION); --- > g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION); 1085c1085 < g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION); --- > g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION); 1109c1109 < g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION); --- > g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION); 1221c1221 < g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION); --- > g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION); --=-CClIE0+K53qLSGKSsiFI--