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 2005/01/28 06:48:42 UTC

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

damitha     2005/01/27 21:48:42

  Modified:    c        runconfig.sh configure.ac
  Log:
  Added some comments
  
  Revision  Changes    Path
  1.3       +15 -0     ws-axis/c/runconfig.sh
  
  Index: runconfig.sh
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/runconfig.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- runconfig.sh	8 Nov 2004 08:12:12 -0000	1.2
  +++ runconfig.sh	28 Jan 2005 05:48:42 -0000	1.3
  @@ -17,6 +17,21 @@
   #
   #   @author Damitha Kumarage (damitha@opensource.lk, damitha@jkcsworld.com)
   #
  +# Following is the configure options with a brief description
  +# --prefix=path to your installation folder. default is /usr/ocal/axiscpp_deploy
  +# --enable-tspp    Whether tspp parser library should be built. by default this is not built
  +# --enable-axis3    build axis3 client transport library. default=no
  +# --enable-testcases    build test cases. default=no
  +# --enable-samples    build samples. default=yes
  +# --enable-axis3    build axis3 client transport library. default=no
  +# --with-apache2=PATH    path to apache2 installation. if not given apache2 module library is not built.
  +# --with-apache=PATH    path to apache1 installation. if not given apache1 module library is not built.
  +# --with-xercesc=PATH    path to xercesc installation. if not given xercesc parser library is not built.
  +# --with-cppunit=PATH      build cppunit tests. this option is valid only if --enable-testcases option is yes
  +# --with-axis2-ssl=PATH      build axis2 secure  transport channel library.
  +# --with-axis3-ssl=PATH      build axis3 secure transport channel library. this can be enabled only if --enable-axis3
  +#                            option is yes.
  + 
   
   echo "run configure with the options"
   echo     "--prefix=/usr/local/axiscpp_deploy"
  
  
  
  1.69      +4 -4      ws-axis/c/configure.ac
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/configure.ac,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- configure.ac	25 Jan 2005 13:25:34 -0000	1.68
  +++ configure.ac	28 Jan 2005 05:48:42 -0000	1.69
  @@ -191,9 +191,9 @@
     ENABLELOGGING="-DENABLE_AXISTRACE"
   )
   
  -AC_MSG_CHECKING(whether to build axis2 ssh transport channellibrary.)
  +AC_MSG_CHECKING(whether to build axis2 secure transport channel library.)
   AC_ARG_WITH(axis2-ssl,
  -[  --with-axis2-ssl[=PATH]      build transport channellibrary.],
  +[  --with-axis2-ssl[=PATH]      build transport secure channel library.],
   [ case "$withval" in
     no)
       AC_MSG_RESULT(no)
  @@ -216,9 +216,9 @@
     SSLBUILD=""
   )
   
  -AC_MSG_CHECKING(whether to axis3 build ssh transport channellibrary.)
  +AC_MSG_CHECKING(whether to axis3 build secure transport channel library.)
   AC_ARG_WITH(axis3-ssl,
  -[  --with-axis3-ssl[=PATH]      build axis3 ssh transport channellibrary.],
  +[  --with-axis3-ssl[=PATH]      build axis3 secure transport channel library.],
   [ case "$withval" in
     no)
       AC_MSG_RESULT(no)