summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile3
2 files changed, 7 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 5afcb972c47..d2b40257895 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Mon Nov 24 14:27:19 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * orbsvcs/tests/Security/Secure_invocation/Makefile:
+
+ Added the required libraries for linking withou any problems.
+
Mon Nov 24 12:33:49 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* orbsvcs/orbsvcs/Makefile:
diff --git a/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile b/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile
index bb884783193..4edc56baa78 100644
--- a/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile
+++ b/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile
@@ -60,7 +60,6 @@ CLNT_LIBS += -lTAO_SSLIOP
SRVR_LIBS += -lTAO_SSLIOP
endif # static_libs_only = 1
-CLNT_LIBS += -lTAO_Security $(TAO_CLNT_LIBS)
SRVR_LIBS += \
-lTAO_Security $(TAO_SRVR_LIBS) -lssl -lcrypto
@@ -79,7 +78,7 @@ server: $(addprefix $(VDIR),$(SERVER_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(SRVR_LIBS) $(POSTLINK)
client: $(addprefix $(VDIR),$(CLIENT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(CLNT_LIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(SRVR_LIBS) $(POSTLINK)
# DO NOT DELETE THIS LINE -- g++dep uses it.