diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2007-10-13 03:28:18 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2007-10-13 03:28:18 +0000 |
commit | 28a3f566fca055cd6c99ab2f6cd7390324c1814d (patch) | |
tree | 108450e1e2832da70f3e9cccbd427c8f60674457 /java/eclipse-devel/files/patch-features-equinox-executable-library-gtk-build.sh | |
parent | Upgrade to 0.39. (diff) |
. Enlist eclipse-devel to get some wider spread of the Eclipse 3.3 port
before it replaces Eclipse 3.2.
The submitters (listed in alphabetical order) collaborated on this.
Submitted by: Mike Bowie <mbowie@buzmo.com>
Dan Rucci <dan@rucci.org>
Ken Yamada <ken@tydfam.jp>
Notes
Notes:
svn path=/head/; revision=201381
Diffstat (limited to 'java/eclipse-devel/files/patch-features-equinox-executable-library-gtk-build.sh')
-rw-r--r-- | java/eclipse-devel/files/patch-features-equinox-executable-library-gtk-build.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/java/eclipse-devel/files/patch-features-equinox-executable-library-gtk-build.sh b/java/eclipse-devel/files/patch-features-equinox-executable-library-gtk-build.sh new file mode 100644 index 000000000000..9d0befce6b19 --- /dev/null +++ b/java/eclipse-devel/files/patch-features-equinox-executable-library-gtk-build.sh @@ -0,0 +1,38 @@ +--- features/org.eclipse.equinox.executable/library/gtk/build.sh.orig 2007-06-26 04:57:45.000000000 +0900 ++++ features/org.eclipse.equinox.executable/library/gtk/build.sh 2007-08-25 14:35:16.000000000 +0900 +@@ -10,6 +10,9 @@ + # IBM Corporation - initial API and implementation + # Kevin Cornell (Rational Software Corporation) + # Martin Oberhuber (Wind River) - [176805] Support building with gcc and debug ++# ++# This is from "features/org.eclipse.equinox.executable/library/gtk/build.sh" ++# + #******************************************************************************* + # + # Usage: sh build.sh [<optional switches>] [clean] +@@ -50,6 +53,25 @@ + fi + + case $OS in ++ "FreeBSD") ++ makefile="make_freebsd.mak" ++ defaultOS="freebsd" ++ case $MODEL in ++ "amd64") ++ defaultOSArch="amd64" ++ defaultJava=DEFAULT_JAVA_EXEC ++ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" ++ ;; ++ i?86) ++ defaultOSArch="x86" ++ defaultJava=DEFAULT_JAVA_EXEC ++ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" ++ ;; ++ *) ++ echo "*** Unknown MODEL <${MODEL}>" ++ ;; ++ esac ++ ;; + "Linux") + makefile="make_linux.mak" + defaultOS="linux" |