summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2013-10-26 17:20:48 +0000
committermichi_cc <michi_cc@openttd.org>2013-10-26 17:20:48 +0000
commitdce0951fdcc7d1fed4bf465caad84c9f09e327db (patch)
tree3bde7ce5c3b1164f145ef8ef8573e5ee2c2a9bad /src/os
parent1237e3c48c67c51cfb8a20df6b96c646064bc03a (diff)
downloadopenttd-dce0951fdcc7d1fed4bf465caad84c9f09e327db.tar.xz
(svn r25913) -Fix: [OSX] Compilation under OSX 10.9. (zydeco)
Diffstat (limited to 'src/os')
-rw-r--r--src/os/macosx/osx_stdafx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/macosx/osx_stdafx.h b/src/os/macosx/osx_stdafx.h
index 3b3e3fbde..cd30f372e 100644
--- a/src/os/macosx/osx_stdafx.h
+++ b/src/os/macosx/osx_stdafx.h
@@ -53,7 +53,7 @@
/* Some gcc versions include assert.h via this header. As this would interfere
* with our own assert redefinition, include this header first. */
-#if defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
+#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
# include <debug/debug.h>
#endif