summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-02-20 14:37:45 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-02-20 14:37:45 +0000
commitcc1c82b22ee2ce97e31dda0e484dcac99a45fcbe (patch)
tree64be38ed72b1414cb7e437bbd5796599d10c47ec
parent8e8e399bbab2b3c6d887d9c9fedb1c2d62dd953a (diff)
downloadATCD-cc1c82b22ee2ce97e31dda0e484dcac99a45fcbe.tar.gz
ChangeLogTag:Tue Feb 20 06:34:26 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLogs/ChangeLog-02a4
-rw-r--r--ChangeLogs/ChangeLog-03a4
-rw-r--r--include/makeinclude/platform_sunos5_g++.GNU5
4 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ab0fe52777d..c7f9efe1c9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
Tue Feb 20 06:34:26 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * include/makeinclude/platform_sunos5_g++.GNU: Make sure to explicitly
+ set ACE_HAS_GNUG_PRE_2_8. Thanks to Christian von Mueffling
+ <cvm@aiss.de> for reporting this.
+
* ace/Thread_Manager.cpp (cancel_grp): Fixed a typo in
the ACE_TRACE macro. Thanks to Mike Curtis for reporting this.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index ab0fe52777d..c7f9efe1c9f 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,5 +1,9 @@
Tue Feb 20 06:34:26 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * include/makeinclude/platform_sunos5_g++.GNU: Make sure to explicitly
+ set ACE_HAS_GNUG_PRE_2_8. Thanks to Christian von Mueffling
+ <cvm@aiss.de> for reporting this.
+
* ace/Thread_Manager.cpp (cancel_grp): Fixed a typo in
the ACE_TRACE macro. Thanks to Mike Curtis for reporting this.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index ab0fe52777d..c7f9efe1c9f 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,5 +1,9 @@
Tue Feb 20 06:34:26 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * include/makeinclude/platform_sunos5_g++.GNU: Make sure to explicitly
+ set ACE_HAS_GNUG_PRE_2_8. Thanks to Christian von Mueffling
+ <cvm@aiss.de> for reporting this.
+
* ace/Thread_Manager.cpp (cancel_grp): Fixed a typo in
the ACE_TRACE macro. Thanks to Mike Curtis for reporting this.
diff --git a/include/makeinclude/platform_sunos5_g++.GNU b/include/makeinclude/platform_sunos5_g++.GNU
index 39704c40858..028a513756e 100644
--- a/include/makeinclude/platform_sunos5_g++.GNU
+++ b/include/makeinclude/platform_sunos5_g++.GNU
@@ -10,6 +10,11 @@
# NOTE: On Solaris86, you'll need to use GNU as instead of /usr/ccs/bin/as,
# if you want -gstabs+ and -pipe support.
+ACE_HAS_GNUG_PRE_2_8 := \
+ $(shell \
+ if $(CXX) --version | egrep '^(cygnus-)?2\.[0-7]' > /dev/null; then \
+ echo 1; else echo 0; fi)
+
ifeq (,$(debug))
debug = 1
endif