costin 02/01/17 13:19:35 Modified: jk/native2 build.xml Log: Read a platform-specific build file first. This is usefull if you use the same dir to build on 2 platforms ( which in turn is very usefull if you want to check that some changes on one platform are not braking the other ). ( I finally got vmware to run vc, so I'll start playing with ant's cc task on win ) Revision Changes Path 1.13 +2 -0 jakarta-tomcat-connectors/jk/native2/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/build.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- build.xml 14 Jan 2002 09:36:13 -0000 1.12 +++ build.xml 17 Jan 2002 21:19:35 -0000 1.13 @@ -6,6 +6,7 @@ <property file="${user.home}/.ant.properties" /> <property file="${user.home}/build.properties" /> + <property file="build.properties.${os.arch}.${os.name}" /> <property file="build.properties" /> <property file="../build.properties" /> @@ -47,6 +48,7 @@ </target> <target name="init" > + <echo message="build.properties.${os.arch}.${os.name}" /> <taskdef resource="META-INF/ant.tasks" classpathref="jkant" /> <available property="HAVE_APR" file="${apr.include}/apr.h" />
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>