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 ha...@apache.org on 2005/07/21 14:44:19 UTC

cvs commit: ws-axis/c/build buildTools.xml build.common.properties

hawkeye     2005/07/21 05:44:19

  Modified:    c/build  buildTools.xml build.common.properties
  Log:
  Added buildCBindings property so that they are only created if the user explicitly asks for them
  
  Revision  Changes    Path
  1.13      +1 -1      ws-axis/c/build/buildTools.xml
  
  Index: buildTools.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build/buildTools.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- buildTools.xml	15 Jul 2005 14:47:04 -0000	1.12
  +++ buildTools.xml	21 Jul 2005 12:44:19 -0000	1.13
  @@ -74,7 +74,7 @@
   	<!--
   	  Compile the Axis C Bindings Client Library
   	  -->
  -	  <target name="compileCBindings">
  +	  <target name="compileCBindings" if="buildCBindings">
   		<mkdir dir="${dir.objects}"/>
   		<mkdir dir="${dir.bin}"/>
           <antcall target="buildVersionResource" inheritall="true">
  
  
  
  1.2       +3 -0      ws-axis/c/build/build.common.properties
  
  Index: build.common.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build/build.common.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.common.properties	27 Jun 2005 13:51:52 -0000	1.1
  +++ build.common.properties	21 Jul 2005 12:44:19 -0000	1.2
  @@ -28,6 +28,9 @@
   # See options below for Apache modules and Stand-alone server
   server = true
   
  +# set the following options if you want to create the CBindings
  +# buildCBindings
  +
   # Set the following to true if you wish the API documentation be generated
   documentation = true