blob: 9a0499cbd3c8505c4dfb15abd846c6c6a12f1b1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
--- features/org.eclipse.platform.source/build.xml.orig Mon Jun 25 15:39:42 2007
+++ features/org.eclipse.platform.source/build.xml Fri Aug 17 16:38:54 2007
@@ -37,6 +37,11 @@
<property name="os" value="linux"/>
<property name="ws" value="gtk"/>
</ant>
+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.x86" target="${target}">
+ <property name="arch" value="x86"/>
+ <property name="os" value="freebsd"/>
+ <property name="ws" value="gtk"/>
+ </ant>
<ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.macosx.carbon.ppc" target="${target}">
<property name="arch" value="ppc"/>
<property name="os" value="macosx"/>
@@ -62,6 +67,11 @@
<property name="os" value="win32"/>
<property name="ws" value="wpf"/>
</ant>
+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.amd64" target="${target}">
+ <property name="arch" value="amd64"/>
+ <property name="os" value="freebsd"/>
+ <property name="ws" value="gtk"/>
+ </ant>
<ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.hpux.motif.PA_RISC" target="${target}">
<property name="arch" value="PA_RISC"/>
<property name="os" value="hpux"/>
@@ -187,6 +197,10 @@
</target>
<target name="rootFileslinux_motif_x86">
</target>
+ <target name="rootFilesfreebsd_gtk_x86">
+ </target>
+ <target name="rootFilesfreebsd_gtk_amd64">
+ </target>
<target name="rootFilessolaris_gtk_sparc">
</target>
<target name="rootFilessolaris_gtk_x86">
@@ -215,6 +229,8 @@
<antcall target="rootFileslinux_gtk_s390"/>
<antcall target="rootFileslinux_gtk_s390x"/>
<antcall target="rootFileslinux_motif_x86"/>
+ <antcall target="rootFilesfreebsd_gtk_x86"/>
+ <antcall target="rootFilesfreebsd_gtk_amd64"/>
<antcall target="rootFilessolaris_gtk_sparc"/>
<antcall target="rootFilessolaris_gtk_x86"/>
<antcall target="rootFilessolaris_motif_sparc"/>
|