You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ma...@apache.org on 2008/06/03 11:08:16 UTC

svn commit: r662711 - in /webservices/axis2/branches/c/post_1_4_mtom/c: build.sh include/axis2_const.h samples/mtom_caching_callback/Makefile.am

Author: manjula
Date: Tue Jun  3 02:08:16 2008
New Revision: 662711

URL: http://svn.apache.org/viewvc?rev=662711&view=rev
Log:
Changing the callabck makefile and names of the params in axis2.xml.

Modified:
    webservices/axis2/branches/c/post_1_4_mtom/c/build.sh
    webservices/axis2/branches/c/post_1_4_mtom/c/include/axis2_const.h
    webservices/axis2/branches/c/post_1_4_mtom/c/samples/mtom_caching_callback/Makefile.am

Modified: webservices/axis2/branches/c/post_1_4_mtom/c/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/c/post_1_4_mtom/c/build.sh?rev=662711&r1=662710&r2=662711&view=diff
==============================================================================
--- webservices/axis2/branches/c/post_1_4_mtom/c/build.sh (original)
+++ webservices/axis2/branches/c/post_1_4_mtom/c/build.sh Tue Jun  3 02:08:16 2008
@@ -7,13 +7,13 @@
 
 echo "AXIS2C_HOME = ${AXIS2C_HOME}"
 
-sh configure --prefix=${AXIS2C_HOME} --enable-tests=yes
+sh configure --prefix=${AXIS2C_HOME} --enable-tests=yes --with-apache2=/usr/local/apache2/include
 make -j 10 
 make install
 
 cd samples
 sh autogen.sh
-sh configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.4.0 --with-apache2=/usr/local/apache2/include
+sh configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.4.0 
 make -j 10
 make install
 								

Modified: webservices/axis2/branches/c/post_1_4_mtom/c/include/axis2_const.h
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/c/post_1_4_mtom/c/include/axis2_const.h?rev=662711&r1=662710&r2=662711&view=diff
==============================================================================
--- webservices/axis2/branches/c/post_1_4_mtom/c/include/axis2_const.h (original)
+++ webservices/axis2/branches/c/post_1_4_mtom/c/include/axis2_const.h Tue Jun  3 02:08:16 2008
@@ -355,6 +355,7 @@
 #define AXIS2_FILE_SIZE_THRESHOLD "sizeThreshold"
 #define AXIS2_MTOM_BUFFER_SIZE "MTOMBufferSize"
 #define AXIS2_MTOM_MAX_BUFFERS "MTOMMaxBuffers"
+#define AXIS2_MTOM_CACHING_CALLBACK "MTOMCachingCallback"
 
     /* op_ctx persistance */
 #define AXIS2_PERSIST_OP_CTX "persistOperationContext"

Modified: webservices/axis2/branches/c/post_1_4_mtom/c/samples/mtom_caching_callback/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/c/post_1_4_mtom/c/samples/mtom_caching_callback/Makefile.am?rev=662711&r1=662710&r2=662711&view=diff
==============================================================================
--- webservices/axis2/branches/c/post_1_4_mtom/c/samples/mtom_caching_callback/Makefile.am (original)
+++ webservices/axis2/branches/c/post_1_4_mtom/c/samples/mtom_caching_callback/Makefile.am Tue Jun  3 02:08:16 2008
@@ -1,8 +1,10 @@
 prglibdir=$(prefix)/bin/mtom_caching_callabck
 prglib_LTLIBRARIES = libmtom_caching_callback.la 
-libmtom_caching_callback_la_SOURCES = 
+libmtom_caching_callback_la_SOURCES = mtom_caching_callback.c 
 libmtom_caching_callback_la_LIBADD  = $(LDFLAGS) \
 						   		-L$(AXIS2C_HOME)/lib \
 								-laxutil
 
-INCLUDES = -I @AXIS2INC@
+INCLUDES = -I ../../util/include \
+			../../axiom/include \
+		@AXIS2INC@