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 di...@apache.org on 2004/10/05 12:38:31 UTC

cvs commit: ws-axis/c build.xml build.Win32.properties build.SunOS.properties build.Linux.properties build.AIX.properties

dicka       2004/10/05 03:38:31

  Modified:    c        build.xml build.Win32.properties
                        build.SunOS.properties build.Linux.properties
                        build.AIX.properties
  Log:
  Allow choice of transport based on property file selection
  
  Submitted by:  Adrian Dick
  
  Revision  Changes    Path
  1.7       +5 -5      ws-axis/c/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	29 Sep 2004 14:18:24 -0000	1.6
  +++ build.xml	5 Oct 2004 10:38:30 -0000	1.7
  @@ -374,9 +374,9 @@
   					</linker>
   					<!-- Files to compile -->
   					<fileset dir="${dir.src}">
  -						<include name="transport/axis/*.cpp"/>
  +						<include name="transport/${transport}/*.cpp"/>
   						<!-- The following files need to be excluded -->
  -						<exclude name="transport/axis/SecureChannel.cpp"/>
  +						<exclude name="transport/${transport}/SecureChannel.cpp"/>
   					</fileset>
   				</cc>
   			</then>
  @@ -389,9 +389,9 @@
   					<linker refid="AIXLinker"/>
   					<!-- Files to compile -->
   					<fileset dir="${dir.src}">
  -						<include name="transport/axis/*.cpp"/>
  +						<include name="transport/${transport}/*.cpp"/>
   						<!-- The following files need to be excluded -->
  -						<exclude name="transport/axis/SecureChannel.cpp"/>
  +						<exclude name="transport/${transport}/SecureChannel.cpp"/>
   					</fileset>
   				</cc>
   			</else>
  @@ -402,7 +402,7 @@
   	  Compile the Axis XML Parser Library
   	  -->
   	<target name="compileAxisXMLParser" depends="initialize">
  -		<mkdir dir="${dir.objects}/${xmlParserLibraryName}"/>
  +		<mkdir dir="${dir.objects}"/>
   		<mkdir dir="${dir.bin}"/>
   		<if>
   			<not>
  
  
  
  1.4       +4 -0      ws-axis/c/build.Win32.properties
  
  Index: build.Win32.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.Win32.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.Win32.properties	8 Sep 2004 10:56:29 -0000	1.3
  +++ build.Win32.properties	5 Oct 2004 10:38:30 -0000	1.4
  @@ -22,6 +22,10 @@
   # Location of parser
   dir.xmlParser = C:/axisdev/${xmlParser}
   
  +########################
  +# Transport Properties #
  +########################
  +transport = axis2
   
   #######################################
   # Properties for compiling C/C++ code #
  
  
  
  1.2       +5 -0      ws-axis/c/build.SunOS.properties
  
  Index: build.SunOS.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.SunOS.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.SunOS.properties	9 Sep 2004 16:30:57 -0000	1.1
  +++ build.SunOS.properties	5 Oct 2004 10:38:30 -0000	1.2
  @@ -22,6 +22,11 @@
   # Location of parser
   dir.xmlParser = ${env.EXPAT_HOME}
   
  +########################
  +# Transport Properties #
  +########################
  +transport = axis2
  +
   #######################################
   # Properties for compiling C/C++ code #
   #######################################
  
  
  
  1.4       +5 -0      ws-axis/c/build.Linux.properties
  
  Index: build.Linux.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.Linux.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.Linux.properties	8 Sep 2004 10:56:17 -0000	1.3
  +++ build.Linux.properties	5 Oct 2004 10:38:30 -0000	1.4
  @@ -22,6 +22,11 @@
   # Location of parser
   dir.xmlParser = /home/axisdev/expat-1.95.7
   
  +########################
  +# Transport Properties #
  +########################
  +transport = axis2
  +
   #######################################
   # Properties for compiling C/C++ code #
   #######################################
  
  
  
  1.5       +5 -0      ws-axis/c/build.AIX.properties
  
  Index: build.AIX.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.AIX.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.AIX.properties	29 Sep 2004 12:31:26 -0000	1.4
  +++ build.AIX.properties	5 Oct 2004 10:38:30 -0000	1.5
  @@ -22,6 +22,11 @@
   # Location of parser
   dir.xmlParser = /home/axisdev/expat-1.95.7
   
  +########################
  +# Transport Properties #
  +########################
  +transport = axis2
  +
   #######################################
   # Properties for compiling C/C++ code #
   #######################################