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 sa...@apache.org on 2007/09/24 05:11:35 UTC

svn commit: r578631 - in /webservices/axis2/tags/c/1.1.0: Makefile.am build.sh samples/server/Makefile.am util/src/dir_handler.c xdocs/api/doxygenconf

Author: samisa
Date: Sun Sep 23 20:11:34 2007
New Revision: 578631

URL: http://svn.apache.org/viewvc?rev=578631&view=rev
Log:
Fixed the issues raised during release vote

Modified:
    webservices/axis2/tags/c/1.1.0/Makefile.am
    webservices/axis2/tags/c/1.1.0/build.sh
    webservices/axis2/tags/c/1.1.0/samples/server/Makefile.am
    webservices/axis2/tags/c/1.1.0/util/src/dir_handler.c
    webservices/axis2/tags/c/1.1.0/xdocs/api/doxygenconf

Modified: webservices/axis2/tags/c/1.1.0/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/tags/c/1.1.0/Makefile.am?rev=578631&r1=578630&r2=578631&view=diff
==============================================================================
--- webservices/axis2/tags/c/1.1.0/Makefile.am (original)
+++ webservices/axis2/tags/c/1.1.0/Makefile.am Sun Sep 23 20:11:34 2007
@@ -13,7 +13,7 @@
 
 logs_DATA=
 docs_DATA=
-EXTRA_DIST = build.sh autogen.sh CREDITS LICENSE build axis2c_build.sh guththila tools AUTHORS NOTICE xdocs
+EXTRA_DIST = build.sh autogen.sh CREDITS LICENSE build axis2c_build.sh guththila tools AUTHORS NOTICE 
 
 dist-hook:
 	rm -rf `find $(distdir)/ -type d -name .svn`

Modified: webservices/axis2/tags/c/1.1.0/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/tags/c/1.1.0/build.sh?rev=578631&r1=578630&r2=578631&view=diff
==============================================================================
--- webservices/axis2/tags/c/1.1.0/build.sh (original)
+++ webservices/axis2/tags/c/1.1.0/build.sh Sun Sep 23 20:11:34 2007
@@ -7,14 +7,14 @@
 
 echo "AXIS2C_HOME = ${AXIS2C_HOME}"
 
-sh configure --prefix=${AXIS2C_HOME} 
-make -j 10 
+sh configure --prefix=${AXIS2C_HOME} --enable-tests=yes --with-apache2=/usr/local/apache2/include --with-apr=/usr/local/apache2/include --enable-tcp
+make 
 make install
 
 cd samples
 sh autogen.sh
 sh configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.1
-make -j 10
+make 
 make install
 								
 cd ..

Modified: webservices/axis2/tags/c/1.1.0/samples/server/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/tags/c/1.1.0/samples/server/Makefile.am?rev=578631&r1=578630&r2=578631&view=diff
==============================================================================
--- webservices/axis2/tags/c/1.1.0/samples/server/Makefile.am (original)
+++ webservices/axis2/tags/c/1.1.0/samples/server/Makefile.am Sun Sep 23 20:11:34 2007
@@ -1,3 +1,3 @@
 SUBDIRS = echo math notify sg_math mtom Calculator
-EXTRA_DIST = axis2.xml axis2.log 
+EXTRA_DIST = axis2.xml 
 

Modified: webservices/axis2/tags/c/1.1.0/util/src/dir_handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/tags/c/1.1.0/util/src/dir_handler.c?rev=578631&r1=578630&r2=578631&view=diff
==============================================================================
--- webservices/axis2/tags/c/1.1.0/util/src/dir_handler.c (original)
+++ webservices/axis2/tags/c/1.1.0/util/src/dir_handler.c Sun Sep 23 20:11:34 2007
@@ -287,13 +287,11 @@
         AXIS2_FREE(env->allocator, buf);
     }
 
-/*#ifndef WIN32*/
     for (i = 0; i < count; i++)
     {
-        AXIS2_FREE(env->allocator, files[i]);
+        free(files[i]);
     }
-    AXIS2_FREE(env->allocator, files);
-/*#endif*/
+    free(files);
     return file_list;
 }
 

Modified: webservices/axis2/tags/c/1.1.0/xdocs/api/doxygenconf
URL: http://svn.apache.org/viewvc/webservices/axis2/tags/c/1.1.0/xdocs/api/doxygenconf?rev=578631&r1=578630&r2=578631&view=diff
==============================================================================
--- webservices/axis2/tags/c/1.1.0/xdocs/api/doxygenconf (original)
+++ webservices/axis2/tags/c/1.1.0/xdocs/api/doxygenconf Sun Sep 23 20:11:34 2007
@@ -450,7 +450,7 @@
 # directories like "/usr/src/myproject". Separate the files or directories 
 # with spaces.
 
-INPUT                  = ../../../deploy/include/axis2-1.1/
+INPUT                  = ../../deploy/include/axis2-1.1/
 
 # If the value of the INPUT tag contains directories, you can use the 
 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org