summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-02 20:02:19 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-02 20:02:19 +0000
commit1d57ebafec216ba390c1b15ea6e854bc5b075876 (patch)
treec6af4e88b1591e1a257a29d25dd00ac53d80fafa
parent0684f2ac6ed91467e93a84a867fd77ffe5ec42c6 (diff)
downloadATCD-1d57ebafec216ba390c1b15ea6e854bc5b075876.tar.gz
ChangeLogTag:Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--ChangeLog15
-rw-r--r--ChangeLogs/ChangeLog-02a15
-rw-r--r--ChangeLogs/ChangeLog-03a15
-rw-r--r--ace/Makefile2
-rw-r--r--examples/Makefile4
-rw-r--r--tests/Makefile2
6 files changed, 39 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d34a3963dc..02df2518197 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,16 @@
+Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Makefile:
+ * tests/Makefile:
+ * examples/Makefile:
+ Enable the RMCast library, tests and examples by default.
+
Wed Nov 1 17:24:59 2000 Pradeep Gore <pradeep@cs.wustl.edu>
- * tests/RMCast/Makefile.bor:
- Added Makefile, thanks to Christopher Kohlhoff
- <chris@kohlhoff.com> and Johnny.Willemsen <Johnny.Willemsen@meco.nl>
- for contributing.
+ * tests/RMCast/Makefile.bor:
+ Added Makefile, thanks to Christopher Kohlhoff
+ <chris@kohlhoff.com> and Johnny.Willemsen <Johnny.Willemsen@meco.nl>
+ for contributing.
Wed Nov 1 14:11:48 2000 Carlos O'Ryan <coryan@uci.edu>
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 7d34a3963dc..02df2518197 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,9 +1,16 @@
+Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Makefile:
+ * tests/Makefile:
+ * examples/Makefile:
+ Enable the RMCast library, tests and examples by default.
+
Wed Nov 1 17:24:59 2000 Pradeep Gore <pradeep@cs.wustl.edu>
- * tests/RMCast/Makefile.bor:
- Added Makefile, thanks to Christopher Kohlhoff
- <chris@kohlhoff.com> and Johnny.Willemsen <Johnny.Willemsen@meco.nl>
- for contributing.
+ * tests/RMCast/Makefile.bor:
+ Added Makefile, thanks to Christopher Kohlhoff
+ <chris@kohlhoff.com> and Johnny.Willemsen <Johnny.Willemsen@meco.nl>
+ for contributing.
Wed Nov 1 14:11:48 2000 Carlos O'Ryan <coryan@uci.edu>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 7d34a3963dc..02df2518197 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,9 +1,16 @@
+Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Makefile:
+ * tests/Makefile:
+ * examples/Makefile:
+ Enable the RMCast library, tests and examples by default.
+
Wed Nov 1 17:24:59 2000 Pradeep Gore <pradeep@cs.wustl.edu>
- * tests/RMCast/Makefile.bor:
- Added Makefile, thanks to Christopher Kohlhoff
- <chris@kohlhoff.com> and Johnny.Willemsen <Johnny.Willemsen@meco.nl>
- for contributing.
+ * tests/RMCast/Makefile.bor:
+ Added Makefile, thanks to Christopher Kohlhoff
+ <chris@kohlhoff.com> and Johnny.Willemsen <Johnny.Willemsen@meco.nl>
+ for contributing.
Wed Nov 1 14:11:48 2000 Carlos O'Ryan <coryan@uci.edu>
diff --git a/ace/Makefile b/ace/Makefile
index 30f3d75120a..e1c1ab183b9 100644
--- a/ace/Makefile
+++ b/ace/Makefile
@@ -302,7 +302,7 @@ ifeq ($(ssl),1)
DIRS += SSL
endif # ssl
-ifeq ($(rmcast),1)
+ifneq ($(rmcast),0)
DIRS += RMCast
endif # rmcast
diff --git a/examples/Makefile b/examples/Makefile
index c745185f2f5..cf541f93605 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -28,6 +28,10 @@ DIRS = ASX \
Threads \
Timer_Queue
+ifneq ($(rmcast),0)
+ DIRS += RMCast
+endif # rmcast
+
# Makefiles TBD:
# ttcp
# CORBA
diff --git a/tests/Makefile b/tests/Makefile
index d918f1fc869..f24bef83e5e 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -137,7 +137,7 @@ ifneq ($(ACE_HAS_GNUG_PRE_2_8),1)
endif
endif
-ifeq ($(rmcast),1)
+ifneq ($(rmcast),0)
DIRS += RMCast
endif