summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-07-13 04:40:19 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-07-13 04:40:19 +0000
commit7f2268765e8210efb282558d69ee12ea171030b8 (patch)
tree2b2e536cec416cb26f0ad5e804790f125aa8c455
parent1a09d96d1eeca575a793cc2183bf598daa5c1ffa (diff)
downloadATCD-7f2268765e8210efb282558d69ee12ea171030b8.tar.gz
ChangeLogTag:Thu Jul 12 21:36:53 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a8
-rw-r--r--TAO/orbsvcs/orbsvcs/Makefile8
2 files changed, 16 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 062c1c5b352..4f33c6f68d5 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Thu Jul 12 21:36:53 2001 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/orbsvcs/Makefile (MKLIST):
+
+ The AV Service needs the CosNaming and CosProperty libraries.
+ Add their Makefiles to the build list if they aren't already
+ there.
+
Thu Jul 12 20:40:51 2001 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp (connect):
diff --git a/TAO/orbsvcs/orbsvcs/Makefile b/TAO/orbsvcs/orbsvcs/Makefile
index 337c9d590fe..5451a2f12df 100644
--- a/TAO/orbsvcs/orbsvcs/Makefile
+++ b/TAO/orbsvcs/orbsvcs/Makefile
@@ -88,6 +88,14 @@ ifneq (,$(findstring Property, $(TAO_ORBSVCS)))
MKLIST += Makefile.CosProperty
endif
ifneq (,$(findstring AV, $(TAO_ORBSVCS)))
+ # AV service depends on CosNaming and CosProperty
+ ifeq (,$(findstring Naming,$(TAO_ORBSVCS)))
+ MKLIST += Makefile.CosNaming
+ endif
+ ifeq (,$(findstring Property, $(TAO_ORBSVCS)))
+ MKLIST += Makefile.CosProperty
+ endif
+
MKLIST += Makefile.av
endif
ifneq (,$(findstring LifeCycle, $(TAO_ORBSVCS)))