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 da...@apache.org on 2004/06/14 08:23:22 UTC

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

damitha     2004/06/13 23:23:22

  Modified:    c/tests  build.sh
  Removed:     c/tests  autogen.sh runconfig
  Log:
  
  
  Revision  Changes    Path
  1.2       +20 -4     ws-axis/c/tests/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/build.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.sh	26 May 2004 09:23:48 -0000	1.1
  +++ build.sh	14 Jun 2004 06:23:22 -0000	1.2
  @@ -1,5 +1,21 @@
  -sh autogen.sh
  -sh runconfig
  -make
  +#!/bin/bash
  +echo "run libtoolize."          && 
  +libtoolize --force              && 
  +echo "run aclocal."             && 
  +aclocal                         && 
  +echo "run autoconf."            && 
  +autoconf                        && 
  +echo "run autoheader."          && 
  +autoheader                      && 
  +echo "run automake."            && 
  +automake --add-missing --gnu    &&
  +
  +echo "./configure --bindir=$AXISCPP_HOME/tests/client/"
  +./configure --bindir=$AXISCPP_HOME/tests/client/
  +
  +echo "make"
  +make 2> tests_build_errors
  +
  +echo "make install"
   make install
  -#strip -g sslclient base cbase groupB doclitbase doclitgroupB 
  +