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 pi...@apache.org on 2008/07/03 13:27:27 UTC

svn commit: r673650 - in /webservices/axis2/trunk/c: bindist.sh tools/tcpmon/configure.ac xdocs/api/doxygenconf

Author: pini
Date: Thu Jul  3 04:27:27 2008
New Revision: 673650

URL: http://svn.apache.org/viewvc?rev=673650&view=rev
Log:
Changed version numbers and fixed build break in tcpmon

Modified:
    webservices/axis2/trunk/c/bindist.sh
    webservices/axis2/trunk/c/tools/tcpmon/configure.ac
    webservices/axis2/trunk/c/xdocs/api/doxygenconf

Modified: webservices/axis2/trunk/c/bindist.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/bindist.sh?rev=673650&r1=673649&r2=673650&view=diff
==============================================================================
--- webservices/axis2/trunk/c/bindist.sh (original)
+++ webservices/axis2/trunk/c/bindist.sh Thu Jul  3 04:27:27 2008
@@ -20,13 +20,13 @@
 
 ./autogen.sh
 
-./configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.4.0
+./configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.5.0
 make
 make install
 
 make dist
-tar xf axis2c-sample-src-1.4.0.tar.gz
-mv axis2c-sample-src-1.4.0 samples
+tar xf axis2c-sample-src-1.5.0.tar.gz
+mv axis2c-sample-src-1.5.0 samples
 rm -rf ${AXIS2C_HOME}/samples
 mv samples ${AXIS2C_HOME}
 

Modified: webservices/axis2/trunk/c/tools/tcpmon/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/tools/tcpmon/configure.ac?rev=673650&r1=673649&r2=673650&view=diff
==============================================================================
--- webservices/axis2/trunk/c/tools/tcpmon/configure.ac (original)
+++ webservices/axis2/trunk/c/tools/tcpmon/configure.ac Thu Jul  3 04:27:27 2008
@@ -59,6 +59,53 @@
   TESTDIR=""
 )
 
+GUTHTHILA_LIBS=""
+
+AC_MSG_CHECKING(whether to build guththila xml parser library)
+AC_ARG_ENABLE(guththila, [  --enable-guththila
+                          build Guththila XML parser library wrapper (default=yes)],
+[ case "${enableval}" in
+  no)
+    AC_MSG_RESULT(no)
+    ;;
+  *)
+    AC_MSG_RESULT(yes)
+    CFLAGS="$CFLAGS -DAXIS2_GUTHTHILA_ENABLED"
+    CPPFLAGS="$CPPFLAGS -DAXIS2_GUTHTHILA_ENABLED"
+    WRAPPER_DIR="guththila"
+
+    ;;
+  esac ],
+  AC_MSG_RESULT(yes)
+  WRAPPER_DIR="guththila"
+  CFLAGS="$CFLAGS -DAXIS2_GUTHTHILA_ENABLED"
+  CPPFLAGS="$CPPFLAGS -DAXIS2_GUTHTHILA_ENABLED"
+  AC_CONFIG_SUBDIRS(guththila)
+  GUTHTHILA_LIBS="/guththila/src/"
+  GUTHTHILA_DIR="guththila"
+)
+
+
+AC_MSG_CHECKING(whether to build libxml2 xml parser library)
+AC_ARG_ENABLE(libxml2, [  --enable-libxml2    
+                          build Libxml2 XML parser library wrapper (default=no)],
+[ case "${enableval}" in
+  no)
+    AC_MSG_RESULT(no)
+    WRAPPER_DIR=""
+    ;;
+  *)
+    AC_MSG_RESULT(yes)
+    WRAPPER_DIR="libxml2"
+    PKG_CHECK_MODULES(LIBXML2, libxml-2.0)
+    CFLAGS="$CFLAGS -DAXIS2_LIBXML2_ENABLED"
+    CPPFLAGS="$CPPFLAGS $PARSER_CFLAGS -DAXIS2_LIBXML2_ENABLED"
+    LDFLAGS="$LDFLAGS $PARSER_LIBS"
+    ;;
+  esac ],
+  AC_MSG_RESULT(no)
+)
+
 
 UTILINC=$axis2_utilinc
 

Modified: webservices/axis2/trunk/c/xdocs/api/doxygenconf
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/api/doxygenconf?rev=673650&r1=673649&r2=673650&view=diff
==============================================================================
--- webservices/axis2/trunk/c/xdocs/api/doxygenconf (original)
+++ webservices/axis2/trunk/c/xdocs/api/doxygenconf Thu Jul  3 04:27:27 2008
@@ -23,7 +23,7 @@
 # This could be handy for archiving the generated documentation or 
 # if some version control system is used.
 
-PROJECT_NUMBER         = 1.4.0
+PROJECT_NUMBER         = 1.5.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put. 
@@ -450,7 +450,7 @@
 # directories like "/usr/src/myproject". Separate the files or directories 
 # with spaces.
 
-INPUT                  = ../../deploy/include/axis2-1.4.0/
+INPUT                  = ../../deploy/include/axis2-1.5.0/
 
 # 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