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 1QMe4b-00008C-0t for garchives@archives.gentoo.org; Wed, 18 May 2011 10:33:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DA841C10D; Wed, 18 May 2011 10:33:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C95AD1C131 for ; Wed, 18 May 2011 10:33:40 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35A3A1B4051 for ; Wed, 18 May 2011 10:33:40 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2102) id D3F4720057; Wed, 18 May 2011 10:33:38 +0000 (UTC) From: "Alfredo Tupone (tupone)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tupone@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libbulletml/files: libbulletml-0.0.6-gcc46.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: libbulletml-0.0.6-gcc46.patch X-VCS-Directories: dev-libs/libbulletml/files X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone Content-Type: text/plain; charset=utf8 Message-Id: <20110518103338.D3F4720057@flycatcher.gentoo.org> Date: Wed, 18 May 2011 10:33: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: X-Archives-Hash: 0dde62f9b02b368794f5bba0c6b80799 tupone 11/05/18 10:33:38 Added: libbulletml-0.0.6-gcc46.patch Log: Fix build with gcc-4.6 Bug #367883 =20 (Portage version: 2.1.9.49/cvs/Linux x86_64) Revision Changes Path 1.1 dev-libs/libbulletml/files/libbulletml-0.0.6-gcc46.p= atch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbullet= ml/files/libbulletml-0.0.6-gcc46.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbullet= ml/files/libbulletml-0.0.6-gcc46.patch?rev=3D1.1&content-type=3Dtext/plai= n Index: libbulletml-0.0.6-gcc46.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 --- calc.yy.old 2011-05-18 12:26:38.701666366 +0200 +++ calc.yy 2011-05-18 12:27:43.020672135 +0200 @@ -17,7 +17,7 @@ #include "formula.h" #include "formula-variables.h" =20 -int yyerror(char* s); +int yyerror(const char* s); int yylex(); =20 const char* yyinStr; @@ -149,7 +149,7 @@ return c; } =20 -int yyerror(char* s) { +int yyerror(const char* s) { printf("yyerror: %s\n", s); return 0; }