You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2008/04/07 07:35:42 UTC

svn commit: r645382 - in /webservices/axis2/trunk/c: ./ axiom/ build/win32/ guththila/ neethi/ samples/ tools/md5/ tools/tcpmon/ util/ util/include/

Author: dinesh
Date: Sun Apr  6 22:35:41 2008
New Revision: 645382

URL: http://svn.apache.org/viewvc?rev=645382&view=rev
Log:
documents update for axis2/C 1.3.1 release

Modified:
    webservices/axis2/trunk/c/INSTALL
    webservices/axis2/trunk/c/Makefile.am
    webservices/axis2/trunk/c/NEWS
    webservices/axis2/trunk/c/axiom/Makefile.am
    webservices/axis2/trunk/c/axis2c.pc.in
    webservices/axis2/trunk/c/build/win32/makefile
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/guththila/Makefile.am
    webservices/axis2/trunk/c/guththila/configure.ac
    webservices/axis2/trunk/c/neethi/Makefile.am
    webservices/axis2/trunk/c/neethi/configure.ac
    webservices/axis2/trunk/c/project.properties
    webservices/axis2/trunk/c/samples/configure.ac
    webservices/axis2/trunk/c/tools/md5/Makefile.am
    webservices/axis2/trunk/c/tools/tcpmon/Makefile.am
    webservices/axis2/trunk/c/tools/tcpmon/configure.ac
    webservices/axis2/trunk/c/util/Makefile.am
    webservices/axis2/trunk/c/util/configure.ac
    webservices/axis2/trunk/c/util/include/Makefile.am
    webservices/axis2/trunk/c/util/include/axutil_version.h

Modified: webservices/axis2/trunk/c/INSTALL
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/INSTALL?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/INSTALL (original)
+++ webservices/axis2/trunk/c/INSTALL Sun Apr  6 22:35:41 2008
@@ -116,7 +116,7 @@
 
         export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/axis2c/lib/
         cd samples
-        ./configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.3.0
+        ./configure --prefix=${AXIS2C_HOME} --with-axis2=${AXIS2C_HOME}/include/axis2-1.3.1
         make
         sudo make install
 
@@ -355,7 +355,7 @@
 
     This will install mod_axis2.so into your "<your_path_to_axis2c>/lib"
 
-5. 1.3.0 On Win32 platform
+5. 1.3.1 On Win32 platform
 
     Provide the apache2 location in configure.in file in APACHE_INSTALL_DIR
     Example:

Modified: webservices/axis2/trunk/c/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/Makefile.am (original)
+++ webservices/axis2/trunk/c/Makefile.am Sun Apr  6 22:35:41 2008
@@ -2,7 +2,7 @@
 scriptsdir=$(prefix)/bin
 logsdir=$(prefix)/logs
 docsdir=$(prefix)
-includedir=$(prefix)/include/axis2-1.3.0
+includedir=$(prefix)/include/axis2-1.3.1
 
 
 pkgconfigdir = $(libdir)/pkgconfig

Modified: webservices/axis2/trunk/c/NEWS
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/NEWS?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/NEWS (original)
+++ webservices/axis2/trunk/c/NEWS Sun Apr  6 22:35:41 2008
@@ -1,4 +1,4 @@
-Apache Axis2/C Team is pleased to announce the release of Apache Axis2/C version 1.3.0
+Apache Axis2/C Team is pleased to announce the release of Apache Axis2/C version 1.3.1
 You can download this release from
 
 http://ws.apache.org/axis2/c/download.cgi

Modified: webservices/axis2/trunk/c/axiom/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/Makefile.am (original)
+++ webservices/axis2/trunk/c/axiom/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,6 +1,6 @@
 datadir=$(prefix)
 SUBDIRS = src $(TESTDIR) include
