summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-03 17:35:41 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-03 17:35:41 +0000
commit01c8eb8dd5dd145a2894df2f8fee791beab95af4 (patch)
tree64c948a072294c44b538127e7108eab8fb18a1de
parent06ed92f0aa107813adc6a6b05f196b1fc8506c64 (diff)
downloadATCD-01c8eb8dd5dd145a2894df2f8fee791beab95af4.tar.gz
ChangeLogTag:Fri Nov 3 09:34:39 2000 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/Makefile8
-rw-r--r--examples/Makefile8
-rw-r--r--tests/Makefile8
6 files changed, 36 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index a86da09f9c8..e0f7dfbc30d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Nov 3 09:34:39 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Makefile:
+ * tests/Makefile:
+ * examples/Makefile:
+ Disable the RMCast builds for old versions of g++
+
Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
* ace/Name_Request_Reply.h:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index a86da09f9c8..e0f7dfbc30d 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Fri Nov 3 09:34:39 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Makefile:
+ * tests/Makefile:
+ * examples/Makefile:
+ Disable the RMCast builds for old versions of g++
+
Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
* ace/Name_Request_Reply.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index a86da09f9c8..e0f7dfbc30d 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Fri Nov 3 09:34:39 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Makefile:
+ * tests/Makefile:
+ * examples/Makefile:
+ Disable the RMCast builds for old versions of g++
+
Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
* ace/Name_Request_Reply.h:
diff --git a/ace/Makefile b/ace/Makefile
index e1c1ab183b9..f1f433cfbb6 100644
--- a/ace/Makefile
+++ b/ace/Makefile
@@ -302,9 +302,11 @@ ifeq ($(ssl),1)
DIRS += SSL
endif # ssl
-ifneq ($(rmcast),0)
- DIRS += RMCast
-endif # rmcast
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ ifneq ($(rmcast),0)
+ DIRS += RMCast
+ endif # rmcast
+endif # ACE_HAS_GNUG_PRE_2_8
####
#### Build customization.
diff --git a/examples/Makefile b/examples/Makefile
index cf541f93605..c7dc15bd186 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -28,9 +28,11 @@ DIRS = ASX \
Threads \
Timer_Queue
-ifneq ($(rmcast),0)
- DIRS += RMCast
-endif # rmcast
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ ifneq ($(rmcast),0)
+ DIRS += RMCast
+ endif # rmcast
+endif # ACE_HAS_GNUG_PRE_2_8
# Makefiles TBD:
# ttcp
diff --git a/tests/Makefile b/tests/Makefile
index f24bef83e5e..4d139f0505d 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -137,9 +137,11 @@ ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
endif
endif
-ifneq ($(rmcast),0)
- DIRS += RMCast
-endif
+ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
+ ifneq ($(rmcast),0)
+ DIRS += RMCast
+ endif # rmcast
+endif # ACE_HAS_GNUG_PRE_2_8
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU