summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-08-30 03:42:06 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-08-30 03:42:06 +0000
commit657dd50fa7b0ed25195dfb824c4da9af98df86b6 (patch)
tree757fa023e4a6fbdaf27b461b8bb4900332496c32
parentd906eabf79d7aabdcbc3bad453a4a40b1876abab (diff)
downloadATCD-657dd50fa7b0ed25195dfb824c4da9af98df86b6.tar.gz
Thu Aug 30 03:41:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ACE/ChangeLog8
-rw-r--r--ACE/include/makeinclude/platform_g++_common.GNU7
2 files changed, 10 insertions, 5 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 4217e63b81c..663e97db5ef 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,11 @@
+Thu Aug 30 03:41:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * include/makeinclude/platform_g++_common.GNU:
+ FC6 and FC5 have exact the same GCC version, FC5 doesn't need the
+ workaround, FC6 does. Disabled the check for this specific RedHat
+ GCC version. FC6 users have to manually set
+ ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS to 1
+
Wed Aug 29 23:36:52 UTC 2007 Steve Huston <shuston@riverace.com>
* protocols/tests/HTBP/Reactor_Tests/server.cpp:
diff --git a/ACE/include/makeinclude/platform_g++_common.GNU b/ACE/include/makeinclude/platform_g++_common.GNU
index 1f1631e5d2d..93102f6ffbd 100644
--- a/ACE/include/makeinclude/platform_g++_common.GNU
+++ b/ACE/include/makeinclude/platform_g++_common.GNU
@@ -51,13 +51,10 @@ static_libs_only ?=
CXX_FULL_VERSION := $(shell $(CXX_FOR_VERSION_TEST) --version)
ifeq (Red Hat 4.1.1-52,$(findstring Red Hat 4.1.1-52,$(CXX_FULL_VERSION)))
- gcc_template_instantiation_visibility = 1
-endif
-ifeq (Red Hat 4.1.1-51,$(findstring Red Hat 4.1.1-51,$(CXX_FULL_VERSION)))
- gcc_template_instantiation_visibility = 1
+ gcc_template_instantiation_visibility ?= 1
endif
ifeq (Red Hat 4.1.2-12,$(findstring Red Hat 4.1.2-12,$(CXX_FULL_VERSION)))
- gcc_template_instantiation_visibility = 1
+ gcc_template_instantiation_visibility ?= 1
endif
gcc_template_instantiation_visibility ?= 0