openbsd-ports/devel/jdk/1.3/patches/patch-bin_bootscript
kurt 683c76d57c - Add support for powerpc. With some tips from tedu@ and drahn@, thanks!
- Change bootstrap method. No longer use 1.3-linux port to bootstrap.
  Use class files from a linux binary jdk and extra source and header
  files from my website.
- Remove plugin support. plugin has security issues and doesn't work
  with recent mozilla/firefox versions.
- Patches for arm native-threads are included but not enabled yet.
  I prefer to have all arches use green-threads to avoid arch specific
  pkg files. Also noticed some regressions with native-threads on i386.
  arm support from Dale Rahn (drahn@).
- quiet pre-patch phase

okay ian@
2005-06-03 17:27:53 +00:00

15 lines
315 B
Plaintext

$OpenBSD: patch-bin_bootscript,v 1.1 2005/06/03 17:27:54 kurt Exp $
--- bin/bootscript.orig Wed Nov 3 10:15:11 2004
+++ bin/bootscript Wed Nov 3 10:15:04 2004
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# this makes sure the sanity check passes
+case $1 in
+ -version)
+ echo 'java version "1.3.1"'
+ ;;
+esac;
+
+exit 0