summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorChien Yang <[email protected]>2005-02-24 18:14:14 +0000
committerChien Yang <[email protected]>2005-02-24 18:14:14 +0000
commit43229fa4d35888f080e4b46c7610f69980f48251 (patch)
tree409c15f0a9ef06f7767783ec5e33ce1f0bf9ce74 /build.xml
parentd918f6e6ca177a2f591fa0c4338a306d2c54ac5d (diff)
Fixed issue 105 : Build for IA64 (Itanium) 64-bit Linux.
Thanks to Ian (dr_grim) for his code contribution. git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@137 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 5f2044d..27d6b4a 100644
--- a/build.xml
+++ b/build.xml
@@ -164,6 +164,11 @@
<property name="platform" value="linux-amd64"/>
</target>
+ <target name="setupLinuxIA64" if="isLinuxOnIA64">
+ <property name="ostype" value="linux"/>
+ <property name="platform" value="linux-ia64"/>
+ </target>
+
<!-- win32 should be rename as windows -->
<target name="setupWindows" if="isWindowsOnX86">
<property name="ostype" value="win32"/>
@@ -171,7 +176,7 @@
</target>
<target name="setupPlatform"
- depends="init, setupBuildType, setupSolaris, setupLinux, setupLinuxAmd64, setupWindows">
+ depends="init, setupBuildType, setupSolaris, setupLinux, setupLinuxAmd64, setupLinuxIA64, setupWindows">
<property name="build-debug-gen" location="${build}/${platform}/debug/gen"/>
<property name="build-opt-gen" location="${build}/${platform}/opt/gen"/>
<property name="docname" value="java3d-${version_file}-doc"/>
@@ -305,6 +310,10 @@
<os name="linux" arch="amd64"/>
</condition>
+ <condition property="isLinuxOnIA64">
+ <os name="linux" arch="ia64"/>
+ </condition>
+
<condition property="isSolarisOnSparc">
<os name="SunOS" arch="sparc"/>
</condition>