From owner-freebsd-java Sun Oct 7 7: 4:42 2001 Delivered-To: freebsd-java@freebsd.org Received: from azrael.xs4all.nl (azrael.xs4all.nl [213.84.220.111]) by hub.freebsd.org (Postfix) with ESMTP id 4CFC937B406 for ; Sun, 7 Oct 2001 07:04:37 -0700 (PDT) Received: (from remco@localhost) by azrael.xs4all.nl (8.11.6/8.11.6) id f97E4XE34842 for freebsd-java@FreeBSD.ORG; Sun, 7 Oct 2001 16:04:33 +0200 (CEST) (envelope-from remco) Date: Sun, 7 Oct 2001 16:04:33 +0200 From: "Remco van 't Veer" To: FreeBSD Java List Subject: jdk1.3.1p4_1: java.lang.Process blocks Thread.sleep() and Object.wait() Message-ID: <20011007160433.I66717@azrael.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Spook: Z-200 SART Mavricks 007 EAM PSAC Chobetsu ETA mutageen SBS AFSPC 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, The following code does not work as expected: public class Y { public static void main (String[] args) throws Exception { String[] pargs = { "sleep", "10" }; try { Runtime.getRuntime().exec(pargs); } catch (java.io.IOException ex) { } System.out.println("Sleep process is running.."); System.out.println("Now this thread will print a . every second"); for (int i = 0; i < 10; i++) { Thread.currentThread().sleep(1000); System.out.print("."); } System.out.println("."); } } The current thread will no wake up until the executed process has finished. The native 1.2.2 port and the linux jdk 1.3.1 both behave as expected. It takes them 10 seconds to execute this code. On the native 1.3.1 port this class takes 20 seconds to finish. Further investigation revealed something which may be of interest. Replacing: Thread.currentThread().sleep(1000); with: Object o = new Object(); synchronized (o) { o.wait(1000); } shows the same problem. BTW great port! It's starts up and runs very fast! Great work! TIA, Remco -- scilla: not so pure java media server To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 1:19:49 2001 Delivered-To: freebsd-java@freebsd.org Received: from l04.research.kpn.com (l04.research.kpn.com [139.63.192.204]) by hub.freebsd.org (Postfix) with ESMTP id 59B1F37B405; Mon, 8 Oct 2001 01:19:44 -0700 (PDT) Received: by l04.research.kpn.com with Internet Mail Service (5.5.2653.19) id ; Mon, 8 Oct 2001 10:19:43 +0100 Message-ID: <59063B5B4D98D311BC0D0001FA7E452205FDA021@l04.research.kpn.com> From: "Koster, K.J." To: "FreeBSD Java mailing list (E-mail)" Cc: "'fenner@FreeBSD.org'" Subject: FW: FreeBSD ports: 1 unfetchable distfiles: java/linux-jdk Date: Mon, 8 Oct 2001 10:19:41 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" 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 All, I'm due to fly to Egypt for three weeks tomorrow, so I have no time to look into this. Could someone else pick this up and look into it? Thanks in advance, Kees Jan -----Original Message----- From: fenner@FreeBSD.org [mailto:fenner@FreeBSD.org] Sent: zondag 7 oktober 2001 18:00 To: k.j.koster@kpn.com Subject: FreeBSD ports: 1 unfetchable distfiles: java/linux-jdk Dear k.j.koster@kpn.com, You are listed as the FreeBSD port maintainer for 1 port whose distfiles [or main web pages] are not fetchable from their MASTER_SITES. Could you please visit http://people.freebsd.org/~fenner/portsurvey/k.j.koster@kpn.com.html and correct the problems listed there? The individual port with a problem is java/linux-jdk. Note that the main port web page, as listed in the WWW: line of the pkg-descr, is checked just as though it was a port distfile. This is an unfortunate side effect of the architecture of the distfile survey reporting system, but if you see a distfile being reported as not fetchable that's not actually a distfile, see if it's from the pkg-descr. If you have already corrected the problems and submitted a PR, please accept my thanks and apologies for the delay in getting the fixes into the tree. This reminder is created automatically and does not (yet) have a way to know if a PR fixing the problem has been submitted. Please do *NOT* submit your response to me directly; I do not always have time to commit your fix; please instead submit a PR via 'send-pr' so it doesn't get lost. Problems are usually of two types: 1. The software package has been upgraded and the version in the port has been removed. The best solution to this problem is to upgrade the port to the most current version of the software package. If you are a FreeBSD committer, then you can just upgrade the port directly. If not, you should create the new port on your own system, test it (and maybe even run "portlint" on it), and then use "send-pr" to submit a "diff -uNr old-port new-port". If you added or deleted any files, please make an explicit note of it. 2. The mirror site being used no longer contains the software package in question, or no longer exists. Solutions include: a) If there are other mirror sites, just remove the bad site from the list. (Make sure that what appears to be a bad site isn't actually a problem of type 1, upgrade) b) If the README or other support files in the software documentation mention where to get the software package, use one of those sites. c) Use ftpsearch (http://ftpsearch.ntnu.no/ftpsearch) or other search engines to find another place to get the original DISTFILES. Make sure that you don't pick a FreeBSD distfiles mirror -- if you can't find any other places where the file exists, it can be a LOCAL_PORT or you can simply comment out the MASTER_SITES= line, with a comment explaining why. Once you have a solution, use "send-pr" to submit a "diff -u" of the Makefile. Note that this isn't an urgent issue, as people who try to build the port now will just fall back to the FreeBSD distfiles mirror. Please just put it on your list to do and get to it when you have time. These messages will continue to arrive twice a month until the fix is committed, as a reminder. Thanks, Bill "distfiles" Fenner. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 5:13:42 2001 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id EA43837B406; Mon, 8 Oct 2001 05:13:36 -0700 (PDT) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id f98CDZS03877; Mon, 8 Oct 2001 14:13:35 +0200 (CEST) (envelope-from ernst) Date: Mon, 8 Oct 2001 14:13:35 +0200 (CEST) Message-Id: <200110081213.f98CDZS03877@zaphod.euronet.nl> To: FreeBSD-gnats-submit@freebsd.org Subject: Maintainer update: java/jdk11-doc From: Ernst de Haan Reply-To: Ernst de Haan Cc: java@freebsd.org, sobomax@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: 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 >Submitter-Id: current-users >Originator: Ernst de Haan >Organization: Euronet Internet B.V. >Confidential: no >Synopsis: Maintainer update: java/jdk11-doc >Severity: serious >Priority: medium >Category: ports >Class: maintainer-update >Release: FreeBSD 4.4-STABLE i386 >Environment: System: FreeBSD zaphod.euronet.nl 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Sep 24 18:08:27 CEST 2001 root@zaphod.euronet.nl:/usr/obj/usr/src/sys/ZAPHOD i386 >Description: The download URL is out of date. And the pkg-message file should be removed. >How-To-Repeat: N/A >Fix: diff -ruN --exclude=work --exclude=CVS --exclude=README.html /usr/ports/java/jdk11-doc/Makefile /home/ernst/freebsd-ports/java/jdk11-doc/Makefile --- /usr/ports/java/jdk11-doc/Makefile Mon Oct 8 12:19:45 2001 +++ /home/ernst/freebsd-ports/java/jdk11-doc/Makefile Mon Oct 8 14:09:50 2001 @@ -26,7 +26,7 @@ WRKSRC= ${WRKDIR}/jdk${JDK_VERSION:C/_.*\$//g}/docs JDK_VERSION= 1.1.8_003 JDK_MAJOR_VER= ${JDK_VERSION:R} -DOWNLOAD_URL= http://java.sun.com/jdk/${JDK_MAJOR_VER}/download-docs.html +DOWNLOAD_URL= http://java.sun.com/jdk/${JDK_MAJOR_VER}/docs.html NO_BUILD= yes diff -ruN --exclude=work --exclude=CVS --exclude=README.html /usr/ports/java/jdk11-doc/pkg-message /home/ernst/freebsd-ports/java/jdk11-doc/pkg-message --- /usr/ports/java/jdk11-doc/pkg-message Thu May 31 08:09:27 2001 +++ /home/ernst/freebsd-ports/java/jdk11-doc/pkg-message Thu Jan 1 01:00:00 1970 @@ -1,13 +0,0 @@ -Here are some useful bookmark entries for your Web browser: - -JDK 1.1.8 Documentation: - file:%%JDK_HOME%%/docs/index.html - -JDK 1.1 Package Index: - file:%%JDK_HOME%%/docs/api/packages.html - -JDK 1.1 Class Hierarchy: - file:%%JDK_HOME%%/docs/api/tree.html - -JDK 1.1 Index: - file:%%JDK_HOME%%/docs/api/a-names.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 13:19:12 2001 Delivered-To: freebsd-java@freebsd.org Received: from penfold.transactionware.com (penfold.transactionware.com [203.14.245.1]) by hub.freebsd.org (Postfix) with SMTP id 0908C37B406 for ; Mon, 8 Oct 2001 13:19:09 -0700 (PDT) Received: (qmail 68093 invoked from network); 8 Oct 2001 20:18:58 -0000 Received: from ck.transactionware.com (192.168.1.17) by penfold.transactionware.com with SMTP; 8 Oct 2001 20:18:58 -0000 Received: (qmail 12033 invoked by uid 1006); 8 Oct 2001 20:24:57 -0000 Received: from janm@transactionware.com by ck.transactionware.com with qmail-scanner-0.96 (sweep: 2.4/3.46. . Clean. Processed in 0.943744 secs); 08 Oct 2001 20:24:57 -0000 Received: from du1.transactionware.com (HELO mosm1) (192.168.1.10) by ck.transactionware.com with SMTP; 8 Oct 2001 20:24:56 -0000 Message-ID: <00de01c15036$54636260$0a01a8c0@mosm1> From: "Jan Mikkelsen" To: Subject: Getting gcj to run on FreeBSD Date: Tue, 9 Oct 2001 06:18:00 +1000 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 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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've been trying to get gcj (3.0.1 or latest snapshot) to run on freebsd. It builds fine, but a hello program either core dumps (with dynamic linking) or fails to link with unresolved externals to "java::util::List::class$". Compiled with: .../configure --prefix=/pkgs/gcj-3.0.1 --enable-languages=c++,java --enable- libgcj --disable-threads Has anyone else seen this or have it working? Thanks, Jan Mikkelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 13:23:57 2001 Delivered-To: freebsd-java@freebsd.org Received: from penfold.transactionware.com (penfold.transactionware.com [203.14.245.1]) by hub.freebsd.org (Postfix) with SMTP id 4455C37B401 for ; Mon, 8 Oct 2001 13:23:54 -0700 (PDT) Received: (qmail 68104 invoked from network); 8 Oct 2001 20:23:50 -0000 Received: from ck.transactionware.com (192.168.1.17) by penfold.transactionware.com with SMTP; 8 Oct 2001 20:23:50 -0000 Received: (qmail 12072 invoked by uid 1006); 8 Oct 2001 20:29:49 -0000 Received: from janm@transactionware.com by ck.transactionware.com with qmail-scanner-0.96 (sweep: 2.4/3.46. . Clean. Processed in 0.858728 secs); 08 Oct 2001 20:29:49 -0000 Received: from du1.transactionware.com (HELO mosm1) (192.168.1.10) by ck.transactionware.com with SMTP; 8 Oct 2001 20:29:48 -0000 Message-ID: <00ea01c15037$02146940$0a01a8c0@mosm1> From: "Jan Mikkelsen" To: References: <00de01c15036$54636260$0a01a8c0@mosm1> Subject: Re: Getting gcj to run on FreeBSD Date: Tue, 9 Oct 2001 06:22:52 +1000 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 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 "Jan Mikkelsen" wrote: > It builds fine, but a hello program either core dumps (with dynamic linking) > or fails to link with unresolved externals to "java::util::List::class$". Sorry to follow up my own message. The unresolved externals happen with static linking. Jan Mikkelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 13:48:32 2001 Delivered-To: freebsd-java@freebsd.org Received: from jupiter.linuxengine.net (jupiter.linuxengine.net [209.61.188.254]) by hub.freebsd.org (Postfix) with ESMTP id 4D59437B403 for ; Mon, 8 Oct 2001 13:48:30 -0700 (PDT) Received: from jupiterweb.commercevault.com (jupiterweb.commercevault.com [209.61.179.16] (may be forged)) by jupiter.linuxengine.net (8.11.6/8.11.0) with ESMTP id f98L0X901016; Mon, 8 Oct 2001 16:00:33 -0500 Date: Mon, 8 Oct 2001 16:00:33 -0500 (CDT) From: John Utz X-X-Sender: To: Jan Mikkelsen Cc: Subject: Re: Getting gcj to run on FreeBSD In-Reply-To: <00ea01c15037$02146940$0a01a8c0@mosm1> 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 well, given my profound unfamiliarity with gjc....here goes nothin ' :-) On Tue, 9 Oct 2001, Jan Mikkelsen wrote: > "Jan Mikkelsen" wrote: > > It builds fine, but a hello program either core dumps (with dynamic > linking) > > or fails to link with unresolved externals to "java::util::List::class$". given that gjc is a java to native exe compiler, does it not follow that you would need a natively compiled libgjc that contains native implementations of the classes found in CLASSES.jar or does it expect to resolve dependencies via the java jar files? > Sorry to follow up my own message. The unresolved externals happen with > static linking. static linking to what? it would seem to me that if there is a libgjc.a that it would have to be referenced in the link command line.... is it? > Jan Mikkelsen > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > -- John L. Utz III john@utzweb.net Idiocy is the Impulse Function in the Convolution of Life To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 14: 4: 6 2001 Delivered-To: freebsd-java@freebsd.org Received: from penfold.transactionware.com (penfold.transactionware.com [203.14.245.1]) by hub.freebsd.org (Postfix) with SMTP id 3ABDC37B40A for ; Mon, 8 Oct 2001 14:03:59 -0700 (PDT) Received: (qmail 68211 invoked from network); 8 Oct 2001 21:03:54 -0000 Received: from ck.transactionware.com (192.168.1.17) by penfold.transactionware.com with SMTP; 8 Oct 2001 21:03:54 -0000 Received: (qmail 12355 invoked by uid 1006); 8 Oct 2001 21:09:54 -0000 Received: from janm@transactionware.com by ck.transactionware.com with qmail-scanner-0.96 (sweep: 2.4/3.46. . Clean. Processed in 1.424382 secs); 08 Oct 2001 21:09:54 -0000 Received: from du1.transactionware.com (HELO mosm1) (192.168.1.10) by ck.transactionware.com with SMTP; 8 Oct 2001 21:09:52 -0000 Message-ID: <013201c1503c$9b13f200$0a01a8c0@mosm1> From: "Jan Mikkelsen" To: "John Utz" Cc: References: Subject: Re: Getting gcj to run on FreeBSD Date: Tue, 9 Oct 2001 07:02:55 +1000 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 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 "John Utz" wrote: > well, given my profound unfamiliarity with gjc....here goes nothin ' :-) Thanks for the reply! > On Tue, 9 Oct 2001, Jan Mikkelsen wrote: > > > "Jan Mikkelsen" wrote: > > > It builds fine, but a hello program either core dumps (with dynamic > > linking) > > > or fails to link with unresolved externals to "java::util::List::class$". > > given that gjc is a java to native exe compiler, does it not follow that > you would need a natively compiled libgjc that contains native > implementations of the classes found in CLASSES.jar or does it expect to > resolve dependencies via the java jar files? I have a natively built gcj: $ ls -l /pkgs/gcc-3.0.1/lib/libgcj* -rw-r--r-- 1 root wheel 28589106 Aug 23 23:06 /pkgs/gcc-3.0.1/lib/libgcj.a -rwxr-xr-x 1 root wheel 789 Aug 23 23:06 /pkgs/gcc-3.0.1/lib/libgcj.la lrwxr-xr-x 1 root wheel 11 Aug 23 23:06 /pkgs/gcc-3.0.1/lib/libgcj.so -> libgcj.so.2 -rwxr-xr-x 1 root wheel 25549610 Aug 23 23:06 /pkgs/gcc-3.0.1/lib/libgcj.so.2 -rw-r--r-- 1 root wheel 478 Aug 23 23:06 /pkgs/gcc-3.0.1/lib/libgcj.spec -rw-r--r-- 1 root wheel 1524 Aug 23 23:06 /pkgs/gcc-3.0.1/lib/libgcjdata.a -rw-r--r-- 1 root wheel 375732 Aug 23 23:08 /pkgs/gcc-3.0.1/lib/libgcjgc.a -rwxr-xr-x 1 root wheel 741 Aug 23 23:08 /pkgs/gcc-3.0.1/lib/libgcjgc.la lrwxr-xr-x 1 root wheel 13 Aug 23 23:08 /pkgs/gcc-3.0.1/lib/libgcjgc.so -> libgcjgc.so.1 -rwxr-xr-x 1 root wheel 302291 Aug 23 23:08 /pkgs/gcc-3.0.1/lib/libgcjgc.so.1 I can see that it is being used because other symbols from libgcj are being resolved during the static linking process. This is the output from a static compile: $ /pkgs/gcc-3.0.1/bin/gcj -static --main=hello hello.java /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/../../../libgcj.a( Vector.o):/home/janm/Kits/gcc-3.0.1/libjava/java/util/Vector.java:232: undefined reference to `java::util::List::class$' /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/../../../libgcj.a( AbstractList.o): In function `java::util::AbstractList::equals(java::lang::Object*)': /home/janm/Kits/gcc-3.0.1/libjava/java/util/AbstractList.java:88: undefined reference to `java::util::List::class$' /home/janm/Kits/gcc-3.0.1/libjava/java/util/AbstractList.java:91: undefined reference to `java::util::List::class$' /home/janm/Kits/gcc-3.0.1/libjava/java/util/AbstractList.java:91: undefined reference to `java::util::List::class$' /home/janm/Kits/gcc-3.0.1/libjava/java/util/AbstractList.java:95: undefined reference to `java::util::List::class$' /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/../../../libgcj.a( AbstractList.o):/home/janm/Kits/gcc-3.0.1/libjava/java/util/AbstractList.jav a:95: more undefined references to `java::util::List::class$' follow collect2: ld returned 1 exit status hello.java contains: class hello { static void main(String[] args) { System.out.println("hello, world"); } } > > Sorry to follow up my own message. The unresolved externals happen with > > static linking. > > static linking to what? it would seem to me that if there is a libgjc.a > that it would have to be referenced in the link command line.... is it? Yes. From the gcj command line above, with the '-v' option added: /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/collect2 -m elf_i386 -V -Bstatic /usr/lib/crt1.o /usr/lib/crti.o /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/crtbegin.o -u data_start /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/../../../libgcjdat a.a -L/pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1 -L/pkgs/gcc- 3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/../../.. /var/tmp/ccKmRulPmain.o /var/tmp/ccVHynhZ.o -lgcc -lgcj -lm -lgcjgc -lzgcj -lgcc -lc -lgcc /pkgs/gcc-3.0.1/lib/gcc-lib/i386-unknown-freebsd4.3/3.0.1/crtend.o /usr/lib/crtn.o I am also seeing the same problem with the 20011001 snapshot on another machine. I suspect I've done something wrong during the gcc/gcj build process, but "configure" and "gmake bootstrap" isn't really that complex. Thanks, Jan Mikkelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 14:41:11 2001 Delivered-To: freebsd-java@freebsd.org Received: from cygnus.com (runyon.cygnus.com [205.180.230.5]) by hub.freebsd.org (Postfix) with ESMTP id 79E0E37B401 for ; Mon, 8 Oct 2001 14:41:08 -0700 (PDT) Received: from green (dhcp-sv-0F.cygnus.com [205.180.231.75]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with SMTP id OAA23269; Mon, 8 Oct 2001 14:41:00 -0700 (PDT) Message-ID: <01c501c15042$789cf360$4be7b4cd@cygnus.com> From: "Anthony Green" To: "Jan Mikkelsen" , "John Utz" Cc: References: <013201c1503c$9b13f200$0a01a8c0@mosm1> Subject: Re: Getting gcj to run on FreeBSD Date: Mon, 8 Oct 2001 14:44:55 -0700 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 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 Jan wrote: > I am also seeing the same problem with the 20011001 snapshot on another > machine. I suspect I've done something wrong during the gcc/gcj build > process, but "configure" and "gmake bootstrap" isn't really that complex. gcj has worked in the past on FreeBSD (see http://gcc.gnu.org/ml/java-patches/2001-q3/msg00280.html) I suggest sending a note to java@gcc.gnu.org. AG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 14:52: 8 2001 Delivered-To: freebsd-java@freebsd.org Received: from linus.highpoint.edu (linus.highpoint.edu [192.154.46.106]) by hub.freebsd.org (Postfix) with ESMTP id B44A137B401 for ; Mon, 8 Oct 2001 14:52:02 -0700 (PDT) Received: (from zhartley@localhost) by linus.highpoint.edu (8.11.2/8.11.2) id f98Lp4j16852 for java@FreeBSD.ORG; Mon, 8 Oct 2001 17:51:04 -0400 Date: Mon, 8 Oct 2001 17:51:04 -0400 From: Zach Hartley To: java@FreeBSD.ORG Subject: Re: Getting gcj to run on FreeBSD Message-ID: <20011008175104.B16655@linus.highpoint.edu> Mail-Followup-To: java@FreeBSD.ORG References: <013201c1503c$9b13f200$0a01a8c0@mosm1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <013201c1503c$9b13f200$0a01a8c0@mosm1>; from janm@transactionware.com on Tue, Oct 09, 2001 at 07:02:55AM +1000 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.java contains: > > class hello { > static void main(String[] args) { ^^^ Would the lack of the term 'public' cause any problems? i.e. public static void main(String[] args) { be more correct? Zach > System.out.println("hello, world"); > } > } -- Zachary Todd Hartley "Attempted murder. Now honestly, what is that? Do they give a Nobel Prize for attempted chemistry?" --Sideshow Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Oct 8 15: 9:55 2001 Delivered-To: freebsd-java@freebsd.org Received: from penfold.transactionware.com (penfold.transactionware.com [203.14.245.1]) by hub.freebsd.org (Postfix) with SMTP id CA0CB37B408 for ; Mon, 8 Oct 2001 15:09:51 -0700 (PDT) Received: (qmail 68387 invoked from network); 8 Oct 2001 22:09:47 -0000 Received: from ck.transactionware.com (192.168.1.17) by penfold.transactionware.com with SMTP; 8 Oct 2001 22:09:47 -0000 Received: (qmail 12893 invoked by uid 1006); 8 Oct 2001 22:15:46 -0000 Received: from janm@transactionware.com by ck.transactionware.com with qmail-scanner-0.96 (sweep: 2.4/3.46. . Clean. Processed in 0.906411 secs); 08 Oct 2001 22:15:46 -0000 Received: from du1.transactionware.com (HELO mosm1) (192.168.1.10) by ck.transactionware.com with SMTP; 8 Oct 2001 22:15:45 -0000 Message-ID: <01d901c15045$cf38b490$0a01a8c0@mosm1> From: "Jan Mikkelsen" To: References: <013201c1503c$9b13f200$0a01a8c0@mosm1> <20011008175104.B16655@linus.highpoint.edu> Subject: Re: Getting gcj to run on FreeBSD Date: Tue, 9 Oct 2001 08:08:49 +1000 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 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 Zach Hartley wrote: > > hello.java contains: > > > > class hello { > > static void main(String[] args) { > ^^^ > Would the lack of the term 'public' cause any problems? > i.e. public static void main(String[] args) { > be more correct? Yes, probably. :-) It doesn't solve the linking problem though ... Jan Mikkelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Oct 9 11:46:59 2001 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id A630D37B405; Tue, 9 Oct 2001 11:46:55 -0700 (PDT) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id f99Ikqi73845; Tue, 9 Oct 2001 20:46:52 +0200 (CEST) (envelope-from ernst) Message-Id: <200110091846.f99Ikqi73845@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan Organization: Jollem Information Technology To: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/28464: New port: www/orion-current Date: Tue, 9 Oct 2001 20:46:46 +0200 X-Mailer: KMail [version 1.3] Cc: sobomax@FreeBSD.org, java@FreeBSD.org MIME-Version: 1.0 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 Could somebody please commit this port? I've submitted it quite a while ago... And I would like to backport some changes in www/orion to this new port (www/orion-current)... If you want a diff between www/orion and www/orion-current, it's here: * http://www.jollem.com/~ernst/orion__orion-current.diff * http://www.pensioenconsult.com/orion__orion-current.diff (mirror) If you want me to submit this as a new PR, lemme know... /Ernst To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Oct 9 19:14:10 2001 Delivered-To: freebsd-java@freebsd.org Received: from penfold.transactionware.com (penfold.transactionware.com [203.14.245.1]) by hub.freebsd.org (Postfix) with SMTP id 006B637B407 for ; Tue, 9 Oct 2001 19:14:06 -0700 (PDT) Received: (qmail 73275 invoked from network); 10 Oct 2001 02:13:50 -0000 Received: from ck.transactionware.com (192.168.1.17) by penfold.transactionware.com with SMTP; 10 Oct 2001 02:13:50 -0000 Received: (qmail 83831 invoked by uid 1006); 10 Oct 2001 02:19:48 -0000 Received: from janm@transactionware.com by ck.transactionware.com with qmail-scanner-0.96 (sweep: 2.4/3.46. . Clean. Processed in 0.553955 secs); 10 Oct 2001 02:19:48 -0000 Received: from unknown (HELO janm) (192.168.1.32) by ck.transactionware.com with SMTP; 10 Oct 2001 02:19:48 -0000 Message-ID: <002501c15131$1f55f960$2001a8c0@janm> From: "Jan Mikkelsen" To: Subject: More on gcj Date: Wed, 10 Oct 2001 12:13:16 +1000 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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 made "hello, world" work with static linking. I haven't tackled dynamic linking at all yet. The issue was that libgcj.a contains a List.o from both java/awt and java/util. The java/awt version was being added last, bumping out java/util/List.o. I made it work by changing the ar arguments from "rc" to "rcP", and rebuilding libgcj.a. I don't know the magic incantations to libtool to fix this properly yet, but I'm looking into it! :-) Jan Mikkelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Oct 10 0:46:10 2001 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id D315637B403; Wed, 10 Oct 2001 00:45:35 -0700 (PDT) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id f9A7jVv75068; Wed, 10 Oct 2001 09:45:31 +0200 (CEST) (envelope-from ernst) Date: Wed, 10 Oct 2001 09:45:31 +0200 (CEST) Message-Id: <200110100745.f9A7jVv75068@zaphod.euronet.nl> To: FreeBSD-gnats-submit@freebsd.org Subject: New port: www/orion-current From: Ernst de Haan Reply-To: Ernst de Haan Cc: java@freebsd.org, sobomax@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: 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 >Submitter-Id: current-users >Originator: Ernst de Haan >Organization: Jollem Information Technology >Confidential: no >Synopsis: New port: www/orion-current >Severity: non-critical >Priority: medium >Category: ports >Class: change-request >Release: FreeBSD 4.4-STABLE i386 >Environment: System: FreeBSD zaphod.euronet.nl 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Sep 24 18:08:27 CEST 2001 root@zaphod.euronet.nl:/usr/obj/usr/src/sys/ZAPHOD i386 >Description: New port, www/orion-current that contains the less stable version of Orion. The stable version of Orion is in www/orion. www/orion is currently orion-1.4.5_7 www/orion-current is orion-1.5.2 Note that this PR supercedes this one: * http://www.freebsd.org/cgi/query-pr.cgi?pr=28464 >How-To-Repeat: N/A >Fix: Here's a diff between orion and orion-current. Alternatively, it can be downloaded from: * http://www.jollem.com/~ernst/orion__orion-current.diff * http://www.pensioenconsult.com/orion__orion-current.diff I guess a repo-copy is involved? diff -ruN --exclude=CVS orion/Makefile orion-current/Makefile --- orion/Makefile Tue Oct 9 20:41:25 2001 +++ orion-current/Makefile Tue Oct 9 20:35:34 2001 @@ -1,19 +1,14 @@ -# New ports collection makefile for: orion -# Date created: 22 December 2000 +# New ports collection makefile for: orion-current +# Date created: 27 June 2001 # Whom: Ernst de Haan # # $FreeBSD: ports/www/orion/Makefile,v 1.13 2001/10/09 13:02:30 sobomax Exp $ # PORTNAME= orion -PORTVERSION= 1.4.5 -PORTREVISION= 7 +PORTVERSION= 1.5.2 CATEGORIES= www java -MASTER_SITES= ftp://ftp.sunet.se/pub/database/utils/orionserver/ \ - ${MASTER_SITE_LOCAL} \ - http://www.jollem.com/ \ - http://www.sebster.com/~elvis/ -MASTER_SITE_SUBDIR= sobomax +MASTER_SITES= ftp://ftp.sunet.se/pub/database/utils/orionserver/ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= ernst@jollem.com @@ -92,11 +87,6 @@ | ${SED} "/%%USER_NAME%%/s//${USER_NAME}/" \ > ${ORIONCTL_DEST} ${CHMOD} 755 ${ORIONCTL_DEST} - - @# Fix a small typo in the index.html served as the root - ${CAT} ${WRKSRC}/default-web-app/index.html \ - | ${SED} "/1\.4\.0/s//${PORTVERSION}/" \ - > ${ORION_HOME}/default-web-app/index.html @# Install the startup script ${LN} -sf ${ORIONCTL_DEST} ${RC_SCRIPT} diff -ruN --exclude=CVS orion/distinfo orion-current/distinfo --- orion/distinfo Fri May 25 14:18:10 2001 +++ orion-current/distinfo Tue Oct 9 20:23:29 2001 @@ -1 +1 @@ -MD5 (orion1.4.5.zip) = efdcae8bdcdf6a8bc94ab4982a8192a2 +MD5 (orion1.5.2.zip) = 64a505dea83bf57193745a0af4d29c6d diff -ruN --exclude=CVS orion/pkg-comment orion-current/pkg-comment --- orion/pkg-comment Tue May 15 12:42:21 2001 +++ orion-current/pkg-comment Tue Oct 9 20:23:29 2001 @@ -1 +1 @@ -Orion Application Server +Orion Application Server, current version diff -ruN --exclude=CVS orion/pkg-descr orion-current/pkg-descr --- orion/pkg-descr Fri Jun 1 14:50:14 2001 +++ orion-current/pkg-descr Tue Oct 9 20:40:48 2001 @@ -1,4 +1,4 @@ -Orion is a J2EE (Java 2 Enterprise Edition) compliant Application Server. It +Current version of Orion, a J2EE compliant Application Server. It supports all major standards including HTTP/1.1, JSP 1.1, EJB 1.1, Servlet 2.2, JNDI 1.2 and others. It also offers clustering support and some unique auto-deployment features. diff -ruN --exclude=CVS orion/pkg-plist orion-current/pkg-plist --- orion/pkg-plist Tue Oct 2 14:29:19 2001 +++ orion-current/pkg-plist Tue Oct 9 20:23:29 2001 @@ -1,45 +1,136 @@ -etc/rc.d/orion.sh bin/orionctl +etc/rc.d/orion.sh +man/man1/orionctl.1 +%%T%%/Copyright.txt +%%T%%/Readme.txt +%%T%%/activation.jar +%%T%%/admin.jar +%%T%%/applicationlauncher.jar +%%T%%/applications/atm-install.txt +%%T%%/applications/atm.ear +%%T%%/applications/estore-bugs.txt +%%T%%/applications/estore-install.txt +%%T%%/applications/estore-orionadapter.jar +%%T%%/applications/estore-patched.ear +%%T%%/applications/news-install.txt +%%T%%/applications/news.ear +%%T%%/assemblerlauncher.jar +%%T%%/autoupdate.jar +%%T%%/autoupdate.properties +%%T%%/changes.txt +%%T%%/clientassembler.jar +%%T%%/config/application.xml +%%T%%/config/data-sources.xml %%T%%/config/database-schemas/hypersonic.xml %%T%%/config/database-schemas/ms-access.xml %%T%%/config/database-schemas/ms-sql.xml %%T%%/config/database-schemas/oracle.xml %%T%%/config/database-schemas/postgresql.xml +%%T%%/config/database-schemas/sapdb.xml %%T%%/config/database-schemas/sybase.xml -%%T%%/config/data-sources.xml %%T%%/config/default-web-site.xml %%T%%/config/global-web-application.xml %%T%%/config/jms.xml %%T%%/config/mime.types %%T%%/config/principals.xml %%T%%/config/rmi.xml -%%T%%/config/application.xml %%T%%/config/server.xml +%%T%%/crimson.jar +%%T%%/default-web-app/WEB-INF/classes/BBoardServlet.class +%%T%%/default-web-app/WEB-INF/classes/BBoardServlet.java +%%T%%/default-web-app/WEB-INF/classes/ConfigServlet.class +%%T%%/default-web-app/WEB-INF/classes/ConfigServlet.java +%%T%%/default-web-app/WEB-INF/classes/CookieExample.class +%%T%%/default-web-app/WEB-INF/classes/CookieExample.java +%%T%%/default-web-app/WEB-INF/classes/Counter.class +%%T%%/default-web-app/WEB-INF/classes/Counter.java +%%T%%/default-web-app/WEB-INF/classes/DateServlet.class +%%T%%/default-web-app/WEB-INF/classes/DateServlet.java +%%T%%/default-web-app/WEB-INF/classes/FingerServlet.class +%%T%%/default-web-app/WEB-INF/classes/FingerServlet.java +%%T%%/default-web-app/WEB-INF/classes/HelloWorldExample.class +%%T%%/default-web-app/WEB-INF/classes/HelloWorldExample.java +%%T%%/default-web-app/WEB-INF/classes/HelloWorldServlet.class +%%T%%/default-web-app/WEB-INF/classes/HelloWorldServlet.java +%%T%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.class +%%T%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.java +%%T%%/default-web-app/WEB-INF/classes/LocalStrings.properties +%%T%%/default-web-app/WEB-INF/classes/ParameterBean.class +%%T%%/default-web-app/WEB-INF/classes/ParameterBean.java +%%T%%/default-web-app/WEB-INF/classes/RedirectServlet.class +%%T%%/default-web-app/WEB-INF/classes/RedirectServlet.java +%%T%%/default-web-app/WEB-INF/classes/RequestHeaderExample.class +%%T%%/default-web-app/WEB-INF/classes/RequestHeaderExample.java +%%T%%/default-web-app/WEB-INF/classes/RequestInfoExample.class +%%T%%/default-web-app/WEB-INF/classes/RequestInfoExample.java +%%T%%/default-web-app/WEB-INF/classes/RequestParamExample.class +%%T%%/default-web-app/WEB-INF/classes/RequestParamExample.java +%%T%%/default-web-app/WEB-INF/classes/SessionExample.class +%%T%%/default-web-app/WEB-INF/classes/SessionExample.java +%%T%%/default-web-app/WEB-INF/classes/SessionServlet.class +%%T%%/default-web-app/WEB-INF/classes/SessionServlet.java +%%T%%/default-web-app/WEB-INF/classes/SimpleServlet.class +%%T%%/default-web-app/WEB-INF/classes/SimpleServlet.java +%%T%%/default-web-app/WEB-INF/classes/SnoopServlet.class +%%T%%/default-web-app/WEB-INF/classes/SnoopServlet.java +%%T%%/default-web-app/WEB-INF/classes/SurveyServlet.class +%%T%%/default-web-app/WEB-INF/classes/SurveyServlet.java +%%T%%/default-web-app/WEB-INF/classes/ToJSPServlet.class +%%T%%/default-web-app/WEB-INF/classes/ToJSPServlet.java +%%T%%/default-web-app/WEB-INF/classes/URLInfo.class +%%T%%/default-web-app/WEB-INF/classes/UpperCaseFilter.class +%%T%%/default-web-app/WEB-INF/classes/UpperCaseFilter.java +%%T%%/default-web-app/WEB-INF/classes/cal/Entries.class +%%T%%/default-web-app/WEB-INF/classes/cal/Entries.java +%%T%%/default-web-app/WEB-INF/classes/cal/Entry.class +%%T%%/default-web-app/WEB-INF/classes/cal/Entry.java +%%T%%/default-web-app/WEB-INF/classes/cal/JspCalendar.class +%%T%%/default-web-app/WEB-INF/classes/cal/JspCalendar.java +%%T%%/default-web-app/WEB-INF/classes/cal/TableBean.class +%%T%%/default-web-app/WEB-INF/classes/cal/TableBean.java +%%T%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.class +%%T%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.java +%%T%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.class +%%T%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.java +%%T%%/default-web-app/WEB-INF/classes/dates/JspCalendar.class +%%T%%/default-web-app/WEB-INF/classes/dates/JspCalendar.java +%%T%%/default-web-app/WEB-INF/classes/error/Smart.class +%%T%%/default-web-app/WEB-INF/classes/error/Smart.java +%%T%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.class +%%T%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.java +%%T%%/default-web-app/WEB-INF/classes/sessions/DummyCart.class +%%T%%/default-web-app/WEB-INF/classes/sessions/DummyCart.java +%%T%%/default-web-app/WEB-INF/web.xml +%%T%%/default-web-app/examples/cal/Entries.txt +%%T%%/default-web-app/examples/cal/Entry.txt +%%T%%/default-web-app/examples/cal/JspCalendar.txt %%T%%/default-web-app/examples/cal/TableBean.txt +%%T%%/default-web-app/examples/cal/cal1.jsp %%T%%/default-web-app/examples/cal/cal1.txt %%T%%/default-web-app/examples/cal/cal2.jsp %%T%%/default-web-app/examples/cal/cal2.txt %%T%%/default-web-app/examples/cal/calendar.html -%%T%%/default-web-app/examples/cal/Entries.txt -%%T%%/default-web-app/examples/cal/Entry.txt -%%T%%/default-web-app/examples/cal/JspCalendar.txt %%T%%/default-web-app/examples/cal/login.html -%%T%%/default-web-app/examples/cal/cal1.jsp %%T%%/default-web-app/examples/images/code.gif %%T%%/default-web-app/examples/images/execute.gif %%T%%/default-web-app/examples/images/return.gif -%%T%%/default-web-app/examples/jsp/include/foo.html -%%T%%/default-web-app/examples/jsp/include/foo.jsp -%%T%%/default-web-app/examples/jsp/include/inc.html -%%T%%/default-web-app/examples/jsp/include/include.jsp -%%T%%/default-web-app/examples/jsp/include/include.txt +%%T%%/default-web-app/examples/jsp/cal/Entries.txt +%%T%%/default-web-app/examples/jsp/cal/Entry.txt +%%T%%/default-web-app/examples/jsp/cal/JspCalendar.txt +%%T%%/default-web-app/examples/jsp/cal/TableBean.txt +%%T%%/default-web-app/examples/jsp/cal/cal1.jsp +%%T%%/default-web-app/examples/jsp/cal/cal1.txt +%%T%%/default-web-app/examples/jsp/cal/cal2.jsp +%%T%%/default-web-app/examples/jsp/cal/cal2.txt +%%T%%/default-web-app/examples/jsp/cal/calendar.html +%%T%%/default-web-app/examples/jsp/cal/login.html +%%T%%/default-web-app/examples/jsp/checkbox/CheckTest.html %%T%%/default-web-app/examples/jsp/checkbox/check.html %%T%%/default-web-app/examples/jsp/checkbox/checkresult.jsp %%T%%/default-web-app/examples/jsp/checkbox/checkresult.txt -%%T%%/default-web-app/examples/jsp/checkbox/CheckTest.html %%T%%/default-web-app/examples/jsp/checkbox/cresult.html -%%T%%/default-web-app/examples/jsp/colors/clr.html %%T%%/default-web-app/examples/jsp/colors/ColorGameBean.html +%%T%%/default-web-app/examples/jsp/colors/clr.html %%T%%/default-web-app/examples/jsp/colors/colors.html %%T%%/default-web-app/examples/jsp/colors/colors.txt %%T%%/default-web-app/examples/jsp/colors/colrs.jsp @@ -56,19 +147,12 @@ %%T%%/default-web-app/examples/jsp/forward/fwd.html %%T%%/default-web-app/examples/jsp/forward/one.jsp %%T%%/default-web-app/examples/jsp/forward/two.html -%%T%%/default-web-app/examples/jsp/snp/snoop.html -%%T%%/default-web-app/examples/jsp/snp/snoop.jsp -%%T%%/default-web-app/examples/jsp/snp/snoop.txt -%%T%%/default-web-app/examples/jsp/cal/TableBean.txt -%%T%%/default-web-app/examples/jsp/cal/cal1.txt -%%T%%/default-web-app/examples/jsp/cal/cal2.jsp -%%T%%/default-web-app/examples/jsp/cal/cal2.txt -%%T%%/default-web-app/examples/jsp/cal/calendar.html -%%T%%/default-web-app/examples/jsp/cal/Entries.txt -%%T%%/default-web-app/examples/jsp/cal/Entry.txt -%%T%%/default-web-app/examples/jsp/cal/JspCalendar.txt -%%T%%/default-web-app/examples/jsp/cal/login.html -%%T%%/default-web-app/examples/jsp/cal/cal1.jsp +%%T%%/default-web-app/examples/jsp/include/foo.html +%%T%%/default-web-app/examples/jsp/include/foo.jsp +%%T%%/default-web-app/examples/jsp/include/inc.html +%%T%%/default-web-app/examples/jsp/include/include.jsp +%%T%%/default-web-app/examples/jsp/include/include.txt +%%T%%/default-web-app/examples/jsp/index.html %%T%%/default-web-app/examples/jsp/jsptoserv/hello.jsp %%T%%/default-web-app/examples/jsp/jsptoserv/jsptoservlet.jsp %%T%%/default-web-app/examples/jsp/jsptoserv/jts.html @@ -82,19 +166,21 @@ %%T%%/default-web-app/examples/jsp/plugin/plugin.html %%T%%/default-web-app/examples/jsp/plugin/plugin.jsp %%T%%/default-web-app/examples/jsp/plugin/plugin.txt +%%T%%/default-web-app/examples/jsp/sessions/DummyCart.html %%T%%/default-web-app/examples/jsp/sessions/carts.html %%T%%/default-web-app/examples/jsp/sessions/carts.jsp %%T%%/default-web-app/examples/jsp/sessions/carts.txt %%T%%/default-web-app/examples/jsp/sessions/crt.html -%%T%%/default-web-app/examples/jsp/sessions/DummyCart.html +%%T%%/default-web-app/examples/jsp/snp/snoop.html +%%T%%/default-web-app/examples/jsp/snp/snoop.jsp +%%T%%/default-web-app/examples/jsp/snp/snoop.txt %%T%%/default-web-app/examples/jsp/taglib/loop/META-INF/taglib.tld -%%T%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class -%%T%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java %%T%%/default-web-app/examples/jsp/taglib/loop/index.html %%T%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp %%T%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp.txt %%T%%/default-web-app/examples/jsp/taglib/loop/looptags.jar -%%T%%/default-web-app/examples/jsp/index.html +%%T%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class +%%T%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java %%T%%/default-web-app/examples/perl/helloworld.pl %%T%%/default-web-app/examples/perl/post.html %%T%%/default-web-app/examples/perl/post.pl @@ -107,83 +193,9 @@ %%T%%/default-web-app/examples/xsl/doc.jsp %%T%%/default-web-app/examples/xsl/doc.xml %%T%%/default-web-app/examples/xsl/doc.xsl -%%T%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.class -%%T%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.java -%%T%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.class -%%T%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.java -%%T%%/default-web-app/WEB-INF/classes/error/Smart.class -%%T%%/default-web-app/WEB-INF/classes/error/Smart.java -%%T%%/default-web-app/WEB-INF/classes/sessions/DummyCart.class -%%T%%/default-web-app/WEB-INF/classes/sessions/DummyCart.java -%%T%%/default-web-app/WEB-INF/classes/dates/JspCalendar.class -%%T%%/default-web-app/WEB-INF/classes/dates/JspCalendar.java -%%T%%/default-web-app/WEB-INF/classes/cal/TableBean.java -%%T%%/default-web-app/WEB-INF/classes/cal/Entries.java -%%T%%/default-web-app/WEB-INF/classes/cal/Entry.class -%%T%%/default-web-app/WEB-INF/classes/cal/Entry.java -%%T%%/default-web-app/WEB-INF/classes/cal/JspCalendar.class -%%T%%/default-web-app/WEB-INF/classes/cal/JspCalendar.java -%%T%%/default-web-app/WEB-INF/classes/cal/TableBean.class -%%T%%/default-web-app/WEB-INF/classes/cal/Entries.class -%%T%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.class -%%T%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.java -%%T%%/default-web-app/WEB-INF/classes/Counter.java -%%T%%/default-web-app/WEB-INF/classes/DateServlet.class -%%T%%/default-web-app/WEB-INF/classes/DateServlet.java -%%T%%/default-web-app/WEB-INF/classes/FingerServlet.class -%%T%%/default-web-app/WEB-INF/classes/FingerServlet.java -%%T%%/default-web-app/WEB-INF/classes/HelloWorldExample.class -%%T%%/default-web-app/WEB-INF/classes/HelloWorldExample.java -%%T%%/default-web-app/WEB-INF/classes/HelloWorldServlet.class -%%T%%/default-web-app/WEB-INF/classes/HelloWorldServlet.java -%%T%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.class -%%T%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.java -%%T%%/default-web-app/WEB-INF/classes/LocalStrings.properties -%%T%%/default-web-app/WEB-INF/classes/ParameterBean.class -%%T%%/default-web-app/WEB-INF/classes/ParameterBean.java -%%T%%/default-web-app/WEB-INF/classes/RedirectServlet.class -%%T%%/default-web-app/WEB-INF/classes/RedirectServlet.java -%%T%%/default-web-app/WEB-INF/classes/RequestHeaderExample.class -%%T%%/default-web-app/WEB-INF/classes/RequestHeaderExample.java -%%T%%/default-web-app/WEB-INF/classes/RequestInfoExample.class -%%T%%/default-web-app/WEB-INF/classes/RequestInfoExample.java -%%T%%/default-web-app/WEB-INF/classes/RequestParamExample.class -%%T%%/default-web-app/WEB-INF/classes/RequestParamExample.java -%%T%%/default-web-app/WEB-INF/classes/SessionExample.class -%%T%%/default-web-app/WEB-INF/classes/SessionExample.java -%%T%%/default-web-app/WEB-INF/classes/SessionServlet.class -%%T%%/default-web-app/WEB-INF/classes/SessionServlet.java -%%T%%/default-web-app/WEB-INF/classes/SimpleServlet.class -%%T%%/default-web-app/WEB-INF/classes/SimpleServlet.java -%%T%%/default-web-app/WEB-INF/classes/SnoopServlet.class -%%T%%/default-web-app/WEB-INF/classes/SnoopServlet.java -%%T%%/default-web-app/WEB-INF/classes/SurveyServlet.class -%%T%%/default-web-app/WEB-INF/classes/SurveyServlet.java -%%T%%/default-web-app/WEB-INF/classes/ToJSPServlet.class -%%T%%/default-web-app/WEB-INF/classes/ToJSPServlet.java -%%T%%/default-web-app/WEB-INF/classes/UpperCaseFilter.class -%%T%%/default-web-app/WEB-INF/classes/UpperCaseFilter.java -%%T%%/default-web-app/WEB-INF/classes/BBoardServlet.class -%%T%%/default-web-app/WEB-INF/classes/URLInfo.class -%%T%%/default-web-app/WEB-INF/classes/BBoardServlet.java -%%T%%/default-web-app/WEB-INF/classes/ConfigServlet.class -%%T%%/default-web-app/WEB-INF/classes/ConfigServlet.java -%%T%%/default-web-app/WEB-INF/classes/CookieExample.class -%%T%%/default-web-app/WEB-INF/classes/CookieExample.java -%%T%%/default-web-app/WEB-INF/classes/Counter.class -%%T%%/default-web-app/WEB-INF/web.xml %%T%%/default-web-app/index.html -%%T%%/applications/news.ear -%%T%%/applications/atm.ear -%%T%%/applications/estore-bugs.txt -%%T%%/applications/estore-install.txt -%%T%%/applications/estore-orionadapter.jar -%%T%%/applications/estore-patched.ear -%%T%%/applications/news-install.txt -%%T%%/applications/atm-install.txt -%%T%%/demo/ejb/cart/META-INF/application-client.xml -%%T%%/demo/ejb/cart/META-INF/ejb-jar.xml -%%T%%/demo/ejb/cart/META-INF/MANIFEST.MF +%%T%%/demo/ejb/META-INF/application.xml +%%T%%/demo/ejb/cart/Cart.class %%T%%/demo/ejb/cart/Cart.java %%T%%/demo/ejb/cart/CartClient.class %%T%%/demo/ejb/cart/CartClient.java @@ -191,19 +203,19 @@ %%T%%/demo/ejb/cart/CartEJB.java %%T%%/demo/ejb/cart/CartHome.class %%T%%/demo/ejb/cart/CartHome.java -%%T%%/demo/ejb/cart/jndi.properties +%%T%%/demo/ejb/cart/META-INF/MANIFEST.MF +%%T%%/demo/ejb/cart/META-INF/application-client.xml +%%T%%/demo/ejb/cart/META-INF/ejb-jar.xml %%T%%/demo/ejb/cart/NotInCartException.class %%T%%/demo/ejb/cart/NotInCartException.java -%%T%%/demo/ejb/cart/Cart.class +%%T%%/demo/ejb/cart/jndi.properties %%T%%/demo/ejb/cart/orion-cart.jar -%%T%%/demo/ejb/META-INF/application.xml +%%T%%/demo/ejb/install.txt +%%T%%/demo/ejb/product/META-INF/MANIFEST.MF %%T%%/demo/ejb/product/META-INF/application-client.xml %%T%%/demo/ejb/product/META-INF/ejb-jar.xml -%%T%%/demo/ejb/product/META-INF/MANIFEST.MF -%%T%%/demo/ejb/product/orion-product.jar %%T%%/demo/ejb/product/Product.class %%T%%/demo/ejb/product/Product.java -%%T%%/demo/ejb/product/product.skeleton %%T%%/demo/ejb/product/ProductClient.class %%T%%/demo/ejb/product/ProductClient.java %%T%%/demo/ejb/product/ProductEJB.class @@ -211,29 +223,40 @@ %%T%%/demo/ejb/product/ProductHome.class %%T%%/demo/ejb/product/ProductHome.java %%T%%/demo/ejb/product/ProductServlet.class -%%T%%/demo/ejb/product/jndi.properties %%T%%/demo/ejb/product/ProductServlet.java +%%T%%/demo/ejb/product/jndi.properties +%%T%%/demo/ejb/product/orion-product.jar +%%T%%/demo/ejb/product/product.skeleton %%T%%/demo/ejb/usermanager/META-INF/ejb-jar.xml -%%T%%/demo/ejb/install.txt -%%T%%/demo/jms/coffeemaker/META-INF/application-client.xml -%%T%%/demo/jms/coffeemaker/META-INF/MANIFEST.MF -%%T%%/demo/jms/coffeemaker/META-INF/orion-application-client.xml +%%T%%/demo/jms/coffeemaker.jar %%T%%/demo/jms/coffeemaker/CoffeeMachine.class %%T%%/demo/jms/coffeemaker/CoffeeMachine.java %%T%%/demo/jms/coffeemaker/CoffeeMaker.class %%T%%/demo/jms/coffeemaker/CoffeeMaker.java +%%T%%/demo/jms/coffeemaker/META-INF/MANIFEST.MF +%%T%%/demo/jms/coffeemaker/META-INF/application-client.xml +%%T%%/demo/jms/coffeemaker/META-INF/orion-application-client.xml %%T%%/demo/jms/coffeemaker/jndi.properties -%%T%%/demo/jms/jmschat/META-INF/application-client.xml -%%T%%/demo/jms/jmschat/META-INF/MANIFEST.MF -%%T%%/demo/jms/jmschat/META-INF/orion-application-client.xml +%%T%%/demo/jms/jmschat.jar %%T%%/demo/jms/jmschat/JMSChat$1.class %%T%%/demo/jms/jmschat/JMSChat.class %%T%%/demo/jms/jmschat/JMSChat.java +%%T%%/demo/jms/jmschat/META-INF/MANIFEST.MF +%%T%%/demo/jms/jmschat/META-INF/application-client.xml +%%T%%/demo/jms/jmschat/META-INF/orion-application-client.xml %%T%%/demo/jms/jmschat/jndi.properties -%%T%%/demo/jms/coffeemaker.jar -%%T%%/demo/jms/jmschat.jar %%T%%/demo/jms/jmsdemo-readme.txt -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java +%%T%%/demo/messagelogger.ear +%%T%%/demo/news-app/META-INF/application.xml +%%T%%/demo/news-app/counter.jar +%%T%%/demo/news-app/news-client-source/META-INF/MANIFEST.MF +%%T%%/demo/news-app/news-client-source/META-INF/application-client.xml +%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class +%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java +%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class +%%T%%/demo/news-app/news-client.jar +%%T%%/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml +%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.java %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemClient.class %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.class @@ -249,24 +272,22 @@ %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.class %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.java %%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.class -%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class -%%T%%/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml -%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class -%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java -%%T%%/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class -%%T%%/demo/news-app/news-client-source/META-INF/application-client.xml -%%T%%/demo/news-app/news-client-source/META-INF/MANIFEST.MF -%%T%%/demo/news-app/news-web/admin/editnews.jsp -%%T%%/demo/news-app/news-web/admin/editnews_done.jsp +%%T%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java +%%T%%/demo/news-app/news-ejb.jar +%%T%%/demo/news-app/news-web.war %%T%%/demo/news-app/news-web/WEB-INF/lib/ejbtags.jar %%T%%/demo/news-app/news-web/WEB-INF/lib/utiltags.jar %%T%%/demo/news-app/news-web/WEB-INF/web.xml +%%T%%/demo/news-app/news-web/addnews.jsp +%%T%%/demo/news-app/news-web/addnews_done.jsp +%%T%%/demo/news-app/news-web/admin/editnews.jsp +%%T%%/demo/news-app/news-web/admin/editnews_done.jsp %%T%%/demo/news-app/news-web/border.html %%T%%/demo/news-app/news-web/checks.jsp %%T%%/demo/news-app/news-web/index.html %%T%%/demo/news-app/news-web/initviews.jsp %%T%%/demo/news-app/news-web/login-error.html -%%T%%/demo/news-app/news-web/addnews.jsp +%%T%%/demo/news-app/news-web/login.html %%T%%/demo/news-app/news-web/loginbox.jsp %%T%%/demo/news-app/news-web/logout.jsp %%T%%/demo/news-app/news-web/news-body.jsp @@ -274,67 +295,52 @@ %%T%%/demo/news-app/news-web/newsdetail.jsp %%T%%/demo/news-app/news-web/newssearch.jsp %%T%%/demo/news-app/news-web/usertest.jsp -%%T%%/demo/news-app/news-web/login.html -%%T%%/demo/news-app/news-web/addnews_done.jsp -%%T%%/demo/news-app/META-INF/application.xml -%%T%%/demo/news-app/news-web.war -%%T%%/demo/news-app/news-client.jar -%%T%%/demo/news-app/news-ejb.jar -%%T%%/demo/news-app/counter.jar %%T%%/demo/rmi/RMIApp.class %%T%%/demo/rmi/RMIApp.java %%T%%/demo/ssl/ssl-user-registration.jsp -%%T%%/demo/messagelogger.ear +%%T%%/earassembler.jar +%%T%%/ejb.jar +%%T%%/ejbassembler.jar +%%T%%/ejbmaker.jar +%%T%%/jaas.jar +%%T%%/jaxp.jar +%%T%%/jcert.jar +%%T%%/jdbc.jar +%%T%%/jndi.jar +%%T%%/jnet.jar +%%T%%/jsse.jar +%%T%%/jta.jar %%T%%/lib/hsql.jar %%T%%/loadbalancer.jar -%%T%%/jta.jar -%%T%%/jsse.jar -%%T%%/jnet.jar -%%T%%/jndi.jar -%%T%%/jdbc.jar -%%T%%/jcert.jar -%%T%%/jaxp.jar -%%T%%/ejbmaker.jar -%%T%%/ejbassembler.jar -%%T%%/ejb.jar -%%T%%/earassembler.jar -%%T%%/clientassembler.jar -%%T%%/changes.txt -%%T%%/autoupdate.properties -%%T%%/autoupdate.jar -%%T%%/assemblerlauncher.jar -%%T%%/applicationlauncher.jar -%%T%%/admin.jar -%%T%%/activation.jar -%%T%%/Readme.txt -%%T%%/xerces.jar -%%T%%/Copyright.txt -%%T%%/xalan.jar -%%T%%/webappassembler.jar -%%T%%/taglibassembler.jar -%%T%%/parser.jar -%%T%%/orionconsole.jar +%%T%%/mail.jar %%T%%/orion.jar +%%T%%/orionconsole.jar +%%T%%/parser.jar +%%T%%/taglibassembler.jar %%T%%/tools.jar -%%T%%/mail.jar +%%T%%/webappassembler.jar +%%T%%/xalan.jar +%%T%%/xerces.jar @dirrm %%T%%/application-deployments +@dirrm %%T%%/applications @dirrm %%T%%/config/database-schemas @dirrm %%T%%/config +@dirrm %%T%%/database @dirrm %%T%%/default-web-app/examples/cal @dirrm %%T%%/default-web-app/examples/images -@dirrm %%T%%/default-web-app/examples/jsp/include +@dirrm %%T%%/default-web-app/examples/jsp/cal @dirrm %%T%%/default-web-app/examples/jsp/checkbox @dirrm %%T%%/default-web-app/examples/jsp/colors @dirrm %%T%%/default-web-app/examples/jsp/dates @dirrm %%T%%/default-web-app/examples/jsp/error @dirrm %%T%%/default-web-app/examples/jsp/forward -@dirrm %%T%%/default-web-app/examples/jsp/snp -@dirrm %%T%%/default-web-app/examples/jsp/cal +@dirrm %%T%%/default-web-app/examples/jsp/include @dirrm %%T%%/default-web-app/examples/jsp/jsptoserv @dirrm %%T%%/default-web-app/examples/jsp/num @dirrm %%T%%/default-web-app/examples/jsp/plugin/applet @dirrm %%T%%/default-web-app/examples/jsp/plugin @dirrm %%T%%/default-web-app/examples/jsp/sessions +@dirrm %%T%%/default-web-app/examples/jsp/snp @dirrm %%T%%/default-web-app/examples/jsp/taglib/loop/META-INF @dirrm %%T%%/default-web-app/examples/jsp/taglib/loop/taglib @dirrm %%T%%/default-web-app/examples/jsp/taglib/loop @@ -344,18 +350,16 @@ @dirrm %%T%%/default-web-app/examples/ssi @dirrm %%T%%/default-web-app/examples/xsl @dirrm %%T%%/default-web-app/examples +@dirrm %%T%%/default-web-app/WEB-INF/classes/cal +@dirrm %%T%%/default-web-app/WEB-INF/classes/checkbox @dirrm %%T%%/default-web-app/WEB-INF/classes/colors -@dirrm %%T%%/default-web-app/WEB-INF/classes/num +@dirrm %%T%%/default-web-app/WEB-INF/classes/dates @dirrm %%T%%/default-web-app/WEB-INF/classes/error +@dirrm %%T%%/default-web-app/WEB-INF/classes/num @dirrm %%T%%/default-web-app/WEB-INF/classes/sessions -@dirrm %%T%%/default-web-app/WEB-INF/classes/dates -@dirrm %%T%%/default-web-app/WEB-INF/classes/cal -@dirrm %%T%%/default-web-app/WEB-INF/classes/checkbox @dirrm %%T%%/default-web-app/WEB-INF/classes @dirrm %%T%%/default-web-app/WEB-INF @dirrm %%T%%/default-web-app -@dirrm %%T%%/applications -@dirrm %%T%%/database @dirrm %%T%%/demo/ejb/cart/META-INF @dirrm %%T%%/demo/ejb/cart @dirrm %%T%%/demo/ejb/META-INF @@ -394,5 +398,3 @@ @dirrm %%T%%/persistence/ejb @dirrm %%T%%/persistence @dirrm %%T%% -@unexec pw groupdel orion || true -@unexec pw userdel orion || true To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Oct 10 11:27:33 2001 Delivered-To: freebsd-java@freebsd.org Received: from mail.wlcg.com (mail.wlcg.com [198.92.199.5]) by hub.freebsd.org (Postfix) with ESMTP id 3427437B405 for ; Wed, 10 Oct 2001 11:27:31 -0700 (PDT) Received: from localhost (rsimmons@localhost) by mail.wlcg.com (8.11.6/8.11.6) with ESMTP id f9AIRUp01596 for ; Wed, 10 Oct 2001 14:27:30 -0400 (EDT) (envelope-from rsimmons@wlcg.com) Date: Wed, 10 Oct 2001 14:27:27 -0400 (EDT) From: Rob Simmons To: Subject: patches to jdk1.3.1 Message-ID: <20011010142320.L97534-100000@mail.wlcg.com> 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 -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 I'm having trouble downloading the bsd patchset for the native jdk13 from http://www.eyesbeyond.com/freebsddom/java/jdk13.html The download page for the patchset seems to be broken. I'm unable to complete the download, it just stalls at 99%. Do any of you know who maintains this site? Robert Simmons Systems Administrator http://www.wlcg.com/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7xJMSv8Bofna59hYRA1ShAKCYP9ST8Xlcoq5H2uAN5Trbh5FP1wCcCbCG zYllD8YLvBflHFp6eL1EcE0= =cTtN -----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 Oct 10 11:34:30 2001 Delivered-To: freebsd-java@freebsd.org Received: from fe000.worldonline.dk (fe000.worldonline.dk [212.54.64.194]) by hub.freebsd.org (Postfix) with SMTP id 9B1C337B40A for ; Wed, 10 Oct 2001 11:34:23 -0700 (PDT) Received: (qmail 28936 invoked by uid 0); 10 Oct 2001 18:33:46 -0000 Received: from 213.237.13.224.adsl.hc.worldonline.dk (HELO NEIGAARD?MOB) (213.237.13.224) by fe000.worldonline.dk with SMTP; 10 Oct 2001 18:33:46 -0000 Date: Wed, 10 Oct 2001 20:35:07 +0200 From: =?ISO-8859-1?B?U/hyZW4gTmVpZ2FhcmQ=?= X-Mailer: The Bat! (v1.51) Reply-To: =?ISO-8859-1?B?U/hyZW4gTmVpZ2FhcmQ=?= X-Priority: 3 (Normal) Message-ID: <367849737.20011010203507@e-box.dk> To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG Subject: Re[2]: Error when installing jdk122b10 In-Reply-To: <20011003122946.A18017@misty.eyesbeyond.com> References: <9595432484.20010930171630@e-box.dk> <20011001081928.A4315@misty.eyesbeyond.com> <14482905541.20011001213018@e-box.dk> <20011002092456.A12318@misty.eyesbeyond.com> <1485158167.20011002190346@e-box.dk> <20011003122946.A18017@misty.eyesbeyond.com> 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 Wednesday, October 03, 2001, 4:59:46 AM, Greg wrote: GL> On Tue, Oct 02, 2001 at 07:03:46PM +0200, Søren Neigaard wrote: >> ===> Extracting for jdk-1.2.2b10 >> >> Checksum OK for jdk1_2_2-src.tar.gz. >> >> Checksum OK for freebsd-jdk122-patches-10.tar.gz. >> ===> jdk-1.2.2b10 depends on executable: gm4 - found >> ===> jdk-1.2.2b10 depends on executable: zip - found >> ===> jdk-1.2.2b10 depends on file: /usr/local/jdk1.1.8/bin/javac - found >> ===> jdk-1.2.2b10 depends on file: /usr/local/linux-jdk1.2.2/bin/javac - found >> ===> jdk-1.2.2b10 depends on file: /usr/X11R6/lib/libMrm.a - found >> ===> jdk-1.2.2b10 depends on file: /nonexistent - not found >> ===> Verifying extract for /nonexistent in /usr/ports/java/jfc >> ===> Extracting for jfc-1.1.1 >> >> Checksum mismatch for swing1_1_1.zip. >> Make sure the Makefile and distinfo file (/usr/ports/java/jfc/distinfo) >> are up to date. If you are absolutely sure you want to override this >> check, type "make NO_CHECKSUM=yes [other args]". >> *** Error code 1 GL> As it says...your options here are to type "make NO_CHECKSUM=yes" or obtain GL> the swing distribution with the correct checksum. I know which of the two GL> I would try :). Oh yes, this topic is quite old, but I have been busy... Where do I get a swing distibution with the correct checksum? -- Med venlig hilsen/Best regards, Søren Neigaard mailto:neigaard@e-box.dk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Oct 10 16:49: 7 2001 Delivered-To: freebsd-java@freebsd.org Received: from zip-it.org (CPE-203-45-28-59.vic.bigpond.net.au [203.45.28.59]) by hub.freebsd.org (Postfix) with ESMTP id 5B1FD37B403 for ; Wed, 10 Oct 2001 16:49:04 -0700 (PDT) Received: from miniluv.zip-it.org (miniluv.zip-it.org [192.168.123.2]) by zip-it.org (Postfix) with ESMTP id 242C41084B for ; Thu, 11 Oct 2001 09:55:20 +1000 (EST) Date: Wed, 10 Oct 2001 23:48:59 +1000 (EST) From: William Rose To: Subject: Deprecation and other errors on compiling JDK 1.3.1p4 Message-ID: <20011010233604.M75244-100000@miniluv.zip-it.org> 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 Hi, I am trying to compile up the JDK 1.3.1 source with the version 4 patches (the ones available on the freebsd.org/java/ pages yesterday =). After a couple of false starts (permissions were all wrong after unpacking: prevented patch from applying), I got much further into the compile. I am using the linux-jdk13 port as my bootstrap compiler, as suggested in BUILD. The error that I get is in the j2sdk/make/sun/rmi/corba directory, and it spews forth great volumes of error messages that I have captured, and can forward on request. Essentially, the gist initially was that there was use of deprecated APIs, and so I went back and altered j2sdk/make/common/Defs.gmk to put the -deprecation flag at the end of the javac options. This sort of helped, but there were still 5 errors (and 58 mostly deprecation warnings). The errors are due to an unresolved symbol: ../../../../src/share/classes/com/sun/org/omg/SendingContext/CodeBasePackage/Val ueDescSeqHelper.java:64: cannot resolve symbol symbol : class FullValueDescriptionHelper location: package ValueDefPackage value[_o1] = com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.read (istream); A quick scan shows that the other five errors are roughly the same, just different bits of code. I'm running FreeBSD 4.4, and hoping to get a working native JDK so I can play with OpenOffice =) Plus I've just done a third year subject on concurrent computing with pthreads or Java and I'd like to play more! Plus plus I also want to see if I can make it work under NetBSD. But first I have to make it work at all... Any suggestions? cheers, Will To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Oct 11 0: 6:26 2001 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 7034937B408 for ; Thu, 11 Oct 2001 00:06:21 -0700 (PDT) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id f9B76GX79562; Thu, 11 Oct 2001 09:06:16 +0200 (CEST) (envelope-from ernst) Message-Id: <200110110706.f9B76GX79562@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan Organization: Jollem Information Technology To: Rob Simmons , Subject: Re: patches to jdk1.3.1 Date: Thu, 11 Oct 2001 09:06:11 +0200 X-Mailer: KMail [version 1.3] References: <20011010142320.L97534-100000@mail.wlcg.com> In-Reply-To: <20011010142320.L97534-100000@mail.wlcg.com> MIME-Version: 1.0 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 Greg does. Greg: I can provide a mirror location at http://www.jollem.com/ and probably at a faster site as well, since I work at an ISP now B-)~ /E On Wednesday 10 October 2001 20:27, Rob Simmons wrote: > I'm having trouble downloading the bsd patchset for the native jdk13 from > http://www.eyesbeyond.com/freebsddom/java/jdk13.html > > The download page for the patchset seems to be broken. I'm unable to > complete the download, it just stalls at 99%. > > Do any of you know who maintains this site? > > Robert Simmons > Systems Administrator > http://www.wlcg.com/ > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Oct 11 6: 3:36 2001 Delivered-To: freebsd-java@freebsd.org Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by hub.freebsd.org (Postfix) with ESMTP id E2D6437B401 for ; Thu, 11 Oct 2001 06:03:32 -0700 (PDT) Received: from [166.70.8.130] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.22 #1) id 15rfUo-0005wQ-00; Thu, 11 Oct 2001 07:03:31 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id f9BD3MZ70711; Thu, 11 Oct 2001 22:33:22 +0930 (CST) (envelope-from glewis) Date: Thu, 11 Oct 2001 22:32:46 +0930 From: Greg Lewis To: =?iso-8859-1?Q?S=F8ren_Neigaard?= Cc: Greg Lewis , freebsd-java@FreeBSD.ORG Subject: Re: Error when installing jdk122b10 Message-ID: <20011011223246.A70699@misty.eyesbeyond.com> References: <9595432484.20010930171630@e-box.dk> <20011001081928.A4315@misty.eyesbeyond.com> <14482905541.20011001213018@e-box.dk> <20011002092456.A12318@misty.eyesbeyond.com> <1485158167.20011002190346@e-box.dk> <20011003122946.A18017@misty.eyesbeyond.com> <367849737.20011010203507@e-box.dk> 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: <367849737.20011010203507@e-box.dk>; from neigaard@e-box.dk on Wed, Oct 10, 2001 at 08:35:07PM +0200 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, Oct 10, 2001 at 08:35:07PM +0200, Søren Neigaard wrote: > Wednesday, October 03, 2001, 4:59:46 AM, Greg wrote: > >> >> Checksum mismatch for swing1_1_1.zip. > >> Make sure the Makefile and distinfo file (/usr/ports/java/jfc/distinfo) > >> are up to date. If you are absolutely sure you want to override this > >> check, type "make NO_CHECKSUM=yes [other args]". > >> *** Error code 1 > GL> As it says...your options here are to type "make NO_CHECKSUM=yes" or obtain > GL> the swing distribution with the correct checksum. I know which of the two > GL> I would try :). > Oh yes, this topic is quite old, but I have been busy... > > Where do I get a swing distibution with the correct checksum? I would have gone with trying 'make NO_CHECKSUM=yes' before going to look for a Swing distro with the right checksum :). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Phone : (801) 765 1887 Information Technology Web : http://www.eyesbeyond.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Oct 11 6: 9:24 2001 Delivered-To: freebsd-java@freebsd.org Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by hub.freebsd.org (Postfix) with ESMTP id CDFF737B401 for ; Thu, 11 Oct 2001 06:09:18 -0700 (PDT) Received: from [166.70.8.130] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.22 #1) id 15rfaO-0006Em-00; Thu, 11 Oct 2001 07:09:17 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id f9BD9CE70758; Thu, 11 Oct 2001 22:39:12 +0930 (CST) (envelope-from glewis) Date: Thu, 11 Oct 2001 22:39:12 +0930 From: Greg Lewis To: William Rose Cc: freebsd-java@FreeBSD.ORG Subject: Re: Deprecation and other errors on compiling JDK 1.3.1p4 Message-ID: <20011011223912.B70699@misty.eyesbeyond.com> References: <20011010233604.M75244-100000@miniluv.zip-it.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011010233604.M75244-100000@miniluv.zip-it.org>; from wrose@zip-it.org on Wed, Oct 10, 2001 at 11:48:59PM +1000 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, Oct 10, 2001 at 11:48:59PM +1000, William Rose wrote: > I am trying to compile up the JDK 1.3.1 source with the version 4 patches > (the ones available on the freebsd.org/java/ pages yesterday =). After a > couple of false starts (permissions were all wrong after unpacking: > prevented patch from applying), I got much further into the compile. > > I am using the linux-jdk13 port as my bootstrap compiler, as suggested in > BUILD. > > The error that I get is in the j2sdk/make/sun/rmi/corba directory, and it > spews forth great volumes of error messages that I have captured, and can > forward on request. > > Essentially, the gist initially was that there was use of deprecated APIs, > and so I went back and altered j2sdk/make/common/Defs.gmk to put the > -deprecation flag at the end of the javac options. This sort of helped, > but there were still 5 errors (and 58 mostly deprecation warnings). The > errors are due to an unresolved symbol: > > ../../../../src/share/classes/com/sun/org/omg/SendingContext/CodeBasePackage/Val > ueDescSeqHelper.java:64: cannot resolve symbol > symbol : class FullValueDescriptionHelper > location: package ValueDefPackage > value[_o1] = > com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.read (istream); > > A quick scan shows that the other five errors are roughly the same, just > different bits of code. Odd. Here is what I get compiling that java: Note: Some input files use or override a deprecated API. Note: Recompile with -deprecation for details. I suggest that turning -deprecation on is a bad idea, since you're not actually interested in the use of deprecated code. Hard to really say what is going on. You're definitely using the current Sun source code for 1.3.1? > I'm running FreeBSD 4.4, and hoping to get a working native JDK so I can > play with OpenOffice =) Plus I've just done a third year subject on > concurrent computing with pthreads or Java and I'd like to play more! > Plus plus I also want to see if I can make it work under NetBSD. But > first I have to make it work at all... It does work under NetBSD, or patchset 5 will at least :) -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Phone : (801) 765 1887 Information Technology Web : http://www.eyesbeyond.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Oct 11 9:37: 9 2001 Delivered-To: freebsd-java@freebsd.org Received: from crewsoft.com (ns.aenet.net [157.22.214.1]) by hub.freebsd.org (Postfix) with ESMTP id E9B2737B403 for ; Thu, 11 Oct 2001 09:37:06 -0700 (PDT) Received: from [63.197.8.222] (account cberger@wireless-networks.com HELO wireless-networks.com) by crewsoft.com (CommuniGate Pro SMTP 3.4.7) with ESMTP id 1205601; Thu, 11 Oct 2001 09:41:05 -0700 Message-ID: <3BC5CB0A.8050403@wireless-networks.com> Date: Thu, 11 Oct 2001 09:38:34 -0700 From: Cedric Berger User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4+) Gecko/20011008 X-Accept-Language: en-us MIME-Version: 1.0 To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG Subject: Re: Deprecation and other errors on compiling JDK 1.3.1p4 References: <20011010233604.M75244-100000@miniluv.zip-it.org> <20011011223912.B70699@misty.eyesbeyond.com> 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 Greg Lewis wrote: >>I'm running FreeBSD 4.4, and hoping to get a working native JDK so I can >>play with OpenOffice =) Plus I've just done a third year subject on >>concurrent computing with pthreads or Java and I'd like to play more! >>Plus plus I also want to see if I can make it work under NetBSD. But >>first I have to make it work at all... >> > >It does work under NetBSD, or patchset 5 will at least :) > Wow! Any idea about OpenBSD status? Cedric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Oct 11 18:27: 2 2001 Delivered-To: freebsd-java@freebsd.org Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by hub.freebsd.org (Postfix) with ESMTP id B9AC637B405 for ; Thu, 11 Oct 2001 18:26:58 -0700 (PDT) Received: from [166.70.2.117] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.22 #1) id 15rr6H-0004RX-00; Thu, 11 Oct 2001 19:26:58 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id f9C1QsT72648; Fri, 12 Oct 2001 10:56:54 +0930 (CST) (envelope-from glewis) Date: Fri, 12 Oct 2001 10:56:54 +0930 From: Greg Lewis To: Cedric Berger Cc: freebsd-java@FreeBSD.ORG Subject: Re: Deprecation and other errors on compiling JDK 1.3.1p4 Message-ID: <20011012105653.A72631@misty.eyesbeyond.com> References: <20011010233604.M75244-100000@miniluv.zip-it.org> <20011011223912.B70699@misty.eyesbeyond.com> <3BC5CB0A.8050403@wireless-networks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3BC5CB0A.8050403@wireless-networks.com>; from cedric@wireless-networks.com on Thu, Oct 11, 2001 at 09:38:34AM -0700 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, Oct 11, 2001 at 09:38:34AM -0700, Cedric Berger wrote: > Greg Lewis wrote: > > >>I'm running FreeBSD 4.4, and hoping to get a working native JDK so I can > >>play with OpenOffice =) Plus I've just done a third year subject on > >>concurrent computing with pthreads or Java and I'd like to play more! > >>Plus plus I also want to see if I can make it work under NetBSD. But > >>first I have to make it work at all... > >> > > > >It does work under NetBSD, or patchset 5 will at least :) > > > Wow! > Any idea about OpenBSD status? The current version of the 1.2.2 source in CVS partially works on OpenBSD (I know, I know, patchset 11). 1.3.1 won't compile on OpenBSD yet. This is all i386 for the moment. The two biggest problems are: 1. OpenBSD/i386 is AOUT still, all the other platforms are ELF. 2. OpenBSD uses a quite old version of binutils (or 2.9 does at least). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Phone : (801) 765 1887 Information Technology Web : http://www.eyesbeyond.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Oct 12 1:33:25 2001 Delivered-To: freebsd-java@freebsd.org Received: from hotmail.com (f206.law14.hotmail.com [64.4.21.206]) by hub.freebsd.org (Postfix) with ESMTP id 60D4537B405 for ; Fri, 12 Oct 2001 01:33:24 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 12 Oct 2001 01:33:24 -0700 Received: from 203.130.214.173 by lw14fd.law14.hotmail.msn.com with HTTP; Fri, 12 Oct 2001 08:33:24 GMT X-Originating-IP: [203.130.214.173] From: "himura kenshin" To: freebsd-java@FreeBSD.org Date: Fri, 12 Oct 2001 16:33:24 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 12 Oct 2001 08:33:24.0288 (UTC) FILETIME=[8EB81400:01C152F8] 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 subscribe _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Oct 12 1:37:59 2001 Delivered-To: freebsd-java@freebsd.org Received: from zip-it.org (CPE-203-45-28-59.vic.bigpond.net.au [203.45.28.59]) by hub.freebsd.org (Postfix) with ESMTP id DA46137B408 for ; Fri, 12 Oct 2001 01:37:47 -0700 (PDT) Received: from miniluv.zip-it.org (miniluv.zip-it.org [192.168.123.2]) by zip-it.org (Postfix) with ESMTP id A82C81084B for ; Fri, 12 Oct 2001 18:43:45 +1000 (EST) Date: Fri, 12 Oct 2001 08:37:12 +1000 (EST) From: William Rose To: Subject: Re: Deprecation and other errors on compiling JDK 1.3.1p4 In-Reply-To: <20011011223912.B70699@misty.eyesbeyond.com> Message-ID: <20011012082151.O80394-100000@miniluv.zip-it.org> 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 Hi, I really ought to have held off writing last time until I had more than two minutes to think =) > > ../../../../src/share/classes/com/sun/org/omg/SendingContext/CodeBasePackage/Val > > ueDescSeqHelper.java:64: cannot resolve symbol > > symbol : class FullValueDescriptionHelper > > location: package ValueDefPackage > > value[_o1] = > > com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.read (istream); Really, the sensible thing to do would be to check if the file: j2sdk1.3.1/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/ FullValueDescriptionHelper.java existed or not. Strangely enough, it didn't in my untarring of the file. I had 'FullValueDescriptionHelper.java0100444' or some such file instead. A simple rename fixed the problem. > I suggest that turning -deprecation on is a bad idea, since you're not > actually interested in the use of deprecated code. Yes =) me takes clue stick and gets to know it a little better. > Hard to really say what is going on. You're definitely using the current > Sun source code for 1.3.1? Yup -- and I untarred it fresh after I mucked up the permissions on the first one. > It does work under NetBSD, or patchset 5 will at least :) Woohoo! As I said before, I'm mainly playing as a detour to getting OpenOffice to work. I could use the linux jdk under emulation, but I figure that there's some advantage in a native version! Out of interest, and possibly to demonstrate my complete lack of understanding of the real issues, is there a version of the JDK that is designed to use POSIX threads? I see lots of references to 'native threads' and I can understand that thread support in Java needs to have support from the OS. What I find odd is that there seems to be some porting involved to convert from the Linux thread support to *BSD. Surely the implementation was written to use the Pthread API, and is thus portable already? cheers, Will To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Oct 12 2:22: 3 2001 Delivered-To: freebsd-java@freebsd.org Received: from azrael.xs4all.nl (azrael.xs4all.nl [213.84.220.111]) by hub.freebsd.org (Postfix) with ESMTP id DFFA437B401 for ; Fri, 12 Oct 2001 02:21:59 -0700 (PDT) Received: (from remco@localhost) by azrael.xs4all.nl (8.11.6/8.11.6) id f9C9Lub08705 for freebsd-java@FreeBSD.ORG; Fri, 12 Oct 2001 11:21:57 +0200 (CEST) (envelope-from remco) Date: Fri, 12 Oct 2001 11:21:56 +0200 From: "Remco van 't Veer" To: FreeBSD Java List Subject: jdk1.3.1p4_1: Process.waitFor() always returns 0 Message-ID: <20011012112156.R71770@azrael.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Spook: FMS ISACA ISEP WORM K3 MD5 Toffler Archives SURSAT NABS Atlas 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, The exit status for a Process is not passed properly. The native 1.3.1p4 jdk always returns 0 on a Process.waitFor(). Please try to following class: import java.io.*; public class Z { public static void main (String[] args) throws Exception { String[] pargs = { "false" }; Process proc = null; try { proc = Runtime.getRuntime().exec(pargs); } catch (IOException ex) { } System.out.println("exit status: "+proc.waitFor()); } } Please look at the following output: $ java -version java version "1.2.2" Classic VM (build jdk1.2.2-FreeBSD:root:2001/05/19-03:26, green threads, nojit) $ java Z exit status: 256 $ java -version java version "1.3.1-internal" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-internal-remco-010917-23:11) Classic VM (build 1.3.1-internal-remco-010917-23:11, green threads, nojit) $ java Z exit status: 0 $ java -version java version "1.2.2" Classic VM (build Linux_JDK_1.2.2_RC4, green threads, sunwjit) $ java Z exit status: 1 $ java -version # linux version java version "1.3.1_01" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01) Classic VM (build 1.3.1_01, green threads, nojit) $ java Z exit status: 1 I am using FreeBSD 4.4 release. Remco -- We are committed to engage in energetically reinventing progressive synergies. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Oct 12 20:42:22 2001 Delivered-To: freebsd-java@freebsd.org Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by hub.freebsd.org (Postfix) with ESMTP id 41C3837B412 for ; Fri, 12 Oct 2001 20:42:18 -0700 (PDT) Received: from [166.70.8.86] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.22 #1) id 15sFge-00086R-00; Fri, 12 Oct 2001 21:42:09 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id f9D3g5m78893; Sat, 13 Oct 2001 13:12:05 +0930 (CST) (envelope-from glewis) Date: Sat, 13 Oct 2001 13:12:05 +0930 From: Greg Lewis To: "Remco van 't Veer" Cc: FreeBSD Java List Subject: Re: jdk1.3.1p4_1: Process.waitFor() always returns 0 Message-ID: <20011013131205.A78872@misty.eyesbeyond.com> References: <20011012112156.R71770@azrael.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011012112156.R71770@azrael.xs4all.nl>; from rwvtveer@xs4all.nl on Fri, Oct 12, 2001 at 11:21:56AM +0200 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, Oct 12, 2001 at 11:21:56AM +0200, Remco van 't Veer wrote: > The exit status for a Process is not passed properly. The native > 1.3.1p4 jdk always returns 0 on a Process.waitFor(). Please try > to following class: This is a known bug which will be fixed in patchset 5. Am working to get this out soon as I can. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Phone : (801) 765 1887 Information Technology Web : http://www.eyesbeyond.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Oct 13 23: 8:48 2001 Delivered-To: freebsd-java@freebsd.org Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by hub.freebsd.org (Postfix) with ESMTP id 8DACD37B405; Sat, 13 Oct 2001 23:08:44 -0700 (PDT) Received: from [166.70.13.166] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.22 #1) id 15seS0-0001YK-00; Sun, 14 Oct 2001 00:08:41 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id f9E68Xp38518; Sun, 14 Oct 2001 15:38:33 +0930 (CST) (envelope-from glewis) Date: Sun, 14 Oct 2001 15:38:33 +0930 (CST) Message-Id: <200110140608.f9E68Xp38518@misty.eyesbeyond.com> To: FreeBSD-gnats-submit@freebsd.org Subject: Update for the jdk13 port From: Greg Lewis Reply-To: Greg Lewis Cc: freebsd-java@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: 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 >Submitter-Id: current-users >Originator: Greg Lewis >Organization: BSD Java Porting Team >Confidential: no >Synopsis: Update for the jdk13 port >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 4.4-RELEASE i386 >Environment: System: FreeBSD misty.eyesbeyond.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Mon Oct 8 02:18:34 CST 2001 root@misty.eyesbeyond.com:/usr/src/sys/compile/MISTY i386 >Description: Upgrade the jdk13 port to use the newly released patchset 5. >How-To-Repeat: N/A >Fix: The patch below should update the port to use the new patchset. I haven't had time to build with this setup yet, but I can't see any problems. I'll try and get a build going now and check in the morning. Note that the part of the Makefile patch which creates the necessary new directories was submitted to freebsd-java by Michael Class . The latest patchset should obsolete the following patches from the port: patch-..::src::solaris::bin::java_wrapper_bsd.sh patch-..::src::solaris::hpi::green_threads::src::iomgr.c patch-..::src::solaris::native::sun::awt::awt_util.c --- Makefile Fri Sep 14 05:07:03 2001 +++ Makefile.new Sat Oct 13 16:50:01 2001 @@ -26,7 +26,7 @@ WRKSRC= ${WRKDIR}/j2sdk1.3.1/make JDK_VERSION= 1.3.1 -JDK_PATCHSET_VERSION= 4 +JDK_PATCHSET_VERSION= 5 JDK13DIR?= ${LOCALBASE}/linux-jdk${JDK_VERSION} @@ -68,7 +68,11 @@ .endfor pre-patch: - @cd ${WRKDIR} && ${PATCH} < ${WRKDIR}/jdk131.patches + @cd ${WRKDIR} && \ + ${MKDIR} -p j2sdk1.3.1/ext/plugin/oji-plugin/include/bsd/jdk12 && \ + ${MKDIR} -p j2sdk1.3.1/ext/plugin/oji-plugin/include/solaris/navig5/private && \ + ${MKDIR} -p j2sdk1.3.1/src/bsd/doc/man && \ + ${PATCH} < ${WRKDIR}/jdk131.patches .if !defined(NODEBUG) pre-install: --- distinfo Mon Sep 10 21:13:08 2001 +++ distinfo.new Sat Oct 13 16:53:05 2001 @@ -1,2 +1,2 @@ MD5 (j2sdk-1_3_1-src.tar.gz) = 787a01655133df85e65eda7deb2ece57 -MD5 (bsd-jdk131-patches-4.tar.gz) = ec4725aad2b59f6237372f2e97889183 +MD5 (bsd-jdk131-patches-5.tar.gz) = 7a7ddb0f86f4796fe8b46286d8865dcb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Oct 13 23:18:42 2001 Delivered-To: freebsd-java@freebsd.org Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by hub.freebsd.org (Postfix) with ESMTP id A317A37B408 for ; Sat, 13 Oct 2001 23:18:39 -0700 (PDT) Received: from [166.70.13.166] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.22 #1) id 15sebd-0004Jk-00 for freebsd-java@freebsd.org; Sun, 14 Oct 2001 00:18:39 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id f9E6IHL38589 for freebsd-java@freebsd.org; Sun, 14 Oct 2001 15:48:17 +0930 (CST) (envelope-from glewis) Date: Sun, 14 Oct 2001 15:48:14 +0930 From: Greg Lewis To: freebsd-java@freebsd.org Subject: 1.3.1 patchset 5 Message-ID: <20011014154814.A38579@misty.eyesbeyond.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i 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 all, Patchset 5 for JDK 1.3.1 is up on the web site. The main highlights are: 1. NetBSD support is included (Scott Bartram and Alistair Crooks). 2. The green threads subsystem is now very solid (Fuyuhiko Maruyama). 5. The native threads subsystem was redone and is closer to working (Bill Huey). 3. Both threading subsystems can be built at once (Fuyuhiko Maruyama). 4. Various problems with external process were fixed (Fuyuhiko Maruyama and Jay Sachs). See THANKS and ChangeLog in the patchset for more information. If you are a Chinese, Japanese or Korean user you should still also apply the Open Motif patch from http://www.freebsd.org/cgi/query-pr.cgi?pr=30421 and rebuild Open Motif before building the JDK. This prevents a potential memory fault when using XIM. The patch will become unnecessary on your platform once the Open Motif port/package has been updated. I recommend people switch to using this version if they want to use a native JDK 1.3.1. I've sent in an update for the FreeBSD JDK 1.3.1 native port. The impatient can find it at http://www.freebsd.org/cgi/query-pr.cgi?pr=31257 -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Phone : (801) 765 1887 Information Technology Web : http://www.eyesbeyond.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message