From 1e0feb5cf916fada5dc2db66a358649624ece578 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Fri, 2 Aug 2013 14:18:22 +0200 Subject: do not base feature checks on gcc version Clang reports itself to be gcc4.2, so there fail there, instead use configure checks. Change-Id: Idb44a5c875b24a15546a6495de02a1b4af898443 --- config_host/config_global.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config_host') diff --git a/config_host/config_global.h.in b/config_host/config_global.h.in index 31f64e6ed54d..88b7a1f7a4ff 100644 --- a/config_host/config_global.h.in +++ b/config_host/config_global.h.in @@ -21,6 +21,9 @@ Any change in this header will cause a rebuild of almost everything. #define HAVE_GCC_BUILTIN_ATOMIC 0 #define HAVE_GCC_PRAGMA_DIAGNOSTIC_MODIFY 0 #define HAVE_GCC_PRAGMA_DIAGNOSTIC_SCOPE 0 +/* _Pragma */ +#define HAVE_GCC_PRAGMA_OPERATOR 0 +#define HAVE_GCC_DEPRECATED_MESSAGE 0 #define HAVE_THREADSAFE_STATICS 0 #define HAVE_SYSLOG_H 0 /* Compiler supports __attribute__((warn_unused)). */ -- cgit