summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-22 20:19:13 +0000
committercrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-22 20:19:13 +0000
commitb311cda8e44cd37088d74167afced02d493d8b65 (patch)
tree993e584b010fc3440d5fe0448721c679c0b154b4
parent1d9e8f7b82a26aa11d572903786cee4d4a3deddb (diff)
downloadATCD-b311cda8e44cd37088d74167afced02d493d8b65.tar.gz
ChangeLogTag: Mon Jul 22 20:16:04 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/orbsvcs/orbsvcs/Makefile.PortableGroup1
-rw-r--r--TAO/orbsvcs/tests/Miop/McastHello/Makefile2
3 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e02d2e831c8..51b928068b3 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Mon Jul 22 20:16:04 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
+
+ * orbsvcs/orbsvcs/Makefile.PortableGroup: Add
+ PG_Default_Property_Validator.cpp to list of files being built.
+ * orbsvcs/tests/Miop/McastHello/Makefile: Add -lTAO_PortableGroup to
+ link line. Fix for TRU64 Unix build.
+
Mon Jul 22 14:22:49 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/CosLoadBalancing.idl:
diff --git a/TAO/orbsvcs/orbsvcs/Makefile.PortableGroup b/TAO/orbsvcs/orbsvcs/Makefile.PortableGroup
index 66aee50780c..6a3d4b4a29e 100644
--- a/TAO/orbsvcs/orbsvcs/Makefile.PortableGroup
+++ b/TAO/orbsvcs/orbsvcs/Makefile.PortableGroup
@@ -58,6 +58,7 @@ FILES = \
PortableGroup/UIPMC_Profile \
PortableGroup/UIPMC_Transport \
PortableGroup/UIPMC_Wait_Never \
+ PortableGroup/PG_Default_Property_Validator \
PortableGroup/PG_Factory_Map \
PortableGroup/PG_Factory_Set \
PortableGroup/PG_GenericFactory \
diff --git a/TAO/orbsvcs/tests/Miop/McastHello/Makefile b/TAO/orbsvcs/tests/Miop/McastHello/Makefile
index 770e1784441..136056fad82 100644
--- a/TAO/orbsvcs/tests/Miop/McastHello/Makefile
+++ b/TAO/orbsvcs/tests/Miop/McastHello/Makefile
@@ -49,7 +49,7 @@ include $(TAO_ROOT)/taoconfig.mk
.PRECIOUS: $(foreach ext, $(IDL_EXT), Test$(ext))
server: $(addprefix $(VDIR),$(SERVER_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_SRVR_LIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ -lTAO_PortableGroup $(TAO_SRVR_LIBS) $(POSTLINK)
client: $(addprefix $(VDIR),$(CLIENT_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_CLNT_LIBS) $(POSTLINK)