mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
26 lines
883 B
Diff
26 lines
883 B
Diff
From 07bde54374454532f5808b5f1219a6bf2b17d1a9 Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Lackner <sebastian@fds-team.de>
|
|
Date: Tue, 14 Jul 2015 22:32:55 +0200
|
|
Subject: configure.ac: Do not assume gcc strength bug when crosscompiling.
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 3eaec29..9aab130 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1797,7 +1797,7 @@ then
|
|
for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
|
|
L[[i]] = 4;
|
|
return (Array[[1]] != -2 || L[[2]] != 3)]])],
|
|
- [ac_cv_c_gcc_strength_bug="no"],[ac_cv_c_gcc_strength_bug="yes"],[ac_cv_c_gcc_strength_bug="yes"]) )
|
|
+ [ac_cv_c_gcc_strength_bug="no"],[ac_cv_c_gcc_strength_bug="yes"],[ac_cv_c_gcc_strength_bug="no"]) )
|
|
if test "$ac_cv_c_gcc_strength_bug" = "yes"
|
|
then
|
|
EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce"
|
|
--
|
|
2.4.5
|
|
|