aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml23
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="../.."