Patches item #603682, was opened at 2002-09-02 22:28
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376687&aid=603682&group_id=22866

Category: JBossServer
Group: v3.0 Rabbit Hole
Status: Open
Resolution: None
Priority: 5
Submitted By: Philipp Rudolf Tomsich (prt)
Assigned to: Nobody/Anonymous (nobody)
Summary: Irix does not support -server flag

Initial Comment:
Java2v14 (currently in Beta) on Irix uses HotSpot as
its default VM.
However, it does not support the -server flag.
Consequently, the
following patch should be applied to the startup script:

--- jboss-3.0.0/bin/run.sh.orig Mon Sep  2 13:11:10 2002
+++ jboss-3.0.0/bin/run.sh      Mon Sep  2 13:12:18 2002
@@ -29,6 +29,7 @@
 # OS specific support (must be 'true' or 'false').
 cygwin=false;
 darwin=false;
+irix=false;
 case "`uname`" in
     CYGWIN*)
         cygwin=true
@@ -37,6 +38,10 @@
     Darwin*)
         darwin=true
         ;;
+
+    IRIX*)
+        irix=true;
+       ;;
 esac
 
 # For Cygwin, ensure paths are in UNIX format before
anything is touched
@@ -105,7 +110,7 @@
 # If JAVA_OPTS is not set and the JVM is HOTSPOT
enabled, then the server mode
 if [ "x$JAVA_OPTS" = "x" -a "x$HAS_HOTSPOT" != "x" ]; then
     # MacOS does not support -server flag
-    if [ "$darwin" != "true" ]; then
+    if [ "$darwin" != "true" -a "$irix" != "true" ]; then
         JAVA_OPTS="-server"
     fi
 fi


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376687&aid=603682&group_id=22866


-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to