From owner-freebsd-java@FreeBSD.ORG Mon Jan 28 11:07:05 2008 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5328A16A4BF for ; Mon, 28 Jan 2008 11:07:05 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 40F2F13C459 for ; Mon, 28 Jan 2008 11:07:05 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m0SB75b9016373 for ; Mon, 28 Jan 2008 11:07:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m0SB74DR016369 for freebsd-java@FreeBSD.org; Mon, 28 Jan 2008 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 28 Jan 2008 11:07:04 GMT Message-Id: <200801281107.m0SB74DR016369@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-java@FreeBSD.org X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2008 11:07:05 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- s ports/60083 java java/jdk14 - Unsafe use of getaddrinfo in jvm 1.4.2-p5 o java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o java/110912 java Java krb5 client leaks UDP connections o java/112595 java Java appletviewer frequently hangs (kse_release loop) o ports/113467 java Multiple "missing return value" errors building JDK on o java/114644 java tomcat goes out of PermSpace, jvm crashes o java/118496 java Eclipse packages do not work with 6.3-RC1/amd64 o java/118956 java eclipse and netbeans break on diablo-jdk15 o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w 9 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext f java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in o ports/84742 java make ports/java/jdk14 use dynamic Motif librarires o java/97461 java Diablo JDK does not report Update level in a format su o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o ports/115279 java [UPDATE] java/java3d to 1.5.1 o java/115773 java [request] java.nio channel selectors should use kqueue o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o java/116667 java linux-sun-javac1.4 hangs on SMP o ports/116841 java cannot build java/jdk16 by using java/linux-sun-jdk16 o ports/118088 java java/eclipse-devel: The path of Variable Exec= in fil o java/119063 java An unexpected error has been detected by Java Runtime o java/119654 java jdk 1.6: java.awt.SplashScreen#getSplashScreen throws 13 problems total. From owner-freebsd-java@FreeBSD.ORG Tue Jan 29 13:50:58 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82B4416A468 for ; Tue, 29 Jan 2008 13:50:58 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from smtp-out3.tiscali.nl (smtp-out3.tiscali.nl [195.241.79.178]) by mx1.freebsd.org (Postfix) with ESMTP id 494C013C4CE for ; Tue, 29 Jan 2008 13:50:58 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from [212.123.145.58] (helo=guido.klop.ws) by smtp-out3.tiscali.nl with smtp (Tiscali http://www.tiscali.nl) id 1JJqck-0001cm-Sj for ; Tue, 29 Jan 2008 14:35:39 +0100 Received: (qmail 8420 invoked from network); 29 Jan 2008 13:35:37 -0000 Received: from localhost (HELO guido.klop.ws) (127.0.0.1) by localhost with SMTP; 29 Jan 2008 13:35:37 -0000 Date: Tue, 29 Jan 2008 14:35:35 +0100 To: freebsd-java@freebsd.org From: "Ronald Klop" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: Quoted-Printable Message-ID: User-Agent: Opera Mail/9.25 (FreeBSD) Subject: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 13:50:58 -0000 Hi, I have this little program. import java.text.NumberFormat; import java.text.ParseException; import java.util.Locale; final class LocaleCheck { public static void main(String[] args) throws ParseException { NumberFormat f =3D NumberFormat.getNumberInstance(new Locale("NL")); System.out.println(f.parse("1,07")); } } /usr/local/jdk1.5.0/bin/java LocaleCheck 1.07 /usr/local/jdk1.6.0/bin/java LocaleCheck 107 Java 5 gives the correct output. Running on FreeBSD 7.0 from 11 Jan 2008. java version "1.5.0_13-p7" Java(TM) 2 Runtime Environment, Standard Edition (build = 1.5.0_13-p7-root_07_jan_2008_13_37) Java HotSpot(TM) Client VM (build 1.5.0_13-p7-root_07_jan_2008_13_37, = mixed mode) java version "1.6.0_03-p3" Java(TM) SE Runtime Environment (build = 1.6.0_03-p3-root_26_nov_2007_14_37-b00) Java HotSpot(TM) Client VM (build 1.6.0_03-p3-root_26_nov_2007_14_37-b00= , = mixed mode) Do people see the same output? Should I file a PR? I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. Greetings, Ronald. -- = Ronald Klop Amsterdam, The Netherlands From owner-freebsd-java@FreeBSD.ORG Tue Jan 29 14:13:34 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99F6416A41A for ; Tue, 29 Jan 2008 14:13:34 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (unknown [IPv6:2001:610:1908:1000:204:23ff:feb5:7e66]) by mx1.freebsd.org (Postfix) with ESMTP id 17AED13C447 for ; Tue, 29 Jan 2008 14:13:33 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id m0TEDOtS005155; Tue, 29 Jan 2008 15:13:25 +0100 From: Pieter de Goeje To: freebsd-java@freebsd.org Date: Tue, 29 Jan 2008 15:13:24 +0100 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200801291513.24409.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact servicedesk@icts.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Ronald Klop Subject: Re: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 14:13:34 -0000 On Tuesday 29 January 2008, Ronald Klop wrote: > Hi, > > I have this little program. > > import java.text.NumberFormat; > import java.text.ParseException; > import java.util.Locale; > > final class LocaleCheck { > public static void main(String[] args) throws ParseException { > NumberFormat f = NumberFormat.getNumberInstance(new Locale("NL")); > System.out.println(f.parse("1,07")); > } > } > > /usr/local/jdk1.5.0/bin/java LocaleCheck > 1.07 > > /usr/local/jdk1.6.0/bin/java LocaleCheck > 107 > > Java 5 gives the correct output. > > Running on FreeBSD 7.0 from 11 Jan 2008. > > java version "1.5.0_13-p7" > Java(TM) 2 Runtime Environment, Standard Edition (build > 1.5.0_13-p7-root_07_jan_2008_13_37) > Java HotSpot(TM) Client VM (build 1.5.0_13-p7-root_07_jan_2008_13_37, > mixed mode) > > java version "1.6.0_03-p3" > Java(TM) SE Runtime Environment (build > 1.6.0_03-p3-root_26_nov_2007_14_37-b00) > Java HotSpot(TM) Client VM (build 1.6.0_03-p3-root_26_nov_2007_14_37-b00, > mixed mode) > > Do people see the same output? Should I file a PR? > I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. Yes I have the same output here on FreeBSD 7 java version "1.6.0_03-p3" Java(TM) SE Runtime Environment (build 1.6.0_03-p3-pyotr_27_jan_2008_16_32-b00) Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_03-p3-pyotr_27_jan_2008_16_32-b00, mixed mode) > > Greetings, > > Ronald. -- Pieter de Goeje From owner-freebsd-java@FreeBSD.ORG Tue Jan 29 17:54:03 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8687216A420 for ; Tue, 29 Jan 2008 17:54:03 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from de-01.itac.at (de-01.itac.at [213.155.82.138]) by mx1.freebsd.org (Postfix) with ESMTP id 0E4A513C43E for ; Tue, 29 Jan 2008 17:54:02 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by de-01.itac.at with esmtp (Exim 4.52) id 1JJueb-00011M-2a; Tue, 29 Jan 2008 18:53:49 +0100 Received: from 83.64.253.201 (proxying for unknown) (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Tue, 29 Jan 2008 18:53:49 +0100 (CET) Message-ID: <40140.83.64.253.201.1201629229.squirrel@webmail.itac.at> In-Reply-To: References: Date: Tue, 29 Jan 2008 18:53:49 +0100 (CET) From: "Bernhard Froehlich" To: freebsd-java@freebsd.org User-Agent: SquirrelMail/1.4.9a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: Ronald Klop Subject: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jan 2008 17:54:03 -0000 > Hi, > > I have this little program. > > import java.text.NumberFormat; > import java.text.ParseException; > import java.util.Locale; > > final class LocaleCheck { > public static void main(String[] args) throws ParseException { > NumberFormat f = NumberFormat.getNumberInstance(new Locale("NL")); > System.out.println(f.parse("1,07")); > } > } > > /usr/local/jdk1.5.0/bin/java LocaleCheck > 1.07 > > /usr/local/jdk1.6.0/bin/java LocaleCheck > 107 > > Java 5 gives the correct output. > > Running on FreeBSD 7.0 from 11 Jan 2008. > > java version "1.5.0_13-p7" > Java(TM) 2 Runtime Environment, Standard Edition (build > 1.5.0_13-p7-root_07_jan_2008_13_37) > Java HotSpot(TM) Client VM (build 1.5.0_13-p7-root_07_jan_2008_13_37, > mixed mode) > > java version "1.6.0_03-p3" > Java(TM) SE Runtime Environment (build > 1.6.0_03-p3-root_26_nov_2007_14_37-b00) > Java HotSpot(TM) Client VM (build 1.6.0_03-p3-root_26_nov_2007_14_37-b00, > mixed mode) > > Do people see the same output? Should I file a PR? > I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. > > Greetings, > > Ronald. > > -- > Ronald Klop > Amsterdam, The Netherlands I had the same problem. Maybe the attached patch (which is more like a workaround) can help you. Simply put it in /usr/ports/java/jdk16/files/patch-localegen.sh and give it a try. http://www.freebsd.org/cgi/query-pr.cgi?pr=119397 From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 00:01:25 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C328116A419 for ; Wed, 30 Jan 2008 00:01:25 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from smtp-out0.tiscali.nl (smtp-out0.tiscali.nl [195.241.79.175]) by mx1.freebsd.org (Postfix) with ESMTP id 83C4B13C46A for ; Wed, 30 Jan 2008 00:01:24 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from [212.123.145.58] (helo=guido.klop.ws) by smtp-out0.tiscali.nl with smtp (Tiscali http://www.tiscali.nl) id 1JK0OI-0005B7-Uy for ; Wed, 30 Jan 2008 01:01:23 +0100 Received: (qmail 10783 invoked from network); 30 Jan 2008 00:01:20 -0000 Received: from localhost (HELO guido.klop.ws) (127.0.0.1) by localhost with SMTP; 30 Jan 2008 00:01:20 -0000 To: "Bernhard Froehlich" , freebsd-java@freebsd.org From: "Ronald Klop" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <40140.83.64.253.201.1201629229.squirrel@webmail.itac.at> Content-Transfer-Encoding: Quoted-Printable Date: Wed, 30 Jan 2008 01:01:18 +0100 Message-ID: In-Reply-To: <40140.83.64.253.201.1201629229.squirrel@webmail.itac.at> User-Agent: Opera Mail/9.25 (FreeBSD) Cc: Subject: Re: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 00:01:25 -0000 On Tue, 29 Jan 2008 18:53:49 +0100, Bernhard Froehlich = wrote: >> Hi, >> >> I have this little program. >> >> import java.text.NumberFormat; >> import java.text.ParseException; >> import java.util.Locale; >> >> final class LocaleCheck { >> public static void main(String[] args) throws ParseException { >> NumberFormat f =3D NumberFormat.getNumberInstance(new Locale("NL"))= ; >> System.out.println(f.parse("1,07")); >> } >> } >> >> /usr/local/jdk1.5.0/bin/java LocaleCheck >> 1.07 >> >> /usr/local/jdk1.6.0/bin/java LocaleCheck >> 107 >> >> Java 5 gives the correct output. >> >> Running on FreeBSD 7.0 from 11 Jan 2008. >> >> java version "1.5.0_13-p7" >> Java(TM) 2 Runtime Environment, Standard Edition (build >> 1.5.0_13-p7-root_07_jan_2008_13_37) >> Java HotSpot(TM) Client VM (build 1.5.0_13-p7-root_07_jan_2008_13_37,= >> mixed mode) >> >> java version "1.6.0_03-p3" >> Java(TM) SE Runtime Environment (build >> 1.6.0_03-p3-root_26_nov_2007_14_37-b00) >> Java HotSpot(TM) Client VM (build = >> 1.6.0_03-p3-root_26_nov_2007_14_37-b00, >> mixed mode) >> >> Do people see the same output? Should I file a PR? >> I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. >> >> Greetings, >> >> Ronald. > > I had the same problem. Maybe the attached patch (which is more like a= > workaround) can help you. Simply put it in > /usr/ports/java/jdk16/files/patch-localegen.sh and give it a try. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D119397 Your patch works for me. Thanks! Ronald. -- = Ronald Klop Amsterdam, The Netherlands From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 03:48:00 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3F1F16A418; Wed, 30 Jan 2008 03:47:59 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (unknown [IPv6:2001:610:1908:1000:204:23ff:feb5:7e66]) by mx1.freebsd.org (Postfix) with ESMTP id 6972713C442; Wed, 30 Jan 2008 03:47:59 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id m0U3lntS003578; Wed, 30 Jan 2008 04:47:49 +0100 From: Pieter de Goeje To: Jung-uk Kim Date: Wed, 30 Jan 2008 04:47:47 +0100 User-Agent: KMail/1.9.7 References: <200801291058.09857.jkim@FreeBSD.org> In-Reply-To: <200801291058.09857.jkim@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200801300447.48468.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact servicedesk@icts.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Ronald Klop , freebsd-java@freebsd.org Subject: Re: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 03:48:00 -0000 On Tuesday 29 January 2008, Jung-uk Kim wrote: > On Tuesday 29 January 2008 08:35 am, Ronald Klop wrote: > > Hi, > > > > I have this little program. > > > > import java.text.NumberFormat; > > import java.text.ParseException; > > import java.util.Locale; > > > > final class LocaleCheck { > > public static void main(String[] args) throws ParseException { > > NumberFormat f = NumberFormat.getNumberInstance(new > > Locale("NL")); System.out.println(f.parse("1,07")); > > } > > } > > > > /usr/local/jdk1.5.0/bin/java LocaleCheck > > 1.07 > > > > /usr/local/jdk1.6.0/bin/java LocaleCheck > > 107 > > > > Java 5 gives the correct output. > > > > Running on FreeBSD 7.0 from 11 Jan 2008. > > > > java version "1.5.0_13-p7" > > Java(TM) 2 Runtime Environment, Standard Edition (build > > 1.5.0_13-p7-root_07_jan_2008_13_37) > > Java HotSpot(TM) Client VM (build > > 1.5.0_13-p7-root_07_jan_2008_13_37, mixed mode) > > > > java version "1.6.0_03-p3" > > Java(TM) SE Runtime Environment (build > > 1.6.0_03-p3-root_26_nov_2007_14_37-b00) > > Java HotSpot(TM) Client VM (build > > 1.6.0_03-p3-root_26_nov_2007_14_37-b00, mixed mode) > > > > Do people see the same output? Should I file a PR? > > I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. > > Can you try the patch in the PR? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=119397 > > Jung-uk Kim Yes, that fixes the issue. Funny thing though, I had to recompile the test program for it to work. -- Pieter de Goeje From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 08:14:26 2008 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACFDA16A419 for ; Wed, 30 Jan 2008 08:14:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.freebsd.org (Postfix) with ESMTP id 6692113C447 for ; Wed, 30 Jan 2008 08:14:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.6/8.13.6) with ESMTP id m0TFwBpc091991; Tue, 29 Jan 2008 10:58:11 -0500 (EST) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: freebsd-java@FreeBSD.org Date: Tue, 29 Jan 2008 10:58:07 -0500 User-Agent: KMail/1.6.2 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200801291058.09857.jkim@FreeBSD.org> X-Virus-Scanned: ClamAV 0.92/5598/Tue Jan 29 09:28:04 2008 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: Pieter de Goeje , Ronald Klop Subject: Re: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 08:14:26 -0000 On Tuesday 29 January 2008 08:35 am, Ronald Klop wrote: > Hi, > > I have this little program. > > import java.text.NumberFormat; > import java.text.ParseException; > import java.util.Locale; > > final class LocaleCheck { > public static void main(String[] args) throws ParseException { > NumberFormat f = NumberFormat.getNumberInstance(new > Locale("NL")); System.out.println(f.parse("1,07")); > } > } > > /usr/local/jdk1.5.0/bin/java LocaleCheck > 1.07 > > /usr/local/jdk1.6.0/bin/java LocaleCheck > 107 > > Java 5 gives the correct output. > > Running on FreeBSD 7.0 from 11 Jan 2008. > > java version "1.5.0_13-p7" > Java(TM) 2 Runtime Environment, Standard Edition (build > 1.5.0_13-p7-root_07_jan_2008_13_37) > Java HotSpot(TM) Client VM (build > 1.5.0_13-p7-root_07_jan_2008_13_37, mixed mode) > > java version "1.6.0_03-p3" > Java(TM) SE Runtime Environment (build > 1.6.0_03-p3-root_26_nov_2007_14_37-b00) > Java HotSpot(TM) Client VM (build > 1.6.0_03-p3-root_26_nov_2007_14_37-b00, mixed mode) > > Do people see the same output? Should I file a PR? > I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. Can you try the patch in the PR? http://www.freebsd.org/cgi/query-pr.cgi?pr=119397 Jung-uk Kim From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 10:00:05 2008 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 612A216A41B for ; Wed, 30 Jan 2008 10:00:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3BC5613C46B for ; Wed, 30 Jan 2008 10:00:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m0UA05NX045420 for ; Wed, 30 Jan 2008 10:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m0UA053A045419; Wed, 30 Jan 2008 10:00:05 GMT (envelope-from gnats) Resent-Date: Wed, 30 Jan 2008 10:00:05 GMT Resent-Message-Id: <200801301000.m0UA053A045419@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Pyhalov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D09316A417 for ; Wed, 30 Jan 2008 09:58:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 0678D13C448 for ; Wed, 30 Jan 2008 09:58:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m0U9v8Hx009929 for ; Wed, 30 Jan 2008 09:57:08 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m0U9v8ZA009918; Wed, 30 Jan 2008 09:57:08 GMT (envelope-from nobody) Message-Id: <200801300957.m0U9v8ZA009918@www.freebsd.org> Date: Wed, 30 Jan 2008 09:57:08 GMT From: Alexander Pyhalov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: java/120146: netbeans 6.0 crash on amd64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 10:00:05 -0000 >Number: 120146 >Category: java >Synopsis: netbeans 6.0 crash on amd64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 30 10:00:04 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Alexander Pyhalov >Release: FreeBSD 7.0-PRERELEASE #1 >Organization: >Environment: FreeBSD pyhalov.cc.rsu.ru 7.0-PRERELEASE FreeBSD 7.0-PRERELEASE #1: Fri Jan 11 10:38:18 MSK 2008 alp@new-pyhalov.cc.rsu.ru:/usr/obj/usr/src/sys/MyKern amd64 >Description: I'm getting a java core dump, when I'm trying to run netbeans 6.0 (platform-independent), which perfectly run on i386 computer. I'm using jdk-1.5.0.13p7_4,1. >How-To-Repeat: download netbeans from netbeans.org, edit netbeans.conf as follows: netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-Dapple.laf.useScreenMenuBar=true -J-verbose -J-d64" netbeans_jdkhome="/usr/local/jdk1.5.0/" Start $netbeans_dir/bin/netbeans After starting (and automatically opening project) java dies with a core dump. >Fix: Patch attached with submission follows: # # An unexpected error has been detected by HotSpot Virtual Machine: # # SIGSEGV (0xb) at pc=0x000000080607b697, pid=2759, tid=0x1e178120 # # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_13-p7-alp_21_jan_2008_11_24 mixed mode) # Problematic frame: # [error occurred during error reporting, step 60, id 0xb] --------------- T H R E A D --------------- Current thread (0x000000081e164000): JavaThread "AWT-EventQueue-1" [_thread_in_Java, id=504856864] siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00007ffefffffff0 Registers: RAX=0x00000000ff571000, RBX=0x000000080cb99228, RCX=0x0000000800938cac, RDX=0x0000000000000001 RSP=0x00007ffffbedadc0, RBP=0x00007fff00000000, RSI=0x0000000000000002, RDI=0x00007ffffbedadb0 R8 =0xffffffffb1d67978, R9 =0x00007ffffbedada8, R10=0x0000000000000002, R11=0x0000000000000202 R12=0x000000080607b520, R13=0x000000080cb99228, R14=0x00007ffffbedae48, R15=0x000000081e164000 RIP=0x000000080607b697, EFL=0x000000080623ced0, ERR=0x0000000000000004 TRAPNO=0x000000000000000c Top of Stack: (sp=0x00007ffffbedadc0) 0x00007ffffbedadc0: 000000003f400000 000000080607b3e1 0x00007ffffbedadd0: 00000000ff571000 000000080607b542 0x00007ffffbedade0: 000000081e164000 00000010fbedaef0 0x00007ffffbedadf0: 00007ffffbedadf0 000000080cb99228 0x00007ffffbedae00: 00007ffffbedae48 000000080cb9b0e8 0x00007ffffbedae10: 0000000000000000 000000080cb99228 0x00007ffffbedae20: 00007ffffbedae48 00007ffffbedaeb0 0x00007ffffbedae30: 000000080606f329 0000000000000000 0x00007ffffbedae40: 0000000806078497 000000081bd021b0 0x00007ffffbedae50: 0000000800001fa2 0000000000000001 0x00007ffffbedae60: 00007ffffbedb0e0 00007ffffbedb170 0x00007ffffbedae70: 000000081e164000 000000081e30b068 0x00007ffffbedae80: 00007ffffbedaf00 00007ffffbedb178 0x00007ffffbedae90: 000000080000000b 000000080cb99228 0x00007ffffbedaea0: 000000080607b240 00007ffffbedb0e8 0x00007ffffbedaeb0: 00007ffffbedafb0 0000000800fa2cf8 0x00007ffffbedaec0: 0000000800000001 000000081e164000 0x00007ffffbedaed0: 00007ffffbedaf50 00007ffffbedaf00 0x00007ffffbedaee0: 00007ffffbedaf00 000000080607b240 0x00007ffffbedaef0: 0000000bfbedaf30 000000080606f2a9 0x00007ffffbedaf00: 000000081e164000 000000081e102b20 0x00007ffffbedaf10: 000000080cb99228 000000081bd021b0 0x00007ffffbedaf20: 00007ffffbedb2d0 000000080607b520 0x00007ffffbedaf30: 0000000000000000 0000000800000000 0x00007ffffbedaf40: 00007ffffbedb328 00007ffffbedb170 0x00007ffffbedaf50: 000000081e164000 000000081e10ca40 0x00007ffffbedaf60: 000000081e30b000 000000081e30b070 0x00007ffffbedaf70: 000000081e30b3e8 00007ffffbedba00 0x00007ffffbedaf80: 0000000800000001 0000000000000001 0x00007ffffbedaf90: 00007ffffbedb170 000000081e30b038 0x00007ffffbedafa0: 000000081e30b058 000000081e164000 0x00007ffffbedafb0: 00007ffffbedafd0 0000000800fa1d68 Instructions: (pc=0x000000080607b697) 0x000000080607b687: 8b 4c 24 70 48 8b 44 24 78 48 81 c4 80 00 00 00 0x000000080607b697: 48 8b 5d f0 4c 8b 6b 10 4d 8d 6d 48 49 81 7f 08 Stack: [0x00007ffffbcdc000,0x00007ffffbedc000), sp=0x00007ffffbedadc0, free space=2043k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) [error occurred during error reporting, step 120, id 0xb] --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x0000000824023800 JavaThread "GSF Source Worker Thread" [_thread_blocked, id=562836112] 0x0000000824022000 JavaThread "org.netbeans.modules.gsfret.source.usages.RepositoryUpdater" [_thread_blocked, id=562835744] 0x000000081da64800 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497405088] 0x000000081da63c00 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497404720] 0x000000081da63000 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497404352] 0x000000081da62400 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497403984] 0x000000081da25400 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497403616] 0x000000081da24800 JavaThread "Default RequestProcessor" daemon [_thread_in_Java, id=497403248] 0x000000081da23c00 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497402880] 0x000000081da23000 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/org.netbeans.modules.project.ui.ProjectsRootNode$BadgingNode]" daemon [_thread_blocked, id=497402512] 0x000000081da22400 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=497402144] 0x000000081da21800 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=11546080] 0x000000081da20c00 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=498484592] 0x000000081da20400 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=498484224] 0x000000081da20000 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=499983728] 0x000000081da1fc00 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=499987776] 0x000000081da1f800 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=498484960] 0x0000000800b38400 JavaThread "DestroyJavaVM" [_thread_blocked, id=11538720] =>0x000000081e164000 JavaThread "AWT-EventQueue-1" [_thread_in_Java, id=504856864] 0x0000000829bba800 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/null]" daemon [_thread_blocked, id=499988144] 0x0000000829bbd800 JavaThread "Creator Error Handler Listener" [_thread_in_native, id=499984096] 0x0000000829bbc400 JavaThread "*** JFluid Separate Command Execution Thread" daemon [_thread_blocked, id=499987040] 0x000000081e164400 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=504857232] 0x0000000829bbcc00 JavaThread "TimerQueue" daemon [_thread_blocked, id=499986304] 0x0000000829bbbc00 JavaThread "Java Source Worker Thread" [_thread_in_Java, id=499985936] 0x000000081da1f000 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/org.netbeans.modules.project.ui.ProjectsRootNode$BadgingNode]" daemon [_thread_blocked, id=499984832] 0x000000081da1ec00 JavaThread "Code Model Parser 3" daemon [_thread_blocked, id=499984464] 0x000000081da1e800 JavaThread "Repository writer 0" daemon [_thread_blocked, id=499985200] 0x000000081da1e400 JavaThread "Code Model Parser 1" daemon [_thread_blocked, id=11544608] 0x000000081dc1a800 JavaThread "Thread-5" daemon [_thread_blocked, id=499985568] 0x000000081db17400 JavaThread "Code Model Parser 2" daemon [_thread_blocked, id=498483488] 0x000000081dc17000 JavaThread "AWT-Shutdown" [_thread_blocked, id=499983360] 0x000000081dc16000 JavaThread "AWT-XAWT" daemon [_thread_in_native, id=499982992] 0x000000081dc13400 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=499982624] 0x000000081de6ec00 JavaThread "Code Model Parser 0" daemon [_thread_blocked, id=11545712] 0x000000081de6e800 JavaThread "Timer-0" daemon [_thread_blocked, id=11545344] 0x000000081de6e400 JavaThread "CLI Requests Server" daemon [_thread_in_native, id=11544976] 0x000000081de6dc00 JavaThread "Active Reference Queue Daemon" daemon [_thread_blocked, id=11544240] 0x000000081de6c400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=11543504] 0x000000081de6b800 JavaThread "CompilerThread1" daemon [_thread_blocked, id=11543136] 0x000000081de6ac00 JavaThread "CompilerThread0" daemon [_thread_in_native, id=11542768] 0x000000081de6a000 JavaThread "AdapterThread" daemon [_thread_blocked, id=11542400] 0x000000081de69400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11542032] 0x0000000800b3d800 JavaThread "Finalizer" daemon [_thread_blocked, id=11541664] 0x0000000800b3d400 JavaThread "Reference Handler" daemon [_thread_blocked, id=11541296] Other Threads: 0x0000000800b18030 VMThread [id=11540928] 0x0000000800b18140 WatcherThread [id=11543872] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap PSYoungGen total 34112K, used 26107K [0x000000081ae90000, 0x000000081d930000, 0x000000081d930000) eden space 25024K, 76% used [0x000000081ae90000,0x000000081c12ed78,0x000000081c700000) from space 9088K, 77% used [0x000000081c700000,0x000000081cde0000,0x000000081cfe0000) to space 9408K, 0% used [0x000000081d000000,0x000000081d000000,0x000000081d930000) PSOldGen total 80128K, used 52631K [0x0000000815930000, 0x000000081a770000, 0x000000081ae90000) object space 80128K, 65% used [0x0000000815930000,0x0000000818c95e18,0x000000081a770000) PSPermGen total 94080K, used 59915K [0x0000000809130000, 0x000000080ed10000, 0x0000000815930000) object space 94080K, 63% used [0x0000000809130000,0x000000080cbb2d40,0x000000080ed10000) Dynamic libraries: 0x0000000000400000 /usr/local/jdk1.5.0/bin/java 0x000000080063b000 /lib/libz.so.4 0x000000080074f000 /lib/libthr.so.3 0x0000000800865000 /lib/libc.so.7 0x0000000800c00000 /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so 0x00000008014f9000 /usr/lib/libstdc++.so.6 0x0000000801703000 /lib/libm.so.5 0x000000080181d000 /lib/libgcc_s.so.1 0x000000080192a000 /usr/local/jdk1.5.0/jre/lib/amd64/native_threads/libhpi.so 0x0000000801a36000 /usr/local/lib/nss_ldap.so.1 0x0000000801b55000 /usr/local/lib/libldap-2.3.so.2 0x0000000801c8f000 /usr/local/lib/liblber-2.3.so.2 0x0000000801d9d000 /usr/local/lib/libgssapi.so.2 0x0000000801ec9000 /usr/local/lib/libsasl2.so.2 0x0000000801fe1000 /usr/local/lib/libssl.so.5 0x0000000802128000 /usr/local/lib/libcrypto.so.5 0x0000000802398000 /usr/local/lib/libheimntlm.so.1 0x000000080249d000 /usr/local/lib/libkrb5.so.23 0x0000000802607000 /usr/local/lib/libasn1.so.8 0x0000000802784000 /usr/lib/libcom_err.so.4 0x0000000802886000 /usr/local/lib/libhcrypto.so.5 0x00000008029a8000 /usr/local/lib/libroken.so.19 0x0000000802ab9000 /lib/libcrypt.so.4 0x0000000802bbd000 /usr/local/lib/libhx509.so.2 0x0000000802cf6000 /usr/local/jdk1.5.0/jre/lib/amd64/libverify.so 0x0000000802e05000 /usr/local/jdk1.5.0/jre/lib/amd64/libjava.so 0x0000000802f2d000 /usr/local/jdk1.5.0/jre/lib/amd64/libzip.so 0x000000081f6b8000 /usr/local/jdk1.5.0/jre/lib/amd64/libnet.so 0x0000000820000000 /usr/local/jdk1.5.0/jre/lib/amd64/libawt.so 0x00000008201a1000 /usr/local/jdk1.5.0/jre/lib/amd64/libmlib_image.so 0x000000082036a000 /usr/local/jdk1.5.0/jre/lib/amd64/xawt/libmawt.so 0x00000008204a3000 /usr/local/lib/libXext.so.6 0x00000008205b3000 /usr/local/lib/libX11.so.6 0x00000008207b7000 /usr/local/lib/libXau.so.6 0x00000008208ba000 /usr/local/lib/libXdmcp.so.6 0x00000008209bf000 /usr/lib/librpcsvc.so.4 0x0000000820ac7000 /usr/local/jdk1.5.0/jre/lib/amd64/libfontmanager.so 0x0000000820e00000 /usr/local/jdk1.5.0/jre/lib/amd64/libcmm.so 0x0000000820f62000 /usr/local/jdk1.5.0/jre/lib/amd64/libjpeg.so 0x0000000821090000 /usr/local/lib/libXcursor.so.1 0x000000082119a000 /usr/local/lib/libXrender.so.1 0x00000008212a3000 /usr/local/lib/libXfixes.so.3 0x00000008213a8000 /usr/local/jdk1.5.0/jre/lib/amd64/libnio.so 0x0000000821955000 /usr/local/jdk1.5.0/jre/lib/amd64/libmanagement.so 0x0000000800509000 /libexec/ld-elf.so.1 VM Arguments: jvm_args: -Djdk.home=/usr/local/jdk1.5.0 -Dnetbeans.dirs=/usr/home/alp/java/netbeans/nb6.0:/usr/home/alp/java/netbeans/ide8:/usr/home/alp/java/netbeans/java1:/usr/home/alp/java/netbeans/xml1:/usr/home/alp/java/netbeans/apisupport1:/usr/home/alp/java/netbeans/enterprise4:/usr/home/alp/java/netbeans/mobility8:/usr/home/alp/java/netbeans/profiler2:/usr/home/alp/java/netbeans/ruby1:/usr/home/alp/java/netbeans/visualweb1:/usr/home/alp/java/netbeans/soa1:/usr/home/alp/java/netbeans/identity1:/usr/home/alp/java/netbeans/uml4:/usr/home/alp/java/netbeans/harness:/usr/home/alp/java/netbeans/cnd1: -Dnetbeans.home=/usr/home/alp/java/netbeans/platform7 -Dnetbeans.importclass=org.netbeans.upgrade.AutoUpgrade -Dnetbeans.accept_license_class=org.netbeans.license.AcceptLicense -Xmx128m -Xss2m -Xms32m -XX:PermSize=32m -XX:MaxPermSize=200m -Xverify:none -Dapple.laf.useScreenMenuBar=true -verbose java_command: org.netbeans.Main --userdir /home/alp/.netbeans/6.0 --branding nb Launcher Type: SUN_STANDARD Environment Variables: PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/home/alp/bin USERNAME=alp LD_LIBRARY_PATH=/usr/local/jdk1.5.0/jre/lib/amd64/server:/usr/local/jdk1.5.0/jre/lib/amd64:/usr/local/jdk1.5.0/jre/../lib/amd64 SHELL=/bin/tcsh DISPLAY=:0.0 HOSTTYPE=FreeBSD OSTYPE=FreeBSD MACHTYPE=unknown Signal Handlers: SIGSEGV: [libjvm.so+0x6539e0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGBUS: [libjvm.so+0x6539e0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGFPE: [libjvm.so+0x55dac0], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 SIGPIPE: [libjvm.so+0x55dac0], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 SIGILL: [libjvm.so+0x55dac0], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000 SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000002 SIGHUP: [libjvm.so+0x55f8d0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000 SIGQUIT: [libjvm.so+0x55f8d0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 SIGTERM: [libjvm.so+0x55f8d0], sa_mask[0]=0xfffefeff, sa_flags=0x00000002 --------------- S Y S T E M --------------- OS:FreeBSD uname:FreeBSD 7.0-PRERELEASE FreeBSD 7.0-PRERELEASE #1: Fri Jan 11 10:38:18 MSK 2008 alp@new-pyhalov.cc.rsu.ru:/usr/obj/usr/src/sys/MyKern amd64 rlimit: STACK 8192k, CORE infinity, NOFILE 11095 CPU:total 4 em64t ht Memory: 4k page, physical 3700460k vm_info: Java HotSpot(TM) 64-Bit Server VM (1.5.0_13-p7-alp_21_jan_2008_11_24) for freebsd-amd64, built on Jan 21 2008 11:36:24 by root with gcc 4.2.1 20070719 [FreeBSD] >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 17:44:22 2008 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9063316A473 for ; Wed, 30 Jan 2008 17:44:22 +0000 (UTC) (envelope-from todorov@paladin.bulgarpress.com) Received: from paladin.bulgarpress.com (paladin.bulgarpress.com [195.24.42.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4D87813C457 for ; Wed, 30 Jan 2008 17:44:22 +0000 (UTC) (envelope-from todorov@paladin.bulgarpress.com) Received: from localhost (localhost [127.0.0.1]) by paladin.bulgarpress.com (Postfix) with ESMTP id DF6BE61A8 for ; Wed, 30 Jan 2008 19:27:24 +0200 (EET) X-Virus-Scanned: amavisd-new at paladin.bulgarpress.com Received: from paladin.bulgarpress.com ([195.24.42.3]) by localhost (paladin.bulgarpress.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vU7rd-o-bnH6 for ; Wed, 30 Jan 2008 19:27:17 +0200 (EET) Received: from [192.168.10.35] (90-154-139-237.btc-net.bg [90.154.139.237]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by paladin.bulgarpress.com (Postfix) with ESMTP id 9301661A7 for ; Wed, 30 Jan 2008 19:27:17 +0200 (EET) Message-ID: <47A0B374.3040304@paladin.bulgarpress.com> Date: Wed, 30 Jan 2008 19:27:16 +0200 From: Todorov Organization: Powerforge Net User-Agent: Thunderbird 2.0.0.9 (X11/20080122) MIME-Version: 1.0 To: freebsd-java@FreeBSD.org X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Diablo-JDK / JDK1.5 on FreeBSD 6.3 AMD64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 17:44:22 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all, I've just started to dig for information regarding diablo-jdk & natively built JDK15. What can you advice me - I have to upgrade 6.2 to 6.3 and was wondering if I leave the cuurent 6.1 build of diablo-jdk or compile from ports jdk15? System is AMD64 currenly one CPU (multicore) but planning to add one more. Will there be any benefit to do so or it will have performance penalty? Thanks in advance. Regards, Todor -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHoLN0ibJkIG65HMcRAnugAKC1dNu6z3n4jEy1QCGu1Mr58GLwewCfWRag CIrPjoJoHofvkUXeFlHKuVs= =RsuU -----END PGP SIGNATURE----- From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 22:19:24 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D74F316A417 for ; Wed, 30 Jan 2008 22:19:24 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from hs-out-2122.google.com (hs-out-0708.google.com [64.233.178.245]) by mx1.freebsd.org (Postfix) with ESMTP id 81E4A13C448 for ; Wed, 30 Jan 2008 22:19:24 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by hs-out-2122.google.com with SMTP id h53so389824hsh.11 for ; Wed, 30 Jan 2008 14:19:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; bh=fIS5Lk/xBbhJEmAf5YwRc0YarlxdtZ7xTIGnTRdo+P8=; b=a9XzpmqRyxxY8MEQBtfOQqpH5237j8JtT4VHp9shZH71psoeY89AD4jtcKwWXU3RaCFwZ/Lpf5jfr2EEQXbX487AtySqE4Yo1M7pY77iqGkxSea6FK8uFqA3+eVMZqmghpoto9JDZ4AE6tMQoRJkICzmotesGvgXYqOzgCPMJAc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=WGBBC8Bq15yYhMHgARAtB8B9k8Ed/wCqvE4/44Q9kfpcz3oE+Ety83SSepOPENEihEQwymx9VHvSdu/eMpz+gOXf/28UCD102EJRQYoUUZZeAATVqAmpWCUISvj9Kvtyr+XnlG6fU3wyBeObSHhTsYi7ECYwWSiV0TZixNTg3aw= Received: by 10.100.123.4 with SMTP id v4mr2673138anc.99.1201731562931; Wed, 30 Jan 2008 14:19:22 -0800 (PST) Received: from flosoft.no-ip.biz ( [67.85.89.184]) by mx.google.com with ESMTPS id 1sm1025323qbh.7.2008.01.30.14.19.22 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 30 Jan 2008 14:19:22 -0800 (PST) Message-ID: <47A0F7E9.70601@gmail.com> Date: Wed, 30 Jan 2008 17:19:21 -0500 From: "Aryeh M. Friedman" User-Agent: Thunderbird 2.0.0.9 (X11/20080121) MIME-Version: 1.0 To: Todorov References: <47A0B374.3040304@paladin.bulgarpress.com> In-Reply-To: <47A0B374.3040304@paladin.bulgarpress.com> X-Enigmail-Version: 0.95.5 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 7bit Cc: freebsd-java@FreeBSD.org Subject: Re: Diablo-JDK / JDK1.5 on FreeBSD 6.3 AMD64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 22:19:24 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Todorov wrote: > Hi all, > > I've just started to dig for information regarding diablo-jdk & > natively built JDK15. > > What can you advice me - I have to upgrade 6.2 to 6.3 and was > wondering if I leave the cuurent 6.1 build of diablo-jdk or compile > from ports jdk15? System is AMD64 currenly one CPU (multicore) but > planning to add one more. > > Will there be any benefit to do so or it will have performance > penalty? Just a general rule if you upgrade to a new version recompile all your ports. > > Thanks in advance. > > Regards, Todor _______________________________________________ freebsd-java@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-java To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" - -- Aryeh M. Friedman FloSoft Systems, Java Tool Developers Developer, not business, friendly http://www.flosoft-systems.com "Free software != Free beer" Blog: http://www.flosoft-systems.com/flosoft_systems_community/blogs/aryeh/index.php -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHoPfpQi2hk2LEXBARAoqDAJwKtT+g5VLMvrn8ztaZssuKTR3ypgCfS8/E oKjbtRsZjplG7rQaO/pLoFQ= =twGQ -----END PGP SIGNATURE----- From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 22:30:03 2008 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E93C316A419 for ; Wed, 30 Jan 2008 22:30:03 +0000 (UTC) (envelope-from todorov@paladin.bulgarpress.com) Received: from paladin.bulgarpress.com (paladin.bulgarpress.com [195.24.42.3]) by mx1.freebsd.org (Postfix) with ESMTP id A781513C4FA for ; Wed, 30 Jan 2008 22:30:03 +0000 (UTC) (envelope-from todorov@paladin.bulgarpress.com) Received: from localhost (localhost [127.0.0.1]) by paladin.bulgarpress.com (Postfix) with ESMTP id 920E761A8; Thu, 31 Jan 2008 00:30:02 +0200 (EET) X-Virus-Scanned: amavisd-new at paladin.bulgarpress.com Received: from paladin.bulgarpress.com ([195.24.42.3]) by localhost (paladin.bulgarpress.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nT1qC33Ix5h7; Thu, 31 Jan 2008 00:29:55 +0200 (EET) Received: from [192.168.10.35] (90-154-139-237.btc-net.bg [90.154.139.237]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by paladin.bulgarpress.com (Postfix) with ESMTP id F32C661A7; Thu, 31 Jan 2008 00:29:54 +0200 (EET) Message-ID: <47A0FA61.6040804@paladin.bulgarpress.com> Date: Thu, 31 Jan 2008 00:29:53 +0200 From: Todorov Organization: Powerforge Net User-Agent: Thunderbird 2.0.0.9 (X11/20080122) MIME-Version: 1.0 To: "Aryeh M. Friedman" References: <47A0B374.3040304@paladin.bulgarpress.com> <47A0F7E9.70601@gmail.com> In-Reply-To: <47A0F7E9.70601@gmail.com> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-java@FreeBSD.org Subject: Re: Diablo-JDK / JDK1.5 on FreeBSD 6.3 AMD64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 22:30:04 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Aryeh M. Friedman wrote: | Todorov wrote: |> Hi all, | |> I've just started to dig for information regarding diablo-jdk & |> natively built JDK15. | |> What can you advice me - I have to upgrade 6.2 to 6.3 and was |> wondering if I leave the cuurent 6.1 build of diablo-jdk or compile |> from ports jdk15? System is AMD64 currenly one CPU (multicore) but |> planning to add one more. | |> Will there be any benefit to do so or it will have performance |> penalty? | | Just a general rule if you upgrade to a new version recompile all your | ports. |> Thanks in advance. | |> Regards, Todor | _______________________________________________ | freebsd-java@freebsd.org mailing list | http://lists.freebsd.org/mailman/listinfo/freebsd-java | To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" | Ok, but as diablo-jdk15 is now installed (compiled version for AMD64 6.1 taken from the FBSD Foundation site) this is the main reason for my questions - how and which version? :) _______________________________________________ freebsd-java@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-java To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHoPphibJkIG65HMcRAj8dAJ4zyNF0lR+C23eSdZpUep81xSIAWgCg+GbL 5iZZfx0nM6tQjOld4zCiry4= =t7zm -----END PGP SIGNATURE----- From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 22:33:25 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A7FC16A419 for ; Wed, 30 Jan 2008 22:33:25 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.230]) by mx1.freebsd.org (Postfix) with ESMTP id 2952213C4D3 for ; Wed, 30 Jan 2008 22:33:24 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by qb-out-0506.google.com with SMTP id a10so470350qbd.7 for ; Wed, 30 Jan 2008 14:33:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; bh=HGan/6YeJYNdhLBCXDUGfoKx5/MSDEuLgR1YWD2LsaQ=; b=o5Fpr9BHzHnh+d3LuN9IBJGDO+i6JpkdOMVMvXeG+Cw8VehdrKIw3VTRVrYfB/wllWhpi0eaMyg2LHAkrMVkTXygGMiMB46ZUaXuX4+z7RwuXxK0+EkkeXXrRCwkqOMtlVMVRWRNkS99JUmB6cyNxIjxwS5BWOE5NcQFwlZfa5U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=KY5eDMq2+WZmMBdUffgqjKfEKYT8nFscNDOFtOOxLRmpNRTwfM5Ojv6sTv/rbwtF5xMJcdrgFmKrvFetm3AloMPzRYHuG00xvals3L4KALk/Wh7bwRCz5asLJp7sjX8m1PGpG5YF2dzS5vV0wTZS3YQSpDq2RrwnlSWntSywrFM= Received: by 10.64.203.4 with SMTP id a4mr2846570qbg.6.1201732403828; Wed, 30 Jan 2008 14:33:23 -0800 (PST) Received: from flosoft.no-ip.biz ( [67.85.89.184]) by mx.google.com with ESMTPS id f14sm1021336qba.25.2008.01.30.14.33.22 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 30 Jan 2008 14:33:23 -0800 (PST) Message-ID: <47A0FB30.2020304@gmail.com> Date: Wed, 30 Jan 2008 17:33:20 -0500 From: "Aryeh M. Friedman" User-Agent: Thunderbird 2.0.0.9 (X11/20080121) MIME-Version: 1.0 To: Todorov References: <47A0B374.3040304@paladin.bulgarpress.com> <47A0F7E9.70601@gmail.com> <47A0FA61.6040804@paladin.bulgarpress.com> In-Reply-To: <47A0FA61.6040804@paladin.bulgarpress.com> X-Enigmail-Version: 0.95.5 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 7bit Cc: freebsd-java@FreeBSD.org Subject: Re: Diablo-JDK / JDK1.5 on FreeBSD 6.3 AMD64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 22:33:25 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Todorov wrote: > Aryeh M. Friedman wrote: | Todorov wrote: |> Hi all, | |> I've just > started to dig for information regarding diablo-jdk & |> natively > built JDK15. | |> What can you advice me - I have to upgrade 6.2 to > 6.3 and was |> wondering if I leave the cuurent 6.1 build of > diablo-jdk or compile |> from ports jdk15? System is AMD64 currenly > one CPU (multicore) but |> planning to add one more. | |> Will > there be any benefit to do so or it will have performance |> > penalty? | | Just a general rule if you upgrade to a new version > recompile all your | ports. |> Thanks in advance. | |> Regards, > Todor | _______________________________________________ | > freebsd-java@freebsd.org mailing list | > http://lists.freebsd.org/mailman/listinfo/freebsd-java | To > unsubscribe, send any mail to > "freebsd-java-unsubscribe@freebsd.org" | > > Ok, but as diablo-jdk15 is now installed (compiled version for > AMD64 6.1 taken from the FBSD Foundation site) this is the main > reason for my questions - how and which version? :) > > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java To > unsubscribe, send any mail to > "freebsd-java-unsubscribe@freebsd.org" > I use jdk16 for work and jdk15 for ports that require java... I can not speak to the performence diff between diablo and sun's jdk but since sun updates there jdk on a regular basis I would put my money on it. - -- Aryeh M. Friedman FloSoft Systems, Java Tool Developers Developer, not business, friendly http://www.flosoft-systems.com "Free software != Free beer" Blog: http://www.flosoft-systems.com/flosoft_systems_community/blogs/aryeh/index.php -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHoPsvQi2hk2LEXBARAlnwAJ4xSBJUy1tXnR0Hpy1NmRhezYrzJwCg+m+N zlQiJm7Rs2i+kE9Op4WtGWA= =Qk/t -----END PGP SIGNATURE----- From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 22:40:31 2008 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91EFB16A41A for ; Wed, 30 Jan 2008 22:40:31 +0000 (UTC) (envelope-from todorov@paladin.bulgarpress.com) Received: from paladin.bulgarpress.com (paladin.bulgarpress.com [195.24.42.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4F5B313C448 for ; Wed, 30 Jan 2008 22:40:31 +0000 (UTC) (envelope-from todorov@paladin.bulgarpress.com) Received: from localhost (localhost [127.0.0.1]) by paladin.bulgarpress.com (Postfix) with ESMTP id 385D161A8; Thu, 31 Jan 2008 00:40:30 +0200 (EET) X-Virus-Scanned: amavisd-new at paladin.bulgarpress.com Received: from paladin.bulgarpress.com ([195.24.42.3]) by localhost (paladin.bulgarpress.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Bdua1q32ejfJ; Thu, 31 Jan 2008 00:40:23 +0200 (EET) Received: from [192.168.10.235] (90-154-139-237.btc-net.bg [90.154.139.237]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by paladin.bulgarpress.com (Postfix) with ESMTP id 2F47261A7; Thu, 31 Jan 2008 00:40:23 +0200 (EET) Message-ID: <47A0FCD5.80200@paladin.bulgarpress.com> Date: Thu, 31 Jan 2008 00:40:21 +0200 From: Todorov Organization: Powerforge Net User-Agent: Thunderbird 2.0.0.9 (X11/20080122) MIME-Version: 1.0 To: "Aryeh M. Friedman" References: <47A0B374.3040304@paladin.bulgarpress.com> <47A0F7E9.70601@gmail.com> <47A0FA61.6040804@paladin.bulgarpress.com> <47A0FB30.2020304@gmail.com> In-Reply-To: <47A0FB30.2020304@gmail.com> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-java@FreeBSD.org Subject: Re: Diablo-JDK / JDK1.5 on FreeBSD 6.3 AMD64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 22:40:31 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Aryeh M. Friedman wrote: | Todorov wrote: |> Aryeh M. Friedman wrote: | Todorov wrote: |> Hi all, | |> I've just |> started to dig for information regarding diablo-jdk & |> natively |> built JDK15. | |> What can you advice me - I have to upgrade 6.2 to |> 6.3 and was |> wondering if I leave the cuurent 6.1 build of |> diablo-jdk or compile |> from ports jdk15? System is AMD64 currenly |> one CPU (multicore) but |> planning to add one more. | |> Will |> there be any benefit to do so or it will have performance |> |> penalty? | | Just a general rule if you upgrade to a new version |> recompile all your | ports. |> Thanks in advance. | |> Regards, |> Todor | _______________________________________________ | |> freebsd-java@freebsd.org mailing list | |> http://lists.freebsd.org/mailman/listinfo/freebsd-java | To |> unsubscribe, send any mail to |> "freebsd-java-unsubscribe@freebsd.org" | | |> Ok, but as diablo-jdk15 is now installed (compiled version for |> AMD64 6.1 taken from the FBSD Foundation site) this is the main |> reason for my questions - how and which version? :) | |> _______________________________________________ |> freebsd-java@freebsd.org mailing list |> http://lists.freebsd.org/mailman/listinfo/freebsd-java To |> unsubscribe, send any mail to |> "freebsd-java-unsubscribe@freebsd.org" | | I use jdk16 for work and jdk15 for ports that require java... I can | not speak to the performence diff between diablo and sun's jdk but | since sun updates there jdk on a regular basis I would put my money on it. Thanks :) _______________________________________________ freebsd-java@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-java To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHoPzVibJkIG65HMcRAl3XAJ4uleQV6v1PiLsiBw/fDsyAKnTDawCfXQuY 6W7K++SJ5GsEOudeMce2D0w= =1ESO -----END PGP SIGNATURE----- From owner-freebsd-java@FreeBSD.ORG Wed Jan 30 23:46:06 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B5B916A41B for ; Wed, 30 Jan 2008 23:46:06 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from anduin.net (anduin.net [213.225.74.230]) by mx1.freebsd.org (Postfix) with ESMTP id D269313C4EC for ; Wed, 30 Jan 2008 23:46:05 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from ranger.anduin.net ([212.62.248.147] helo=[192.168.2.10]) by anduin.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1JKLdw-000Bk1-GO for freebsd-java@freebsd.org; Wed, 30 Jan 2008 23:42:56 +0100 Message-Id: <1A554062-5E54-4914-BC8A-AAD580D6EC27@anduin.net> From: =?ISO-8859-1?Q?Eirik_=D8verby?= To: freebsd-java@freebsd.org Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v915) Date: Wed, 30 Jan 2008 23:42:55 +0100 X-Mailer: Apple Mail (2.915) Subject: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2008 23:46:06 -0000 Hi all, an old boring question coming up again... For various reasons we have some interest in getting Java running on FreeBSD-SPARC64. Also, the sun4v platform is of interest, but currently mostly academic such as the FreeBSD port to sun4v isn't useful at this stage. We are using FreeBSD on a load of old SUN servers that their owners can't or won't dispose of. Having Java available would make these systems even more useful, and might bring in more business for us. So, put plainly, what kind of man-hours are we talking about to bring Java 1.5 to fbsd-sparc64? And what kind of money/support/inspiration would be needed to make this a priority? Thanks, /Eirik From owner-freebsd-java@FreeBSD.ORG Thu Jan 31 00:49:37 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66B3F16A418 for ; Thu, 31 Jan 2008 00:49:37 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from smtp-out1.tiscali.nl (smtp-out1.tiscali.nl [195.241.79.176]) by mx1.freebsd.org (Postfix) with ESMTP id 2C22313C461 for ; Thu, 31 Jan 2008 00:49:37 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from [212.123.145.58] (helo=guido.klop.ws) by smtp-out1.tiscali.nl with smtp (Tiscali http://www.tiscali.nl) id 1JKNcV-00083r-NR for ; Thu, 31 Jan 2008 01:49:35 +0100 Received: (qmail 4616 invoked from network); 31 Jan 2008 00:49:34 -0000 Received: from localhost (HELO guido.klop.ws) (127.0.0.1) by localhost with SMTP; 31 Jan 2008 00:49:34 -0000 To: "Jung-uk Kim" , freebsd-java@freebsd.org From: "Ronald Klop" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <200801291058.09857.jkim@FreeBSD.org> Content-Transfer-Encoding: Quoted-Printable Date: Thu, 31 Jan 2008 01:49:33 +0100 Message-ID: In-Reply-To: <200801291058.09857.jkim@FreeBSD.org> User-Agent: Opera Mail/9.25 (FreeBSD) Cc: Pieter de Goeje Subject: Re: Locale issue java 6 (not in java 5) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 00:49:37 -0000 On Tue, 29 Jan 2008 16:58:07 +0100, Jung-uk Kim wrote= : > On Tuesday 29 January 2008 08:35 am, Ronald Klop wrote: >> Hi, >> >> I have this little program. >> >> import java.text.NumberFormat; >> import java.text.ParseException; >> import java.util.Locale; >> >> final class LocaleCheck { >> public static void main(String[] args) throws ParseException { >> NumberFormat f =3D NumberFormat.getNumberInstance(new >> Locale("NL")); System.out.println(f.parse("1,07")); >> } >> } >> >> /usr/local/jdk1.5.0/bin/java LocaleCheck >> 1.07 >> >> /usr/local/jdk1.6.0/bin/java LocaleCheck >> 107 >> >> Java 5 gives the correct output. >> >> Running on FreeBSD 7.0 from 11 Jan 2008. >> >> java version "1.5.0_13-p7" >> Java(TM) 2 Runtime Environment, Standard Edition (build >> 1.5.0_13-p7-root_07_jan_2008_13_37) >> Java HotSpot(TM) Client VM (build >> 1.5.0_13-p7-root_07_jan_2008_13_37, mixed mode) >> >> java version "1.6.0_03-p3" >> Java(TM) SE Runtime Environment (build >> 1.6.0_03-p3-root_26_nov_2007_14_37-b00) >> Java HotSpot(TM) Client VM (build >> 1.6.0_03-p3-root_26_nov_2007_14_37-b00, mixed mode) >> >> Do people see the same output? Should I file a PR? >> I don't have the problem on Linux with java 1.5.0_10 and 1.6.0_03. > > Can you try the patch in the PR? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D119397 > > Jung-uk Kim > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org= " I tried it. It fixes my problem. See another mail in this thread. Ronald. -- = Ronald Klop Amsterdam, The Netherlands From owner-freebsd-java@FreeBSD.ORG Thu Jan 31 21:43:17 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C2AD16A418 for ; Thu, 31 Jan 2008 21:43:17 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from anduin.net (anduin.net [213.225.74.230]) by mx1.freebsd.org (Postfix) with ESMTP id 696F013C45D for ; Thu, 31 Jan 2008 21:43:17 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from ranger.anduin.net ([212.62.248.147] helo=[192.168.2.10]) by anduin.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1JKhBj-0007pL-4b; Thu, 31 Jan 2008 22:43:15 +0100 Message-Id: From: =?ISO-8859-1?Q?Eirik_=D8verby?= To: Landon Fuller In-Reply-To: <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> Mime-Version: 1.0 (Apple Message framework v915) Date: Thu, 31 Jan 2008 22:43:14 +0100 References: <1A554062-5E54-4914-BC8A-AAD580D6EC27@anduin.net> <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> X-Mailer: Apple Mail (2.915) Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 21:43:17 -0000 On Jan 31, 2008, at 10:37 PM, Landon Fuller wrote: > > On Jan 30, 2008, at 14:42, Eirik =D8verby wrote: > >> Hi all, >> >> an old boring question coming up again... >> >> For various reasons we have some interest in getting Java running =20 >> on FreeBSD-SPARC64. Also, the sun4v platform is of interest, but =20 >> currently mostly academic such as the FreeBSD port to sun4v isn't =20 >> useful at this stage. >> >> We are using FreeBSD on a load of old SUN servers that their owners =20= >> can't or won't dispose of. Having Java available would make these =20 >> systems even more useful, and might bring in more business for us. >> >> So, put plainly, what kind of man-hours are we talking about to =20 >> bring Java 1.5 to fbsd-sparc64? > > At first glance, it doesn't look to be more than a couple weeks of =20 > work (at the high end). Someone on the OpenJDK lists recently asked =20= > about Linux/Sparc, which would require roughly the same effort =20 > (implementing os_cpu for bsd_sparc): > = http://mail.openjdk.java.net/pipermail/hotspot-dev/2007-September/000138.h= tml > = http://mail.openjdk.java.net/pipermail/porters-dev/2008-January/000078.htm= l > >> And what kind of money/support/inspiration would be needed to make =20= >> this a priority? > > Seems like the biggest problem is access to freebsd/sparc64, and -- =20= > of course -- finding someone sufficiently excited about doing the =20 > porting work =3D) I can provide access to one or more jails on fbsd/sparc64. Even host =20 access can be considered if necessary. /Eirik > > > -landonf From owner-freebsd-java@FreeBSD.ORG Thu Jan 31 22:09:03 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16C9916A468 for ; Thu, 31 Jan 2008 22:09:03 +0000 (UTC) (envelope-from landonf@bikemonkey.org) Received: from secure.bikemonkey.org (bluefish.bikemonkey.org [69.80.211.101]) by mx1.freebsd.org (Postfix) with ESMTP id 0FA8513C467 for ; Thu, 31 Jan 2008 22:09:02 +0000 (UTC) (envelope-from landonf@bikemonkey.org) Received: from [192.168.54.11] (unknown [192.168.54.11]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by secure.bikemonkey.org (Postfix) with ESMTP id AE7AA1703B; Thu, 31 Jan 2008 13:37:15 -0800 (PST) In-Reply-To: <1A554062-5E54-4914-BC8A-AAD580D6EC27@anduin.net> References: <1A554062-5E54-4914-BC8A-AAD580D6EC27@anduin.net> Mime-Version: 1.0 (Apple Message framework v753) Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Apple-Mail-40-169936232" Message-Id: <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> Content-Transfer-Encoding: 7bit From: Landon Fuller Date: Thu, 31 Jan 2008 13:37:15 -0800 To: =?ISO-8859-1?Q?Eirik_=D8verby?= X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Mailer: Apple Mail (2.753) Cc: freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 22:09:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --Apple-Mail-40-169936232 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed On Jan 30, 2008, at 14:42, Eirik =D8verby wrote: > Hi all, > > an old boring question coming up again... > > For various reasons we have some interest in getting Java running =20 > on FreeBSD-SPARC64. Also, the sun4v platform is of interest, but =20 > currently mostly academic such as the FreeBSD port to sun4v isn't =20 > useful at this stage. > > We are using FreeBSD on a load of old SUN servers that their owners =20= > can't or won't dispose of. Having Java available would make these =20 > systems even more useful, and might bring in more business for us. > > So, put plainly, what kind of man-hours are we talking about to =20 > bring Java 1.5 to fbsd-sparc64? At first glance, it doesn't look to be more than a couple weeks of =20 work (at the high end). Someone on the OpenJDK lists recently asked =20 about Linux/Sparc, which would require roughly the same effort =20 (implementing os_cpu for bsd_sparc): = http://mail.openjdk.java.net/pipermail/hotspot-dev/2007-September/=20 000138.html http://mail.openjdk.java.net/pipermail/porters-dev/2008-January/=20= 000078.html > And what kind of money/support/inspiration would be needed to make =20 > this a priority? Seems like the biggest problem is access to freebsd/sparc64, and -- =20 of course -- finding someone sufficiently excited about doing the =20 porting work =3D) -landonf= --Apple-Mail-40-169936232 content-type: application/pgp-signature; x-mac-type=70674453; name=PGP.sig content-description: This is a digitally signed message part content-disposition: inline; filename=PGP.sig content-transfer-encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) iD8DBQFHoj+LlplZCE/15mMRAvMuAJ9+I7m6dI2sOQ63YwAI5Z6VxxmDLQCfYOj7 gMPcWcyH1VSq0S4JFe2WVbg= =L9Ye -----END PGP SIGNATURE----- --Apple-Mail-40-169936232-- From owner-freebsd-java@FreeBSD.ORG Thu Jan 31 22:44:49 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FC6316A417 for ; Thu, 31 Jan 2008 22:44:49 +0000 (UTC) (envelope-from landonf@bikemonkey.org) Received: from secure.bikemonkey.org (bluefish.bikemonkey.org [69.80.211.101]) by mx1.freebsd.org (Postfix) with ESMTP id 04B4D13C459 for ; Thu, 31 Jan 2008 22:44:48 +0000 (UTC) (envelope-from landonf@bikemonkey.org) Received: from [192.168.54.11] (unknown [192.168.54.11]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by secure.bikemonkey.org (Postfix) with ESMTP id D5FC21703C; Thu, 31 Jan 2008 14:44:48 -0800 (PST) In-Reply-To: References: <1A554062-5E54-4914-BC8A-AAD580D6EC27@anduin.net> <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> Mime-Version: 1.0 (Apple Message framework v753) Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Apple-Mail-46-173986886" Message-Id: Content-Transfer-Encoding: 7bit From: Landon Fuller Date: Thu, 31 Jan 2008 14:44:46 -0800 To: =?ISO-8859-1?Q?Eirik_=D8verby?= X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Mailer: Apple Mail (2.753) Cc: freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2008 22:44:49 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --Apple-Mail-46-173986886 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed On Jan 31, 2008, at 13:43, Eirik =D8verby wrote: > On Jan 31, 2008, at 10:37 PM, Landon Fuller wrote: > >> >> On Jan 30, 2008, at 14:42, Eirik =D8verby wrote: >> >>> Hi all, >>> >>> an old boring question coming up again... >>> >>> For various reasons we have some interest in getting Java running =20= >>> on FreeBSD-SPARC64. Also, the sun4v platform is of interest, but =20 >>> currently mostly academic such as the FreeBSD port to sun4v isn't =20= >>> useful at this stage. >>> >>> We are using FreeBSD on a load of old SUN servers that their =20 >>> owners can't or won't dispose of. Having Java available would =20 >>> make these systems even more useful, and might bring in more =20 >>> business for us. >>> >>> So, put plainly, what kind of man-hours are we talking about to =20 >>> bring Java 1.5 to fbsd-sparc64? >> >> At first glance, it doesn't look to be more than a couple weeks of =20= >> work (at the high end). Someone on the OpenJDK lists recently =20 >> asked about Linux/Sparc, which would require roughly the same =20 >> effort (implementing os_cpu for bsd_sparc): >> = http://mail.openjdk.java.net/pipermail/hotspot-dev/2007-September/=20 >> 000138.html >> http://mail.openjdk.java.net/pipermail/porters-dev/2008-January/=20= >> 000078.html >> >>> And what kind of money/support/inspiration would be needed to =20 >>> make this a priority? >> >> Seems like the biggest problem is access to freebsd/sparc64, and =20 >> -- of course -- finding someone sufficiently excited about doing =20 >> the porting work =3D) > > I can provide access to one or more jails on fbsd/sparc64. Even =20 > host access can be considered if necessary. What's the status of svr4 emulation on sparc64? I forgot a critical =20 piece; One needs a bootstrap JVM, and bootstrapping off of Sun's VM =20 would make things easier. -landonf= --Apple-Mail-46-173986886 content-type: application/pgp-signature; x-mac-type=70674453; name=PGP.sig content-description: This is a digitally signed message part content-disposition: inline; filename=PGP.sig content-transfer-encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) iD8DBQFHok9elplZCE/15mMRApZXAJ9KmoKEA+HXBtq1fmkZwpnwxqa4aACeL+sJ uKn7XF7s83GoyDTjASpkyQg= =/4eT -----END PGP SIGNATURE----- --Apple-Mail-46-173986886-- From owner-freebsd-java@FreeBSD.ORG Fri Feb 1 06:45:44 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBDFE16A468 for ; Fri, 1 Feb 2008 06:45:44 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from anduin.net (anduin.net [213.225.74.230]) by mx1.freebsd.org (Postfix) with ESMTP id 6BBE113C46B for ; Fri, 1 Feb 2008 06:45:44 +0000 (UTC) (envelope-from ltning@anduin.net) Received: from [195.1.79.114] (helo=[192.168.1.2]) by anduin.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1JKpef-0006Ix-PK; Fri, 01 Feb 2008 07:45:42 +0100 Message-Id: <0AD0FFC0-32E3-410D-B391-682E69647533@anduin.net> From: =?ISO-8859-1?Q?Eirik_=D8verby?= To: Landon Fuller In-Reply-To: Mime-Version: 1.0 (Apple Message framework v915) Date: Fri, 1 Feb 2008 07:45:35 +0100 References: <1A554062-5E54-4914-BC8A-AAD580D6EC27@anduin.net> <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> X-Mailer: Apple Mail (2.915) Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2008 06:45:44 -0000 On Jan 31, 2008, at 11:44 PM, Landon Fuller wrote: > > On Jan 31, 2008, at 13:43, Eirik =D8verby wrote: > >> On Jan 31, 2008, at 10:37 PM, Landon Fuller wrote: >> >>> >>> On Jan 30, 2008, at 14:42, Eirik =D8verby wrote: >>> >>>> Hi all, >>>> >>>> an old boring question coming up again... >>>> >>>> For various reasons we have some interest in getting Java running =20= >>>> on FreeBSD-SPARC64. Also, the sun4v platform is of interest, but =20= >>>> currently mostly academic such as the FreeBSD port to sun4v isn't =20= >>>> useful at this stage. >>>> >>>> We are using FreeBSD on a load of old SUN servers that their =20 >>>> owners can't or won't dispose of. Having Java available would =20 >>>> make these systems even more useful, and might bring in more =20 >>>> business for us. >>>> >>>> So, put plainly, what kind of man-hours are we talking about to =20 >>>> bring Java 1.5 to fbsd-sparc64? >>> >>> At first glance, it doesn't look to be more than a couple weeks of =20= >>> work (at the high end). Someone on the OpenJDK lists recently =20 >>> asked about Linux/Sparc, which would require roughly the same =20 >>> effort (implementing os_cpu for bsd_sparc): >>> = http://mail.openjdk.java.net/pipermail/hotspot-dev/2007-September/000138.h= tml >>> = http://mail.openjdk.java.net/pipermail/porters-dev/2008-January/000078.htm= l >>> >>>> And what kind of money/support/inspiration would be needed to =20 >>>> make this a priority? >>> >>> Seems like the biggest problem is access to freebsd/sparc64, and =20 >>> -- of course -- finding someone sufficiently excited about doing =20 >>> the porting work =3D) >> >> I can provide access to one or more jails on fbsd/sparc64. Even =20 >> host access can be considered if necessary. > > What's the status of svr4 emulation on sparc64? I forgot a critical =20= > piece; One needs a bootstrap JVM, and bootstrapping off of Sun's VM =20= > would make things easier. I have absolutely no idea whatsoever. /Eirik > > > -landonf From owner-freebsd-java@FreeBSD.ORG Fri Feb 1 14:20:10 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA35516A421 for ; Fri, 1 Feb 2008 14:20:10 +0000 (UTC) (envelope-from he@uninett.no) Received: from smistad.uninett.no (smistad.uninett.no [IPv6:2001:700:1:0:211:9ff:fe8c:7386]) by mx1.freebsd.org (Postfix) with ESMTP id 2947113C4F9 for ; Fri, 1 Feb 2008 14:20:09 +0000 (UTC) (envelope-from he@uninett.no) Received: from localhost (smistad.uninett.no [158.38.62.77]) by smistad.uninett.no (Postfix) with ESMTP id 6E1BF21DC4E; Fri, 1 Feb 2008 15:20:03 +0100 (CET) Date: Fri, 01 Feb 2008 15:20:54 +0100 (CET) Message-Id: <20080201.152054.104033544.he@uninett.no> To: landonf@bikemonkey.org From: Havard Eidnes In-Reply-To: References: <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> X-Mailer: Mew version 5.2 on Emacs 21.4 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Fri_Feb__1_15_20_54_2008_627)--" Content-Transfer-Encoding: 7bit Cc: ltning@anduin.net, freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2008 14:20:11 -0000 ----Next_Part(Fri_Feb__1_15_20_54_2008_627)-- Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable > What's the status of svr4 emulation on sparc64? I forgot a critical = > piece; One needs a bootstrap JVM, and bootstrapping off of Sun's VM = > would make things easier. One can use a bootstrap JVM from another host (and architecture) and some scripts which use ssh to the bootstrap host and sharing files via NFS -- that's how I bootstrapped the NetBSD/amd64 version using the NetBSD/i386 version. I've attached my notes and the scripts I used to do this. (Admittedly, I've since tweaked the scripts to use environment variables, so they've not been tested in their present form...) Best regards, - H=E5vard ----Next_Part(Fri_Feb__1_15_20_54_2008_627)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit My notes for using a JVM on NetBSD/i386 to bootstrap JVM on NetBSD/amd64: I used a set of script wrappers which ssh to another machine (in my case running NetBSD/i386, with its native java installed) which has the same directory tree available via NFS as on the target (amd64) machine, using the exact same paths. Substitute scripts were made for java, javac, javah, and jar, and the ALT_BOOTDIR was pointed to the directory tree containing those scripts. Some peculiarities were discovered: o java needs to be able to read from stdin. This means you can't use "ssh -n", which again means that the build job has to run in the foreground with access to the tty (yuk...). o javah gets at least once passed a class name with a $ in it. This causes issues because we get a double shell interpretation which leads to variable expansion; once on the local machine, once on the remote. To work around that problem I borrowed the "shquote" shell function from pkgsrc and tweaked the argument list using it (it's included). o the jar script sleeps 10 seconds because otherwise it would trip over "stale NFS file handle" problems when some files were copied in place (replaced) on the NFS server just prior to using "jar". Attached below is the set of scripts which I placed in /usr/pkg/java/ as boot-java/, packaged up as "boot-java.tar.gz". Set JAVA_BOOTHOST (your boot host) and JAVA_BOOTDIR (top of java directory tree on JAVA_BOOTHOST) in the environment to suit your config. I also include the "build-java" shell script I used (to be executed from the top of the Java source tree). ----Next_Part(Fri_Feb__1_15_20_54_2008_627)-- Content-Type: Application/Octet-Stream Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="boot-java.tar.gz" H4sIABgqo0cAA+2a207bQBCGuY2fYutYmERKvD5LTUNLVVVtb5AoqpBYSJzY4ACNqTehFxCevWs7 do7kABvTNvNJ8WFtz2w8/me8m7SCoFe5cu6cnc2BsYFt02RrrNomHl+n7KjYVm3LtDVss3YVG6a+ Y26wTxl92nNChHZ8b/F5y47/o7TS+CutTndDPlaMv4ktzcRYi+KvatiA+OfARPyVaKPN3QeT88L4 a+zYMP5Gcp6q6Sp7Drj3ZA5bHv/iGxRHnvqC4Nabt7/dpuC1/QBR6qNKF0n33w5+HDQ+Hh4efzn8 fjxARCjIbRfJkivX2HJ0+NPXo4E8eoqQjETpg4j2dzWBky3htW/Wf8is/n3uPpbp39Cskf4NFfSf I+P6ryKlT0Pl9vpSSZ6I7NmgfuWm06pGJ10EIXJQpxsrsobcQChQ/1c/6HmsxRGFghNe0jrbZCsk DQ+5ouAGXY9vivHjtBD54ZJlxsxtUaKZ1T9/H0vrvzFW/20c6181dNB/Diys/8+V0nTtf6GdLZJj 7kzrP9yAj2X617E5M/6zLQz6zwH0dAK48bxbpOJExcMdDoU75DYyCCE/vJg54/9H3j6W1n9LT/Wv W6oe13/2IgD6z4G1x/8jWU4OFq7c64paNat4vSmA9c2B2nkyU/+5q3+F+q9l87+6aWvJ+79lgv5z YGPlf7Gc138JWM0eJIc1ma3//BPA8vn/sfqf/P6n6boF+s+B9cb/q1frpVMAa5sCaW+COfP/ub// G7ox0r+WvP+bGOp/HvyN8/+rp4ZVfwJ4lsWtSDhzYszdR6R/yzCe0r9q6Fb2/x/TTOb/NQPqfx4U 0ecw+ImYImjYFoQiF4QiSnMCUxLbSzjyev2wS1n6aDnta3rjUN9zkdN1UZIk0J0X0k7QRcFFdF2U ZLIEUuXVtaHBvZJwLwz7hd6yjBFlpHq0GEw0U8+ts89AyFobzEKDda8uqZNt0amixJao4iGVKucn iiLOnNKI3Tdov0V7dZkqZO+UNIkoEXJGSgohRFUu5eyqtkM9JKUu2R3JjpTjy0h0XbmUtaakt63e lOJUK55kRkT0MLQ47Koozeub2JwxWquNvC9wKY5cLTLhUac99T1TE1Pf85Q8kiI5J7ukTPZIidyT AXkgNfKO7JP3RCaIFM7KD2X2EcVF/WJ3Od0h4vK+sZi/tjoBAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAYD5/AAOW0OwAUAAA ----Next_Part(Fri_Feb__1_15_20_54_2008_627)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=build-java #!/usr/bin/env bash set -x export MAKE_VERBOSE=t unset LANG unset JAVA_HOME unset CLASSPATH unset LD_LIBRARY_PATH export ALT_MOTIF_DIR=/usr/pkg # export ALT_NSPR_PATH=/usr/pkg export ALT_NSPR_HEADERS_PATH=/usr/pkg/include/firefox/nspr export ALT_MOZILLA_HEADERS_PATH=/usr/pkg/include/firefox export SKIP_COMPARE_IMAGES=YES export DONT_ENABLE_IPV6=YES export ALT_BOOTDIR=/usr/pkg/java/boot-java # export ALT_BOOTDIR=/usr/pkg/java/jdk-1.5.0 # export ALT_BOOTDIR=/usr/pkg/java/sun-1.5 cd control/make/ gmake ----Next_Part(Fri_Feb__1_15_20_54_2008_627)---- From owner-freebsd-java@FreeBSD.ORG Fri Feb 1 19:21:30 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C5C516A417 for ; Fri, 1 Feb 2008 19:21:30 +0000 (UTC) (envelope-from landonf@bikemonkey.org) Received: from secure.bikemonkey.org (bluefish.bikemonkey.org [69.80.211.101]) by mx1.freebsd.org (Postfix) with ESMTP id 4392A13C442 for ; Fri, 1 Feb 2008 19:21:30 +0000 (UTC) (envelope-from landonf@bikemonkey.org) Received: from [192.168.54.11] (unknown [192.168.54.11]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by secure.bikemonkey.org (Postfix) with ESMTP id 27F0917041; Fri, 1 Feb 2008 11:21:30 -0800 (PST) In-Reply-To: <20080201.152054.104033544.he@uninett.no> References: <6643EEC4-3DEE-479D-9EA1-F907CB31B345@bikemonkey.org> <20080201.152054.104033544.he@uninett.no> Mime-Version: 1.0 (Apple Message framework v753) Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Apple-Mail-53-248189713" Message-Id: Content-Transfer-Encoding: 7bit From: Landon Fuller Date: Fri, 1 Feb 2008 11:21:28 -0800 To: Havard Eidnes X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Mailer: Apple Mail (2.753) Cc: =?ISO-8859-1?Q?Eirik_=D8verby?= , freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2008 19:21:30 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --Apple-Mail-53-248189713 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed On Feb 1, 2008, at 06:20, Havard Eidnes wrote: >> What's the status of svr4 emulation on sparc64? I forgot a critical >> piece; One needs a bootstrap JVM, and bootstrapping off of Sun's VM >> would make things easier. > > One can use a bootstrap JVM from another host (and architecture) and > some scripts which use ssh to the bootstrap host and sharing files via > NFS -- that's how I bootstrapped the NetBSD/amd64 version using the > NetBSD/i386 version. I've attached my notes and the scripts I used to > do this. (Admittedly, I've since tweaked the scripts to use > environment variables, so they've not been tested in their present > form...) > > Best regards, > > - H=E5vard That's super useful, thanks! If you don't mind, I'm also going to =20 forward your e-mail along to the OpenJDK Porters group, as it's =20 pretty handy thing to have on record. -landonf= --Apple-Mail-53-248189713 content-type: application/pgp-signature; x-mac-type=70674453; name=PGP.sig content-description: This is a digitally signed message part content-disposition: inline; filename=PGP.sig content-transfer-encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) iD8DBQFHo3E5lplZCE/15mMRAnKjAJ94f112iqhZh5dGe5IpW8oa2awabgCfStqi fr+pmkrA39DlpNuDHSDLqUE= =Xa0q -----END PGP SIGNATURE----- --Apple-Mail-53-248189713-- From owner-freebsd-java@FreeBSD.ORG Fri Feb 1 21:11:19 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 900E416A418 for ; Fri, 1 Feb 2008 21:11:19 +0000 (UTC) (envelope-from drgerlists@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4EE13C448 for ; Fri, 1 Feb 2008 21:11:18 +0000 (UTC) (envelope-from drgerlists@gmail.com) Received: by py-out-1112.google.com with SMTP id u52so1851312pyb.10 for ; Fri, 01 Feb 2008 13:11:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:organization:reply-to:to:subject:message-id:user-agent:mime-version:content-type:content-transfer-encoding; bh=w3cu4aFuR1nYqB/KV5yjo/VvgwQWwibKZKJicemF6ck=; b=hdrG6mFiY5YemTnHTe+rjcEpSFSkU7tfjOzZioROXDWPDlx0jpWWdgjGky5PJgR4KWg16iShl7raDnILxWQwhPP1RY/0lF5C3EYCQo1MV5CCLrdk+JxmYoYecfWH5p3w4O4q3dwJNeiVF2Gsnrx3bG6OC2TJY4FIBeCYRDDD+9U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:organization:reply-to:to:subject:message-id:user-agent:mime-version:content-type:content-transfer-encoding; b=NSSQR24Wd1snugRAl5ygW1EaPkLZNkCYEWnbJcirG4nJm1+7jdfIRkXZy2g+7yv6c4Y91VSnlm3lC0QdYitWvkw3pYkp9q09FtTjHXCj6KTs4jwQO4fBRAmxjHQjPCu2JUP7Zm+eqiO51Nrxn7xH8wPhp7T96UrXOgY9NpoeaMU= Received: by 10.35.106.1 with SMTP id i1mr4335909pym.62.1201898833018; Fri, 01 Feb 2008 12:47:13 -0800 (PST) Received: from lmrmac.uhw.utoledo.edu ( [131.183.86.111]) by mx.google.com with ESMTPS id f6sm9220959pyh.13.2008.02.01.12.47.08 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 01 Feb 2008 12:47:08 -0800 (PST) Date: Fri, 01 Feb 2008 15:47:07 -0500 From: drgerlists@gmail.com (Dr. Gary E. RAFE) Organization: Dr. Gary E. RAFE To: freebsd-java@freebsd.org Message-ID: <47a3854b.IK8El/NhR4OtnvOoWFFVHCY/@lmrmac.uhw.utoledo.edu> User-Agent: Heirloom mailx 12.3 7/15/07 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Building Native Java 3D (j3d) from Sources ? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: drgerlists@gmail.com List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2008 21:11:19 -0000 Anyone on this list have any success building a native Java 3D ? Using FreeBSD 6.2-R, XFree86-4.7.0, NVIDIA-96.43.01, JDK-1.5.0._13p7 on a Toshiba Satellite Pro 6100 notebook. Fetched current Java 3D (1.5.2 beta1) sources (vecmath, j3d-core, j3d-core-utils) from CVS at java.net, and built JARs for these projects, along with the i386 shared library libj3dcore-ogl.so by adding appropriate ant(1) build files for freebsd-i386. With the JARs and shared library installed in .../jre/lib/ as appropriate, the Java 3D program "Package Info" reports: $ CLASSPATH=dist/j3d-examples.jar \ java org.jdesktop.j3d.examples.package_info.PackageInfo Package Info window: package javax.vecmath, Java 3D API Specification, version 1.5 Specification Title = Java 3D API Specification Specification Vendor = Sun Microsystems, Inc. Specification Version = 1.5 Implementation Vendor = Sun Microsystems, Inc. Implementation Version = 1.5.2 package javax.media.j3d, Java 3D API Specification, version 1.5 Specification Title = Java 3D API Specification Specification Vendor = Sun Microsystems, Inc. Specification Version = 1.5 Implementation Vendor = Sun Microsystems, Inc. Implementation Version = 1.5.2 package com.sun.j3d.utils.universe, version 1.5 Specification Title = Specification Vendor = Sun Microsystems, Inc. Specification Version = 1.5 Implementation Vendor = Sun Microsystems, Inc. Implementation Version = 1.5.2 The Java 3D program "Hello Universe", however, fails: $ CLASSPATH=dist/j3d-examples.jar \ java -Dj3d.debug=true org.jdesktop.j3d.examples.hello_universe.HelloUniverse Java 3D [dev] 1.5.2-pre2-0802011144-experimental 01 Feb 2008 11:44:30 EST Java 3D: J3dDebug.debug enabled Java 3D: concurrent threadLimit = 2 Java 3D: glslVertexAttrOffset = 6 Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: Requested array size exceeds VM limit at javax.media.j3d.Canvas3D.(Canvas3D.java:1151) at javax.media.j3d.Canvas3D.(Canvas3D.java:1042) at javax.media.j3d.Canvas3D.(Canvas3D.java:1006) at org.jdesktop.j3d.examples.hello_universe.HelloUniverse.createUniverse(HelloUniverse.java:102) at org.jdesktop.j3d.examples.hello_universe.HelloUniverse.(HelloUniverse.java:125) at org.jdesktop.j3d.examples.hello_universe.HelloUniverse$1.run(HelloUniverse.java:160) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209) at java.awt.EventQueue.dispatchEvent(EventQueue.java:461) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149) at java.awt.EventDispatchThread.run(EventDispatchThread.java:110) I get the same result regardless of the maximum Java heap size, so something else must be at play here. [Oh, so close...] Observations ? Suggestions ? Pointers ? -- Dr Gary E RAFE: drgerlists at gmail dot com From owner-freebsd-java@FreeBSD.ORG Fri Feb 1 23:26:31 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2137316A419 for ; Fri, 1 Feb 2008 23:26:31 +0000 (UTC) (envelope-from he@uninett.no) Received: from smistad.uninett.no (smistad.uninett.no [IPv6:2001:700:1:0:211:9ff:fe8c:7386]) by mx1.freebsd.org (Postfix) with ESMTP id D2C8A13C43E for ; Fri, 1 Feb 2008 23:26:30 +0000 (UTC) (envelope-from he@uninett.no) Received: from localhost (smistad.uninett.no [158.38.62.77]) by smistad.uninett.no (Postfix) with ESMTP id 8BC6721DC4E; Sat, 2 Feb 2008 00:26:27 +0100 (CET) Date: Sat, 02 Feb 2008 00:27:59 +0100 (CET) Message-Id: <20080202.002759.01457418.he@uninett.no> To: landonf@bikemonkey.org From: Havard Eidnes In-Reply-To: References: <20080201.152054.104033544.he@uninett.no> X-Mailer: Mew version 5.2 on Emacs 21.4 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ltning@anduin.net, freebsd-java@freebsd.org Subject: Re: Sparc64 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2008 23:26:31 -0000 > That's super useful, thanks! If you don't mind, I'm also going to = > forward your e-mail along to the OpenJDK Porters group, as it's = > pretty handy thing to have on record. Sure, no problem. Regards, - H=E5vard From owner-freebsd-java@FreeBSD.ORG Sat Feb 2 05:26:38 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 523E416A417 for ; Sat, 2 Feb 2008 05:26:38 +0000 (UTC) (envelope-from drgerlists@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id F3C8213C45B for ; Sat, 2 Feb 2008 05:26:37 +0000 (UTC) (envelope-from drgerlists@gmail.com) Received: by py-out-1112.google.com with SMTP id u52so2050466pyb.10 for ; Fri, 01 Feb 2008 21:26:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:organization:reply-to:to:subject:message-id:user-agent:mime-version:content-type:content-transfer-encoding; bh=mLtZskrotbjDi7C8nuLrvAQYLexYqExFycuE1+lXvuY=; b=YXHqtnlvWIV4B4kXAV+wjrMZzIQPfZ/10G6lGfWTNB3UXQA2RTfZ7elIYfdI5OAChyY/WgMF5QSeHq6h0eMHSbOqKFX8hy3FyoXtQ5NUiBGFSww1QBQ+vujJlfc5HqRgNtEIneE3R/tIxehizSQSZyE13slZdXHv9cM2si4T1jY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:organization:reply-to:to:subject:message-id:user-agent:mime-version:content-type:content-transfer-encoding; b=dSmVLM1lJ7xQvktg3vRb6e763KT3Voomi1geuEc27c4mLwp1LdcbMV5r1i5Z9U/T3ukYizgmnfcaWsJbt2EHiaNEXJpeZ5ll1TzR1z7nJHwI8htk/GWmLtL6rhNDx8GJXdI1IZ6gBhRi2bKl6+/eRJNg3h85Yag9tyVbj866hM8= Received: by 10.35.96.6 with SMTP id y6mr4849410pyl.46.1201929997175; Fri, 01 Feb 2008 21:26:37 -0800 (PST) Received: from lmrmac.uhw.utoledo.edu ( [131.183.86.111]) by mx.google.com with ESMTPS id n29sm10665527pyh.41.2008.02.01.21.26.36 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 01 Feb 2008 21:26:36 -0800 (PST) Date: Sat, 02 Feb 2008 00:26:35 -0500 From: drgerlists@gmail.com (Dr. Gary E. RAFE) Organization: Dr. Gary E. RAFE To: freebsd-java@freebsd.org Message-ID: <47a3ff0b.detC80CI4A33TYdCJWnDiUt4@lmrmac.uhw.utoledo.edu> User-Agent: Heirloom mailx 12.3 7/15/07 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: Building Java 3D (j3d) from Sources ? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: drgerlists@gmail.com List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Feb 2008 05:26:38 -0000 Sorry about the noise earlier. Seems I missed a few platform-specific (Solaris/Linux/Win32) references in the native/ogl code for libj3dcore-ogl.so in my first passes through the build process. After accounting for the FreeBSD case, the example applications all seem to work OK now. Now on to testing embedded Java 3D applets... I'd think a native port shouldn't be too difficult to work up, in case anyone's interested. -- Dr Gary E RAFE: drgerlists at gmail dot com From owner-freebsd-java@FreeBSD.ORG Sat Feb 2 08:57:56 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86AF216A419 for ; Sat, 2 Feb 2008 08:57:56 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from chen.org.nz (chen.org.nz [202.89.146.5]) by mx1.freebsd.org (Postfix) with ESMTP id 3466013C457 for ; Sat, 2 Feb 2008 08:57:56 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by chen.org.nz (Postfix, from userid 1000) id 208FE284B0; Sat, 2 Feb 2008 21:57:55 +1300 (NZDT) Date: Sat, 2 Feb 2008 21:57:55 +1300 From: Jonathan Chen To: "Dr. Gary E. RAFE" Message-ID: <20080202085755.GA13797@osiris.chen.org.nz> References: <47a3ff0b.detC80CI4A33TYdCJWnDiUt4@lmrmac.uhw.utoledo.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <47a3ff0b.detC80CI4A33TYdCJWnDiUt4@lmrmac.uhw.utoledo.edu> User-Agent: Mutt/1.4.2.3i Cc: freebsd-java@freebsd.org Subject: Re: Building Java 3D (j3d) from Sources ? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Feb 2008 08:57:56 -0000 On Sat, Feb 02, 2008 at 12:26:35AM -0500, Dr. Gary E. RAFE wrote: > Sorry about the noise earlier. > > Seems I missed a few platform-specific (Solaris/Linux/Win32) > references in the native/ogl code for libj3dcore-ogl.so in my first > passes through the build process. > > After accounting for the FreeBSD case, the example applications all seem > to work OK now. > Now on to testing embedded Java 3D applets... > > I'd think a native port shouldn't be too difficult to work up, > in case anyone's interested. I, for one, would appreciate a Java3D port! Cheers. -- Jonathan Chen ---------------------------------------------------------------------- If you're right 90% of the time, why quibble about the remaining 3%? From owner-freebsd-java@FreeBSD.ORG Sat Feb 2 19:21:22 2008 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9093016A41B; Sat, 2 Feb 2008 19:21:22 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from emma.lautre.net (emma.lautre.net [80.67.160.69]) by mx1.freebsd.org (Postfix) with ESMTP id 59B2B13C448; Sat, 2 Feb 2008 19:21:22 +0000 (UTC) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id A492F11457; Sat, 2 Feb 2008 19:18:50 +0100 (CET) Date: Sat, 2 Feb 2008 19:18:50 +0100 From: Thierry Thomas To: Erwin Lansing Message-ID: <20080202181850.GA7994@graf.pompo.net> Mail-Followup-To: Erwin Lansing , ports-committers@FreeBSD.org, java@FreeBSD.org References: <200802021756.m12HuYqs049323@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200802021756.m12HuYqs049323@repoman.freebsd.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 7.0-BETA4 i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Cc: java@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/java/java3d Makefile X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Feb 2008 19:21:22 -0000 Le Sam 2 fév 08 à 18:56:33 +0100, Erwin Lansing écrivait : > erwin 2008-02-02 17:56:33 UTC > > FreeBSD ports repository > > Modified files: > java/java3d Makefile > Log: > Mark BROKEN: does not fetch Its new home page is now located at: and it's downloadable from: -- Th. Thomas. From owner-freebsd-java@FreeBSD.ORG Sat Feb 2 19:33:17 2008 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 158D016A417; Sat, 2 Feb 2008 19:33:17 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.ipv6.droso.net [IPv6:2001:6c8:6:c:20d:56ff:fe6f:f935]) by mx1.freebsd.org (Postfix) with ESMTP id CDB9913C457; Sat, 2 Feb 2008 19:33:16 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id BC0B41CC40; Sat, 2 Feb 2008 20:33:15 +0100 (CET) Date: Sat, 2 Feb 2008 20:33:15 +0100 From: Erwin Lansing To: ports-committers@FreeBSD.org, java@FreeBSD.org Message-ID: <20080202193315.GN34170@droso.net> References: <200802021756.m12HuYqs049323@repoman.freebsd.org> <20080202181850.GA7994@graf.pompo.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rpGc+ACYPE+RMC+Z" Content-Disposition: inline In-Reply-To: <20080202181850.GA7994@graf.pompo.net> X-Operating-System: FreeBSD/i386 7.0-BETA2 User-Agent: Mutt/1.5.17 (2007-11-01) Cc: Subject: Re: cvs commit: ports/java/java3d Makefile X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Feb 2008 19:33:17 -0000 --rpGc+ACYPE+RMC+Z Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 02, 2008 at 07:18:50PM +0100, Thierry Thomas wrote: > Le Sam 2 f=E9v 08 =E0 18:56:33 +0100, Erwin Lansing > =E9crivait=A0: > > erwin 2008-02-02 17:56:33 UTC > >=20 > > FreeBSD ports repository > >=20 > > Modified files: > > java/java3d Makefile=20 > > Log: > > Mark BROKEN: does not fetch >=20 > Its new home page is now located at: > >=20 > and it's downloadable from: > Thanks, but that's only 1.5.1 and the port is still at 1.3.1, which doesn't seem to have a linux download anymore at the old versions page: https://java3d.dev.java.net/binary-builds-old.html There is a PR assigned to java@ for updating it to 1.5.1 though, but so far noone responded unfortunately. Cheers, -erwin --=20 Erwin Lansing http://droso.org (o_ _o) Errare humanum est \\\_\ /_/// erwin@FreeBSD.org perseverare diabolicum <____) (____> erwin@aauug.dk --rpGc+ACYPE+RMC+Z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iD8DBQFHpMV7qy9aWxUlaZARAq0/AKCilH5Z3QXnZlJKj4GA5cmn7jIYDACfVz4N Mx+z8Xj0yjjkX64zwDrhzrI= =+5WM -----END PGP SIGNATURE----- --rpGc+ACYPE+RMC+Z--