summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon McQueen <simon.mcqueen@gmail.com>2006-03-30 11:33:02 +0000
committerSimon McQueen <simon.mcqueen@gmail.com>2006-03-30 11:33:02 +0000
commite04423c4b8c6d0f684c6c4901092342fe54bdf93 (patch)
tree9bdc2a64957fa44157536c50eec2f09fd5435134 /include
parenta9e702ae5a452cb1118217a50b69ceff58e2c861 (diff)
downloadATCD-e04423c4b8c6d0f684c6c4901092342fe54bdf93.tar.gz
ChangeLogTag: Thu Mar 30 11:27:00 UTC 2006 Simon McQueen <sm@prismtech.com>
Diffstat (limited to 'include')
-rw-r--r--include/makeinclude/platform_sunos5_sunc++.GNU6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU
index eebe37c5de7..8035d4a86ac 100644
--- a/include/makeinclude/platform_sunos5_sunc++.GNU
+++ b/include/makeinclude/platform_sunos5_sunc++.GNU
@@ -68,6 +68,12 @@ CXX = CC
CC_VERSION := $(shell $(CXX) -V 2>&1)
+### CC 5.4 provides insufficient preprocessor output (at 111715-17 2005/10/13)
+### We need to use cc instead - see bugzilla #2478.
+ifeq (C++ 5.4,$(findstring C++ 5.4,$(CC_VERSION)))
+ ACE_CC_PREPROCESSOR = cc
+endif
+
ifeq (C++ 5.6,$(findstring C++ 5.6,$(CC_VERSION)))
PLATFORM_STLPORT_CPPFLAGS = -library=stlport4
else