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 su...@apache.org on 2004/11/09 11:26:47 UTC

cvs commit: ws-axis/c configure.ac

susantha    2004/11/09 02:26:47

  Modified:    c        configure.ac
  Log:
  Added the entry for tspp xml parser
  
  Revision  Changes    Path
  1.56      +18 -0     ws-axis/c/configure.ac
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/configure.ac,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- configure.ac	29 Oct 2004 04:41:04 -0000	1.55
  +++ configure.ac	9 Nov 2004 10:26:47 -0000	1.56
  @@ -101,6 +101,23 @@
     AC_MSG_RESULT(no)
   )
   
  +AC_MSG_CHECKING(whether to build tspp xml parser library)
  +AC_ARG_ENABLE(tspp, [  --enable-tspp    build tspp xml parser library.],
  +[ case "${enableval}" in
  +  no)
  +    AC_MSG_RESULT(no)
  +    TSPPBUILD=""
  +    ;;
  +  *)
  +    AC_MSG_RESULT(yes)
  +    TSPPBUILD="tspp"
  +
  +    ;;
  +  esac ],
  +  AC_MSG_RESULT(no)
  +  TSPPBUILD=""
  +)
  +
   AC_MSG_CHECKING(whether to build test cases)
   AC_ARG_ENABLE(testcases, [  --enable-testcases    build test cases.],
   [ case "${enableval}" in
  @@ -221,6 +238,7 @@
       src/client/adminclient/Makefile \
       src/xml/expat/Makefile \
       src/xml/xerces/Makefile \
  +    src/xml/tspp/Makefile \
       samples/Makefile \
       samples/server/Makefile \
       samples/server/interoptests/Makefile \