summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-12-31 22:29:23 +0000
committerSteve Huston <shuston@riverace.com>2002-12-31 22:29:23 +0000
commit1cc05e0c38210bb8f2246786e21aa7accd54db88 (patch)
tree519a45104709951b9790ee05076ee52d4bb90a2e
parent9f04781fc12ce2974c9492a204e2807009b1529c (diff)
downloadATCD-1cc05e0c38210bb8f2246786e21aa7accd54db88.tar.gz
ChangeLogTag:Tue Dec 31 17:26:41 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog9
-rw-r--r--ChangeLogs/ChangeLog-03a9
-rw-r--r--tests/CE_fostream.h2
-rw-r--r--tests/tests.mpc1
4 files changed, 21 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 97ad083a596..0acf4ded56e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Tue Dec 31 17:26:41 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/tests.mpc (DLL Test Lib): Add dllflags = ACE_BUILD_SVC_DLL to
+ add the correct /D option. The source uses ACE_Svc_Export to flag
+ dll import/export correctly.
+
+ * tests/CE_fostream.h: #include "ace/config-all.h" before checking for
+ #if defined (ACE_HAS_WINCE).
+
Tue Dec 31 15:05:42 2002 Steve Huston <shuston@riverace.com>
* ACEXML/apps/svcconf/Svcconf.cpp: Changed the condition for when
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 97ad083a596..0acf4ded56e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,12 @@
+Tue Dec 31 17:26:41 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/tests.mpc (DLL Test Lib): Add dllflags = ACE_BUILD_SVC_DLL to
+ add the correct /D option. The source uses ACE_Svc_Export to flag
+ dll import/export correctly.
+
+ * tests/CE_fostream.h: #include "ace/config-all.h" before checking for
+ #if defined (ACE_HAS_WINCE).
+
Tue Dec 31 15:05:42 2002 Steve Huston <shuston@riverace.com>
* ACEXML/apps/svcconf/Svcconf.cpp: Changed the condition for when
diff --git a/tests/CE_fostream.h b/tests/CE_fostream.h
index f2bf9f1f268..347cfc0e71d 100644
--- a/tests/CE_fostream.h
+++ b/tests/CE_fostream.h
@@ -19,6 +19,8 @@
#ifndef ACE_CE_fostream_h
#define ACE_CE_fostream_h
+#include "ace/config-all.h"
+
#ifdef ACE_HAS_WINCE
#include "ace/OS.h"
diff --git a/tests/tests.mpc b/tests/tests.mpc
index 3bf836f1c54..d077c53c4a3 100644
--- a/tests/tests.mpc
+++ b/tests/tests.mpc
@@ -13,6 +13,7 @@ project(Framework Component DLL) : acelib {
project(DLL Test Lib) : acelib {
sharedname = DLL_Test
+ dllflags = ACE_BUILD_SVC_DLL
Source_Files {
DLL_Test_Impl.cpp