summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-08-01 06:01:45 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-08-01 06:01:45 +0000
commit12d75d1d582a3ac717d2e4fc1eedaab60a442d14 (patch)
tree70ed3d596a802e4a965150d86f5374735ca0f0c2
parent02d1a8067f20bee5f906494aa4480b21a3a39172 (diff)
downloadATCD-12d75d1d582a3ac717d2e4fc1eedaab60a442d14.tar.gz
ChangeLogTag:Tue Jul 31 22:53:26 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog12
-rw-r--r--ChangeLogs/ChangeLog-02a12
-rw-r--r--ChangeLogs/ChangeLog-03a12
-rw-r--r--tests/Makefile.am13
-rw-r--r--tests/libService_Config_DLL.icc26
5 files changed, 72 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b88ddabec4..313d137e4b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Tue Jul 31 22:53:26 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/libService_Config_DLL.icc:
+
+ New Visual Age project file for the libService_Config_DLL
+ library.
+
+ * tests/Makefile.am:
+
+ Added build targets/dependencies for the libService_Config_DLL
+ library.
+
Tue Jul 31 22:46:33 2001 Ossama Othman <ossama@uci.edu>
* tests/Service_Config_DLL.dsp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 7b88ddabec4..313d137e4b1 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,15 @@
+Tue Jul 31 22:53:26 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/libService_Config_DLL.icc:
+
+ New Visual Age project file for the libService_Config_DLL
+ library.
+
+ * tests/Makefile.am:
+
+ Added build targets/dependencies for the libService_Config_DLL
+ library.
+
Tue Jul 31 22:46:33 2001 Ossama Othman <ossama@uci.edu>
* tests/Service_Config_DLL.dsp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 7b88ddabec4..313d137e4b1 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,15 @@
+Tue Jul 31 22:53:26 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/libService_Config_DLL.icc:
+
+ New Visual Age project file for the libService_Config_DLL
+ library.
+
+ * tests/Makefile.am:
+
+ Added build targets/dependencies for the libService_Config_DLL
+ library.
+
Tue Jul 31 22:46:33 2001 Ossama Othman <ossama@uci.edu>
* tests/Service_Config_DLL.dsp:
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5df90c6906f..780193e3253 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -44,10 +44,15 @@ else
XTREACTOR_TEST =
endif
-## Build the shared library needed for the DLL_Test
-noinst_LTLIBRARIES = libDLL_Test.la
+## Build the shared libraries needed for the DLL_Test and the
+## Service_Config_DLL test.
+noinst_LTLIBRARIES = libDLL_Test.la libService_Config_DLL.la
+
libDLL_Test_la_LDFLAGS = -module
-libDLL_Test_la_SOURCES = $(DLL_Test_SOURCES)
+libDLL_Test_la_SOURCES = DLL_Test_Impl.cpp DLL_Test_Impl.h
+
+libService_Config_DLL_la_LDFLAGS = -module
+libService_Config_DLL_la_SOURCES = Service_Config_DLL.cpp Service_Config_DLL.h
## Build the following test programs when a `make check' is
## issued by the user.
@@ -163,6 +168,7 @@ Collection_Test_SOURCES = Collection_Test.cpp
Conn_Test_SOURCES = Conn_Test.cpp Conn_Test.h
DLL_Test_SOURCES = DLL_Test.cpp DLL_Test.h
+DLL_Test : libDLL_Test.la
DLList_Test_SOURCES = DLList_Test.cpp
@@ -257,6 +263,7 @@ SV_Shared_Memory_Test_SOURCES = SV_Shared_Memory_Test.cpp
Semaphore_Test_SOURCES = Semaphore_Test.cpp
Service_Config_Test_SOURCES = Service_Config_Test.cpp
+Service_Config_Test : libService_Config_DLL.la
Sigset_Ops_Test_SOURCES = Sigset_Ops_Test.cpp
diff --git a/tests/libService_Config_DLL.icc b/tests/libService_Config_DLL.icc
new file mode 100644
index 00000000000..ed0a2802841
--- /dev/null
+++ b/tests/libService_Config_DLL.icc
@@ -0,0 +1,26 @@
+// $Id$
+
+include "vacpp_setup.icc"
+
+if $__TOS_AIX__ {
+ TargetType = "shr"
+ TargetName = "shr.o"
+}
+
+option
+ link(libSearchPath, platformLibSearchPath),
+ incl(searchPath, ".."),
+ link(linkWithMultiThreadLib,yes),
+ link(debug)
+ {
+ target type ( TargetType ) TargetName
+ {
+ source type (cpp) "Service_Config_DLL.cpp"
+ source platformLinkLibs
+ }
+if $__TOS_AIX__ {
+ run after targets( TargetName ) "ar -r -u libService_Config_DLL.a shr.o"
+ run cleanup targets ( TargetName ) "rm -rf libService_Config_DLL.a"
+}
+
+ }