summaryrefslogtreecommitdiff
path: root/java/jdk13
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2003-04-22 20:05:21 +0000
committerGreg Lewis <glewis@FreeBSD.org>2003-04-22 20:05:21 +0000
commit7ee61f212f5667786bdf359bd4ec41b427e303da (patch)
tree155f5270a02c4830b4ec02092f602465e2bb7af8 /java/jdk13
parentUse new GNOME infrastructure. (diff)
. Fix the shell wrapper to cope with HotSpot and as a result remove the
warning that the Classic VM is unusable with HotSpot. Submitted by: Munehiro Matsuda <haro@h4.dion.ne.jp>
Notes
Notes: svn path=/head/; revision=79471
Diffstat (limited to 'java/jdk13')
-rw-r--r--java/jdk13/Makefile2
-rw-r--r--java/jdk13/files/patch-java_wrapper_bsd.sh81
2 files changed, 81 insertions, 2 deletions
diff --git a/java/jdk13/Makefile b/java/jdk13/Makefile
index 1f819f8cea7e..35da4b7ead9c 100644
--- a/java/jdk13/Makefile
+++ b/java/jdk13/Makefile
@@ -175,8 +175,6 @@ pre-everything:
@${ECHO_MSG} "To use the browser plugin with HotSpot you will need to set the"
@${ECHO_MSG} "THREADS_FLAG environment variable when running the browser, e.g."
@${ECHO_MSG} " setenv THREADS_FLAG native"
- @${ECHO_MSG} "Compiling HotSpot into the JDK will also currently make the"
- @${ECHO_MSG} "Classic VM unusable."
@${ECHO_MSG} ""
.endif
diff --git a/java/jdk13/files/patch-java_wrapper_bsd.sh b/java/jdk13/files/patch-java_wrapper_bsd.sh
new file mode 100644
index 000000000000..0ca16b9d8c25
--- /dev/null
+++ b/java/jdk13/files/patch-java_wrapper_bsd.sh
@@ -0,0 +1,81 @@
+$FreeBSD$
+
+--- ../src/solaris/bin/java_wrapper_bsd.sh 1 Oct 2001 11:44:43 -0000 1.4
++++ ../src/solaris/bin/java_wrapper_bsd.sh 17 Apr 2003 15:07:23 -0000
+@@ -71,37 +71,56 @@
+ # Select vm type (if classic vm, also select thread type).
+ unset vmtype
+ unset ttype
++unset vmopt
+ DEFAULT_THREADS_FLAG=green
+-if [ "x$1" = "x-hotspot" ]; then
+- vmtype=hotspot
++if [ "x$1" = "x-client" ]; then
++ vmtype=client
+ ttype=native_threads
++ vmopt=-$vmtype
+ shift 1
+ else
+ if [ "x$1" = "x-classic" ]; then
+ vmtype=classic
+- ttype=${DEFAULT_THREADS_FLAG}_threads
++ if [ ${THREADS_FLAG:-${DEFAULT_THREADS_FLAG}} = native ]; then
++ ttype=native_threads
++ else
++ ttype=green_threads
++ fi
++ vmopt=-$vmtype
+ shift 1
+ else
+ if [ "x$1" = "x-green" ]; then
+ vmtype=classic
+ ttype=green_threads
++ vmopt=-$vmtype
+ shift 1
+ else
+ if [ "x$1" = "x-native" ]; then
+ vmtype=classic
+ ttype=native_threads
++ vmopt=-$vmtype
+ shift 1
+ else
+- if [ -d ${jre}/lib/${proc}/hotspot ]; then
+- vmtype=hotspot
++ if [ "x$1" = "x-server" ]; then
++ vmtype=server
+ ttype=native_threads
+- else
+- vmtype=classic
+- if [ ${THREADS_FLAG:-${DEFAULT_THREADS_FLAG}} = native ]
+- then
++ vmopt=-$vmtype
++ shift 1
++ else
++ if [ "x$1" = "x-hotspot" ]; then
++ vmtype=client
+ ttype=native_threads
+- else
+- ttype=green_threads
++ vmopt=-$vmtype
++ shift 1
++ else
++ vmtype=classic
++ if [ ${THREADS_FLAG:-${DEFAULT_THREADS_FLAG}} = native ]
++ then
++ ttype=native_threads
++ else
++ ttype=green_threads
++ fi
++ vmopt=-$vmtype
+ fi
+ fi
+ fi
+@@ -141,7 +160,7 @@
+ # Run.
+ if [ -x "$prog" ]
+ then
+- exec $DEBUG_PROG "$prog" "$@"
++ exec $DEBUG_PROG "$prog" "$vmopt" "$@"
+ else
+ echo >&2 "$progname was not found in ${prog}"
+ exit 1