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 1MktFN-0007yl-Vf for garchives@archives.gentoo.org; Tue, 08 Sep 2009 05:28:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 926C7E0985; Tue, 8 Sep 2009 05:28:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 73CAAE0985 for ; Tue, 8 Sep 2009 05:28:05 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 2874C66BB2 for ; Tue, 8 Sep 2009 05:28:05 +0000 (UTC) Received: from robbat2 by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MktFM-0000sL-3z for gentoo-commits@lists.gentoo.org; Tue, 08 Sep 2009 05:28:04 +0000 From: "Robin H. Johnson (robbat2)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, robbat2@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: mysql.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: mysql.eclass X-VCS-Directories: eclass X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson Content-Type: text/plain; charset=utf8 Message-Id: Sender: "Robin H. Johnson" Date: Tue, 08 Sep 2009 05:28:04 +0000 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: 833ebbc8-0f83-43b1-aa1d-e4e7254d637e X-Archives-Hash: e9ac809239ccb0bf7e5423a594f2be43 robbat2 09/09/08 05:28:04 Modified: mysql.eclass Log: Bug #283926: GCC4.4 causes libmysqlclient users to potentially have bad= behavior. Revision Changes Path 1.115 eclass/mysql.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclas= s?rev=3D1.115&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclas= s?rev=3D1.115&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclas= s?r1=3D1.114&r2=3D1.115 Index: mysql.eclass =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 RCS file: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v retrieving revision 1.114 retrieving revision 1.115 diff -p -w -b -B -u -u -r1.114 -r1.115 --- mysql.eclass 6 Jul 2009 19:06:03 -0000 1.114 +++ mysql.eclass 8 Sep 2009 05:28:03 -0000 1.115 @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.114 2009/07/0= 6 19:06:03 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.115 2009/09/0= 8 05:28:03 robbat2 Exp $ =20 # Author: Francesco Riosa (Retired) # Maintainer: MySQL Team @@ -626,6 +626,9 @@ mysql_src_configure() { && CXXFLAGS=3D"${CXXFLAGS} -fno-implicit-templates" export CXXFLAGS =20 + # bug #283926, with GCC4.4, this is required to get correct behavior. + append-flags -fno-strict-aliasing + econf \ --libexecdir=3D"/usr/sbin" \ --sysconfdir=3D"${MY_SYSCONFDIR}" \