Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master games grimoire by David Brown (b4232549fc44492c10d31dbb7ef5a41362432e88)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Brown <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master games grimoire by David Brown (b4232549fc44492c10d31dbb7ef5a41362432e88)
  • Date: Wed, 20 Sep 2006 00:10:58 -0500

GIT changes to master games grimoire by David Brown <dmlb2000 AT gmail.com>:

games-fps/bzflag/HISTORY | 6 ++++++
games-fps/bzflag/PRE_BUILD | 3 +++
games-fps/bzflag/configure.ac-x86_64-fix.patch | 21 +++++++++++++++++++++
3 files changed, 30 insertions(+)

New commits:
commit b4232549fc44492c10d31dbb7ef5a41362432e88
Author: David Brown <dmlb2000 AT gmail.com>
Commit: David Brown <dmlb2000 AT gmail.com>

bzflag added a configure.ac patch that should fix it for x86-64 boxes

diff --git a/games-fps/bzflag/HISTORY b/games-fps/bzflag/HISTORY
index 4e5fd7a..c082d6c 100644
--- a/games-fps/bzflag/HISTORY
+++ b/games-fps/bzflag/HISTORY
@@ -1,3 +1,9 @@
+2006-09-19 David Brown <dmlb2000 AT gmail.com>
+ * PRE_BUILD: added to apply patch
+ * configure.ac-x86_64-fix.patch: fixes adding -mtune=x86_64 gcc
doesn't
+ like it (should be -mtune=x86-64 but I think I fixed it the way they
+ intended)
+
2006-05-22 Andra?? "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: version update to 2.0.8

diff --git a/games-fps/bzflag/PRE_BUILD b/games-fps/bzflag/PRE_BUILD
new file mode 100755
index 0000000..a520eec
--- /dev/null
+++ b/games-fps/bzflag/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd ${SOURCE_DIRECTORY} &&
+patch -p1 < ${SPELL_DIRECTORY}/configure.ac-x86_64-fix.patch
diff --git a/games-fps/bzflag/configure.ac-x86_64-fix.patch
b/games-fps/bzflag/configure.ac-x86_64-fix.patch
new file mode 100644
index 0000000..62b4498
--- /dev/null
+++ b/games-fps/bzflag/configure.ac-x86_64-fix.patch
@@ -0,0 +1,21 @@
+--- configure.ac.old 2006-09-19 22:03:09.000000000 -0700
++++ configure.ac 2006-09-19 22:07:33.000000000 -0700
+@@ -602,14 +602,16 @@
+ # silly hack, should be a proper configure compiler option
test
+ if test x$host_cpu = xx86_64; then
+ CPPFLAGS="$CPPFLAGS -mtune=k8";
++ else
++ CPPFLAGS="$CPPFLAGS -mtune=$host_cpu";
+ fi
+- CPPFLAGS="$CPPFLAGS -mtune=$host_cpu";
+ else
+ # silly hack, should be a proper configure compiler option
test
+ if test x$host_cpu = xx86_64; then
+ CPPFLAGS="$CPPFLAGS -mcpu=k8";
++ else
++ CPPFLAGS="$CPPFLAGS -mcpu=$host_cpu";
+ fi
+- CPPFLAGS="$CPPFLAGS -mcpu=$host_cpu";
+ fi;;
+ ppc) CPPFLAGS="$CPPFLAGS -mcpu=$host_cpu";;
+ esac;;



  • [SM-Commit] GIT changes to master games grimoire by David Brown (b4232549fc44492c10d31dbb7ef5a41362432e88), David Brown, 09/20/2006

Archive powered by MHonArc 2.6.24.

Top of Page