summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-12-10 20:11:23 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-12-10 20:11:23 +0000
commite75c6cfa29c521009305159a3148794369d4d975 (patch)
tree3ec77e2a63e34bf3b5b036db2be7aa9499385e9a
parentf0e1c5d79e074a9455d59c7dd0f53628a7f26a1a (diff)
downloadATCD-e75c6cfa29c521009305159a3148794369d4d975.tar.gz
ChangeLogTag:Mon Dec 10 14:10:00 2001 Nanbor Wang <nanbor@cs.wustl.edu>
-rw-r--r--ChangeLog9
-rw-r--r--ChangeLogs/ChangeLog-02a9
-rw-r--r--ChangeLogs/ChangeLog-03a9
-rw-r--r--Makefile.bor20
4 files changed, 36 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index d832c0be2a1..0c1faf8b20a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Dec 10 14:10:00 2001 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * Makefile.bor: Added an ace_only target for Borland_wchar nightly
+ build.
+
Sun Dec 9 08:54:38 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Activation_Queue.cpp (enqueue): Fixed a leak where the
@@ -82,10 +87,10 @@ Thu Dec 6 18:48:07 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Thu Dec 6 09:02:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
- * ace/Sock_Connect.cpp: Added MACOSX support. Thanks to
+ * ace/Sock_Connect.cpp: Added MACOSX support. Thanks to
John Michael Zorko <j.zorko@att.net> for contributing this.
- * tests/Logging_Strategy_Test.cpp: Add a "wait()" at the
+ * tests/Logging_Strategy_Test.cpp: Add a "wait()" at the
end of the main function to avoid problems when the main thread
exits before the reactor thread. Thanks to Michael Searles
<msearles@base16.com> for reporting this.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index d832c0be2a1..0c1faf8b20a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon Dec 10 14:10:00 2001 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * Makefile.bor: Added an ace_only target for Borland_wchar nightly
+ build.
+
Sun Dec 9 08:54:38 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Activation_Queue.cpp (enqueue): Fixed a leak where the
@@ -82,10 +87,10 @@ Thu Dec 6 18:48:07 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Thu Dec 6 09:02:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
- * ace/Sock_Connect.cpp: Added MACOSX support. Thanks to
+ * ace/Sock_Connect.cpp: Added MACOSX support. Thanks to
John Michael Zorko <j.zorko@att.net> for contributing this.
- * tests/Logging_Strategy_Test.cpp: Add a "wait()" at the
+ * tests/Logging_Strategy_Test.cpp: Add a "wait()" at the
end of the main function to avoid problems when the main thread
exits before the reactor thread. Thanks to Michael Searles
<msearles@base16.com> for reporting this.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index d832c0be2a1..0c1faf8b20a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon Dec 10 14:10:00 2001 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * Makefile.bor: Added an ace_only target for Borland_wchar nightly
+ build.
+
Sun Dec 9 08:54:38 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Activation_Queue.cpp (enqueue): Fixed a leak where the
@@ -82,10 +87,10 @@ Thu Dec 6 18:48:07 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Thu Dec 6 09:02:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
- * ace/Sock_Connect.cpp: Added MACOSX support. Thanks to
+ * ace/Sock_Connect.cpp: Added MACOSX support. Thanks to
John Michael Zorko <j.zorko@att.net> for contributing this.
- * tests/Logging_Strategy_Test.cpp: Add a "wait()" at the
+ * tests/Logging_Strategy_Test.cpp: Add a "wait()" at the
end of the main function to avoid problems when the main thread
exits before the reactor thread. Thanks to Michael Searles
<msearles@base16.com> for reporting this.
diff --git a/Makefile.bor b/Makefile.bor
index 3b660adfa5c..c2d5e22b4b4 100644
--- a/Makefile.bor
+++ b/Makefile.bor
@@ -1,17 +1,17 @@
!ifdef DEBUG
-DEBUG_FLAG = -DDEBUG
+DEBUG_FLAG = -DDEBUG
!endif
-
+
!ifdef STATIC
STATIC_FLAG = -DSTATIC
!endif
-
+
!ifdef PASCAL
PASCAL_FLAG = -DPASCAL
!endif
-
+
FLAGS = $(DEBUG_FLAG) $(STATIC_FLAG) $(PASCAL_FLAG)
-
+
all:
cd $(ACE_ROOT)\ace
$(MAKE) -f Makefile.bor $(FLAGS)
@@ -24,3 +24,13 @@ all:
cd $(ACE_ROOT)\TAO
$(MAKE) -f Makefile.bor $(FLAGS)
+
+ace_only:
+ cd $(ACE_ROOT)\ace
+ $(MAKE) -f Makefile.bor $(FLAGS)
+ cd $(ACE_ROOT)\netsvcs
+ $(MAKE) -f Makefile.bor $(FLAGS)
+ cd $(ACE_ROOT)\tests
+ $(MAKE) -f Makefile.bor $(FLAGS)
+ cd $(ACE_ROOT)\apps
+ $(MAKE) -f Makefile.bor $(FLAGS)