Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Martin Spitzbarth (e65c06dc6f618dc61a53247cf910a018e883f8f6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Martin Spitzbarth <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Martin Spitzbarth (e65c06dc6f618dc61a53247cf910a018e883f8f6)
  • Date: Mon, 21 Jan 2008 08:57:28 -0600

GIT changes to master grimoire by Martin Spitzbarth <m.spitzbarth AT gmx.de>:

utils/rsbep/CONFIGURE | 18 +++++++++++++-----
utils/rsbep/HISTORY | 3 +++
2 files changed, 16 insertions(+), 5 deletions(-)

New commits:
commit e65c06dc6f618dc61a53247cf910a018e883f8f6
Author: Martin Spitzbarth <m.spitzbarth AT gmx.de>
Commit: Martin Spitzbarth <m.spitzbarth AT gmx.de>

rsbep: Limited the query for asm routines to ia32

diff --git a/utils/rsbep/CONFIGURE b/utils/rsbep/CONFIGURE
index 6d1a867..320d92b 100755
--- a/utils/rsbep/CONFIGURE
+++ b/utils/rsbep/CONFIGURE
@@ -1,8 +1,16 @@
-if ! grep -q "ASM=" $SPELL_CONFIG; then
+# asm routines are only intended for ia32, so they can be disabled
+# on other architectures without asking the user.
+if [[ ${SMGL_COMPAT_ARCHS[0]} == "32" ]] ||
+ [[ ${SMGL_COMPAT_ARCHS[0]} == "ia32" ]]
+then
+ if ! grep -q "ASM=" $SPELL_CONFIG; then
+
+ if query "Will you want to use asm routines?" y
+ then echo "ASM=y" >> $SPELL_CONFIG
+ else echo "ASM=n" >> $SPELL_CONFIG
+ fi

- if query "Will you want to use asm routines (say no for other than
x86)?" y
- then echo "ASM=y" >> $SPELL_CONFIG
- else echo "ASM=n" >> $SPELL_CONFIG
fi
-
+else
+ echo "ASM=n" >> $SPELL_CONFIG
fi
diff --git a/utils/rsbep/HISTORY b/utils/rsbep/HISTORY
index c57d48a..8d6468d 100644
--- a/utils/rsbep/HISTORY
+++ b/utils/rsbep/HISTORY
@@ -1,3 +1,6 @@
+2008-01-21 Martin Spitzbarth <m.spitzbarth AT gmx.de>
+ * CONFIGURE: Limited the query for asm routines to ia32
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.





Archive powered by MHonArc 2.6.24.

Top of Page