-includedir=$(prefix)/include/axis2-1.3.0/
+includedir=$(prefix)/include/axis2-1.3.1/
 include_HEADERS=$(top_builddir)/include/*.h
 data_DATA= INSTALL README AUTHORS NEWS CREDITS LICENSE COPYING
 EXTRA_DIST = build.sh autogen.sh CREDITS LICENSE

Modified: webservices/axis2/trunk/c/axis2c.pc.in
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axis2c.pc.in?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axis2c.pc.in (original)
+++ webservices/axis2/trunk/c/axis2c.pc.in Sun Apr  6 22:35:41 2008
@@ -1,11 +1,11 @@
 prefix=@prefix@
 exec_prefix=@exec_prefix@
 libdir=@libdir@
-includedir=@includedir@/axis2-1.3.0
+includedir=@includedir@/axis2-1.3.1
 
 Name: Axis2/C
 Version: @VERSION@
-Description: Apache Axis2/C Version 1.3.0
+Description: Apache Axis2/C Version 1.3.1
 Requires:
 Libs: -L${libdir} -lxml2 @LIBS@
 Cflags: -I${includedir}

Modified: webservices/axis2/trunk/c/build/win32/makefile
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/build/win32/makefile?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/build/win32/makefile (original)
+++ webservices/axis2/trunk/c/build/win32/makefile Sun Apr  6 22:35:41 2008
@@ -31,7 +31,7 @@
 !include $(AUTOCONF)
 
 # directory structure of install directory
-RELEASE_VER = 1.3.0
+RELEASE_VER = 1.3.1
 
 AXIS2_RELEASE_DIR=axis2c-bin-$(RELEASE_VER)-win32
 

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/configure.ac?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Sun Apr  6 22:35:41 2008
@@ -1,7 +1,7 @@
 dnl run autogen.sh to generate the configure script.
 AC_PREREQ(2.59)
 
-AC_INIT(axis2c-src, 1.3.0)
+AC_INIT(axis2c-src, 1.3.1)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 AM_INIT_AUTOMAKE([tar-ustar])

Modified: webservices/axis2/trunk/c/guththila/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/guththila/Makefile.am (original)
+++ webservices/axis2/trunk/c/guththila/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,6 +1,6 @@
 #datadir=$(prefix)
 SUBDIRS = src 
-includedir=$(prefix)/include/axis2-1.3.0/
+includedir=$(prefix)/include/axis2-1.3.1/
 include_HEADERS=$(top_builddir)/include/*.h
 data_DATA= INSTALL README AUTHORS NEWS LICENSE COPYING
 #EXTRA_DIST = build.sh autogen.sh CREDITS LICENSE

Modified: webservices/axis2/trunk/c/guththila/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/configure.ac?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/guththila/configure.ac (original)
+++ webservices/axis2/trunk/c/guththila/configure.ac Sun Apr  6 22:35:41 2008
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT(guththilac-src, 1.3.0)
+AC_INIT(guththilac-src, 1.3.1)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 dnl AM_INIT_AUTOMAKE([tar-ustar])

Modified: webservices/axis2/trunk/c/neethi/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/Makefile.am (original)
+++ webservices/axis2/trunk/c/neethi/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,5 +1,3 @@
 SUBDIRS = src test
-includedir=$(prefix)/include/axis2-1.3.0
+includedir=$(prefix)/include/axis2-1.3.1
 include_HEADERS=$(top_builddir)/include/*.h
-#data_DATA= INSTALL README AUTHORS NEWS CREDITS LICENSE COPYING
-#EXTRA_DIST = build.sh autogen.sh CREDITS LICENSE

Modified: webservices/axis2/trunk/c/neethi/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/configure.ac?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/configure.ac (original)
+++ webservices/axis2/trunk/c/neethi/configure.ac Sun Apr  6 22:35:41 2008
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT(neethi-src, 1.3.0)
+AC_INIT(neethi-src, 1.3.1)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 dnl AM_INIT_AUTOMAKE([tar-ustar])

Modified: webservices/axis2/trunk/c/project.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/project.properties?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/project.properties (original)
+++ webservices/axis2/trunk/c/project.properties Sun Apr  6 22:35:41 2008
@@ -14,7 +14,7 @@
 # limitations under the License.
 # -------------------------------------------------------------------
 
-axis2_version=1.3.0
+axis2_version=1.3.1
 maven.xdoc.date=left
 maven.xdoc.version=${pom.currentVersion}
 maven.xdoc.includeProjectDocumentation=no

Modified: webservices/axis2/trunk/c/samples/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/configure.ac?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/configure.ac (original)
+++ webservices/axis2/trunk/c/samples/configure.ac Sun Apr  6 22:35:41 2008
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT(axis2c-sample-src, 1.3.0)
+AC_INIT(axis2c-sample-src, 1.3.1)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 dnl AM_INIT_AUTOMAKE([tar-ustar])
@@ -86,7 +86,7 @@
 [  --with-axis2[=PATH]     Find the AXIS2 header files in 'PATH'.
     'PATH' should point to AXIS2 include files location.
     If you omit the '=PATH' part completely, the configure script will search
-    '$(AXIS2C_HOME)/include/axis2-1.3.0' for AXIS2 headers.],
+    '$(AXIS2C_HOME)/include/axis2-1.3.1' for AXIS2 headers.],
 [ case "$withval" in
   no)
     AC_MSG_RESULT(no)
@@ -98,7 +98,7 @@
         axis2inc="-I$withval"
     dnl else find the axiom include dir in $(AXIS2C_HOME)/include
     elif test -d '$(AXIS2C_HOME)/include'; then
-        axis2inc="-I$(AXIS2C_HOME)/include/axis2-1.3.0"
+        axis2inc="-I$(AXIS2C_HOME)/include/axis2-1.3.1"
     else
         AC_MSG_ERROR(could not find axis2. stop)
     fi

Modified: webservices/axis2/trunk/c/tools/md5/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/tools/md5/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/tools/md5/Makefile.am (original)
+++ webservices/axis2/trunk/c/tools/md5/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,4 +1,4 @@
 SUBDIRS = src 
-includedir=$(prefix)/include/axis2-1.3.0
+includedir=$(prefix)/include/axis2-1.3.1
 data_DATA= INSTALL README AUTHORS NEWS LICENSE COPYING
 EXTRA_DIST=LICENSE

Modified: webservices/axis2/trunk/c/tools/tcpmon/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/tools/tcpmon/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/tools/tcpmon/Makefile.am (original)
+++ webservices/axis2/trunk/c/tools/tcpmon/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,5 +1,5 @@
 SUBDIRS = src 
-includedir=$(prefix)/include/axis2-1.3.0
+includedir=$(prefix)/include/axis2-1.3.1
 include_HEADERS=$(top_builddir)/include/*.h
 data_DATA= INSTALL README AUTHORS NEWS LICENSE COPYING
 EXTRA_DIST=LICENSE

Modified: webservices/axis2/trunk/c/tools/tcpmon/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/tools/tcpmon/configure.ac?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/tools/tcpmon/configure.ac (original)
+++ webservices/axis2/trunk/c/tools/tcpmon/configure.ac Sun Apr  6 22:35:41 2008
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT(tcpmon-src, 1.3.0)
+AC_INIT(tcpmon-src, 1.3.1)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)

Modified: webservices/axis2/trunk/c/util/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/util/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,6 +1,6 @@
 datadir=$(prefix)
-tmpincludedir=$(prefix)/include/axis2-1.3.0/
-includedir=$(prefix)/include/axis2-1.3.0/
+tmpincludedir=$(prefix)/include/axis2-1.3.1/
+includedir=$(prefix)/include/axis2-1.3.1/
 SUBDIRS = src $(TESTDIR) include
 include_HEADERS=$(top_builddir)/include/*.h
 tmpinclude_DATA=config.h

Modified: webservices/axis2/trunk/c/util/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/configure.ac?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/configure.ac (original)
+++ webservices/axis2/trunk/c/util/configure.ac Sun Apr  6 22:35:41 2008
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT(axis2_util-src, 1.3.0)
+AC_INIT(axis2_util-src, 1.3.1)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 AM_INIT_AUTOMAKE

Modified: webservices/axis2/trunk/c/util/include/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/Makefile.am?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/Makefile.am (original)
+++ webservices/axis2/trunk/c/util/include/Makefile.am Sun Apr  6 22:35:41 2008
@@ -1,2 +1,2 @@
-includedir=$(prefix)/include/axis2-1.3.0/
+includedir=$(prefix)/include/axis2-1.3.1/
 nobase_include_HEADERS= platforms/axutil_platform_auto_sense.h platforms/unix/*.h platforms/windows/*.h

Modified: webservices/axis2/trunk/c/util/include/axutil_version.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/axutil_version.h?rev=645382&r1=645381&r2=645382&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/axutil_version.h (original)
+++ webservices/axis2/trunk/c/util/include/axutil_version.h Sun Apr  6 22:35:41 2008
@@ -40,7 +40,7 @@
  * The Patch Level never includes API changes, simply bug fixes.
  * Reset to 0 when upgrading AXIS2_MINOR_VERSION
  */
-#define AXIS2_PATCH_VERSION       0
+#define AXIS2_PATCH_VERSION       1
 
 /**
  * The symbol AXIS2_IS_DEV_VERSION is only defined for internal,



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