Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (38b202229bee33ddef4c32e092c90899f09beaa7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (38b202229bee33ddef4c32e092c90899f09beaa7)
  • Date: Mon, 26 Apr 2010 12:20:08 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

x11-libs/wine/BUILD | 8 +++++---
x11-libs/wine/HISTORY | 3 +++
2 files changed, 8 insertions(+), 3 deletions(-)

New commits:
commit 38b202229bee33ddef4c32e092c90899f09beaa7
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

wine: Possibly better fix allowing '-mfpmath=sse'

diff --git a/x11-libs/wine/BUILD b/x11-libs/wine/BUILD
index 770f013..d5c1623 100755
--- a/x11-libs/wine/BUILD
+++ b/x11-libs/wine/BUILD
@@ -10,10 +10,12 @@ if grep -q "\-O3" <<< $CFLAGS; then
fi &&

#
-# Fixes http://bugs.winehq.org/show_bug.cgi?id=22475
+# Fixes http://bugs.winehq.org/show_bug.cgi?id=22316
#
- CFLAGS=${CFLAGS/-mfpmath=sse/} &&
-CXXFLAGS=${CXXFLAGS/-mfpmath=sse/} &&
+if [[ ${SMGL_COMPAT_ARCHS[1]} == "ia32" ]] && $(grep -q "mfpmath=sse" <<<
$CFLAGS); then
+ CFLAGS="-mincoming-stack-boundary=2 $CFLAGS" &&
+ CXXFLAGS="-mincoming-stack-boundary=2 $CXXFLAGS"
+fi &&

OPTS="${OPTS} ${WINE64}" &&

diff --git a/x11-libs/wine/HISTORY b/x11-libs/wine/HISTORY
index f846bf9..29301f2 100644
--- a/x11-libs/wine/HISTORY
+++ b/x11-libs/wine/HISTORY
@@ -1,3 +1,6 @@
+2010-04-26 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Possibly better fix allowing '-mfpmath=sse'
+
2010-04-23 Eric Sandall <sandalle AT sourcemage.org>
* BUILD: Fails with '-mfpmath=sse'
See http://bugs.winehq.org/show_bug.cgi?id=22475



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (38b202229bee33ddef4c32e092c90899f09beaa7), Eric Sandall, 04/26/2010

Archive powered by MHonArc 2.6.24.

Top of Page