diff options
author | gfxadmin <[email protected]> | 2006-07-21 20:40:13 +0000 |
---|---|---|
committer | gfxadmin <[email protected]> | 2006-07-21 20:40:13 +0000 |
commit | 595b8c26d0e4446239542ba076477b557611dfa0 (patch) | |
tree | 02891946e0b16d812e1d5d56106bbb28e76fa049 | |
parent | 7717212a226dbde2728a74053361b540209de2f8 (diff) |
Issue number:
Obtained from:
Submitted by: Travis
Reviewed by:
Officially adding Solaris AMD64 nightly builds. They should be
uploaded nightly beginning with tonight's nightly build. What will now
show up is a file called jogl-natives-solaris-amd64.jar
We have not really tested this much but will test extensively soon.
Modified Files:
make/build.xml
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@854 232f8b59-042b-4e1e-8c03-345bb8c30851
-rw-r--r-- | make/build.xml | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 17e0bd3d0..f6e7f9910 100644 --- a/make/build.xml +++ b/make/build.xml @@ -1382,7 +1382,25 @@ </fail> </target> - <target name="dist" depends="dist.dir.check,dist.check.windows,dist.check.linux,dist.check.linux-amd64,dist.check.macosx,dist.check.macosxfat,dist.check.solsparc,dist.check.solsparcv9,dist.check.solx86"> + <target name="dist.check.solamd64" if="jogl.dist.dir"> + <condition property="solamd64.complete"> + <and> + <available file="${jogl.dist.dir}/jogl-solx86/64/libjogl.so" /> + <available file="${jogl.dist.dir}/jogl-solx86/64/libjogl_awt.so" /> + </and> + </condition> + <fail unless="solamd64.complete"> + ****************************************************************** + ** Files are missing from the Solaris/x86/64 (amd64) build. This * + ** will cause the distribution ** + ** to be incomplete. Please check the ** + ** status of the Solaris/x86 (amd64) build and try again. ** + ****************************************************************** + </fail> + </target> + + + <target name="dist" depends="dist.dir.check,dist.check.windows,dist.check.linux,dist.check.linux-amd64,dist.check.macosx,dist.check.macosxfat,dist.check.solsparc,dist.check.solsparcv9,dist.check.solx86, dist.check.solamd64"> <delete file="${jogl.dist.dir}/jogl.jar" /> <delete> <fileset dir="${jogl.dist.dir}" includes="jogl-natives-*.jar" /> @@ -1423,6 +1441,9 @@ <jar destfile="${jogl.dist.dir}/jogl-natives-solaris-i586.jar" basedir="${jogl.dist.dir}/jogl-solx86/32" includes="libjogl.so,libjogl_awt.so,libjogl_drihack.so" /> + <jar destfile="${jogl.dist.dir}/jogl-natives-solaris-amd64.jar" + basedir="${jogl.dist.dir}/jogl-solx86/64" + includes="libjogl.so,libjogl_awt.so,libjogl_drihack.so" /> <!-- Build a source archive as well --> <zip destfile="${jogl.dist.dir}/jogl-src.zip" basedir="../.." |