From owner-freebsd-java Sun Sep 23 4:37:13 2001 Delivered-To: freebsd-java@freebsd.org Received: from mx7.port.ru (mx7.port.ru [194.67.57.17]) by hub.freebsd.org (Postfix) with ESMTP id 87C8937B41C for ; Sun, 23 Sep 2001 04:37:09 -0700 (PDT) Received: from [213.133.160.239] (helo=notebook.vega.com) by mx7.port.ru with esmtp (Exim 3.14 #1) id 15l7Z3-0005Gh-00; Sun, 23 Sep 2001 15:36:54 +0400 To: glewis@eyesbeyond.com, ernst@jollem.com Cc: ejc@bazzle.com, fuyuhik8@is.titech.ac.jp, jknoll@indy.rr.com, freebsd-java@FreeBSD.ORG, dob@bazzle.com, caa@bazzle.com From: Maxim Sobolev Reply-To: sobomax@FreeBSD.org Subject: Re: OpenJIT-1.1.16 released. (Re: Using OpenJIT with jdk1.3.1p4) X-Mailer: Pygmy (v0.5.11) In-Reply-To: <20010923125411.A84957@misty.eyesbeyond.com> Content-type: text/plain Content-Transfer-Encoding: quoted-printable Message-Id: Date: Sun, 23 Sep 2001 15:36:54 +0400 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, 23 Sep 2001 12:54:12 +0930, Greg Lewis wrote: > On Sat, Sep 22, 2001 at 11:28:11PM +0200, Ernst de Haan wrote: > > Would not it be a good idea to split openjit in three separate ports: > > = > > openjit-jdk11 > > openjit-jdk12 > > openjit-jdk13 > > = > > The difference is obvious IMO. > = > Without looking at the port, might it be easier to simply have a command > line switch for make? E.g. > = > make JDK_VERSION=3D1[123] > = > We're building the same port, just for different JDKs :). Actually shujit and tya ports already implement something like that. Assuming that your particular JDK is installed in /usr/local/jdkX.Y.Z you can do `make JAVADIR=3D/usr/local/jdkX.Y.Z' to build JIT for this version. Perhaps the better way would be to split each port of JIT into one master and several slave ports (one for each version of native JDK), just like Ernst suggests, but unfortunately I do not have a time to do it right now. However, if somebody else is ready to do a work, please feel free and submit resulting patches to me. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Sep 24 1:24:48 2001 Delivered-To: freebsd-java@freebsd.org Received: from rj.sgi.com (rj.SGI.COM [204.94.215.100]) by hub.freebsd.org (Postfix) with ESMTP id CAEC237B40A for ; Mon, 24 Sep 2001 01:24:44 -0700 (PDT) Received: from yog-sothoth.sgi.com (eugate.neu.sgi.com [144.253.131.5]) by rj.sgi.com (8.11.4/8.11.4/linux-outbound_gateway-1.0) with ESMTP id f8O8Ohj29264 for <@rj.corp.sgi.com:java@freebsd.org>; Mon, 24 Sep 2001 01:24:44 -0700 Received: from sgiger.munich.sgi.com (sgiger.munich.sgi.com [144.253.192.2]) by yog-sothoth.sgi.com (980305.SGI.8.8.8-aspam-6.2/980304.SGI-aspam-europe) via SMTP id KAA1037312 for <@eugate.sgi.com:java@freebsd.org>; Mon, 24 Sep 2001 10:24:16 +0200 (CEST) mail_from (gwk@sgi.com) Received: from cuckoo.munich.sgi.com (cuckoo.munich.sgi.com [144.253.192.109]) by sgiger.munich.sgi.com (950413.SGI.8.6.12/950213.SGI.AUTOCF) via ESMTP id KAA02922; Mon, 24 Sep 2001 10:23:50 +0200 Received: from hunter.munich.sgi.com (hunter.munich.sgi.com [144.253.197.18]) by cuckoo.munich.sgi.com (SGI-8.9.3/8.9.3) with ESMTP id KAA53506; Mon, 24 Sep 2001 10:23:38 +0200 (CEST) Received: from hunter.munich.sgi.com (localhost.munich.sgi.com [127.0.0.1]) by hunter.munich.sgi.com (8.11.5/8.11.5) with ESMTP id f8O8NH001674; Mon, 24 Sep 2001 10:23:24 +0200 (CEST) (envelope-from gwk@sgi.com) Date: Mon, 24 Sep 2001 10:23:16 +0200 Message-ID: From: "Georg-W. Koltermann" To: java@freebsd.org Subject: exit value of external process always reported as 0 User-Agent: Wanderlust/2.4.1 (Stand By Me) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (HANANOEN) Organization: SGI X-Attribution: gwk MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") 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, with the current FreeBSD JDK 1.3.1 compiled from ports I always get zero exit values for external processes. Even if I run "false", I get an exit value of 0: hunter[14]$ cat Gwk.java public class Gwk { public static void main(String argv[]) throws Exception { Process p = Runtime.getRuntime().exec("false"); System.out.println("waitFor(): " + p.waitFor()); System.out.println("exitValue(): " + p.exitValue()); } } hunter[15]$ javac Gwk.java hunter[16]$ java -showversion Gwk java version "1.3.1-internal" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-internal-gwk-010911-22:36) Classic VM (build 1.3.1-internal-gwk-010911-22:36, green threads, nojit) waitFor(): 0 exitValue(): 0 hunter[17]$ The Linux jdk returns the expected result: hunter[3]$ java -showversion Gwk 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) waitFor(): 1 exitValue(): 1 -- Regards, Georg. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Sep 24 1:44:35 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 8D93C37B412 for ; Mon, 24 Sep 2001 01:44:15 -0700 (PDT) Received: from [166.70.13.219] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.22 #1) id 15lRLa-0007Rg-00; Mon, 24 Sep 2001 02:44:14 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.3/8.11.3) id f8O8iB202760; Mon, 24 Sep 2001 18:14:11 +0930 (CST) (envelope-from glewis) Date: Mon, 24 Sep 2001 18:14:11 +0930 From: Greg Lewis To: "Georg-W. Koltermann" Cc: java@FreeBSD.ORG Subject: Re: exit value of external process always reported as 0 Message-ID: <20010924181411.A2748@misty.eyesbeyond.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from gwk@sgi.com on Mon, Sep 24, 2001 at 10:23:16AM +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 Mon, Sep 24, 2001 at 10:23:16AM +0200, Georg-W. Koltermann wrote: > with the current FreeBSD JDK 1.3.1 compiled from ports I always get > zero exit values for external processes. Even if I run "false", I get > an exit value of 0: I've been sent a patch to fix this. I'm currently just testing it before committing. It will be in the next patchset. Thanks for the report! -- 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 Tue Sep 25 0:40:26 2001 Delivered-To: freebsd-java@freebsd.org Received: from heinz.jollem.com (c104187.upc-c.chello.nl [212.187.104.187]) by hub.freebsd.org (Postfix) with ESMTP id E01AD37B431; Tue, 25 Sep 2001 00:40:21 -0700 (PDT) Received: (from ernst@localhost) by heinz.jollem.com (8.11.3/8.11.4) id f8P7atb01525; Tue, 25 Sep 2001 09:36:55 +0200 (CEST) (envelope-from ernst) Date: Tue, 25 Sep 2001 09:36:20 +0200 From: Ernst de Haan To: Greg Lewis Cc: "Eric J. Chet" , Fuyuhiko Maruyama , Jim Knoll , sobomax@FreeBSD.ORG, freebsd-java@FreeBSD.ORG, "Dan O'Brien" , "Charlie A. Anderson" Subject: Re: OpenJIT-1.1.16 released. (Re: Using OpenJIT with jdk1.3.1p4) Message-ID: <20010925093620.A1511@c104187.upc-c.chello.nl> References: <55pu8ktojz.wl@tripper.private> <20010922111607.R10736-100000@gargoyle.bazzle.com> <20010922232811.C15683@c104187.upc-c.chello.nl> <20010923125411.A84957@misty.eyesbeyond.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010923125411.A84957@misty.eyesbeyond.com>; from glewis@eyesbeyond.com on Sun, Sep 23, 2001 at 12:54:12PM +0930 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, --- > > openjit-jdk11 > > openjit-jdk12 > > openjit-jdk13 --- > make JDK_VERSION=1[123] --- I don't think these approaches are mutually exclusive. We should probably write one master port with three slave ports, as follows: 'java/openjit-jdk11' (calls "make JDK_VERSION=11" in port 'java/openjit') 'java/openjit-jdk12' (calls "make JDK_VERSION=12" in port 'java/openjit') 'java/openjit-jdk13' (calls "make JDK_VERSION=13" in port 'java/openjit') 'java/openjit' (defaults to JDK_VERSION=1, as it does already) Would anyone knowa good and simple example of a master+slaves port ? /Ernst -- 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 Tue Sep 25 7:17: 9 2001 Delivered-To: freebsd-java@freebsd.org Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by hub.freebsd.org (Postfix) with ESMTP id 07F7737B418 for ; Tue, 25 Sep 2001 07:17:02 -0700 (PDT) Received: from vega.vega.com (h193.227.dialup.iptcom.net [212.9.227.193]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id RAA13802; Tue, 25 Sep 2001 17:16:47 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id f8PDxjA05333; Tue, 25 Sep 2001 16:59:45 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3BB08E2E.6EAA7D12@FreeBSD.org> Date: Tue, 25 Sep 2001 17:01:18 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.78 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: shudo@computer.org Cc: java@FreeBSD.org Subject: Re: Shujit doesn't work with Forte and JDK1.3.1 on FreeBSD References: <200109141642.f8EGguP01766@vega.vega.com> <20010922021111P.shudoh@aist.go.jp> Content-Type: text/plain; charset=koi8-r 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 shudo@computer.org wrote: > Hi Maxim, > > I appreciate your reports about shuJIT and FreeBSD. Your > reports have been very useful sources of bug fixes. > > I could fix the JIT compiler and released a new version 0.7.5: > http://www.shudo.net/jit/ > > From: Maxim Sobolev > > > Just to let you know that when I'm trying to run Forte under FreeBSD with > > native JDK1.3.1 (yes, we have it now, thouth it isn't official yet) and > > JAVA_COMPILER=shujit the IDE doesn't start up properly - it hangs somewhere > > in the middle of the startup process. > > Forte for Java is pretty large and complicated Java > application. It is a very good test program for JVMs and > JIT compilers. I tried version 3.0, which is recently > (Aug 30) released, on Linux. The Forte attacked no less > than three effective bugs and two potential bugs of > shuJIT! I could notice the bugs thank for the great test > program. > > If the FreeBSD native JDK 1.3.1 can run Forte even with > the Java interpreter, it may be a sign of maturation of > the native JDK. > > Those shuJIT's bugs are very interesting for me. Almost > all the bugs are related to synchronization. One of them > involves tail recursion elimination (an optimization > technique) of a synchronized method. Forte works like a charm with shujit 0.7.5 and FreeBSD native JDK1.3.1. I've updated the port, so all FreeBSD users are able to benefit from it. Thank you, really amazing work, please keep doing! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Sep 26 22:35:54 2001 Delivered-To: freebsd-java@freebsd.org Received: from espresso.syncrontech.com (espresso-adsl.syncrontech.com [213.28.98.39]) by hub.freebsd.org (Postfix) with ESMTP id 78A0137B432 for ; Wed, 26 Sep 2001 22:35:50 -0700 (PDT) Received: from suutari.iki.fi (coffee.syncrontech.com [62.71.8.37]) by espresso.syncrontech.com (8.9.3/8.9.3) with ESMTP id IAA48473 for ; Thu, 27 Sep 2001 08:35:46 +0300 (EEST) (envelope-from ari@suutari.iki.fi) Message-ID: <3BB2BB4B.8050409@suutari.iki.fi> Date: Thu, 27 Sep 2001 08:38:19 +0300 From: Ari Suutari User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.3) Gecko/20010904 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-java@freebsd.org Subject: jdk1.3.1 + shujit + netbeans problem 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 Hi, Has anyone else tried to use NetBeans (3.2.1 build98) with native jdk1.3.1p4 and latest shujit ? Usually it just seems to hang during startup (when using skinlf1.1 + aquathemepack it hangs always for me, without skinning I managed to get it running at least once). However, when using the same jdk without JIT or with tya it works OK. Ari S. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Sep 27 11:53:43 2001 Delivered-To: freebsd-java@freebsd.org Received: from fe040.worldonline.dk (fe040.worldonline.dk [212.54.64.205]) by hub.freebsd.org (Postfix) with SMTP id 84D8E37B40B for ; Thu, 27 Sep 2001 11:53:40 -0700 (PDT) Received: (qmail 26900 invoked by uid 0); 27 Sep 2001 18:53:35 -0000 Received: from 213.237.13.224.adsl.hc.worldonline.dk (HELO NEIGAARD?MOB) (213.237.13.224) by fe040.worldonline.dk with SMTP; 27 Sep 2001 18:53:35 -0000 Date: Thu, 27 Sep 2001 20:54:53 +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: <7712018301.20010927205453@e-box.dk> To: freebsd-java@FreeBSD.ORG Subject: where is the "native" in the jdk122 native port? 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 I just installed the jdk122 port on my box, and it installed a LOT of other things (mainly Linux stuff, as I could see). An it the complained that I haven't got support for Linux binaries at the end. Well... I wanted to run Unix, not Linux :) Actually I have 2 questions in this mail: 1) Why is all that Linux stuff needed for a jdk122, when it's not for the jdk118? 2) Should I install Linux binary support? Is it fast (as fast as Linux, and as fast as native FreeBSD)? Is it stable? Ok the last question was more than one, sorry :) -- Med venlig hilsen/Best regards, Søren Neigaard mailto:neigaard@e-box.dk -- "Memory is like an orgasm. It's a lot better if you don't have to fake it." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Sep 27 11:58:21 2001 Delivered-To: freebsd-java@freebsd.org Received: from calliope.cs.brandeis.edu (calliope.cs.brandeis.edu [129.64.3.189]) by hub.freebsd.org (Postfix) with ESMTP id B820A37B405 for ; Thu, 27 Sep 2001 11:58:18 -0700 (PDT) Received: from localhost (meshko@localhost) by calliope.cs.brandeis.edu (8.9.3/8.9.3) with ESMTP id OAA13574; Thu, 27 Sep 2001 14:57:55 -0400 Date: Thu, 27 Sep 2001 14:57:55 -0400 (EDT) From: Mikhail Kruk To: =?ISO-8859-1?B?U/hyZW4gTmVpZ2FhcmQ=?= Cc: Subject: Re: where is the "native" in the jdk122 native port? In-Reply-To: <7712018301.20010927205453@e-box.dk> 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 > Actually I have 2 questions in this mail: > > 1) Why is all that Linux stuff needed for a jdk122, when it's not for > the jdk118? For some weird legal reasons jdk1.1.8 could be distributed as binary. 1.2.2 is distributed as source code and you need a working jdk1.2 in order to build it. So first you have to install Linux jdk1.2 (which is distributed in binary form) > 2) Should I install Linux binary support? Is it fast (as fast as > Linux, and as fast as native FreeBSD)? Is it stable? Yes, you should definitely install Linux binary compatilibity. It is quite stable and in many cases faster than Linux itself. I regularly run Linux Netscape Communicator and Star Office using Linux compatilibity. Besides you won't need it to actually use jdk once you are finished with the build process. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Sep 27 13:32: 3 2001 Delivered-To: freebsd-java@freebsd.org Received: from fe030.worldonline.dk (fe030.worldonline.dk [212.54.64.197]) by hub.freebsd.org (Postfix) with SMTP id 3399737B410 for ; Thu, 27 Sep 2001 13:32:01 -0700 (PDT) Received: (qmail 29609 invoked by uid 0); 27 Sep 2001 20:31:59 -0000 Received: from 213.237.13.224.adsl.hc.worldonline.dk (HELO NEIGAARD?MOB) (213.237.13.224) by fe030.worldonline.dk with SMTP; 27 Sep 2001 20:31:59 -0000 Date: Thu, 27 Sep 2001 22:33:21 +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: <8017926056.20010927223321@e-box.dk> To: Mikhail Kruk Cc: freebsd-java@FreeBSD.ORG Subject: Re[2]: where is the "native" in the jdk122 native port? In-Reply-To: References: 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 Thursday, September 27, 2001, 8:57:55 PM, Mikhail wrote: MK> For some weird legal reasons jdk1.1.8 could be distributed as binary. MK> 1.2.2 is distributed as source code and you need a working jdk1.2 in order MK> to build it. So first you have to install Linux jdk1.2 (which is MK> distributed in binary form) Ok - Thanks for clearing tis up for me :) Does this mean that I can uninstall something after the complete install? MK> Yes, you should definitely install Linux binary compatilibity. It is quite MK> stable and in many cases faster than Linux itself. I regularly run Linux MK> Netscape Communicator and Star Office using Linux compatilibity. MK> Besides you won't need it to actually use jdk once you are finished with MK> the build process. Ok - How do I installe Linux binary compatilibity then? Best regards Søren Neigaard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Sep 27 14: 4:35 2001 Delivered-To: freebsd-java@freebsd.org Received: from itouch.co.nz (itouch.co.nz [203.99.66.188]) by hub.freebsd.org (Postfix) with ESMTP id 6C97337B420 for ; Thu, 27 Sep 2001 14:04:29 -0700 (PDT) Received: from jonc.itouch ([192.168.2.21]) by itouch.co.nz with esmtp (Exim 3.33 #1) id 15miKY-000OVq-00; Fri, 28 Sep 2001 09:04:26 +1200 Received: (from jonc@localhost) by jonc.itouch (8.11.6/8.11.6) id f8RL4QS56699; Fri, 28 Sep 2001 09:04:26 +1200 (NZST) (envelope-from jonc) Date: Fri, 28 Sep 2001 09:04:26 +1200 From: Jonathan Chen To: =?iso-8859-1?Q?S=F8ren_Neigaard?= Cc: freebsd-java@freebsd.org Subject: Re: where is the "native" in the jdk122 native port? Message-ID: <20010928090426.A56503@jonc.itouch> References: <8017926056.20010927223321@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: <8017926056.20010927223321@e-box.dk>; from neigaard@e-box.dk on Thu, Sep 27, 2001 at 10:33:21PM +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 Thu, Sep 27, 2001 at 10:33:21PM +0200, Søren Neigaard wrote: > Thursday, September 27, 2001, 8:57:55 PM, Mikhail wrote: > > MK> For some weird legal reasons jdk1.1.8 could be distributed as binary. > MK> 1.2.2 is distributed as source code and you need a working jdk1.2 in order > MK> to build it. So first you have to install Linux jdk1.2 (which is > MK> distributed in binary form) > Ok - Thanks for clearing tis up for me :) Does this mean that I can > uninstall something after the complete install? > After you've built your native JDK 1.1.2, you can quite safely remove the Linux-JDK as well as your Linux-base. -- Jonathan Chen ---------------------------------------------------------------------- Experience is a hard teacher because she gives the test first, the lesson afterwards To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Sep 28 13:42: 8 2001 Delivered-To: freebsd-java@freebsd.org Received: from sonic.kks.net (sonic.kks.net [213.161.0.18]) by hub.freebsd.org (Postfix) with ESMTP id 9370E37B40B for ; Fri, 28 Sep 2001 13:42:02 -0700 (PDT) Received: from voyager.kksonline.com (5-51.ro.cable.kks.net [213.161.5.51]) by sonic.kks.net (Postfix) with ESMTP id 3D71ABF for ; Fri, 28 Sep 2001 22:42:12 +0200 (CEST) Message-Id: <5.0.2.1.0.20010928221925.032f0138@164.8.8.5> X-Sender: rozmanal@164.8.8.5 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Fri, 28 Sep 2001 22:31:06 +0200 To: freeBSD-Java From: Aleksander Rozman - Andy Subject: Problem compiling on FreeBSD 4.4 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed 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 sorry to post this message here, but I am having problems compiling this thing under FreeBSD 4.4. I just reinstalled FreeBSD (upgrade to 4.4) just in hope this thing will work, since I have application that I need to run on my server. I am trying to install with help from /usr/ports/java/jdk13, I DL all necessary files, but still it doesn't work. Here is list of files I DL: bsd-jdk131-patches-4.tar.gz j2sdk-1_3_1_01-linux-i386.bin j2sdk-1_3_1-src.tar.gz Ok thing started compiling OK, but is stoped at some point. Here is error report. I included little longer piece since you might needed it. =================================== Rebuilding ../../../build/bsd-i386/lib/i386/libjsound.so because of ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/Utilities.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerThread.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceMixer.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerClip.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerGroupLine.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSourceLine.o ... /usr/bin/gcc -O -pipe -W -Wall -Wno-unused -Wno-parentheses -Di386 -DARCH='"i386"' -DSOLARIS2 -DRELEASE='"1.3.1-internal"' -DFULL_VERSION='"1.3.1-internal-root-010925-23:02"' -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -D_LITTLE_ENDIAN -DLOGGING -I. -I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders -I../../../src/solaris/javavm/export -I../../../src/share/javavm/export -I../../../src/share/native/common -I../../../src/solaris/native/common -I../../../src/share/native/javax/sound -I../../../src/solaris/native/javax/sound -DSVR4 -DSOLARIS -DX_PLATFORM=X_SOLARIS -I/usr/X11R6/include -I../../../src/share/native/com/sun/media/sound -I../../../src/share/native/com/sun/media/sound/engine -DX_PLATFORM=X_SOLARIS -DJAVA_SOUND -DJAVA_THREAD -L../../../build/bsd-i386/lib/i386 -Wl,-E -L/lib/sparc -lc -shared -mimpure-text -o ../../../build/bsd-i386/lib/i386/libjsound.so ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/Utilities.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerThread.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceMixer.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerClip.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerGroupLine.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSourceLine.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleInputDevice.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleInputDeviceProvider.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleOutputDevice.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleOutputDeviceProvider.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceSoundbank.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerMidiChannel.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/AbstractPlayer.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSequencer.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSynth.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiInDevice.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiInDeviceProvider.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiOutDevice.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiOutDeviceProvider.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/DriverTools.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenAudioCaptureStreams.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenAudioStreams.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenOutput.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenPatch.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenReverb.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSample.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSeq.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSetup.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSong.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSynth.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSynthFilters.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSynthInterp2.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/NewNewLZSS.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SampleTools.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SMOD_Volume_Scaler.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/X_API.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/X_Decompress.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/X_IMA.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenFiltersReverb.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenInterp2Reverb.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSoundFiles.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS.o ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS_Capture.o -ljava -L../../../build/bsd-i386/lib/i386 -lverify -L../../../build/bsd-i386/lib/i386/classic -ljvm Installing ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.MidiDeviceProvider Installing ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.MidiFileWriter Installing ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.MidiFileReader Installing ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.SoundbankReader Installing ../../../build/bsd-i386/classes/META-INF/services/javax.sound.sampled.spi.AudioFileWriter Installing ../../../build/bsd-i386/classes/META-INF/services/javax.sound.sampled.spi.AudioFileReader gmake[3]: *** No rule to make target `../../../build/bsd-i386/classes/META-INF/services/javax.sound.sampled.spi.FormatConversionProvider', needed by `copy-files'. Stop. gmake[3]: Leaving directory `/usr/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound' gmake[2]: *** [optimized] Error 2 gmake[2]: Leaving directory `/usr/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk13/work/j2sdk1.3.1/make/javax' gmake: *** [all] Error 1 *** Error code 2 Stop in /usr/ports/java/jdk13. *** Error code 1 Stop in /usr/ports/java/jdk13. *** Error code 1 Stop in /usr/ports/java/jdk13. atechnet# atechnet# exit ============ I know that this is probably not the right conference to discuss this, so please contact me off-list. Thanks to everybody willing to help. Andy P.S.: I wouldn't even mail on this conference if I didn't need Java 1.3. I am working on application that will connect to server, which will reside on FreeBSD. P.S.S.: If someone has already compiled version (full) of Java 1.3 sdk, I would be thankful, since I probbaly won't get this thing to compile.... ************************************************************************** * Aleksander Rozman - Andy * Fandoms: E2:EA, SAABer, Trekkie, Earthie * * andy@kksonline.com * Sentinel, BH 90210, True's Trooper, * * andy@atechnet.dhs.org * Heller's Angel, Questie, Legacy, PO5, * * Maribor, Slovenia (Europe) * Profiler, Buffy (Slayerete), Pretender * * ICQ-UIC: 4911125 ********************************************* * PGP key available * http://www.atechnet.dhs.org/~andy/ * ************************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Sep 29 14:56: 8 2001 Delivered-To: freebsd-java@freebsd.org Received: from heinz.jollem.com (c104187.upc-c.chello.nl [212.187.104.187]) by hub.freebsd.org (Postfix) with ESMTP id CEF9637B40C for ; Sat, 29 Sep 2001 14:56:00 -0700 (PDT) Received: (from ernst@localhost) by heinz.jollem.com (8.11.3/8.11.4) id f8TLsKP19739; Sat, 29 Sep 2001 23:54:20 +0200 (CEST) (envelope-from ernst) Date: Sat, 29 Sep 2001 23:54:20 +0200 From: Ernst de Haan To: Aleksander Rozman - Andy Cc: freeBSD-Java Subject: Re: Problem compiling on FreeBSD 4.4 Message-ID: <20010929235420.A19728@c104187.upc-c.chello.nl> References: <5.0.2.1.0.20010928221925.032f0138@164.8.8.5> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.2.1.0.20010928221925.032f0138@164.8.8.5>; from andy@kksonline.com on Fri, Sep 28, 2001 at 10:31:06PM +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 Aleksander, Try removing your work directory and then reinstall: # cd /usr/ports/java/jdk13 # mv work work.old # rm -rf work.old & # make install : G'luck... /Ernst Aleksander Rozman - Andy wrote: > > Hi ! > > I am sorry to post this message here, but I am having problems compiling > this thing under FreeBSD 4.4. > I just reinstalled FreeBSD (upgrade to 4.4) just in hope this thing will > work, since I have application that I need to run on my server. > I am trying to install with help from /usr/ports/java/jdk13, I DL all > necessary files, but still it doesn't work. Here is list of files I DL: > bsd-jdk131-patches-4.tar.gz > j2sdk-1_3_1_01-linux-i386.bin > j2sdk-1_3_1-src.tar.gz > > Ok thing started compiling OK, but is stoped at some point. Here is error > report. I included little longer piece since you might needed it. > > =================================== > > Rebuilding ../../../build/bsd-i386/lib/i386/libjsound.so because of > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/Utilities.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerThread.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceMixer.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerClip.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerGroupLine.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSourceLine.o ... > /usr/bin/gcc -O -pipe -W -Wall -Wno-unused -Wno-parentheses -Di386 > -DARCH='"i386"' -DSOLARIS2 -DRELEASE='"1.3.1-internal"' > -DFULL_VERSION='"1.3.1-internal-root-010925-23:02"' -D_LARGEFILE64_SOURCE > -D_GNU_SOURCE -D_REENTRANT -D_LITTLE_ENDIAN -DLOGGING -I. > -I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders > -I../../../src/solaris/javavm/export -I../../../src/share/javavm/export > -I../../../src/share/native/common -I../../../src/solaris/native/common > -I../../../src/share/native/javax/sound > -I../../../src/solaris/native/javax/sound -DSVR4 -DSOLARIS > -DX_PLATFORM=X_SOLARIS -I/usr/X11R6/include > -I../../../src/share/native/com/sun/media/sound > -I../../../src/share/native/com/sun/media/sound/engine > -DX_PLATFORM=X_SOLARIS -DJAVA_SOUND > -DJAVA_THREAD -L../../../build/bsd-i386/lib/i386 -Wl,-E -L/lib/sparc > -lc -shared -mimpure-text -o > ../../../build/bsd-i386/lib/i386/libjsound.so > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/Utilities.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerThread.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceMixer.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerClip.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerGroupLine.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSourceLine.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleInputDevice.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleInputDeviceProvider.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleOutputDevice.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SimpleOutputDeviceProvider.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceSoundbank.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerMidiChannel.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/AbstractPlayer.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSequencer.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSynth.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiInDevice.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiInDeviceProvider.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiOutDevice.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MidiOutDeviceProvider.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/DriverTools.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenAudioCaptureStreams.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenAudioStreams.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenOutput.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenPatch.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenReverb.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSample.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSeq.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSetup.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSong.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSynth.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSynthFilters.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSynthInterp2.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/NewNewLZSS.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SampleTools.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/SMOD_Volume_Scaler.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/X_API.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/X_Decompress.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/X_IMA.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenFiltersReverb.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenInterp2Reverb.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/GenSoundFiles.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS.o > ../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS_Capture.o > -ljava -L../../../build/bsd-i386/lib/i386 -lverify > -L../../../build/bsd-i386/lib/i386/classic -ljvm > Installing > ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.MidiDeviceProvider > Installing > ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.MidiFileWriter > Installing > ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.MidiFileReader > Installing > ../../../build/bsd-i386/classes/META-INF/services/javax.sound.midi.spi.SoundbankReader > Installing > ../../../build/bsd-i386/classes/META-INF/services/javax.sound.sampled.spi.AudioFileWriter > Installing > ../../../build/bsd-i386/classes/META-INF/services/javax.sound.sampled.spi.AudioFileReader > gmake[3]: *** No rule to make target > `../../../build/bsd-i386/classes/META-INF/services/javax.sound.sampled.spi.FormatConversionProvider', > needed by `copy-files'. Stop. > gmake[3]: Leaving directory > `/usr/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound' > gmake[2]: *** [optimized] Error 2 > gmake[2]: Leaving directory > `/usr/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound' > gmake[1]: *** [all] Error 1 > gmake[1]: Leaving directory `/usr/ports/java/jdk13/work/j2sdk1.3.1/make/javax' > gmake: *** [all] Error 1 > *** Error code 2 > > Stop in /usr/ports/java/jdk13. > *** Error code 1 > > Stop in /usr/ports/java/jdk13. > *** Error code 1 > > Stop in /usr/ports/java/jdk13. > atechnet# atechnet# exit > > ============ > > I know that this is probably not the right conference to discuss this, so > please contact me off-list. > > Thanks to everybody willing to help. > Andy > > P.S.: I wouldn't even mail on this conference if I didn't need Java 1.3. I > am working on application that will connect to server, which will reside > on FreeBSD. > > P.S.S.: If someone has already compiled version (full) of Java 1.3 sdk, I > would be thankful, since I probbaly won't get this thing to compile.... > > > > > > ************************************************************************** > * Aleksander Rozman - Andy * Fandoms: E2:EA, SAABer, Trekkie, Earthie * > * andy@kksonline.com * Sentinel, BH 90210, True's Trooper, * > * andy@atechnet.dhs.org * Heller's Angel, Questie, Legacy, PO5, * > * Maribor, Slovenia (Europe) * Profiler, Buffy (Slayerete), Pretender * > * ICQ-UIC: 4911125 ********************************************* > * PGP key available * http://www.atechnet.dhs.org/~andy/ * > ************************************************************************** > > > 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