diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2004-07-06 23:24:45 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2004-07-06 23:24:45 +0000 |
commit | c0969e89df32797c15f102f0e0ee1b7eadc2704d (patch) | |
tree | eaf72a7532cec403418284e361e1951377d66136 /dev-util/eclipse-sdk/files | |
parent | ~sparc. Fixed description. (Manifest recommit) (diff) | |
download | gentoo-2-c0969e89df32797c15f102f0e0ee1b7eadc2704d.tar.gz gentoo-2-c0969e89df32797c15f102f0e0ee1b7eadc2704d.tar.bz2 gentoo-2-c0969e89df32797c15f102f0e0ee1b7eadc2704d.zip |
Fixed motif compilation problem with Tiger/1.5/5.0
Diffstat (limited to 'dev-util/eclipse-sdk/files')
-rw-r--r-- | dev-util/eclipse-sdk/files/03-motif-java1.5-build.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-util/eclipse-sdk/files/03-motif-java1.5-build.patch b/dev-util/eclipse-sdk/files/03-motif-java1.5-build.patch new file mode 100644 index 000000000000..3d639216967a --- /dev/null +++ b/dev-util/eclipse-sdk/files/03-motif-java1.5-build.patch @@ -0,0 +1,28 @@ +diff -urN eclipse-sdk-3.0.0.orig/plugins/org.eclipse.swt.motif/build.xml eclipse-sdk-3.0.0/plugins/org.eclipse.swt.motif/build.xml +--- eclipse-sdk-3.0.0.orig/plugins/org.eclipse.swt.motif/build.xml 2004-06-25 18:26:03.000000000 +0200 ++++ eclipse-sdk-3.0.0/plugins/org.eclipse.swt.motif/build.xml 2004-07-07 00:53:06.000000000 +0200 +@@ -105,7 +105,7 @@ + <property name="destdir" value="${temp.folder}/ws/motif/swt-gtk.jar.bin"/> + <delete dir="${temp.folder}/ws/motif/swt-gtk.jar.bin"/> + <mkdir dir="${temp.folder}/ws/motif/swt-gtk.jar.bin"/> +- <javac destdir="${temp.folder}/ws/motif/swt-gtk.jar.bin" verbose="true" debug="on" failonerror="no" bootclasspath="${bootclasspath}"> ++ <javac destdir="${temp.folder}/ws/motif/swt-gtk.jar.bin" source="1.3" target="1.2" verbose="true" debug="on" failonerror="no" bootclasspath="${bootclasspath}"> + <src path="${plugindir}/Eclipse SWT PI/motif_gtk/"/> + </javac> + <property name="includes" value=""/> +@@ -125,7 +125,7 @@ + <property name="destdir" value="${temp.folder}/ws/motif/swt-mozilla.jar.bin"/> + <delete dir="${temp.folder}/ws/motif/swt-mozilla.jar.bin"/> + <mkdir dir="${temp.folder}/ws/motif/swt-mozilla.jar.bin"/> +- <javac destdir="${temp.folder}/ws/motif/swt-mozilla.jar.bin" verbose="true" debug="on" failonerror="no" bootclasspath="${bootclasspath}" classpath="${build.result.folder}/ws/motif/swt-gtk.jar"> ++ <javac destdir="${temp.folder}/ws/motif/swt-mozilla.jar.bin" source="1.3" target="1.2" verbose="true" debug="on" failonerror="no" bootclasspath="${bootclasspath}" classpath="${build.result.folder}/ws/motif/swt-gtk.jar"> + <src path="${plugindir}/Eclipse SWT Mozilla/gtk/"/> + <src path="${plugindir}/Eclipse SWT Mozilla/common/"/> + </javac> +@@ -315,4 +315,4 @@ + <delete dir="${temp.folder}"/> + </target> + +-</project> +\ No newline at end of file ++</project> |