Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2010-11-15 17:49:57 +0000
committerBogdan Gheorghe2010-11-15 17:49:57 +0000
commitd72a865bb5dd4e00e6a304b09781853e509a03df (patch)
tree55b263f9c0f3dd83701389a2bf67787e00e99e7f
parent9f0ad20f924b69cdaf1505b1448bb6a6b8ea018d (diff)
downloadeclipse.platform.swt-d72a865bb5dd4e00e6a304b09781853e509a03df.tar.gz
eclipse.platform.swt-d72a865bb5dd4e00e6a304b09781853e509a03df.tar.xz
eclipse.platform.swt-d72a865bb5dd4e00e6a304b09781853e509a03df.zip
Add HPUX ia64_32 GTK
-rw-r--r--bundles/org.eclipse.swt/tasks/build.xml19
1 files changed, 17 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/tasks/build.xml b/bundles/org.eclipse.swt/tasks/build.xml
index e7422f16f6..b772ed2a6a 100644
--- a/bundles/org.eclipse.swt/tasks/build.xml
+++ b/bundles/org.eclipse.swt/tasks/build.xml
@@ -598,6 +598,10 @@
<param name="fragment" value="org.eclipse.swt.gtk.aix.ppc64"/>
</antcall>
<antcall target="check_fragment_libraries">
+ <param name="library_count" value="3"/>
+ <param name="fragment" value="org.eclipse.swt.gtk.hpux.ia64_32"/>
+ </antcall>
+ <antcall target="check_fragment_libraries">
<param name="library_count" value="9"/>
<param name="fragment" value="org.eclipse.swt.motif.linux.x86"/>
</antcall>
@@ -619,8 +623,8 @@
<property name="checkdir" value="~/build/check_libraries"/>
<!-- WPF and Photon are not being built
-->
- <property name="library_count" value="138"/>
- <property name="fragment" value="org.eclipse.swt.win32.win32.x86 org.eclipse.swt.win32.win32.x86_64 org.eclipse.swt.win32.win32.ia64 org.eclipse.swt.win32.wce_ppc.arm org.eclipse.swt.carbon.macosx org.eclipse.swt.cocoa.macosx org.eclipse.swt.cocoa.macosx.x86_64 org.eclipse.swt.gtk.linux.ppc org.eclipse.swt.gtk.linux.ppc64 org.eclipse.swt.gtk.linux.x86 org.eclipse.swt.gtk.linux.x86_64 org.eclipse.swt.gtk.linux.s390 org.eclipse.swt.gtk.linux.s390x org.eclipse.swt.gtk.aix.ppc org.eclipse.swt.gtk.aix.ppc64 org.eclipse.swt.gtk.solaris.sparc org.eclipse.swt.gtk.solaris.x86 org.eclipse.swt.motif.linux.x86 org.eclipse.swt.motif.aix.ppc org.eclipse.swt.motif.hpux.ia64_32 org.eclipse.swt.motif.solaris.sparc"/>
+ <property name="library_count" value="141"/>
+ <property name="fragment" value="org.eclipse.swt.win32.win32.x86 org.eclipse.swt.win32.win32.x86_64 org.eclipse.swt.win32.win32.ia64 org.eclipse.swt.win32.wce_ppc.arm org.eclipse.swt.carbon.macosx org.eclipse.swt.cocoa.macosx org.eclipse.swt.cocoa.macosx.x86_64 org.eclipse.swt.gtk.linux.ppc org.eclipse.swt.gtk.linux.ppc64 org.eclipse.swt.gtk.linux.x86 org.eclipse.swt.gtk.linux.x86_64 org.eclipse.swt.gtk.linux.s390 org.eclipse.swt.gtk.linux.s390x org.eclipse.swt.gtk.aix.ppc org.eclipse.swt.gtk.aix.ppc64 org.eclipse.swt.gtk.solaris.sparc org.eclipse.swt.gtk.solaris.x86 org.eclipse.swt.gtk.hpux.ia64_32 org.eclipse.swt.motif.linux.x86 org.eclipse.swt.motif.aix.ppc org.eclipse.swt.motif.hpux.ia64_32 org.eclipse.swt.motif.solaris.sparc"/>
<sshexec host="${m_linux_x86}"
username="swtbuild"
keyfile="${keyfile}"
@@ -1564,6 +1568,16 @@
<param name="pre_commands" value="export JAVA_HOME=~/build/JRE/AIX/sdk; export PATH=${ant_home}/bin:~/build/cvs_bin/AIX:$PATH;"/>
</antcall>
</target>
+
+ <target name="gtk_hpux_ia64_32">
+ <antcall target="build_ssh">
+ <param name="machine" value="${m_hpux}"/>
+ <param name="cp" value="${cp_gtk}"/>
+ <param name="fragment" value="org.eclipse.swt.gtk.hpux.ia64_32"/>
+ <param name="build_target" value="build_gtk_hpux_ia64_32"/>
+ <param name="pre_commands" value="export JAVA_HOME=/opt/java1.5; export PATH=${ant_home}/bin:$PATH; "/>
+ </antcall>
+ </target>
<target name="gtk_solaris_x86">
<antcall target="build_ssh">
@@ -1681,6 +1695,7 @@
<antcall target="gtk_aix_ppc64"/>
<antcall target="gtk_solaris_x86"/>
<antcall target="gtk_solaris_sparc"/>
+ <antcall target="gtk_hpux_ia64_32"/>
<antcall target="motif_aix"/>
<antcall target="motif_hpux"/>
<antcall target="motif_linux"/>

Back to the top