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

This commit is contained in:
michi_cc 2013-10-26 17:20:48 +00:00
parent 1237e3c48c
commit dce0951fdc

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