summaryrefslogtreecommitdiff
path: root/java/eclipse/files/patch-plugins-update-src-build.xml
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2005-07-31 05:26:16 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2005-07-31 05:26:16 +0000
commit0be0fb477cb7000852c24a6cf6bba1c9bf3abd7e (patch)
tree834412cc77705b06f4e05945ec6ff3dc38d1bf6e /java/eclipse/files/patch-plugins-update-src-build.xml
parentFix build on 4-stable. (diff)
Update to 3.1.
o java/eclipse-devel is IGNOREd now until 3.2+. o change MAINTAINERship to java@ on java/eclipse-devel. [1] PR: ports/84252 Submitted by: Panagiotis Astithas <past@ebs.gr> Requested by: devel/eclipse-devel's maintainer [1] Tested by: java@
Notes
Notes: svn path=/head/; revision=140521
Diffstat (limited to 'java/eclipse/files/patch-plugins-update-src-build.xml')
-rw-r--r--java/eclipse/files/patch-plugins-update-src-build.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/java/eclipse/files/patch-plugins-update-src-build.xml b/java/eclipse/files/patch-plugins-update-src-build.xml
new file mode 100644
index 000000000000..1fa5cb7ccbd2
--- /dev/null
+++ b/java/eclipse/files/patch-plugins-update-src-build.xml
@@ -0,0 +1,31 @@
+--- plugins/org.eclipse.update.core.freebsd/src/build.xml Sat Apr 9 14:03:21 2005
++++ ../files/plugins-update-src-build.xml Tue Feb 15 23:41:47 2005
+@@ -6,7 +6,7 @@
+ <property name="eclipse-home" value="${basedir}/../.."/>
+ <property name="jdk-path" value="${java.home}"/>
+ <property name="destination" value="${eclipse-home}/org.eclipse.update.core.freebsd/os/freebsd/x86/"/>
+- <property name="obj-path" value="${eclipse-home}/org.eclipse.update.core.freebsd/src/"/>
++ <property name="obj-path" value="${eclipse-home}/org.eclipse.update.core/src/"/>
+ <property name="src-path" value="${eclipse-home}/org.eclipse.update.core.freebsd/src/"/>
+
+ <!-- sets the properties -->
+@@ -44,15 +44,16 @@
+ <target name="build">
+ <echo message="Building ${library-file}"/>
+
+- <property name="header-path" value="${jdk-path}/../include"/>
++ <property name="header-path" value="${jdk-path}/include"/>
+ <property name="header-freebsd-path" value="${header-path}/freebsd" />
+
+- <echo message="gcc -o ${library-file} -shared -I${src-path} -I${header-freebsd-path} ${library-file} -static -lc"/>
++ <echo message="${CC} -o ${library-file} -shared -fPIC -I${src-path} -I${header-path} -I${header-freebsd-path} ${library-file} -static -lc"/>
+
+- <apply executable="gcc" dest="${eclipse-home}/" parallel="false">
++ <apply executable="${CC}" dest="${eclipse-home}/" parallel="false">
+ <arg value="-o"/>
+ <arg value="${library-file}"/>
+ <arg value="-shared"/>
++ <arg value="-fPIC"/>
+ <arg value="-I${src-path}"/>
+ <arg value="-I${header-path}"/>
+ <arg value="-I${header-freebsd-path}"/>