projects
/
simgear.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b06e386
)
Minor compiler version detection issue.
author
ThorstenB
<brehmt@gmail.com>
Fri, 27 May 2011 20:30:18 +0000
(22:30 +0200)
committer
ThorstenB
<brehmt@gmail.com>
Fri, 27 May 2011 20:30:43 +0000
(22:30 +0200)
Well, almost prepared for gcc 5.0 now ;-).
simgear/structure/SGAtomic.hxx
patch
|
blob
|
history
diff --git
a/simgear/structure/SGAtomic.hxx
b/simgear/structure/SGAtomic.hxx
index d4611d11c078c0e8c5ef3cbb6332d68047d7ffad..081a4906cd8c1c4990bcea1707e484e6479a05f6 100644
(file)
--- a/
simgear/structure/SGAtomic.hxx
+++ b/
simgear/structure/SGAtomic.hxx
@@
-21,7
+21,7
@@
#ifndef SGAtomic_HXX
#define SGAtomic_HXX
-#if defined(__GNUC__) && (
4 <= __GNUC__) && (1 <= __GNUC_MINOR__
) \
+#if defined(__GNUC__) && (
(4 < __GNUC__)||(4 == __GNUC__ && 1 <= __GNUC_MINOR__)
) \
&& (defined(__i386__) || defined(__x86_64__))
// No need to include something. Is a Compiler API ...
# define SGATOMIC_USE_GCC4_BUILTINS