From owner-freebsd-java Sun Mar 9 2: 5:41 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F7F837B401 for ; Sun, 9 Mar 2003 02:05:41 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0C8043FA3 for ; Sun, 9 Mar 2003 02:05:38 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18rxgJ-000MvP-00; Sun, 09 Mar 2003 12:05:23 +0200 Date: Sun, 9 Mar 2003 12:05:23 +0200 From: Sheldon Hearn To: Alexander Kabaev Cc: hwh@gddsn.org.cn, freebsd-java@FreeBSD.ORG Subject: Re: Native jdk1.4.1 JNI problem with Eclipse IDE Message-ID: <20030309100523.GA75577@starjuice.net> Mail-Followup-To: Alexander Kabaev , hwh@gddsn.org.cn, freebsd-java@FreeBSD.ORG References: <20030306090708.GY60356@starjuice.net> <3E676C23.60304@gddsn.org.cn> <20030306180305.GB86455@starjuice.net> <20030306203111.0781d693.kabaev@bellatlantic.net> <20030307093803.GH93105@starjuice.net> <20030307114547.2c954117.ak03@gte.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030307114547.2c954117.ak03@gte.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On (2003/03/07 11:45), Alexander Kabaev wrote: > I'll try to clean the port up a bit and post it here if people are > interested in getting it polished enough for a commit. Yes please. If anything, it'd give me something to compare with James Flemer's version, so I can try figure out why his port works fine for 1.3.1 but not 1.4.1. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 7:49: 8 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0897437B401 for ; Sun, 9 Mar 2003 07:49:06 -0800 (PST) Received: from smak.uberduper.com (12-213-188-143.client.attbi.com [12.213.188.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D19843F85 for ; Sun, 9 Mar 2003 07:49:05 -0800 (PST) (envelope-from james@uberduper.com) Received: from sphynx (unknown [192.168.235.15]) by smak.uberduper.com (Postfix) with ESMTP id 834FC9D405; Sun, 9 Mar 2003 07:49:09 -0800 (PST) Message-ID: <001c01c2e653$b2d67b70$0feba8c0@sphynx> From: "James Satterfield" To: "Stefan Farfeleder" , References: <20030309022834.GA585@frog.fafoe> Subject: Re: jdk14 MulticastSocket breakage Date: Sun, 9 Mar 2003 07:51:07 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Stefan, You are my new best friend! After making the change you suggested, DVArchive FINALLY works on freebsd with the native jdk1.4.1. Just wanted to say thank you. James. ----- Original Message ----- From: "Stefan Farfeleder" To: Sent: Saturday, March 08, 2003 6:28 PM Subject: jdk14 MulticastSocket breakage > [please CC me, thanks] > > Hi, > > I think I've found a bug in the java/jdk14 port. The method > java.net.MulticastSocket.joinGroup() always fails with > "java.net.SocketException: Invalid argument" (a small program to > demonstrate this can be found at > http://stud3.tuwien.ac.at/~e0026813/FreeBSD/multicast.java ). > > With ktrace I've tracked this down to: > > 1216 java CALL setsockopt(0x6,0,0x1,0xbf8e5b80,0x8) > 1216 java RET setsockopt -1 errno 22 Invalid argument > > Then I looked into the source code and found that > bsd-jdk14-patches-3.tar.gz made these changes to > j2se/src/solaris/native/java/net/PlainDatagramSocketImpl.c > > - if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? IP_ADD_MEMBERSHIP:IP_DROP_MEMBERSHIP), > +// XXXBSD: fix for BSD (re-implement with KAME ?) > +// if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? IP_ADD_MEMBERSHIP:IP_DROP_MEMBERSHIP), > + if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? 1 : 0), > > which I do not understand. has 12 for IP_ADD_MEMBERSHIP > and 13 for IP_DROP_MEMBERSHIP, the 1 corresponds to IP_OPTIONS and > causes the EINVAL failure. Reverting these changes and recompiling > jdk14 fixes the failure for me. > > The patch also changes IPV6_ADD_MEMBERSHIP and IPV6_DROP_MEMBERSHIP into > 1 and 0 which seems bogus too. These constants are available on Linux > but not on FreeBSD; I think the values IPV6_JOIN_GROUP and > IPV6_LEAVE_GROUP should be used instead. > > Regards, > Stefan Farfeleder > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 10:48:42 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8896737B401 for ; Sun, 9 Mar 2003 10:48:40 -0800 (PST) Received: from gate.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1672143FAF for ; Sun, 9 Mar 2003 10:48:40 -0800 (PST) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.13]) by gate.volant.org with asmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.33 #1) id 18s5qh-000GNj-00 for java@freebsd.org; Sun, 09 Mar 2003 10:48:39 -0800 Date: Sun, 09 Mar 2003 10:48:17 -0800 From: Pat Lashley To: java@freebsd.org Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <343380000.1047235697@mccaffrey.phoenix.volant.org> In-Reply-To: <324995408.1047169368@mccaffrey.phoenix.volant.org> References: <324995408.1047169368@mccaffrey.phoenix.volant.org> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========2148669384==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========2148669384========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Saturday, March 08, 2003 16:22:48 -0800 Pat Lashley=20 wrote: > I'm trying to build the native JDK 1.4 port (with Hotspot) on FreeBSD > 4.8-RC (cvsup'd early Tuesday afternoon, PST); and I get the following > error: > > > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org > /o rg.omg.PortableServer/.classes.list > gmake[5]: *** No rule to make target > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe > s/ org/omg/PortableServer/AdapterActivator.class', needed by `classes'. > Stop. gmake[5]: Leaving directory > > > Any idea what's wrong with my setup? Answering my own post, this may be caused by a problem with the Linux JDK used for bootstrapping. linux-sun-jdk-1.4.1_2 is immediately exiting with a Hotspot error: # # HotSpot Virtual Machine Error, Internal Error # Please report this error at # http://java.sun.com/cgi-bin/bugreport.cgi # # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode) # # Error ID: 4F533F4C494E55580E43505002D7 # Abort trap (core dumped) Could this be because I am using linux_base-7.1_2 instead of the older linux_base-6.1_4 ? (I seem to remember some postings to that effect a while back.) Thanks, -Pat --==========2148669384========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+a4x9ncYNbLD8wuMRAsqIAKDvpKGDtTO2mTIGvtuKTzsLMbmICQCfeGjY ffkdjyz6UIhNebxDElb4UL8= =9Pzn -----END PGP SIGNATURE----- --==========2148669384==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 11: 4:25 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3202637B401 for ; Sun, 9 Mar 2003 11:04:24 -0800 (PST) Received: from maila.telia.com (maila.telia.com [194.22.194.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id E116143FB1 for ; Sun, 9 Mar 2003 11:04:22 -0800 (PST) (envelope-from david@realityrift.com) Received: from d1o836.telia.com (d1o836.telia.com [213.65.240.241]) by maila.telia.com (8.12.8/8.12.8) with ESMTP id h29J4Lk0002928; Sun, 9 Mar 2003 20:04:21 +0100 (CET) X-Original-Recipient: java@FreeBSD.ORG Received: from rift.ath.cx (h88n2fls32o836.telia.com [217.208.105.88]) by d1o836.telia.com (8.10.2/8.10.1) with SMTP id h29J4Jc14949; Sun, 9 Mar 2003 20:04:19 +0100 (CET) Date: Sun, 9 Mar 2003 20:03:45 +0100 From: David Holm To: Pat Lashley Cc: java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-Id: <20030309200345.28bf4e46.david@realityrift.com> In-Reply-To: <343380000.1047235697@mccaffrey.phoenix.volant.org> References: <324995408.1047169368@mccaffrey.phoenix.volant.org> <343380000.1047235697@mccaffrey.phoenix.volant.org> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I get that error whenever I use any linux-jvm with hotspot. For me the solution was to run it as root. Are you compiling the jdk as a normal user or root? //David Holm On Sun, 09 Mar 2003 10:48:17 -0800 Pat Lashley wrote: > --On Saturday, March 08, 2003 16:22:48 -0800 Pat Lashley > wrote: > > > I'm trying to build the native JDK 1.4 port (with Hotspot) on FreeBSD > > 4.8-RC (cvsup'd early Tuesday afternoon, PST); and I get the following > > error: > > > > > > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org > > /o rg.omg.PortableServer/.classes.list > > gmake[5]: *** No rule to make target > > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe > > s/ org/omg/PortableServer/AdapterActivator.class', needed by `classes'. > > Stop. gmake[5]: Leaving directory > > > > > > Any idea what's wrong with my setup? > > Answering my own post, this may be caused by a problem with the Linux > JDK used for bootstrapping. linux-sun-jdk-1.4.1_2 is immediately exiting > with a Hotspot error: > > # > # HotSpot Virtual Machine Error, Internal Error > # Please report this error at > # http://java.sun.com/cgi-bin/bugreport.cgi > # > # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode) > # > # Error ID: 4F533F4C494E55580E43505002D7 > # > Abort trap (core dumped) > > Could this be because I am using linux_base-7.1_2 instead of the older > linux_base-6.1_4 ? (I seem to remember some postings to that effect a > while back.) > > > > Thanks, > -Pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 13: 8: 9 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02BC137B404 for ; Sun, 9 Mar 2003 13:08:08 -0800 (PST) Received: from orwell.phoenix.volant.org (64-144-229-193.client.dsl.net [64.144.229.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38BAF43FE5 for ; Sun, 9 Mar 2003 13:08:07 -0800 (PST) (envelope-from patl@phoenix.volant.org) Received: from mccaffrey.phoenix.volant.org ([192.168.0.13] ident=patl) by orwell.phoenix.volant.org with esmtp (Exim 4.12) id 18s81U-000Lad-00; Sun, 09 Mar 2003 13:07:56 -0800 Date: Sun, 09 Mar 2003 13:07:56 -0800 From: PM Lashley To: David Holm Cc: java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <432540000.1047244075@mccaffrey.phoenix.volant.org> In-Reply-To: <20030309200345.28bf4e46.david@realityrift.com> References: <324995408.1047169368@mccaffrey.phoenix.volant.org> <343380000.1047235697@mccaffrey.phoenix.volant.org> <20030309200345.28bf4e46.david@realityrift.com> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --On Sunday, March 09, 2003 20:03:45 +0100 David Holm wrote: > I get that error whenever I use any linux-jvm with hotspot. For me the > solution was to run it as root. Are you compiling the jdk as a normal > user or root? Urk. I'm building as root; but I ran the linux-jvm test as an unprivileged user. When test it as root, it works. So it's back to the drawing board on my original problem with the native jdk 1.4.1 build. I've now seen the identical problem on a second machine. I've re-cvsup'd ports to ensure that I'm completely up to date; and the jdk and patch files are all passing the checksum test; so I don't think I need to re-download. -Pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 13:23: 4 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E172337B401 for ; Sun, 9 Mar 2003 13:23:01 -0800 (PST) Received: from smtp011.mail.yahoo.com (smtp011.mail.yahoo.com [216.136.173.31]) by mx1.FreeBSD.org (Postfix) with SMTP id D025343F3F for ; Sun, 9 Mar 2003 13:23:00 -0800 (PST) (envelope-from kaeru@pd.jaring.my) Received: from unknown (HELO ?219.94.101.253?) (khairil?yusof@219.94.101.253 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 9 Mar 2003 21:22:58 -0000 Subject: Re: Error building jdk 1.4.1 on 5.0-p4 From: Khairil Yusof Reply-To: kaeru@pd.jaring.my To: Alexey Zelkin Cc: Greg Lewis , freebsd-java@FreeBSD.ORG In-Reply-To: <20030308120006.A75574@phantom.cris.net> References: <1047079208.715.45.camel@daemon.home.net> <20030308172845.A61777@misty.eyesbeyond.com> <1047114557.32447.28.camel@daemon.home.net> <20030308120006.A75574@phantom.cris.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-GgZgQR1wdUdnlVFejUoC" Organization: Message-Id: <1047244951.683.8.camel@daemon.home.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 10 Mar 2003 05:22:32 +0800 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --=-GgZgQR1wdUdnlVFejUoC Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-03-08 at 18:00, Alexey Zelkin wrote: > If you're using 5.0-RELEASE -- first question - did you apply libc_r > patch and rebuily/reinstalled libc_r ? To make sure, I tried to rebuild with 5.0-CURRENT (9th March). I get to this point before the linux javac fails. I have 1.6GB of swap left and no limits on memory use. gmake[4]: Entering directory `/usr/ports/java/jdk14/work/j2se/make/java/net' /bin/mkdir -p /usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/obj_= g rm -f /usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/.cla= sses.list if [ -s /usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/.cla= sses.list ] ; \ then /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/javac_g=20 -J-XX:ThreadStackSize=3D768 -J-Xms64m -J-Xmx256m -J-Xmaxf1 -classpath /usr/ports/java/jdk14/work/control/build/bsd-i586/classes -bootclasspath "/usr/ports/java/jdk14/work/control/build/bsd-i586/lib/jce.jar:/usr/ports/j= ava/jdk14/work/control/build/bsd-i586/lib/jsse.jar" -sourcepath "/usr/ports= /java/jdk14/work/control/build/bsd-i586/gensrc:../../../src/solaris/classes= :../../../src/share/classes" -d /usr/ports/java/jdk14/work/control/build/bs= d-i586/classes -source 1.4 \ ; \ fi /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/javah_g -J-XX:ThreadStackSize=3D768 -jni -bootclasspath /usr/ports/java/jdk14/work/control/build/bsd-i586/classes -d /usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/CCla= ssHeaders/ \ java.net.Socket java.net.SocketOptions java.net.SocketImpl java.net.PlainSocketImpl java.net.ServerSocket java.net.InetAddress java.net.Inet4Address java.net.Inet6Address java.net.InetAddressImpl java.net.Inet4AddressImpl java.net.Inet6AddressImpl java.net.NetworkInterface java.net.SocketInputStream java.net.SocketOutputStream java.net.DatagramPacket java.net.DatagramSocket java.net.DatagramSocketImpl java.net.PlainDatagramSocketImpl java.net.MulticastSocket java.net.UnknownHostException java.net.ProtocolException =20 java.lang.Integer java.io.FileDescriptor java.net.InetAddressImplFactory java.net.Inet4AddressImpl java.net.Inet6AddressImpl VM option 'ThreadStackSize=3D768' Error occurred during initialization of VM java.lang.OutOfMemoryError Dumping core.... gmake[4]: *** [/usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/obj= _g/.class.headers.i586] Abort trap (core dumped) gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java/net' gmake[3]: *** [debug] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java/net' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 =20 Stop in /usr/ports/java/jdk14. daemon# --=20 Khairil Yusof --=-GgZgQR1wdUdnlVFejUoC Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+a7CWDAqnLW/+/X8RAjZZAJ4oR+Z2TIxp0aFjS8/QkvvttXc3UgCdHAm7 tVIYfRzjyM9FMYjlo0umKYA= =wjp/ -----END PGP SIGNATURE----- --=-GgZgQR1wdUdnlVFejUoC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 13:25: 1 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C04BE37B401 for ; Sun, 9 Mar 2003 13:24:59 -0800 (PST) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EBDB43F85 for ; Sun, 9 Mar 2003 13:24:58 -0800 (PST) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [127.0.0.1]) by smtp.infracaninophile.co.uk (8.12.8/8.12.8) with ESMTP id h29LOpJ6084532; Sun, 9 Mar 2003 21:24:51 GMT (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.8/8.12.8/Submit) id h29LOp9N084531; Sun, 9 Mar 2003 21:24:51 GMT Date: Sun, 9 Mar 2003 21:24:51 +0000 From: Matthew Seaman To: PM Lashley Cc: David Holm , java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <20030309212451.GA84425@happy-idiot-talk.infracaninophi> References: <324995408.1047169368@mccaffrey.phoenix.volant.org> <343380000.1047235697@mccaffrey.phoenix.volant.org> <20030309200345.28bf4e46.david@realityrift.com> <432540000.1047244075@mccaffrey.phoenix.volant.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <432540000.1047244075@mccaffrey.phoenix.volant.org> User-Agent: Mutt/1.5.3i X-Spam-Status: No, hits=-38.8 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_MUTT version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 09, 2003 at 01:07:56PM -0800, PM Lashley wrote: > --On Sunday, March 09, 2003 20:03:45 +0100 David Holm=20 > wrote: >=20 > >I get that error whenever I use any linux-jvm with hotspot. For me the > >solution was to run it as root. Are you compiling the jdk as a normal > >user or root? >=20 > Urk. I'm building as root; but I ran the linux-jvm test as an unprivileg= ed > user. When test it as root, it works. >=20 > So it's back to the drawing board on my original problem with the native > jdk 1.4.1 build. I've now seen the identical problem on a second machine. > I've re-cvsup'd ports to ensure that I'm completely up to date; and the > jdk and patch files are all passing the checksum test; so I don't think > I need to re-download. Try the kernel patch in this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dkern%2F40611 or the patches in these two messages: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D387209+0+archive/2003/fr= eebsd-hackers/20030302.freebsd-hackers http://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D396052+0+archive/2003/fr= eebsd-hackers/20030302.freebsd-hackers Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+a7EjdtESqEQa7a0RAsG6AJ0RVn/7YXW65Z/d9Sb/QxiyKS/jZQCePj9J ZlTCsLfX9kyBkVWgdjb8q7g= =bd4D -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 13:39: 9 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4111037B401 for ; Sun, 9 Mar 2003 13:39:07 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D07043FDF for ; Sun, 9 Mar 2003 13:39:06 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.7/8.12.7) id h29LcqgG054475; Sun, 9 Mar 2003 15:38:52 -0600 (CST) (envelope-from dan) Date: Sun, 9 Mar 2003 15:38:52 -0600 From: Dan Nelson To: Khairil Yusof Cc: Alexey Zelkin , Greg Lewis , freebsd-java@FreeBSD.ORG Subject: Re: Error building jdk 1.4.1 on 5.0-p4 Message-ID: <20030309213852.GA47786@dan.emsphone.com> References: <1047079208.715.45.camel@daemon.home.net> <20030308172845.A61777@misty.eyesbeyond.com> <1047114557.32447.28.camel@daemon.home.net> <20030308120006.A75574@phantom.cris.net> <1047244951.683.8.camel@daemon.home.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1047244951.683.8.camel@daemon.home.net> X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In the last episode (Mar 10), Khairil Yusof said: > On Sat, 2003-03-08 at 18:00, Alexey Zelkin wrote: > > If you're using 5.0-RELEASE -- first question - did you apply > > libc_r patch and rebuily/reinstalled libc_r ? > > To make sure, I tried to rebuild with 5.0-CURRENT (9th March). I get > to this point before the linux javac fails. I have 1.6GB of swap left > and no limits on memory use. > > VM option 'ThreadStackSize=768' > Error occurred during initialization of VM > java.lang.OutOfMemoryError > Dumping core.... > gmake[4]: *** > [/usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/obj_g/.class.headers.i586] Abort trap (core dumped) I get the same error at the same place on my system. javah_g has allocated only 170MB at this point, according to top. I've got 1Gb of RAM, no ulimits, and lots of free swap. Here's the backtrace: (gdb) where #0 0x280db9c3 in kill () from /usr/lib/libc.so.5 #1 0x281409cd in abort () from /usr/lib/libc.so.5 #2 0x286c7fe2 in os::abort(int) (dump_core=1) at /usr/ports/java/jdk14/work/hotspot/src/os/bsd/vm/os_bsd.cpp:1039 #3 0x284e1871 in vm_abort() () at /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/java.cpp:500 #4 0x284e1949 in vm_exit_during_initialization(Handle) () at /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/java.cpp:509 #5 0x2846ebbf in ~ExceptionMark (this=0xbfbfdba0) at /usr/ports/java/jdk14/work/hotspot/src/share/vm/utilities/exceptions.cpp:231 #6 0x287676f2 in Threads::create_vm(JavaVMInitArgs*) (args=0x28c1dda4) at /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/thread.cpp:2712 #7 0x285570e5 in JNI_CreateJavaVM (vm=0xbfbfe510, penv=0xbfbfe50c, args=0x0) at /usr/ports/java/jdk14/work/hotspot/src/share/vm/prims/jni.cpp:2318 #8 0x0804a7b8 in InitializeJVM (pvm=0xbfbfe510, penv=0xbfbfe50c, ifn=0xbfbfe4e4) at ../../../../src/share/bin/java.c:939 #9 0x08049015 in main (argc=31, argv=0x8065108) at ../../../../src/share/bin/java.c:234 #10 0x08048bf5 in _start ( ap=0xbfbfe7d8 "/usr/ports/java/jdk14/work/control/build/bsd-i586/bin/javah_g") at /usr/src/lib/csu/i386-elf/crt1.c:103 -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 13:53:17 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7655837B401 for ; Sun, 9 Mar 2003 13:53:15 -0800 (PST) Received: from gate.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB76E43FA3 for ; Sun, 9 Mar 2003 13:53:14 -0800 (PST) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.13]) by gate.volant.org with asmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.33 #1) id 18s8j4-000IoA-00; Sun, 09 Mar 2003 13:52:58 -0800 Date: Sun, 09 Mar 2003 13:52:48 -0800 From: Pat Lashley To: Matthew Seaman Cc: David Holm , java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <32900000.1047246768@mccaffrey.phoenix.volant.org> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========880350887==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========880350887========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Sunday, March 09, 2003 21:24:51 +0000 Matthew Seaman=20 wrote: > Try the kernel patch in this PR: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dkern%2F40611 > > or the patches in these two messages: > > > = http://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D387209+0+archive/2003/freebs > d-hackers/20030302.freebsd-hackers > = http://docs.freebsd.org/cgi/getmsg.cgi?fetch=3D396052+0+archive/2003/freebs > d-hackers/20030302.freebsd-hackers It looks like these could take care of the problem running the Linux JDK as a non-root user; but if I can get the native JDK 1.4.1 running I=20 shouldn't need to run the Linux version. And since I'm trying to build the native version as root, the patches shouldn't have any effect. I'm back to the original problem which is: >>>Recursively making PortableServer all @ Sat Mar 8 15:42:32 PST 2003 ... gmake[4]: Entering directory=20 `/d1/ports-workdir/d4/ports/java/jdk14/work/j2se/make/org/omg/PortableServe r' gmake classes VARIANT=3DOPT gmake[5]: Entering directory=20 `/d1/ports-workdir/d4/ports/java/jdk14/work/j2se/make/org/omg/PortableServe r' rm -f=20 /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org/o rg.omg.PortableServer/.classes.list gmake[5]: *** No rule to make target=20 `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classes/ org/omg/PortableServer/AdapterActivator.class', needed by `classes'. Stop. gmake[5]: Leaving directory=20 `/d1/ports-workdir/d4/ports/java/jdk14/work/j2se/make/org/omg/PortableServe r' gmake[4]: *** [optimized] Error 2 gmake[4]: Leaving directory=20 `/d1/ports-workdir/d4/ports/java/jdk14/work/j2se/make/org/omg/PortableServe r' gmake[3]: *** [all] Error 1 -Pat --==========880350887========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+a7exncYNbLD8wuMRAh3xAJ903/xLRRtjHTjFMXAsZXscjLv8qwCfZS9m zEGUt7thHbhWmwOGPP1vI8c= =egZE -----END PGP SIGNATURE----- --==========880350887==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 14:10:27 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D84D37B401 for ; Sun, 9 Mar 2003 14:10:26 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E15A43FB1 for ; Sun, 9 Mar 2003 14:10:23 -0800 (PST) (envelope-from phantom@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2A0L4mJ057363; Mon, 10 Mar 2003 00:21:05 GMT Received: (from phantom@localhost) by phantom.cris.net (8.12.6/8.12.2) id h29MGb6p084057; Mon, 10 Mar 2003 00:16:37 +0200 (EET) (envelope-from phantom) Date: Mon, 10 Mar 2003 00:16:37 +0200 From: Alexey Zelkin To: Dan Nelson Cc: Khairil Yusof , Greg Lewis , freebsd-java@FreeBSD.ORG Subject: Re: Error building jdk 1.4.1 on 5.0-p4 Message-ID: <20030310001637.B83993@phantom.cris.net> References: <1047079208.715.45.camel@daemon.home.net> <20030308172845.A61777@misty.eyesbeyond.com> <1047114557.32447.28.camel@daemon.home.net> <20030308120006.A75574@phantom.cris.net> <1047244951.683.8.camel@daemon.home.net> <20030309213852.GA47786@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030309213852.GA47786@dan.emsphone.com>; from dnelson@allantgroup.com on Sun, Mar 09, 2003 at 03:38:52PM -0600 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, Can you please provide me details about hardware configuration of your machines guys ? On Sun, Mar 09, 2003 at 03:38:52PM -0600, Dan Nelson wrote: > In the last episode (Mar 10), Khairil Yusof said: > > On Sat, 2003-03-08 at 18:00, Alexey Zelkin wrote: > > > If you're using 5.0-RELEASE -- first question - did you apply > > > libc_r patch and rebuily/reinstalled libc_r ? > > > > To make sure, I tried to rebuild with 5.0-CURRENT (9th March). I get > > to this point before the linux javac fails. I have 1.6GB of swap left > > and no limits on memory use. > > > > VM option 'ThreadStackSize=768' > > Error occurred during initialization of VM > > java.lang.OutOfMemoryError > > Dumping core.... > > gmake[4]: *** > > [/usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/sun/java.net/net/obj_g/.class.headers.i586] Abort trap (core dumped) > > I get the same error at the same place on my system. javah_g has > allocated only 170MB at this point, according to top. I've got 1Gb of > RAM, no ulimits, and lots of free swap. Here's the backtrace: > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 14:39:51 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 706E337B404 for ; Sun, 9 Mar 2003 14:39:50 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6798443F3F for ; Sun, 9 Mar 2003 14:39:49 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.7/8.12.7) id h29MdgY6048188; Sun, 9 Mar 2003 16:39:42 -0600 (CST) (envelope-from dan) Date: Sun, 9 Mar 2003 16:39:42 -0600 From: Dan Nelson To: Alexey Zelkin Cc: Khairil Yusof , Greg Lewis , freebsd-java@FreeBSD.ORG Subject: Re: Error building jdk 1.4.1 on 5.0-p4 Message-ID: <20030309223942.GA75517@dan.emsphone.com> References: <1047079208.715.45.camel@daemon.home.net> <20030308172845.A61777@misty.eyesbeyond.com> <1047114557.32447.28.camel@daemon.home.net> <20030308120006.A75574@phantom.cris.net> <1047244951.683.8.camel@daemon.home.net> <20030309213852.GA47786@dan.emsphone.com> <20030310001637.B83993@phantom.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030310001637.B83993@phantom.cris.net> X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In the last episode (Mar 10), Alexey Zelkin said: > Can you please provide me details about hardware configuration > of your machines guys ? Dual pIII/910, Asus CUV4XD motherboard, 1GB RAM. Userland is mainly a Jan 23 -CURRENT build, with the following built on March 6: gcc, libc, libc_r, libstdc++, libm, and kernel. Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #253: Thu Mar 6 17:49:59 CST 2003 dan@dan.emsphone.com:/usr/src/sys/i386/compile/DANSMP Preloaded elf kernel "/boot/kernel/kernel" at 0xc0531000. Timecounter "i8254" frequency 1193183 Hz CPU: Intel Pentium III (909.97-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff real memory = 1073725440 (1023 MB) avail memory = 1038172160 (990 MB) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 3, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00178011, at 0xfec00000 -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 14:52:58 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 296F037B401 for ; Sun, 9 Mar 2003 14:52:57 -0800 (PST) Received: from smtp011.mail.yahoo.com (smtp011.mail.yahoo.com [216.136.173.31]) by mx1.FreeBSD.org (Postfix) with SMTP id CE0DE43FBF for ; Sun, 9 Mar 2003 14:52:55 -0800 (PST) (envelope-from kaeru@pd.jaring.my) Received: from unknown (HELO ?219.94.101.253?) (khairil?yusof@219.94.101.253 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 9 Mar 2003 22:52:54 -0000 Subject: Re: Error building jdk 1.4.1 on 5.0-p4 From: Khairil Yusof Reply-To: kaeru@pd.jaring.my To: Alexey Zelkin Cc: Dan Nelson , Greg Lewis , freebsd-java@FreeBSD.ORG In-Reply-To: <20030310001637.B83993@phantom.cris.net> References: <1047079208.715.45.camel@daemon.home.net> <20030308172845.A61777@misty.eyesbeyond.com> <1047114557.32447.28.camel@daemon.home.net> <20030308120006.A75574@phantom.cris.net> <1047244951.683.8.camel@daemon.home.net> <20030309213852.GA47786@dan.emsphone.com> <20030310001637.B83993@phantom.cris.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-j2+KEHtCqhbd1uoUC4Hv" Organization: Message-Id: <1047250351.683.42.camel@daemon.home.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 10 Mar 2003 06:52:32 +0800 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --=-j2+KEHtCqhbd1uoUC4Hv Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2003-03-10 at 06:16, Alexey Zelkin wrote: > hi, >=20 > Can you please provide me details about hardware configuration > of your machines guys ? FreeBSD 5.0-CURRENT #1: Sun Mar 9 10:54:25 MYT 2003 CPU: Pentium III/Pentium III Xeon/Celeron (449.24-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x673 Stepping =3D 3 =20 Features=3D0x383fbff real memory =3D 402640896 (383 MB) avail memory =3D 384741376 (366 MB) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 --=20 Khairil Yusof --=-j2+KEHtCqhbd1uoUC4Hv Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+a8WvDAqnLW/+/X8RAu7+AJ961S5Zs7UQDwttkpuo8o+1DklNzgCdG3eP /0l9JpvbuRzpFM9gq3D3NUY= =dP+I -----END PGP SIGNATURE----- --=-j2+KEHtCqhbd1uoUC4Hv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 20:11:28 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 829C837B401 for ; Sun, 9 Mar 2003 20:11:26 -0800 (PST) Received: from gate.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3EF343F85 for ; Sun, 9 Mar 2003 20:11:24 -0800 (PST) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.13]) by gate.volant.org with asmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.33 #1) id 18sEdE-000Nj2-00 for java@freebsd.org; Sun, 09 Mar 2003 20:11:21 -0800 Date: Sun, 09 Mar 2003 20:11:16 -0800 From: Pat Lashley To: java@freebsd.org Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <240610000.1047269476@mccaffrey.phoenix.volant.org> In-Reply-To: <324995408.1047169368@mccaffrey.phoenix.volant.org> References: <324995408.1047169368@mccaffrey.phoenix.volant.org> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========2198797794==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========2198797794========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Saturday, March 08, 2003 16:22:48 -0800 Pat Lashley=20 wrote: > I'm trying to build the native JDK 1.4 port (with Hotspot) on FreeBSD > 4.8-RC (cvsup'd early Tuesday afternoon, PST); and I get the following > error: > > > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org > /o rg.omg.PortableServer/.classes.list > gmake[5]: *** No rule to make target > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe > s/ org/omg/PortableServer/AdapterActivator.class', needed by `classes'. > Stop. gmake[5]: Leaving directory > `/d1/ports-workdir/d4/ports/java/jdk14/work/j2se/make/org/omg/PortableSer > ve r' > gmake[4]: *** [optimized] Error 2 I've run the build again, this time capturing all of the output; and it looks like there was an earlier error that didn't stop the build: >>>Recursively making sources all @ Sun Mar 9 17:38:41 PST 2003 ... gmake[4]: Entering directory=20 `/d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/j2se/make/org /omg/sources' /d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/control/build/ bsd-i586/bin/java -classpath=20 "/d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/control/build /bsd-i586/classes:" com.sun.tools.corba.se.idl.toJavaPortable.Compile -td=20 "/d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/control/build /bsd-i586/gensrc" -i=20 "../../../../src/share/classes/org/omg/PortableServer" -i=20 "../../../../src/share/classes/org/omg/PortableInterceptor" -corba 3.0=20 -fall -pkgPrefix PortableServer org.omg=20 ../../../../src/share/classes/org/omg/PortableServer/poa.idl com.sun.tools.corba.se.idl.InvalidArgument: Invalid argument: -td. Compiler Usage: java com.sun.tools.corba.se.idl.toJavaPortable.Compile [options] where is the name of ... So, this raises two questions. One, why didn't this cause a make error = that would stop the build at this point. And two, what's up with the -td flag? Should it not be there; or should the compiler be accepting it? Thanks, -Pat --==========2198797794========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bBBlncYNbLD8wuMRAv/tAKD35ryf9qGGQCd3oGY9YLQhGWdqFACfVSi3 ADxUbXBIusL9mJRI+iFIQEk= =ME7i -----END PGP SIGNATURE----- --==========2198797794==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 21: 2:36 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CD8B37B401 for ; Sun, 9 Mar 2003 21:02:35 -0800 (PST) Received: from misery.sdf.com (misery.sdf.com [207.200.153.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5FE943FB1 for ; Sun, 9 Mar 2003 21:02:22 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom (helo=localhost) by misery.sdf.com with local-esmtp (Exim 2.12 #1) id 18sDvr-0003sK-00; Sun, 9 Mar 2003 19:26:31 -0800 Date: Sun, 9 Mar 2003 19:26:15 -0800 (PST) From: Tom Samplonius To: Pat Lashley Cc: Matthew Seaman , David Holm , java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC In-Reply-To: <32900000.1047246768@mccaffrey.phoenix.volant.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; FORMAT=flowed Content-ID: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 9 Mar 2003, Pat Lashley wrote: ... > It looks like these could take care of the problem running the Linux JDK > as a non-root user; but if I can get the native JDK 1.4.1 running I > shouldn't > need to run the Linux version. And since I'm trying to build the native > version as root, the patches shouldn't have any effect. ... Well, you need a jdk 1.4.x to build jdk1.4.1. So you need the Linux jdk to bootstrap the native build. Once you have a native build, and it works, you can use to make further builds of jdk1.4.1 (ex. for furture patch releases). Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 9 21:16:56 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEFD937B404 for ; Sun, 9 Mar 2003 21:16:54 -0800 (PST) Received: from orwell.phoenix.volant.org (64-144-229-193.client.dsl.net [64.144.229.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6DC843F85 for ; Sun, 9 Mar 2003 21:16:53 -0800 (PST) (envelope-from patl@phoenix.volant.org) Received: from mccaffrey.phoenix.volant.org ([192.168.0.13] ident=patl) by orwell.phoenix.volant.org with esmtp (Exim 4.12) id 18sFeV-000IOG-00; Sun, 09 Mar 2003 21:16:43 -0800 Date: Sun, 09 Mar 2003 21:16:42 -0800 From: PM Lashley To: Tom Samplonius Cc: Matthew Seaman , David Holm , java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <284070000.1047273402@mccaffrey.phoenix.volant.org> In-Reply-To: References: X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========708748336==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========708748336========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Sunday, March 09, 2003 19:26:15 -0800 Tom Samplonius =20 wrote: > > On Sun, 9 Mar 2003, Pat Lashley wrote: > > ... >> It looks like these could take care of the problem running the Linux JDK >> as a non-root user; but if I can get the native JDK 1.4.1 running I >> shouldn't >> need to run the Linux version. And since I'm trying to build the native >> version as root, the patches shouldn't have any effect. > ... > > Well, you need a jdk 1.4.x to build jdk1.4.1. So you need the Linux = jdk > to bootstrap the native build. Once you have a native build, and it > works, you can use to make further builds of jdk1.4.1 (ex. for furture > patch releases). Yes; but the linux JDK works fine when I run as root; and I'm building the native jdk14 port as root; so I shouldn't need the patches, right? I've discovered that the problem actually appears to be a bogus complaint about the '-td' parameter during the idl compiles. All 269 of them... They complain and pump out usage info; but don't return an error code that will actually stop the make. So what actually stops the make is when it tries to access something that should have been generated but wasn't. (And the quietly failing tasks are running the native java interpreter from the build area...) -Pat --==========708748336========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bB+7ncYNbLD8wuMRAttuAJ9RbkBI/fctnIKvlhk4TD08vl8e4gCgkrSa dV463sZECAaiIUIUMNdW9wY= =g+Td -----END PGP SIGNATURE----- --==========708748336==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 1:46:56 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53F4637B401 for ; Mon, 10 Mar 2003 01:46:55 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E05243F3F for ; Mon, 10 Mar 2003 01:46:53 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18sJrt-0003hS-00 for freebsd-java@FreeBSD.org; Mon, 10 Mar 2003 11:46:49 +0200 Date: Mon, 10 Mar 2003 11:46:49 +0200 From: Sheldon Hearn To: freebsd-java@FreeBSD.org Subject: ports/java/jdk14 and jni_md.h Message-ID: <20030310094649.GA12316@starjuice.net> Mail-Followup-To: freebsd-java@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi folks, While looking into the reason for James Flemer's Eclipse port failing to run with ports/java/jdk14, I've found oddness in .../jdk1.4.1/include/jni.h: /* jni_md.h contains the machine-dependent typedefs for jbyte, jint and jlong */ #include "jni_md.h" What are the odds that this will work for any caller once it's installed into .../jdk1.4.1/include/jni.h? It seems to me that a) jni.h should #include "bsd/jni_md.h", or b) jni.h should #include , or b) callers are expected to add .../jdk1.4.1/include/md to the include path when compiling, not just .../jdk1.4.1/include, or c) jni_md.h should be installed in .../jdk1.4.1/include, not .../jdk1.4.1/include/md. What do the experts say? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 1:51: 4 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49AEB37B401 for ; Mon, 10 Mar 2003 01:51:03 -0800 (PST) Received: from seed.net.tw (sn12.seed.net.tw [139.175.54.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74BD843FAF for ; Mon, 10 Mar 2003 01:51:02 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.135.232] (port=49195 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18sJvx-000Hi2-00 for freebsd-java@FreeBSD.ORG; Mon, 10 Mar 2003 17:51:01 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.8/8.12.8) with ESMTP id h2A9p05s002171 for ; Mon, 10 Mar 2003 17:51:01 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.8/8.12.8/Submit) id h2A9p0Eh002170 for freebsd-java@FreeBSD.ORG; Mon, 10 Mar 2003 17:51:00 +0800 (CST) Date: Mon, 10 Mar 2003 17:51:00 +0800 From: leafy To: freebsd-java@FreeBSD.ORG Subject: Re: ports/java/jdk14 and jni_md.h Message-ID: <20030310095100.GA2149@leafy.idv.tw> Mail-Followup-To: freebsd-java@FreeBSD.ORG References: <20030310094649.GA12316@starjuice.net> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030310094649.GA12316@starjuice.net> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Mar 10, 2003 at 11:46:49AM +0200, Sheldon Hearn wrote: > It seems to me that > > a) jni.h should #include "bsd/jni_md.h", or > b) jni.h should #include , or > b) callers are expected to add .../jdk1.4.1/include/md to the include > path when compiling, not just .../jdk1.4.1/include, or > c) jni_md.h should be installed in .../jdk1.4.1/include, not > .../jdk1.4.1/include/md. > > What do the experts say? > > Ciao, > Sheldon. Hi, Could you please explicitly add the bsd/ into the makefile? I think resin and many other Java ports are in the same boat. Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 2:16:25 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1204837B404 for ; Mon, 10 Mar 2003 02:16:21 -0800 (PST) Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.168.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEBC343F93 for ; Mon, 10 Mar 2003 02:16:16 -0800 (PST) (envelope-from ernst@zaphod.euronet.nl) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.6/8.12.6) with ESMTP id h2A9669c000786; Mon, 10 Mar 2003 10:06:06 +0100 (CET) (envelope-from ernst@zaphod.euronet.nl) Received: (from ernst@localhost) by zaphod.euronet.nl (8.12.6/8.12.6/Submit) id h2A961g3000785; Mon, 10 Mar 2003 10:06:01 +0100 (CET) From: Ernst de Haan To: Greg Lewis , leafy Subject: Re: [patch]bsd.java.mk for freebsd native jdk 1.4.1 Date: Mon, 10 Mar 2003 10:06:01 +0100 User-Agent: KMail/1.5 Cc: freebsd-java@FreeBSD.ORG References: <20030307153528.GA9846@leafy.idv.tw> <20030308050430.C60098@misty.eyesbeyond.com> In-Reply-To: <20030308050430.C60098@misty.eyesbeyond.com> X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200303101006.01312.znerd@FreeBSD.org> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Approved! Let's hope portmgr will approve too. Ernst On Friday 07 March 2003 19:34, Greg Lewis wrote: > On Fri, Mar 07, 2003 at 11:36:03PM +0800, leafy wrote: > > Since jdk14 is now in our ports, the following patch is needed > > if you want the ports to use the native JDK installed as dependancy. > > I didin't try multiple JDK installation though. JBoss3 was built > > successfully for JDK14. > > Great! Ernst, as bsd.java.mk maintainer have you time to review this? > We should try and get this in during the freeze if portmgr will approve. > > > --- bsd.java.mk.old Fri Mar 7 23:10:39 2003 > > +++ bsd.java.mk Fri Mar 7 23:28:46 2003 > > @@ -47,6 +47,7 @@ > > _JAVA_HOME_FREEBSD_1_1= ${LOCALBASE}/jdk1.1.8 > > _JAVA_HOME_FREEBSD_1_2= ${LOCALBASE}/jdk1.2.2 > > _JAVA_HOME_FREEBSD_1_3= ${LOCALBASE}/jdk1.3.1 > > +_JAVA_HOME_FREEBSD_1_4= ${LOCALBASE}/jdk1.4.1 > > _JAVA_HOME_BLACKDOWN_LINUX_1_2= ${LOCALBASE}/linux-blackdown-jdk1.2.2 > > _JAVA_HOME_BLACKDOWN_LINUX_1_3= ${LOCALBASE}/linux-blackdown-jdk1.3.1 > > _JAVA_HOME_BLACKDOWN_LINUX_1_4= ${LOCALBASE}/linux-blackdown-jdk1.4.1 > > @@ -59,6 +60,7 @@ > > _JAVA_PORT_FREEBSD_1_1= java/jdk11 > > _JAVA_PORT_FREEBSD_1_2= java/jdk12 > > _JAVA_PORT_FREEBSD_1_3= java/jdk13 > > +_JAVA_PORT_FREEBSD_1_4= java/jdk14 > > _JAVA_PORT_BLACKDOWN_LINUX_1_2= java/linux-blackdown-jdk12 > > _JAVA_PORT_BLACKDOWN_LINUX_1_3= java/linux-blackdown-jdk13 > > _JAVA_PORT_IBM_LINUX_1_3= java/linux-ibm-jdk13 > > @@ -82,6 +84,7 @@ > > . undef HAVE_JAVA_FREEBSD_1_1 > > . undef HAVE_JAVA_FREEBSD_1_2 > > . undef HAVE_JAVA_FREEBSD_1_3 > > +. undef HAVE_JAVA_FREEBSD_1_4 > > . undef HAVE_JAVA_BLACKDOWN_LINUX_1_2 > > . undef HAVE_JAVA_BLACKDOWN_LINUX_1_3 > > . undef HAVE_JAVA_IBM_LINUX_1_3 > > @@ -98,6 +101,9 @@ > > . if exists(${_JAVA_HOME_FREEBSD_1_3}/${_JDK_FILE}) > > HAVE_JAVA_FREEBSD_1_3= YES > > . endif > > +. if exists(${_JAVA_HOME_FREEBSD_1_4}/${_JDK_FILE}) > > +HAVE_JAVA_FREEBSD_1_4= YES > > +. endif > > . if exists(${_JAVA_HOME_BLACKDOWN_LINUX_1_2}/${_JDK_FILE}) > > HAVE_JAVA_BLACKDOWN_LINUX_1_2= YES > > . endif > > @@ -134,6 +140,8 @@ > > JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_2} > > . elif ${_JAVA_HOME} == ${_JAVA_HOME_FREEBSD_1_3} > > JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_3} > > +. elif ${_JAVA_HOME} == ${_JAVA_HOME_FREEBSD_1_4} > > +JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_4} > > . elif ${_JAVA_HOME} == ${_JAVA_HOME_BLACKDOWN_LINUX_1_2} > > JAVA_PORT= ${_JAVA_PORT_BLACKDOWN_LINUX_1_2} > > . elif ${_JAVA_HOME} == ${_JAVA_HOME_BLACKDOWN_LINUX_1_3} > > @@ -191,7 +199,8 @@ > > defined(HAVE_JAVA_BLACKDOWN_LINUX_1_2) || \ > > defined(HAVE_JAVA_SUN_LINUX_1_2) > > USE_JAVA= 1.2 > > -. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) > > +. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) || \ > > + !defined(HAVE_JAVA_FREEBSD_1_4) > > USE_JAVA= 1.1 > > . else > > USE_JAVA= 1.4 > > @@ -203,7 +212,8 @@ > > defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ > > defined(HAVE_JAVA_IBM_LINUX_1_3) > > USE_JAVA= 1.3 > > -. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) > > +. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) && \ > > + !defined(HAVE_JAVA_FREEBSD_1_4) > > USE_JAVA= 1.2 > > . else > > USE_JAVA= 1.4 > > @@ -213,7 +223,8 @@ > > defined(HAVE_JAVA_SUN_LINUX_1_3) || \ > > defined(HAVE_JAVA_IBM_LINUX_1_3) || \ > > defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ > > - !defined(HAVE_JAVA_SUN_LINUX_1_4) > > + !defined(HAVE_JAVA_SUN_LINUX_1_4) || \ > > + !defined(HAVE_JAVA_FREEBSD_1_4) > > USE_JAVA= 1.3 > > . else > > USE_JAVA= 1.4 > > @@ -326,7 +337,13 @@ > > > > # If the port needs JDK 1.4, then there's currently only one choice, > > the Sun # JDK 1.4.x for Linux. > > -. elif ${USE_JAVA} == "1.4" > > +. elif ${USE_JAVA} == "1.4" && defined(HAVE_JAVA_FREEBSD_1_4) > > +JAVA_VENDOR= FreeBSD > > +JAVA_VER= 1.4.1 > > +JAVA_OS= FreeBSD > > +JAVA_HOME= ${_JAVA_HOME_FREEBSD_1_4} > > +JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_4} > > +. elif ${USE_JAVA} == "1.4" > > JAVA_VENDOR= Sun > > JAVA_VER= 1.4.1 > > JAVA_OS= Linux To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 2:34:53 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF3937B401 for ; Mon, 10 Mar 2003 02:34:52 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id A24CB43FCB for ; Mon, 10 Mar 2003 02:34:50 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18sKcB-0003lm-00; Mon, 10 Mar 2003 12:34:39 +0200 Date: Mon, 10 Mar 2003 12:34:39 +0200 From: Sheldon Hearn To: leafy Cc: freebsd-java@FreeBSD.ORG Subject: Re: ports/java/jdk14 and jni_md.h Message-ID: <20030310103439.GC12316@starjuice.net> Mail-Followup-To: leafy , freebsd-java@FreeBSD.ORG References: <20030310094649.GA12316@starjuice.net> <20030310095100.GA2149@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030310095100.GA2149@leafy.idv.tw> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On (2003/03/10 17:51), leafy wrote: > > a) jni.h should #include "bsd/jni_md.h", or > > b) jni.h should #include , or > > b) callers are expected to add .../jdk1.4.1/include/md to the include > > path when compiling, not just .../jdk1.4.1/include, or > > c) jni_md.h should be installed in .../jdk1.4.1/include, not > > .../jdk1.4.1/include/md. > > > > What do the experts say? > > > > Ciao, > > Sheldon. > Hi, > > Could you please explicitly add the bsd/ into the makefile? I think > resin and many other Java ports are in the same boat. If you mean ensure that .../bsd is included in the include path, that'll obviously work. My question is aimed more at finding out what the correct solution to the problem is. Your suggestion supports the second option b quoted above (sorry about that). Were you suggesting this as a test, or as "the correct approach"? I'm in favour of something that doesn't require modification of every consumer, unless those consumers are breaking a well-established rule. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 3:30: 7 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4DC637B404 for ; Mon, 10 Mar 2003 03:30:05 -0800 (PST) Received: from seed.net.tw (sn15.seed.net.tw [139.175.54.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1344E43FBF for ; Mon, 10 Mar 2003 03:30:05 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.133.130] (port=49154 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18sLTo-000GsQ-00 for freebsd-java@FreeBSD.ORG; Mon, 10 Mar 2003 19:30:04 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.8/8.12.8) with ESMTP id h2ABU3Kh001444 for ; Mon, 10 Mar 2003 19:30:03 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.8/8.12.8/Submit) id h2ABU3Jb001443 for freebsd-java@FreeBSD.ORG; Mon, 10 Mar 2003 19:30:03 +0800 (CST) Date: Mon, 10 Mar 2003 19:30:02 +0800 From: leafy To: freebsd-java@FreeBSD.ORG Subject: Re: ports/java/jdk14 and jni_md.h Message-ID: <20030310113002.GA597@leafy.idv.tw> Mail-Followup-To: freebsd-java@FreeBSD.ORG References: <20030310094649.GA12316@starjuice.net> <20030310095100.GA2149@leafy.idv.tw> <20030310103439.GC12316@starjuice.net> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20030310103439.GC12316@starjuice.net> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Mar 10, 2003 at 12:34:39PM +0200, Sheldon Hearn wrote: > Were you suggesting this as a test, or as "the correct approach"? I'm > in favour of something that doesn't require modification of every > consumer, unless those consumers are breaking a well-established rule. > > Ciao, > Sheldon. By looking at default linux-jdk installation, their jni.h has: /* jni_md.h contains the machine-dependent typedefs for jbyte, jint and jlong */ #include "jni_md.h" which is the same as our bsd port. So I assume this is the standard way of doing it (ie, to change your Makefile). Cheers, Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 4:28:23 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B4F637B401 for ; Mon, 10 Mar 2003 04:28:22 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79AE343F93 for ; Mon, 10 Mar 2003 04:28:20 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18sMO1-0003ut-00; Mon, 10 Mar 2003 14:28:09 +0200 Date: Mon, 10 Mar 2003 14:28:09 +0200 From: Sheldon Hearn To: leafy Cc: freebsd-java@FreeBSD.ORG Subject: Re: ports/java/jdk14 and jni_md.h Message-ID: <20030310122809.GG12316@starjuice.net> Mail-Followup-To: leafy , freebsd-java@FreeBSD.ORG References: <20030310094649.GA12316@starjuice.net> <20030310095100.GA2149@leafy.idv.tw> <20030310103439.GC12316@starjuice.net> <20030310113002.GA597@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030310113002.GA597@leafy.idv.tw> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On (2003/03/10 19:30), leafy wrote: > > Were you suggesting this as a test, or as "the correct approach"? I'm > > in favour of something that doesn't require modification of every > > consumer, unless those consumers are breaking a well-established rule. > > By looking at default linux-jdk installation, their jni.h has: > > /* jni_md.h contains the machine-dependent typedefs for jbyte, jint > and jlong */ > > #include "jni_md.h" > > which is the same as our bsd port. So I assume this is the standard > way of doing it (ie, to change your Makefile). Ah, so it really doesn't matter what I think of the approach, it's already well established. Great, I'll feed back to James, thanks! Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 4:47:15 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4BC337B401 for ; Mon, 10 Mar 2003 04:47:13 -0800 (PST) Received: from nils.bezeqint.net (nils.bezeqint.net [192.115.106.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2C4143FAF for ; Mon, 10 Mar 2003 04:47:12 -0800 (PST) (envelope-from michael@zend.com) Received: from mr2.bezeqint.net (pip-17.bezeqint.net [192.115.106.17]) by nils.bezeqint.net (Bezeq International SMTP out Mail Server) with ESMTP id E3E85342AE for ; Mon, 10 Mar 2003 14:43:54 +0200 (IST) Received: from mail.zend.com (bzq-117-235-230.cust.bezeqint.net [192.117.235.230]) by mr2.bezeqint.net (Mirapoint Messaging Server MOS 3.2.2-GA) with SMTP id ATY72036; Mon, 10 Mar 2003 14:47:07 +0200 (IST) Received: (qmail 18062 invoked from network); 10 Mar 2003 12:47:05 -0000 Received: from gibraltar.zend.office (10.1.2.137) by bzq-117-235-230.cust.bezeqint.net with SMTP; 10 Mar 2003 12:47:05 -0000 Content-Type: text/plain; charset="us-ascii" From: Michael Spector Organization: Zend Technologies LTD To: freebsd-java@freebsd.org Subject: How to install Date: Mon, 10 Mar 2003 14:48:08 +0200 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303101448.08050.michael@zend.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I have successfully compiled the JDK 1.4.1-p3 on FreeBSD 4.8-RC1. How do I install it, for example to: /usr/local/jdk1.4.1/ ? there's no an= y "make install". Directories that where created by the build are: =2E/bsd-i586/bin/ =2E/bsd-i586/bundles/ =2E/bsd-i586/classes/ =2E/bsd-i586/demo/ =2E/bsd-i586/gensrc/ =2E/bsd-i586/hotspot-i586/ =2E/bsd-i586/include/ =2E/bsd-i586/j2re-image/ =2E/bsd-i586/j2sdk-debug-image/ =2E/bsd-i586/j2sdk-image/ =2E/bsd-i586/lib/ =2E/bsd-i586/plugin/ =2E/bsd-i586/sanityCheckMessages.txt =2E/bsd-i586/sanityCheckWarnings.txt =2E/bsd-i586/source-bundles/ =2E/bsd-i586/tmp/ Why there's no jdk14 in ports? --=20 ---------------------------------------- With best regards, Michael Spector Tel: 972-(0)54840565 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 5:18:41 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7032937B401 for ; Mon, 10 Mar 2003 05:18:40 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BF4643FE9 for ; Mon, 10 Mar 2003 05:18:37 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18sNAm-0005KV-00; Mon, 10 Mar 2003 15:18:32 +0200 Date: Mon, 10 Mar 2003 15:18:32 +0200 From: Sheldon Hearn To: Michael Spector Cc: freebsd-java@freebsd.org Subject: Re: How to install Message-ID: <20030310131832.GJ12316@starjuice.net> Mail-Followup-To: Michael Spector , freebsd-java@freebsd.org References: <200303101448.08050.michael@zend.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303101448.08050.michael@zend.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On (2003/03/10 14:48), Michael Spector wrote: > I have successfully compiled the JDK 1.4.1-p3 on FreeBSD 4.8-RC1. How > do I install it, for example to: /usr/local/jdk1.4.1/ ? there's no any > "make install". Have a look in control/build/bsd-i586 (ort equivalent) for the images that have been built. For example, you could just: rm -rf /usr/local/jdk1.4.1 cp -r ./control/build/bsd-i586 /usr/local/jdk1.4.1 > Why there's no jdk14 in ports? There wasn't one a few days ago, but there is now. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 5:19: 0 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0100937B40B for ; Mon, 10 Mar 2003 05:18:57 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA83743F75 for ; Mon, 10 Mar 2003 05:18:53 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2AFUCmJ093206; Mon, 10 Mar 2003 15:30:13 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2ADPZsG087313; Mon, 10 Mar 2003 15:25:35 +0200 (EET) (envelope-from ml) Date: Mon, 10 Mar 2003 15:25:35 +0200 From: Alexey Zelkin To: Michael Spector Cc: freebsd-java@FreeBSD.ORG Subject: Re: How to install Message-ID: <20030310152535.A87292@phantom.cris.net> References: <200303101448.08050.michael@zend.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303101448.08050.michael@zend.com>; from michael@zend.com on Mon, Mar 10, 2003 at 02:48:08PM +0200 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, Re-cvsup your ports and use ports/java/jdk14 port. On Mon, Mar 10, 2003 at 02:48:08PM +0200, Michael Spector wrote: > > I have successfully compiled the JDK 1.4.1-p3 on FreeBSD 4.8-RC1. > How do I install it, for example to: /usr/local/jdk1.4.1/ ? there's no any "make install". > > Directories that where created by the build are: > > ./bsd-i586/bin/ > ./bsd-i586/bundles/ > ./bsd-i586/classes/ > ./bsd-i586/demo/ > ./bsd-i586/gensrc/ > ./bsd-i586/hotspot-i586/ > ./bsd-i586/include/ > ./bsd-i586/j2re-image/ > ./bsd-i586/j2sdk-debug-image/ > ./bsd-i586/j2sdk-image/ > ./bsd-i586/lib/ > ./bsd-i586/plugin/ > ./bsd-i586/sanityCheckMessages.txt > ./bsd-i586/sanityCheckWarnings.txt > ./bsd-i586/source-bundles/ > ./bsd-i586/tmp/ > > Why there's no jdk14 in ports? > > -- > ---------------------------------------- > With best regards, Michael Spector > Tel: 972-(0)54840565 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 5:20:55 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 617AF37B401 for ; Mon, 10 Mar 2003 05:20:54 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689C543F93 for ; Mon, 10 Mar 2003 05:20:51 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2AFWBmJ093293; Mon, 10 Mar 2003 15:32:11 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2ADRcYS087357; Mon, 10 Mar 2003 15:27:38 +0200 (EET) (envelope-from ml) Date: Mon, 10 Mar 2003 15:27:38 +0200 From: Alexey Zelkin To: Sheldon Hearn Cc: Michael Spector , freebsd-java@FreeBSD.ORG Subject: Re: How to install Message-ID: <20030310152738.B87292@phantom.cris.net> References: <200303101448.08050.michael@zend.com> <20030310131832.GJ12316@starjuice.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030310131832.GJ12316@starjuice.net>; from sheldonh@starjuice.net on Mon, Mar 10, 2003 at 03:18:32PM +0200 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, On Mon, Mar 10, 2003 at 03:18:32PM +0200, Sheldon Hearn wrote: > On (2003/03/10 14:48), Michael Spector wrote: > > > I have successfully compiled the JDK 1.4.1-p3 on FreeBSD 4.8-RC1. How > > do I install it, for example to: /usr/local/jdk1.4.1/ ? there's no any > > "make install". > > Have a look in control/build/bsd-i586 (ort equivalent) for the images > that have been built. > > For example, you could just: > > rm -rf /usr/local/jdk1.4.1 > cp -r ./control/build/bsd-i586 /usr/local/jdk1.4.1 Please don't if you don't want to waste 1.5 Gb of space :) To install something it's required to build images and copy bsd-i586/j2se-image/* to /usr/local/jdk1.4.1/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 6: 8:22 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A649437B401 for ; Mon, 10 Mar 2003 06:08:20 -0800 (PST) Received: from aaanet.ru (tmail.aaanet.ru [80.80.111.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFC3243FAF for ; Mon, 10 Mar 2003 06:08:19 -0800 (PST) (envelope-from J.Beam@redcross.or.kr) Received: from [80.80.102.142] (helo=efa.aaanet.ru) by aaanet.ru with smtp (Exim 3.36 #1) id 18reaB-000G6W-00; Sat, 08 Mar 2003 16:41:47 +0300 Received: from 61.11.78.173 ([61.11.78.173]) by efa.aaanet.ru (WinRoute 3.04d) with SMTP; Fri, 7 Mar 2003 12:54:45 +0300 Message-ID: <00007a755d42$0000144d$0000342a@laguna.balt.net> To: From: "County Info" Subject: Important Tax Information 24443 Date: Fri, 07 Mar 2003 01:47:45 -2000 MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org
Government Guarantees Security In Your Investment
Click Here For The Best = Kept Secret In America
The average return one m= akes is 15%-50% GUARANTEED by the Goverment, and this is on the low end. O= ur clients are making an incredible 30 to 50 times their money on the high= end. The banks have been doing this for over 100 years. Our company has d= eveloped a program that allows you to capitalize on these proven technique= s and strategies for the first time ever.
For= free information on "INSIDER SECRETS TO IN= VESTING IN GOVERNMENT SECURED TAX CERTIFICATES."
CLICK HERE.
Take Control of Your = Financial Future!
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 6:44:34 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9678037B401 for ; Mon, 10 Mar 2003 06:44:33 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id E29C043F93 for ; Mon, 10 Mar 2003 06:44:31 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18sOVa-000ABu-00; Mon, 10 Mar 2003 16:44:06 +0200 Date: Mon, 10 Mar 2003 16:44:06 +0200 From: Sheldon Hearn To: Alexey Zelkin Cc: Michael Spector , freebsd-java@FreeBSD.ORG Subject: Re: How to install Message-ID: <20030310144406.GM12316@starjuice.net> Mail-Followup-To: Alexey Zelkin , Michael Spector , freebsd-java@FreeBSD.ORG References: <200303101448.08050.michael@zend.com> <20030310131832.GJ12316@starjuice.net> <20030310152738.B87292@phantom.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030310152738.B87292@phantom.cris.net> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On (2003/03/10 15:27), Alexey Zelkin wrote: > > For example, you could just: > > > > rm -rf /usr/local/jdk1.4.1 > > cp -r ./control/build/bsd-i586 /usr/local/jdk1.4.1 > > Please don't if you don't want to waste 1.5 Gb of space :) To install > something it's required to build images and copy bsd-i586/j2se-image/* > to /usr/local/jdk1.4.1/ Yikes!!! Of course, that's what I meant. I left off a path element in my excitement over having something useful to say. :-) Sorry, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 6:53:47 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3260537B401 for ; Mon, 10 Mar 2003 06:53:46 -0800 (PST) Received: from mail1.uits.uconn.edu (mail1.uits.uconn.edu [137.99.25.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5907543F3F for ; Mon, 10 Mar 2003 06:53:45 -0800 (PST) (envelope-from matt@forsetti.com) Received: from [137.99.80.149] (d80h149.public.uconn.edu [137.99.80.149]) by mail1.uits.uconn.edu (8.11.6/8.11.6) with ESMTP id h2AErd808561 for ; Mon, 10 Mar 2003 09:53:39 -0500 Subject: jdk1.4.1 + mozilla From: Matt Smith To: freebsd-java@freebsd.org Content-Type: text/plain Organization: Message-Id: <1047308015.96199.4.camel@d80h149.public.uconn.edu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 10 Mar 2003 09:53:35 -0500 Content-Transfer-Encoding: 7bit X-MailScanner: Found to be clean X-MailScanner-SpamCheck: not spam, SpamAssassin (score=-0.3, required 6, AWL, SIGNATURE_SHORT_DENSE, SPAM_PHRASE_00_01) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Is there a way to use 1.4.1 for the mozilla java olugin, or do I still have to keep 1.3.1 for this? Thanks, -Matt -- Matt Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 6:56:54 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D4D37B404 for ; Mon, 10 Mar 2003 06:56:53 -0800 (PST) Received: from mail1.uits.uconn.edu (mail1.uits.uconn.edu [137.99.25.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 196EE43F3F for ; Mon, 10 Mar 2003 06:56:52 -0800 (PST) (envelope-from matt@forsetti.com) Received: from [137.99.80.149] (d80h149.public.uconn.edu [137.99.80.149]) by mail1.uits.uconn.edu (8.11.6/8.11.6) with ESMTP id h2AEum809363 for ; Mon, 10 Mar 2003 09:56:48 -0500 Subject: Re: jdk1.4.1 + mozilla From: Matt Smith To: freebsd-java@FreeBSD.ORG In-Reply-To: <1047308015.96199.4.camel@d80h149.public.uconn.edu> References: <1047308015.96199.4.camel@d80h149.public.uconn.edu> Content-Type: text/plain Organization: Message-Id: <1047308203.96199.6.camel@d80h149.public.uconn.edu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 10 Mar 2003 09:56:44 -0500 Content-Transfer-Encoding: 7bit X-MailScanner: Found to be clean X-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.3, required 6, AWL, IN_REP_TO, QUOTED_EMAIL_TEXT, REFERENCES, SIGNATURE_SHORT_DENSE, SPAM_PHRASE_00_01) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 2003-03-10 at 09:53, Matt Smith wrote: > Is there a way to use 1.4.1 for the mozilla java olugin, or do I still > have to keep 1.3.1 for this? > Thanks, > -Matt oops -- sed s/olugin/plugin/ Thanks! -- Matt Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 7:27:12 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2350E37B401 for ; Mon, 10 Mar 2003 07:27:10 -0800 (PST) Received: from out005.verizon.net (out005pub.verizon.net [206.46.170.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DA2543FAF for ; Mon, 10 Mar 2003 07:27:09 -0800 (PST) (envelope-from bleez@verizon.net) Received: from gravy.kishka.net ([151.197.249.111]) by out005.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030310152708.UMTT6910.out005.verizon.net@gravy.kishka.net>; Mon, 10 Mar 2003 09:27:08 -0600 Received: from localhost (localhost [127.0.0.1]) by gravy.kishka.net (8.12.8/8.12.8) with ESMTP id h2AFR7lt000574; Mon, 10 Mar 2003 10:27:07 -0500 (EST) (envelope-from bleez@verizon.net) Date: Mon, 10 Mar 2003 10:27:07 -0500 (EST) From: Bryan Liesner X-X-Sender: root@gravy.kishka.net To: Sheldon Hearn Cc: Alexey Zelkin , Michael Spector , freebsd-java@FreeBSD.ORG Subject: Re: How to install In-Reply-To: <20030310144406.GM12316@starjuice.net> Message-ID: <20030310102153.A567@gravy.kishka.net> References: <200303101448.08050.michael@zend.com> <20030310131832.GJ12316@starjuice.net> <20030310152738.B87292@phantom.cris.net> <20030310144406.GM12316@starjuice.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Authentication-Info: Submitted using SMTP AUTH at out005.verizon.net from [151.197.249.111] at Mon, 10 Mar 2003 09:27:08 -0600 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Mar 2003, Sheldon Hearn wrote: > On (2003/03/10 15:27), Alexey Zelkin wrote: > > > > For example, you could just: > > > > > > rm -rf /usr/local/jdk1.4.1 > > > cp -r ./control/build/bsd-i586 /usr/local/jdk1.4.1 > > > > Please don't if you don't want to waste 1.5 Gb of space :) To install > > something it's required to build images and copy bsd-i586/j2se-image/* > > to /usr/local/jdk1.4.1/ > > Yikes!!! > > Of course, that's what I meant. I left off a path element in my > excitement over having something useful to say. :-) It's kind of a moot point now that there's a port, but if you don't set the DEV_ONLY (I sould be close, it's from memory) env variable, the build will leave you with some nice tar and shell archive binary bundles suitable for installation in the bundles directory. -- ========================================================== = Bryan D. Liesner LeezSoft Communications, Inc. = = A subsidiary of LeezSoft Inc. = = bleez@verizon.net Home of the Gipper = ========================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 7:28:33 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF94137B401 for ; Mon, 10 Mar 2003 07:28:32 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id B355543FA3 for ; Mon, 10 Mar 2003 07:28:29 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2AHdTmJ099478; Mon, 10 Mar 2003 17:39:30 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2AFYrg9087938; Mon, 10 Mar 2003 17:34:53 +0200 (EET) (envelope-from ml) Date: Mon, 10 Mar 2003 17:34:53 +0200 From: Alexey Zelkin To: Matt Smith Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.4.1 + mozilla Message-ID: <20030310173453.A87900@phantom.cris.net> References: <1047308015.96199.4.camel@d80h149.public.uconn.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1047308015.96199.4.camel@d80h149.public.uconn.edu>; from matt@forsetti.com on Mon, Mar 10, 2003 at 09:53:35AM -0500 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org No. 1.4.1 plugin porting work is not yet done, as it was much lower priority than working jdk at all. Maybe in next patchset... On Mon, Mar 10, 2003 at 09:53:35AM -0500, Matt Smith wrote: > Is there a way to use 1.4.1 for the mozilla java olugin, or do I still > have to keep 1.3.1 for this? > Thanks, > -Matt > -- > Matt Smith > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 8:19:50 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B38237B401 for ; Mon, 10 Mar 2003 08:19:48 -0800 (PST) Received: from galilee.polands.org (new-24-208-57-240.new.rr.com [24.208.57.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68ECC43F3F for ; Mon, 10 Mar 2003 08:19:47 -0800 (PST) (envelope-from doug@polands.org) Received: from mydomain.com (samaria.polands.org [172.16.1.17]) by galilee.polands.org (8.12.6/8.12.6) with SMTP id h2AGJXDh047346; Mon, 10 Mar 2003 10:19:33 -0600 (CST) (envelope-from doug@polands.org) Received: from 63.104.35.130 (proxying for 164.5.45.79) (SquirrelMail authenticated user djp) by email.polands.org with HTTP; Mon, 10 Mar 2003 10:19:36 -0600 (CST) Message-ID: <50783.63.104.35.130.1047313176.squirrel@email.polands.org> Date: Mon, 10 Mar 2003 10:19:36 -0600 (CST) Subject: Re: Eclipse 2.1RC1 port From: "Doug Poland" To: In-Reply-To: <20030307173825.76a2bd30.ak03@gte.com> References: <20030307173825.76a2bd30.ak03@gte.com> X-Priority: 3 Importance: Normal Cc: , , X-Mailer: SquirrelMail (version 1.2.8) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Alexander Kabaev said: > The port is available for download here: > http://people.freebsd.org/~kan/eclipse.tar.gz > > I tested it only lightly, but it does look OK so far. > > What is missing: > - WITH_GTK/WITH_MOTIF knobs should be implemented. > - Default font settings migth be wrong and their interaction with > GTK2 > Xft is something that need to be cleared up. > - > Alexander, Thanks for the port! I've been using it since Saturday with no problems. I have noticed that the default fonts on my system are quite large. You mentioned there might be an issue in your post. I get many messages similar to this: ** (:38408): WARNING **: Couldn't load font "adobe-courier 12" falling back to "Sans 12" ** (:38408): WARNING **: Couldn't load font "misc-fixed Bold 14" falling back to "Sans Bold 14" Is this the font interaction issue that you're talking about? Since I'm not familiar with how fonts are mapped here, could someone explain or point me to some doc on how I can get my fonts to size correctly. Thanks for freeing me from the tyranny of Windows! -- Regards, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 10:41:42 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54AF337B401 for ; Mon, 10 Mar 2003 10:41:40 -0800 (PST) Received: from www.unsam.edu.ar (ns2.unsam.edu.ar [170.210.48.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BEAB43FAF for ; Mon, 10 Mar 2003 10:41:37 -0800 (PST) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by www.unsam.edu.ar (8.9.3/8.9.3) with ESMTP id PAA75481 for ; Mon, 10 Mar 2003 15:41:32 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.8/8.12.7) with ESMTP id h2AIgApf011458 for ; Mon, 10 Mar 2003 15:42:11 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.8/8.12.7/Submit) id h2AIg9TQ011457 for java@freebsd.org; Mon, 10 Mar 2003 15:42:09 -0300 (ART) Date: Mon, 10 Mar 2003 15:42:09 -0300 From: Fernan Aguero To: java@freebsd.org Subject: can several java distributions coexist? Message-ID: <20030310184209.GD53332@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi! I have for some time two jdk131 installations, the native FreeBSD one and the linux one. Question: since java applications are not 'branded' in the notion of brandelf, what is the use of having a linux-java? Just for linux-browsers to use it? Question 2: I am about to install and try newer versions of both Artemis and ACT (see /usr/ports/biology). However, a notice on the master site says: UNIX users should get Java version 1.1 from the Sun JDK 1.1 download page or the JDK 1.1 ports page. Newer versions of Java may be suitable depending on the platform. GNU/Linux users should install the Blackdown.org beta release of JRE version 1.4.1. The Sun versions of Java 1.3.1, 1.4.0 and 1.4.1 have various long-standing bugs (4533641, 4627564) which make them unusable. Now, what do they mean by 'UNIX users' and 'depending on the platform'. Of course I am asking this question to them, but would also like to hear opinions from the FreeBSD Java people as to how stable/buggy are the Sun versions on FreeBSD. Again, what if I just rm the FreeBSD native jdk and keep only the linux one. Would a java app find it? May I then try blackdown.org's linux-java as suggested by the developers of artemis and act? TIA, Fernan PS: please CC me in the reply, since I'm not subscribed to this list -- F e r n a n A g u e r o http://genoma.unsam.edu.ar/~fernan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 11: 1:40 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FAED37B40F for ; Mon, 10 Mar 2003 11:01:39 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B028843FE0 for ; Mon, 10 Mar 2003 11:01:37 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2AJ1bNS004660 for ; Mon, 10 Mar 2003 11:01:37 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2AJ1bp9004644 for java@freebsd.org; Mon, 10 Mar 2003 11:01:37 -0800 (PST) Date: Mon, 10 Mar 2003 11:01:37 -0800 (PST) Message-Id: <200303101901.h2AJ1bp9004644@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: java@FreeBSD.org Subject: Current problem reports assigned to you Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/02/25] java/35320 java linux-jdk-1.4 JVM fails when running Tomc o [2002/10/05] java/43724 java linux_base-7.1 + linux-sun-jdk-1.3.1.04 d 2 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/10/11] java/43925 java New port: net/beepcore-java (supersedes p 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 12:38: 7 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27C4237B404 for ; Mon, 10 Mar 2003 12:38:05 -0800 (PST) Received: from mail2.dbitech.ca (radius.wavefire.com [64.141.13.252]) by mx1.FreeBSD.org (Postfix) with SMTP id 0F10343F85 for ; Mon, 10 Mar 2003 12:38:04 -0800 (PST) (envelope-from archeron@wavefire.com) Received: (qmail 25569 invoked from network); 10 Mar 2003 21:00:23 -0000 Received: from archeron.wavefire.com (archeron@archero@64.141.15.246) by radius.wavefire.com with SMTP; 10 Mar 2003 21:00:23 -0000 Content-Type: text/plain; charset="us-ascii" From: Wade Klaver Reply-To: archeron@wavefire.com To: freebsd-java@freebsd.org Date: Mon, 10 Mar 2003 12:38:03 -0800 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200303101238.03214.archeron@wavefire.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I was trying to build jdk14 and got the error listed below. Any aditional required information can be supplied on request. [root@arch jdk14]# uname -a FreeBSD arch.wavefire.com 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #4: Mon Feb 24 16:52:36 PST 2003 root@arch.wavefire.com:/usr/obj/usr/src/sys/WORKSTATION-5.0-SMP i386 [root@arch jdk14]# pwd /usr/ports/java/jdk14 gmake[5]: Entering directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/java -classpath ../../../tools/strip StripProperties < ../../../../src/share/javac/com/sun/tools/javac/v8/resources/javac.properties > /usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/javac.properties Abort trap (core dumped) gmake[5]: *** [/usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/javac.properties] Error 134 gmake[5]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' gmake[4]: *** [all] Error 1 gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac' gmake[3]: *** [all] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java/javac' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. Thanks in advance. -W -- Wade Klaver Wavefire Technologies Corporation GPG Public Key at http://archeron.wavefire.com /"\ ASCII Ribbon Campaign . \ / - NO HTML/RTF in e-mail . X - NO Word docs in e-mail . / \ ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 12:40:22 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C0ED37B401 for ; Mon, 10 Mar 2003 12:40:20 -0800 (PST) Received: from mail2.dbitech.ca (radius.wavefire.com [64.141.13.252]) by mx1.FreeBSD.org (Postfix) with SMTP id 0A95D43FAF for ; Mon, 10 Mar 2003 12:40:19 -0800 (PST) (envelope-from archeron@wavefire.com) Received: (qmail 25615 invoked from network); 10 Mar 2003 21:02:39 -0000 Received: from archeron.wavefire.com (archeron@archero@64.141.15.246) by radius.wavefire.com with SMTP; 10 Mar 2003 21:02:38 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Wade Klaver Reply-To: archeron@wavefire.com To: freebsd-java@freebsd.org Date: Mon, 10 Mar 2003 12:40:17 -0800 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200303101238.03214.archeron@wavefire.com> Subject: JDK1.4 port fails to build Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I was trying to build jdk14 and got the error listed below. Any aditional required information can be supplied on request. [root@arch jdk14]# uname -a FreeBSD arch.wavefire.com 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #4: Mon Feb 24 16:52:36 PST 2003 root@arch.wavefire.com:/usr/obj/usr/src/sys/WORKSTATION-5.0-SMP i386 [root@arch jdk14]# pwd /usr/ports/java/jdk14 gmake[5]: Entering directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/java -classpath ../../../tools/strip StripProperties < ../../../../src/share/javac/com/sun/tools/javac/v8/resources/javac.properties > /usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/javac.properties Abort trap (core dumped) gmake[5]: *** [/usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/javac.properties] Error 134 gmake[5]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' gmake[4]: *** [all] Error 1 gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac' gmake[3]: *** [all] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java/javac' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. Thanks in advance. -W -- Wade Klaver Wavefire Technologies Corporation GPG Public Key at http://archeron.wavefire.com /"\ ASCII Ribbon Campaign . \ / - NO HTML/RTF in e-mail . X - NO Word docs in e-mail . / \ ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 13:50:36 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0B9037B404; Mon, 10 Mar 2003 13:50:35 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id E440D43FCB; Mon, 10 Mar 2003 13:50:34 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id A7B2866D16; Mon, 10 Mar 2003 13:50:34 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 8CB5863F; Mon, 10 Mar 2003 13:50:34 -0800 (PST) Date: Mon, 10 Mar 2003 13:50:34 -0800 From: Kris Kennaway To: java@FreeBSD.org, glewis@FreeBSD.org Subject: jdk12 package build fails too Message-ID: <20030310215034.GA75956@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://bento.freebsd.org/errorlogs/i386-4-latest/jdk-1.2.2p11.log Looks like it expects the jfc sources to be extracted, but there's no corresponding dependency to cause this. Kris --SUOF0GtieIMvvwua Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bQiqWry0BWjoQKURAp5BAJ9Stsdh6ZPIqgBe+SWuHLPX3vyX0wCfVMtB 0SkmYoVJfvhs5wMJS8d4PuI= =gy5/ -----END PGP SIGNATURE----- --SUOF0GtieIMvvwua-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 13:53: 7 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8783237B401; Mon, 10 Mar 2003 13:53:06 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3EB743F3F; Mon, 10 Mar 2003 13:53:05 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 8B66C66D16; Mon, 10 Mar 2003 13:53:05 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 7C6728F9; Mon, 10 Mar 2003 13:53:05 -0800 (PST) Date: Mon, 10 Mar 2003 13:53:05 -0800 From: Kris Kennaway To: java@FreeBSD.org, znerd@FreeBSD.org Subject: linux-sun-jdk14 build is interactive Message-ID: <20030310215305.GB75956@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nVMJ2NtxeReIH9PS" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --nVMJ2NtxeReIH9PS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable http://bento.freebsd.org/errorlogs/i386-4-latest/linux-sun-jdk-1.4.1_2.log Warning, 260MB log file full of: Do you agree to the above license terms? [yes or no]=20 Do you agree to the above license terms? [yes or no]=20 :-) Looks like the same problem as was fixed on some of the other jdk ports. This is necessary before we can build the jdk14 package. Kris --nVMJ2NtxeReIH9PS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bQlAWry0BWjoQKURAmDFAKCVFTB5pCKKB8GL9768sny+BrStnQCg2P1s /Q3R3YIWosLGGMY3AdMNgX8= =iYi5 -----END PGP SIGNATURE----- --nVMJ2NtxeReIH9PS-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 14: 4:29 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 826EB37B401 for ; Mon, 10 Mar 2003 14:04:27 -0800 (PST) Received: from tiscali.de (p62.246.28.156.tisdip.tiscali.de [62.246.28.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECA3643F85 for ; Mon, 10 Mar 2003 14:04:25 -0800 (PST) (envelope-from sblank@tiscali.de) Received: by ally.localnet.de (Postfix, from userid 1000) id 4A1C12C51; Mon, 10 Mar 2003 23:02:57 +0100 (CET) Date: Mon, 10 Mar 2003 23:02:57 +0100 From: Sascha Blank To: freebsd-java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <20030310220257.GA83638@ally.localnet.de> Mail-Followup-To: freebsd-java@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, On Sun, Mar 09, 2003 at 08:11:16PM -0800, Pat Lashley wrote: > >>>Recursively making sources all @ Sun Mar 9 17:38:41 PST 2003 ... > gmake[4]: Entering directory > `/d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/j2se/make/org > /omg/sources' > /d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/control/build/ > bsd-i586/bin/java -classpath > "/d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/control/build > /bsd-i586/classes:" com.sun.tools.corba.se.idl.toJavaPortable.Compile -td > "/d4/FreeBSDobj/.amd_mnt/orwell/host/d4/ports/java/jdk14/work/control/build > /bsd-i586/gensrc" -i > "../../../../src/share/classes/org/omg/PortableServer" -i > "../../../../src/share/classes/org/omg/PortableInterceptor" -corba 3.0 > -fall -pkgPrefix PortableServer org.omg > ../../../../src/share/classes/org/omg/PortableServer/poa.idl > com.sun.tools.corba.se.idl.InvalidArgument: Invalid argument: -td. > > Compiler Usage: > > java com.sun.tools.corba.se.idl.toJavaPortable.Compile [options] file> > > where is the name of ... I have the same problem: I have updated both my 4.8-STABLE system and my ports collection today, but building the native JDK 1.4p3 breaks down at exactly the same spot as your build. I have even tried to build the port twice because I wanted to rule out the possibility that I might have made something wrong the first time, but it didn't change anything. I am builing the port on an AMD Athlon/Thunderbird system with the optimization flags "-O -march=k6". As I have read that there are some problems with AMD K6 systems I wonder if this might be the problem. It's just a vague idea. Bye. -- Sascha Blank OpenPGP-Schlüssel: erhältlich sblank at tiscali dot de bei www.keyserver.net und use Disclaimer::Std; wwwkeys.pgp.net unter ID 0x4D067F0A Key fingerprint: 8F90 ADAB 3DA7 A527 DEB6 0B7F ECDD 6E2A 4D06 7F0A To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 15:25:21 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5713437B401 for ; Mon, 10 Mar 2003 15:25:19 -0800 (PST) Received: from misery.sdf.com (misery.sdf.com [207.200.153.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F40143F85 for ; Mon, 10 Mar 2003 15:25:17 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom (helo=localhost) by misery.sdf.com with local-esmtp (Exim 2.12 #1) id 18sV9I-000635-00; Mon, 10 Mar 2003 13:49:32 -0800 Date: Mon, 10 Mar 2003 13:49:20 -0800 (PST) From: Tom Samplonius To: Fernan Aguero Cc: java@freebsd.org Subject: Re: can several java distributions coexist? In-Reply-To: <20030310184209.GD53332@iib.unsam.edu.ar> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Mar 2003, Fernan Aguero wrote: > Hi! > > I have for some time two jdk131 installations, the native > FreeBSD one and the linux one. > > Question: since java applications are not 'branded' in the > notion of brandelf, what is the use of having a linux-java? > Just for linux-browsers to use it? The Linux jdk is used to bootstrap the FreeBSD one. > Question 2: I am about to install and try newer versions of > both Artemis and ACT (see /usr/ports/biology). However, a > notice on the master site says: > > UNIX users should get Java version 1.1 from the Sun JDK 1.1 > download page or the JDK 1.1 ports page. Newer versions of > Java may be suitable depending on the platform. > > GNU/Linux users should install the Blackdown.org beta > release of JRE version 1.4.1. The Sun versions of Java > 1.3.1, 1.4.0 and 1.4.1 have various long-standing bugs > (4533641, 4627564) which make them unusable. > > Now, what do they mean by 'UNIX users' and 'depending on the > platform'. Of course I am asking this question to them, but > would also like to hear opinions from the FreeBSD Java > people as to how stable/buggy are the Sun versions on > FreeBSD. > Again, what if I just rm the FreeBSD native jdk and keep > only the linux one. Would a java app find it? May I then try > blackdown.org's linux-java as suggested by the developers of > artemis and act? Well, java applications don't find the jdk, the jdk/jre must find the java application. You run Java applications like: java className So "java" should in your path, JAVA_HOME should point to the base jdk/jre directory, and CLASSPATH should contain required classes. "className" should be a class in your class path. FreeBSD uses "javavm" instead of "java". javavm is just a shell script which manages multiple jdk/jre installs. It sets JAVA_HOME depending on which one it runs. You don't need to use though. You can just add /usr/local/jdk14/bin to your PATH, and set JAVA_HOME to /usr/local/jdk14, and you are done (assuming Native jdk1.1.1). Many Java applications have shell scripts to start them. For instance, Tomcat comes with startup.sh that stuffs a bunch of things into CLASSPATH before executing "java". Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 15:27: 4 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A94037B401 for ; Mon, 10 Mar 2003 15:27:02 -0800 (PST) Received: from gate.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD4F543FA3 for ; Mon, 10 Mar 2003 15:27:01 -0800 (PST) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.13]) by gate.volant.org with asmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.33 #1) id 18sWfb-000EJz-00; Mon, 10 Mar 2003 15:26:59 -0800 Date: Mon, 10 Mar 2003 15:26:57 -0800 From: Pat Lashley To: Sascha Blank , freebsd-java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <868230000.1047338816@mccaffrey.phoenix.volant.org> In-Reply-To: <20030310220257.GA83638@ally.localnet.de> References: <20030310220257.GA83638@ally.localnet.de> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========2518250493==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========2518250493========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Monday, March 10, 2003 23:02:57 +0100 Sascha Blank = wrote: > I have the same problem: I have updated both my 4.8-STABLE system and my > ports collection today, but building the native JDK 1.4p3 breaks down at > exactly the same spot as your build. I have even tried to build the > port twice because I wanted to rule out the possibility that I might > have made something wrong the first time, but it didn't change anything. > > I am builing the port on an AMD Athlon/Thunderbird system with the > optimization flags "-O -march=3Dk6". As I have read that there are some > problems with AMD K6 systems I wonder if this might be the problem. > It's just a vague idea. Hmm. You may be onto something here. Both of the systems I've tried so far have been Athlons; and I have CPUTYPE=3Dk7 and CFLAGS=3D-g -O -pipe in my make.conf. I'd really like to hear from someone with an Athlon report that they've had no problems building with the CPUTYPE set appropriately... These are both older systems (550 & 700 MHz) and the build takes long enough that I don't want to wast the time necessary to try a build without the flag just to have it fail in the same place. -Pat --==========2518250493========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bR9BncYNbLD8wuMRAqNNAKCYWuCaoSmNEx3/h+YsQGbm0njfQwCgz4LF pwbULhiY8MCjlhVYyD4IKxU= =Mx07 -----END PGP SIGNATURE----- --==========2518250493==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 15:36:32 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A221737B401 for ; Mon, 10 Mar 2003 15:36:30 -0800 (PST) Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6282F43FA3 for ; Mon, 10 Mar 2003 15:36:29 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta07-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20030310233627.MHRT27269.mta07-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Mon, 10 Mar 2003 23:36:27 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: , Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Date: Mon, 10 Mar 2003 23:36:25 +0000 User-Agent: KMail/1.4.2 References: <200303071217.AA1322254492@mail.mstar2.net> In-Reply-To: <200303071217.AA1322254492@mail.mstar2.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303102336.27557.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 If I start the jvm with java -Djava.ext.dirs=3D/usr/local/jdk1.3.1/jre/lib/ext it works properly. Somewhere along the line it is not being set properly. At least now, I can use jsse in Konqueror :) On Friday 07 March 2003 8:17 pm, Guerry Semones wrote: > G'morning, > > We compiled FreeBSD JDK 1.3.1-p8 for HotSpot yesterday on FreeBSD > 4.8-RC. > > I loaded up the jre/lib/ext dir with the three JSSE 1.0.2 jar > files (for SSL support). Unfortunately, upon trying to compile my > classes, these jar files were not found. If I explicitly added > the three jar files to my classpath, all was happy, so I know it > is not an issue with the jar files. > > Also, 1.3.1-p6 (classic vm) which we have on another server loads > these classes just fine. > > Is there a known issue with 1.3.1-p8 not loading jar files from > jre/lib/ext, or some other hoop to jump through (perhaps due to > using hotspot?) > > Thanks, > > Guerry > > ----- > Guerry A. Semones > Tsunami Research > Senior Software Developer > guerry@tsunamiresearch.com > 314-336-2835 > "It is not only possible, it is essential." > - Dr. Strangelove > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bSF7ql7dp2cddmIRAiAkAJ4hbnfp2TnbzgDORdbwcnA87zngsgCfVWeY LNQEyyTNyGtrMRwTAZwB6RU=3D =3D3k3+ -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 17:31: 3 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6245F37B401 for ; Mon, 10 Mar 2003 17:31:01 -0800 (PST) Received: from mx0.gmx.net (mx0.gmx.de [213.165.64.100]) by mx1.FreeBSD.org (Postfix) with SMTP id E5CEA43F93 for ; Mon, 10 Mar 2003 17:30:59 -0800 (PST) (envelope-from JtRipper@gmx.net) Received: (qmail 17996 invoked by uid 0); 11 Mar 2003 01:30:59 -0000 Date: Tue, 11 Mar 2003 02:30:58 +0100 (MET) From: Andrew Mace To: freebsd-java@FreeBSD.org MIME-Version: 1.0 Subject: Installation problems with the jdk12 port X-Priority: 3 (Normal) X-Authenticated-Sender: #0000353824@gmx.net X-Authenticated-IP: [62.225.225.66] Message-ID: <12840.1047346258@www46.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, when installing the jdk12 port on FreeBSD 5.0-Release I get the following error: gmake[3]: *** [obj/i386/hprof_method.o] Error 1 gmake[3]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java/hprof' gmake[2]: *** [optimized] Error 2 gmake[2]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java/hprof' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java' gmake: *** [all] Error 1 *** Error code 2 Stop in /usr/ports/java/jdk12. Can anyone help me with this? Thanks Andrew -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 21:48:30 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E132A37B401 for ; Mon, 10 Mar 2003 21:48:28 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48C7243F85 for ; Mon, 10 Mar 2003 21:48:28 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr2.xmission.com with spam-scanned (Exim 3.35 #1) id 18scb5-0007mc-02 for freebsd-java@freebsd.org; Mon, 10 Mar 2003 22:46:43 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 18scaj-0007Ht-02; Mon, 10 Mar 2003 22:46:22 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2B5kHA73549; Tue, 11 Mar 2003 16:16:17 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Tue, 11 Mar 2003 16:16:17 +1030 From: Greg Lewis To: Andrew Mace Cc: freebsd-java@FreeBSD.ORG Subject: Re: Installation problems with the jdk12 port Message-ID: <20030311161616.A73524@misty.eyesbeyond.com> References: <12840.1047346258@www46.gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <12840.1047346258@www46.gmx.net>; from JtRipper@gmx.net on Tue, Mar 11, 2003 at 02:30:58AM +0100 X-Spam-Status: No, hits=-3.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Mar 11, 2003 at 02:30:58AM +0100, Andrew Mace wrote: > Hello, > when installing the jdk12 port on FreeBSD 5.0-Release I get the following > error: > gmake[3]: *** [obj/i386/hprof_method.o] Error 1 > gmake[3]: Leaving directory > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > gmake[2]: *** [optimized] Error 2 > gmake[2]: Leaving directory > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > gmake[1]: *** [all] Error 1 > gmake[1]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java' > gmake: *** [all] Error 1 > *** Error code 2 > > Stop in /usr/ports/java/jdk12. > > Can anyone help me with this? Not enough detail, you've cut off the actual error. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 22:28:24 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D8B237B405 for ; Mon, 10 Mar 2003 22:28:20 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C45B43FB1 for ; Mon, 10 Mar 2003 22:28:17 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2B8dhmJ047543; Tue, 11 Mar 2003 08:39:44 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2B6Yu0c092349; Tue, 11 Mar 2003 08:34:56 +0200 (EET) (envelope-from ml) Date: Tue, 11 Mar 2003 08:34:56 +0200 From: Alexey Zelkin To: Wade Klaver Cc: freebsd-java@FreeBSD.ORG Subject: Re: JDK1.4 port fails to build Message-ID: <20030311083456.A92326@phantom.cris.net> References: <200303101238.03214.archeron@wavefire.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303101238.03214.archeron@wavefire.com>; from archeron@wavefire.com on Mon, Mar 10, 2003 at 12:40:17PM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Plase post me (privately) backtrace from core file. On Mon, Mar 10, 2003 at 12:40:17PM -0800, Wade Klaver wrote: > Hello, > I was trying to build jdk14 and got the error listed below. Any aditional > required information can be supplied on request. > > [root@arch jdk14]# uname -a > FreeBSD arch.wavefire.com 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #4: Mon Feb 24 > 16:52:36 PST 2003 > root@arch.wavefire.com:/usr/obj/usr/src/sys/WORKSTATION-5.0-SMP i386 > > [root@arch jdk14]# pwd > /usr/ports/java/jdk14 > > gmake[5]: Entering directory > `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' > /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/java -classpath > ../../../tools/strip StripProperties < > ../../../../src/share/javac/com/sun/tools/javac/v8/resources/javac.properties > > > /usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/javac.properties > Abort trap (core dumped) > gmake[5]: *** > [/usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/javac.properties] > Error 134 > gmake[5]: Leaving directory > `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' > gmake[4]: *** [all] Error 1 > gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac' > gmake[3]: *** [all] Error 2 > gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java/javac' > gmake[2]: *** [all] Error 1 > gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java' > gmake[1]: *** [all] Error 1 > gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' > gmake: *** [j2se-build] Error 2 > *** Error code 2 > > Stop in /usr/ports/java/jdk14. > > > Thanks in advance. > -W > -- > Wade Klaver > Wavefire Technologies Corporation > GPG Public Key at http://archeron.wavefire.com > > /"\ ASCII Ribbon Campaign . > \ / - NO HTML/RTF in e-mail . > X - NO Word docs in e-mail . > / \ ----------------------------------------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 22:31:49 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E69CF37B401 for ; Mon, 10 Mar 2003 22:31:47 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D56243F93 for ; Mon, 10 Mar 2003 22:31:45 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2B8gfmJ047633; Tue, 11 Mar 2003 08:42:41 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2B6bmpW092382; Tue, 11 Mar 2003 08:37:48 +0200 (EET) (envelope-from ml) Date: Tue, 11 Mar 2003 08:37:48 +0200 From: Alexey Zelkin To: Dan Nelson Cc: Khairil Yusof , Greg Lewis , freebsd-java@FreeBSD.ORG Subject: Re: Error building jdk 1.4.1 on 5.0-p4 Message-ID: <20030311083748.B92326@phantom.cris.net> References: <1047079208.715.45.camel@daemon.home.net> <20030308172845.A61777@misty.eyesbeyond.com> <1047114557.32447.28.camel@daemon.home.net> <20030308120006.A75574@phantom.cris.net> <1047244951.683.8.camel@daemon.home.net> <20030309213852.GA47786@dan.emsphone.com> <20030310001637.B83993@phantom.cris.net> <20030309223942.GA75517@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030309223942.GA75517@dan.emsphone.com>; from dnelson@allantgroup.com on Sun, Mar 09, 2003 at 04:39:42PM -0600 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Mar 09, 2003 at 04:39:42PM -0600, Dan Nelson wrote: > In the last episode (Mar 10), Alexey Zelkin said: > > Can you please provide me details about hardware configuration > > of your machines guys ? > > Dual pIII/910, Asus CUV4XD motherboard, 1GB RAM. Well, problem is kind of localized :). It's SMP specific. Please post me backtraces from core files generated on these errors (in private mail) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 22:37: 5 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60CFB37B401 for ; Mon, 10 Mar 2003 22:37:03 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4F0D43FBD for ; Mon, 10 Mar 2003 22:36:59 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2B8mSmJ047814; Tue, 11 Mar 2003 08:48:28 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2B6hcO9092402; Tue, 11 Mar 2003 08:43:38 +0200 (EET) (envelope-from ml) Date: Tue, 11 Mar 2003 08:43:38 +0200 From: Alexey Zelkin To: Pat Lashley Cc: Sascha Blank , freebsd-java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <20030311084338.C92326@phantom.cris.net> References: <20030310220257.GA83638@ally.localnet.de> <868230000.1047338816@mccaffrey.phoenix.volant.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <868230000.1047338816@mccaffrey.phoenix.volant.org>; from patl+freebsd@volant.org on Mon, Mar 10, 2003 at 03:26:57PM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, Well. I don't think that it's related to make.conf's settings. I have intentionally avoided using them because of optimization issues were very hard to detect and since JVM is generating and executing machine code by itself -- it's very unthankful task to find gcc optimization problems. Also it's very important if we'll have one bonary distro which will be compiled with one set of setting for everybody. And we need to test it as much as possible. Right now HotSpot is compiles (mostly) using '-O3' and no -m flags. On Mon, Mar 10, 2003 at 03:26:57PM -0800, Pat Lashley wrote: > --On Monday, March 10, 2003 23:02:57 +0100 Sascha Blank > wrote: > > > I have the same problem: I have updated both my 4.8-STABLE system and my > > ports collection today, but building the native JDK 1.4p3 breaks down at > > exactly the same spot as your build. I have even tried to build the > > port twice because I wanted to rule out the possibility that I might > > have made something wrong the first time, but it didn't change anything. > > > > I am builing the port on an AMD Athlon/Thunderbird system with the > > optimization flags "-O -march=k6". As I have read that there are some > > problems with AMD K6 systems I wonder if this might be the problem. > > It's just a vague idea. > > Hmm. You may be onto something here. Both of the systems I've tried > so far have been Athlons; and I have CPUTYPE=k7 and CFLAGS=-g -O -pipe > in my make.conf. > > I'd really like to hear from someone with an Athlon report that they've > had no problems building with the CPUTYPE set appropriately... These > are both older systems (550 & 700 MHz) and the build takes long enough > that I don't want to wast the time necessary to try a build without > the flag just to have it fail in the same place. > > > > -Pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 10 22:44:56 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 155D037B401 for ; Mon, 10 Mar 2003 22:44:54 -0800 (PST) Received: from titan.kgt.co.jp (titan.kgt.co.jp [210.141.246.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E56D43F75 for ; Mon, 10 Mar 2003 22:44:53 -0800 (PST) (envelope-from haro@kgt.co.jp) Received: from navgw.tt.kgt.co.jp (navgw [210.141.246.71]) by titan.kgt.co.jp (Postfix) with ESMTP id F3ACE4A32D; Tue, 11 Mar 2003 15:44:51 +0900 (JST) Received: from tt.kgt.co.jp (pegasus [192.168.10.1]) by navgw.tt.kgt.co.jp (Postfix) with ESMTP id CFA4647711; Tue, 11 Mar 2003 15:44:51 +0900 (JST) Received: from localhost [192.168.17.108] by tt.kgt.co.jp with ESMTP (SMTPD32-7.12) id A703B8200E4; Tue, 11 Mar 2003 15:49:39 +0900 Date: Tue, 11 Mar 2003 15:44:18 +0900 (JST) Message-Id: <20030311.154418.74756297.haro@kgt.co.jp> To: antony.t.curtis@ntlworld.com, gsemones@treenleaf.com Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? From: Munehiro Matsuda In-Reply-To: <200303102336.27557.antony.t.curtis@ntlworld.com> References: <200303071217.AA1322254492@mail.mstar2.net> <200303102336.27557.antony.t.curtis@ntlworld.com> X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Tue_Mar_11_15:44:18_2003_031)--" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ----Next_Part(Tue_Mar_11_15:44:18_2003_031)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, Attached "untested" patch should fix the problem. Hope this helps, Haro From: Antony T Curtis Date: Mon, 10 Mar 2003 23:36:25 +0000 ::If I start the jvm with :: ::java -Djava.ext.dirs=/usr/local/jdk1.3.1/jre/lib/ext :: ::it works properly. Somewhere along the line it is not being set properly. :: ::At least now, I can use jsse in Konqueror :) :: ::On Friday 07 March 2003 8:17 pm, Guerry Semones wrote: ::> G'morning, ::> ::> We compiled FreeBSD JDK 1.3.1-p8 for HotSpot yesterday on FreeBSD ::> 4.8-RC. ::> ::> I loaded up the jre/lib/ext dir with the three JSSE 1.0.2 jar ::> files (for SSL support). Unfortunately, upon trying to compile my ::> classes, these jar files were not found. If I explicitly added ::> the three jar files to my classpath, all was happy, so I know it ::> is not an issue with the jar files. ::> ::> Also, 1.3.1-p6 (classic vm) which we have on another server loads ::> these classes just fine. ::> ::> Is there a known issue with 1.3.1-p8 not loading jar files from ::> jre/lib/ext, or some other hoop to jump through (perhaps due to ::> using hotspot?) ::> ::> Thanks, ::> ::> Guerry =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kgt.co.jp ----Next_Part(Tue_Mar_11_15:44:18_2003_031)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-hotspot-os_linux.cpp" --- ../../hotspot1.3.1/src/os/linux/vm/os_linux.cpp.org Thu Mar 6 09:34:47 2003 +++ ../../hotspot1.3.1/src/os/linux/vm/os_linux.cpp Tue Mar 11 09:23:17 2003 @@ -359,6 +359,7 @@ #define I18N_JAR "/lib/i18n.jar" #define SUNRSASIGN_JAR "/lib/sunrsasign.jar" #define CLASSES_DIR "/classes" +#define EXTENSIONS_DIR "/lib/ext" #define DEFAULT_LD_LIBRARY_PATH "/usr/lib" /* See ld.so.1(1) */ char *v; /* tmp var */ @@ -431,7 +432,7 @@ char * buf; // buf = malloc(strlen(sprops.java_home) + sizeof(MAXNAMLEN)); buf = malloc(MAXNAMLEN); - snprintf(buf, MAXNAMLEN, "%s", sprops.java_home); + snprintf(buf, MAXNAMLEN, "%s" EXTENSIONS_DIR, sprops.java_home); sprops.ext_dirs = buf; } } ----Next_Part(Tue_Mar_11_15:44:18_2003_031)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 0: 0:30 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A0DC37B401 for ; Tue, 11 Mar 2003 00:00:27 -0800 (PST) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93FCD43FB1 for ; Tue, 11 Mar 2003 00:00:25 -0800 (PST) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [127.0.0.1]) by smtp.infracaninophile.co.uk (8.12.8/8.12.8) with ESMTP id h2B80JJ6000595 for ; Tue, 11 Mar 2003 08:00:19 GMT (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.8/8.12.8/Submit) id h2B80JPt000594 for freebsd-java@FreeBSD.ORG; Tue, 11 Mar 2003 08:00:19 GMT Date: Tue, 11 Mar 2003 08:00:19 +0000 From: Matthew Seaman To: freebsd-java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <20030311080019.GA171@happy-idiot-talk.infracaninophi> Mail-Followup-To: freebsd-java@FreeBSD.ORG References: <20030310220257.GA83638@ally.localnet.de> <868230000.1047338816@mccaffrey.phoenix.volant.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <868230000.1047338816@mccaffrey.phoenix.volant.org> User-Agent: Mutt/1.5.3i X-Spam-Status: No, hits=-38.8 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_MUTT version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 10, 2003 at 03:26:57PM -0800, Pat Lashley wrote: > --On Monday, March 10, 2003 23:02:57 +0100 Sascha Blank =20 > wrote: >=20 > >I have the same problem: I have updated both my 4.8-STABLE system and my > >ports collection today, but building the native JDK 1.4p3 breaks down at > >exactly the same spot as your build. I have even tried to build the > >port twice because I wanted to rule out the possibility that I might > >have made something wrong the first time, but it didn't change anything. > > > >I am builing the port on an AMD Athlon/Thunderbird system with the > >optimization flags "-O -march=3Dk6". As I have read that there are some > >problems with AMD K6 systems I wonder if this might be the problem. > >It's just a vague idea. >=20 > Hmm. You may be onto something here. Both of the systems I've tried > so far have been Athlons; and I have CPUTYPE=3Dk7 and CFLAGS=3D-g -O -pipe > in my make.conf. >=20 > I'd really like to hear from someone with an Athlon report that they've > had no problems building with the CPUTYPE set appropriately... These > are both older systems (550 & 700 MHz) and the build takes long enough > that I don't want to wast the time necessary to try a build without > the flag just to have it fail in the same place. As you wish. My system: % uname -a FreeBSD happy-idiot-talk.infracaninophile.co.uk 4.8-RC FreeBSD 4.8-RC #= 36: Mon Mar 3 20:40:03 GMT 2003 root@happy-idiot-talk.infracaninophile= =2Eco.uk:/usr/obj/usr/src/sys/HAPPY-IDIOT-TALK i386 % grep -A3 CPU /var/run/dmesg.boot CPU: AMD Athlon(TM) XP1600+ (1400.06-MHz 686-class CPU) Origin =3D "AuthenticAMD" Id =3D 0x662 Stepping =3D 2 Features=3D0x383f9ff AMD Features=3D0xc0480000 =20 using these make.conf settings: CPUTYPE=3Dk7 CFLAGS=3D -O -pipe CXXFLAGS+=3D -fmemoize-lookups -fsave-memoized compiled the jdk without problems: % java -version java version "1.4.1-p3" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-p3-root_0= 7_mar_2003_13_21) Java HotSpot(TM) Client VM (build 1.4.1-p3-root_07_mar_2003_13_21, mixe= d mode) Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+bZeTdtESqEQa7a0RAsI7AJwODm1d072TkDEvdteqGgEfJxLm8wCfQMoA pGGV9QLn6CHyFLjMdKMN37g= =sRVD -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 0:34:21 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 405E037B401; Tue, 11 Mar 2003 00:34:19 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13E4243FAF; Tue, 11 Mar 2003 00:34:16 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2BAjimJ053996; Tue, 11 Mar 2003 10:45:45 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2B8etFn092925; Tue, 11 Mar 2003 10:40:55 +0200 (EET) (envelope-from ml) Date: Tue, 11 Mar 2003 10:40:54 +0200 From: Alexey Zelkin To: Kris Kennaway Cc: java@FreeBSD.ORG, znerd@FreeBSD.ORG Subject: Re: linux-sun-jdk14 build is interactive Message-ID: <20030311104054.A92908@phantom.cris.net> References: <20030310215305.GB75956@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030310215305.GB75956@rot13.obsecurity.org>; from kris@obsecurity.org on Mon, Mar 10, 2003 at 01:53:05PM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Mar 10, 2003 at 01:53:05PM -0800, Kris Kennaway wrote: > http://bento.freebsd.org/errorlogs/i386-4-latest/linux-sun-jdk-1.4.1_2.log > > Warning, 260MB log file full of: > > Do you agree to the above license terms? [yes or no] > > Do you agree to the above license terms? [yes or no] > > :-) > > Looks like the same problem as was fixed on some of the other jdk > ports. This is necessary before we can build the jdk14 package. > > Kris I think you need something like that. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/java/linux-sun-jdk14/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 7 Mar 2003 06:04:43 -0000 1.26 +++ Makefile 11 Mar 2003 09:10:09 -0000 @@ -23,10 +23,6 @@ NO_CDROM= "License does not allow distribution with fee" RESTRICTED= "Redistribution of repackaged binaries not permitted" -EXTRACT_CMD= # empty -EXTRACT_BEFORE_ARGS= # empty -EXTRACT_AFTER_ARGS= # empty - WRKSRC= ${WRKDIR}/j2sdk${DL_JDK_VERSION} PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} PORTVERSION=${PORTVERSION} @@ -49,8 +45,12 @@ pre-everything:: @${CAT} ${PKGMESSAGE} -post-fetch: - @${CHMOD} +x ${DISTDIR}/${DISTFILES} +do-extract: + @${MKDIR} ${WRKDIR} + @cd ${WRKDIR} \ + && ${TAIL} +276 ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} > ${WRKDIR}/install.sfx \ + && ${CHMOD} +x ${WRKDIR}/install.sfx \ + && ${WRKDIR}/install.sfx > /dev/null post-patch: ${FIND} ${WRKSRC} -name '*.orig' -print | xargs ${RM} -f To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 0:45:59 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7518237B401 for ; Tue, 11 Mar 2003 00:45:58 -0800 (PST) Received: from dns.askey.com.tw (130.23.30.61.isp.tfn.net.tw [61.30.23.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EC5143F3F for ; Tue, 11 Mar 2003 00:45:52 -0800 (PST) (envelope-from yc.chang@askey.com.tw) Received: from e500.askey.com.tw (tpns02 [10.1.1.8]) by dns.askey.com.tw (8.11.6+Sun/8.11.6) with SMTP id h2B8gFG24366 for ; Tue, 11 Mar 2003 16:42:16 +0800 (CST) Received: from unknown(10.1.1.8) by e500.askey.com.tw via csmap id 8240; Tue, 11 Mar 2003 16:46:57 +0800 (CST) Sensitivity: Subject: Enquiry about Java tutorial on FreeBSD To: freebsd-java@freebsd.org From: yc.chang@askey.com.tw Date: Tue, 11 Mar 2003 16:49:36 +0800 Message-ID: X-MIMETrack: Serialize by Router on tpns02/askey_notes(Release 5.0.9 |November 16, 2001) at 2003/03/11 04:44:21 PM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear Sir/Madam I would like to see any tutorial about Java development on/for FreeBSD. For this reason, please kindly provide me any related documentation. By the way, do you have any active Java project in your team right now? Thanks a lot! Regards, Y.C. Chang To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 0:50:56 2003 Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D9C437B404 for ; Tue, 11 Mar 2003 00:50:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A5A743FBD for ; Tue, 11 Mar 2003 00:50:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2B8oBNS027100 for ; Tue, 11 Mar 2003 00:50:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2B8oBHB027099; Tue, 11 Mar 2003 00:50:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C0CA37B401 for ; Tue, 11 Mar 2003 00:50:02 -0800 (PST) Received: from iumail01.i-u.de (1a0dc.unt0.etta.i-u.de [217.7.26.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6155643FAF for ; Tue, 11 Mar 2003 00:49:52 -0800 (PST) (envelope-from root@iumail01.i-u.de) Received: from iumail01.i-u.de (localhost.stu.i-u.de [127.0.0.1]) by iumail01.i-u.de (8.12.6/8.12.6) with ESMTP id h2B8npsG000579 for ; Tue, 11 Mar 2003 09:49:51 +0100 (CET) (envelope-from root@iumail01.i-u.de) Received: (from root@localhost) by iumail01.i-u.de (8.12.6/8.12.6/Submit) id h2B8npho000578; Tue, 11 Mar 2003 09:49:51 +0100 (CET) Message-Id: <200303110849.h2B8npho000578@iumail01.i-u.de> Date: Tue, 11 Mar 2003 09:49:51 +0100 (CET) From: Angel Todorov Reply-To: Angel Todorov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: java/49100: New Port: NetBeans - a powerful IDE written in Java Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49100 >Category: java >Synopsis: New Port: NetBeans - a powerful IDE written in Java >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Mar 11 00:50:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Angel Todorov >Release: FreeBSD 5.0-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD pop.i-u.de 5.0-RELEASE-p4 FreeBSD 5.0-RELEASE-p4 #1: Mon Mar 10 17:31:28 CET 2003 root@att.stu.i-u.de:/usr/src/sys/i386/compile/ATT i386 >Description: New Port: the NetBeans IDE >How-To-Repeat: >Fix: New Port: the NetBeans IDE begin 644 netbeans.tar M;F5T8F5A;G,O```````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M`````````````#`P-#`W-34`,#`P,#`P,``P,#`P,#`P`#`P,#`P,#`P,#`P M`#`W-C,S,C$P-C$P`#`Q,30W-@`@-0`````````````````````````````` M```````````````````````````````````````````````````````````` M``````````````````````````````````````````!U65S"@I54T5$7TI$2ST):F1K,2XS M+C$*2D1+7U!/4E1?3D%-13T):F1K,3,*4E5.7T1%4$5.1%,]"21[3$]#04Q" M05-%?2\D>U53141?2D1+?2]B:6XO:F%V83HD>U!/4E131$E2?2]J879A+R1[ M2D1+7U!/4E1?3D%-17T*"D1/5TY,3T%$7U523#\]"6AT='`Z+R]W=WT585%)!0U1?4U5&6'TI"DE'3D]213U9;W4@ M;75S="!M86YU86QL>2!F971C:"!T:&4@3F5T0F5A;G,@87)C:&EV92`D>T1) M4U1.04U%?21[15A44D%#5%]35498?2!FU!+1TY!345]"@E`)'M#4'T@+5(@)'M74DM$25)]+RH@)'M,3T-!3$)! M4T5]+R1[4$M'3D%-17TO"@E`)'M237T@)'M,3T-!3$)!4T5]+R1[4$M'3D%- M17TO)'M03U)43D%-17TO8FEN+VED92YC9F<*"BYI;F-L=61E(#QB&5C=71I;VX@F%R9',L(&%N9"!C;V1E(`IG96YE0IN971B96%N&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S M+W1O;6-A="UD;V-S+W-S;"UH;W=T;RYH=&UL"FYE=&)E86YS+3,N-"XQ+VYE M=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+W!A8VMA9V4M9G)A M;64N:'1M;`IN971B96%N2YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O M;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+VIS<"]T86=E M>'0O9&]C+69I;&5S+TET97)A=&EO;E1A9U!R;W1O8V]L+F=I9@IN971B96%N M51A9U!R;W1O8V]L+F=I9@IN971B96%N"]S97)V;&5T+VIS<"]T M86=E>'0O8VQA"]S97)V;&5T+VIS<"]T86=E>'0O8VQA4-A=&-H1FEN86QL>2YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E M86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+VIS<"]T86=E>'0O8VQA"]S97)V;&5T M+VIS<"]T86=E>'0O8VQA"]S M97)V;&5T+VIS<"]T86=E>'0O8VQA"]S97)V;&5T+VIS M<"]T86=E>'0O8VQA"]S97)V;&5T+VIS<"]T86=E>'0O8VQA4-A M=&-H1FEN86QL>2YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A M=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E'0O5&%G3&EB4EN M9F\N:'1M;`IN971B96%N'0O5&%G17AT"]S97)V;&5T+VIS<"]T86=E>'0O5&%G1&%T M82YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A M<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+VIS<"]T86=E>'0O M0F]D>51A9RYH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P M-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+VIS<"]P M86-K86=E+7-U;6UA"]S97)V;&5T+VIS<"]C;&%S"]S97)V M;&5T+VIS<"]C;&%S"]S97)V;&5T M+VIS<"]086=E0V]N=&5X="YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS M+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+VIS<"]*&-E<'1I;VXN:'1M;`IN M971B96%N2YH=&UL"FYE=&)E M86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD M;V-S+W-E"]S97)V;&5T+VAT='`O8VQA'0N:'1M;`IN971B96%N"]S97)V;&5T+VAT='`O8VQA"]S97)V;&5T+VAT='`O8VQA"]S97)V;&5T+VAT='`O8VQA"]S97)V;&5T+VAT='`O2'1T<%-E"]S97)V;&5T+VAT M='`O2'1T<%-E"]S97)V;&5T+VAT='`O2'1T<%-E"]S97)V;&5T+VAT='`O2'1T<%-E"]S97)V;&5T+VAT='`O0V]O:VEE M+FAT;6P*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P M<',O=&]M8V%T+61O8W,O"]S97)V;&5T+V-L87-S M+75S92]5;F%V86EL86)L945X8V5P=&EO;BYH=&UL"FYE=&)E86YS+3,N-"XQ M+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T+V-L87-S+75S92]397)V;&5T4F5Q M=65S="YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W M96)A<'!S+W1O;6-A="UD;V-S+W-E"]S97)V;&5T M+V-L87-S+75S92]397)V;&5T17AC97!T:6]N+FAT;6P*;F5T8F5A;G,M,RXT M+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O=&]M8V%T+61O8W,O"]S97)V;&5T+V-L87-S+75S92]397)V;&5T0V]N=&5X M=$QI"]S97)V M;&5T+V-L87-S+75S92]397)V;&5T0V]N=&5X=$5V96YT+FAT;6P*;F5T8F5A M;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O=&]M8V%T+61O M8W,O"]S97)V;&5T+V-L87-S+75S92]397)V;&5T M0V]N=&5X=$%T=')I8G5T94QI"]S97)V;&5T+V-L87-S+75S92]397)V;&5T0V]N=&5X=$%T M=')I8G5T945V96YT+FAT;6P*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M M8V%T-#`T+W=E8F%P<',O=&]M8V%T+61O8W,O"]S M97)V;&5T+V-L87-S+75S92]397)V;&5T0V]N=&5X="YH=&UL"FYE=&)E86YS M+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S M+W-E"]S M97)V;&5T+V-L87-S+75S92]&:6QT97)#;VYF:6"]S97)V;&5T+V-L87-S M+75S92]&:6QT97(N:'1M;`IN971B96%N&-E<'1I;VXN:'1M;`IN971B96%N"]S97)V;&5T+U-E"]S97)V;&5T+U-E"]S97)V;&5T+U-E&-E<'1I;VXN:'1M;`IN M971B96%N'1,:7-T96YE"]S97)V;&5T+U-E'1!='1R:6)U=&5%=F5N="YH=&UL"FYE=&)E86YS+3,N M-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+W-E M"]S97)V;&5T+U-E"]S97)V;&5T+T9I;'1E"]S97)V;&5T+T9I;'1E&UL+G1X=`IN971B96%N&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O M;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S+V%P<&1E=B]S86UP;&4O'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T M+W=E8F%P<',O=&]M8V%T+61O8W,O5T5"+4E.1B]W96(N>&UL"FYE=&)E86YS M+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+W1O;6-A="UD;V-S M+U)53DY)3D&UL"FYE=&)E86YS+3,N-"XQ M+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+V5X86UP;&5S+W-E&%M<&QE&%M<&QE&%M<&QE'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O M=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O:G-P+W-I;7!L971A9R]F;V\N M:G-P"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S M+V5X86UP;&5S+VIS<"]S:6UP;&5T86'0* M;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O97AA M;7!L97,O:G-P+W-E&%M<&QE&%M<&QE"YJ&%M<&QE M&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P M<',O97AA;7!L97,O:G-P+VIS<'1O&%M<&QE'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O:G-P+VEN8VQU9&4O:6YC;'5D92YJ M&%M<&QE&%M<&QE&%M<&QE'0*;F5T8F5A;G,M,RXT M+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O:G-P+V5R M&%M<&QE M&%M<&QE&%M<&QE"]C:&5C:W)E&%M M<&QE&%M<&QE'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P M<',O97AA;7!L97,O:G-P+V-A;"]C86PQ+FIS<`IN971B96%N&%M<&QE'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T M+W=E8F%P<',O97AA;7!L97,O:G-P+V-A;"]*'0*;F5T M8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L M97,O:G-P+V-A;"]%;G1R>2YT>'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O M=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O:G-P+V-A;"]%;G1R:65S+G1X M=`IN971B96%N&%M<&QE&%M<&QE&%M<&QE&%M<&QE+71A9VQI8BYT;&0*;F5T M8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L M97,O5T5"+4E.1B]J&%M<&QE&%M<&QE&%M<&QE M&%M<&QE&%M<&QE'1,:7-T96YE&%M<&QE&%M<&QE&%M M<&QE&%M<&QE1FEL=&5R+F-L M87-S"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S M+V5X86UP;&5S+U=%0BU)3D8O8VQA&%M<&QE&%M<&QE&%M<&QE'1R84EN9F\N8VQA&%M M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE M&%M<&QE&%M<&QE+FIA=F$*;F5T8F5A;G,M,RXT+C$O;F5T8F5A M;G,O=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O5T5"+4E.1B]C;&%S&%M<&QE+F-L87-S"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS M+W1O;6-A=#0P-"]W96)A<'!S+V5X86UP;&5S+U=%0BU)3D8O8VQA&%M<&QE&%M<&QE+FIA=F$*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O M=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O5T5"+4E.1B]C;&%S&%M<&QE+FIA=F$*;F5T8F5A;G,M,RXT+C$O M;F5T8F5A;G,O=&]M8V%T-#`T+W=E8F%P<',O97AA;7!L97,O5T5"+4E.1B]C M;&%S&%M<&QE+F-L87-S"FYE=&)E86YS+3,N M-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]W96)A<'!S+V5X86UP;&5S+U=%0BU) M3D8O8VQA&%M<&QE&%M<&QE&%M<&QE&%M<&QE0IN971B96%N6]T92YJ87(*;F5T8F5A;G,M M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+W-E'`M,2XR+FIA M<@IN971B96%N0IN971B96%N2YJ87(*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T M+VQI8B]J87-P97(M&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]C M;VYF+W-E'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+U)%3$5! M4T4M4$Q!3BTT+C`N='AT"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A M=#0P-"]214Q%05-%+5!,04XM-"XP+C$N='AT"FYE=&)E86YS+3,N-"XQ+VYE M=&)E86YS+W1O;6-A=#0P-"]214Q%05-%+4Y/5$53+30N,"YT>'0*;F5T8F5A M;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+U)%3$5!4T4M3D]415,M-"XP M+C0N='AT"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]214Q% M05-%+4Y/5$53+30N,"XR+G1X=`IN971B96%N'0*;F5T8F5A;G,M M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+U)%3$5!4T4M3D]415,M-"XP+C(M M0C$N='AT"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W1O;6-A=#0P-"]214Q% M05-%+4Y/5$53+30N,"XQ+G1X=`IN971B96%N'0*;F5T8F5A;G,M M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+U)%3$5!4T4M3D]415,M-"XP+5)# M,BYT>'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O=&]M8V%T-#`T+U)%3$5! M4T4M3D]415,M-"XP+5)#,2YT>'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O M=&]M8V%T-#`T+U)%3$5!4T4M3D]415,M-"XP+4(W+G1X=`IN971B96%N'0*;F5T8F5A;G,M,RXT+C$O M;F5T8F5A;G,O7-T96TO4&%R&UL+6%P:7,N:F-B M"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W-Y7-T96TO36]D=6QE&UL+GAM;`IN971B M96%N7-T96TO36]D=6QE&UL+71O M;VQS+GAM;`IN971B96%N7-T96TO36]D=6QE M&UL+71A>"YX;6P*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O&UL+65D:71O&UL+6-O&UL"FYE=&)E M86YS+3,N-"XQ+VYE=&)E86YS+W-Y7-T96TO36]D=6QE7-T96TO36]D=6QE M7-T96TO36]D=6QE7-T96TO36]D=6QE M7-T96TO36]D=6QE7-T96TO M36]D=6QE7-T96TO36]D=6QE7-T96TO36]D=6QE7-T96TO36]D=6QE&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W-Y7-T96TO36]D=6QE7-T M96TO36]D=6QE7-T96TO36]D=6QE7-T96TO36]D M=6QE7-T96TO36]D=6QE&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E M86YS+W-Y7-T96TO36]D=6QE7-T96TO36]D=6QE"YX;6P*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O&UL"FYE=&)E M86YS+3,N-"XQ+VYE=&)E86YS+W-Y&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W-Y M7-T96TO36]D=6QE7-T96TO36]D=6QE7-T96TO36]D=6QE M&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W-Y&UL"FYE=&)E86YS+3,N-"XQ+VYE M=&)E86YS+W-Y7-T96TO36]D M=6QE7-T96TO36]D=6QE7-T96TO36]D=6QE7-T96TO36]D M=6QE&UL"FYE=&)E M86YS+3,N-"XQ+VYE=&)E86YS+W-YGHN>&UL"FYE M=&)E86YS+3,N-"XQ+VYE=&)E86YS+W-Y&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+W-Y&UL"FYE=&)E86YS M+3,N-"XQ+VYE=&)E86YS+W-Y7-T96TO36]D=6QE M&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E M86YS+W-Y'0*;F5T8F5A;G,M,RXT+C$O;F5T8F5A M;G,O&%M<&QE&%M<&QE M&%M<&QE&%M<&QE&UL+71R964M961I="YJ M87(*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O;6]D=6QE&UL+71E>'0M M961I="YJ87(*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O;6]D=6QE'0N:F%R"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+VUO9'5L97,O M'0O=&]M8V%T-#`M:61E+FIA M<@IN971B96%N'0O;F(M961I=&]R+FIA<@IN971B96%N'0O86YT+6]P=&EO;F%L+3$N-2XQ M+FIA<@IN971B96%N"YJ87(*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O;6]D=6QEGHN:F%R"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+VUO9'5L97,O8FEN+V5X M=&)R;W=S97(N9&QL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+VUO9'5L97,O M8F5A;G,N:F%R"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+VUO9'5L97,O875T M;W5P9&%T92YJ87(*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O;6]D=6QE&%L86XN:F%R"FYE=&)E86YS+3,N M-"XQ+VYE=&)E86YS+VUO9'5L97,O875T;VQO860O=F-S8V]R92YJ87(*;F5T M8F5A;G,M,RXT+C$O;F5T8F5A;G,O;6]D=6QE"YJ87(*;F5T8F5A;G,M,RXT+C$O M;F5T8F5A;G,O;6]D=6QE'0O=&%X+FIA<@IN971B96%N'0O'0O&5C=71I;VXN:F%R"FYE=&)E86YS+3,N-"XQ M+VYE=&)E86YS+VQI8B]C;W)E+6-O;7!I;&5R+FIA<@IN971B96%N71H;VXM M;&EC96YS92YH=&UL"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+V1O8W,O9'EN M86UI8RUJ879A+6QI8V5N&4*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O8FEN+W)U;FED96]S,BYC M;60*;F5T8F5A;G,M,RXT+C$O;F5T8F5A;G,O8FEN+W)U;FED96]P96YV;7,N M8V]M"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+V)I;B]R=6YI9&5?97AE7V1E M9F%U;'1S"FYE=&)E86YS+3,N-"XQ+VYE=&)E86YS+V)I;B]R=6YI9&4N&4*;F5T8F5A M;G,M,RXT+C$O;F5T8F5A;G,O8FEN+W)M:61?=W)A<'!E%]L875N8VAE"]S97)V;&5T+VIS<"]T86=E>'0O8VQA"]S97)V;&5T M+VIS<"]C;&%S"]S97)V;&5T+VAT='`*0&1I`I`9&ER&%M<&QE&%M<&QE&%M M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE M`I`9&ER&%M<&QE&%M<&QE7-T96TO36]D M=6QE&%M M<&QE'0*0&1I'0*0&1IRelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 0:54: 3 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74FC737B407 for ; Tue, 11 Mar 2003 00:54:02 -0800 (PST) Received: from seed.net.tw (sn15.seed.net.tw [139.175.54.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A54B843FB1 for ; Tue, 11 Mar 2003 00:54:01 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.131.245] (port=49167 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18sfWK-000G25-00 for freebsd-java@FreeBSD.ORG; Tue, 11 Mar 2003 16:54:00 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.8/8.12.8) with ESMTP id h2B8rxk4017578 for ; Tue, 11 Mar 2003 16:54:00 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.8/8.12.8/Submit) id h2B8rx8S017577 for freebsd-java@FreeBSD.ORG; Tue, 11 Mar 2003 16:53:59 +0800 (CST) Date: Tue, 11 Mar 2003 16:53:59 +0800 From: leafy To: freebsd-java@FreeBSD.ORG Subject: Re: Enquiry about Java tutorial on FreeBSD Message-ID: <20030311085359.GA17557@leafy.idv.tw> Mail-Followup-To: freebsd-java@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Mar 11, 2003 at 04:49:36PM +0800, yc.chang@askey.com.tw wrote: > I would like to see any tutorial about Java development on/for FreeBSD. For > this reason, please kindly provide me any related documentation. > > By the way, do you have any active Java project in your team right now? > > Thanks a lot! > > > Regards, > > Y.C. Chang Hi, I don't think we have a consolidated tutorial yet, but what do you have in mind? Client program or server program? servlet+jsp oriented or are you aiming for J2EE containers? Or even J2ME perhaps? Things really starts to look bright recently, with a working 1.4.1 JDK and 1.3.1 hotspot and Eclipse port on the horizon. Java is getting smoother than it used to be on FreeBSD. Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 0:58:34 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 665C237B404 for ; Tue, 11 Mar 2003 00:58:33 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6459243FBD for ; Tue, 11 Mar 2003 00:58:30 -0800 (PST) (envelope-from phantom@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2BBA0mJ055305 for ; Tue, 11 Mar 2003 11:10:01 GMT Received: (from phantom@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2B95F9v093243; Tue, 11 Mar 2003 11:05:15 +0200 (EET) (envelope-from phantom) Date: Tue, 11 Mar 2003 11:05:15 +0200 From: Alexey Zelkin To: java@freebsd.org Subject: [phantom@FreeBSD.org: cvs commit: ports/java/jdk14/files patch-common::Defs.gmk] Message-ID: <20030311110515.A93199@phantom.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org JFYI ----- Forwarded message from Alexey Zelkin ----- From: Alexey Zelkin Date: Tue, 11 Mar 2003 00:54:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk14/files patch-common::Defs.gmk phantom 2003/03/11 00:54:30 PST FreeBSD ports repository Added files: java/jdk14/files patch-common::Defs.gmk Log: Since we have problems with running debuging binaries on some machines (old K6 and some SMP machines) don't use javah_g in build process. Reported by: many people Revision Changes Path 1.1 +15 -0 ports/java/jdk14/files/patch-common::Defs.gmk (new) ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 2: 6:28 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BD7237B401 for ; Tue, 11 Mar 2003 02:06:27 -0800 (PST) Received: from tiscali.de (p62.246.26.138.tisdip.tiscali.de [62.246.26.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDC843FCB for ; Tue, 11 Mar 2003 02:06:25 -0800 (PST) (envelope-from sblank@tiscali.de) Received: by ally.localnet.de (Postfix, from userid 1000) id B424F2B6A; Tue, 11 Mar 2003 11:05:48 +0100 (CET) Date: Tue, 11 Mar 2003 11:05:48 +0100 From: Sascha Blank To: freebsd-java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <20030311100548.GA34951@ally.localnet.de> Mail-Followup-To: freebsd-java@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, On Mon, Mar 10, 2003 at 03:26:57PM -0800, Pat Lashley wrote: > Hmm. You may be onto something here. Both of the systems I've tried > so far have been Athlons; and I have CPUTYPE=k7 and CFLAGS=-g -O -pipe > in my make.conf. I can provide one more clue hoping that it might be helpful: today I have built the JDK 1.4p3 port afresh, but this time with "NO_CPU_CFLAGS=true" set in my /etc/make.conf so that CPUTYPE has no effect and thus no "-march=" options creep into the GCC invocations. After about two hours I had to find out that it doesn't make a change at all; the build still breaks down at exactly the same spot. This is rather strange and leaves me quite puzzled. Bye. -- Sascha Blank OpenPGP-Schlüssel: erhältlich sblank at tiscali dot de bei www.keyserver.net und use Disclaimer::Std; wwwkeys.pgp.net unter ID 0x4D067F0A Key fingerprint: 8F90 ADAB 3DA7 A527 DEB6 0B7F ECDD 6E2A 4D06 7F0A To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 5: 1:32 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D0D937B401 for ; Tue, 11 Mar 2003 05:01:31 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2576243FBF for ; Tue, 11 Mar 2003 05:01:28 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2BFCxmJ068605; Tue, 11 Mar 2003 15:13:00 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2BD8Cjk094410; Tue, 11 Mar 2003 15:08:12 +0200 (EET) (envelope-from ml) Date: Tue, 11 Mar 2003 15:08:12 +0200 From: Alexey Zelkin To: Sascha Blank Cc: freebsd-java@FreeBSD.ORG Subject: Re: Error building native jdk14 on 4.8-RC Message-ID: <20030311150812.A94388@phantom.cris.net> References: <20030311100548.GA34951@ally.localnet.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030311100548.GA34951@ally.localnet.de>; from sblank@tiscali.de on Tue, Mar 11, 2003 at 11:05:48AM +0100 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org 1. See my previous post to this thread which describes why CPUTYPE not affects jdk build 2. Please re-cvsup your ports tree and let me know if patches I have committed today fixes your problem. On Tue, Mar 11, 2003 at 11:05:48AM +0100, Sascha Blank wrote: > Hello, > > On Mon, Mar 10, 2003 at 03:26:57PM -0800, Pat Lashley wrote: > > Hmm. You may be onto something here. Both of the systems I've tried > > so far have been Athlons; and I have CPUTYPE=k7 and CFLAGS=-g -O -pipe > > in my make.conf. > > I can provide one more clue hoping that it might be helpful: today I > have built the JDK 1.4p3 port afresh, but this time with > "NO_CPU_CFLAGS=true" set in my /etc/make.conf so that CPUTYPE has no > effect and thus no "-march=" options creep into the GCC invocations. > > After about two hours I had to find out that it doesn't make a change at > all; the build still breaks down at exactly the same spot. This is > rather strange and leaves me quite puzzled. > > Bye. > > -- > Sascha Blank OpenPGP-Schlussel: erhaltlich > sblank at tiscali dot de bei www.keyserver.net und > use Disclaimer::Std; wwwkeys.pgp.net unter ID 0x4D067F0A > Key fingerprint: 8F90 ADAB 3DA7 A527 DEB6 0B7F ECDD 6E2A 4D06 7F0A > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 8:10:39 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6090237B401 for ; Tue, 11 Mar 2003 08:10:37 -0800 (PST) Received: from mx0.gmx.net (mx0.gmx.de [213.165.64.100]) by mx1.FreeBSD.org (Postfix) with SMTP id D46FA43FA3 for ; Tue, 11 Mar 2003 08:10:35 -0800 (PST) (envelope-from JtRipper@gmx.net) Received: (qmail 408 invoked by uid 0); 11 Mar 2003 16:10:32 -0000 Date: Tue, 11 Mar 2003 17:10:32 +0100 (MET) From: Andrew Mace To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG MIME-Version: 1.0 References: <20030311161616.A73524@misty.eyesbeyond.com> Subject: Re: Installation problems with the jdk12 port X-Priority: 3 (Normal) X-Authenticated-Sender: #0000353824@gmx.net X-Authenticated-IP: [217.80.105.1] Message-ID: <15508.1047399032@www23.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > On Tue, Mar 11, 2003 at 02:30:58AM +0100, Andrew Mace wrote: > > Hello, > > when installing the jdk12 port on FreeBSD 5.0-Release I get the > following > > error: > > gmake[3]: *** [obj/i386/hprof_method.o] Error 1 > > gmake[3]: Leaving directory > > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > > gmake[2]: *** [optimized] Error 2 > > gmake[2]: Leaving directory > > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > > gmake[1]: *** [all] Error 1 > > gmake[1]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java' > > gmake: *** [all] Error 1 > > *** Error code 2 > > > > Stop in /usr/ports/java/jdk12. > > > > Can anyone help me with this? > > Not enough detail, you've cut off the actual error. Ok, I included some more lines this time: gmake[3]: Entering directory `/usr/ports/java/jdk12/work/build/bsd/java/hprof' gcc -O -pipe -mcpu=pentiumpro -W -Wall -Wmissing-prototypes -Wmissing-declarat ions -Wnested-externs -Wno-unused -Wno-parentheses -pipe -fPIC -Di386 -DHAVE_A LIGNED_LONGLONGS -DHAVE_ALIGNED_DOUBLES -DARCH='"i386"' -DRELEASE='"1.2.2"' -DFU LL_VERSION='"jdk1.2.2-p11:root:2003/03/11-16:10"' -DHAVE_POLL -D_REENTRANT -I. - ICClassHeaders -I../../../../src/bsd/javavm/export -I../../../../src/share/javav m/export -I../../../../src/bsd/tools/hprof -I../../../../src/share/tools/hprof - I../../../../src/share/native/common -I../../../../src/bsd/native/common -I../ ../../../src/share/native/ -I../../../../src/bsd/native/ -c -o obj/i386/hprof_m ethod.o ../../../../src/share/tools/hprof/hprof_method.c ../../../../src/share/tools/hprof/hprof_method.c: In function `hprof_method_exit _event': ../../../../src/share/tools/hprof/hprof_method.c:249: `total_time' undeclared (f irst use in this function) ../../../../src/share/tools/hprof/hprof_method.c:249: (Each undeclared identifie r is reported only once ../../../../src/share/tools/hprof/hprof_method.c:249: for each function it appea rs in.) gmake[3]: *** [obj/i386/hprof_method.o] Error 1 gmake[3]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java/hprof' gmake[2]: *** [optimized] Error 2 gmake[2]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java/hprof' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java' gmake: *** [all] Error 1 *** Error code 2 Stop in /usr/ports/java/jdk12. Andrew -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 8:29:16 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBA1037B401 for ; Tue, 11 Mar 2003 08:29:13 -0800 (PST) Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37C8443FB1 for ; Tue, 11 Mar 2003 08:29:13 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr3.xmission.com with spam-scanned (Exim 3.35 #1) id 18smcq-0007Gy-03; Tue, 11 Mar 2003 09:29:12 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 3.35 #1) id 18smco-0007FT-03; Tue, 11 Mar 2003 09:29:11 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2BGT5A75383; Wed, 12 Mar 2003 02:59:05 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 12 Mar 2003 02:59:03 +1030 From: Greg Lewis To: Andrew Mace Cc: Greg Lewis , freebsd-java@FreeBSD.ORG Subject: Re: Installation problems with the jdk12 port Message-ID: <20030312025903.A75357@misty.eyesbeyond.com> References: <20030311161616.A73524@misty.eyesbeyond.com> <15508.1047399032@www23.gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <15508.1047399032@www23.gmx.net>; from JtRipper@gmx.net on Tue, Mar 11, 2003 at 05:10:32PM +0100 X-Spam-Status: No, hits=-3.4 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02, TO_BE_REMOVED_REPLY,USER_AGENT,USER_AGENT_MUTT, X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Mar 11, 2003 at 05:10:32PM +0100, Andrew Mace wrote: > > On Tue, Mar 11, 2003 at 02:30:58AM +0100, Andrew Mace wrote: > > > Hello, > > > when installing the jdk12 port on FreeBSD 5.0-Release I get the > > following > > > error: > > > gmake[3]: *** [obj/i386/hprof_method.o] Error 1 > > > gmake[3]: Leaving directory > > > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > > > gmake[2]: *** [optimized] Error 2 > > > gmake[2]: Leaving directory > > > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > > > gmake[1]: *** [all] Error 1 > > > gmake[1]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java' > > > gmake: *** [all] Error 1 > > > *** Error code 2 > > > > > > Stop in /usr/ports/java/jdk12. > > > > > > Can anyone help me with this? > > > > Not enough detail, you've cut off the actual error. > > Ok, I included some more lines this time: > gmake[3]: Entering directory > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > gcc -O -pipe -mcpu=pentiumpro -W -Wall -Wmissing-prototypes > -Wmissing-declarat > ions -Wnested-externs -Wno-unused -Wno-parentheses -pipe -fPIC -Di386 > -DHAVE_A > LIGNED_LONGLONGS -DHAVE_ALIGNED_DOUBLES -DARCH='"i386"' -DRELEASE='"1.2.2"' > -DFU > LL_VERSION='"jdk1.2.2-p11:root:2003/03/11-16:10"' -DHAVE_POLL -D_REENTRANT > -I. - > ICClassHeaders -I../../../../src/bsd/javavm/export > -I../../../../src/share/javav > m/export -I../../../../src/bsd/tools/hprof > -I../../../../src/share/tools/hprof - > I../../../../src/share/native/common -I../../../../src/bsd/native/common > -I../ > ../../../src/share/native/ -I../../../../src/bsd/native/ -c -o > obj/i386/hprof_m > ethod.o ../../../../src/share/tools/hprof/hprof_method.c > ../../../../src/share/tools/hprof/hprof_method.c: In function > `hprof_method_exit > _event': > ../../../../src/share/tools/hprof/hprof_method.c:249: `total_time' > undeclared (f > irst use in this function) > ../../../../src/share/tools/hprof/hprof_method.c:249: (Each undeclared > identifie > r is reported only once > ../../../../src/share/tools/hprof/hprof_method.c:249: for each function it > appea > rs in.) Yes, this is a problem with compiling with gcc3.x that was fixed recently. Please cvsup the port and try again. In particular, you need files/patch-hprof_method.c to be present. > gmake[3]: *** [obj/i386/hprof_method.o] Error 1 > gmake[3]: Leaving directory > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > gmake[2]: *** [optimized] Error 2 > gmake[2]: Leaving directory > `/usr/ports/java/jdk12/work/build/bsd/java/hprof' > gmake[1]: *** [all] Error 1 > gmake[1]: Leaving directory `/usr/ports/java/jdk12/work/build/bsd/java' > gmake: *** [all] Error 1 > *** Error code 2 > > Stop in /usr/ports/java/jdk12. > > Andrew > > -- > +++ GMX - Mail, Messaging & more http://www.gmx.net +++ > Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 8:56: 9 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8382337B401 for ; Tue, 11 Mar 2003 08:56:07 -0800 (PST) Received: from scrooge.etek.chalmers.se (scrooge.etek.chalmers.se [129.16.32.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CE9043F75 for ; Tue, 11 Mar 2003 08:56:06 -0800 (PST) (envelope-from b@etek.chalmers.se) Received: from scrooge.etek.chalmers.se (b@localhost [127.0.0.1]) by scrooge.etek.chalmers.se (8.12.3/8.12.3) with ESMTP id h2BGu4ca026609 for ; Tue, 11 Mar 2003 17:56:04 +0100 (CET) (envelope-from b@etek.chalmers.se) Received: from localhost (b@localhost) by scrooge.etek.chalmers.se (8.12.3/8.12.3/Submit) with ESMTP id h2BGu3Qf026606 for ; Tue, 11 Mar 2003 17:56:04 +0100 (CET) X-Authentication-Warning: scrooge.etek.chalmers.se: b owned process doing -bs Date: Tue, 11 Mar 2003 17:56:03 +0100 (CET) From: Magnus B{ckstr|m To: freebsd-java@freebsd.org Subject: ports/java/jdk14 build failure Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm getting the below failure building the jdk14 port. System is -CURRENT as of Fri Mar 7, ports were just cvsuped, the files I have are: rockerduck# md5 Makefile files/* MD5 (Makefile) = af28e5befad65837fae02d5fcef3d8ed MD5 (files/patch-PlainDatagramSocketImpl.c) = 9d9eeef8e032d612477428ecef5a456a MD5 (files/patch-common::Defs-bsd.gmk) = 3c284ff0a3ee85300a0c7260705ba7cd MD5 (files/patch-common::Defs.gmk) = 2854e5b1b15a656d4704981a7eb2d693 rockerduck# Magnus ... Compiling /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/opto/opcodes.cpp Compiling /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/output_c.cpp Compiling /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/output_h.cpp Making adlc ../generated/adfiles/filebuff.o: In function `FileBuffRegion::print(ostream&)': /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:255: undefined reference to `ostream::operator<<(char const*)' ../generated/adfiles/filebuff.o: In function `printline(ostream&, char const*, int, char const*, int, int)': /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:160: undefined reference to `ostream::operator<<(char const*)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:160: undefined reference to `ostream::operator<<(char const*)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:160: undefined reference to `ostream::operator<<(int)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:160: undefined reference to `ostream::operator<<(char const*)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:147: undefined reference to `ostream::operator<<(char)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:170: undefined reference to `ostream::operator<<(char const*)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:170: undefined reference to `ostream::operator<<(char const*)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:170: undefined reference to `ostream::operator<<(int)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:170: undefined reference to `ostream::operator<<(char const*)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:147: undefined reference to `ostream::operator<<(char)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:179: undefined reference to `ostream::operator<<(char)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:147: undefined reference to `ostream::operator<<(char)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:191: undefined reference to `ostream::operator<<(char)' /foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:144: undefined reference to `ostream::operator<<(char)' ../generated/adfiles/filebuff.o:/foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:147: more undefined references to `ostream::operator<<(char)' follow gmake[3]: *** [../generated/adfiles/adlc] Error 1 gmake[3]: Leaving directory `/foo/ports-cur/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' gmake[2]: *** [ad_stuff] Error 2 gmake[2]: Leaving directory `/foo/ports-cur/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' gmake[1]: *** [product] Error 2 gmake[1]: Leaving directory `/foo/ports-cur/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' gmake: *** [product] Error 2 *** Error code 2 Stop in /foo/ports-cur/ports/java/jdk14. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 9:32: 2 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 031C237B401 for ; Tue, 11 Mar 2003 09:32:01 -0800 (PST) Received: from habanero.hesketh.net (habanero.hesketh.net [66.45.6.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A427143F3F for ; Tue, 11 Mar 2003 09:31:59 -0800 (PST) (envelope-from brent@mutt.rcfile.org) X-Received-From: brent@mutt.rcfile.org X-Delivered-To: freebsd-java@FreeBSD.ORG X-Originating-IP: [66.57.229.60] Received: from mutt.rcfile.org (rdu57-229-060.nc.rr.com [66.57.229.60]) by habanero.hesketh.net (8.12.8/8.12.8) with ESMTP id h2BHVkVC007818; Tue, 11 Mar 2003 12:31:46 -0500 X-Spam-Filter: check_local@habanero.hesketh.net by digitalanswers.org Received: from mutt.rcfile.org (localhost [127.0.0.1]) by mutt.rcfile.org (8.12.8/8.12.7) with ESMTP id h2BHVxlt078821; Tue, 11 Mar 2003 12:32:00 -0500 (EST) (envelope-from brent@mutt.rcfile.org) Received: (from brent@localhost) by mutt.rcfile.org (8.12.8/8.12.8/Submit) id h2BHVxRH078820; Tue, 11 Mar 2003 12:31:59 -0500 (EST) Date: Tue, 11 Mar 2003 12:31:59 -0500 From: Brent Verner To: Magnus B{ckstr|m Cc: freebsd-java@FreeBSD.ORG Subject: Re: ports/java/jdk14 build failure Message-ID: <20030311173159.GA78525@rcfile.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-muttrc: $Id: .muttrc,v 1.10 2003/02/08 08:35:24 brent Exp $ X-uname: FreeBSD 4.8-RC #4: Thu Mar 6 14:32:40 EST 2003 root@mutt.rcfile.org:/usr/obj/usr/src/sys/MUTTS User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [2003-03-11 17:56] Magnus B{ckstr|m said: | I'm getting the below failure building the jdk14 port. | System is -CURRENT as of Fri Mar 7, ports were just cvsuped, | ../generated/adfiles/filebuff.o:/foo/ports-cur/ports/java/jdk14/work/hotspot/src/share/vm/adlc/filebuff.cpp:147: more undefined references to `ostream::operator<<(char)' follow | gmake[3]: *** [../generated/adfiles/adlc] Error 1 I had this same problem.... The simple answer is that you (still) have the old g++ headers in /usr/include/. You need to delete all g++ headers from /usr/include, the reinstall world. See /usr/src/UPDATING for more details. b -- "Develop your talent, man, and leave the world something. Records are really gifts from people. To think that an artist would love you enough to share his music with anyone is a beautiful thing." -- Duane Allman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 10:26:45 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E768A37B401 for ; Tue, 11 Mar 2003 10:26:44 -0800 (PST) Received: from scrooge.etek.chalmers.se (scrooge.etek.chalmers.se [129.16.32.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id A97E843F85 for ; Tue, 11 Mar 2003 10:26:42 -0800 (PST) (envelope-from b@etek.chalmers.se) Received: from scrooge.etek.chalmers.se (b@localhost [127.0.0.1]) by scrooge.etek.chalmers.se (8.12.3/8.12.3) with ESMTP id h2BIQfca026906; Tue, 11 Mar 2003 19:26:41 +0100 (CET) (envelope-from b@etek.chalmers.se) Received: from localhost (b@localhost) by scrooge.etek.chalmers.se (8.12.3/8.12.3/Submit) with ESMTP id h2BIQfeI026903; Tue, 11 Mar 2003 19:26:41 +0100 (CET) X-Authentication-Warning: scrooge.etek.chalmers.se: b owned process doing -bs Date: Tue, 11 Mar 2003 19:26:41 +0100 (CET) From: Magnus B{ckstr|m To: Brent Verner Cc: freebsd-java@FreeBSD.ORG Subject: Re: ports/java/jdk14 build failure In-Reply-To: <20030311173159.GA78525@rcfile.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 11 Mar 2003, Brent Verner wrote: > [2003-03-11 17:56] Magnus B{ckstr|m said: > | I'm getting the below failure building the jdk14 port. > > I had this same problem.... The simple answer is that you > (still) have the old g++ headers in /usr/include/. You need > to delete all g++ headers from /usr/include, the reinstall > world. See /usr/src/UPDATING for more details. Duh! Thanks :-) Magnus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 13:50:53 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11D4A37B401 for ; Tue, 11 Mar 2003 13:50:51 -0800 (PST) Received: from mail.impactonline.org (mail.impactonline.org [192.220.110.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6123A43FE0 for ; Tue, 11 Mar 2003 13:50:50 -0800 (PST) (envelope-from aah@acm.org) Received: from acm.org (ip-64-139-6-196.dsl.sca.megapath.net [64.139.6.196]) by mail.impactonline.org (8.12.6) id h2BLog3n094999 for ; Tue, 11 Mar 2003 14:50:43 -0700 (MST) Message-ID: <3E6E5B20.2000902@acm.org> Date: Tue, 11 Mar 2003 13:54:40 -0800 From: Andrew Houghton User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3b) Gecko/20030211 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Another(?) native jdk14 compilation problem on 5.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Brand new 5.0, cvsup-ed and built yesterday (Mar 10) morning, brand new ports tree as of middle of today (Mar 11). Linux JDK1.4 installed. Lots of free memory, but it did appear to spike moments before the compilation died. This looks a lot like some of the other problems people have been seeing, but it's happening in a different place (no one has referenced compiler.properties in their errors) so I don't know if this is useful or not. uname -a: FreeBSD desire.roarmouse.org 5.0-RELEASE-p4 FreeBSD 5.0-RELEASE-p4 #0: Mon Mar 10 01:50:21 GMT 2003 root@desire.roarmouse.org:/usr/obj/usr/src/sys/DESIRE i386 shortened dmesg: Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RELEASE-p4 #0: Mon Mar 10 01:50:21 GMT 2003 root@desire.roarmouse.org:/usr/obj/usr/src/sys/DESIRE ... CPU: Pentium III/Pentium III Xeon/Celeron (999.53-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x387f9ff real memory = 536805376 (511 MB) avail memory = 514641920 (490 MB) The error: /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/java -classpath ../../../tools/strip StripProperties < ../../../../src/share/javac/com/sun/tools/javac/v8/resources/compiler.properties > /usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/compiler.properties Abort trap (core dumped) gmake[5]: *** [/usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/compiler.properties] Error 134 gmake[5]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' gmake[4]: *** [all] Error 1 gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/javac' gmake[3]: *** [all] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java/javac' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. Let me know if you need any more info. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 14:25:48 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 446F837B401 for ; Tue, 11 Mar 2003 14:25:46 -0800 (PST) Received: from mail.impactonline.org (mail.impactonline.org [192.220.110.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ABF243FAF for ; Tue, 11 Mar 2003 14:25:45 -0800 (PST) (envelope-from aah@acm.org) Received: from acm.org (ip-64-139-6-196.dsl.sca.megapath.net [64.139.6.196]) by mail.impactonline.org (8.12.6) id h2BMPjjn002731 for ; Tue, 11 Mar 2003 15:25:45 -0700 (MST) Message-ID: <3E6E6356.6020300@acm.org> Date: Tue, 11 Mar 2003 14:29:42 -0800 From: Andrew Houghton User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3b) Gecko/20030211 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Re: Another(?) native jdk14 compilation problem on 5.0 References: <3E6E5B20.2000902@acm.org> In-Reply-To: <3E6E5B20.2000902@acm.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Wade Klaver has helpfully pointed out the libc_r patch I missed (patch-pthread_attr_get_np.c). I'd seen references in Greg's responses, but had no idea what he was referring to. I'll rebuild / reinstall libc_r and see what happens. - a. Andrew Houghton wrote: > Brand new 5.0, cvsup-ed and built yesterday (Mar 10) morning, brand > new ports tree as of middle of today (Mar 11). Linux JDK1.4 > installed. Lots of free memory, but it did appear to spike moments > before the compilation died. This looks a lot like some of the other > problems people have been seeing, but it's happening in a different > place (no one has referenced compiler.properties in their errors) so I > don't know if this is useful or not. > > uname -a: > > FreeBSD desire.roarmouse.org 5.0-RELEASE-p4 FreeBSD 5.0-RELEASE-p4 #0: > Mon Mar 10 01:50:21 GMT 2003 > root@desire.roarmouse.org:/usr/obj/usr/src/sys/DESIRE i386 > > shortened dmesg: > > Copyright (c) 1992-2003 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD 5.0-RELEASE-p4 #0: Mon Mar 10 01:50:21 GMT 2003 > root@desire.roarmouse.org:/usr/obj/usr/src/sys/DESIRE > .. > CPU: Pentium III/Pentium III Xeon/Celeron (999.53-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x68a Stepping = 10 > > Features=0x387f9ff > real memory = 536805376 (511 MB) > avail memory = 514641920 (490 MB) > > The error: > > /usr/ports/java/jdk14/work/control/build/bsd-i586/bin/java -classpath > ./../../tools/strip StripProperties < > ./../../../src/share/javac/com/sun/tools/javac/v8/resources/compiler.properties > > > /usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/compiler.properties > > Abort trap (core dumped) > gmake[5]: *** > [/usr/ports/java/jdk14/work/control/build/bsd-i586/gensrc/com/sun/tools/javac/v8/resources/compiler.properties] > Error 134 > gmake[5]: Leaving directory > `/usr/ports/java/jdk14/work/j2se/make/sun/javac/sources' > gmake[4]: *** [all] Error 1 > gmake[4]: Leaving directory > `/usr/ports/java/jdk14/work/j2se/make/sun/javac' > gmake[3]: *** [all] Error 2 > gmake[3]: Leaving directory > `/usr/ports/java/jdk14/work/j2se/make/java/javac' > gmake[2]: *** [all] Error 1 > gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/java' > gmake[1]: *** [all] Error 1 > gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' > gmake: *** [j2se-build] Error 2 > *** Error code 2 > > Stop in /usr/ports/java/jdk14. > > Let me know if you need any more info. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 15:22:54 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24E5637B404 for ; Tue, 11 Mar 2003 15:22:53 -0800 (PST) Received: from smtp017.mail.yahoo.com (smtp017.mail.yahoo.com [216.136.174.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 5CD3B4400B for ; Tue, 11 Mar 2003 15:22:51 -0800 (PST) (envelope-from kaeru@pd.jaring.my) Received: from unknown (HELO ?219.94.100.74?) (khairil?yusof@219.94.100.74 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 11 Mar 2003 23:22:49 -0000 Subject: No plugins yet for jdk 1.4.1? From: Khairil Yusof Reply-To: kaeru@pd.jaring.my To: java@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-qsCLDnpo/TiQoY/3FcB+" Organization: Message-Id: <1047424941.713.1.camel@daemon.home.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 12 Mar 2003 07:22:22 +0800 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --=-qsCLDnpo/TiQoY/3FcB+ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I didn't see an option like there was in 1.3.1 Makefile. Is this intentionally left out, or did I miss out on a build option? --=20 Khairil Yusof --=-qsCLDnpo/TiQoY/3FcB+ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+bm+tDAqnLW/+/X8RAsv4AKCme94MeQ9/8r9TbBeCSDyKFwneGgCgqwxZ HwTQ/i/2cAW7Z2hiy9XvhDo= =49Nr -----END PGP SIGNATURE----- --=-qsCLDnpo/TiQoY/3FcB+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 16:31:36 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD4C437B404 for ; Tue, 11 Mar 2003 16:31:35 -0800 (PST) Received: from mail.impactonline.org (mail.impactonline.org [192.220.110.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A45344094 for ; Tue, 11 Mar 2003 16:30:52 -0800 (PST) (envelope-from aah@acm.org) Received: from acm.org (ip-64-139-6-196.dsl.sca.megapath.net [64.139.6.196]) by mail.impactonline.org (8.12.6) id h2C0UlkR036144 for ; Tue, 11 Mar 2003 17:30:48 -0700 (MST) Message-ID: <3E6E80A5.5070508@acm.org> Date: Tue, 11 Mar 2003 16:34:45 -0800 From: Andrew Houghton User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3b) Gecko/20030211 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Re: Another(?) native jdk14 compilation problem on 5.0 References: <3E6E5B20.2000902@acm.org> <3E6E6356.6020300@acm.org> In-Reply-To: <3E6E6356.6020300@acm.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Magic. The build went perfectly after the patch, and appears to run well after some very limited testing. Thanks to everyone involved for making this possible, and thanks to the FreeBSD Foundation for putting money behind the project. I look forward to seeing a packaged binary on the JavaSoft site. :) - a. Andrew Houghton wrote: > Wade Klaver has helpfully pointed out the libc_r patch I missed > (patch-pthread_attr_get_np.c). > I'd seen references in Greg's responses, but had no idea what he was > referring to. > > I'll rebuild / reinstall libc_r and see what happens. > > - a. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 16:49:53 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28CE137B405 for ; Tue, 11 Mar 2003 16:49:52 -0800 (PST) Received: from hyperreal.org (taz3.hyperreal.org [209.237.226.90]) by mx1.FreeBSD.org (Postfix) with SMTP id 312A443F75 for ; Tue, 11 Mar 2003 16:49:51 -0800 (PST) (envelope-from brian@hyperreal.org) Received: (qmail 84866 invoked from network); 12 Mar 2003 00:49:53 -0000 Received: from localhost.hyperreal.org (HELO yez.hyperreal.org) (127.0.0.1) by localhost.hyperreal.org with SMTP; 12 Mar 2003 00:49:53 -0000 Received: (qmail 11507 invoked by uid 1000); 12 Mar 2003 00:51:52 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 12 Mar 2003 00:51:52 -0000 Date: Tue, 11 Mar 2003 16:51:52 -0800 (PST) From: Brian Behlendorf To: freebsd-java@FreeBSD.ORG Subject: jdk14 make package Message-ID: <20030311164538.B10991@yez.hyperreal.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost.hyperreal.org 1.6.2 0/1000/N Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It builds and installs great for me, kudos Alexey! But "make package" appears to barf: /usr/ports/java/jdk14 taz3# make package ===> Building package for jdk-1.4.1p3 Creating package /usr/ports/java/jdk14/jdk-1.4.1p3.tgz Registering depends: open-motif-2.2.2 XFree86-libraries-4.2.1_7 urwfonts-1.0 freetype2-2.1.2 freetype2-2.1.3_1 XFree86-libraries-4.1.0_1 javavmwrapper-1.4 freetype2-2.0.6 imake-4.1.0_2. Creating gzip'd tar ball in '/usr/ports/java/jdk14/jdk-1.4.1p3.tgz' tar: jdk1.4.1/demo/jfc/SwingSet2/resources/ant.html: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/bug.html: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/images/About.jpg: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/images/ImageClub/COPYRIGHT: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/images/ImageClub/food/apple.jpg: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/images/ImageClub/food/asparagus.jpg: Cannot stat: No such file or directory [... on and on ...] tar: jdk1.4.1/demo/jfc/SwingSet2/resources/swingset_zh_CN.properties: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/title.html: Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/tree.txt: Cannot stat: No such file or directory tar: Error exit delayed from previous errors pkg_create: make_dist: tar command failed with code 512 *** Error code 1 Stop in /usr/ports/java/jdk14. taz3# Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 20:57: 3 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F62437B401 for ; Tue, 11 Mar 2003 20:57:01 -0800 (PST) Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DE3C43F3F for ; Tue, 11 Mar 2003 20:57:00 -0800 (PST) (envelope-from aah@acm.org) Received: (qmail 25878 invoked from network); 12 Mar 2003 04:57:15 -0000 Received: from unknown (HELO acm.org) (aah@[216.27.178.67]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 12 Mar 2003 04:57:15 -0000 Message-ID: <3E6E4DBC.7060806@acm.org> Date: Tue, 11 Mar 2003 12:57:32 -0800 From: Andrew Houghton User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030309 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org IntelliJ IDEA does a pre-start check to make sure that the JVM identifies itself as version '1.4.1_01'. It breaks because the native JDK port currently identifies itself as '1.4.1-p3_1' (or something like that). There's an easy fix -- editing the version string in control/build/bsd-i586/gensrc/sun/misc/Version.java -- and after the edit IDEA at least starts and appears to work correctly so far as I've tested it. But this all leads to a question: should the version string be platform/beta specific? Are the IntelliJ folks wrong in assuming that this is a reasonable test? Would it be enough for the native JDK to muck with the static String java_runtime_version, and leave the java_version String alone? - a. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 21: 5:39 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12BF637B401 for ; Tue, 11 Mar 2003 21:05:38 -0800 (PST) Received: from seed.net.tw (sn15.seed.net.tw [139.175.54.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4958843FCB for ; Tue, 11 Mar 2003 21:05:36 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.134.130] (port=49331 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:3) id 18syQo-000EQs-00 for freebsd-java@FreeBSD.ORG; Wed, 12 Mar 2003 13:05:35 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.8/8.12.8) with ESMTP id h2C55X0m054638 for ; Wed, 12 Mar 2003 13:05:34 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.8/8.12.8/Submit) id h2C55X10054637 for freebsd-java@FreeBSD.ORG; Wed, 12 Mar 2003 13:05:33 +0800 (CST) (envelope-from leafy) Date: Wed, 12 Mar 2003 13:05:33 +0800 From: leafy To: freebsd-java@FreeBSD.ORG Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') Message-ID: <20030312050533.GA54620@leafy.idv.tw> Mail-Followup-To: freebsd-java@FreeBSD.ORG References: <3E6E4DBC.7060806@acm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <3E6E4DBC.7060806@acm.org> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Mar 11, 2003 at 12:57:32PM -0800, Andrew Houghton wrote: > identifies itself as version '1.4.1_01'. It breaks because the native > JDK port currently identifies itself as '1.4.1-p3_1' (or something like > that). In this case, it don't run unless we use that specifc version from Sun (even Sun has bumped the 1.4.1 to 02 recently). It probably won't run on a IBM JDK. IMO this is a IntelliJ problem, not ours. Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 21:43:41 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F6D937B401 for ; Tue, 11 Mar 2003 21:43:40 -0800 (PST) Received: from mgr4.xmission.com (mgr4.xmission.com [198.60.22.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32E2343FB1 for ; Tue, 11 Mar 2003 21:43:39 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr4.xmission.com with spam-scanned (Exim 3.35 #1) id 18sz1e-0007ar-04 for java@freebsd.org; Tue, 11 Mar 2003 22:43:38 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr4.xmission.com with esmtp (Exim 3.35 #1) id 18sz1d-0007ZF-04; Tue, 11 Mar 2003 22:43:38 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2C5hY078322; Wed, 12 Mar 2003 16:13:34 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 12 Mar 2003 16:13:33 +1030 From: Greg Lewis To: Khairil Yusof Cc: java@FreeBSD.ORG Subject: Re: No plugins yet for jdk 1.4.1? Message-ID: <20030312161333.A78225@misty.eyesbeyond.com> References: <1047424941.713.1.camel@daemon.home.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <1047424941.713.1.camel@daemon.home.net>; from kaeru@pd.jaring.my on Wed, Mar 12, 2003 at 07:22:22AM +0800 X-Spam-Status: No, hits=-3.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 12, 2003 at 07:22:22AM +0800, Khairil Yusof wrote: > I didn't see an option like there was in 1.3.1 Makefile. > > Is this intentionally left out, or did I miss out on a build option? Intentionally left out, as has been stated several times on this list :). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 21:44:24 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2377737B401 for ; Tue, 11 Mar 2003 21:44:23 -0800 (PST) Received: from mgr4.xmission.com (mgr4.xmission.com [198.60.22.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78AC643FDF for ; Tue, 11 Mar 2003 21:44:20 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr4.xmission.com with spam-scanned (Exim 3.35 #1) id 18sz2K-0008GL-04 for freebsd-java@freebsd.org; Tue, 11 Mar 2003 22:44:20 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr4.xmission.com with esmtp (Exim 3.35 #1) id 18sz2J-0008EG-04; Tue, 11 Mar 2003 22:44:20 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2C5iF578332; Wed, 12 Mar 2003 16:14:15 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 12 Mar 2003 16:14:15 +1030 From: Greg Lewis To: Andrew Houghton Cc: freebsd-java@FreeBSD.ORG Subject: Re: Another(?) native jdk14 compilation problem on 5.0 Message-ID: <20030312161415.B78225@misty.eyesbeyond.com> References: <3E6E5B20.2000902@acm.org> <3E6E6356.6020300@acm.org> <3E6E80A5.5070508@acm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3E6E80A5.5070508@acm.org>; from aah@acm.org on Tue, Mar 11, 2003 at 04:34:45PM -0800 X-Spam-Status: No, hits=-3.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Mar 11, 2003 at 04:34:45PM -0800, Andrew Houghton wrote: > Magic. The build went perfectly after the patch, and appears to run > well after some very limited testing. > > Thanks to everyone involved for making this possible, and thanks to the > FreeBSD Foundation for putting money behind the project. I look forward > to seeing a packaged binary on the JavaSoft site. :) Unlikely. Much more likely on the FreeBSD Foundation site :). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 21:51:40 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61F7837B401 for ; Tue, 11 Mar 2003 21:51:39 -0800 (PST) Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id A864243FBD for ; Tue, 11 Mar 2003 21:51:38 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr1.xmission.com with spam-scanned (Exim 3.35 #1) id 18sz9H-0002hE-01 for freebsd-java@freebsd.org; Tue, 11 Mar 2003 22:51:31 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.35 #1) id 18sz7e-0001ed-01; Tue, 11 Mar 2003 22:49:51 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2C5nid78369; Wed, 12 Mar 2003 16:19:44 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 12 Mar 2003 16:19:43 +1030 From: Greg Lewis To: Munehiro Matsuda Cc: antony.t.curtis@ntlworld.com, gsemones@treenleaf.com, freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Message-ID: <20030312161943.C78225@misty.eyesbeyond.com> References: <200303071217.AA1322254492@mail.mstar2.net> <200303102336.27557.antony.t.curtis@ntlworld.com> <20030311.154418.74756297.haro@kgt.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030311.154418.74756297.haro@kgt.co.jp>; from haro@kgt.co.jp on Tue, Mar 11, 2003 at 03:44:18PM +0900 X-Spam-Status: No, hits=-2.7 required=8.0 tests=IN_REP_TO,REFERENCES,SIGNATURE_SHORT_DENSE, SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Mar 11, 2003 at 03:44:18PM +0900, Munehiro Matsuda wrote: > Attached "untested" patch should fix the problem. > > Hope this helps, > Haro Looks good to me. I'll give it a test and put it into the port after the port freeze is over. Arigato! -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 11 22: 1:47 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 593C637B401 for ; Tue, 11 Mar 2003 22:01:46 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC9B743FAF for ; Tue, 11 Mar 2003 22:01:45 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr2.xmission.com with spam-scanned (Exim 3.35 #1) id 18szEm-0004cj-02 for freebsd-java@freebsd.org; Tue, 11 Mar 2003 22:57:12 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 18szE2-000416-02; Tue, 11 Mar 2003 22:56:26 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2C5uBZ78393; Wed, 12 Mar 2003 16:26:11 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 12 Mar 2003 16:26:10 +1030 From: Greg Lewis To: leafy Cc: freebsd-java@FreeBSD.ORG Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') Message-ID: <20030312162610.D78225@misty.eyesbeyond.com> References: <3E6E4DBC.7060806@acm.org> <20030312050533.GA54620@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030312050533.GA54620@leafy.idv.tw>; from leafy@leafy.idv.tw on Wed, Mar 12, 2003 at 01:05:33PM +0800 X-Spam-Status: No, hits=-4.1 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02, TO_LOCALPART_EQ_REAL,USER_AGENT,USER_AGENT_MUTT, X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 12, 2003 at 01:05:33PM +0800, leafy wrote: > On Tue, Mar 11, 2003 at 12:57:32PM -0800, Andrew Houghton wrote: > > identifies itself as version '1.4.1_01'. It breaks because the native > > JDK port currently identifies itself as '1.4.1-p3_1' (or something like > > that). > In this case, it don't run unless we use that specifc version from Sun (even Sun has bumped the 1.4.1 to 02 recently). It probably won't run on a IBM JDK. > IMO this is a IntelliJ problem, not ours. I can understand what they are doing though. Basically they are saying "we've tested it on this version and we know it works, we don't know it works on any other version, so you need to get that one". However, given we're based off the SCSL source, setting our version as 1.4.1_01 or the like would be incorrect. So its not really their problem or ours, it _is_ a problem for people using IntelliJ on FreeBSD though. Maybe a local patch that sets the version is the best solution for people with this problem. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 0: 0:57 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17E4637B404 for ; Wed, 12 Mar 2003 00:00:55 -0800 (PST) Received: from leeloo.intern.geht.de (p5086B1F6.dip.t-dialin.net [80.134.177.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C1B143FBF for ; Wed, 12 Mar 2003 00:00:51 -0800 (PST) (envelope-from marc@informatik.uni-bremen.de) Received: from localhost (localhost [127.0.0.1]) by leeloo.intern.geht.de (Postfix) with ESMTP id 1DA951ADA4B; Wed, 12 Mar 2003 09:00:48 +0100 (CET) Date: Wed, 12 Mar 2003 09:00:32 +0100 From: Marc Recht To: Andrew Houghton , freebsd-java@FreeBSD.ORG Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') Message-ID: <159290000.1047456032@leeloo.intern.geht.de> In-Reply-To: <3E6E4DBC.7060806@acm.org> References: <3E6E4DBC.7060806@acm.org> X-Mailer: Mulberry/3.0.2 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========1964389384==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========1964389384========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline > There's an easy fix -- editing the version string in > control/build/bsd-i586/gensrc/sun/misc/Version.java -- and after the edit > IDEA at least starts and appears to work correctly so far as I've tested > it. IIRC you could just edit the IDEA startup script. No need to patch the JDK. Marc -- omnis mundi creatura quasi liber et pictura nobis est in speculum -- Alanus de Insulis --==========1964389384========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (NetBSD) iD8DBQE+bukv7YQCetAaG3MRAjKwAJ9to/n5wjIRT33lW2EllOIN6UpMugCdEHBM yngrJgCr75bmbHmkyJUxYbo= =9iV4 -----END PGP SIGNATURE----- --==========1964389384==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 0:30:25 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 559A737B401 for ; Wed, 12 Mar 2003 00:30:24 -0800 (PST) Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4E3143F3F for ; Wed, 12 Mar 2003 00:30:23 -0800 (PST) (envelope-from aah@acm.org) Received: (qmail 2513 invoked from network); 12 Mar 2003 08:30:41 -0000 Received: from unknown (HELO acm.org) (aah@[216.27.178.67]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 12 Mar 2003 08:30:41 -0000 Message-ID: <3E6E7FC8.9080001@acm.org> Date: Tue, 11 Mar 2003 16:31:04 -0800 From: Andrew Houghton User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030309 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marc Recht Cc: freebsd-java@FreeBSD.ORG Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') References: <3E6E4DBC.7060806@acm.org> <159290000.1047456032@leeloo.intern.geht.de> In-Reply-To: <159290000.1047456032@leeloo.intern.geht.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org That was the first place I looked, but I couldn't see an obvious solution. Where would I edit? - a. Marc Recht wrote: >> There's an easy fix -- editing the version string in >> control/build/bsd-i586/gensrc/sun/misc/Version.java -- and after the >> edit >> IDEA at least starts and appears to work correctly so far as I've tested >> it. > > IIRC you could just edit the IDEA startup script. No need to patch the > JDK. > > Marc > -- > omnis mundi creatura > quasi liber et pictura > nobis est in speculum > -- Alanus de Insuli > s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 0:33:45 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 683AE37B401 for ; Wed, 12 Mar 2003 00:33:44 -0800 (PST) Received: from mail.speakeasy.net (mail15.speakeasy.net [216.254.0.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA42343FDF for ; Wed, 12 Mar 2003 00:33:43 -0800 (PST) (envelope-from aah@acm.org) Received: (qmail 19128 invoked from network); 12 Mar 2003 08:33:59 -0000 Received: from unknown (HELO acm.org) (aah@[216.27.178.67]) (envelope-sender ) by mail15.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 12 Mar 2003 08:33:59 -0000 Message-ID: <3E6E8090.2070805@acm.org> Date: Tue, 11 Mar 2003 16:34:24 -0800 From: Andrew Houghton User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030309 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marc Recht Cc: freebsd-java@FreeBSD.ORG Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') References: <3E6E4DBC.7060806@acm.org> <159290000.1047456032@leeloo.intern.geht.de> In-Reply-To: <159290000.1047456032@leeloo.intern.geht.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org That was the first place I looked, but I couldn't see an obvious solution. Where would I edit? - a. Marc Recht wrote: >> There's an easy fix -- editing the version string in >> control/build/bsd-i586/gensrc/sun/misc/Version.java -- and after the >> edit >> IDEA at least starts and appears to work correctly so far as I've tested >> it. > > IIRC you could just edit the IDEA startup script. No need to patch the > JDK. > > Marc > -- > omnis mundi creatura > quasi liber et pictura > nobis est in speculum > -- Alanus de Insuli > s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 0:43: 8 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6223237B401 for ; Wed, 12 Mar 2003 00:43:07 -0800 (PST) Received: from misery.sdf.com (misery.sdf.com [207.200.153.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id C022043F3F for ; Wed, 12 Mar 2003 00:43:05 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom (helo=localhost) by misery.sdf.com with local-esmtp (Exim 2.12 #1) id 18t0Ko-0005gG-00; Tue, 11 Mar 2003 23:07:30 -0800 Date: Tue, 11 Mar 2003 23:07:27 -0800 (PST) From: Tom Samplonius To: Brian Behlendorf Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk14 make package In-Reply-To: <20030311164538.B10991@yez.hyperreal.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 11 Mar 2003, Brian Behlendorf wrote: > > It builds and installs great for me, kudos Alexey! > But "make package" appears to barf: ... I had no problems here. Do those files actually exist on your system? I think they are supposed to. Perhaps there was a problem extracting the tarball? Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 3:15:40 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F31337B408 for ; Wed, 12 Mar 2003 03:15:39 -0800 (PST) Received: from oak.FernUni-Hagen.de (oak.fernuni-hagen.de [132.176.114.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B05043F3F for ; Wed, 12 Mar 2003 03:15:36 -0800 (PST) (envelope-from jfh@es-i2.FernUni-Hagen.de) Received: from amavis by oak.FernUni-Hagen.de with scanned-ok (Exim 4.04) id 18t4Ct-00033E-00; Wed, 12 Mar 2003 12:15:35 +0100 Received: from es-i2.fernuni-hagen.de ([132.176.7.81]) by oak.FernUni-Hagen.de with esmtp (Exim 4.04) id 18t4Cj-00032d-00; Wed, 12 Mar 2003 12:15:25 +0100 Received: from jfh00.fernuni-hagen.de (jfh00.fernuni-hagen.de [132.176.7.6]) by es-i2.fernuni-hagen.de (Postfix) with ESMTP id D9E465573; Wed, 12 Mar 2003 12:15:24 +0100 (CET) Received: by jfh00.fernuni-hagen.de (Postfix, from userid 1001) id EF881170B5; Wed, 12 Mar 2003 12:15:25 +0100 (CET) Date: Wed, 12 Mar 2003 12:15:25 +0100 From: Fritz Heinrichmeyer To: freebsd-java@freebsd.org Subject: making package under current for jdk1.4.1 native fails Message-ID: <20030312111525.GA5672@jfh00.fernuni-hagen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.3i X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org this is a "same here" message: a lot of messages like tar: jdk1.4.1/demo/jfc/SwingSet2/resources/images/ImageClub/food/apple.jpg Cannot stat: No such file or directory tar: jdk1.4.1/demo/jfc/SwingSet2/resources/images/ImageClub/food/asparagus.jpg: Cannot stat: No such file or directory so package building fails after this reinstalling tomcat41 did not work as /usr/ports/Mk/bsd.java.mk does not know anything about the new native java port ... Greetings -- Fritz Heinrichmeyer mailto:fritz.heinrichmeyer@fernuni-hagen.de FernUniversitaet Hagen, LG ES, 58084 Hagen (Germany) tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 4:34:33 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 073FD37B401 for ; Wed, 12 Mar 2003 04:34:32 -0800 (PST) Received: from smtp.web.de (smtp02.web.de [217.72.192.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0609543F85 for ; Wed, 12 Mar 2003 04:34:31 -0800 (PST) (envelope-from g.w.k@web.de) Received: from [213.148.149.130] (helo=hunter.muc.mscsoftware.com) by smtp.web.de with asmtp (TLSv1:RC4-MD5:128) (WEB.DE(Exim) 4.97 #53) id 18t5Qz-0004TP-00; Wed, 12 Mar 2003 13:34:13 +0100 Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') From: "Georg-W. Koltermann" To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG In-Reply-To: <20030312162610.D78225@misty.eyesbeyond.com> References: <3E6E4DBC.7060806@acm.org> <20030312050533.GA54620@leafy.idv.tw> <20030312162610.D78225@misty.eyesbeyond.com> Content-Type: text/plain Organization: Message-Id: <1047472446.942.92.camel@hunter.muc.mscsoftware.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 12 Mar 2003 13:34:13 +0100 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It seems that the hint from Andreas Kohn on this list might work, see http://www.freebsd.org/cgi/getmsg.cgi?fetch=367450+369922+/usr/local/www/db/text/2003/freebsd-java/20030302.freebsd-java /usr/ports/java/jad is your friend. I just tried it and got to the screen which requests the eval license data. I don't have that currently, so I cannot tell if it really works. I'm currently downloading their latest version and will request the eval license when I get a few days time. -- Regards, Georg. Am Mi, 2003-03-12 um 06.56 schrieb Greg Lewis: > On Wed, Mar 12, 2003 at 01:05:33PM +0800, leafy wrote: > > On Tue, Mar 11, 2003 at 12:57:32PM -0800, Andrew Houghton wrote: > > > identifies itself as version '1.4.1_01'. It breaks because the native > > > JDK port currently identifies itself as '1.4.1-p3_1' (or something like > > > that). > > In this case, it don't run unless we use that specifc version from Sun (even Sun has bumped the 1.4.1 to 02 recently). It probably won't run on a IBM JDK. > > IMO this is a IntelliJ problem, not ours. > > I can understand what they are doing though. Basically they are saying > "we've tested it on this version and we know it works, we don't know it > works on any other version, so you need to get that one". However, given > we're based off the SCSL source, setting our version as 1.4.1_01 or the > like would be incorrect. So its not really their problem or ours, it > _is_ a problem for people using IntelliJ on FreeBSD though. Maybe a local > patch that sets the version is the best solution for people with this > problem. -- Georg-W. Koltermann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 4:34:42 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A2AA37B401 for ; Wed, 12 Mar 2003 04:34:41 -0800 (PST) Received: from smtp.web.de (smtp02.web.de [217.72.192.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id D11AD43F75 for ; Wed, 12 Mar 2003 04:34:40 -0800 (PST) (envelope-from g.w.k@web.de) Received: from [213.148.149.130] (helo=hunter.muc.mscsoftware.com) by smtp.web.de with asmtp (TLSv1:RC4-MD5:128) (WEB.DE(Exim) 4.97 #53) id 18t5Qy-0004SZ-00; Wed, 12 Mar 2003 13:34:12 +0100 Subject: Re: IntelliJ IDEA && Java Version ('1.4.1-p3_1' vs '1.4.1_01') From: "Georg-W. Koltermann" To: Greg Lewis Cc: leafy , freebsd-java@FreeBSD.ORG In-Reply-To: <20030312162610.D78225@misty.eyesbeyond.com> References: <3E6E4DBC.7060806@acm.org> <20030312050533.GA54620@leafy.idv.tw> <20030312162610.D78225@misty.eyesbeyond.com> Content-Type: text/plain Organization: Message-Id: <1047472380.942.90.camel@hunter.muc.mscsoftware.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 12 Mar 2003 13:34:07 +0100 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It seems that the hint from Andreas Kohn on this list might work, see http://www.freebsd.org/cgi/getmsg.cgi?fetch=367450+369922+/usr/local/www/db/text/2003/freebsd-java/20030302.freebsd-java /usr/ports/java/jad is your friend. I just tried it and got to the screen which requests the eval license data. I don't have that currently, so I cannot tell if it really works. I'm currently downloading their latest version and will request the eval license when I get a few days time. -- Regards, Georg. Am Mi, 2003-03-12 um 06.56 schrieb Greg Lewis: > On Wed, Mar 12, 2003 at 01:05:33PM +0800, leafy wrote: > > On Tue, Mar 11, 2003 at 12:57:32PM -0800, Andrew Houghton wrote: > > > identifies itself as version '1.4.1_01'. It breaks because the native > > > JDK port currently identifies itself as '1.4.1-p3_1' (or something like > > > that). > > In this case, it don't run unless we use that specifc version from Sun (even Sun has bumped the 1.4.1 to 02 recently). It probably won't run on a IBM JDK. > > IMO this is a IntelliJ problem, not ours. > > I can understand what they are doing though. Basically they are saying > "we've tested it on this version and we know it works, we don't know it > works on any other version, so you need to get that one". However, given > we're based off the SCSL source, setting our version as 1.4.1_01 or the > like would be incorrect. So its not really their problem or ours, it > _is_ a problem for people using IntelliJ on FreeBSD though. Maybe a local > patch that sets the version is the best solution for people with this > problem. -- Georg-W. Koltermann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 6:46: 2 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3ED337B401 for ; Wed, 12 Mar 2003 06:45:59 -0800 (PST) Received: from t-mta2.odn.ne.jp (mfep2.odn.ne.jp [143.90.131.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F00E43F75 for ; Wed, 12 Mar 2003 06:45:58 -0800 (PST) (envelope-from sugimura@jp.FreeBSD.org) Received: from localhost ([218.218.73.239]) by t-mta2.odn.ne.jp with ESMTP id <20030312144557463.WTWH.1543.t-mta2.odn.ne.jp@mta2.odn.ne.jp> for ; Wed, 12 Mar 2003 23:45:57 +0900 Date: Wed, 12 Mar 2003 23:48:32 +0900 (JST) Message-Id: <20030312.234832.730610244.sugimura@jp.FreeBSD.org> To: freebsd-java@FreeBSD.ORG Subject: core dumped JDK 1.4.1 demo From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= X-Mailer: Mew version 3.1 on XEmacs 21.4.12 (Portable Code) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello all, Yesterday I made JDK 1.4.1p3 successfully, but I cannot execute JDK demos using AWT or Swing. How can I help you to solve this problem? My environment: 5.0-current (2003/03/04) XFree86 4.2.0_1 XFree86-libraries-4.2.1_6 open-motif-2.2.2_1 etc... % java -version java version "1.4.1-p3" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-p3-root_11_mar_2003_22_07) Java HotSpot(TM) Client VM (build 1.4.1-p3-root_11_mar_2003_22_07, mixed mode) for example, % cd /usr/local/jdk1.4.1/demo/jfc/Java2D % java -jar Java2Demo.jar This cause errors as follows: -------------------------------------------------- An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 10 occurred at PC=0x3462B0CD Function=XtWidgetToApplicationContext+0x1D Library=/usr/X11R6/lib/libXt.so.6 Current Java thread: at sun.awt.motif.MToolkit.loadSystemColors(Native Method) at java.awt.SystemColor.updateSystemColors(SystemColor.java:417) at java.awt.SystemColor.(SystemColor.java:409) at sun.awt.motif.MComponentPeer.pSetBackground(Native Method) at sun.awt.motif.MPanelPeer.setBackground(MPanelPeer.java:69) at sun.awt.motif.MComponentPeer.initialize(MComponentPeer.java:179) at sun.awt.motif.MComponentPeer.init(MComponentPeer.java:225) at sun.awt.motif.MWindowPeer.init(MWindowPeer.java:93) at sun.awt.motif.MFramePeer.(MFramePeer.java:58) at sun.awt.motif.MToolkit.createFrame(MToolkit.java:197) at java.awt.Frame.addNotify(Frame.java:469) - locked <0x2c659bd8> (a java.awt.Component$AWTTreeLock) at java.awt.Window.show(Window.java:448) at java.awt.Component.show(Component.java:1134) at java.awt.Component.setVisible(Component.java:1089) at java2d.Java2Demo.main(Java2Demo.java:476) Dynamic libraries: 0x8048000 java 0x2806f000 /usr/lib/libc_r.so.5 0x28092000 /usr/lib/libc.so.5 0x28160000 /usr/local/jdk1.4.1/jre/lib/i386/client/libjvm.so 0x285b9000 /usr/lib/libstdc++.so.4 0x2862d000 /usr/lib/libm.so.2 0x2864b000 /usr/local/jdk1.4.1/jre/lib/i386/native_threads/libhpi.so 0x28655000 /usr/local/jdk1.4.1/jre/lib/i386/libverify.so 0x2866a000 /usr/local/jdk1.4.1/jre/lib/i386/libjava.so 0x28688000 /usr/local/jdk1.4.1/jre/lib/i386/libzip.so 0x34362000 /usr/local/jdk1.4.1/jre/lib/i386/libawt.so 0x345c8000 /usr/local/jdk1.4.1/jre/lib/i386/libmlib_image.so 0x2c147000 /usr/X11R6/lib/libXp.so.6 0x34614000 /usr/X11R6/lib/libXt.so.6 0x34663000 /usr/X11R6/lib/libXext.so.6 0x34671000 /usr/X11R6/lib/libXtst.so.6 0x34676000 /usr/X11R6/lib/libX11.so.6 0x3473b000 /usr/X11R6/lib/libSM.so.6 0x34744000 /usr/X11R6/lib/libICE.so.6 0x3475b000 /usr/local/jdk1.4.1/jre/lib/i386/libfontmanager.so 0x34823000 /usr/X11R6/lib/X11/locale/common/xlocale.so.2 0x34825000 /usr/X11R6/lib/X11/locale/common/xlibi18n.so.2 0x3482b000 /usr/X11R6/lib/X11/locale/common/ximcp.so.2 0x34849000 /usr/X11R6/lib/X11/locale/common/xomGeneric.so.2 0x2804e000 /usr/libexec/ld-elf.so.1 Local Time = Wed Mar 12 23:37:52 2003 Elapsed Time = 0 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.1-p3-root_11_mar_2003_22_07 mixed mode) # # An error report file has been saved as /tmp/hs_err_pid67387.log. # Please refer to the file for further information. # Thanks, --- SUGIMURA Takashi http://YasudaKei.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 7: 2:26 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA89237B401 for ; Wed, 12 Mar 2003 07:02:22 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74C8D43FBF for ; Wed, 12 Mar 2003 07:02:19 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2CHE4mJ047663; Wed, 12 Mar 2003 17:14:05 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2CF92ZR002160; Wed, 12 Mar 2003 17:09:02 +0200 (EET) (envelope-from ml) Date: Wed, 12 Mar 2003 17:09:02 +0200 From: Alexey Zelkin To: "SUGIMURA Takashi ?$B?yB Cc: freebsd-java@FreeBSD.ORG Subject: Re: core dumped JDK 1.4.1 demo Message-ID: <20030312170902.A2112@phantom.cris.net> References: <20030312.234832.730610244.sugimura@jp.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030312.234832.730610244.sugimura@jp.FreeBSD.org>; from sugimura@jp.FreeBSD.org on Wed, Mar 12, 2003 at 11:48:32PM +0900 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 12, 2003 at 11:48:32PM +0900, SUGIMURA Takashi ?$B?yB Hello all, > > Yesterday I made JDK 1.4.1p3 successfully, > but I cannot execute JDK demos using AWT or Swing. > > How can I help you to solve this problem? 1. Post backtrace of core file generated on this error. 2. Try 'java_g' instead of 'java', if it fails too, post one more backtrace. PS: To avoid spaming of list - please post backtraces to me privately. > > > My environment: > 5.0-current (2003/03/04) > XFree86 4.2.0_1 > XFree86-libraries-4.2.1_6 > open-motif-2.2.2_1 > etc... > > % java -version > java version "1.4.1-p3" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-p3-root_11_mar_2003_22_07) > Java HotSpot(TM) Client VM (build 1.4.1-p3-root_11_mar_2003_22_07, mixed mode) > > > for example, > > % cd /usr/local/jdk1.4.1/demo/jfc/Java2D > % java -jar Java2Demo.jar > > This cause errors as follows: > > -------------------------------------------------- > An unexpected exception has been detected in native code outside the VM. > Unexpected Signal : 10 occurred at PC=0x3462B0CD > Function=XtWidgetToApplicationContext+0x1D > Library=/usr/X11R6/lib/libXt.so.6 > > Current Java thread: > at sun.awt.motif.MToolkit.loadSystemColors(Native Method) > at java.awt.SystemColor.updateSystemColors(SystemColor.java:417) > at java.awt.SystemColor.(SystemColor.java:409) > at sun.awt.motif.MComponentPeer.pSetBackground(Native Method) > at sun.awt.motif.MPanelPeer.setBackground(MPanelPeer.java:69) > at sun.awt.motif.MComponentPeer.initialize(MComponentPeer.java:179) > at sun.awt.motif.MComponentPeer.init(MComponentPeer.java:225) > at sun.awt.motif.MWindowPeer.init(MWindowPeer.java:93) > at sun.awt.motif.MFramePeer.(MFramePeer.java:58) > at sun.awt.motif.MToolkit.createFrame(MToolkit.java:197) > at java.awt.Frame.addNotify(Frame.java:469) > - locked <0x2c659bd8> (a java.awt.Component$AWTTreeLock) > at java.awt.Window.show(Window.java:448) > at java.awt.Component.show(Component.java:1134) > at java.awt.Component.setVisible(Component.java:1089) > at java2d.Java2Demo.main(Java2Demo.java:476) > > Dynamic libraries: > 0x8048000 java > 0x2806f000 /usr/lib/libc_r.so.5 > 0x28092000 /usr/lib/libc.so.5 > 0x28160000 /usr/local/jdk1.4.1/jre/lib/i386/client/libjvm.so > 0x285b9000 /usr/lib/libstdc++.so.4 > 0x2862d000 /usr/lib/libm.so.2 > 0x2864b000 /usr/local/jdk1.4.1/jre/lib/i386/native_threads/libhpi.so > 0x28655000 /usr/local/jdk1.4.1/jre/lib/i386/libverify.so > 0x2866a000 /usr/local/jdk1.4.1/jre/lib/i386/libjava.so > 0x28688000 /usr/local/jdk1.4.1/jre/lib/i386/libzip.so > 0x34362000 /usr/local/jdk1.4.1/jre/lib/i386/libawt.so > 0x345c8000 /usr/local/jdk1.4.1/jre/lib/i386/libmlib_image.so > 0x2c147000 /usr/X11R6/lib/libXp.so.6 > 0x34614000 /usr/X11R6/lib/libXt.so.6 > 0x34663000 /usr/X11R6/lib/libXext.so.6 > 0x34671000 /usr/X11R6/lib/libXtst.so.6 > 0x34676000 /usr/X11R6/lib/libX11.so.6 > 0x3473b000 /usr/X11R6/lib/libSM.so.6 > 0x34744000 /usr/X11R6/lib/libICE.so.6 > 0x3475b000 /usr/local/jdk1.4.1/jre/lib/i386/libfontmanager.so > 0x34823000 /usr/X11R6/lib/X11/locale/common/xlocale.so.2 > 0x34825000 /usr/X11R6/lib/X11/locale/common/xlibi18n.so.2 > 0x3482b000 /usr/X11R6/lib/X11/locale/common/ximcp.so.2 > 0x34849000 /usr/X11R6/lib/X11/locale/common/xomGeneric.so.2 > 0x2804e000 /usr/libexec/ld-elf.so.1 > > Local Time = Wed Mar 12 23:37:52 2003 > Elapsed Time = 0 > # > # The exception above was detected in native code outside the VM > # > # Java VM: Java HotSpot(TM) Client VM (1.4.1-p3-root_11_mar_2003_22_07 mixed mode) > # > # An error report file has been saved as /tmp/hs_err_pid67387.log. > # Please refer to the file for further information. > # > > > Thanks, > --- > SUGIMURA Takashi http://YasudaKei.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 7:37:14 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7205E37B401 for ; Wed, 12 Mar 2003 07:37:13 -0800 (PST) Received: from mail.mstar2.net (mail.mstar2.net [216.126.197.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8158043FB1 for ; Wed, 12 Mar 2003 07:37:12 -0800 (PST) (envelope-from gsemones@treenleaf.com) Date: Wed, 12 Mar 2003 08:35:15 -0800 Message-Id: <200303120835.AA1746731258@mail.mstar2.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: "Guerry Semones" Reply-To: X-Sender: To: Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? X-Mailer: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thanks much for the responses, and for the patch. I'm taking advantage of them, but I still have an open issue: Will this patch or a similar fix make its way into a 1.3.1_p9 in the future. Unfortunately, my concern here is from a customer support standpoint. If one of our customer's tries to use our product with with the 1.3.1_p8 (the "latest" and the version that passed compatibility tests, they will have this problem if using SSL. I could force the fix by using Antony's approach in my JNI code, or point customer's to the problem in the source code, or even share Haro's patch, but ideally for customer support, it'd be better to just have them get a patch 9. Sorry for all the questions, Thanks in advance, Guerry ----- Guerry A. Semones Nautilus Ventures, LLC. Senior Software Developer http://www.tsunamiresearch.com http://www.hivecomputing.com guerry@nautilusventures.com 314-336-5080 x107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 8:14:12 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9F8237B401 for ; Wed, 12 Mar 2003 08:14:09 -0800 (PST) Received: from scrooge.etek.chalmers.se (scrooge.etek.chalmers.se [129.16.32.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B05943FE3 for ; Wed, 12 Mar 2003 08:13:59 -0800 (PST) (envelope-from b@etek.chalmers.se) Received: from scrooge.etek.chalmers.se (b@localhost [127.0.0.1]) by scrooge.etek.chalmers.se (8.12.3/8.12.3) with ESMTP id h2CGDvca030272 for ; Wed, 12 Mar 2003 17:13:57 +0100 (CET) (envelope-from b@etek.chalmers.se) Received: from localhost (b@localhost) by scrooge.etek.chalmers.se (8.12.3/8.12.3/Submit) with ESMTP id h2CGDuq4030269 for ; Wed, 12 Mar 2003 17:13:57 +0100 (CET) X-Authentication-Warning: scrooge.etek.chalmers.se: b owned process doing -bs Date: Wed, 12 Mar 2003 17:13:56 +0100 (CET) From: Magnus B{ckstr|m To: freebsd-java@freebsd.org Subject: "unexpected exception" Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Another data point for those of you chasing bugs; please advise if I should provide more/other info. Magnus nrq@knase19(~/4.8)> java -jar bluej-121.jar 2003-mar-12 17:05:58 java.util.prefs.FileSystemPreferences$3 run VARNING: Could not create system preferences directory. System preferences are u nusable. 2003-mar-12 17:05:59 java.util.prefs.FileSystemPreferences$5 run INFO: Created user preferences directory. An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 4 occurred at PC=0x34A7E7C5 Function=Java_sun_dc_pr_PathStroker_cInitialize+0x141 Library=/usr/local/jdk1.4.1/jre/lib/i386/libdcpr.so Current Java thread: at sun.dc.pr.PathStroker.cInitialize(Native Method) at sun.dc.pr.PathStroker.(PathStroker.java:60) at sun.java2d.pipe.DuctusRenderer.createStroker(DuctusRenderer.java:101) at sun.java2d.pipe.LoopPipe.getStrokeSpans(LoopPipe.java:238) at sun.awt.X11Renderer.draw(X11Renderer.java:241) at sun.java2d.pipe.PixelToShapeConverter.drawLine(PixelToShapeConverter. java:34) at sun.java2d.pipe.ValidatePipe.drawLine(ValidatePipe.java:34) at sun.java2d.SunGraphics2D.drawLine(SunGraphics2D.java:1954) at javax.swing.plaf.basic.BasicProgressBarUI.paintDeterminate(BasicProgr essBarUI.java:651) at javax.swing.plaf.metal.MetalProgressBarUI.paintDeterminate(MetalProgr essBarUI.java:45) at javax.swing.plaf.basic.BasicProgressBarUI.paint(BasicProgressBarUI.ja va:335) at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142) at javax.swing.JComponent.paintComponent(JComponent.java:541) at javax.swing.JComponent.paint(JComponent.java:808) at javax.swing.JComponent.paintChildren(JComponent.java:647) - locked <0x2c727c68> (a java.awt.Component$AWTTreeLock) at javax.swing.JComponent.paint(JComponent.java:817) at javax.swing.JComponent.paintChildren(JComponent.java:647) - locked <0x2c727c68> (a java.awt.Component$AWTTreeLock) at javax.swing.JComponent.paint(JComponent.java:817) at javax.swing.JComponent.paintChildren(JComponent.java:647) - locked <0x2c727c68> (a java.awt.Component$AWTTreeLock) at javax.swing.JComponent.paint(JComponent.java:817) at javax.swing.JLayeredPane.paint(JLayeredPane.java:552) at javax.swing.JComponent.paintChildren(JComponent.java:647) - locked <0x2c727c68> (a java.awt.Component$AWTTreeLock) at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4778) at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4724) at javax.swing.JComponent.paint(JComponent.java:798) at java.awt.GraphicsCallback$PaintCallback.run(GraphicsCallback.java:21) at sun.awt.SunGraphicsCallback.runOneComponent(SunGraphicsCallback.java: 60) at sun.awt.SunGraphicsCallback.runComponents(SunGraphicsCallback.java:97 ) at java.awt.Container.paint(Container.java:1309) at sun.awt.RepaintArea.paint(RepaintArea.java:177) at sun.awt.motif.MComponentPeer.handleEvent(MComponentPeer.java:374) at java.awt.Component.dispatchEventImpl(Component.java:3658) at java.awt.Container.dispatchEventImpl(Container.java:1623) at java.awt.Window.dispatchEventImpl(Window.java:1585) at java.awt.Component.dispatchEvent(Component.java:3439) at java.awt.EventQueue.dispatchEvent(EventQueue.java:450) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh read.java:197) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre ad.java:150) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136) at java.awt.EventDispatchThread.run(EventDispatchThread.java:99) Dynamic libraries: 0x8048000 java 0x2806b000 /usr/lib/libc_r.so.4 0x28121000 /usr/local/jdk1.4.1/jre/lib/i386/client/libjvm.so 0x286b6000 /usr/lib/libstdc++.so.3 0x286fb000 /usr/lib/libm.so.2 0x28716000 /usr/local/jdk1.4.1/jre/lib/i386/native_threads/libhpi.so 0x28720000 /usr/local/jdk1.4.1/jre/lib/i386/libverify.so 0x2873b000 /usr/local/jdk1.4.1/jre/lib/i386/libjava.so 0x2875c000 /usr/local/jdk1.4.1/jre/lib/i386/libzip.so 0x344fb000 /usr/local/jdk1.4.1/jre/lib/i386/libawt.so 0x34763000 /usr/local/jdk1.4.1/jre/lib/i386/libmlib_image.so 0x347b4000 /usr/X11R6/lib/libXp.so.6 0x347bc000 /usr/X11R6/lib/libXt.so.6 0x34806000 /usr/X11R6/lib/libXext.so.6 0x34814000 /usr/X11R6/lib/libXtst.so.6 0x34819000 /usr/X11R6/lib/libX11.so.6 0x348d4000 /usr/X11R6/lib/libSM.so.6 0x348dd000 /usr/X11R6/lib/libICE.so.6 0x2c21e000 /usr/X11R6/lib/libXThrStub.so.6 0x348f3000 /usr/local/jdk1.4.1/jre/lib/i386/libfontmanager.so 0x349bc000 /usr/X11R6/lib/X11/locale/common/xlcDef.so.2 0x349bf000 /usr/lib/libc.so.4 0x34a5a000 /usr/X11R6/lib/X11/locale/common/ximcp.so.2 0x34a76000 /usr/local/jdk1.4.1/jre/lib/i386/libdcpr.so 0x2804e000 /usr/libexec/ld-elf.so.1 Local Time = Wed Mar 12 17:06:05 2003 Elapsed Time = 16 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.1-p3-root_12_mar_2003_09_26 mixed mod e) # # An error report file has been saved as hs_err_pid388.log. # Please refer to the file for further information. # Abort (core dumped) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 8:17:10 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB8F437B404 for ; Wed, 12 Mar 2003 08:17:09 -0800 (PST) Received: from scrooge.etek.chalmers.se (scrooge.etek.chalmers.se [129.16.32.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE35643F85 for ; Wed, 12 Mar 2003 08:17:05 -0800 (PST) (envelope-from b@etek.chalmers.se) Received: from scrooge.etek.chalmers.se (b@localhost [127.0.0.1]) by scrooge.etek.chalmers.se (8.12.3/8.12.3) with ESMTP id h2CGH5ca030286 for ; Wed, 12 Mar 2003 17:17:05 +0100 (CET) (envelope-from b@etek.chalmers.se) Received: from localhost (b@localhost) by scrooge.etek.chalmers.se (8.12.3/8.12.3/Submit) with ESMTP id h2CGH5qN030283 for ; Wed, 12 Mar 2003 17:17:05 +0100 (CET) X-Authentication-Warning: scrooge.etek.chalmers.se: b owned process doing -bs Date: Wed, 12 Mar 2003 17:17:04 +0100 (CET) From: Magnus B{ckstr|m To: freebsd-java@freebsd.org Subject: Re: "unexpected exception" In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Oddly, when run with java_g this failure doesn't occur. Magnus On Wed, 12 Mar 2003, Magnus B{ckstr|m wrote: > Date: Wed, 12 Mar 2003 17:13:56 +0100 (CET) > From: Magnus B{ckstr|m > To: freebsd-java@freebsd.org > Subject: "unexpected exception" > > Another data point for those of you chasing bugs; please advise if I > should provide more/other info. >[etc] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 9:53: 2 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7405137B401 for ; Wed, 12 Mar 2003 09:53:01 -0800 (PST) Received: from mx0.gmx.net (mx0.gmx.net [213.165.64.100]) by mx1.FreeBSD.org (Postfix) with SMTP id AB85843F3F for ; Wed, 12 Mar 2003 09:52:59 -0800 (PST) (envelope-from JtRipper@gmx.net) Received: (qmail 3896 invoked by uid 0); 12 Mar 2003 17:52:58 -0000 Date: Wed, 12 Mar 2003 18:52:58 +0100 (MET) From: Andrew Mace To: freebsd-java@FreeBSD.ORG MIME-Version: 1.0 References: <20030311173159.GA78525@rcfile.org> Subject: build failure of jdk14 on 5.0 current X-Priority: 3 (Normal) X-Authenticated-Sender: #0000353824@gmx.net X-Authenticated-IP: [217.80.105.13] Message-ID: <16686.1047491578@www61.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I get the following error installing jdk14 on 5.0 current (11.3.2003): Compiling /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/monitorChunk.cpp Compiling /usr/ports/java/jdk14/work/hotspot/src/share/vm/opto/mulnode.cpp In file included from ../generated/incls/_mulnode.cpp.incl:113, from /usr/ports/java/jdk14/work/hotspot/src/share/vm/opto/mulnode.cpp:12: /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/thread.hpp:1285: Internal compiler error in pop_binding, at cp/decl.c:1196 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. gmake[3]: *** [mulnode.o] Error 1 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' gmake[2]: *** [the_vm] Error 2 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' gmake[1]: *** [product] Error 2 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' gmake: *** [product] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. Can anyone help me with this? Andrew -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 10:26:15 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5CBA37B404 for ; Wed, 12 Mar 2003 10:26:13 -0800 (PST) Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF70B43FA3 for ; Wed, 12 Mar 2003 10:26:12 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr3.xmission.com with spam-scanned (Exim 3.35 #1) id 18tAvc-0000Um-03; Wed, 12 Mar 2003 11:26:12 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 3.35 #1) id 18tAva-0000TN-03; Wed, 12 Mar 2003 11:26:11 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2CIQ6780737; Thu, 13 Mar 2003 04:56:06 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Thu, 13 Mar 2003 04:56:06 +1030 From: Greg Lewis To: Guerry Semones Cc: freebsd-java@freebsd.org Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Message-ID: <20030313045606.A80657@misty.eyesbeyond.com> References: <200303120835.AA1746731258@mail.mstar2.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303120835.AA1746731258@mail.mstar2.net>; from gsemones@treenleaf.com on Wed, Mar 12, 2003 at 08:35:15AM -0800 X-Spam-Status: No, hits=-3.8 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 12, 2003 at 08:35:15AM -0800, Guerry Semones wrote: > Thanks much for the responses, and for the patch. I'm taking > advantage of them, but I still have an open issue: > > Will this patch or a similar fix make its way into a 1.3.1_p9 in > the future. Unfortunately, my concern here is from a customer > support standpoint. If one of our customer's tries to use our > product with with the 1.3.1_p8 (the "latest" and the version that > passed compatibility tests, they will have this problem if using SSL. > > I could force the fix by using Antony's approach in my JNI code, > or point customer's to the problem in the source code, or even > share Haro's patch, but ideally for customer support, it'd be > better to just have them get a patch 9. Or you could just use the green threads + Classic VM combination which is what passed the compatibility tests. This error is _only_ for HotSpot which is clearly stated to be experimental for 1.3.1. To be more specific, if you want a compliant JDK, you will compile 1.3.1p8 without native threads or HotSpot and without optimisation. You will not use a JIT. That is the only setup which has tested as compliant so far. To answer your question about the patch being included in patchset 9, the answer is yes. I've got it in my local tree and will check it in to the repo soon and add a patch to the port after ports freeze is done. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 10:39:50 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B904637B404 for ; Wed, 12 Mar 2003 10:39:48 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id A763143F93 for ; Wed, 12 Mar 2003 10:39:45 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2CKpYmJ059190; Wed, 12 Mar 2003 20:51:35 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2CIkUGe003373; Wed, 12 Mar 2003 20:46:30 +0200 (EET) (envelope-from ml) Date: Wed, 12 Mar 2003 20:46:30 +0200 From: Alexey Zelkin To: Andrew Mace Cc: freebsd-java@FreeBSD.ORG Subject: Re: build failure of jdk14 on 5.0 current Message-ID: <20030312204630.A3342@phantom.cris.net> References: <20030311173159.GA78525@rcfile.org> <16686.1047491578@www61.gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <16686.1047491578@www61.gmx.net>; from JtRipper@gmx.net on Wed, Mar 12, 2003 at 06:52:58PM +0100 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It's internal gcc error and not related to build PS: I did built JDK on yesterday's CURRENT -- all is fine. On Wed, Mar 12, 2003 at 06:52:58PM +0100, Andrew Mace wrote: > I get the following error installing jdk14 on 5.0 current (11.3.2003): > > Compiling > /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/monitorChunk.cpp > Compiling /usr/ports/java/jdk14/work/hotspot/src/share/vm/opto/mulnode.cpp > In file included from ../generated/incls/_mulnode.cpp.incl:113, > from > /usr/ports/java/jdk14/work/hotspot/src/share/vm/opto/mulnode.cpp:12: > /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/thread.hpp:1285: > Internal > compiler error in pop_binding, at cp/decl.c:1196 > Please submit a full bug report, > with preprocessed source if appropriate. > See for instructions. > gmake[3]: *** [mulnode.o] Error 1 > gmake[3]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' > gmake[2]: *** [the_vm] Error 2 > gmake[2]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' > gmake[1]: *** [product] Error 2 > gmake[1]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' > gmake: *** [product] Error 2 > *** Error code 2 > > Stop in /usr/ports/java/jdk14. > > Can anyone help me with this? > > Andrew > > -- > +++ GMX - Mail, Messaging & more http://www.gmx.net +++ > Bitte lacheln! Fotogalerie online mit GMX ohne eigene Homepage! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 11:36:27 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1D4837B401 for ; Wed, 12 Mar 2003 11:36:25 -0800 (PST) Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28B0043F3F for ; Wed, 12 Mar 2003 11:36:25 -0800 (PST) (envelope-from parv_fm@mailsent.net) Received: from sdn-ap-001dcwashp0354.dialsprint.net ([63.188.1.100] helo=moo.holy.cow) by scaup.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 18tC1W-0000Mg-00; Wed, 12 Mar 2003 11:36:23 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id C9D6ED126; Wed, 12 Mar 2003 14:39:23 -0500 (EST) Date: Wed, 12 Mar 2003 14:39:23 -0500 From: parv To: leafy Cc: freebsd-java@FreeBSD.ORG Subject: Re: Enquiry about Java tutorial on FreeBSD Message-ID: <20030312193923.GA4065@moo.holy.cow> Mail-Followup-To: leafy , freebsd-java@FreeBSD.ORG References: <20030311085359.GA17557@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030311085359.GA17557@leafy.idv.tw> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org in message <20030311085359.GA17557@leafy.idv.tw>, wrote leafy thusly... > > On Tue, Mar 11, 2003 at 04:49:36PM +0800, yc.chang@askey.com.tw > wrote: > > I would like to see any tutorial about Java development on/for > > FreeBSD. For this reason, please kindly provide me any related > > documentation. > > > > I don't think we have a consolidated tutorial yet, but what do you > have in mind? I, personally, would settle for the jdk-doc & java-tutorial ports to be fixed... http://www.freebsd.org/cgi/query-pr.cgi?pr=47153 http://www.freebsd.org/cgi/query-pr.cgi?pr=48737 - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 11:47: 4 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C471C37B401 for ; Wed, 12 Mar 2003 11:47:02 -0800 (PST) Received: from hyperreal.org (taz3.hyperreal.org [209.237.226.90]) by mx1.FreeBSD.org (Postfix) with SMTP id ECB9D43FBF for ; Wed, 12 Mar 2003 11:47:01 -0800 (PST) (envelope-from brian@hyperreal.org) Received: (qmail 53000 invoked from network); 12 Mar 2003 19:47:03 -0000 Received: from localhost.hyperreal.org (HELO yez.hyperreal.org) (127.0.0.1) by localhost.hyperreal.org with SMTP; 12 Mar 2003 19:47:03 -0000 Received: (qmail 14409 invoked by uid 1000); 12 Mar 2003 19:49:02 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 12 Mar 2003 19:49:02 -0000 Date: Wed, 12 Mar 2003 11:49:02 -0800 (PST) From: Brian Behlendorf To: Tom Samplonius Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk14 make package In-Reply-To: Message-ID: <20030312113725.H11907@yez.hyperreal.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost.hyperreal.org 1.6.2 0/1000/N Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 11 Mar 2003, Tom Samplonius wrote: > On Tue, 11 Mar 2003, Brian Behlendorf wrote: > > > > > It builds and installs great for me, kudos Alexey! > > But "make package" appears to barf: > ... > > I had no problems here. Do those files actually exist on your system? I > think they are supposed to. Perhaps there was a problem extracting the > tarball? For example: tar: jdk1.4.1/demo/jfc/SwingSet2/resources/swingset.properties: Cannot stat: No such file or directory I can find that file in the work/ dir: ./work/control/build/bsd-i586/tmp/demo_swing/SwingSet2/classes/resources/swingset.properties ./work/j2se/src/share/demo/jfc/SwingSet2/resources/swingset.properties under /usr/ports/java/jdk14, but nothing with the name "swingset.properties" under /usr/local/jdk1.4.1. /usr/local/jdk1.4.1/demo/jfc/SwingSet2/ does exist, but it contains: taz3# ls -s /usr/local/jdk1.4.1/demo/jfc/SwingSet2/ total 1366 2 README.txt 2 SwingSet2.html 1360 SwingSet2.jar 2 src But no "resources" directory, which is what "make package" appears to want to put in the tarball. A "make deinstall; make reinstall" didn't put it there, either. Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 14:17:48 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F0FC37B401 for ; Wed, 12 Mar 2003 14:17:36 -0800 (PST) Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44FD043F85 for ; Wed, 12 Mar 2003 14:17:35 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr1.xmission.com with spam-scanned (Exim 3.35 #1) id 18tEXN-0006go-01 for freebsd-java@freebsd.org; Wed, 12 Mar 2003 15:17:26 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.35 #1) id 18tEUJ-0005Gi-01; Wed, 12 Mar 2003 15:14:16 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2CMEBk81506; Thu, 13 Mar 2003 08:44:11 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Thu, 13 Mar 2003 08:44:10 +1030 From: Greg Lewis To: Brian Behlendorf Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk14 make package Message-ID: <20030313084410.A81476@misty.eyesbeyond.com> References: <20030311164538.B10991@yez.hyperreal.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="/9DWx/yDrRhgMJTb" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030311164538.B10991@yez.hyperreal.org>; from brian@hyperreal.org on Tue, Mar 11, 2003 at 04:51:52PM -0800 X-Spam-Status: No, hits=-4.0 required=8.0 tests=BALANCE_FOR_LONG_20K,IN_REP_TO,PATCH_UNIFIED_DIFF, REFERENCES,SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_MUTT, X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Mar 11, 2003 at 04:51:52PM -0800, Brian Behlendorf wrote: > It builds and installs great for me, kudos Alexey! > But "make package" appears to barf: Please try with the attached patch applied to pkg-plist. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pkg-plist.diff" Index: pkg-plist =================================================================== RCS file: /var/fcvs/ports/java/jdk14/pkg-plist,v retrieving revision 1.14 diff -u -r1.14 pkg-plist --- pkg-plist 6 Mar 2003 23:18:23 -0000 1.14 +++ pkg-plist 12 Mar 2003 22:13:15 -0000 @@ -1,3 +1,4 @@ + jdk%%JDK_VERSION%%/COPYRIGHT jdk%%JDK_VERSION%%/LICENSE jdk%%JDK_VERSION%%/README @@ -413,193 +414,6 @@ jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/README.txt jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/SwingSet2.html jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/SwingSet2.jar -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/ant.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/bug.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/About.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/COPYRIGHT -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/apple.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/asparagus.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/banana.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/broccoli.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/cantaloupe.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/carrot.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/corn.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/grapefruit.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/grapes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/kiwi.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/onion.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/peach.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/pear.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/pepper.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/pickle.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/pineapple.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/raspberry.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/strawberry.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/tomato.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food/watermelon.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/cab.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/cab_small.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/fish.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/fish_small.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/moon.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/moon_small.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/sun.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc/sun_small.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/COPYRIGHT -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/ant.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/book.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/bug.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/bug2.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/crest.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/king.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/micro.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo/seaweed.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Splash.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b1.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b1d.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b1p.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b1r.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b2.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b2d.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b2p.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b2r.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b3.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b3d.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b3p.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/b3r.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/bl.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/bldn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/bm.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/bmdn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/br.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/brdn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/c.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/cb.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/cbr.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/cbrs.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/cbs.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/cdn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/ml.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/mldn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/mr.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/mrdn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/rb.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/rbp.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/rbr.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/rbrs.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/rbs.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/tl.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/tldn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/tm.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/tmdn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/toggle.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/toggledn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/tr.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons/trdn.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/brenteyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/brenthair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/brentmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/georgeseyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/georgeshair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/georgesmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/hanseyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/hanshair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/hansmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/howardeyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/howardhair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/howardmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jameseyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jameshair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jamesmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jeffeyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jeffhair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jeffmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/joneyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jonhair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/jonmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/laraeyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/larahair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/laramouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/larryeyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/larryhair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/larrymouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/lisaeyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/lisahair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/lisamouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/michaeleyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/michaelhair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/michaelmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/philipeyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/philiphair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/philipmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/scotteyes.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/scotthair.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox/scottmouth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/filechooser/find.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/filechooser/gifIcon.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/filechooser/help.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/filechooser/jpgIcon.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/htmldemo/back.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/htmldemo/forward.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/htmldemo/header.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/blue.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/cyan.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/gray.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/green.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/magenta.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/red.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list/yellow.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/optionpane/bottle.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/optionpane/ibd.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/optionpane/ibu.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/COPYRIGHT -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/colheader.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/crayons.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/lowerleft.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/rowheader.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/upperleft.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane/upperright.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/splitpane/README -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/splitpane/earth.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/splitpane/moon.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/blake.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/brooke.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/david.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/ewan.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/ewan.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/hania.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/laine.jpg -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/matthew.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane/stephen.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JButton.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JColorChooser.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JComboBox.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JDesktop.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JDialog.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JEditorPane.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JFileChooser.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JList.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JMenu.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JOptionPane.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JProgressBar.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JRadioButton.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JScrollBar.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JScrollPane.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JSlider.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JSplitPane.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JTabbedPane.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JTable.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/JTree.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar/ToolTip.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tooltip/cow.gif -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/index.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/king.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/preface.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/seaweed.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/swingset.properties -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/swingset_zh_CN.properties -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/title.html -jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/tree.txt jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/src/AquaTheme.java jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/src/BezierAnimationPanel.java jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/src/ButtonDemo.java @@ -1236,133 +1050,116 @@ @unexec rmdir %D/share/doc/java 2>/dev/null || true @exec %D/bin/registervm "%D/jdk%%JDK_VERSION%%/bin/java # FREEBSD-JDK%%JDK_VERSION%%" @unexec %D/bin/unregistervm FREEBSD-JDK%%JDK_VERSION%% -@dirrm jdk%%JDK_VERSION%%/bin -@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/audio -@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans -@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images/SimpleAnimation -@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images -@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator -@dirrm jdk%%JDK_VERSION%%/demo/applets/ArcTest -@dirrm jdk%%JDK_VERSION%%/demo/applets/BarChart -@dirrm jdk%%JDK_VERSION%%/demo/applets/Blink -@dirrm jdk%%JDK_VERSION%%/demo/applets/CardTest -@dirrm jdk%%JDK_VERSION%%/demo/applets/Clock -@dirrm jdk%%JDK_VERSION%%/demo/applets/DitherTest -@dirrm jdk%%JDK_VERSION%%/demo/applets/DrawTest -@dirrm jdk%%JDK_VERSION%%/demo/applets/Fractal -@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphLayout/audio -@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphLayout -@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphicsTest -@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap/audio -@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap/images -@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap -@dirrm jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds -@dirrm jdk%%JDK_VERSION%%/demo/applets/JumpingBox -@dirrm jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models -@dirrm jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer -@dirrm jdk%%JDK_VERSION%%/demo/applets/NervousText -@dirrm jdk%%JDK_VERSION%%/demo/applets/SimpleGraph -@dirrm jdk%%JDK_VERSION%%/demo/applets/SortDemo -@dirrm jdk%%JDK_VERSION%%/demo/applets/SpreadSheet -@dirrm jdk%%JDK_VERSION%%/demo/applets/SymbolTest -@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio -@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe/images -@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe -@dirrm jdk%%JDK_VERSION%%/demo/applets/WireFrame/models -@dirrm jdk%%JDK_VERSION%%/demo/applets/WireFrame -@dirrm jdk%%JDK_VERSION%%/demo/applets -@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/images -@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Font2DTest/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Font2DTest -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Arcs_Curves -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Clipping -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Colors -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Composite -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Fonts -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Images -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Lines -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Mix -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Paint -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Paths +@dirrm jdk%%JDK_VERSION%%/man/man1 +@dirrm jdk%%JDK_VERSION%%/man +@dirrm jdk%%JDK_VERSION%%/lib +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Pacific +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Indian +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Europe +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Etc +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Australia +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Atlantic +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Asia +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Antarctica +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America/North_Dakota +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America/Kentucky +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America/Indiana +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Africa +@dirrm jdk%%JDK_VERSION%%/jre/lib/zi +@dirrm jdk%%JDK_VERSION%%/jre/lib/security +@dirrm jdk%%JDK_VERSION%%/jre/lib/images/cursors +@dirrm jdk%%JDK_VERSION%%/jre/lib/images +@dirrm jdk%%JDK_VERSION%%/jre/lib/im +@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/server +@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/native_threads +@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/client +@dirrm jdk%%JDK_VERSION%%/jre/lib/i386 +@dirrm jdk%%JDK_VERSION%%/jre/lib/fonts +@dirrm jdk%%JDK_VERSION%%/jre/lib/ext +@dirrm jdk%%JDK_VERSION%%/jre/lib/cmm +@dirrm jdk%%JDK_VERSION%%/jre/lib/audio +@dirrm jdk%%JDK_VERSION%%/jre/lib/applet +@dirrm jdk%%JDK_VERSION%%/jre/lib +@dirrm jdk%%JDK_VERSION%%/jre/bin +@dirrm jdk%%JDK_VERSION%%/jre +@dirrm jdk%%JDK_VERSION%%/include/bsd +@dirrm jdk%%JDK_VERSION%%/include +@dirrm jdk%%JDK_VERSION%%/demo/jpda +@dirrm jdk%%JDK_VERSION%%/demo/jfc/TableExample/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/TableExample +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2 +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingApplet +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree/images +@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks @dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Transforms +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Paths +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Paint +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Mix +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Lines +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Images +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Fonts +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Composite +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Colors +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Clipping +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos/Arcs_Curves @dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d/demos @dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src/java2d @dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D/src @dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree/images -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingApplet -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/food -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub/misc -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/ImageClub -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/Octavo -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/buttons -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/combobox -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/filechooser -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/htmldemo -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/list -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/optionpane -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/scrollpane -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/splitpane -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tabbedpane -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/toolbar -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images/tooltip -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources/images -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/resources -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet2 -@dirrm jdk%%JDK_VERSION%%/demo/jfc/TableExample/src -@dirrm jdk%%JDK_VERSION%%/demo/jfc/TableExample +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Font2DTest/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/Font2DTest +@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/src +@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/images +@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo @dirrm jdk%%JDK_VERSION%%/demo/jfc -@dirrm jdk%%JDK_VERSION%%/demo/jpda +@dirrm jdk%%JDK_VERSION%%/demo/applets/WireFrame/models +@dirrm jdk%%JDK_VERSION%%/demo/applets/WireFrame +@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe/images +@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio +@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe +@dirrm jdk%%JDK_VERSION%%/demo/applets/SymbolTest +@dirrm jdk%%JDK_VERSION%%/demo/applets/SpreadSheet +@dirrm jdk%%JDK_VERSION%%/demo/applets/SortDemo +@dirrm jdk%%JDK_VERSION%%/demo/applets/SimpleGraph +@dirrm jdk%%JDK_VERSION%%/demo/applets/NervousText +@dirrm jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models +@dirrm jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer +@dirrm jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds +@dirrm jdk%%JDK_VERSION%%/demo/applets/JumpingBox +@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap/images +@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap/audio +@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap +@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphicsTest +@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphLayout/audio +@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphLayout +@dirrm jdk%%JDK_VERSION%%/demo/applets/Fractal +@dirrm jdk%%JDK_VERSION%%/demo/applets/DrawTest +@dirrm jdk%%JDK_VERSION%%/demo/applets/DitherTest +@dirrm jdk%%JDK_VERSION%%/demo/applets/Clock +@dirrm jdk%%JDK_VERSION%%/demo/applets/CardTest +@dirrm jdk%%JDK_VERSION%%/demo/applets/Blink +@dirrm jdk%%JDK_VERSION%%/demo/applets/BarChart +@dirrm jdk%%JDK_VERSION%%/demo/applets/ArcTest +@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images/SimpleAnimation +@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans +@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images +@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/audio +@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator +@dirrm jdk%%JDK_VERSION%%/demo/applets @dirrm jdk%%JDK_VERSION%%/demo -@dirrm jdk%%JDK_VERSION%%/include/bsd -@dirrm jdk%%JDK_VERSION%%/include -@dirrm jdk%%JDK_VERSION%%/jre/bin -@dirrm jdk%%JDK_VERSION%%/jre/lib/audio -@dirrm jdk%%JDK_VERSION%%/jre/lib/applet -@dirrm jdk%%JDK_VERSION%%/jre/lib/cmm -@dirrm jdk%%JDK_VERSION%%/jre/lib/ext -@dirrm jdk%%JDK_VERSION%%/jre/lib/fonts -@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/client -@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/native_threads -@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/server -@dirrm jdk%%JDK_VERSION%%/jre/lib/i386 -@dirrm jdk%%JDK_VERSION%%/jre/lib/im -@dirrm jdk%%JDK_VERSION%%/jre/lib/images/cursors -@dirrm jdk%%JDK_VERSION%%/jre/lib/images -@dirrm jdk%%JDK_VERSION%%/jre/lib/security -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Africa -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America/Indiana -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America/Kentucky -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America/North_Dakota -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/America -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Antarctica -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Asia -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Atlantic -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Australia -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Etc -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Europe -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Indian -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi/Pacific -@dirrm jdk%%JDK_VERSION%%/jre/lib/zi -@dirrm jdk%%JDK_VERSION%%/jre/lib -@dirrm jdk%%JDK_VERSION%%/jre -@dirrm jdk%%JDK_VERSION%%/lib -@dirrm jdk%%JDK_VERSION%%/man/man1 -@dirrm jdk%%JDK_VERSION%%/man +@dirrm jdk%%JDK_VERSION%%/bin @dirrm jdk%%JDK_VERSION%% --/9DWx/yDrRhgMJTb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 16: 2:19 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF33737B401 for ; Wed, 12 Mar 2003 16:02:18 -0800 (PST) Received: from hyperreal.org (taz3.hyperreal.org [209.237.226.90]) by mx1.FreeBSD.org (Postfix) with SMTP id EB8FB43F93 for ; Wed, 12 Mar 2003 16:02:17 -0800 (PST) (envelope-from brian@hyperreal.org) Received: (qmail 40972 invoked from network); 13 Mar 2003 00:02:20 -0000 Received: from localhost.hyperreal.org (HELO yez.hyperreal.org) (127.0.0.1) by localhost.hyperreal.org with SMTP; 13 Mar 2003 00:02:20 -0000 Received: (qmail 15790 invoked by uid 1000); 13 Mar 2003 00:04:17 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 13 Mar 2003 00:04:17 -0000 Date: Wed, 12 Mar 2003 16:04:17 -0800 (PST) From: Brian Behlendorf To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk14 make package In-Reply-To: <20030313084410.A81476@misty.eyesbeyond.com> Message-ID: <20030312160154.F15414@yez.hyperreal.org> References: <20030311164538.B10991@yez.hyperreal.org> <20030313084410.A81476@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost.hyperreal.org 1.6.2 0/1000/N Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Mar 2003, Greg Lewis wrote: > On Tue, Mar 11, 2003 at 04:51:52PM -0800, Brian Behlendorf wrote: > > It builds and installs great for me, kudos Alexey! > > But "make package" appears to barf: > > Please try with the attached patch applied to pkg-plist. Works great! Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 16:53:24 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0CFE37B401 for ; Wed, 12 Mar 2003 16:53:22 -0800 (PST) Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5217743F85 for ; Wed, 12 Mar 2003 16:53:21 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta06-svc.ntlworld.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20030313005319.CLOL26467.mta06-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Thu, 13 Mar 2003 00:53:19 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: Greg Lewis Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Date: Thu, 13 Mar 2003 00:53:17 +0000 User-Agent: KMail/1.4.2 Cc: freebsd-java@freebsd.org References: <200303120835.AA1746731258@mail.mstar2.net> <20030313045606.A80657@misty.eyesbeyond.com> In-Reply-To: <20030313045606.A80657@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303130053.19295.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wednesday 12 March 2003 6:26 pm, Greg Lewis wrote: > To be more specific, if you want a compliant JDK, you will compile > 1.3.1p8 without native threads or HotSpot and without optimisation. > You will not use a JIT. That is the only setup which has tested as > compliant so far. > > To answer your question about the patch being included in patchset 9, > the answer is yes. I've got it in my local tree and will check it in > to the repo soon and add a patch to the port after ports freeze is done= =2E On a semi-related thought... Will patchset 9 be adjusted for hotspot to u= se=20 the system gcc on -STABLE (ie gcc 2.9 instead of 3.2)... And will it be=20 possible to have the JDK compiled so that -classic and -hotspot builds ca= n=20 coexist? I have successfully compiled up p8 on my box with the system compiler and= it=20 appears to work well. I have also examined the work in jdk1.4 and merged = it=20 into 1.3 so that it no longer depends on the uthread_private.h kernel sou= rce. A "nice" little fun test for java is at www.motionplayground.com With it, you notice that JDK1.3p8 is still way slower than JDK1.4p3 And that JDK1.3p7+tya can perform more smoothly than p8... So - theres still some important issues in hotspot in 1.3. (I used Konq to launch the applet) TTFN, and thanks for the great effort :) - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+b9Z/ql7dp2cddmIRAh1LAJ9hJw2tap1mr/FyWEy30SS3FMfRBwCgv1U/ YeNZO8EILxhBm5f9ojL26Q4=3D =3DOQ5Z -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 12 18: 6:19 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BE0D37B404 for ; Wed, 12 Mar 2003 18:06:14 -0800 (PST) Received: from titan.kgt.co.jp (titan.kgt.co.jp [210.141.246.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56EEF43FDD for ; Wed, 12 Mar 2003 18:06:12 -0800 (PST) (envelope-from haro@kgt.co.jp) Received: from navgw.tt.kgt.co.jp (navgw [210.141.246.71]) by titan.kgt.co.jp (Postfix) with ESMTP id 0DD0C4A297; Thu, 13 Mar 2003 11:06:11 +0900 (JST) Received: from tt.kgt.co.jp (pegasus [192.168.10.1]) by navgw.tt.kgt.co.jp (Postfix) with ESMTP id DE33A47711; Thu, 13 Mar 2003 11:06:10 +0900 (JST) Received: from localhost [192.168.17.108] by tt.kgt.co.jp with ESMTP (SMTPD32-7.12) id A8B579F0148; Thu, 13 Mar 2003 11:11:01 +0900 Date: Thu, 13 Mar 2003 11:05:35 +0900 (JST) Message-Id: <20030313.110535.74756888.haro@kgt.co.jp> To: phantom@FreeBSD.org.ua, glewis@eyesbeyond.com Cc: freebsd-java@FreeBSD.ORG, sugimura@jp.FreeBSD.org Subject: Re: core dumped JDK 1.4.1 demo From: Munehiro Matsuda In-Reply-To: <20030312170902.A2112@phantom.cris.net> References: <20030312.234832.730610244.sugimura@jp.FreeBSD.org> <20030312170902.A2112@phantom.cris.net> X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, From: Alexey Zelkin Date: Wed, 12 Mar 2003 17:09:02 +0200 ::> Yesterday I made JDK 1.4.1p3 successfully, ::> but I cannot execute JDK demos using AWT or Swing. ::> ::> How can I help you to solve this problem? :: ::1. Post backtrace of core file generated on this error. :: ::2. Try 'java_g' instead of 'java', if it fails too, post one more backtrace. This problem has been reported before, and can happen both in jdk1.4.1-p3 and jdk1.3.1-p8 (with/without hotspot). See my old posting: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=594060+0+archive/2003/freebsd-java/20030209.freebsd-java Here are the known workarounds: 1. Unset XMODIFIERS environment variable before starting application. and/or 2. Setup malloc.conf as 'aj'. I think the problem is in open-motif-2.2.2 with XIM handling. I have been looking into the problem, but it's taken long time due to lack of my time and lack of experience with X Window programming. :-( Following are what I have found, so far. 1. Related lines in j2sdk1.3.1/src/solaris/native/sun/awt/awt_MToolkit.c are: 1813 frame = XtAppCreateShell("AWTColors", "XApplication", ....... 1831 text = XmCreateText(panel, "awtTextColor", args, argc); ....... 1947 XtDestroyWidget(frame); 2. Executing allocation of frame Widget in line 1813, content of frame pointer looks like this: (gdb) print *(CompositeWidget)frame $2 = {core = {self = 0x81c8800, widget_class = 0x2a49fde0, parent = 0x0, xrm_name = 1262, being_destroyed = 0 '\0', destroy_callbacks = 0x81cc960, constraints = 0x0, x = 0, y = 0, width = 0, height = 0, border_width = 0, managed = 0 '\0', sensitive = 1 '\001', ancestor_sensitive = 1 '\001', event_table = 0x81cc920, tm = {translations = 0x0, proc_table = 0x0, current_state = 0x0, lastEventTime = 0}, accelerators = 0x0, border_pixel = 0, border_pixmap = 2, popup_list = 0x0, num_popups = 0, name = 0x841571f "AWTColors", screen = 0x820af00, colormap = 32, window = 0, depth = 24, background_pixel = 16777215, background_pixmap = 2, visible = 1 '\001', mapped_when_managed = 1 '\001'}, composite = {children = 0x81c78d0, num_children = 1, num_slots = 2, insert_position = 0}} ^^^^^^^^^^^^^^^^^ Note that, ((CompositeWidget)frame)->composite->num_children is set to "1". 3. After allocation of text widget in line 1831, things looks different with XMODIFIERS environment variable set. (gdb) print *(CompositeWidget)frame $4 = {core = {self = 0x81c8800, widget_class = 0x2a49fde0, parent = 0x0, xrm_name = 1262, being_destroyed = 0 '\0', destroy_callbacks = 0x81d95a0, ..... mapped_when_managed = 1 '\001'}, composite = {children = 0x81c78d0, num_children = 2, num_slots = 2, insert_position = 0}} ^^^^^^^^^^^^^^^^^ As you can see, num_children has increased to "2". If XMODIFIERS is not, num_children will stay as "1". The increased composite widget looks like following, where you can see the "xmim_wrapper" name which indicates that it was allocated with in XmIm.c from open-motif. (gdb) print *((CompositeWidget)frame)->composite->children[1] $5 = {core = {self = 0x81cf580, widget_class = 0x2a5007a0, parent = 0x81c8800, xrm_name = 1651, being_destroyed = 0 '\0', destroy_callbacks = 0x0, constraints = 0x0, x = 0, y = 0, width = 10, height = 10, border_width = 1, managed = 0 '\0', sensitive = 1 '\001', ancestor_sensitive = 1 '\001', event_table = 0x0, tm = { translations = 0x0, proc_table = 0x0, current_state = 0x0, lastEventTime = 0}, accelerators = 0x0, border_pixel = 0, border_pixmap = 2, popup_list = 0x0, num_popups = 0, name = 0x81d57ff "xmim_wrapper", screen = 0x820af00, colormap = 32, window = 0, depth = 24, background_pixel = 16777215, background_pixmap = 2, visible = 1 '\001', mapped_when_managed = 1 '\001'}} 4. If I continue on from here, it will eventually dump core, as reported. But if I force num_children value back to "1", before calling XtDestroyWidget(frame) on line 1947, things run smoothly. (gdb) set *((CompositeWidget)frame)->composite->num_children = 1 Which indicates that, something is not cleaning up the extra child composite correctly. I think, this matches with the workaround that malloc.conf needs to be 'aj'. This is how far I got. Hope this helps, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kgt.co.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 5:33:12 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 597C037B404 for ; Thu, 13 Mar 2003 05:33:11 -0800 (PST) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5A8043FE0 for ; Thu, 13 Mar 2003 05:33:08 -0800 (PST) (envelope-from mantzios@softlab.ece.ntua.gr) Received: from theseas.softlab.ece.ntua.gr (theseas.softlab.ece.ntua.gr [147.102.1.1]) by diomedes.noc.ntua.gr (8.11.6/8.11.6) with ESMTP id h2DDX7W97396 for ; Thu, 13 Mar 2003 15:33:07 +0200 (EET) Received: from theseas.softlab.ece.ntua.gr (mantzios@localhost [127.0.0.1]) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2DDX5CF014622 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Thu, 13 Mar 2003 15:33:05 +0200 Received: from localhost (mantzios@localhost) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2DDX47B014615 for ; Thu, 13 Mar 2003 15:33:05 +0200 X-Authentication-Warning: theseas.softlab.ece.ntua.gr: mantzios owned process doing -bs Date: Thu, 13 Mar 2003 15:33:04 +0200 (EET) From: Mantzios Achilleus To: freebsd-java@freebsd.org Subject: general -stable problem In-Reply-To: <20021129002718.GA1818@gnuppy.monkey.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I just cvsup'ed with *default release=cvs tag=RELENG_4 as some of you kindly suggested to me. What i got as -STABLE is a FreeBSD 4.8-RC #5 System, that is all except stable. It cant cc, i get Fatal trap 12: page fault while in kernel mode and i wonder what happens. After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? Whats going on here? ---------------------------------------------------------------- | go to the source -> http://www.softlab.ece.ntua.gr/~mantzios | ---------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 5:52: 7 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53D4137B401 for ; Thu, 13 Mar 2003 05:52:06 -0800 (PST) Received: from nest.irfu.se (nest.irfu.se [130.238.30.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA2C643F93 for ; Thu, 13 Mar 2003 05:52:04 -0800 (PST) (envelope-from yuri@irfu.se) Received: from nest.irfu.se (localhost [127.0.0.1]) by nest.irfu.se (8.12.8/8.12.8) with ESMTP id h2DDohrJ014428; Thu, 13 Mar 2003 14:50:43 +0100 (CET) (envelope-from yuri@irfu.se) Received: from localhost (yuri@localhost) by nest.irfu.se (8.12.8/8.12.7/Submit) with ESMTP id h2DDocdS014425; Thu, 13 Mar 2003 14:50:38 +0100 (CET) X-Authentication-Warning: nest.irfu.se: yuri owned process doing -bs Date: Thu, 13 Mar 2003 14:50:38 +0100 (CET) From: Yuri Khotyaintsev To: Mantzios Achilleus Cc: freebsd-java@FreeBSD.ORG Subject: Re: general -stable problem In-Reply-To: Message-ID: <20030313144657.R14420@nest.irfu.se> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Mar 2003, Mantzios Achilleus wrote: > I just cvsup'ed with > *default release=cvs tag=RELENG_4 > as some of you kindly suggested to me. > > What i got as -STABLE is a > FreeBSD 4.8-RC #5 > System, that is all except stable. > > It cant cc, i get > Fatal trap 12: page fault while in kernel mode > and i wonder what happens. Have you updated both world and kernel as described in /usr/src/UPDATING ? > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? Yes. > Whats going on here? > > ---------------------------------------------------------------- > | go to the source -> http://www.softlab.ece.ntua.gr/~mantzios | > ---------------------------------------------------------------- > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > Yuri Khotyaintsev Swedish Institute of Space Physics, http://cluster.irfu.se/yuri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 5:55:33 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A8F337B401 for ; Thu, 13 Mar 2003 05:55:32 -0800 (PST) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 101C143FB1 for ; Thu, 13 Mar 2003 05:55:31 -0800 (PST) (envelope-from mantzios@softlab.ece.ntua.gr) Received: from theseas.softlab.ece.ntua.gr (theseas.softlab.ece.ntua.gr [147.102.1.1]) by diomedes.noc.ntua.gr (8.11.6/8.11.6) with ESMTP id h2DDtPW00148; Thu, 13 Mar 2003 15:55:26 +0200 (EET) Received: from theseas.softlab.ece.ntua.gr (mantzios@localhost [127.0.0.1]) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2DDtPCF015981 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 13 Mar 2003 15:55:25 +0200 Received: from localhost (mantzios@localhost) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2DDtOjW015977; Thu, 13 Mar 2003 15:55:24 +0200 X-Authentication-Warning: theseas.softlab.ece.ntua.gr: mantzios owned process doing -bs Date: Thu, 13 Mar 2003 15:55:24 +0200 (EET) From: Mantzios Achilleus To: Ernst de Haan Cc: freebsd-java@freebsd.org Subject: Re: general -stable problem In-Reply-To: <200303131436.25280.ernst.dehaan@nl.wanadoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ---------------------------------------------------------------- | go to the source -> http://www.softlab.ece.ntua.gr/~mantzios | ---------------------------------------------------------------- On Thu, 13 Mar 2003, Ernst de Haan wrote: > > It cant cc, i get > > Fatal trap 12: page fault while in kernel mode > > and i wonder what happens. > > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? > > Whats going on here? > > That's typically a hardware problem. Have you overclocked your machine or > have you some faulty memory? Nope, 1 hour ago 4.7 used to work like a charm! (but i must confess i have retained the same custom kernel CONFIG file) > > Ernst > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 5:57:44 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9621137B401 for ; Thu, 13 Mar 2003 05:57:42 -0800 (PST) Received: from www4.your-server.de (www4.your-server.de [213.133.104.4]) by mx1.FreeBSD.org (Postfix) with SMTP id BA9B243F3F for ; Thu, 13 Mar 2003 05:57:40 -0800 (PST) (envelope-from mattias@webweaver.de) Received: (qmail 31563 invoked from network); 13 Mar 2003 13:57:39 -0000 Received: from pd9545c93.dip.t-dialin.net (217.84.92.147) by www4.your-server.de with SMTP; 13 Mar 2003 13:57:39 -0000 Date: Thu, 13 Mar 2003 14:57:36 +0100 (CET) From: Mattias Schlenker X-X-Sender: mattias@curium.wg-net.test To: Mantzios Achilleus Cc: freebsd-java@FreeBSD.ORG Subject: Re: general -stable problem In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Mar 2003, Mantzios Achilleus wrote: > I just cvsup'ed with > *default release=cvs tag=RELENG_4 > as some of you kindly suggested to me. > > What i got as -STABLE is a > FreeBSD 4.8-RC #5 > System, that is all except stable. > > It cant cc, i get > Fatal trap 12: page fault while in kernel mode > and i wonder what happens. > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? > Whats going on here? I don't know... Luckily, what I checked out a few days ago did not even compile. I then found out that *default release=cvs tag=RELENG_4_7 did a much better job checking out a system that qualifies as stable: FreeBSD curium.wg-net.test 4.7-RELEASE-p7 FreeBSD 4.7-RELEASE-p7 #1: Mon Mar 10 17:39:18 CET 2003 Bye Matt -- Mattias Schlenker / Tel 0851 9441369 oder 0160 7352988 Freyunger Str. 42 / http://webweaver.de/ 94034 Passau / http://webweaver.de/mattias +-------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 5:59: 7 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7517437B401 for ; Thu, 13 Mar 2003 05:59:05 -0800 (PST) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDAF843F85 for ; Thu, 13 Mar 2003 05:59:03 -0800 (PST) (envelope-from mantzios@softlab.ece.ntua.gr) Received: from theseas.softlab.ece.ntua.gr (theseas.softlab.ece.ntua.gr [147.102.1.1]) by diomedes.noc.ntua.gr (8.11.6/8.11.6) with ESMTP id h2DDvjW00372; Thu, 13 Mar 2003 15:57:46 +0200 (EET) Received: from theseas.softlab.ece.ntua.gr (mantzios@localhost [127.0.0.1]) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2DDvjCF016145 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 13 Mar 2003 15:57:45 +0200 Received: from localhost (mantzios@localhost) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2DDviv2016141; Thu, 13 Mar 2003 15:57:44 +0200 X-Authentication-Warning: theseas.softlab.ece.ntua.gr: mantzios owned process doing -bs Date: Thu, 13 Mar 2003 15:57:44 +0200 (EET) From: Mantzios Achilleus To: Yuri Khotyaintsev Cc: freebsd-java@FreeBSD.ORG Subject: Re: general -stable problem In-Reply-To: <20030313144657.R14420@nest.irfu.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ---------------------------------------------------------------- | go to the source -> http://www.softlab.ece.ntua.gr/~mantzios | ---------------------------------------------------------------- On Thu, 13 Mar 2003, Yuri Khotyaintsev wrote: > On Thu, 13 Mar 2003, Mantzios Achilleus wrote: > > > I just cvsup'ed with > > *default release=cvs tag=RELENG_4 > > as some of you kindly suggested to me. > > > > What i got as -STABLE is a > > FreeBSD 4.8-RC #5 > > System, that is all except stable. > > > > It cant cc, i get > > Fatal trap 12: page fault while in kernel mode > > and i wonder what happens. > > Have you updated both world and kernel as described in /usr/src/UPDATING ? Sure make buildworld make buildkernel KERNCONF=ACHIX make installkernel KERNCONF=ACHIX make installworld as usual. > > > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? > > Yes. > I think a release candidate is something to be previewed not something STABLE! > > Whats going on here? > > > > ---------------------------------------------------------------- > > | go to the source -> http://www.softlab.ece.ntua.gr/~mantzios | > > ---------------------------------------------------------------- > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-java" in the body of the message > > > > > > Yuri Khotyaintsev > > Swedish Institute of Space Physics, > > http://cluster.irfu.se/yuri > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 6:46:23 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6FC437B404 for ; Thu, 13 Mar 2003 06:46:22 -0800 (PST) Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.168.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5516C43F75 for ; Thu, 13 Mar 2003 06:46:21 -0800 (PST) (envelope-from ernst@zaphod.euronet.nl) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.6/8.12.6) with ESMTP id h2DDaP9c023928; Thu, 13 Mar 2003 14:36:25 +0100 (CET) (envelope-from ernst@zaphod.euronet.nl) Received: (from ernst@localhost) by zaphod.euronet.nl (8.12.6/8.12.6/Submit) id h2DDaPDP023927; Thu, 13 Mar 2003 14:36:25 +0100 (CET) From: Ernst de Haan Organization: Wanadoo Nederland B.V. To: Mantzios Achilleus , freebsd-java@freebsd.org Subject: Re: general -stable problem Date: Thu, 13 Mar 2003 14:36:25 +0100 User-Agent: KMail/1.5 References: In-Reply-To: X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200303131436.25280.ernst.dehaan@nl.wanadoo.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > It cant cc, i get > Fatal trap 12: page fault while in kernel mode > and i wonder what happens. > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? > Whats going on here? That's typically a hardware problem. Have you overclocked your machine or have you some faulty memory? Ernst To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 6:47:32 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DCDB37B401 for ; Thu, 13 Mar 2003 06:47:31 -0800 (PST) Received: from anchor-post-35.mail.demon.net (anchor-post-35.mail.demon.net [194.217.242.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AF9F43FD7 for ; Thu, 13 Mar 2003 06:47:30 -0800 (PST) (envelope-from kevin@caomhin.demon.co.uk) Received: from caomhin.demon.co.uk ([62.49.21.186]) by anchor-post-35.mail.demon.net with esmtp (Exim 3.36 #2) id 18tTzV-0003gq-0Z for freebsd-java@freebsd.org; Thu, 13 Mar 2003 14:47:29 +0000 Message-ID: Date: Thu, 13 Mar 2003 14:46:30 +0000 To: freebsd-java@freebsd.org From: Kevin Golding Subject: Re: general -stable problem References: <20030313144657.R14420@nest.irfu.se> In-Reply-To: MIME-Version: 1.0 X-Mailer: Turnpike Integrated Version 5.01 U Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In article , Mantzios Achilleus writes >On Thu, 13 Mar 2003, Yuri Khotyaintsev wrote: > >> On Thu, 13 Mar 2003, Mantzios Achilleus wrote: >> > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? >> >> Yes. > >I think a release candidate is something to be previewed >not something STABLE! -STABLE is not certified stable: Kevin -- kevin@caomhin.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 7: 8:37 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8553837B401 for ; Thu, 13 Mar 2003 07:08:36 -0800 (PST) Received: from anchor-post-39.mail.demon.net (anchor-post-39.mail.demon.net [194.217.242.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D0843FBD for ; Thu, 13 Mar 2003 07:08:35 -0800 (PST) (envelope-from kevin@caomhin.demon.co.uk) Received: from caomhin.demon.co.uk ([62.49.21.186]) by anchor-post-39.mail.demon.net with esmtp (Exim 3.36 #2) id 18tUJu-0007jg-0d for freebsd-java@freebsd.org; Thu, 13 Mar 2003 15:08:34 +0000 Message-ID: <1VW5G0Bo7Jc+EwXF@caomhin.demon.co.uk> Date: Thu, 13 Mar 2003 15:08:24 +0000 To: freebsd-java@freebsd.org From: Kevin Golding Subject: Re: general -stable problem References: In-Reply-To: MIME-Version: 1.0 X-Mailer: Turnpike Integrated Version 5.01 U Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In article , Achilleus Mantzios writes >On Thu, 13 Mar 2003, Kevin Golding wrote: > >> In article > ntua.gr>, Mantzios Achilleus writes >> >> >On Thu, 13 Mar 2003, Yuri Khotyaintsev wrote: >> > >> >> On Thu, 13 Mar 2003, Mantzios Achilleus wrote: >> >> > After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? >> >> >> >> Yes. >> > >> >I think a release candidate is something to be previewed >> >not something STABLE! >> >> -STABLE is not certified stable: > 59-1/books/handbook/current-stable.html> > >Then whats the certified one?? >please provide some reltag. I don't think any which are particularly certified but -STABLE is a development branch, it's just a less aggressive development than -CURRENT. Basically if you want to avoid the pre-release and RC versions you need to stick with -RELEASE and security. Most people will track security which just has critical fixes and the most recent tag for that is RELENG_4_7 After -STABLE has done the RC stages you'll be able to use RELENG_4_8 Kevin -- kevin@caomhin.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 10:47:17 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0717C37B404 for ; Thu, 13 Mar 2003 10:47:15 -0800 (PST) Received: from ntua.gr (achilles.noc.ntua.gr [147.102.222.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ED8543FD7 for ; Thu, 13 Mar 2003 10:47:12 -0800 (PST) (envelope-from past@netmode.ntua.gr) Received: from netmode.ntua.gr (dolly.netmode.ece.ntua.gr [147.102.13.10]) by ntua.gr (8.11.6/8.11.6) with ESMTP id h2DIlAM19943; Thu, 13 Mar 2003 20:47:10 +0200 (EET) Received: from netmode.ntua.gr (ppp209.dialup.ntua.gr [147.102.223.209]) by netmode.ntua.gr (8.11.1/8.11.1) with ESMTP id h2DIl9C52059; Thu, 13 Mar 2003 20:47:09 +0200 (EET) (envelope-from past@netmode.ntua.gr) Message-ID: <3E70D21A.4080005@netmode.ntua.gr> Date: Thu, 13 Mar 2003 20:46:50 +0200 From: Panagiotis Astithas User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en, el MIME-Version: 1.0 To: Mantzios Achilleus Cc: freebsd-java@FreeBSD.ORG Subject: Re: general -stable problem References: <1VW5G0Bo7Jc+EwXF@caomhin.demon.co.uk> In-Reply-To: <1VW5G0Bo7Jc+EwXF@caomhin.demon.co.uk> X-Enigmail-Version: 0.71.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Kevin Golding wrote: > In article > , Achilleus Mantzios writes > >>On Thu, 13 Mar 2003, Kevin Golding wrote: >> >> >>>In article >>ntua.gr>, Mantzios Achilleus writes >>> >>> >>>>On Thu, 13 Mar 2003, Yuri Khotyaintsev wrote: >>>> >>>> >>>>>On Thu, 13 Mar 2003, Mantzios Achilleus wrote: >>>>> >>>>>>After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? >>>>> >>>>>Yes. >>>> >>>>I think a release candidate is something to be previewed >>>>not something STABLE! 4.8-RC is usually 99.9% 4.8-RELEASE, so to speak. So, you should follow the general procedure, when you encounter such anomalies in -STABLE: - Cvsup again, hoping that the bug (if it is a bug) might have been fixed. - Post a message to the freebsd-stable list, mentioning your symptoms. I will be cvsuping a few systems myself next week, so I sympathize very much your situation :-) Cheers, Panagiotis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 10:49: 8 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED74F37B401 for ; Thu, 13 Mar 2003 10:49:06 -0800 (PST) Received: from beavis.abacus.co.uk (beavis.abacus.co.uk [212.137.18.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6713143FAF for ; Thu, 13 Mar 2003 10:49:05 -0800 (PST) (envelope-from antony@abacus.co.uk) Received: from mailgate.abacus.co.uk (smtp [212.137.18.217]) by beavis.abacus.co.uk (8.12.8/8.12.8) with ESMTP id h2DIn4E3051899 for ; Thu, 13 Mar 2003 18:49:04 GMT (envelope-from antony@abacus.co.uk) Received: from dhcp-bl71.abacus.co.uk (dhcp-bl71.abacus.co.uk [192.168.99.71]) by mailgate.abacus.co.uk (8.9.3/8.9.3) with ESMTP id SAA10083; Thu, 13 Mar 2003 18:49:08 GMT Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: Alexey Zelkin Subject: UnsatisfiedLinkError in JDK14p3 Date: Thu, 13 Mar 2003 18:48:59 +0000 User-Agent: KMail/1.4.3 Cc: freebsd-java@FreeBSD.ORG References: <20030311173159.GA78525@rcfile.org> <16686.1047491578@www61.gmx.net> <20030312204630.A3342@phantom.cris.net> In-Reply-To: <20030312204630.A3342@phantom.cris.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303131849.01741.antony@abacus.co.uk> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am seeing the following exceptions on applications which use NIO... Such as OpenNMS java.lang.UnsatisfiedLinkError: init at sun.nio.ch.DevPollArrayWrapper.init(Native Method) at sun.nio.ch.DevPollArrayWrapper.(DevPollArrayWrapper.java:59) at sun.nio.ch.DevPollSelectorImpl.(DevPollSelectorImpl.java:54) at sun.nio.ch.DevPollSelectorProvider.openSelector(DevPollSelectorPro= vider.java:18) at sun.nio.ch.Util.getTemporarySelector(Util.java:57) at sun.nio.ch.SocketAdaptor$SocketInputStream.read(SocketAdaptor.java= :180) at sun.nio.ch.ChannelInputStream.read(ChannelInputStream.java:86) at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:40= 6) at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:446= ) at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:180) at java.io.InputStreamReader.read(InputStreamReader.java:167) at java.io.BufferedReader.fill(BufferedReader.java:136) at java.io.BufferedReader.readLine(BufferedReader.java:299) - --=20 ANTONY T CURTIS Tel: +44 (1635) 36222 Abacus Polar Holdings Ltd Fax: +44 (1635) 38670 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+cNKdA98IbJ8osCYRAqcnAKDa+RKBskGMXs/ZpW/iozxuhxkaZACgkB4O SJYjJ7jKElpb7dqwfN/XNGA=3D =3DoRhA -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 12:29:29 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 997AB37B401 for ; Thu, 13 Mar 2003 12:29:27 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id D90D143F85 for ; Thu, 13 Mar 2003 12:29:26 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr2.xmission.com with spam-scanned (Exim 3.35 #1) id 18tZGB-0007GT-02 for freebsd-java@freebsd.org; Thu, 13 Mar 2003 13:25:03 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 18tZEa-0006fF-02; Thu, 13 Mar 2003 13:23:24 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2DKNIe85045; Fri, 14 Mar 2003 06:53:18 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Fri, 14 Mar 2003 06:53:18 +1030 From: Greg Lewis To: Antony T Curtis Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Message-ID: <20030314065318.A85007@misty.eyesbeyond.com> References: <200303120835.AA1746731258@mail.mstar2.net> <20030313045606.A80657@misty.eyesbeyond.com> <200303130053.19295.antony.t.curtis@ntlworld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303130053.19295.antony.t.curtis@ntlworld.com>; from antony.t.curtis@ntlworld.com on Thu, Mar 13, 2003 at 12:53:17AM +0000 X-Spam-Status: No, hits=-3.8 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Mar 13, 2003 at 12:53:17AM +0000, Antony T Curtis wrote: > On a semi-related thought... Will patchset 9 be adjusted for hotspot to use > the system gcc on -STABLE (ie gcc 2.9 instead of 3.2)... And will it be > possible to have the JDK compiled so that -classic and -hotspot builds can > coexist? Maybe and maybe, respectively. It depends on volunteer time and interest. At the moment noone is specifically working on these issues (that I know of). > I have successfully compiled up p8 on my box with the system compiler and it > appears to work well. I have also examined the work in jdk1.4 and merged it > into 1.3 so that it no longer depends on the uthread_private.h kernel source. Where are the patches available? :). > A "nice" little fun test for java is at www.motionplayground.com > With it, you notice that JDK1.3p8 is still way slower than JDK1.4p3 > And that JDK1.3p7+tya can perform more smoothly than p8... > So - theres still some important issues in hotspot in 1.3. > (I used Konq to launch the applet) It does feel like HotSpot in 1.4.1 is more solid and performing better than HotSpot in 1.3.1. We basically need someone to step up to working on HotSpot in 1.3.1. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 14:40:25 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A89A637B401 for ; Thu, 13 Mar 2003 14:40:23 -0800 (PST) Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EE5543F75 for ; Thu, 13 Mar 2003 14:40:22 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20030313224020.WNHA11246.mta03-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Thu, 13 Mar 2003 22:40:20 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: Alexey Zelkin Subject: Re: UnsatisfiedLinkError in JDK14p3 Date: Thu, 13 Mar 2003 22:40:18 +0000 User-Agent: KMail/1.4.2 Cc: freebsd-java@FreeBSD.ORG References: <20030311173159.GA78525@rcfile.org> <20030312204630.A3342@phantom.cris.net> <200303131849.01741.antony@abacus.co.uk> In-Reply-To: <200303131849.01741.antony@abacus.co.uk> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303132240.20316.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Oh! I see that the code has been disabled and the error is caused by the = files=20 not being compiled in at all. I guess if I want this ... I shall have to examine the kqueue() and keven= t()=20 functions... On Thursday 13 March 2003 6:48 pm, Antony T Curtis wrote: > I am seeing the following exceptions on applications > which use NIO... Such as OpenNMS > > java.lang.UnsatisfiedLinkError: init > at sun.nio.ch.DevPollArrayWrapper.init(Native Method) > at sun.nio.ch.DevPollArrayWrapper.(DevPollArrayWrapper.java:5= 9) - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+cQjUql7dp2cddmIRAqVEAKCPD3cAwDGFKoBjdYg0VBCcER5PUwCgjHXh TzwnafahDzNR8zM78SfYLEA=3D =3DLK2v -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 17:49:18 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E60837B405 for ; Thu, 13 Mar 2003 17:49:07 -0800 (PST) Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE49E43F3F for ; Thu, 13 Mar 2003 17:49:04 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta01-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20030314014902.UTCP6166.mta01-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Fri, 14 Mar 2003 01:49:02 +0000 From: Antony T Curtis To: Greg Lewis Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Date: Fri, 14 Mar 2003 01:49:00 +0000 User-Agent: KMail/1.4.2 Cc: freebsd-java@FreeBSD.ORG References: <200303120835.AA1746731258@mail.mstar2.net> <200303130053.19295.antony.t.curtis@ntlworld.com> <20030314065318.A85007@misty.eyesbeyond.com> In-Reply-To: <20030314065318.A85007@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="------------Boundary-00=_ODUP67KGNC6DK79FHGGT" Message-Id: <200303140149.02005.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --------------Boundary-00=_ODUP67KGNC6DK79FHGGT Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thursday 13 March 2003 8:23 pm, Greg Lewis wrote: ls > On Thu, Mar 13, 2003 at 12:53:17AM +0000, Antony T Curtis wrote: > > On a semi-related thought... Will patchset 9 be adjusted for hotspot = to > > use the system gcc on -STABLE (ie gcc 2.9 instead of 3.2)... And will= it > > be possible to have the JDK compiled so that -classic and -hotspot bu= ilds > > can coexist? > > Maybe and maybe, respectively. It depends on volunteer time and intere= st. > At the moment noone is specifically working on these issues (that I kno= w > of). For #2, I don't know what is so different when hotspot is enabled... My g= uess=20 is that there must be some quirk in the native threading/ green threading= and=20 the libc_r and libc....=20 I'm very tempted to try recompiling the whole shebang with -pthread set f= or=20 gcc. > > I have successfully compiled up p8 on my box with the system compiler= and > > it appears to work well. I have also examined the work in jdk1.4 and > > merged it into 1.3 so that it no longer depends on the uthread_privat= e.h > > kernel source. > > Where are the patches available? :). Attached - All I can say about it is that "make -DNODEBUG -DWITH_HOTSPOT=20 - -DNATIVE_BOOTSTRAP" works great for me ;) > > A "nice" little fun test for java is at www.motionplayground.com > > With it, you notice that JDK1.3p8 is still way slower than JDK1.4p3 > > And that JDK1.3p7+tya can perform more smoothly than p8... > > So - theres still some important issues in hotspot in 1.3. > > (I used Konq to launch the applet) > > It does feel like HotSpot in 1.4.1 is more solid and performing better > than HotSpot in 1.3.1. We basically need someone to step up to working > on HotSpot in 1.3.1. I wouldn't mind having a crack at it - but I rarely have the time nowaday= s :( - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+cTUNql7dp2cddmIRAjKvAJ9278RIHFnjmV19LRpGBUJMFGC8nACgoqzp a8yrhca0nldDx5SZWZBcJRQ=3D =3DwTmV -----END PGP SIGNATURE----- --------------Boundary-00=_ODUP67KGNC6DK79FHGGT Content-Type: text/x-diff; charset="iso-8859-1"; name="jdk13.atc.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="jdk13.atc.patch" diff -ur jdk13/Makefile jdk13.atc/Makefile --- jdk13/Makefile Tue Mar 4 03:07:17 2003 +++ jdk13.atc/Makefile Thu Mar 13 22:19:20 2003 @@ -118,15 +118,6 @@ .include -.if defined(WITH_HOTSPOT) && ${OSVERSION} < 500039 -USE_GCC= 3.2 -BUILD_DEPENDS+= gcc32:${PORTSDIR}/lang/gcc32 -MAKE_ENV+= ALT_COMPILER_PATH=${LOCALBASE}/bin -HOTSPOT_BUILD= ../ext/plugin/build/solaris/GNUmakefile \ - ../../hotspot1.3.1/build/linux/makefiles/adlc.make \ - ../../hotspot1.3.1/build/linux/platform_i486 -.endif - .if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500038 ) BUILD_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar TAR= gtar # Necessary for proper extraction of sources diff -ur jdk13/work/hotspot1.3.1/build/linux/makefiles/gcc.make jdk13.atc/work/hotspot1.3.1/build/linux/makefiles/gcc.make --- jdk13/work/hotspot1.3.1/build/linux/makefiles/gcc.make Fri Mar 14 01:32:05 2003 +++ jdk13.atc/work/hotspot1.3.1/build/linux/makefiles/gcc.make Fri Mar 14 01:15:08 2003 @@ -17,7 +17,7 @@ CFLAGS += -fwritable-strings CFLAGS += -fno-rtti CFLAGS += -fhandle-exceptions -CFLAGS += -D__STDC__=1 -D_LARGEFILE64_SOURCE -DTEMPLATE_TABLE_BUG +CFLAGS += -D__STDC__=1 -D_LARGEFILE64_SOURCE CFLAGS += -D__GNU__ -D_REENTRANT CFLAGS += -fcheck-new @@ -30,76 +30,9 @@ CFLAGS += $(GCC_SAVE_TEMPS) # The flags to use for an Optimized g++ build -#OPT_CFLAGS += -O3 +OPT_CFLAGS += -O3 -OPT_CFLAGS += -O0 -# -O1 -#OPT_CFLAGS += -fdefer-pop -OPT_CFLAGS += -fthread-jumps -OPT_CFLAGS += -fdelayed-branch OPT_CFLAGS += -fomit-frame-pointer -OPT_CFLAGS += -fguess-branch-probability -OPT_CFLAGS += -fcprop-registers -# END - -OPT_CFLAGS += -ffloat-store -OPT_CFLAGS += -fno-default-inline -OPT_CFLAGS += -fno-defer-pop -#bad, causes abort() -#OPT_CFLAGS += -ftrapv -OPT_CFLAGS += -fno-inline -OPT_CFLAGS += -fkeep-static-consts -OPT_CFLAGS += -fmerge-constants -OPT_CFLAGS += -fmerge-all-constants -OPT_CFLAGS += -fno-function-cse -OPT_CFLAGS += -ffast-math -# END - -# -O2 -OPT_CFLAGS += -foptimize-sibling-calls -OPT_CFLAGS += -fcse-follow-jumps -OPT_CFLAGS += -fcse-skip-blocks -OPT_CFLAGS += -fgcse-sm -OPT_CFLAGS += -fgcse-lm -OPT_CFLAGS += -fgcse - -OPT_CFLAGS += -fexpensive-optimizations -OPT_CFLAGS += -fstrength-reduce -OPT_CFLAGS += -frerun-cse-after-loop -OPT_CFLAGS += -frerun-loop-opt -OPT_CFLAGS += -fcaller-saves -OPT_CFLAGS += -fforce-addr -OPT_CFLAGS += -fforce-mem -OPT_CFLAGS += -fpeephole2 -## -OPT_CFLAGS += -fschedule-insns -OPT_CFLAGS += -fschedule-insns2 -## -OPT_CFLAGS += -fregmove -OPT_CFLAGS += -fstrict-aliasing -OPT_CFLAGS += -fdelete-null-pointer-checks -OPT_CFLAGS += -freorder-blocks -# END - -OPT_CFLAGS += -fno-gcse -OPT_CFLAGS += -fdata-sections -OPT_CFLAGS += -fprefetch-loop-arrays -OPT_CFLAGS += -fmove-all-movables -OPT_CFLAGS += -freduce-all-givs -OPT_CFLAGS += -fno-guess-branch-probability - -OPT_CFLAGS += -falign-functions -OPT_CFLAGS += -falign-labels -OPT_CFLAGS += -falign-loops -OPT_CFLAGS += -falign-jumps - -OPT_CFLAGS += -fssa -# END - -# -O3 -OPT_CFLAGS += -finline-functions -OPT_CFLAGS += -frename-registers -# END ##### @@ -112,7 +45,7 @@ #OPT_CFLAGS += -fkeep-inline-functions # OPT_CFLAGS += -funroll-loops -OPT_CFLAGS += -funroll-all-loops +#OPT_CFLAGS += -funroll-all-loops ##### # Set the environment variable HOTSPARC_HOTSPARC_GENERIC to "true" diff -ur jdk13/work/hotspot1.3.1/src/os/linux/vm/os_linux.cpp jdk13.atc/work/hotspot1.3.1/src/os/linux/vm/os_linux.cpp --- jdk13/work/hotspot1.3.1/src/os/linux/vm/os_linux.cpp Fri Mar 14 01:32:06 2003 +++ jdk13.atc/work/hotspot1.3.1/src/os/linux/vm/os_linux.cpp Thu Mar 13 23:53:43 2003 @@ -39,12 +39,7 @@ #include #include - -#undef pthread_attr_default -#undef pthread_mutexattr_default -#undef pthread_condattr_default - -#include +#include #include #include @@ -124,82 +119,46 @@ } } -address os::current_stack_base() -{ - uintptr_t addr, - guard_page_size = getpagesize(); - int result; - pthread_t self = pthread_self(); - - result = pthread_main_np(); -// result = pthread_equal(self, _thread_initial); -#if 1 +address os::current_stack_base() { - if (result > 0) { - addr = (uintptr_t) USRSTACK; - } - else if (result == 0 ) { - //if (self != NULL) + uintptr_t addr = NULL; + pthread_attr_t attr; + void *mystack = NULL; + size_t mysize = 0; + + if (pthread_attr_init(&attr) == 0) { + if (pthread_attr_get_np(pthread_self(), &attr) != 0) + goto err; + if (pthread_attr_getstackaddr(&attr, &mystack) != 0) + goto err; + if (pthread_attr_getstacksize(&attr, &mysize) != 0) + goto err; - self = pthread_self(); - if (!(self > 0)) { - fprintf(stderr, "pthread_main_np self == 0x%08x", (uintptr_t) self); - } - else { - addr = (uintptr_t) self->stack; - } - } - else { - warning("pthread_main_np reported that _thread_initial == NULL"); - } - return (address) addr; - -#else + addr = (uintptr_t) mystack + mysize; + pthread_attr_destroy(&attr); - if (self > 0) { - addr = (uintptr_t) self->stack; - fprintf(stderr, "attr == 0x%08x\n", addr); - } - else { - fprintf(stderr, "pthread_self failed == 0x%08x\n", (uintptr_t) self); - } return (address) addr; + } + +err: + fatal("Unable to get current thread stack base pointer"); -#endif } -// Same for this function too -// -// --billh -int os::current_stack_size() -{ - uintptr_t sizep = 0; - pthread_t self = pthread_self(); +size_t os::current_stack_size() { -#if 0 - if (pthread_equal(self, _thread_initial)) { -// if (pthread_main_np()){ - /* in main()'s thread */ - struct rlimit r; - assert(getrlimit(RLIMIT_STACK, &r) == 0, "os::current_stack_size: getrlimit failed"); - sizep = (long)r.rlim_cur; - -#define PTHREAD_STACK_DEFAULT 65536 - } else { - sizep = (long) PTHREAD_STACK_DEFAULT; - } - return sizep; -#else - if (self > 0) { - sizep = (uintptr_t) self->attr.stacksize_attr; + pthread_attr_t attr; + size_t sizep = 0; + if (pthread_attr_init(&attr) == 0) { + if (pthread_attr_get_np(pthread_self(), &attr) == 0) { + pthread_attr_getstacksize(&attr, &sizep); } - else { - fprintf(stderr, "pthread_self failed == 0x%08x\n", self); - } - + pthread_attr_destroy(&attr); return sizep; -#endif + } + + fatal("Unable to get current thread stack base size"); } // Part 2 @@ -358,6 +317,7 @@ #define RT_JAR "/lib/rt.jar" #define I18N_JAR "/lib/i18n.jar" #define SUNRSASIGN_JAR "/lib/sunrsasign.jar" +#define EXTENSIONS_DIR "/lib/ext" #define CLASSES_DIR "/classes" #define DEFAULT_LD_LIBRARY_PATH "/usr/lib" /* See ld.so.1(1) */ @@ -431,7 +391,7 @@ char * buf; // buf = malloc(strlen(sprops.java_home) + sizeof(MAXNAMLEN)); buf = malloc(MAXNAMLEN); - snprintf(buf, MAXNAMLEN, "%s", sprops.java_home); + snprintf(buf, MAXNAMLEN, "%s" EXTENSIONS_DIR, sprops.java_home); sprops.ext_dirs = buf; } } diff -ur jdk13/work/hotspot1.3.1/src/os_cpu/linux_i486/vm/os_linux_i486.cpp jdk13.atc/work/hotspot1.3.1/src/os_cpu/linux_i486/vm/os_linux_i486.cpp --- jdk13/work/hotspot1.3.1/src/os_cpu/linux_i486/vm/os_linux_i486.cpp Fri Mar 14 01:32:06 2003 +++ jdk13.atc/work/hotspot1.3.1/src/os_cpu/linux_i486/vm/os_linux_i486.cpp Fri Mar 14 00:15:28 2003 @@ -35,12 +35,6 @@ #include -#undef pthread_attr_default -#undef pthread_mutexattr_default -#undef pthread_condattr_default - -#include - #define MAX_PATH (2 * K) #define INTERRUPT_SIGNAL SIGUSR1 diff -ur jdk13/work/hotspot1.3.1/src/share/vm/interpreter/templateTable.cpp jdk13.atc/work/hotspot1.3.1/src/share/vm/interpreter/templateTable.cpp --- jdk13/work/hotspot1.3.1/src/share/vm/interpreter/templateTable.cpp Fri Mar 14 01:32:07 2003 +++ jdk13.atc/work/hotspot1.3.1/src/share/vm/interpreter/templateTable.cpp Fri Mar 14 00:39:56 2003 @@ -204,6 +204,8 @@ def(code, flags, in, out, (Template::generator)gen, (int)cc); } + +#undef TEMPLATE_TABLE_BUG #if defined(TEMPLATE_TABLE_BUG) #define iload TemplateTable::iload #define lload TemplateTable::lload diff -ur jdk13/work/hotspot1.3.1/src/share/vm/runtime/os.hpp jdk13.atc/work/hotspot1.3.1/src/share/vm/runtime/os.hpp --- jdk13/work/hotspot1.3.1/src/share/vm/runtime/os.hpp Fri Mar 14 01:32:07 2003 +++ jdk13.atc/work/hotspot1.3.1/src/share/vm/runtime/os.hpp Fri Mar 14 00:05:31 2003 @@ -156,7 +156,7 @@ static address current_stack_pointer(); static address current_stack_base(); static address current_stack_limit(); - static int current_stack_size(); + static size_t current_stack_size(); static int message_box(const char* title, const char* message); --------------Boundary-00=_ODUP67KGNC6DK79FHGGT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 19: 8:41 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D6D837B401 for ; Thu, 13 Mar 2003 19:08:39 -0800 (PST) Received: from mx0.gmx.net (mx0.gmx.net [213.165.64.100]) by mx1.FreeBSD.org (Postfix) with SMTP id D009243FDF for ; Thu, 13 Mar 2003 19:08:36 -0800 (PST) (envelope-from JtRipper@gmx.net) Received: (qmail 5105 invoked by uid 0); 14 Mar 2003 03:08:35 -0000 Date: Fri, 14 Mar 2003 04:08:35 +0100 (MET) From: Andrew Mace To: Alexey Zelkin Cc: freebsd-java@FreeBSD.ORG MIME-Version: 1.0 References: <20030312204630.A3342@phantom.cris.net> Subject: Re: build failure of jdk14 on 5.0 current X-Priority: 3 (Normal) X-Authenticated-Sender: #0000353824@gmx.net X-Authenticated-IP: [217.80.107.30] Message-ID: <28367.1047611315@www2.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thanks. But how can I fix the problem? > It's internal gcc error and not related to build > > PS: I did built JDK on yesterday's CURRENT -- all is fine. > > On Wed, Mar 12, 2003 at 06:52:58PM +0100, Andrew Mace wrote: > > I get the following error installing jdk14 on 5.0 current (11.3.2003): > > > > Compiling > > /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/monitorChunk.cpp > > Compiling > /usr/ports/java/jdk14/work/hotspot/src/share/vm/opto/mulnode.cpp > > In file included from ../generated/incls/_mulnode.cpp.incl:113, > > from > > /usr/ports/java/jdk14/work/hotspot/src/share/vm/opto/mulnode.cpp:12: > > /usr/ports/java/jdk14/work/hotspot/src/share/vm/runtime/thread.hpp:1285: > > Internal > > compiler error in pop_binding, at cp/decl.c:1196 > > Please submit a full bug report, > > with preprocessed source if appropriate. > > See for instructions. > > gmake[3]: *** [mulnode.o] Error 1 > > gmake[3]: Leaving directory > > > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' > > gmake[2]: *** [the_vm] Error 2 > > gmake[2]: Leaving directory > > > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' > > gmake[1]: *** [product] Error 2 > > gmake[1]: Leaving directory > > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' > > gmake: *** [product] Error 2 > > *** Error code 2 > > > > Stop in /usr/ports/java/jdk14. > > > > Can anyone help me with this? > > > > Andrew > > > > -- > > +++ GMX - Mail, Messaging & more http://www.gmx.net +++ > > Bitte lacheln! Fotogalerie online mit GMX ohne eigene Homepage! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-java" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 13 21:51:45 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AC8D37B404 for ; Thu, 13 Mar 2003 21:51:42 -0800 (PST) Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8C1D43FBD for ; Thu, 13 Mar 2003 21:51:41 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr3.xmission.com with spam-scanned (Exim 3.35 #1) id 18ti6X-0003DH-03; Thu, 13 Mar 2003 22:51:41 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 3.35 #1) id 18ti6U-0003Co-03; Thu, 13 Mar 2003 22:51:39 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2E5pXp86684; Fri, 14 Mar 2003 16:21:33 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Fri, 14 Mar 2003 16:21:33 +1030 From: Greg Lewis To: Antony T Curtis Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD JDK 1.3.1_p8 HotSpot not loading from jre/lib/ext??? Message-ID: <20030314162133.A86664@misty.eyesbeyond.com> References: <200303120835.AA1746731258@mail.mstar2.net> <200303130053.19295.antony.t.curtis@ntlworld.com> <20030314065318.A85007@misty.eyesbeyond.com> <200303140149.02005.antony.t.curtis@ntlworld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303140149.02005.antony.t.curtis@ntlworld.com>; from antony.t.curtis@ntlworld.com on Fri, Mar 14, 2003 at 01:49:00AM +0000 X-Spam-Status: No, hits=-3.8 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Mar 14, 2003 at 01:49:00AM +0000, Antony T Curtis wrote: > On Thursday 13 March 2003 8:23 pm, Greg Lewis wrote: > > On Thu, Mar 13, 2003 at 12:53:17AM +0000, Antony T Curtis wrote: > > > On a semi-related thought... Will patchset 9 be adjusted for hotspot to > > > use the system gcc on -STABLE (ie gcc 2.9 instead of 3.2)... And will it > > > be possible to have the JDK compiled so that -classic and -hotspot builds > > > can coexist? > > > > Maybe and maybe, respectively. It depends on volunteer time and interest. > > At the moment noone is specifically working on these issues (that I know > > of). > > For #2, I don't know what is so different when hotspot is enabled... My guess > is that there must be some quirk in the native threading/ green threading and > the libc_r and libc.... Probably. > I'm very tempted to try recompiling the whole shebang with -pthread set for > gcc. Hmmm, not sure that green threads would be very keen on this. > > > I have successfully compiled up p8 on my box with the system compiler and > > > it appears to work well. I have also examined the work in jdk1.4 and > > > merged it into 1.3 so that it no longer depends on the uthread_private.h > > > kernel source. > > > > Where are the patches available? :). > > Attached - All I can say about it is that "make -DNODEBUG -DWITH_HOTSPOT > - -DNATIVE_BOOTSTRAP" works great for me ;) Thanks! Much appreciated :). That makes us almost free of the pthread internals. > > > A "nice" little fun test for java is at www.motionplayground.com > > > With it, you notice that JDK1.3p8 is still way slower than JDK1.4p3 > > > And that JDK1.3p7+tya can perform more smoothly than p8... > > > So - theres still some important issues in hotspot in 1.3. > > > (I used Konq to launch the applet) > > > > It does feel like HotSpot in 1.4.1 is more solid and performing better > > than HotSpot in 1.3.1. We basically need someone to step up to working > > on HotSpot in 1.3.1. > > I wouldn't mind having a crack at it - but I rarely have the time nowadays :( Unfortunately thats usually the case :(. There are always more projects than there is developer time. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 14 0:17:18 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F27637B401 for ; Fri, 14 Mar 2003 00:17:17 -0800 (PST) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D5F943FD7 for ; Fri, 14 Mar 2003 00:17:15 -0800 (PST) (envelope-from mantzios@softlab.ece.ntua.gr) Received: from theseas.softlab.ece.ntua.gr (theseas.softlab.ece.ntua.gr [147.102.1.1]) by ulysses.noc.ntua.gr (8.11.6/8.11.6) with ESMTP id h2E8HDR12362 for ; Fri, 14 Mar 2003 10:17:13 +0200 (EET) Received: from theseas.softlab.ece.ntua.gr (mantzios@localhost [127.0.0.1]) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2E8HDCF002969 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Mar 2003 10:17:13 +0200 Received: from localhost (mantzios@localhost) by theseas.softlab.ece.ntua.gr (8.12.3/8.12.3/Debian-6.1) with ESMTP id h2E8HCVD002962; Fri, 14 Mar 2003 10:17:12 +0200 X-Authentication-Warning: theseas.softlab.ece.ntua.gr: mantzios owned process doing -bs Date: Fri, 14 Mar 2003 10:17:11 +0200 (EET) From: Mantzios Achilleus To: Panagiotis Astithas Cc: freebsd-java@FreeBSD.ORG Subject: Re: general -stable problem In-Reply-To: <3E70D21A.4080005@netmode.ntua.gr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 13 Mar 2003, Panagiotis Astithas wrote: > Kevin Golding wrote: > > In article > > , Achilleus Mantzios writes > > > >>On Thu, 13 Mar 2003, Kevin Golding wrote: > >> > >> > >>>In article >>>ntua.gr>, Mantzios Achilleus writes > >>> > >>> > >>>>On Thu, 13 Mar 2003, Yuri Khotyaintsev wrote: > >>>> > >>>> > >>>>>On Thu, 13 Mar 2003, Mantzios Achilleus wrote: > >>>>> > >>>>>>After all is 4.8-RC (Release Candidate) a synonym with -STABLE?? > >>>>> > >>>>>Yes. > >>>> > >>>>I think a release candidate is something to be previewed > >>>>not something STABLE! > > 4.8-RC is usually 99.9% 4.8-RELEASE, so to speak. So, you should follow > the general procedure, when you encounter such anomalies in -STABLE: > - Cvsup again, hoping that the bug (if it is a bug) might have been fixed. > - Post a message to the freebsd-stable list, mentioning your symptoms. > I will be cvsuping a few systems myself next week, so I sympathize very > much your situation :-) I just try to do all that as a pet (hidden) hobby during my day time job (hoping that it will be deployed some time in the future), so i always try the "minimalistic" way of upgrade, or ports testing, which doesnt prove much effective all the times :-) > > Cheers, > Panagiotis > > ---------------------------------------------------------------- | go to the source -> http://www.softlab.ece.ntua.gr/~mantzios | ---------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 14 7:31: 5 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ADDC37B401 for ; Fri, 14 Mar 2003 07:31:01 -0800 (PST) Received: from hfep01.dion.ne.jp (hfep01.dion.ne.jp [203.181.105.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AD5743FAF for ; Fri, 14 Mar 2003 07:30:59 -0800 (PST) (envelope-from haro@h4.dion.ne.jp) Received: from localhost ([211.5.14.72]) by hfep01.dion.ne.jp with ESMTP id <20030314153057299.WWTS@hfep01.dion.ne.jp>; Sat, 15 Mar 2003 00:30:57 +0900 Date: Sat, 15 Mar 2003 00:30:54 +0900 (JST) Message-Id: <20030315.003054.74755042.haro@h4.dion.ne.jp> To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG Subject: [CFR] jdk1.3.1 java_wrapper script update patch From: Munehiro Matsuda X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Sat_Mar_15_00:30:54_2003_586)--" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ----Next_Part(Sat_Mar_15_00:30:54_2003_586)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello Greg and all, I've created a patch which updates java_wrapper shell-script for jdk-1.3.1, that addresses the issues with classic/hotspot VM mixed environment. Main changes are: 1. Properly handle -client/-server options. 2. Recognise -classic/-green/-native/-client/-server/-hotspot arguments, and pass appropriate argument to the executing command. 3. Honer THREADS_FLAG environment variable more. With these changes, following suceeds, even with hotspot installed: java -version java -classic -version java -green -version java -native -version java -client -version java -server -version java -hotspot -version I'd appriciate any feed back with it. Thank you, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kgt.co.jp ----Next_Part(Sat_Mar_15_00:30:54_2003_586)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-java_wrapper_bsd.sh" --- ../src/solaris/bin/java_wrapper_bsd.sh.org Fri Mar 14 18:42:05 2003 +++ ../src/solaris/bin/java_wrapper_bsd.sh Fri Mar 14 19:03:36 2003 @@ -71,37 +71,60 @@ # Select vm type (if classic vm, also select thread type). unset vmtype unset ttype +unset vmopt DEFAULT_THREADS_FLAG=green -if [ "x$1" = "x-hotspot" ]; then - vmtype=hotspot +if [ "x$1" = "x-client" ]; then + vmtype=client ttype=native_threads + vmopt=-$vmtype shift 1 else if [ "x$1" = "x-classic" ]; then vmtype=classic - ttype=${DEFAULT_THREADS_FLAG}_threads + if [ ${THREADS_FLAG:-${DEFAULT_THREADS_FLAG}} = native ]; then + ttype=native_threads + else + ttype=green_threads + fi + vmopt=-$vmtype shift 1 else if [ "x$1" = "x-green" ]; then vmtype=classic ttype=green_threads + vmopt=-$vmtype shift 1 else if [ "x$1" = "x-native" ]; then vmtype=classic ttype=native_threads + vmopt=-$vmtype shift 1 else - if [ -d ${jre}/lib/${proc}/hotspot ]; then - vmtype=hotspot + if [ "x$1" = "x-server" ]; then + vmtype=server ttype=native_threads - else - vmtype=classic - if [ ${THREADS_FLAG:-${DEFAULT_THREADS_FLAG}} = native ] - then + vmopt=-$vmtype + shift 1 + else + if [ "x$1" = "x-hotspot" ]; then + vmtype=client ttype=native_threads - else - ttype=green_threads + vmopt=-$vmtype + shift 1 + else + if [ -d ${jre}/lib/${proc}/client ]; then + vmtype=client + ttype=native_threads + else + vmtype=classic + if [ ${THREADS_FLAG:-${DEFAULT_THREADS_FLAG}} = native ] + then + ttype=native_threads + else + ttype=green_threads + fi + fi fi fi fi @@ -141,7 +164,11 @@ # Run. if [ -x "$prog" ] then - exec $DEBUG_PROG "$prog" "$@" + if [ "x$DEBUG_PROG" = "x" ]; then + exec "$prog" $vmopt "$@" + else + exec $DEBUG_PROG "$prog" "$@" + fi else echo >&2 "$progname was not found in ${prog}" exit 1 ----Next_Part(Sat_Mar_15_00:30:54_2003_586)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 14 8:30:49 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2518E37B401 for ; Fri, 14 Mar 2003 08:30:48 -0800 (PST) Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DBC443F75 for ; Fri, 14 Mar 2003 08:30:47 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr3.xmission.com with spam-scanned (Exim 3.35 #1) id 18ts50-0000eT-03; Fri, 14 Mar 2003 09:30:47 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 3.35 #1) id 18ts4z-0000dB-03; Fri, 14 Mar 2003 09:30:46 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2EGUfP88095; Sat, 15 Mar 2003 03:00:41 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sat, 15 Mar 2003 03:00:40 +1030 From: Greg Lewis To: Munehiro Matsuda Cc: freebsd-java@FreeBSD.ORG Subject: Re: [CFR] jdk1.3.1 java_wrapper script update patch Message-ID: <20030315030040.A88073@misty.eyesbeyond.com> References: <20030315.003054.74755042.haro@h4.dion.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030315.003054.74755042.haro@h4.dion.ne.jp>; from haro@h4.dion.ne.jp on Sat, Mar 15, 2003 at 12:30:54AM +0900 X-Spam-Status: No, hits=-3.8 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02,USER_AGENT, USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Mar 15, 2003 at 12:30:54AM +0900, Munehiro Matsuda wrote: > I've created a patch which updates java_wrapper shell-script for jdk-1.3.1, > that addresses the issues with classic/hotspot VM mixed environment. > > Main changes are: > 1. Properly handle -client/-server options. > 2. Recognise -classic/-green/-native/-client/-server/-hotspot arguments, > and pass appropriate argument to the executing command. > 3. Honer THREADS_FLAG environment variable more. > > With these changes, following suceeds, even with hotspot installed: > java -version > java -classic -version > java -green -version > java -native -version > java -client -version > java -server -version > java -hotspot -version > > I'd appriciate any feed back with it. You know, I'm going to have to punish you with a BSD Java commit bit if you keep this up ;). Arigato, again! Looks good from an initial glance, I'll test it out a little later. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 1:47:59 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81BAE37B401; Sat, 15 Mar 2003 01:47:55 -0800 (PST) Received: from gate.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA83143F85; Sat, 15 Mar 2003 01:47:54 -0800 (PST) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.13]) by gate.volant.org with asmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.33 #1) id 18u8GZ-0000Lt-00; Sat, 15 Mar 2003 01:47:48 -0800 Date: Sat, 15 Mar 2003 01:47:39 -0800 From: Pat Lashley To: Ernst de Haan , Greg Lewis , leafy Cc: freebsd-java@FreeBSD.ORG Subject: Re: [patch]bsd.java.mk for freebsd native jdk 1.4.1 Message-ID: <540872704.1047721659@mccaffrey.phoenix.volant.org> In-Reply-To: <200303101006.01312.znerd@FreeBSD.org> References: <20030307153528.GA9846@leafy.idv.tw> <20030308050430.C60098@misty.eyesbeyond.com> <200303101006.01312.znerd@FreeBSD.org> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========1642826634==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========1642826634========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline With these patches, if 1.3 and 1.4 are both installed, a port requesting 1.1+ or 1.2+ will get 1.3, not 1.4; but ports requesting 1.3+ will get 1.4. Was that intentional? (And if so, why?) -Pat > On Friday 07 March 2003 19:34, Greg Lewis wrote: >> On Fri, Mar 07, 2003 at 11:36:03PM +0800, leafy wrote: >> > Since jdk14 is now in our ports, the following patch is needed >> > if you want the ports to use the native JDK installed as dependancy. >> > I didin't try multiple JDK installation though. JBoss3 was built >> > successfully for JDK14. >> >> Great! Ernst, as bsd.java.mk maintainer have you time to review this? >> We should try and get this in during the freeze if portmgr will approve. >> >> > --- bsd.java.mk.old Fri Mar 7 23:10:39 2003 >> > +++ bsd.java.mk Fri Mar 7 23:28:46 2003 >> > @@ -47,6 +47,7 @@ >> > _JAVA_HOME_FREEBSD_1_1=3D ${LOCALBASE}/jdk1.1.8 >> > _JAVA_HOME_FREEBSD_1_2=3D ${LOCALBASE}/jdk1.2.2 >> > _JAVA_HOME_FREEBSD_1_3=3D ${LOCALBASE}/jdk1.3.1 >> > +_JAVA_HOME_FREEBSD_1_4=3D ${LOCALBASE}/jdk1.4.1 >> > = _JAVA_HOME_BLACKDOWN_LINUX_1_2=3D ${LOCALBASE}/linux-blackdown-jdk1.2.2 >> > = _JAVA_HOME_BLACKDOWN_LINUX_1_3=3D ${LOCALBASE}/linux-blackdown-jdk1.3.1 >> > = _JAVA_HOME_BLACKDOWN_LINUX_1_4=3D ${LOCALBASE}/linux-blackdown-jdk1.4.1 >> > @@ -59,6 +60,7 @@ >> > _JAVA_PORT_FREEBSD_1_1=3D java/jdk11 >> > _JAVA_PORT_FREEBSD_1_2=3D java/jdk12 >> > _JAVA_PORT_FREEBSD_1_3=3D java/jdk13 >> > +_JAVA_PORT_FREEBSD_1_4=3D java/jdk14 >> > _JAVA_PORT_BLACKDOWN_LINUX_1_2=3D java/linux-blackdown-jdk12 >> > _JAVA_PORT_BLACKDOWN_LINUX_1_3=3D java/linux-blackdown-jdk13 >> > _JAVA_PORT_IBM_LINUX_1_3=3D java/linux-ibm-jdk13 >> > @@ -82,6 +84,7 @@ >> > . undef HAVE_JAVA_FREEBSD_1_1 >> > . undef HAVE_JAVA_FREEBSD_1_2 >> > . undef HAVE_JAVA_FREEBSD_1_3 >> > +. undef HAVE_JAVA_FREEBSD_1_4 >> > . undef HAVE_JAVA_BLACKDOWN_LINUX_1_2 >> > . undef HAVE_JAVA_BLACKDOWN_LINUX_1_3 >> > . undef HAVE_JAVA_IBM_LINUX_1_3 >> > @@ -98,6 +101,9 @@ >> > . if exists(${_JAVA_HOME_FREEBSD_1_3}/${_JDK_FILE}) >> > HAVE_JAVA_FREEBSD_1_3=3D YES >> > . endif >> > +. if exists(${_JAVA_HOME_FREEBSD_1_4}/${_JDK_FILE}) >> > +HAVE_JAVA_FREEBSD_1_4=3D YES >> > +. endif >> > . if exists(${_JAVA_HOME_BLACKDOWN_LINUX_1_2}/${_JDK_FILE}) >> > HAVE_JAVA_BLACKDOWN_LINUX_1_2=3D YES >> > . endif >> > @@ -134,6 +140,8 @@ >> > JAVA_PORT=3D ${_JAVA_PORT_FREEBSD_1_2} >> > . elif ${_JAVA_HOME} =3D=3D ${_JAVA_HOME_FREEBSD_1_3} >> > JAVA_PORT=3D ${_JAVA_PORT_FREEBSD_1_3} >> > +. elif ${_JAVA_HOME} =3D=3D ${_JAVA_HOME_FREEBSD_1_4} >> > +JAVA_PORT=3D ${_JAVA_PORT_FREEBSD_1_4} >> > . elif ${_JAVA_HOME} =3D=3D ${_JAVA_HOME_BLACKDOWN_LINUX_1_2} >> > JAVA_PORT=3D ${_JAVA_PORT_BLACKDOWN_LINUX_1_2} >> > . elif ${_JAVA_HOME} =3D=3D ${_JAVA_HOME_BLACKDOWN_LINUX_1_3} >> > @@ -191,7 +199,8 @@ >> > defined(HAVE_JAVA_BLACKDOWN_LINUX_1_2) || \ >> > defined(HAVE_JAVA_SUN_LINUX_1_2) >> > USE_JAVA=3D 1.2 >> > -. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) >> > +. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) || \ >> > + !defined(HAVE_JAVA_FREEBSD_1_4) >> > USE_JAVA=3D 1.1 >> > . else >> > USE_JAVA=3D 1.4 >> > @@ -203,7 +212,8 @@ >> > defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ >> > defined(HAVE_JAVA_IBM_LINUX_1_3) >> > USE_JAVA=3D 1.3 >> > -. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) >> > +. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) && \ >> > + !defined(HAVE_JAVA_FREEBSD_1_4) >> > USE_JAVA=3D 1.2 >> > . else >> > USE_JAVA=3D 1.4 >> > @@ -213,7 +223,8 @@ >> > defined(HAVE_JAVA_SUN_LINUX_1_3) || \ >> > defined(HAVE_JAVA_IBM_LINUX_1_3) || \ >> > defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ >> > - !defined(HAVE_JAVA_SUN_LINUX_1_4) >> > + !defined(HAVE_JAVA_SUN_LINUX_1_4) || \ >> > + !defined(HAVE_JAVA_FREEBSD_1_4) >> > USE_JAVA=3D 1.3 >> > . else >> > USE_JAVA=3D 1.4 >> > @@ -326,7 +337,13 @@ >> > >> > # If the port needs JDK 1.4, then there's currently only one choice, >> > the Sun # JDK 1.4.x for Linux. >> > -. elif ${USE_JAVA} =3D=3D "1.4" >> > +. elif ${USE_JAVA} =3D=3D "1.4" && defined(HAVE_JAVA_FREEBSD_1_4) >> > +JAVA_VENDOR=3D FreeBSD >> > +JAVA_VER=3D 1.4.1 >> > +JAVA_OS=3D FreeBSD >> > +JAVA_HOME=3D ${_JAVA_HOME_FREEBSD_1_4} >> > +JAVA_PORT=3D ${_JAVA_PORT_FREEBSD_1_4} >> > +. elif ${USE_JAVA} =3D=3D "1.4" >> > JAVA_VENDOR=3D Sun >> > JAVA_VER=3D 1.4.1 >> > JAVA_OS=3D Linux > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message --==========1642826634========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+cva8ncYNbLD8wuMRAk0OAJ4hJYrVcK0vEGcNG2kZZ849iUAbXgCguLDn FUYm57cNuzIGn57xYS8gu6g= =O2B+ -----END PGP SIGNATURE----- --==========1642826634==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 2: 4:49 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F35537B413 for ; Sat, 15 Mar 2003 02:04:21 -0800 (PST) Received: from 211-189-139-167.rev.krline.net (211-189-139-167.rev.krline.net [211.189.139.167]) by mx1.FreeBSD.org (Postfix) with SMTP id F025643FCB for ; Sat, 15 Mar 2003 02:04:18 -0800 (PST) (envelope-from sender@refill.co.kr) Received: from zOA (unverified [211.235.237.59]) by 211-189-139-167.rev.krline.net (EMWAC SMTPRS 0.83) with SMTP id ; Sat, 15 Mar 2003 06:54:58 +0900 Message-ID: Subject: =?ks_c_5601-1987?Q?(=B1=A4=B0=ED)=C0=FA=B7=C5=C7=D1_=C7=C1=B8=B0=C5=CD_=C5=E4=B3=CA_=BC=EE=C7=CE=B8=F4_REFILL=2ECO=2EKR__@?= From: "=?ks_c_5601-1987?Q?REFILL=2ECO=2EKR?=" Date: Sat, 15 Mar 2003 06:54:58 +0900 To: "=?ks_c_5601-1987?Q?freebsd-java@freebsd=2Eorg?=" X-Priority: 3 X-MSMail-Priority: Normal Content-Transfer-Encoding: base64 MIME-Version: 1.0 X-Mailer: JMail 4.3.1 by Dimac Content-Type: text/html X-Antirelay: Good relay from local net1 211.235.237.1/26 'Kiologic Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org DQo8aHRtbD4NCjxoZWFkPg0KPHRpdGxlPrTrx9G5zrG5ILTrx6UguK7Hyrvn wMzGriA6Ojo6Ojo6Ojo6IFJlZmlsbC5jby5rcjwvdGl0bGU+DQo8bWV0YSBo dHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsg Y2hhcnNldD1ldWMta3IiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCjwh LS0NCi5ub21fdHh0IHsgIGZvbnQtZmFtaWx5OiAitbi/8iI7IGZvbnQtc2l6 ZTogMTJweDsgbGluZS1oZWlnaHQ6IG5vcm1hbDsgY29sb3I6ICNBNUE1QTV9 DQotLT4NCjwvc3R5bGU+DQo8L2hlYWQ+DQoNCjxib2R5IGJnY29sb3I9IiNG RkZGRkYiIGxlZnRtYXJnaW49IjAiIHRvcG1hcmdpbj0iMCIgbWFyZ2lud2lk dGg9IjAiIG1hcmdpbmhlaWdodD0iMCI+DQo8YnI+DQo8dGFibGUgd2lkdGg9 IjYwMCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9 IjAiIGFsaWduPSJjZW50ZXIiPg0KPHRyPg0KPHRkIHdpZHRoPSIxIiBiZ2Nv bG9yPSIjQzZDNkM2Ij48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28u a3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9ibGFuay5naWYiPjwvdGQ+DQo8 dGQgd2lkdGg9IjU5OCI+DQo8dGFibGUgd2lkdGg9IjU5OCIgYm9yZGVyPSIw IiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KPHRyPg0KPHRk IGNvbHNwYW49IjIiPjxpbWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5r ci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2VzL2Jhcl90b3AuZ2lmIiB3aWR0aD0i NTk4IiBoZWlnaHQ9IjIxIj48L3RkPg0KPC90cj4NCjx0cj4NCjx0ZD48YSBo cmVmPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9pbmRleC5hc3AiIHRhcmdl dD0iX2JsYW5rIj48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3Iv bWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9sb2dvLmdpZiIgd2lkdGg9IjE3MiIg aGVpZ2h0PSI1NiIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCjx0ZD48YSBocmVm PSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9odG1sL1Byb1RvbmVyTGlzdC5h c3A/aW1nY2hrPTIiIHRhcmdldD0iX2JsYW5rIj48aW1nIHNyYz0iaHR0cDov L3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9iX3No b3BwaW5nLmdpZiIgd2lkdGg9IjEzOSIgaGVpZ2h0PSI1NiIgYWxpZ249InJp Z2h0IiBib3JkZXI9IjAiPjwvYT48L3RkPg0KPC90cj4NCjx0cj4NCjx0ZCBj b2xzcGFuPSIyIj48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3Iv bWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9iYW5fbWFpbi5qcGciIHdpZHRoPSI1 OTgiIGhlaWdodD0iMTk1Ij48YnI+DQo8aW1nIHNyYz0iaHR0cDovL3d3dy5y ZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9leHAuZ2lmIiB3 aWR0aD0iNTk4IiBoZWlnaHQ9IjQ5Ij48L3RkPg0KPC90cj4NCjx0ciBhbGln bj0iY2VudGVyIj4NCjx0ZCBjb2xzcGFuPSIyIj4NCjx0YWJsZSB3aWR0aD01 MjQgYm9yZGVyPTAgY2VsbHBhZGRpbmc9MCBjZWxsc3BhY2luZz0wPg0KPHRy Pg0KPHRkPjxhIGhyZWY9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmtyL2h0bWwv UHJvVG9uZXJMaXN0LmFzcD9pbWdjaGs9MiIgdGFyZ2V0PSJfYmxhbmsiPjxp bWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0 ZXIvaW1hZ2VzL2JyYW5kXzAxLmdpZiIgd2lkdGg9MTAxIGhlaWdodD01NiBh bHQ9IiIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCjx0ZD48YSBocmVmPSJodHRw Oi8vd3d3LnJlZmlsbC5jby5rci9odG1sL1Byb1RvbmVyTGlzdC5hc3A/aW1n Y2hrPTImYW1wO0NhdGVnb3J5PVQmYW1wO1NlbGVjdENvbXBhbnk9JUJCJUVG JUJDJUJBIiB0YXJnZXQ9Il9ibGFuayI+PGltZyBzcmM9Imh0dHA6Ly93d3cu cmVmaWxsLmNvLmtyL21haWwvbmV3c2xldHRlci9pbWFnZXMvYnJhbmRfMDIu Z2lmIiB3aWR0aD0xMDkgaGVpZ2h0PTU2IGFsdD0iIiBib3JkZXI9IjAiPjwv YT48L3RkPg0KPHRkPjxhIGhyZWY9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmty L2h0bWwvUHJvVG9uZXJMaXN0LmFzcD9pbWdjaGs9MiZhbXA7Q2F0ZWdvcnk9 VCZhbXA7U2VsZWN0Q29tcGFueT0lQzUlQTUlQjQlRDAlQkQlQkEiIHRhcmdl dD0iX2JsYW5rIj48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3Iv bWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9icmFuZF8wMy5naWYiIHdpZHRoPTEx NiBoZWlnaHQ9NTYgYWx0PSIiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+DQo8dGQ+ PGEgaHJlZj0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvaHRtbC9Qcm9Ub25l ckxpc3QuYXNwP2ltZ2Noaz0yJmFtcDtDYXRlZ29yeT1UJmFtcDtTZWxlY3RD b21wYW55PSVCRCVDNSVCNSVCNSVCOCVBRSVDNCVEQSIgdGFyZ2V0PSJfYmxh bmsiPjxpbWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25l d3NsZXR0ZXIvaW1hZ2VzL2JyYW5kXzA0LmdpZiIgd2lkdGg9OTkgaGVpZ2h0 PTU2IGFsdD0iIiBib3JkZXI9IjAiPjwvYT48L3RkPg0KPHRkPjxhIGhyZWY9 Imh0dHA6Ly93d3cucmVmaWxsLmNvLmtyL2h0bWwvUHJvVG9uZXJMaXN0LmFz cD9pbWdjaGs9MiZhbXA7Q2F0ZWdvcnk9VCZhbXA7U2VsZWN0Q29tcGFueT1F UFNPTi8lQkIlRUYlQkElQjgiIHRhcmdldD0iX2JsYW5rIj48aW1nIHNyYz0i aHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdl cy9icmFuZF8wNS5naWYiIHdpZHRoPTk5IGhlaWdodD01NiBhbHQ9IiIgYm9y ZGVyPSIwIj48L2E+PC90ZD4NCjwvdHI+DQo8dHI+DQo8dGQ+PGEgaHJlZj0i aHR0cDovL3d3dy5yZWZpbGwuY28ua3IvaHRtbC9Qcm9Ub25lckxpc3QuYXNw P2ltZ2Noaz0yJmFtcDtDYXRlZ29yeT1UJmFtcDtTZWxlY3RDb21wYW55PSVD MSVBNiVCNyVDRiVCRCVCQSIgdGFyZ2V0PSJfYmxhbmsiPjxpbWcgc3JjPSJo dHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2Vz L2JyYW5kXzA2LmdpZiIgd2lkdGg9MTAxIGhlaWdodD00MCBhbHQ9IiIgYm9y ZGVyPSIwIj48L2E+PC90ZD4NCjx0ZD48YSBocmVmPSJodHRwOi8vd3d3LnJl ZmlsbC5jby5rci9odG1sL1Byb1RvbmVyTGlzdC5hc3A/aW1nY2hrPTImYW1w O0NhdGVnb3J5PVQmYW1wO1NlbGVjdENvbXBhbnk9TEciIHRhcmdldD0iX2Js YW5rIj48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9u ZXdzbGV0dGVyL2ltYWdlcy9icmFuZF8wNy5naWYiIHdpZHRoPTEwOSBoZWln aHQ9NDAgYWx0PSIiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+DQo8dGQ+PGEgaHJl Zj0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvaHRtbC9Qcm9Ub25lckxpc3Qu YXNwP2ltZ2Noaz0yJmFtcDtDYXRlZ29yeT1UJmFtcDtTZWxlY3RDb21wYW55 PSVDNCVCMyVCMyVFRCIgdGFyZ2V0PSJfYmxhbmsiPjxpbWcgc3JjPSJodHRw Oi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2VzL2Jy YW5kXzA4LmdpZiIgd2lkdGg9MTE2IGhlaWdodD00MCBhbHQ9IiIgYm9yZGVy PSIwIj48L2E+PC90ZD4NCjx0ZD48YSBocmVmPSJodHRwOi8vd3d3LnJlZmls bC5jby5rci9odG1sL1Byb1RvbmVyTGlzdC5hc3A/aW1nY2hrPTImYW1wO0Nh dGVnb3J5PVQmYW1wO1NlbGVjdENvbXBhbnk9JUMxJUE2JUMwJUNGJUMxJUE0 JUI5JUQwIiB0YXJnZXQ9Il9ibGFuayI+PGltZyBzcmM9Imh0dHA6Ly93d3cu cmVmaWxsLmNvLmtyL21haWwvbmV3c2xldHRlci9pbWFnZXMvYnJhbmRfMDku Z2lmIiB3aWR0aD05OSBoZWlnaHQ9NDAgYWx0PSIiIGJvcmRlcj0iMCI+PC9h PjwvdGQ+DQo8dGQ+PGEgaHJlZj0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3Iv aHRtbC9Qcm9Ub25lckxpc3QuYXNwP2ltZ2Noaz0yJmFtcDtDYXRlZ29yeT1U JmFtcDtTZWxlY3RDb21wYW55PSVCMSVFMiVDNSVCOCIgdGFyZ2V0PSJfYmxh bmsiPjxpbWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25l d3NsZXR0ZXIvaW1hZ2VzL2JyYW5kXzEwLmdpZiIgd2lkdGg9OTkgaGVpZ2h0 PTQwIGFsdD0iIiBib3JkZXI9IjAiPjwvYT48L3RkPg0KPC90cj4NCjwvdGFi bGU+DQo8L3RkPg0KPC90cj4NCjx0cj4NCjx0ZCBjb2xzcGFuPSIyIj48aW1n IHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVy L2ltYWdlcy9iYXJfZG90LmdpZiIgd2lkdGg9IjU5OCIgaGVpZ2h0PSIxNyI+ PC90ZD4NCjwvdHI+DQo8dHIgYWxpZ249ImNlbnRlciI+DQo8dGQgY29sc3Bh bj0iMiI+DQo8dGFibGUgd2lkdGg9IjU3MiIgYm9yZGVyPSIwIiBjZWxsc3Bh Y2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGhlaWdodD0iOTAiPg0KPHRyPg0K PHRkPjxhIGhyZWY9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmtyL2h0bWwvcHJv bWlzZS5hc3AiIHRhcmdldD0iX2JsYW5rIj48aW1nIHNyYz0iaHR0cDovL3d3 dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9iYW5fc3Vi MDEuZ2lmIiB3aWR0aD0iMTkxIiBoZWlnaHQ9Ijc1IiBib3JkZXI9IjAiPjwv YT48L3RkPg0KPHRkPjxhIGhyZWY9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmty L2h0bWwvcG9wdXBfcmVjeWNsZS5odG0iIHRhcmdldD0iX2JsYW5rIj48aW1n IHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVy L2ltYWdlcy9iYW5fc3ViMDIuZ2lmIiB3aWR0aD0iMTkwIiBoZWlnaHQ9Ijc1 IiBib3JkZXI9IjAiPjwvYT48L3RkPg0KPHRkPjxpbWcgc3JjPSJodHRwOi8v d3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2VzL2Jhbl9z dWIwMy5naWYiIHdpZHRoPSIxOTEiIGhlaWdodD0iNzUiPjwvdGQ+DQo8L3Ry Pg0KPC90YWJsZT4NCjwvdGQ+DQo8L3RyPg0KPHRyPg0KPHRkIGNvbHNwYW49 IjIiPjxpbWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25l d3NsZXR0ZXIvaW1hZ2VzL2Jhcl9kb3QuZ2lmIiB3aWR0aD0iNTk4IiBoZWln aHQ9IjE3Ij48L3RkPg0KPC90cj4NCjx0cj4NCjx0ZCBjb2xzcGFuPSIyIj48 aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0 dGVyL2ltYWdlcy90X2NhcnRvb24uZ2lmIiB3aWR0aD0iMTYzIiBoZWlnaHQ9 IjIxIj48L3RkPg0KPC90cj4NCjx0ciBhbGlnbj0iY2VudGVyIj4NCjx0ZCBj b2xzcGFuPSIyIj4NCjx0YWJsZSB3aWR0aD01MTggYm9yZGVyPTAgY2VsbHBh ZGRpbmc9MCBjZWxsc3BhY2luZz0wPg0KPHRyPg0KPHRkPjxpbWcgc3JjPSJo dHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2Vz L2NhcnRvb25fMDEuZ2lmIiB3aWR0aD0yNzUgaGVpZ2h0PTIxNiBhbHQ9IiI+ PC90ZD4NCjx0ZD48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3Iv bWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9jYXJ0b29uXzAyLmdpZiIgd2lkdGg9 MjQzIGhlaWdodD0yMTYgYWx0PSIiPjwvdGQ+DQo8L3RyPg0KPHRyPg0KPHRk PjxpbWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3Ns ZXR0ZXIvaW1hZ2VzL2NhcnRvb25fMDMuZ2lmIiB3aWR0aD0yNzUgaGVpZ2h0 PTIxMiBhbHQ9IiI+PC90ZD4NCjx0ZD48aW1nIHNyYz0iaHR0cDovL3d3dy5y ZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdlcy9jYXJ0b29uXzA0 LmdpZiIgd2lkdGg9MjQzIGhlaWdodD0yMTIgYWx0PSIiPjwvdGQ+DQo8L3Ry Pg0KPHRyPg0KPHRkPjxpbWcgc3JjPSJodHRwOi8vd3d3LnJlZmlsbC5jby5r ci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2VzL2NhcnRvb25fMDUuZ2lmIiB3aWR0 aD0yNzUgaGVpZ2h0PTE5MSBhbHQ9IiI+PC90ZD4NCjx0ZD48aW1nIHNyYz0i aHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdzbGV0dGVyL2ltYWdl cy9jYXJ0b29uXzA2LmdpZiIgd2lkdGg9MjQzIGhlaWdodD0xOTEgYWx0PSIi PjwvdGQ+DQo8L3RyPg0KPHRyPg0KPHRkPjxpbWcgc3JjPSJodHRwOi8vd3d3 LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2VzL2NhcnRvb25f MDcuZ2lmIiB3aWR0aD0yNzUgaGVpZ2h0PTE4NiBhbHQ9IiI+PC90ZD4NCjx0 ZD48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFpbC9uZXdz bGV0dGVyL2ltYWdlcy9jYXJ0b29uXzA4LmdpZiIgd2lkdGg9MjQzIGhlaWdo dD0xODYgYWx0PSIiPjwvdGQ+DQo8L3RyPg0KPC90YWJsZT4NCjwvdGQ+DQo8 L3RyPg0KPHRyPg0KPHRkIGNvbHNwYW49IjIiPjxpbWcgc3JjPSJodHRwOi8v d3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvaW1hZ2VzL2Jhcl9k b3QuZ2lmIiB3aWR0aD0iNTk4IiBoZWlnaHQ9IjE3Ij48L3RkPg0KPC90cj4N Cjx0ciBhbGlnbj0iY2VudGVyIj4NCjx0ZCBjb2xzcGFuPSIyIj4NCjx0YWJs ZSB3aWR0aD0iNTc4IiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxs cGFkZGluZz0iMTAiPg0KPHRyPg0KPHRkIHdpZHRoPSI0NzQiIHZhbGlnbj0i dG9wIiBjbGFzcz0ibm9tX3R4dCI+waS6uMXrvcW6ziCxx7DtILvnx9cguf23 /CDBpg0KNTDBtr+hIMDHsMXHz7+pIMGmuPG/oSAosaSw7Sm287DtIMelseLH 0SCxpLDtuN7Az8DMuOcsILHNx8/AxyC43sDPwda80rTCIMClILytx87B3yC+ y7DUILXIILDNwMy45ywgZU1haWwNCsHWvNIgv9y/oSCxzcfPwMcgvu62sMfR IMGkuri1tSCwocH2sO0gwNbB9iC+ysC4tM8gvsi9ycfPvcOx5iC52bb4tM+0 2S4gursguN7Az8C6ILnfvNvA/L/rILjewM/A08C4t84sIL/4xKENCr7KwLi9 w7jpIFu89r3FsMW6zl0gufbGsMC7IENsaWNrIMfYIMHWvLy/5C48YnI+PGJy Pg0KSWYgeW91IHdvdWxkIGxpa2UgdG8gYmUgcmVtb3ZlZCBmcm9tIGFueSBv ZiBvdXIgZGlzdHJpYnV0aW9uIGxpc3RzLCBwbGVhc2UgY2xpY2sgJ1JFRlVT RScuIEl0IHdpbGwgYmUgaGFuZGxlZCBwcm9tcHRseS4gVGhhbmsgeW91LiA8 YSBocmVmPSJodHRwOi8vd3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0 ZXIvMDMwMnJlamVjdC5hc3A/TWFpbE51bT1mcmVlYnNkLWphdmFAZnJlZWJz ZC5vcmciIHRhcmdldD0iX2JsYW5rIj5bUkVGVVNFXTwvYT4NCjwvdGQ+DQo8 dGQgd2lkdGg9IjY0IiBhbGlnbj0iY2VudGVyIj48YSBocmVmPSJodHRwOi8v d3d3LnJlZmlsbC5jby5rci9tYWlsL25ld3NsZXR0ZXIvMDMwMnJlamVjdC5h c3A/TWFpbE51bT1mcmVlYnNkLWphdmFAZnJlZWJzZC5vcmciIHRhcmdldD0i X2JsYW5rIj48aW1nIHNyYz0iaHR0cDovL3d3dy5yZWZpbGwuY28ua3IvbWFp bC9uZXdzbGV0dGVyL2ltYWdlcy9iX25vbWFpbC5naWYiIHdpZHRoPSI2MCIg aGVpZ2h0PSI2MCIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCjwvdHI+DQo8L3Rh YmxlPg0KPC90ZD4NCjwvdHI+DQo8dHI+DQo8dGQgY29sc3Bhbj0iMiI+PGlt ZyBzcmM9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmtyL21haWwvbmV3c2xldHRl ci9pbWFnZXMvYmFyX2RvdC5naWYiIHdpZHRoPSI1OTgiIGhlaWdodD0iMTci PjwvdGQ+DQo8L3RyPg0KPHRyIGFsaWduPSJjZW50ZXIiPg0KPHRkIGNvbHNw YW49IjIiPg0KPHRhYmxlIHdpZHRoPSI1NzgiIGJvcmRlcj0iMCIgY2VsbHNw YWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIxMCI+DQo8dHI+DQo8dGQgd2lkdGg9 IjIyNyIgdmFsaWduPSJ0b3AiIGNsYXNzPSJub21fdHh0Ij48Yj6h2CCw7bC0 ILytuvG9uiC5rsDHIDogMDItMzI4MS03Nzc3IDwvYj48L3RkPg0KPHRkIHdp ZHRoPSIzMTEiIGFsaWduPSJyaWdodCIgY2xhc3M9Im5vbV90eHQiPkNvcHly aWdodCAxOTkxLTIwMDIuIEZ1dGVjaCBjbywuTHRkLiBBbGwgcmlnaHQgcmVz ZXJ2ZWQuPC90ZD4NCjwvdHI+DQo8L3RhYmxlPg0KPC90ZD4NCjwvdHI+DQo8 dHI+PHRkIGNvbHNwYW49IjIiIGhlaWdodD0iMSIgYmdjb2xvcj0iI0M2QzZD NiI+PGltZyBzcmM9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmtyL21haWwvbmV3 c2xldHRlci9pbWFnZXMvYmxhbmsuZ2lmIj48L3RkPjwvdHI+DQo8L3RhYmxl Pg0KPC90ZD4NCjx0ZCB3aWR0aD0iMSIgYmdjb2xvcj0iI0M2QzZDNiI+PGlt ZyBzcmM9Imh0dHA6Ly93d3cucmVmaWxsLmNvLmtyL21haWwvbmV3c2xldHRl ci9pbWFnZXMvYmxhbmsuZ2lmIj48L3RkPg0KPC90cj4NCjwvdGFibGU+DQo8 YnI+DQo8L2JvZHk+DQo8L2h0bWw+DQo= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 2:39: 5 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FECF37B401 for ; Sat, 15 Mar 2003 02:39:04 -0800 (PST) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4B2643FAF for ; Sat, 15 Mar 2003 02:39:00 -0800 (PST) (envelope-from leafy@leafy.idv.tw) Received: from [211.74.135.36] (port=49585 helo=leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.10:4) id 18u947-000Hvv-00 for freebsd-java@FreeBSD.ORG; Sat, 15 Mar 2003 18:38:59 +0800 Received: from leafy.idv.tw (nobody@localhost [127.0.0.1]) by leafy.idv.tw (8.12.8/8.12.8) with ESMTP id h2FActDR018355 for ; Sat, 15 Mar 2003 18:38:59 +0800 (CST) (envelope-from leafy@leafy.idv.tw) Received: (from leafy@localhost) by leafy.idv.tw (8.12.8/8.12.8/Submit) id h2FAcso0018325 for freebsd-java@FreeBSD.ORG; Sat, 15 Mar 2003 18:38:54 +0800 (CST) Date: Sat, 15 Mar 2003 18:38:54 +0800 From: leafy To: freebsd-java@FreeBSD.ORG Subject: Re: [patch]bsd.java.mk for freebsd native jdk 1.4.1 Message-ID: <20030315103854.GA16386@leafy.idv.tw> Mail-Followup-To: freebsd-java@FreeBSD.ORG References: <20030307153528.GA9846@leafy.idv.tw> <20030308050430.C60098@misty.eyesbeyond.com> <200303101006.01312.znerd@FreeBSD.org> <540872704.1047721659@mccaffrey.phoenix.volant.org> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <540872704.1047721659@mccaffrey.phoenix.volant.org> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Mar 15, 2003 at 01:47:39AM -0800, Pat Lashley wrote: > With these patches, if 1.3 and 1.4 are both installed, a port requesting > 1.1+ or 1.2+ will get 1.3, not 1.4; but ports requesting 1.3+ will get 1.4. > Was that intentional? (And if so, why?) > > > -Pat It's not intentional. I only wanted ports to get the latest JDK. I'll try again for case with both JDKs installed. Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 3:52:29 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 076BB37B404; Sat, 15 Mar 2003 03:52:19 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D1E943F75; Sat, 15 Mar 2003 03:52:15 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2FE47mJ092550; Sat, 15 Mar 2003 14:04:08 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2FBwKDO068964; Sat, 15 Mar 2003 13:58:20 +0200 (EET) (envelope-from ml) Date: Sat, 15 Mar 2003 13:58:20 +0200 From: Alexey Zelkin To: Pat Lashley Cc: Ernst de Haan , Greg Lewis , leafy , freebsd-java@FreeBSD.ORG Subject: Re: [patch]bsd.java.mk for freebsd native jdk 1.4.1 Message-ID: <20030315135820.A46711@phantom.cris.net> References: <20030307153528.GA9846@leafy.idv.tw> <20030308050430.C60098@misty.eyesbeyond.com> <200303101006.01312.znerd@FreeBSD.org> <540872704.1047721659@mccaffrey.phoenix.volant.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="VbJkn9YxBvnuCH5J" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <540872704.1047721659@mccaffrey.phoenix.volant.org>; from patl+freebsd@volant.org on Sat, Mar 15, 2003 at 01:47:39AM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --VbJkn9YxBvnuCH5J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi, Well. I have made a short trip thru this bsd.java.mk. It looks like somehow outdated and a bit incomplete acroding some points. I have attached a diff proposed to be committed. It adds support for all JDK's in tree and corrects few minor problems there. It also document all changes. --VbJkn9YxBvnuCH5J Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="my-bsd.java.mk.patch" Index: bsd.java.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.java.mk,v retrieving revision 1.29 diff -u -r1.29 bsd.java.mk --- bsd.java.mk 18 Nov 2002 13:00:00 -0000 1.29 +++ bsd.java.mk 15 Mar 2003 11:43:17 -0000 @@ -47,10 +47,12 @@ _JAVA_HOME_FREEBSD_1_1= ${LOCALBASE}/jdk1.1.8 _JAVA_HOME_FREEBSD_1_2= ${LOCALBASE}/jdk1.2.2 _JAVA_HOME_FREEBSD_1_3= ${LOCALBASE}/jdk1.3.1 +_JAVA_HOME_FREEBSD_1_4= ${LOCALBASE}/jdk1.4.1 _JAVA_HOME_BLACKDOWN_LINUX_1_2= ${LOCALBASE}/linux-blackdown-jdk1.2.2 _JAVA_HOME_BLACKDOWN_LINUX_1_3= ${LOCALBASE}/linux-blackdown-jdk1.3.1 _JAVA_HOME_BLACKDOWN_LINUX_1_4= ${LOCALBASE}/linux-blackdown-jdk1.4.1 _JAVA_HOME_IBM_LINUX_1_3= ${LOCALBASE}/linux-ibm-jdk1.3.1 +_JAVA_HOME_IBM_LINUX_1_4= ${LOCALBASE}/linux-ibm-jdk1.4.1 _JAVA_HOME_SUN_LINUX_1_2= ${LOCALBASE}/linux-sun-jdk1.2.2 _JAVA_HOME_SUN_LINUX_1_3= ${LOCALBASE}/linux-sun-jdk1.3.1 _JAVA_HOME_SUN_LINUX_1_4= ${LOCALBASE}/linux-sun-jdk1.4.1 @@ -59,9 +61,12 @@ _JAVA_PORT_FREEBSD_1_1= java/jdk11 _JAVA_PORT_FREEBSD_1_2= java/jdk12 _JAVA_PORT_FREEBSD_1_3= java/jdk13 +_JAVA_PORT_FREEBSD_1_4= java/jdk14 _JAVA_PORT_BLACKDOWN_LINUX_1_2= java/linux-blackdown-jdk12 _JAVA_PORT_BLACKDOWN_LINUX_1_3= java/linux-blackdown-jdk13 +_JAVA_PORT_BLACKDOWN_LINUX_1_4= java/linux-blackdown-jdk14 _JAVA_PORT_IBM_LINUX_1_3= java/linux-ibm-jdk13 +_JAVA_PORT_IBM_LINUX_1_4= java/linux-ibm-jdk14 _JAVA_PORT_SUN_LINUX_1_2= java/linux-sun-jdk12 _JAVA_PORT_SUN_LINUX_1_3= java/linux-sun-jdk13 _JAVA_PORT_SUN_LINUX_1_4= java/linux-sun-jdk14 @@ -82,9 +87,12 @@ . undef HAVE_JAVA_FREEBSD_1_1 . undef HAVE_JAVA_FREEBSD_1_2 . undef HAVE_JAVA_FREEBSD_1_3 +. undef HAVE_JAVA_FREEBSD_1_4 . undef HAVE_JAVA_BLACKDOWN_LINUX_1_2 . undef HAVE_JAVA_BLACKDOWN_LINUX_1_3 +. undef HAVE_JAVA_BLACKDOWN_LINUX_1_4 . undef HAVE_JAVA_IBM_LINUX_1_3 +. undef HAVE_JAVA_IBM_LINUX_1_4 . undef HAVE_JAVA_SUN_LINUX_1_2 . undef HAVE_JAVA_SUN_LINUX_1_3 . undef HAVE_JAVA_SUN_LINUX_1_4 @@ -98,15 +106,24 @@ . if exists(${_JAVA_HOME_FREEBSD_1_3}/${_JDK_FILE}) HAVE_JAVA_FREEBSD_1_3= YES . endif +. if exists(${_JAVA_HOME_FREEBSD_1_4}/${_JDK_FILE}) +HAVE_JAVA_FREEBSD_1_4= YES +. endif . if exists(${_JAVA_HOME_BLACKDOWN_LINUX_1_2}/${_JDK_FILE}) HAVE_JAVA_BLACKDOWN_LINUX_1_2= YES . endif . if exists(${_JAVA_HOME_BLACKDOWN_LINUX_1_3}/${_JDK_FILE}) HAVE_JAVA_BLACKDOWN_LINUX_1_3= YES . endif +. if exists(${_JAVA_HOME_BLACKDOWN_LINUX_1_4}/${_JDK_FILE}) +HAVE_JAVA_BLACKDOWN_LINUX_1_4= YES +. endif . if exists(${_JAVA_HOME_IBM_LINUX_1_3}/${_JDK_FILE}) HAVE_JAVA_IBM_LINUX_1_3= YES . endif +. if exists(${_JAVA_HOME_IBM_LINUX_1_4}/${_JDK_FILE}) +HAVE_JAVA_IBM_LINUX_1_4= YES +. endif . if exists(${_JAVA_HOME_SUN_LINUX_1_2}/${_JDK_FILE}) HAVE_JAVA_SUN_LINUX_1_2= YES . endif @@ -134,12 +151,18 @@ JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_2} . elif ${_JAVA_HOME} == ${_JAVA_HOME_FREEBSD_1_3} JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_3} +. elif ${_JAVA_HOME} == ${_JAVA_HOME_FREEBSD_1_4} +JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_4} . elif ${_JAVA_HOME} == ${_JAVA_HOME_BLACKDOWN_LINUX_1_2} JAVA_PORT= ${_JAVA_PORT_BLACKDOWN_LINUX_1_2} . elif ${_JAVA_HOME} == ${_JAVA_HOME_BLACKDOWN_LINUX_1_3} JAVA_PORT= ${_JAVA_PORT_BLACKDOWN_LINUX_1_3} +. elif ${_JAVA_HOME} == ${_JAVA_HOME_BLACKDOWN_LINUX_1_4} +JAVA_PORT= ${_JAVA_PORT_BLACKDOWN_LINUX_1_4} . elif ${_JAVA_HOME} == ${_JAVA_HOME_IBM_LINUX_1_3} JAVA_PORT= ${_JAVA_PORT_IBM_LINUX_1_3} +. elif ${_JAVA_HOME} == ${_JAVA_HOME_IBM_LINUX_1_4} +JAVA_PORT= ${_JAVA_PORT_IBM_LINUX_1_4} . elif ${_JAVA_HOME} == ${_JAVA_HOME_SUN_LINUX_1_2} JAVA_PORT= ${_JAVA_PORT_SUN_LINUX_1_2} . elif ${_JAVA_HOME} == ${_JAVA_HOME_SUN_LINUX_1_3} @@ -155,34 +178,33 @@ #----------------------------------------------------------------------------- # Stage 4: Decide the exact JDK version if only a minimum version is specified # - # If USE_JAVA is 1.1+, 1.2+, 1.3+ or 1.4+, then set it to 1.1, 1.2, 1.3 or # 1.4, depending on what JDK's are already installed. The FreeBSD JDK will be -# preferred. The Sun JDK 1.4 for Linux is always the least preferred JDK. +# preferred. Any JDK 1.4 for Linux are always the least preferred JDK. # However, the most respected rule is that if a JDK is already installed, then # no JDK will be downloaded unless necessary. # # The following rules will be used, per setting: # -# If the setting is 1.1+, then use an existing 1.2 or 1.3 JDK if installed, -# otherwise use the JDK 1.1.8 for FreeBSD if it is already installed. If no -# other JDK than the Sun JDK 1.4 for Linux is installed, then that one will be -# used. It is the least preferred alternative. +# If the setting is 1.1+, then use an existing 1.2, 1.3 or 1.4 JDK if installed, +# otherwise use the JDK 1.1.8 for FreeBSD if it is already installed. The +# FreeBSD JDK 1.4 is preferred over any JDK's. # # If the setting is 1.2+, then use an already installed 1.2, 1.3 or 1.4 JDK. -# If there is no such JDK, then set USE_JAVA to 1.2. An 1.3 JDK is preferred -# over 1.2 JDK's. +# If there is no such JDK, then set USE_JAVA to 1.2. The FreeBSD JDK 1.4 or +# any of 1.3 JDK is preferred over 1.2 JDK's. # -# If the setting is 1.3+, then see if the Sun JDK 1.4 for Linux is installed, -# while no 1.3 JDK's are installed. If that is the case, then USE_JAVA will be -# set to 1.4. Otherwise it will be set to 1.3. All 1.3 JDK's are currently -# preferred over a 1.4.x JDK since it is considered less stable. +# If the setting is 1.3+, then use an already installed 1.3 or 1.4 JDK. If +# there is no such JDK, then set USE_JAVA to 1.3. The FreeBSD JDK 1.4 is +# preferred over 1.3 JDK's. # # If the setting is 1.4+, then set it to 1.4 right away. There is no other # option at the moment. . if (${USE_JAVA} == "1.1+") -. if defined(HAVE_JAVA_FREEBSD_1_3) || \ +. if defined(HAVE_JAVA_FREEBSD_1_4) +USE_JAVA= 1.4 +. elif defined(HAVE_JAVA_FREEBSD_1_3) || \ defined(HAVE_JAVA_SUN_LINUX_1_3) || \ defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ defined(HAVE_JAVA_IBM_LINUX_1_3) @@ -191,25 +213,34 @@ defined(HAVE_JAVA_BLACKDOWN_LINUX_1_2) || \ defined(HAVE_JAVA_SUN_LINUX_1_2) USE_JAVA= 1.2 -. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) +. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) && \ + !defined(HAVE_JAVA_BLACKDOWN_LINUX_1_4) && \ + !defined(HAVE_JAVA_IBM_LINUX_1_4) USE_JAVA= 1.1 . else USE_JAVA= 1.4 . endif . elif (${USE_JAVA} == "1.2+") -. if defined(HAVE_JAVA_FREEBSD_1_3) || \ +. if defined(HAVE_JAVA_FREEBSD_1_4) +USE_JAVA= 1.4 +. elif defined(HAVE_JAVA_FREEBSD_1_3) || \ defined(HAVE_JAVA_SUN_LINUX_1_3) || \ defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ defined(HAVE_JAVA_IBM_LINUX_1_3) USE_JAVA= 1.3 -. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) +. elif !defined(HAVE_JAVA_SUN_LINUX_1_4) && \ + !defined(HAVE_JAVA_BLACKDOWN_LINUX_1_4) && \ + !defined(HAVE_JAVA_IBM_LINUX_1_4) USE_JAVA= 1.2 . else USE_JAVA= 1.4 . endif + . elif (${USE_JAVA} == "1.3+") -. if defined(HAVE_JAVA_FREEBSD_1_3) || \ +. if defined(HAVE_JAVA_FREEBSD_1_4) +USE_JAVA= 1.4 +. elif defined(HAVE_JAVA_FREEBSD_1_3) || \ defined(HAVE_JAVA_SUN_LINUX_1_3) || \ defined(HAVE_JAVA_IBM_LINUX_1_3) || \ defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) || \ @@ -218,8 +249,10 @@ . else USE_JAVA= 1.4 . endif + . elif (${USE_JAVA} == "1.4+") USE_JAVA= 1.4 + . else .BEGIN: @${ECHO} "${Java_Include}: Internal error. \"${USE_JAVA}\" is not caught as a valid value for USE_JAVA. Please send an email to ${Java_Include_MAINTAINER} with a detailed description of what you did and what the output was."; @@ -242,11 +275,12 @@ JAVA_HOME= ${_JAVA_HOME_FREEBSD_1_1} JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_1} -# If the port needs Java 1.2, then there are 2 choices. They are, in order or +# If the port needs Java 1.2, then there are 3 choices. They are, in order or # preference: # # (1) JDK 1.2.2 for FreeBSD # (2) Blackdown JDK 1.2.2 for Linux +# (3) Sun JDK 1.2.2 for Linux # # If either the Blackdown or Sun JDK 1.2.2 (both for Linux) is installed, but # the FreeBSD JDK 1.2.2 is *not* installed, then the installed Linux JDK will @@ -255,6 +289,7 @@ # # The FreeBSD JDK 1.2 is preferred over the Linux JDK's. Among these, the # Blackdown JDK is preferred over the Sun JDK. +# . elif ${USE_JAVA} == "1.2" . if defined(HAVE_JAVA_BLACKDOWN_LINUX_1_2) \ && !defined(HAVE_JAVA_FREEBSD_1_2) @@ -291,6 +326,7 @@ # # Otherwise, one of the installed Linux JDKs is chosen, based on their # preferences. +# . elif ${USE_JAVA} == "1.3" . if defined(HAVE_JAVA_BLACKDOWN_LINUX_1_3) \ && !defined(HAVE_JAVA_IBM_LINUX_1_3) \ @@ -324,14 +360,56 @@ JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_3} . endif -# If the port needs JDK 1.4, then there's currently only one choice, the Sun -# JDK 1.4.x for Linux. +# If the port needs Java 1.4, then there are 4 choices. They are, in order or +# preference: +# +# (1) JDK 1.4.1 for FreeBSD +# (2) Sun JDK 1.4.1 for Linux +# (3) IBM JDK 1.4.1 for Linux +# (4) Blackdown JDK 1.4.1 for Linux +# +# If the FreeBSD JDK 1.4.1 is installed or if none of the 1.4.1 JDK's is +# installed, then the FreeBSD JDK 1.4.1 is used as a dependency for the port. +# +# Otherwise, one of the installed Linux JDKs is chosen, based on their +# preferences. +# . elif ${USE_JAVA} == "1.4" +. if defined(HAVE_JAVA_BLACKDOWN_LINUX_1_4) \ + && !defined(HAVE_JAVA_IBM_LINUX_1_4) \ + && !defined(HAVE_JAVA_SUN_LINUX_1_4) \ + && !defined(HAVE_JAVA_FREEBSD_1_4) +JAVA_VENDOR= Blackdown +JAVA_VER= 1.4.1 +JAVA_OS= Linux +JAVA_HOME= ${_JAVA_HOME_BLACKDOWN_LINUX_1_4} +JAVA_PORT= ${_JAVA_PORT_BLACKDOWN_LINUX_1_4} +. elif defined(HAVE_JAVA_IBM_LINUX_1_4) \ + && !defined(HAVE_JAVA_SUN_LINUX_1_4) \ + && !defined(HAVE_JAVA_FREEBSD_1_4) +JAVA_VENDOR= IBM +JAVA_VER= 1.4.1 +JAVA_OS= Linux +JAVA_HOME= ${_JAVA_HOME_IBM_LINUX_1_4} +JAVA_PORT= ${_JAVA_PORT_IBM_LINUX_1_4} +. elif defined(HAVE_JAVA_SUN_LINUX_1_4) \ + && !defined(HAVE_JAVA_FREEBSD_1_4) JAVA_VENDOR= Sun JAVA_VER= 1.4.1 JAVA_OS= Linux JAVA_HOME= ${_JAVA_HOME_SUN_LINUX_1_4} JAVA_PORT= ${_JAVA_PORT_SUN_LINUX_1_4} +. else +JAVA_VENDOR= FreeBSD +JAVA_VER= 1.4.1 +JAVA_OS= FreeBSD +JAVA_HOME= ${_JAVA_HOME_FREEBSD_1_4} +JAVA_PORT= ${_JAVA_PORT_FREEBSD_1_4} +. endif + +# +# Port wants something that we do not understand. Stop here. +# . else .BEGIN: @${ECHO} "${PKGNAME}: \"${USE_JAVA}\" is not a valid value for USE_JAVA. It should be one of: ${_JAVA_VERSIONS} (with an optional \"+\" suffix.)"; --VbJkn9YxBvnuCH5J-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 3:52:42 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0FD037B401 for ; Sat, 15 Mar 2003 03:52:41 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF3A543FB1 for ; Sat, 15 Mar 2003 03:52:38 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2FE54mJ092594; Sat, 15 Mar 2003 14:05:04 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2FBxMBW068985; Sat, 15 Mar 2003 13:59:22 +0200 (EET) (envelope-from ml) Date: Sat, 15 Mar 2003 13:59:22 +0200 From: Alexey Zelkin To: leafy Cc: freebsd-java@FreeBSD.ORG Subject: Re: [patch]bsd.java.mk for freebsd native jdk 1.4.1 Message-ID: <20030315135922.B46711@phantom.cris.net> References: <20030307153528.GA9846@leafy.idv.tw> <20030308050430.C60098@misty.eyesbeyond.com> <200303101006.01312.znerd@FreeBSD.org> <540872704.1047721659@mccaffrey.phoenix.volant.org> <20030315103854.GA16386@leafy.idv.tw> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030315103854.GA16386@leafy.idv.tw>; from leafy@leafy.idv.tw on Sat, Mar 15, 2003 at 06:38:54PM +0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Mar 15, 2003 at 06:38:54PM +0800, leafy wrote: > On Sat, Mar 15, 2003 at 01:47:39AM -0800, Pat Lashley wrote: > > With these patches, if 1.3 and 1.4 are both installed, a port requesting > > 1.1+ or 1.2+ will get 1.3, not 1.4; but ports requesting 1.3+ will get 1.4. > > Was that intentional? (And if so, why?) > > > > > > -Pat > It's not intentional. I only wanted ports to get the latest JDK. I'll try again for case with both JDKs installed. Problem may be caused by using '||' in place there '&&' is expected. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 4: 0: 1 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80CF737B404 for ; Sat, 15 Mar 2003 04:00:00 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 554E043F85 for ; Sat, 15 Mar 2003 03:59:57 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2FECLmJ092829; Sat, 15 Mar 2003 14:12:21 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2FC6gBc080795; Sat, 15 Mar 2003 14:06:42 +0200 (EET) (envelope-from ml) Date: Sat, 15 Mar 2003 14:06:42 +0200 From: Alexey Zelkin To: Andrew Mace Cc: Alexey Zelkin , freebsd-java@FreeBSD.ORG Subject: Re: build failure of jdk14 on 5.0 current Message-ID: <20030315140642.A72706@phantom.cris.net> References: <20030312204630.A3342@phantom.cris.net> <28367.1047611315@www2.gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <28367.1047611315@www2.gmx.net>; from JtRipper@gmx.net on Fri, Mar 14, 2003 at 04:08:35AM +0100 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Mar 14, 2003 at 04:08:35AM +0100, Andrew Mace wrote: > Thanks. But how can I fix the problem? Sorry, I not sure. Usually it reflects problems with gcc, kernel/userland synchronization or hardware. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 5: 2:32 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4395537B401 for ; Sat, 15 Mar 2003 05:02:31 -0800 (PST) Received: from hfep04.dion.ne.jp (hfep04.dion.ne.jp [203.181.105.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 975F543FA3 for ; Sat, 15 Mar 2003 05:02:29 -0800 (PST) (envelope-from haro@h4.dion.ne.jp) Received: from localhost ([61.200.136.102]) by hfep04.dion.ne.jp with ESMTP id <20030315130228092.EAZJ@hfep04.dion.ne.jp>; Sat, 15 Mar 2003 22:02:28 +0900 Date: Sat, 15 Mar 2003 22:02:19 +0900 (JST) Message-Id: <20030315.220219.85418624.haro@h4.dion.ne.jp> To: glewis@eyesbeyond.com Cc: freebsd-java@FreeBSD.ORG Subject: Re: [CFR] jdk1.3.1 java_wrapper script update patch From: Munehiro Matsuda In-Reply-To: <20030315030040.A88073@misty.eyesbeyond.com> References: <20030315.003054.74755042.haro@h4.dion.ne.jp> <20030315030040.A88073@misty.eyesbeyond.com> X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org From: Greg Lewis Date: Sat, 15 Mar 2003 03:00:40 +1030 :: ::You know, I'm going to have to punish you with a BSD Java commit bit if ::you keep this up ;). Oops. I think I'll have to slow down a bit. ;-) ::Arigato, again! Looks good from an initial glance, I'll test it out ::a little later. Thanks, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kgt.co.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 5:34:43 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6DE137B404 for ; Sat, 15 Mar 2003 05:34:41 -0800 (PST) Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E0A843FDF for ; Sat, 15 Mar 2003 05:34:40 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta01-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20030315133438.PHNG6166.mta01-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Sat, 15 Mar 2003 13:34:38 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: Greg Lewis , Munehiro Matsuda Subject: Re: [CFR] jdk1.3.1 java_wrapper script update patch Date: Sat, 15 Mar 2003 13:34:36 +0000 User-Agent: KMail/1.4.2 Cc: freebsd-java@FreeBSD.ORG References: <20030315.003054.74755042.haro@h4.dion.ne.jp> <20030315030040.A88073@misty.eyesbeyond.com> In-Reply-To: <20030315030040.A88073@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303151334.38233.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fantastic! Works great for me :) Greg, commit this urgently please! Next... we need a willing volunteer who has -CURRENT installed and see if= =20 native threads work with the KSE pthreads... bash-2.05b$ java -version java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build=20 1.3.1-p8-root-030308-09:34) Java HotSpot(TM) Client VM (build 1.3.1-internal, mixed mode) bash-2.05b$ java -server -version java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build=20 1.3.1-p8-root-030308-09:34) Java HotSpot(TM) Server VM (build 1.3.1-internal, mixed mode) bash-2.05b$ java -classic -version java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build=20 1.3.1-p8-root-030308-09:34) Classic VM (build 1.3.1-p8-root-030308-09:34, green threads, nojit) bash-2.05b$ java -classic -Djava.compiler=3Dtya -version TYA 1.7v3 (J12) Copyright (c) 1997-2000 Albrecht Kleine java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build=20 1.3.1-p8-root-030308-09:34) Classic VM (build 1.3.1-p8-root-030308-09:34, green threads, tya) bash-2.05b$ java -native -Djava.compiler=3Dtya -version TYA 1.7v3 (J12) Copyright (c) 1997-2000 Albrecht Kleine java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build=20 1.3.1-p8-root-030308-09:34) Classic VM (build 1.3.1-p8-root-030308-09:34, native threads, tya) bash-2.05b$ java -native -version java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build=20 1.3.1-p8-root-030308-09:34) Classic VM (build 1.3.1-p8-root-030308-09:34, native threads, nojit) - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+cyvuql7dp2cddmIRAiCVAKCMjHvsQ8086F+ikraor4UUlUgkAgCgqG9q 6xj9bAN5ol7D6BH+HrjeGaE=3D =3DGHkt -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 8:53:50 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D546937B401 for ; Sat, 15 Mar 2003 08:53:48 -0800 (PST) Received: from mgr4.xmission.com (mgr4.xmission.com [198.60.22.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B93243F75 for ; Sat, 15 Mar 2003 08:53:48 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from mail by mgr4.xmission.com with spam-scanned (Exim 3.35 #1) id 18uEup-0004kg-04 for freebsd-java@freebsd.org; Sat, 15 Mar 2003 09:53:47 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr4.xmission.com with esmtp (Exim 3.35 #1) id 18uEuo-0004jC-04; Sat, 15 Mar 2003 09:53:47 -0700 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id h2FGrfa94216; Sun, 16 Mar 2003 03:23:41 +1030 (CST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sun, 16 Mar 2003 03:23:39 +1030 From: Greg Lewis To: Antony T Curtis Cc: Munehiro Matsuda , freebsd-java@FreeBSD.ORG Subject: Re: [CFR] jdk1.3.1 java_wrapper script update patch Message-ID: <20030316032338.A94004@misty.eyesbeyond.com> References: <20030315.003054.74755042.haro@h4.dion.ne.jp> <20030315030040.A88073@misty.eyesbeyond.com> <200303151334.38233.antony.t.curtis@ntlworld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303151334.38233.antony.t.curtis@ntlworld.com>; from antony.t.curtis@ntlworld.com on Sat, Mar 15, 2003 at 01:34:36PM +0000 X-Spam-Status: No, hits=-2.7 required=8.0 tests=IN_REP_TO,REFERENCES,SIGNATURE_SHORT_DENSE, SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_MUTT,X_AUTH_WARNING version=2.43 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Mar 15, 2003 at 01:34:36PM +0000, Antony T Curtis wrote: > Fantastic! Works great for me :) > > Greg, commit this urgently please! We're actually in a ports freeze... :). I'll commit it as soon as things unfreeze. > Next... we need a willing volunteer who has -CURRENT installed and see if > native threads work with the KSE pthreads... That would certainly be interesting. A good test to see if KSE pthreads is up to it for sure. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 9:10: 4 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FA5F37B401 for ; Sat, 15 Mar 2003 09:10:03 -0800 (PST) Received: from web12902.mail.yahoo.com (web12902.mail.yahoo.com [216.136.174.69]) by mx1.FreeBSD.org (Postfix) with SMTP id AF51443F3F for ; Sat, 15 Mar 2003 09:10:02 -0800 (PST) (envelope-from magnus_os@yahoo.se) Message-ID: <20030315171002.33585.qmail@web12902.mail.yahoo.com> Received: from [217.215.189.15] by web12902.mail.yahoo.com via HTTP; Sat, 15 Mar 2003 18:10:02 CET Date: Sat, 15 Mar 2003 18:10:02 +0100 (CET) From: =?iso-8859-1?q?Magnus=20J?= Subject: Native JDK1.4.1 4.8 RC problem revisited To: freebsd-java@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello everyone Earlier this week, there was a thread about this problem: > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org > /o rg.omg.PortableServer/.classes.list > gmake[5]: *** No rule to make target > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe > s/ org/omg/PortableServer/AdapterActivator.class', needed by `classes'. > Stop. gmake[5]: Leaving directory I cvsup:ed my 4.8 RC this morning, and I'm seeing the same problem on my dual Pentium III box. I couldn't find a solution to this problem in the mailing archive. Was the solution found? Regards Magnus _____________________________________________________ Gå före i kön och få din sajt värderad på nolltid med Yahoo! Express Se mer på: http://se.docs.yahoo.com/info/express/help/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 9:25:54 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64F1037B401 for ; Sat, 15 Mar 2003 09:25:53 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8939C43F85 for ; Sat, 15 Mar 2003 09:25:47 -0800 (PST) (envelope-from ml@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h2FJcAmJ008061; Sat, 15 Mar 2003 19:38:13 GMT Received: (from ml@localhost) by phantom.cris.net (8.12.6/8.12.2) id h2FHWPuX090558; Sat, 15 Mar 2003 19:32:25 +0200 (EET) (envelope-from ml) Date: Sat, 15 Mar 2003 19:32:25 +0200 From: Alexey Zelkin To: Magnus J Cc: freebsd-java@FreeBSD.ORG Subject: Re: Native JDK1.4.1 4.8 RC problem revisited Message-ID: <20030315193225.A90528@phantom.cris.net> References: <20030315171002.33585.qmail@web12902.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030315171002.33585.qmail@web12902.mail.yahoo.com>; from magnus_os@yahoo.se on Sat, Mar 15, 2003 at 06:10:02PM +0100 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, Please re-cvsup your ports tree. I believe it's workarounded now (not yet fixed, since I don't have SMP hardware to test). I am trying now to find some SMP hardware here to check and fix a problem On Sat, Mar 15, 2003 at 06:10:02PM +0100, Magnus J wrote: > Hello everyone > > > Earlier this week, there was a thread about this > problem: > > > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org > > /o rg.omg.PortableServer/.classes.list > > gmake[5]: *** No rule to make target > > > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe > > s/ org/omg/PortableServer/AdapterActivator.class', > needed by `classes'. > > Stop. gmake[5]: Leaving directory > > I cvsup:ed my 4.8 RC this morning, and I'm seeing the > same problem on my dual Pentium III box. I couldn't > find a solution to this problem in the mailing > archive. Was the solution found? > > Regards > Magnus > > > _____________________________________________________ > Ga fore i kon och fa din sajt varderad pa nolltid med Yahoo! Express > Se mer pa: http://se.docs.yahoo.com/info/express/help/index.html > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 13:24:59 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9D0237B401 for ; Sat, 15 Mar 2003 13:24:57 -0800 (PST) Received: from gate.volant.org (gate.volant.org [207.111.218.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5067343F75 for ; Sat, 15 Mar 2003 13:24:57 -0800 (PST) (envelope-from patl+freebsd@volant.org) Received: from 64-144-229-193.client.dsl.net ([64.144.229.193] helo=[192.168.0.13]) by gate.volant.org with asmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.33 #1) id 18uJ9D-000DFC-00; Sat, 15 Mar 2003 13:24:56 -0800 Date: Sat, 15 Mar 2003 13:24:36 -0800 From: Pat Lashley To: Magnus J , freebsd-java@FreeBSD.ORG Subject: Re: Native JDK1.4.1 4.8 RC problem revisited Message-ID: <66570000.1047763475@mccaffrey.phoenix.volant.org> In-Reply-To: <20030315171002.33585.qmail@web12902.mail.yahoo.com> References: <20030315171002.33585.qmail@web12902.mail.yahoo.com> X-Mailer: Mulberry/2.2.1 (Linux/x86 Demo) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========1871899384==========" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==========1871899384========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Saturday, March 15, 2003 18:10:02 +0100 Magnus J =20 wrote: > Hello everyone > > > Earlier this week, there was a thread about this > problem: >> > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org >> /o rg.omg.PortableServer/.classes.list >> gmake[5]: *** No rule to make target >> > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe >> s/ org/omg/PortableServer/AdapterActivator.class', > needed by `classes'. >> Stop. gmake[5]: Leaving directory > > I cvsup:ed my 4.8 RC this morning, and I'm seeing the > same problem on my dual Pentium III box. I couldn't > find a solution to this problem in the mailing > archive. Was the solution found? Yes, I found the solution to my problem; and posted the answer. It probably hasn't made it into the archives yet; but you could check the bug report, with proposed patch: http://www.freebsd.org/cgi/query-pr.cgi?pr=3D49995 -Pat --==========1871899384========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+c5ofncYNbLD8wuMRAguPAJ9XArT576RCBGiAmT93TCCu0/x03QCfWVQi vKSKLi2bDZ7rv/65yrGE+eA= =j5Dp -----END PGP SIGNATURE----- --==========1871899384==========-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 15:11:11 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEA5D37B401 for ; Sat, 15 Mar 2003 15:11:09 -0800 (PST) Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B2F143FBF for ; Sat, 15 Mar 2003 15:11:08 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta05-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20030315231106.WZVX310.mta05-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Sat, 15 Mar 2003 23:11:06 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: Greg Lewis Subject: Re: [CFR] jdk1.3.1 java_wrapper script update patch Date: Sat, 15 Mar 2003 23:11:03 +0000 User-Agent: KMail/1.4.2 Cc: freebsd-java@FreeBSD.ORG References: <20030315.003054.74755042.haro@h4.dion.ne.jp> <200303151334.38233.antony.t.curtis@ntlworld.com> <20030316032338.A94004@misty.eyesbeyond.com> In-Reply-To: <20030316032338.A94004@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303152311.06060.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Saturday 15 March 2003 4:53 pm, Greg Lewis wrote: > On Sat, Mar 15, 2003 at 01:34:36PM +0000, Antony T Curtis wrote: > > Fantastic! Works great for me :) > > > > Greg, commit this urgently please! > > We're actually in a ports freeze... :). I'll commit it as soon as > things unfreeze. Darn - and I notice that 4.8R has been postponed. As a side, I've compiled up the 1.3 native threads with come code merged = from=20 1.4 jdk - maybe it would help it behave better - had a few cases where=20 - -classic worked but -native crashed which I'm trying to fix. > > Next... we need a willing volunteer who has -CURRENT installed and se= e if > > native threads work with the KSE pthreads... > > That would certainly be interesting. A good test to see if KSE pthread= s > is up to it for sure. Yep - if I had a spare PC..... Also possible is another "hpi" specially f= or=20 KSE threads... ie, go right to the base syscalls w/o the pthreads layer. I wonder if it's possible to make a "hpi" using the linuxthreads port... - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+c7MJql7dp2cddmIRAsbYAJ0Y975x/5XodhjWTE/GJgtnryqZ6QCdGA/r kb7q3su+yKOdxVWKdxuvgbA=3D =3DOzCO -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 16: 3:15 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E92D237B404 for ; Sat, 15 Mar 2003 16:03:13 -0800 (PST) Received: from web12907.mail.yahoo.com (web12907.mail.yahoo.com [216.136.174.74]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B46043FA3 for ; Sat, 15 Mar 2003 16:03:13 -0800 (PST) (envelope-from magnus_os@yahoo.se) Message-ID: <20030316000313.26433.qmail@web12907.mail.yahoo.com> Received: from [217.215.189.15] by web12907.mail.yahoo.com via HTTP; Sun, 16 Mar 2003 01:03:13 CET Date: Sun, 16 Mar 2003 01:03:13 +0100 (CET) From: =?iso-8859-1?q?Magnus=20J?= Subject: Re: Native JDK1.4.1 4.8 RC problem revisited To: freebsd-java@FreeBSD.ORG In-Reply-To: <66570000.1047763475@mccaffrey.phoenix.volant.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi This solved the problem. Because of the 1.5GB needed I had to move /usr/ports/java to another disk - /disk2 and creating a link. Renaming /disk2 to /scsi1 made the build go through all the way. Thanks Magnus --- Pat Lashley skrev: > --On Saturday, March 15, 2003 18:10:02 +0100 Magnus J > > wrote: > > > Hello everyone > > > > > > Earlier this week, there was a thread about this > > problem: > >> > > > /d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/tmp/org > >> /o rg.omg.PortableServer/.classes.list > >> gmake[5]: *** No rule to make target > >> > > > `/d1/ports-workdir/d4/ports/java/jdk14/work/control/build/bsd-i586/classe > >> s/ org/omg/PortableServer/AdapterActivator.class', > > needed by `classes'. > >> Stop. gmake[5]: Leaving directory > > > > I cvsup:ed my 4.8 RC this morning, and I'm seeing the > > same problem on my dual Pentium III box. I couldn't > > find a solution to this problem in the mailing > > archive. Was the solution found? > > Yes, I found the solution to my problem; and posted the > answer. It > probably hasn't made it into the archives yet; but you could > check > the bug report, with proposed patch: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=49995 > > > > > -Pat > ATTACHMENT part 2 application/pgp-signature _____________________________________________________ Gå före i kön och få din sajt värderad på nolltid med Yahoo! Express Se mer på: http://se.docs.yahoo.com/info/express/help/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 15 19:37: 6 2003 Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E8EB37B404 for ; Sat, 15 Mar 2003 19:37:04 -0800 (PST) Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB18943F3F for ; Sat, 15 Mar 2003 19:37:02 -0800 (PST) (envelope-from antony.t.curtis@ntlworld.com) Received: from pcgem.rdg.cyberkinetica.com ([81.98.110.96]) by mta03-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with ESMTP id <20030316033700.OZSW11246.mta03-svc.ntlworld.com@pcgem.rdg.cyberkinetica.com>; Sun, 16 Mar 2003 03:37:00 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Antony T Curtis To: Greg Lewis Subject: Re: [CFR] jdk1.3.1 java_wrapper script update patch Date: Sun, 16 Mar 2003 03:36:57 +0000 User-Agent: KMail/1.4.2 Cc: freebsd-java@FreeBSD.ORG References: <20030315.003054.74755042.haro@h4.dion.ne.jp> <20030316032338.A94004@misty.eyesbeyond.com> <200303152311.06060.antony.t.curtis@ntlworld.com> In-Reply-To: <200303152311.06060.antony.t.curtis@ntlworld.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200303160336.59352.antony.t.curtis@ntlworld.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Saturday 15 March 2003 11:11 pm, Antony T Curtis wrote: > On Saturday 15 March 2003 4:53 pm, Greg Lewis wrote: > > On Sat, Mar 15, 2003 at 01:34:36PM +0000, Antony T Curtis wrote: > > > Fantastic! Works great for me :) > > > > > > Greg, commit this urgently please! > > > > We're actually in a ports freeze... :). I'll commit it as soon as > > things unfreeze. > > Darn - and I notice that 4.8R has been postponed. > > As a side, I've compiled up the 1.3 native threads with come code merge= d > from 1.4 jdk - maybe it would help it behave better - had a few cases w= here > -classic worked but -native crashed which I'm trying to fix. Okay - I can confirm that there is a problem in the native threading code= =2E SIGUSR1 is being thrown frequently without being caught properly and some= =20 other cruft with uninitialized structures. I have some code here which works much smoother - dispite removing all ot= her=20 references to pthread_t internal references, I ended up introducing anoth= er=20 which I'm blaming on the fact that the UTS/libc_r allows signals to be=20 delivered while still in critical sections of it instead of unwinding to=20 where signals can be delivered safely.=20 It's working well but not perfect... Both client and server hotspot are n= ow=20 performing reasonably well without hiccups... native+tya gives near on-pa= r=20 performance on the Java2D demo. - --=20 Antony T Curtis BSc Unix Analyst Programmer http://homepage.ntlworld.com/antony.t.curtis/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+c/Fbql7dp2cddmIRAkqyAKC6NhB6hadwGcJ58oZyytnQOwjfkwCgl6Hv e0e0ru0V92WAZbWouXaCAdQ=3D =3D3/KB -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message