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 du...@apache.org on 2005/06/14 06:08:56 UTC

cvs commit: ws-axis/c build.xml

dushshantha    2005/06/13 21:08:56

  Modified:    c        build.xml
  Log:
  removed Axis2 transport from the ant build system.
  
  Revision  Changes    Path
  1.25      +2 -23     ws-axis/c/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- build.xml	4 May 2005 07:42:14 -0000	1.24
  +++ build.xml	14 Jun 2005 04:08:56 -0000	1.25
  @@ -38,7 +38,6 @@
   	<import file="${basedir}/build/buildTools.xml"/>
   	<import file="${basedir}/build/buildClient.xml"/>
   	<import file="${basedir}/build/buildTransport.xml"/>
  -	<import file="${basedir}/build/buildTransportIPV6.xml"/>
   	<import file="${basedir}/build/buildChannel.xml"/>
   	<import file="${basedir}/build/buildSSLChannel.xml"/>
   	<import file="${basedir}/build/buildXMLParser.xml"/>
  @@ -134,15 +133,7 @@
   	<target name="compileTransport">
   		<!-- Determine which flavour of transport to use -->
   		<!-- Ideally extend this to produce multiple flavours -->
  -		<!--if>
  -			<equals arg1="${transport.axis2}" arg2="true"/>
  -			<then>
  -				<antcall target="compileAxisTransport" inheritall="true">
  -					<param name="transport" value="axis2"/>
  -					<param name="transportLibraryName" value="${axis2.transportLibraryName}"/>
  -				</antcall>
  -			</then>
  -		</if-->
  +		
   
   		<if>
   			<equals arg1="${transport.HTTP}" arg2="true"/>
  @@ -177,18 +168,7 @@
   		</if>
   	</target>
   
  -        <target name="compileTransportIPV6">
  -                <!--if>
  -                        <equals arg1="${transport.axis2.ipv6}" arg2="true"/>
  -                        <then>
  -                                <antcall target="compileAxisTransportIPV6" inheritall="true">
  -                                        <param name="transport.root" value="axis2"/>
  -                                        <param name="transport" value="ipv6"/>
  -                                        <param name="transportLibraryName" value="${axis2.ipv6.transportLibraryName}"/>
  -                                </antcall>
  -                        </then>
  -                </if-->
  -        </target>
  +      
   
   	<target name="compileXMLParser">
   		<!-- Determine which flavour of xmlParser to use -->
  @@ -221,7 +201,6 @@
   	<target name="compile">
   		<antcall target="compileClient" inheritall="true"/>
   		<antcall target="compileTransport" inheritall="true"/>
  -		<antcall target="compileTransportIPV6" inheritall="true"/>
   		<antcall target="compileXMLParser" inheritall="true"/>
   		<antcall target="compileServer" inheritall="true"/>
   	</target>