diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-08-02 14:18:22 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-08-05 15:10:39 +0200 |
commit | 1e0feb5cf916fada5dc2db66a358649624ece578 (patch) | |
tree | fb30b714baaafc5671862a1311b3d26a3961a5bc /solenv | |
parent | 00657c3b1ed5843d15dbc3aea8fa57be056b0935 (diff) |
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
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/solaris.mk | 2 | ||||
-rw-r--r-- | solenv/gbuild/platform/unxgcc.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/solenv/gbuild/platform/solaris.mk b/solenv/gbuild/platform/solaris.mk index 240204c91e70..58c9b6835b9d 100644 --- a/solenv/gbuild/platform/solaris.mk +++ b/solenv/gbuild/platform/solaris.mk @@ -98,7 +98,7 @@ gb_CXXFLAGS += -std=c++0x #When we are using 4.6.0 we can use gcc pragmas to selectively silence auto_ptr #warnings in isolation, but for <= 4.5.X we need to globally disable #deprecation -ifeq ($(gb_GccLess460),1) +ifeq ($(HAVE_GCC_PRAGMA_OPERATOR),) gb_CXXFLAGS += -Wno-deprecated-declarations endif endif diff --git a/solenv/gbuild/platform/unxgcc.mk b/solenv/gbuild/platform/unxgcc.mk index 5b3805f3a875..17b9eb2c413c 100644 --- a/solenv/gbuild/platform/unxgcc.mk +++ b/solenv/gbuild/platform/unxgcc.mk @@ -94,7 +94,7 @@ gb_CXXFLAGS += $(CXXFLAGS_CXX11) #When we are using 4.6.0 we can use gcc pragmas to selectively silence auto_ptr #warnings in isolation, but for <= 4.5.X we need to globally disable #deprecation -ifeq ($(gb_GccLess460),1) +ifeq ($(HAVE_GCC_PRAGMA_OPERATOR),) gb_CXXFLAGS += -Wno-deprecated-declarations endif endif |