From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OJQ8E-0003TW-5K for garchives@archives.gentoo.org; Tue, 01 Jun 2010 11:59:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FBAEE0AD3; Tue, 1 Jun 2010 11:59:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 035E6E0AD3 for ; Tue, 1 Jun 2010 11:59:41 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id A87471B40A6 for ; Tue, 1 Jun 2010 11:59:40 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2166) id 15F922C3ED; Tue, 1 Jun 2010 11:59:38 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/iverilog/files: iverilog-0.9.1-gcc45.patch iverilog-gcc43.patch iverilog-0.8.2-gcc-4.10.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: iverilog-0.9.1-gcc45.patch iverilog-gcc43.patch iverilog-0.8.2-gcc-4.10.patch X-VCS-Directories: sci-electronics/iverilog/files X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: <20100601115939.15F922C3ED@corvid.gentoo.org> Date: Tue, 1 Jun 2010 11:59:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 09892bcf-dc1f-449d-8afd-77686f5c30d1 X-Archives-Hash: 12dbf5c02925c57b5508e749e58746b4 ssuominen 10/06/01 11:59:38 Added: iverilog-0.9.1-gcc45.patch Removed: iverilog-gcc43.patch iverilog-0.8.2-gcc-4.10.patc= h Log: Fix building with GCC 4.5+ wrt #319361 by Kacper Kowalik. (Portage version: 2.2_rc67/cvs/Linux x86_64) Revision Changes Path 1.1 sci-electronics/iverilog/files/iverilog-0.9.1-gcc45.= patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/iv= erilog/files/iverilog-0.9.1-gcc45.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/iv= erilog/files/iverilog-0.9.1-gcc45.patch?rev=3D1.1&content-type=3Dtext/pla= in Index: iverilog-0.9.1-gcc45.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Fixing build with gcc 4.5 https://bugs.gentoo.org/show_bug.cgi?id=3D319361 --- pform_disciplines.cc +++ pform_disciplines.cc @@ -27,8 +27,8 @@ map disciplines; map access_function_nature; =20 -static perm_string nature_name =3D perm_string::perm_string(); -static perm_string nature_access =3D perm_string::perm_string(); +static perm_string nature_name =3D perm_string(); +static perm_string nature_access =3D perm_string(); =20 void pform_start_nature(const char*name) { @@ -82,8 +82,8 @@ // expressions that use the access function can find it. access_function_nature[nature_access] =3D tmp; =20 - nature_name =3D perm_string::perm_string(); - nature_access =3D perm_string::perm_string(); + nature_name =3D perm_string(); + nature_access =3D perm_string(); } =20 =20 @@ -171,7 +171,7 @@ FILE_NAME(tmp, loc); =20 /* Clear the static variables for the next item. */ - discipline_name =3D perm_string::perm_string(); + discipline_name =3D perm_string(); discipline_domain =3D IVL_DIS_NONE; discipline_potential =3D 0; discipline_flow =3D 0;