summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthrall <thrall@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-07 21:03:31 +0000
committerthrall <thrall@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-07 21:03:31 +0000
commit8083db8fc411f0b86586c367353c78298386e014 (patch)
treed8ef77178e64c6cbb627e6d0637efb12661a7c44
parent62260783c283ca5d2a2df4414d01bb078cb32bfa (diff)
downloadATCD-8083db8fc411f0b86586c367353c78298386e014.tar.gz
Corrected build errors from instrumenting Kokyu with DSUI
-rw-r--r--TAO/orbsvcs/examples/RtEC/test_driver/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/orbsvcs/examples/RtEC/test_driver/Makefile b/TAO/orbsvcs/examples/RtEC/test_driver/Makefile
index fb585fceabb..8ae96bcd685 100644
--- a/TAO/orbsvcs/examples/RtEC/test_driver/Makefile
+++ b/TAO/orbsvcs/examples/RtEC/test_driver/Makefile
@@ -23,13 +23,17 @@ ifeq (Event,$(findstring Event,$(TAO_ORBSVCS)))
endif # Sched
endif # Event
+# Where to find DSUI libraries
+LDFLAGS += -L$(DATASTREAM_ROOT)/lib
+
PSRC= Test.cpp Supplier.cpp Consumer.cpp ECConfig.cpp Service.cpp Config_Factory.cpp Test_Handler.cpp TestConfig.cpp TimeoutConsumer.cpp
-LDLIBS = -lTAO_RTOLDEvent -lTAO_RTEvent -lTAO_RTSched -lTAO_CosNaming -lTAO_Svc_Utils -lTAO_IORTable -lTAO_Messaging -lTAO_PortableServer -lTAO -lTAO_RTKokyuEvent -lACEXML_Parser
+LDLIBS = -lKokyu -lwrappers -ldsui -lTAO_RTOLDEvent -lTAO_RTEvent -lTAO_RTSched -lTAO_CosNaming -lTAO_Svc_Utils -lTAO_IORTable -lTAO_Messaging -lTAO_PortableServer -lTAO -lTAO_RTKokyuEvent -lACEXML_Parser
# The complete path to orbsvcs/orbsvcs/Sched is required for DU/CXX
# automatic template instantiation magic.
CPPFLAGS += -I$(TAO_ROOT) -I$(TAO_ROOT)/orbsvcs \
-I$(TAO_ROOT)/orbsvcs/orbsvcs/Sched \
+ -I$(DATASTREAM_ROOT)/include \
$(foreach svc, $(TAO_ORBSVCS), -DTAO_ORBSVCS_HAS_$(svc))
Test_OBJS=$(addsuffix .o, Test Consumer ECConfig Config_Factory Test_Handler TestConfig TimeoutConsumer)