summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-04 17:52:31 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-04 17:52:31 +0000
commitf967d93ac54c9089eb88154ce9fdda3da50b3aee (patch)
treeec027c80bf4e7b63069b81e4e1ed54b3c3725d01
parent590d527e3f5c52a7959e9bcf672f3ba906247276 (diff)
downloadATCD-f967d93ac54c9089eb88154ce9fdda3da50b3aee.tar.gz
ChangeLogTag: Tue Jan 4 09:56:46 2005 J.T. Conklin <jtc@acorntoolworks.com>
-rw-r--r--ChangeLog14
-rw-r--r--ace/TMCast/TMCast.mpc3
-rw-r--r--bin/MakeProjectCreator/config/exceptions.mpb6
-rw-r--r--bin/MakeProjectCreator/config/threads.mpb6
-rw-r--r--bin/MakeProjectCreator/config/tmcast.mpb3
-rw-r--r--protocols/ace/TMCast/TMCast.mpc3
6 files changed, 29 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d84a09224d..cb32c2424fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Tue Jan 4 09:56:46 2005 J.T. Conklin <jtc@acorntoolworks.com>
+
+ * ace/TMCast/TMCast.mpc:
+ * bin/MakeProjectCreator/config/tmcast.mpb:
+
+ Changed to inherit from exceptions.mpb and threads.mpb
+
+ * bin/MakeProjectCreator/exceptions.mpb:
+ * bin/MakeProjectCreator/threads.mpb:
+
+ New files, MPC base projects that require exceptions and threads
+ respecitively. Projects can inherit from these instead of using
+ an explicit requires +=, which can result in duplicate entries.
+
Tue Jan 4 13:40:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/create-jace-release:
diff --git a/ace/TMCast/TMCast.mpc b/ace/TMCast/TMCast.mpc
index 52c9212e0ae..28bebc8bcba 100644
--- a/ace/TMCast/TMCast.mpc
+++ b/ace/TMCast/TMCast.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project : acelib, core {
- requires += exceptions threads
+project : acelib, core, exceptions, threads {
sharedname = ACE_TMCast
dynamicflags += TMCAST_BUILD_DLL
}
diff --git a/bin/MakeProjectCreator/config/exceptions.mpb b/bin/MakeProjectCreator/config/exceptions.mpb
new file mode 100644
index 00000000000..912530f5cfb
--- /dev/null
+++ b/bin/MakeProjectCreator/config/exceptions.mpb
@@ -0,0 +1,6 @@
+// -*- MPC -*-
+// $Id$
+
+project {
+ requires += exceptions
+}
diff --git a/bin/MakeProjectCreator/config/threads.mpb b/bin/MakeProjectCreator/config/threads.mpb
new file mode 100644
index 00000000000..8d3b8648ca5
--- /dev/null
+++ b/bin/MakeProjectCreator/config/threads.mpb
@@ -0,0 +1,6 @@
+// -*- MPC -*-
+// $Id$
+
+project {
+ requires += threads
+}
diff --git a/bin/MakeProjectCreator/config/tmcast.mpb b/bin/MakeProjectCreator/config/tmcast.mpb
index 329181bf569..9bd473ead9f 100644
--- a/bin/MakeProjectCreator/config/tmcast.mpb
+++ b/bin/MakeProjectCreator/config/tmcast.mpb
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project: acelib {
+project: acelib, exceptions, threads {
after += TMCast
libs += ACE_TMCast
- requires += exceptions threads
}
diff --git a/protocols/ace/TMCast/TMCast.mpc b/protocols/ace/TMCast/TMCast.mpc
index 52c9212e0ae..28bebc8bcba 100644
--- a/protocols/ace/TMCast/TMCast.mpc
+++ b/protocols/ace/TMCast/TMCast.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project : acelib, core {
- requires += exceptions threads
+project : acelib, core, exceptions, threads {
sharedname = ACE_TMCast
dynamicflags += TMCAST_BUILD_DLL
}