summaryrefslogtreecommitdiff
path: root/src/os/macosx/osx_stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/macosx/osx_stdafx.h')
-rw-r--r--src/os/macosx/osx_stdafx.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/os/macosx/osx_stdafx.h b/src/os/macosx/osx_stdafx.h
index 00b9ddb19..254bf3851 100644
--- a/src/os/macosx/osx_stdafx.h
+++ b/src/os/macosx/osx_stdafx.h
@@ -20,6 +20,12 @@
#include <sys/cdefs.h>
#include <unistd.h>
+/* 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))
+# include <debug/debug.h>
+#endif
+
/* __LP64__ only exists in 10.5 and higher */
#if defined(__APPLE__) && !defined(__LP64__)
# define __LP64__ 0