diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-18 21:43:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-18 21:43:19 +0000 |
commit | a7e7c006c63ffe20c3e34887b9e553533cd2f31e (patch) | |
tree | f9bdc9812d7226e3fbe68b3d3beb9a6e79870f8b /games-emulation | |
parent | amd64 compile fix for bug #54270 - thanks to Andrew Williams (Manifest recommit) (diff) | |
download | gentoo-2-a7e7c006c63ffe20c3e34887b9e553533cd2f31e.tar.gz gentoo-2-a7e7c006c63ffe20c3e34887b9e553533cd2f31e.tar.bz2 gentoo-2-a7e7c006c63ffe20c3e34887b9e553533cd2f31e.zip |
sync with xmame ebuild
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/xmess/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/xmess/xmess-0.83.1.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/games-emulation/xmess/ChangeLog b/games-emulation/xmess/ChangeLog index bb3d2477c6b4..23ff596f5117 100644 --- a/games-emulation/xmess/ChangeLog +++ b/games-emulation/xmess/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/xmess # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.17 2004/06/16 05:13:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.18 2004/06/18 21:43:19 mr_bones_ Exp $ + + 18 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> xmess-0.83.1.ebuild: + sync with xmame ebuild *xmess-0.83.1 (15 Jun 2004) diff --git a/games-emulation/xmess/xmess-0.83.1.ebuild b/games-emulation/xmess/xmess-0.83.1.ebuild index 00414e042fcc..d32627569408 100644 --- a/games-emulation/xmess/xmess-0.83.1.ebuild +++ b/games-emulation/xmess/xmess-0.83.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.83.1.ebuild,v 1.1 2004/06/16 05:13:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.83.1.ebuild,v 1.2 2004/06/18 21:43:19 mr_bones_ Exp $ inherit flag-o-matic gcc eutils games @@ -133,11 +133,14 @@ src_unpack() { fi case ${ARCH} in - x86|ia64|amd64) append-flags -Wno-unused -fomit-frame-pointer -fstrict-aliasing -fstrength-reduce -ffast-math + x86|ia64) append-flags -Wno-unused -fomit-frame-pointer -fstrict-aliasing -fstrength-reduce -ffast-math [ $(gcc-major-version) -eq 3 ] \ && append-flags -falign-functions=2 -falign-jumps=2 -falign-loops=2 \ || append-flags -malign-functions=2 -malign-jumps=2 -malign-loops=2 ;; + # amd64 no likey the -ffast-math - bug #54270 + amd64) append-flags -Wno-unused -fomit-frame-pointer -fstrict-aliasing -fstrength-reduce + ;; ppc) append-flags -Wno-unused -funroll-loops -fstrength-reduce -fomit-frame-pointer -ffast-math -fsigned-char ;; hppa) append-flags -ffunction-sections |