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 da...@apache.org on 2004/10/20 11:14:36 UTC

cvs commit: ws-axis/c/tests/auto_build build.sh

damitha     2004/10/20 02:14:36

  Modified:    c/include/axis/client Stub.h
               c/src/engine/server ServerAxisEngine.cpp
               c/src/server/simple_axis_server SimpleAxisTransport.cpp
               c/src/transport Makefile
               c/src/transport/axis AxisTransport.cpp
               c/src/transport/axis2 Makefile
               c/tests/auto_build build.sh
  Log:
  Removed some of the build warnings
  
  Revision  Changes    Path
  1.20      +2 -0      ws-axis/c/include/axis/client/Stub.h
  
  Index: Stub.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/client/Stub.h,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- Stub.h	20 Aug 2004 09:40:11 -0000	1.19
  +++ Stub.h	20 Oct 2004 09:14:36 -0000	1.20
  @@ -160,6 +160,8 @@
   
     /**
      * Default Constructor.
  +   */
  +   
     /**
       * Destructor.
       */
  
  
  
  1.23      +2 -1      ws-axis/c/src/engine/server/ServerAxisEngine.cpp
  
  Index: ServerAxisEngine.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/server/ServerAxisEngine.cpp,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- ServerAxisEngine.cpp	6 Aug 2004 14:44:34 -0000	1.22
  +++ ServerAxisEngine.cpp	20 Oct 2004 09:14:36 -0000	1.23
  @@ -518,4 +518,5 @@
       return AXIS_SUCCESS;
   }
   
  -AXIS_CPP_NAMESPACE_END
  \ No newline at end of file
  +AXIS_CPP_NAMESPACE_END
  +
  
  
  
  1.2       +1 -1      ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.cpp
  
  Index: SimpleAxisTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SimpleAxisTransport.cpp	19 Oct 2004 01:47:03 -0000	1.1
  +++ SimpleAxisTransport.cpp	20 Oct 2004 09:14:36 -0000	1.2
  @@ -128,7 +128,7 @@
   	(*piSize) = 0;
   	return TRANSPORT_FINISHED;
       }
  -    if (m_strReceived.length () < (*piSize))
  +    if ((int) m_strReceived.length () < (*piSize))
       {
   	pBuffer[0] = '\0';
   	strcat (pBuffer, m_strReceived.c_str ());
  
  
  
  1.2       +7 -7      ws-axis/c/src/transport/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	4 Oct 2004 13:03:36 -0000	1.1
  +++ Makefile	20 Oct 2004 09:14:36 -0000	1.2
  @@ -68,8 +68,8 @@
   AMTAR = ${SHELL} /home/damitha/projects/cvshead/missing --run tar
   APACHE2BUILD = apache2
   APACHE2INC = -I/usr/local/apache2/include
  -APACHEBUILD = apache
  -APACHEINC = -I/usr/local/apache/include
  +APACHEBUILD = 
  +APACHEINC = 
   AS = @AS@
   AWK = gawk
   CC = gcc
  @@ -77,9 +77,9 @@
   DEPDIR = .deps
   DLLTOOL = @DLLTOOL@
   ECHO = echo
  -EXPATBUILD = expat
  -EXPATINC = -I/usr/local/expat1957/include
  -EXPATLIB = -L/usr/local/expat1957/lib -lexpat -ldl
  +EXPATBUILD = 
  +EXPATINC = 
  +EXPATLIB = 
   INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
   LIBTOOL = $(SHELL) $(top_builddir)/libtool
   LIBWWWBUILD = 
  @@ -93,8 +93,8 @@
   TESTCASESBUILD = tests
   VERSION = 1-3-beta-linux
   XERCESCBUILD = xerces
  -XERCESCINC = -I/usr/local/xerces-c-src2_2_0/include
  -XERCESCLIB = -L/usr/local/xerces-c-src2_2_0/lib -lxerces-c -ldl
  +XERCESCINC = -I/usr/local/xerces-c/include
  +XERCESCLIB = -L/usr/local/xerces-c/lib -lxerces-c -ldl
   am__include = include
   am__quote = 
   install_sh = /home/damitha/projects/cvshead/install-sh
  
  
  
  1.39      +0 -1      ws-axis/c/src/transport/axis/AxisTransport.cpp
  
  Index: AxisTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis/AxisTransport.cpp,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- AxisTransport.cpp	13 Oct 2004 20:14:37 -0000	1.38
  +++ AxisTransport.cpp	20 Oct 2004 09:14:36 -0000	1.39
  @@ -160,7 +160,6 @@
   
   AXIS_TRANSPORT_STATUS AxisTransport::flushOutput()
   {
  -    int index;
       char buff[8];
       sprintf(buff, "%d", m_sBytesToSend.length()); 
       m_pSender->SetProperty("Content-Length" , buff);
  
  
  
  1.2       +7 -7      ws-axis/c/src/transport/axis2/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	4 Oct 2004 13:03:36 -0000	1.1
  +++ Makefile	20 Oct 2004 09:14:36 -0000	1.2
  @@ -68,8 +68,8 @@
   AMTAR = ${SHELL} /home/damitha/projects/cvshead/missing --run tar
   APACHE2BUILD = apache2
   APACHE2INC = -I/usr/local/apache2/include
  -APACHEBUILD = apache
  -APACHEINC = -I/usr/local/apache/include
  +APACHEBUILD = 
  +APACHEINC = 
   AS = @AS@
   AWK = gawk
   CC = gcc
  @@ -77,9 +77,9 @@
   DEPDIR = .deps
   DLLTOOL = @DLLTOOL@
   ECHO = echo
  -EXPATBUILD = expat
  -EXPATINC = -I/usr/local/expat1957/include
  -EXPATLIB = -L/usr/local/expat1957/lib -lexpat -ldl
  +EXPATBUILD = 
  +EXPATINC = 
  +EXPATLIB = 
   INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
   LIBTOOL = $(SHELL) $(top_builddir)/libtool
   LIBWWWBUILD = 
  @@ -93,8 +93,8 @@
   TESTCASESBUILD = tests
   VERSION = 1-3-beta-linux
   XERCESCBUILD = xerces
  -XERCESCINC = -I/usr/local/xerces-c-src2_2_0/include
  -XERCESCLIB = -L/usr/local/xerces-c-src2_2_0/lib -lxerces-c -ldl
  +XERCESCINC = -I/usr/local/xerces-c/include
  +XERCESCLIB = -L/usr/local/xerces-c/lib -lxerces-c -ldl
   am__include = include
   am__quote = 
   install_sh = /home/damitha/projects/cvshead/install-sh
  
  
  
  1.3       +1 -4      ws-axis/c/tests/auto_build/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/build.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.sh	7 Oct 2004 12:41:21 -0000	1.2
  +++ build.sh	20 Oct 2004 09:14:36 -0000	1.3
  @@ -24,10 +24,7 @@
   echo "run configure"
   ./configure --prefix=/usr/local/axiscpp_deploy \
       --with-apache2=/usr/local/apache2 \
  -    --with-apache=/usr/local/apache \
  -    --with-expat=/usr/local/expat1957 \
  -    --with-xercesc=/usr/local/xerces-c \
  -    --enable-libwww=no
  +    --with-xercesc=/usr/local/xerces-c
   echo "make"
   make 2> build_errors