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/01/07 17:11:28 UTC

cvs commit: ws-axis/c/build buildClient.xml

hawkeye     2005/01/07 08:11:28

  Modified:    c/build  buildClient.xml
  Log:
  Fixing AXISCPP-338 and added in _D to windows build when building debug
  
  Revision  Changes    Path
  1.3       +15 -1     ws-axis/c/build/buildClient.xml
  
  Index: buildClient.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build/buildClient.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- buildClient.xml	11 Nov 2004 16:47:45 -0000	1.2
  +++ buildClient.xml	7 Jan 2005 16:11:28 -0000	1.3
  @@ -11,7 +11,21 @@
   				<isset property="aix"/>
   			</not>
   			<then>
  -				<cc outfile="${dir.bin}/${clientLibraryName}" objdir="${dir.objects}"
  +				<!--  Check to see if we are in debug mode so need _D library name -->
  +				<if>
  +					<and>
  +						<isset property="windows"/>
  +						<equals arg1="${debug}" arg2="true"/>
  +					</and>
  +					<then>
  +						<property name="completeClientLibraryName" value="${clientLibraryName}_D"/>
  +					</then>
  +					<else>
  +						<property name="completeClientLibraryName" value="${clientLibraryName}"/>
  +					</else>
  +				</if>
  +					
  +				<cc outfile="${dir.bin}/${completeClientLibraryName}" objdir="${dir.objects}"
   				 exceptions="true" outtype="shared" multithreaded="true">
   				  	<!-- Compilers -->
   					<compiler refid="SolarisCC"/>