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/08/27 10:11:31 UTC

cvs commit: ws-axis/c/samples autogen.sh configure.ac

damitha     2004/08/27 01:11:31

  Added:       c/tests  autogen.sh configure.ac
               c/samples autogen.sh configure.ac
  Log:
  Reason to add the configure.ac's is explained in the mail headed samples/configure.ac
  
  Revision  Changes    Path
  1.3       +11 -47    ws-axis/c/tests/autogen.sh
  
  
  
  
  1.13      +59 -4     ws-axis/c/tests/configure.ac
  
  
  
  
  1.1                  ws-axis/c/samples/autogen.sh
  
  Index: autogen.sh
  ===================================================================
  #!/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
  
  
  
  1.1                  ws-axis/c/samples/configure.ac
  
  Index: configure.ac
  ===================================================================
  AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
  AM_INIT_AUTOMAKE(0.3)
  AM_CONFIG_HEADER(config.h)
  
  
  
  
  LINKCLIENTLIB="-L${AXISCPP_DEPLOY}/lib -laxiscpp_client -ldl"
  
  LDFLAGS="-lstdc++"
  AC_PROG_CC
  AC_PROG_CXX
  AC_PROG_INSTALL
  AC_PROG_LIBTOOL
  
  AC_OUTPUT(Makefile \
      server/Makefile \
      server/interoptests/Makefile \
      server/interoptests/base/Makefile \
      server/interoptests/cbase/Makefile \
      server/interoptests/groupB/Makefile \
      server/interoptests/cgroupB/Makefile \
      server/interoptests/doclitbase/Makefile \
      server/interoptests/doclitgroupB/Makefile \
      server/simple/Makefile \
      server/rpcfault/Makefile \
      server/doclitfault/Makefile \
      server/echoStringHeaderHandler/Makefile \
      client/Makefile \
      client/interoptests/Makefile \
      client/interoptests/base/Makefile \
      client/interoptests/cbase/Makefile \
      client/interoptests/groupB/Makefile \
      client/interoptests/cgroupB/Makefile \
      client/interoptests/doclitbase/Makefile \
      client/interoptests/doclitgroupB/Makefile \
      client/simple/Makefile \
      client/rpcfault/Makefile \
      client/doclitfault/Makefile \
      client/testHandler/Makefile)