diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-06-17 17:39:48 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-06-17 17:39:48 +0000 |
commit | 5362074527684d60cbb8d3d79f4cf441dff5ec24 (patch) | |
tree | 3a84f219151476e3a79a9c9001da8efb15a11c9f /java/eclipse/files/patch-BootLoader.java | |
parent | Update to 0.4.2 (diff) |
Add eclipse 2.1, An open extensible IDE for anything and nothing
in particular.
Submitted by: kan
Notes
Notes:
svn path=/head/; revision=83172
Diffstat (limited to 'java/eclipse/files/patch-BootLoader.java')
-rw-r--r-- | java/eclipse/files/patch-BootLoader.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/java/eclipse/files/patch-BootLoader.java b/java/eclipse/files/patch-BootLoader.java new file mode 100644 index 000000000000..057397aa2c7a --- /dev/null +++ b/java/eclipse/files/patch-BootLoader.java @@ -0,0 +1,23 @@ +--- plugins/org.eclipse.core.boot/src/org/eclipse/core/boot/BootLoader.java.orig Thu Mar 6 12:13:43 2003 ++++ plugins/org.eclipse.core.boot/src/org/eclipse/core/boot/BootLoader.java Thu Mar 6 12:15:17 2003 +@@ -51,6 +51,12 @@ + public static final String OS_LINUX = "linux";//$NON-NLS-1$ + + /** ++ * Constant string (value "freebsd") indicating the platform is running on a ++ * FreeBSD operating system. ++ */ ++ public static final String OS_FREEBSD = "freebsd";//$NON-NLS-1$ ++ ++ /** + * Constant string (value "aix") indicating the platform is running on an + * AIX-based operating system. + */ +@@ -164,6 +170,7 @@ + OS_AIX, + OS_HPUX, + OS_LINUX, ++ OS_FREEBSD, + OS_MACOSX, + OS_QNX, + OS_SOLARIS, |