summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-12-16 13:19:41 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-12-16 13:19:41 +0000
commit4221388c52078e87c8bb96794e45c686f0bf2172 (patch)
tree1f9353542cd155a9358ddaab33299dfce6746dfa
parentdbf123563f844f1f89e33b1d89c733b3c0a60eed (diff)
downloadATCD-4221388c52078e87c8bb96794e45c686f0bf2172.tar.gz
ChangeLogTag: Tue Dec 16 07:13:53 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog48
-rw-r--r--ace/TMCast/TMCast.mpc8
-rw-r--r--ace/ace.mwc3
-rw-r--r--bin/MakeProjectCreator/config/tmcast.mpb5
-rw-r--r--examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp1
-rw-r--r--examples/TMCast/Member/Member.mpc3
-rw-r--r--examples/TMCast/Member/member.cpp1
-rw-r--r--protocols/ace/TMCast/TMCast.mpc8
8 files changed, 61 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bbb81258e5..e5994095a55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,27 +1,45 @@
+Tue Dec 16 07:13:53 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/TMCast/TMCast.mpc:
+ * ace/ace.mwc:
+ * bin/MakeProjectCreator/config/tmcast.mpb:
+
+ Added a project and base project for TMCast.
+
+ * examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp:
+ * examples/TMCast/Member/member.cpp:
+
+ Added #include's to get things to build on Linux.
+
+ * examples/TMCast/Member/Member.mpc:
+
+ Added an mpc to override the default project to add the tmcast
+ base project.
+
Mon Dec 15 20:34:31 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * tests/MM_Shared_Memory_Test.cpp:
- * tests/Reactor_Notify_Test.cpp:
- * tests/Semaphore_Test.cpp:
- * tests/TP_Reactor_Test.cpp:
+ * tests/MM_Shared_Memory_Test.cpp:
+ * tests/Reactor_Notify_Test.cpp:
+ * tests/Semaphore_Test.cpp:
+ * tests/TP_Reactor_Test.cpp:
- More fixes like "Mon Dec 15 11:09:45 2003 Douglas C. Schmidt
- <schmidt@ace.cs.wustl.edu>". Thanks to Don for motivating this.
+ More fixes like "Mon Dec 15 11:09:45 2003 Douglas C. Schmidt
+ <schmidt@ace.cs.wustl.edu>". Thanks to Don for motivating this.
Mon Dec 15 18:51:15 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
- * bin/MakeProjectCreator/templates/gnu.mpd:
- Added setting of CLEANUP_INSTALL, this has the result that an exe
- that is installed into a different directory is also removed when
- doing a clean. Thanks to Don and Chad for validing this.
+ * bin/MakeProjectCreator/templates/gnu.mpd:
+ Added setting of CLEANUP_INSTALL, this has the result that an exe
+ that is installed into a different directory is also removed when
+ doing a clean. Thanks to Don and Chad for validing this.
Mon Dec 15 11:09:45 2003 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
- * tests/Proactor_Test.cpp (ACE_MT_SYNCH>):
- * ace/POSIX_CB_Proactor.cpp (ACE_POSIX_CB_Proactor): Added a
- cast to (unsigned int) so things will work properly for the
- ACE_Thread_Semaphore. Thanks to Bala and Don Hinton for
- reporting these problems.
+ * tests/Proactor_Test.cpp (ACE_MT_SYNCH>):
+ * ace/POSIX_CB_Proactor.cpp (ACE_POSIX_CB_Proactor): Added a
+ cast to (unsigned int) so things will work properly for the
+ ACE_Thread_Semaphore. Thanks to Bala and Don Hinton for
+ reporting these problems.
Mon Dec 15 10:11:31 2003 Chad Elliott <elliott_c@ociweb.com>
diff --git a/ace/TMCast/TMCast.mpc b/ace/TMCast/TMCast.mpc
new file mode 100644
index 00000000000..8bfbceb0d16
--- /dev/null
+++ b/ace/TMCast/TMCast.mpc
@@ -0,0 +1,8 @@
+// -*- MPC -*-
+// $Id$
+
+project : acelib, core {
+ sharedname = TMCast
+ dynamicflags += TMCAST_BUILD_DLL
+ include_dir = ace/TMCast
+}
diff --git a/ace/ace.mwc b/ace/ace.mwc
index abaa1dd15fd..0ae6180ea24 100644
--- a/ace/ace.mwc
+++ b/ace/ace.mwc
@@ -3,7 +3,8 @@
workspace {
ace.mpc
+ QoS
RMCast
SSL
- QoS
+ TMCast
}
diff --git a/bin/MakeProjectCreator/config/tmcast.mpb b/bin/MakeProjectCreator/config/tmcast.mpb
new file mode 100644
index 00000000000..760a317e874
--- /dev/null
+++ b/bin/MakeProjectCreator/config/tmcast.mpb
@@ -0,0 +1,5 @@
+project: acelib {
+ after += TMCast
+ libs += TMCast
+ dynamicflags += TMCAST_BUILD_DLL
+}
diff --git a/examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp b/examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp
index 03ef7084c6f..22535160cf0 100644
--- a/examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp
+++ b/examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp
@@ -6,6 +6,7 @@
#include "ace/Thread_Manager.h"
#include "ace/Handle_Set.h"
#include "ace/Profile_Timer.h"
+#include "ace/OS_NS_sys_select.h"
#include "ace/SSL/SSL_SOCK_Acceptor.h"
diff --git a/examples/TMCast/Member/Member.mpc b/examples/TMCast/Member/Member.mpc
new file mode 100644
index 00000000000..2ce88161cb8
--- /dev/null
+++ b/examples/TMCast/Member/Member.mpc
@@ -0,0 +1,3 @@
+project: aceexe, tmcast {
+}
+
diff --git a/examples/TMCast/Member/member.cpp b/examples/TMCast/Member/member.cpp
index e2e21628969..657e446a36a 100644
--- a/examples/TMCast/Member/member.cpp
+++ b/examples/TMCast/Member/member.cpp
@@ -7,6 +7,7 @@
#include "ace/OS_NS_stdlib.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_NS_stdio.h"
+#include "ace/OS_NS_time.h"
#include "ace/TMCast/Group.hpp"
diff --git a/protocols/ace/TMCast/TMCast.mpc b/protocols/ace/TMCast/TMCast.mpc
new file mode 100644
index 00000000000..8bfbceb0d16
--- /dev/null
+++ b/protocols/ace/TMCast/TMCast.mpc
@@ -0,0 +1,8 @@
+// -*- MPC -*-
+// $Id$
+
+project : acelib, core {
+ sharedname = TMCast
+ dynamicflags += TMCAST_BUILD_DLL
+ include_dir = ace/TMCast
+}