diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-07-14 13:31:26 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-07-14 13:31:26 +0000 |
commit | 19ef89703eb157f14fee8caa3e38e066c690b347 (patch) | |
tree | 9d15264e7c64c2fb8c3bc0e1f3ba43760ab7aaec /ACE/include/makeinclude | |
parent | 9fb4aaed3724d2795ecba9e0fca9d9b92b30bb01 (diff) | |
download | ATCD-19ef89703eb157f14fee8caa3e38e066c690b347.tar.gz |
Tue Jul 14 13:31:20 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux.GNU:
SUSE Enterprise 10 also needs the gcc workaround
Diffstat (limited to 'ACE/include/makeinclude')
-rw-r--r-- | ACE/include/makeinclude/platform_linux.GNU | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ACE/include/makeinclude/platform_linux.GNU b/ACE/include/makeinclude/platform_linux.GNU index 30ad3fc1309..c4b2602d543 100644 --- a/ACE/include/makeinclude/platform_linux.GNU +++ b/ACE/include/makeinclude/platform_linux.GNU @@ -20,6 +20,11 @@ pipes ?= 1 CXX_FULL_VERSION := $(shell $(CXX_FOR_VERSION_TEST) --version) CXX_VERSION := $(shell $(CXX_FOR_VERSION_TEST) -dumpversion) +ifeq (SUSE, $(findstring SUSE,$(LSB_RELEASE_ID))) + ifeq (4.1.2, $(findstring 4.1.2,$(CXX_VERSION))) + gcc_template_instantiation_visibility ?= 1 + endif +endif ifeq (Ubuntu, $(findstring Ubuntu,$(LSB_RELEASE_ID))) ifeq (7.10, $(findstring 7.10,$(LSB_RELEASE_RELEASE))) no_hidden_visibility ?= 1 |