1
0
Fork 0

(svn r25913) -Fix: [OSX] Compilation under OSX 10.9. (zydeco)

release/1.4
michi_cc 2013-10-26 17:20:48 +00:00
parent 1237e3c48c
commit dce0951fdc
1 changed files with 1 additions and 1 deletions

View File

@ -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