You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2005/12/26 02:13:53 UTC

svn commit: r359032 - in /webservices/axis/trunk/c/build: buildLibrary.xml buildTest.xml

Author: nadiramra
Date: Sun Dec 25 17:13:50 2005
New Revision: 359032

URL: http://svn.apache.org/viewcvs?rev=359032&view=rev
Log:
OS/400-only changes to make test framework work.

Modified:
    webservices/axis/trunk/c/build/buildLibrary.xml
    webservices/axis/trunk/c/build/buildTest.xml

Modified: webservices/axis/trunk/c/build/buildLibrary.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/buildLibrary.xml?rev=359032&r1=359031&r2=359032&view=diff
==============================================================================
--- webservices/axis/trunk/c/build/buildLibrary.xml (original)
+++ webservices/axis/trunk/c/build/buildLibrary.xml Sun Dec 25 17:13:50 2005
@@ -25,7 +25,10 @@
 				<linker refid="LinuxLinker"/>
 				<linker refid="HP-UXLinker"/>
 				<linker refid="VisualC++Linker"/>
-				<linker refid="OS400Linker"/>
+	            <linker extends="OS400Linker">
+		              <linkerarg location="end" value="${dir.lib}/lib${clientLibraryName.lang}.so"/>
+	            </linker>
+				
 				<libset dir="${dir.lib}" libs="${clientLibraryName.lang}" unless="os400"/>
 				<!-- Files to compile -->
 				<fileset dir="${test.directory}">

Modified: webservices/axis/trunk/c/build/buildTest.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/buildTest.xml?rev=359032&r1=359031&r2=359032&view=diff
==============================================================================
--- webservices/axis/trunk/c/build/buildTest.xml (original)
+++ webservices/axis/trunk/c/build/buildTest.xml Sun Dec 25 17:13:50 2005
@@ -146,7 +146,9 @@
 			<linker refid="AIXExecutableLinker"/>
             <linker refid="HP-UXLinker"/>      
 		    <linker extends="OS400ExecutableLinker">
-  		         <linkerarg location="end" value="${dir.lib}/lib${clientLibraryName.lang}.so"/>
+                <linkerarg value="-qOPTION=*DUPPROC"/>
+		        <linkerarg location="end" value="${dir.lib}/lib${clientLibraryName.lang}.so"/>
+		        <linkerarg location="end" value="${test.directory}/lib${libraryName}.so"/>
 		    </linker>
 			<!-- Axis Client .lib file location, or UNIX shared object -->
 			<libset dir="${dir.lib}" libs="${clientLibraryName.lang}" unless="os400"/>