summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-09-23 18:27:48 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-09-23 18:27:48 +0000
commitc7e74756b2932895b035b5d07c88d1484aefe906 (patch)
treea6cde9a25954b1c033e45db4b79cdd882301fd4c
parent9283b8ab48ca65730ee151f9f145bb48accfd0d9 (diff)
downloadATCD-c7e74756b2932895b035b5d07c88d1484aefe906.tar.gz
ChangeLogTag: Thu Sep 23 13:24:54 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ACEXML/tests/tests.mpc4
-rw-r--r--ChangeLog51
-rw-r--r--examples/DLL/DLL.mpc5
-rw-r--r--examples/Export/Export.mpc5
-rw-r--r--examples/NT_Service/NT_Service.mpc4
-rw-r--r--examples/Reactor/Ntalker/Reactor_Ntalker.mpc1
-rw-r--r--examples/Web_Crawler/Web_Crawler.mpc1
-rw-r--r--performance-tests/Misc/Misc.mpc8
-rw-r--r--performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc4
-rw-r--r--performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc4
-rw-r--r--performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc3
-rw-r--r--performance-tests/TCP/TCP.mpc3
-rw-r--r--performance-tests/UDP/UDP.mpc1
13 files changed, 69 insertions, 25 deletions
diff --git a/ACEXML/tests/tests.mpc b/ACEXML/tests/tests.mpc
index c6a0b85e7b5..e0a2365e689 100644
--- a/ACEXML/tests/tests.mpc
+++ b/ACEXML/tests/tests.mpc
@@ -2,24 +2,28 @@
// $Id$
project(Transcoder_Test): aceexe, acexml {
+ exename = Transcoder_Test
Source_Files {
Transcoder_Test.cpp
}
}
project(NamespaceSupport_Test): aceexe, acexml {
+ exename = NamespaceSupport_Test
Source_Files {
NamespaceSupport_Test.cpp
}
}
project(HttpCharStream_Test): aceexe, acexml {
+ exename = HttpCharStream_Test
Source_Files {
HttpCharStream_Test.cpp
}
}
project(ContentHandler_Test): aceexe, acexml {
+ exename = ContentHandler_Test
Source_Files {
ContentHandler_Test.cpp
}
diff --git a/ChangeLog b/ChangeLog
index c79ca9d5474..a938df1ee28 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,24 @@
+Thu Sep 23 13:24:54 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * ACEXML/tests/tests.mpc:
+ * examples/DLL/DLL.mpc:
+ * examples/Export/Export.mpc:
+ * examples/NT_Service/NT_Service.mpc:
+ * examples/Reactor/Ntalker/Reactor_Ntalker.mpc:
+ * examples/Web_Crawler/Web_Crawler.mpc:
+ * performance-tests/Misc/Misc.mpc:
+ * performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc:
+ * performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc:
+ * performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc:
+ * performance-tests/TCP/TCP.mpc:
+ * performance-tests/UDP/UDP.mpc:
+
+ Added an 'exename' setting for the projects in these mpc files.
+ The cpp files contain some form of ACE_MAIN which used to be
+ recognized by MPC as an entry point. It is now necessary to set
+ exename since MPC will no longer recognize ACE_MAIN as a "main"
+ function.
+
Thu Sep 23 15:13:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Config.h:
@@ -5,10 +26,10 @@ Thu Sep 23 15:13:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Thu Sep 23 07:42:33 2004 J.T. Conklin <jtc@acorntoolworks.com>
- * ace/ACE.cpp:
+ * ace/ACE.cpp:
- Changed buffer and iovec versions of ACE:crc32() to hoist
- computing the end position out of the loop.
+ Changed buffer and iovec versions of ACE:crc32() to hoist
+ computing the end position out of the loop.
Thu Sep 23 14:34:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
@@ -26,29 +47,29 @@ Thu Sep 23 14:34:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Wed Sep 22 14:40:15 2004 J.T. Conklin <jtc@acorntoolworks.com>
- * ace/ACE.cpp:
+ * ace/ACE.cpp:
- Changed ACE::crc32() family of functions to NOT fold in the
- length of the string/buffer/iovec into the CRC.
+ Changed ACE::crc32() family of functions to NOT fold in the
+ length of the string/buffer/iovec into the CRC.
- * ace/ACE.cpp:
- * ace/ACE.h:
+ * ace/ACE.cpp:
+ * ace/ACE.h:
- Changed return type of ACE::crc32() family of functions from
- u_long to ACE_UINT32.
+ Changed return type of ACE::crc32() family of functions from
+ u_long to ACE_UINT32.
Wed Sep 22 13:46:01 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * bin/msvc_cidlc.pl:
+ * bin/msvc_cidlc.pl:
- CIDLC cannot be compiled in release mode. Enable only debug
- mode.
+ CIDLC cannot be compiled in release mode. Enable only debug
+ mode.
Wed Sep 22 10:35:18 2004 J.T. Conklin <jtc@acorntoolworks.com>
- * ace/ACE.cpp:
+ * ace/ACE.cpp:
- Added const qualifier to ACE_OS::crc_table_.
+ Added const qualifier to ACE_OS::crc_table_.
Wed Sep 22 17:37:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
diff --git a/examples/DLL/DLL.mpc b/examples/DLL/DLL.mpc
index 658c9379279..ca8d0a63009 100644
--- a/examples/DLL/DLL.mpc
+++ b/examples/DLL/DLL.mpc
@@ -14,8 +14,9 @@ project(*Today) : acelib {
}
project(*Main) : aceexe {
- after += DLL_Newsweek DLL_Today
+ exename = test_dll
+ after += DLL_Newsweek DLL_Today
Source_Files {
test_dll.cpp
}
-} \ No newline at end of file
+}
diff --git a/examples/Export/Export.mpc b/examples/Export/Export.mpc
index 82a1773921d..51edc145591 100644
--- a/examples/Export/Export.mpc
+++ b/examples/Export/Export.mpc
@@ -10,8 +10,9 @@ project(*Lib) : acelib {
}
project(*test) : aceexe {
- after += *Lib
- libs += Export_Lib
+ exename = test
+ after += *Lib
+ libs += Export_Lib
Source_Files {
test.cpp
}
diff --git a/examples/NT_Service/NT_Service.mpc b/examples/NT_Service/NT_Service.mpc
index 7d11f2ca152..8c88a26faab 100644
--- a/examples/NT_Service/NT_Service.mpc
+++ b/examples/NT_Service/NT_Service.mpc
@@ -2,7 +2,7 @@
// $Id$
project : aceexe {
-
+ exename = main
verbatim(gnuace, top) {
ifneq ($(MAKE),)
include $(ACE_ROOT)/include/makeinclude/macros.GNU
@@ -16,4 +16,4 @@ project : aceexe {
endif
}
-} \ No newline at end of file
+}
diff --git a/examples/Reactor/Ntalker/Reactor_Ntalker.mpc b/examples/Reactor/Ntalker/Reactor_Ntalker.mpc
index f40976387fb..ef2fb84d9a0 100644
--- a/examples/Reactor/Ntalker/Reactor_Ntalker.mpc
+++ b/examples/Reactor/Ntalker/Reactor_Ntalker.mpc
@@ -2,4 +2,5 @@
// $Id$
project : aceexe {
+ exename = ntalker
}
diff --git a/examples/Web_Crawler/Web_Crawler.mpc b/examples/Web_Crawler/Web_Crawler.mpc
index f40976387fb..a7df4bfef17 100644
--- a/examples/Web_Crawler/Web_Crawler.mpc
+++ b/examples/Web_Crawler/Web_Crawler.mpc
@@ -2,4 +2,5 @@
// $Id$
project : aceexe {
+ exename = main
}
diff --git a/performance-tests/Misc/Misc.mpc b/performance-tests/Misc/Misc.mpc
index 94a3bea51b4..5c2aa3ec7d5 100644
--- a/performance-tests/Misc/Misc.mpc
+++ b/performance-tests/Misc/Misc.mpc
@@ -2,6 +2,7 @@
// $Id$
project(*basic_perf) : aceexe {
+ exename = basic_perf
Source_Files {
basic_func.cpp
basic_perf.cpp
@@ -9,36 +10,42 @@ project(*basic_perf) : aceexe {
}
project(*childbirth_time) : aceexe {
+ exename = childbirth_time
Source_Files {
childbirth_time.cpp
}
}
project(*context_switch_time) : aceexe {
+ exename = context_switch_time
Source_Files {
context_switch_time.cpp
}
}
project(*test_mutex) : aceexe {
+ exename = test_mutex
Source_Files {
test_mutex.cpp
}
}
project(*test_naming) : aceexe {
+ exename = test_naming
Source_Files {
test_naming.cpp
}
}
project(*test_singleton) : aceexe {
+ exename = test_singleton
Source_Files {
test_singleton.cpp
}
}
project(*preempt) : aceexe {
+ exename = preempt
Source_Files {
preempt.cpp
}
@@ -46,6 +53,7 @@ project(*preempt) : aceexe {
// May need to add an ace_obsolete_guard_class feature
//project(*test_guard) : aceexe {
+// exename = test_guard
// Source_Files {
// test_guard.cpp
// }
diff --git a/performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc b/performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc
index 18b9e28febf..d4a5ce02924 100644
--- a/performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc
+++ b/performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc
@@ -2,13 +2,15 @@
// $Id$
project : aceexe {
+ exename = leader_follower
source_files {
leader_follower.cpp
}
}
project(*RT_CORBA) : aceexe {
+ exename = RT_CORBA_Leader_Follower
source_files {
RT_CORBA_Leader_Follower.cpp
}
-} \ No newline at end of file
+}
diff --git a/performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc b/performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc
index 4b4291e1f43..d916bb820ac 100644
--- a/performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc
+++ b/performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc
@@ -2,13 +2,15 @@
// $Id$
project : aceexe {
+ exename = workers
source_files {
workers.cpp
}
}
project(*RTCorba) : aceexe {
+ exename = RT_CORBA_Workers
source_files {
RT_CORBA_Workers.cpp
}
-} \ No newline at end of file
+}
diff --git a/performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc b/performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc
index 5c1492dc75b..92ad3685637 100644
--- a/performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc
+++ b/performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc
@@ -2,10 +2,11 @@
// $Id$
project : aceexe {
+ exename = synch_driver
after += Synch_Lib
libs += Synch_Lib
libpaths += Synch_Lib
source_files {
synch_driver.cpp
}
-} \ No newline at end of file
+}
diff --git a/performance-tests/TCP/TCP.mpc b/performance-tests/TCP/TCP.mpc
index ca6b8ee6622..e2244fe35a3 100644
--- a/performance-tests/TCP/TCP.mpc
+++ b/performance-tests/TCP/TCP.mpc
@@ -2,4 +2,5 @@
// $Id$
project : aceexe {
-} \ No newline at end of file
+ exename = tcp_test
+}
diff --git a/performance-tests/UDP/UDP.mpc b/performance-tests/UDP/UDP.mpc
index b145e73b879..355aba0d9db 100644
--- a/performance-tests/UDP/UDP.mpc
+++ b/performance-tests/UDP/UDP.mpc
@@ -2,6 +2,7 @@
// $Id$
project : aceexe {
+ exename = udp_test
verbatim(gnuace, local) {
LDLIBS += $(MATHLIB)
}