You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by sh...@apache.org on 2008/02/08 12:20:12 UTC

svn commit: r619835 - in /webservices/rampart/trunk/c/samples: sct_provider/Makefile.am server/secconv_echo/Makefile.am

Author: shankar
Date: Fri Feb  8 03:20:05 2008
New Revision: 619835

URL: http://svn.apache.org/viewvc?rev=619835&view=rev
Log:
secure conversation implementation - solving compilation problem on linux

Modified:
    webservices/rampart/trunk/c/samples/sct_provider/Makefile.am
    webservices/rampart/trunk/c/samples/server/secconv_echo/Makefile.am

Modified: webservices/rampart/trunk/c/samples/sct_provider/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/sct_provider/Makefile.am?rev=619835&r1=619834&r2=619835&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/sct_provider/Makefile.am (original)
+++ webservices/rampart/trunk/c/samples/sct_provider/Makefile.am Fri Feb  8 03:20:05 2008
@@ -4,12 +4,17 @@
 libsctprovider_la_LIBADD  = $(LDFLAGS) \
 						   		-L$(AXIS2C_HOME)/lib \
 								-laxutil \
-								../../src/util/librampart_util.la
+								../../src/util/librampart_util.la \
+								../../src/secconv/libsecconv.la \
+								../../src/omxmlsec/libomxmlsec.la
 
 libsctprovider_hashdb_la_SOURCES = sct_provider_hash_map.c
 libsctprovider_hashdb_la_LIBADD  = $(LDFLAGS) \
 						   		-L$(AXIS2C_HOME)/lib \
 								-laxutil \
-								../../src/util/librampart_util.la
+								../../src/util/librampart_util.la \
+								../../src/secconv/libsecconv.la \
+								../../src/omxmlsec/libomxmlsec.la \
+								../../src/trust/libtrust.la 
 INCLUDES = -I ../../include\
 			@AXIS2INC@

Modified: webservices/rampart/trunk/c/samples/server/secconv_echo/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/server/secconv_echo/Makefile.am?rev=619835&r1=619834&r2=619835&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/server/secconv_echo/Makefile.am (original)
+++ webservices/rampart/trunk/c/samples/server/secconv_echo/Makefile.am Fri Feb  8 03:20:05 2008
@@ -10,7 +10,8 @@
 libsecconv_echo_la_LIBADD   = $(LDFLAGS) \
                     -L$(AXIS2C_HOME)/lib \
                     -L$(AXIS2C_HOME)/modules/rampart \
-					-lmod_rampart
+					-lmod_rampart \
+					-ltrust
 
 
 INCLUDES = @AXIS2INC@ \