diff options
-rw-r--r-- | TAO/ChangeLog | 7 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/Makefile.PortableGroup | 1 | ||||
-rw-r--r-- | TAO/orbsvcs/tests/Miop/McastHello/Makefile | 2 |
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) |