From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 09:49:09 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EDE716A4CE for ; Sun, 8 Feb 2004 09:49:09 -0800 (PST) Received: from host7.globalnameservers.com (host7.globalnameservers.com [209.239.34.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 447A043D1D for ; Sun, 8 Feb 2004 09:49:09 -0800 (PST) (envelope-from drc7257@cs.rit.edu) Received: from cs.rit.edu (roc-66-67-196-34.rochester.rr.com [66.67.196.34]) i18Hn8hu009986 for ; Sun, 8 Feb 2004 12:49:08 -0500 Message-ID: <40267815.5000508@cs.rit.edu> Date: Sun, 08 Feb 2004 12:55:33 -0500 From: "Daniel R. Curran" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6b) Gecko/20031210 Thunderbird/0.4 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: JNI Share Library Issue X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2004 17:49:09 -0000 I am trying to learn how to use JNI and I started with the Java JNI tutorial and was quickly lead around the web by google trying to figure out how to construct a proper shared library. I have searched and have not found anything suggesting information different than what I am doing. I am trying to simply get the HelloWorld demo to work. Some basic info: java -version java version "1.3.1_10" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_10-b03) Classic VM (build 1.3.1_10-b03, green threads, nojit) file libhello.so libhello.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (FreeBSD), not stripped The commands I use to create and run the java program are: javac HelloWorld.java javah -jni HelloWorld cc -fPIC -Wall -c HelloWorldImp.c -I/usr/local/linux-sun-jdk1.3.1/include -I/usr/local/linux-sun-jdk1.3.1/include/linux ld -Bshareable -fPIC -o libhello.so HelloWorldImp.o export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD java HelloWorld Everything is working fine until I get to the java HelloWorld call, which results in the following runtime exception: Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/home/dan/programming/jni/libhello.so: /usr/home/dan/programming/jni/libhello.so: ELF file OS ABI invalid at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1414) at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1338) at java.lang.Runtime.loadLibrary0(Runtime.java:744) at java.lang.System.loadLibrary(System.java:815) at HelloWorld.(HelloWorld.java:5) I thought that I was doing everything correctly, but I must not be. Does anyone have any idea as to how I can get this to work? Thanks, Dan Curran From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 10:20:26 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E40AC16A4CE for ; Sun, 8 Feb 2004 10:20:26 -0800 (PST) Received: from limicola.its.uu.se (limicola.its.uu.se [130.238.7.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13CEC43D1D for ; Sun, 8 Feb 2004 10:20:26 -0800 (PST) (envelope-from yuri@irfu.se) Received: by limicola.its.uu.se (Postfix, from userid 205) id 88F8E5B02B; Sun, 8 Feb 2004 19:20:24 +0100 (MEZ) Received: from limicola.its.uu.se(127.0.0.1) by limicola.its.uu.se via virus-scan id s2185; Sun, 8 Feb 04 19:20:16 +0100 Received: from irfu.se (sol.irfu.se [130.238.30.6]) by limicola.its.uu.se (Postfix) with SMTP id 2B66A5B81B; Sun, 8 Feb 2004 19:20:16 +0100 (MEZ) Received: from irfu.se by irfu.se (SMI-8.6/SMI-SVR4) id TAA21541; Sun, 8 Feb 2004 19:20:27 +0100 Message-ID: <40267E19.9040605@irfu.se> Date: Sun, 08 Feb 2004 19:21:13 +0100 From: Yuri Khotyaintsev Organization: Swedish Inst. of Space Physics User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; uk-UA; rv:1.6) Gecko/20040113 X-Accept-Language: uk-UA, uk, ru, sv MIME-Version: 1.0 To: "Daniel R. Curran" References: <40267815.5000508@cs.rit.edu> In-Reply-To: <40267815.5000508@cs.rit.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: JNI Share Library Issue X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2004 18:20:27 -0000 You cannot load a native FreeBSD library into Linux JDK. You have to use a native JDK with this library, or install linux_devtools port and compile a Linux shared library. Best, Yuri Daniel R. Curran wrote: > I am trying to learn how to use JNI and I started with the Java JNI > tutorial and was > quickly lead around the web by google trying to figure out how to > construct a proper shared library. I have searched and have not found > anything suggesting information different than what I am doing. > > I am trying to simply get the HelloWorld demo to work. > > Some basic info: > java -version > java version "1.3.1_10" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_10-b03) > Classic VM (build 1.3.1_10-b03, green threads, nojit) > > file libhello.so > libhello.so: ELF 32-bit LSB shared object, Intel 80386, version 1 > (FreeBSD), not stripped > > The commands I use to create and run the java program are: > javac HelloWorld.java > javah -jni HelloWorld > cc -fPIC -Wall -c HelloWorldImp.c > -I/usr/local/linux-sun-jdk1.3.1/include > -I/usr/local/linux-sun-jdk1.3.1/include/linux > ld -Bshareable -fPIC -o libhello.so HelloWorldImp.o > export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD > java HelloWorld > > Everything is working fine until I get to the java HelloWorld call, > which results in the following runtime exception: > > Exception in thread "main" java.lang.UnsatisfiedLinkError: > /usr/home/dan/programming/jni/libhello.so: > /usr/home/dan/programming/jni/libhello.so: ELF file OS ABI invalid > at java.lang.ClassLoader$NativeLibrary.load(Native Method) > at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1414) > at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1338) > at java.lang.Runtime.loadLibrary0(Runtime.java:744) > at java.lang.System.loadLibrary(System.java:815) > at HelloWorld.(HelloWorld.java:5) > > I thought that I was doing everything correctly, but I must not be. Does > anyone have any idea as to how I can get this to work? > > Thanks, > Dan Curran > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > > -- Yuri Khotyaintsev, PhD Swedish Institute of Space Physics, http://www.cluster.irfu.se/yuri Uppsala Division (IRF-U) http://ovt.irfu.se From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 12:49:49 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57A9F16A4CE for ; Sun, 8 Feb 2004 12:49:49 -0800 (PST) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3060843D1D for ; Sun, 8 Feb 2004 12:49:49 -0800 (PST) (envelope-from jasc@gmx.net) Received: from snoopy.katzien.de (isdn216-184.rz.uni-karlsruhe.de [129.13.216.184]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 1ApvsB-0001AL-00; Sun, 08 Feb 2004 21:49:48 +0100 Received: from jan by snoopy.katzien.de with local (Exim 3.36 #1 (Debian)) id 1Apvqr-0001F1-00 for ; Sun, 08 Feb 2004 21:48:25 +0100 Date: Sun, 8 Feb 2004 21:48:24 +0100 From: Jan Schulz To: freebsd-java@freebsd.org Message-ID: <20040208204824.GA4739@katzien.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.5.1+cvs20040105i Sender: Jan Schulz Subject: Common Java Packaging X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2004 20:49:49 -0000 Hallo, Gentoo, JPackage, Debian and RHUG/Naoko have created a page to find common tools and policy for packaging java apps under Linux. I just found out about FreeBSD Java project and would like to invite you to join in. Have a look at http://java.debian.net/index.php/CommonJavaPackaging. I have added some information about your project to the wiki (just two links to the relvant pages). Please comment on the available Pages on the wiki. Unfortunatelly there isn't a ML yet. It would be great if we could put together a policy, and the tools to implement them, even across OS borders. Nice greetings, Jan From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 15:46:04 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8697116A4CE for ; Sun, 8 Feb 2004 15:46:04 -0800 (PST) Received: from mxfep02.bredband.com (mxfep02.bredband.com [195.54.107.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AC3143D1D for ; Sun, 8 Feb 2004 15:45:59 -0800 (PST) (envelope-from peter.schuller@infidyne.com) Received: from scode.mine.nu ([213.113.222.172] [213.113.222.172]) by mxfep02.bredband.com with ESMTP id <20040208234558.QJEF25449.mxfep02.bredband.com@scode.mine.nu>; Mon, 9 Feb 2004 00:45:58 +0100 Received: from localhost (localhost [127.0.0.1]) by scode.mine.nu (Postfix) with ESMTP id: 48:21 +0100 (CET) From: Peter Schuller To: freebsd-java@freebsd.org Date: Mon, 9 Feb 2004 00:48:21 +0100 User-Agent: KMail/1.6 References: <000301c3edda$9d080db0$e501a8c0@NOTEBOOK1200> In-Reply-To: <000301c3edda$9d080db0$e501a8c0@NOTEBOOK1200> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200402090048.21403.peter.schuller@infidyne.com> cc: Steffen Hartmann Subject: Re: mod_jk2 errors X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2004 23:46:04 -0000 > http://lists.freebsd.org/pipermail/freebsd-java/2003-May/000218.htmlDid > you solve it? I have the same problem... The URL was not pasted correctly, so it's difficult to answer the question :) -- / Peter Schuller, InfiDyne Technologies HB PGP userID: 0xE9758B7D or 'Peter Schuller ' Key retrieval: Send an E-Mail to getpgpkey@scode.org E-Mail: peter.schuller@infidyne.com Web: http://www.scode.org From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 20:54:27 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3209E16A4CF for ; Sun, 8 Feb 2004 20:54:27 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 17E9A43D1D for ; Sun, 8 Feb 2004 20:54:27 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 40904 invoked by uid 1252); 9 Feb 2004 04:54:27 -0000 Date: 8 Feb 2004 23:54:26 -0500 Date: Sun, 8 Feb 2004 23:54:26 -0500 From: Adam Weinberger To: openoffice@freebsd.org, java@freebsd.org Message-ID: <20040209045426.GB3365@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i Subject: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 04:54:27 -0000 I found that by rolling jdk14 back to jdk-1.4.2p6_1, openoffice-1.1 builds fine. With jdk-1.4.2p6_3, it aborted, and a regcomp process went on to eat cpu cycles and memory until the computer fell over. Dunno if this helps at all, but I thought I'd put the info out there. # Adam -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 21:26:54 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BF0916A4CF for ; Sun, 8 Feb 2004 21:26:54 -0800 (PST) Received: from ongs.co.jp (ns.ongs.co.jp [202.216.232.58]) by mx1.FreeBSD.org (Postfix) with SMTP id 5CF6843D1F for ; Sun, 8 Feb 2004 21:26:53 -0800 (PST) (envelope-from daichi@freebsd.org) Received: (qmail 39805 invoked from network); 9 Feb 2004 05:06:14 -0000 Received: from unknown (HELO parancell.ongs.co.jp) (202.216.232.62) by ns.ongs.co.jp with SMTP; 9 Feb 2004 05:06:14 -0000 Date: Mon, 9 Feb 2004 14:27:18 +0900 From: daichi To: Adam Weinberger Message-Id: <20040209142718.5f63e81b.daichi@freebsd.org> In-Reply-To: <20040209045426.GB3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> Organization: FreeBSD Project X-Mailer: Sylpheed version 0.9.9 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: java@freebsd.org cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 05:26:54 -0000 How version of FreeBSD do you use? > I found that by rolling jdk14 back to jdk-1.4.2p6_1, openoffice-1.1 > builds fine. > > With jdk-1.4.2p6_3, it aborted, and a regcomp process went on to eat cpu > cycles and memory until the computer fell over. > > Dunno if this helps at all, but I thought I'd put the info out there. > > # Adam > > > -- > Adam Weinberger > adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net > http://www.vectors.cx -- Daichi GOTO, http://people.freebsd.org/~daichi From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 21:37:12 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDDE316A4CE for ; Sun, 8 Feb 2004 21:37:12 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 8AA9243D31 for ; Sun, 8 Feb 2004 21:37:12 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 47997 invoked by uid 1252); 9 Feb 2004 05:37:12 -0000 Date: 9 Feb 2004 00:37:12 -0500 Date: Mon, 9 Feb 2004 00:37:12 -0500 From: Adam Weinberger To: daichi Message-ID: <20040209053712.GC3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040209142718.5f63e81b.daichi@freebsd.org> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 05:37:12 -0000 This build is on -current from the last couple days. # Adam >> (02.09.2004 @ 0027 PST): daichi said, in 0.5K: << > How version of FreeBSD do you use? > > > I found that by rolling jdk14 back to jdk-1.4.2p6_1, openoffice-1.1 > > builds fine. > > > > With jdk-1.4.2p6_3, it aborted, and a regcomp process went on to eat cpu > > cycles and memory until the computer fell over. > > > > Dunno if this helps at all, but I thought I'd put the info out there. > > > > # Adam > > > > > > -- > > Adam Weinberger > > adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net > > http://www.vectors.cx > > -- > Daichi GOTO, http://people.freebsd.org/~daichi >> end of "Re: the openoffice build vm abort -- kluge solution" from daichi << -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 21:44:09 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CD1F16A4D0 for ; Sun, 8 Feb 2004 21:44:09 -0800 (PST) Received: from ongs.co.jp (ns.ongs.co.jp [202.216.232.58]) by mx1.FreeBSD.org (Postfix) with SMTP id 3EEA543D39 for ; Sun, 8 Feb 2004 21:44:08 -0800 (PST) (envelope-from daichi@freebsd.org) Received: (qmail 39857 invoked from network); 9 Feb 2004 05:23:29 -0000 Received: from unknown (HELO parancell.ongs.co.jp) (202.216.232.62) by ns.ongs.co.jp with SMTP; 9 Feb 2004 05:23:29 -0000 Date: Mon, 9 Feb 2004 14:44:31 +0900 From: daichi To: Adam Weinberger Message-Id: <20040209144431.59ba0ad4.daichi@freebsd.org> In-Reply-To: <20040209053712.GC3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> Organization: FreeBSD Project X-Mailer: Sylpheed version 0.9.9 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: java@freebsd.org cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 05:44:09 -0000 I think this problem depends on FreeBSD's new scheduler SCHED_ULE. Please rebuild your kernel with FreeBSD's old scheduler SCHED_4BSD and try to build OOo with jdk-1.4.2p6_3 again. > This build is on -current from the last couple days. > > # Adam > > >> (02.09.2004 @ 0027 PST): daichi said, in 0.5K: << > > How version of FreeBSD do you use? > > > > > I found that by rolling jdk14 back to jdk-1.4.2p6_1, openoffice-1.1 > > > builds fine. > > > > > > With jdk-1.4.2p6_3, it aborted, and a regcomp process went on to eat cpu > > > cycles and memory until the computer fell over. > > > > > > Dunno if this helps at all, but I thought I'd put the info out there. -- Daichi GOTO, http://people.freebsd.org/~daichi From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 21:46:31 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14CE716A4D1 for ; Sun, 8 Feb 2004 21:46:31 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id D533F43D31 for ; Sun, 8 Feb 2004 21:46:30 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 49443 invoked by uid 1252); 9 Feb 2004 05:46:30 -0000 Date: 9 Feb 2004 00:46:30 -0500 Date: Mon, 9 Feb 2004 00:46:30 -0500 From: Adam Weinberger To: daichi Message-ID: <20040209054630.GD3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040209144431.59ba0ad4.daichi@freebsd.org> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 05:46:31 -0000 I was using SCHED_4BSD. # Adam >> (02.09.2004 @ 0044 PST): daichi said, in 0.7K: << > I think this problem depends on FreeBSD's new scheduler SCHED_ULE. > Please rebuild your kernel with FreeBSD's old scheduler SCHED_4BSD > and try to build OOo with jdk-1.4.2p6_3 again. > > > This build is on -current from the last couple days. > > > > # Adam > > > > >> (02.09.2004 @ 0027 PST): daichi said, in 0.5K: << > > > How version of FreeBSD do you use? > > > > > > > I found that by rolling jdk14 back to jdk-1.4.2p6_1, openoffice-1.1 > > > > builds fine. > > > > > > > > With jdk-1.4.2p6_3, it aborted, and a regcomp process went on to eat cpu > > > > cycles and memory until the computer fell over. > > > > > > > > Dunno if this helps at all, but I thought I'd put the info out there. > > -- > Daichi GOTO, http://people.freebsd.org/~daichi >> end of "Re: the openoffice build vm abort -- kluge solution" from daichi << -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 21:53:25 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 508E716A4D1 for ; Sun, 8 Feb 2004 21:53:25 -0800 (PST) Received: from ongs.co.jp (ns.ongs.co.jp [202.216.232.58]) by mx1.FreeBSD.org (Postfix) with SMTP id 7843A43D31 for ; Sun, 8 Feb 2004 21:53:24 -0800 (PST) (envelope-from daichi@freebsd.org) Received: (qmail 39938 invoked from network); 9 Feb 2004 05:32:45 -0000 Received: from unknown (HELO parancell.ongs.co.jp) (202.216.232.62) by ns.ongs.co.jp with SMTP; 9 Feb 2004 05:32:45 -0000 Date: Mon, 9 Feb 2004 14:53:50 +0900 From: daichi To: Adam Weinberger Message-Id: <20040209145350.394f5f9f.daichi@freebsd.org> In-Reply-To: <20040209054630.GD3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> Organization: FreeBSD Project X-Mailer: Sylpheed version 0.9.9 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: java@freebsd.org cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 05:53:25 -0000 > I was using SCHED_4BSD. Oh, really? > # Adam uhmmm... At regcomp's idle point, stop it by ^Z and restart by fg. OOo build will be done successfully. Sometimes regcomp gets strange action. But I do not know what causes this problem. -- Daichi GOTO, http://people.freebsd.org/~daichi From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 22:09:30 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8815B16A4D0 for ; Sun, 8 Feb 2004 22:09:30 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 5405D43D1F for ; Sun, 8 Feb 2004 22:09:30 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 53224 invoked by uid 1252); 9 Feb 2004 06:09:30 -0000 Date: 9 Feb 2004 01:09:30 -0500 Date: Mon, 9 Feb 2004 01:09:30 -0500 From: Adam Weinberger To: daichi Message-ID: <20040209060930.GE3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040209145350.394f5f9f.daichi@freebsd.org> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 06:09:30 -0000 >> (02.09.2004 @ 0053 PST): daichi said, in 0.3K: << > > I was using SCHED_4BSD. > > Oh, really? Yup. I haven't used SCHED_ULE yet. I compiled it into my kernel a few hours ago but I haven't installed it yet. > uhmmm... > At regcomp's idle point, stop it by ^Z and restart by fg. > OOo build will be done successfully. > Sometimes regcomp gets strange action. But I do not know > what causes this problem. When it happened earlier, it wouldn't respond to anything. ^Z and ^C were ignored, as was everything except for a kill -9. And, when the installed version (built on my box about 3 months ago or so) was run, soffice.bin would start up and start eating cycles, but wouldn't load even after a couple hours. I haven't tried it against jdk-1.4.2p6_1 yet. # Adam -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 05:15:11 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6763716A4CE for ; Mon, 9 Feb 2004 05:15:11 -0800 (PST) Received: from mail.caraldi.com (caraldi.com [62.212.102.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18A6D43D1F for ; Mon, 9 Feb 2004 05:15:11 -0800 (PST) (envelope-from jbq@anyware-tech.com) Received: from pc61.anyware-tech.com (unknown [217.112.237.100]) by mail.caraldi.com (Postfix) with ESMTP id 7C4882476 for ; Mon, 9 Feb 2004 14:15:09 +0100 (CET) Received: by pc61.anyware-tech.com (Postfix, from userid 502) id EF84718917; Mon, 9 Feb 2004 14:14:55 +0100 (CET) Date: Mon, 9 Feb 2004 14:14:55 +0100 From: Jean-Baptiste Quenot To: freebsd-java@freebsd.org Message-ID: <20040209131453.GA10359@pc61.anyware> Mail-Followup-To: freebsd-java@freebsd.org References: <20040207193932.90856.qmail@web20101.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DocE+STaALJfprDB" Content-Disposition: inline In-Reply-To: <20040207193932.90856.qmail@web20101.mail.yahoo.com> User-Agent: Mutt/1.4.1i Subject: Re: FreeBSD Servlet Development Kit X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 13:15:11 -0000 --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * nil ban: > I am learning java and for that I have use win. I use Sun's > java development kin 1.2 java bean development kit 1.1 and java > servlet development kit 2.0. the java sdk2.0 has one essential tool, > servletrunner for testing simple servlet. My question is is there any > similar sun's java tools in freebsd5 so I can use it for my learning. You may want to take a look at Resin (www/resin3) or Tomcat (www/jakarta-tomcat5), both will be able to run your simple servlet. I haven't checked the Servlet Development Kit's simple servlet runner since years. Please mention the FreeBSD ports you are using for Java development. Regards, --=20 Jean-Baptiste Quenot http://caraldi.com/jbq/ --DocE+STaALJfprDB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFAJ4fN9xx3BCMc9gsRAih+AJ9DBAttefjeXL6ZA/uH5s+14Q4zKgCgpZLO MFDHCxjRjtabt3pzCL71lP4= =3wWY -----END PGP SIGNATURE----- --DocE+STaALJfprDB-- From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 06:46:53 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8915116A4CE for ; Mon, 9 Feb 2004 06:46:53 -0800 (PST) Received: from matrix.gatewaynet.com (matrix.gatewaynet.com [217.19.69.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F4F843D1D for ; Mon, 9 Feb 2004 06:46:48 -0800 (PST) (envelope-from achill@matrix.gatewaynet.com) Received: from matrix.gatewaynet.com (localhost.localdomain [127.0.0.1]) by matrix.gatewaynet.com (8.12.8/8.12.8) with ESMTP id i19Ej2SD012390; Mon, 9 Feb 2004 16:45:02 +0200 Received: from localhost (achill@localhost)i19Ej1Ip012386; Mon, 9 Feb 2004 16:45:01 +0200 Date: Mon, 9 Feb 2004 16:45:01 +0200 (EET) From: Achilleus Mantzios To: Jean-Baptiste Quenot In-Reply-To: <20040209131453.GA10359@pc61.anyware> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-java@freebsd.org Subject: Re: FreeBSD Servlet Development Kit X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 14:46:53 -0000 O kyrios Jean-Baptiste Quenot egrapse stis Feb 9, 2004 : > * nil ban: > > > I am learning java and for that I have use win. I use Sun's > > java development kin 1.2 java bean development kit 1.1 and java > > servlet development kit 2.0. the java sdk2.0 has one essential tool, > > servletrunner for testing simple servlet. My question is is there any > > similar sun's java tools in freebsd5 so I can use it for my learning. > > You may want to take a look at Resin (www/resin3) or Tomcat > (www/jakarta-tomcat5), both will be able to run your simple servlet. I > haven't checked the Servlet Development Kit's simple servlet runner > since years. Please mention the FreeBSD ports you are using for Java > development. Its "run everywhere" after all... With a little effort all pure java classes should load and run without problem on FreeBSD 5.1+ > > Regards, > -- -Achilleus From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 11:01:36 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6898716A4DE for ; Mon, 9 Feb 2004 11:01:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6692C43D1D for ; Mon, 9 Feb 2004 11:01:36 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.10/8.12.10) with ESMTP id i19J1abv083098 for ; Mon, 9 Feb 2004 11:01:36 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i19J1ZA6083092 for freebsd-java@freebsd.org; Mon, 9 Feb 2004 11:01:35 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 9 Feb 2004 11:01:35 -0800 (PST) Message-Id: <200402091901.i19J1ZA6083092@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 19:01:36 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/01/15] java/61407 java jdk14 port aborts making html32dtd o [2004/01/17] java/61506 java OpenOffice 1.1.0-1 port fails to build on 2 problems total. Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/10/18] java/44219 java Update port: textproc/cocoon to 2.0.3 o [2002/10/18] java/44251 java Create stylebook port o [2002/11/04] java/44922 java JVM crash o [2003/07/29] java/55032 java SVr4 emulation interferes with install o [2003/09/24] java/57192 java linux-ibm-java1.4 freeze 5 problems total. From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 11:01:57 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68DA616A4CE for ; Mon, 9 Feb 2004 11:01:57 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FAA143D31 for ; Mon, 9 Feb 2004 11:01:57 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.10/8.12.10) with ESMTP id i19J1vbv083518 for ; Mon, 9 Feb 2004 11:01:57 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i19J1uX3083512 for java@freebsd.org; Mon, 9 Feb 2004 11:01:56 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 9 Feb 2004 11:01:56 -0800 (PST) Message-Id: <200402091901.i19J1uX3083512@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: java@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 19:01:57 -0000 Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2003/09/16] java/56928 java jce-aba port should install to $JAVA_HOME 1 problem total. From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 11:14:12 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F19716A4CF; Mon, 9 Feb 2004 11:14:12 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A4A143D1F; Mon, 9 Feb 2004 11:14:09 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6p3/8.12.6) with ESMTP id i19JE7q3086641; Mon, 9 Feb 2004 21:14:08 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6p3/8.12.6/Submit) id i19JE7mR086638; Mon, 9 Feb 2004 21:14:07 +0200 (EET) (envelope-from never) Date: Mon, 9 Feb 2004 21:14:07 +0200 From: Alexandr Kovalenko To: Adam Weinberger Message-ID: <20040209191407.GA85907@nevermind.kiev.ua> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> <20040209060930.GE3365@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20040209060930.GE3365@toxic.magnesium.net> User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: daichi cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 19:14:12 -0000 Hello, Adam Weinberger! On Mon, Feb 09, 2004 at 01:09:30AM -0500, you wrote: > >> (02.09.2004 @ 0053 PST): daichi said, in 0.3K: << > > > I was using SCHED_4BSD. > > > > Oh, really? > > Yup. I haven't used SCHED_ULE yet. I compiled it into my kernel a few > hours ago but I haven't installed it yet. This problem has nothing to do with SCHED_ULE or regcomp. Just map libc_r to libkse using libmap.conf(5) - everything will go flawlessly. -- NEVE-RIPE, will build world for food Ukrainian FreeBSD User Group http://uafug.org.ua/ From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 14:10:27 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B071F16A4CE; Mon, 9 Feb 2004 14:10:27 -0800 (PST) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D4F343D1F; Mon, 9 Feb 2004 14:10:27 -0800 (PST) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.9p2/8.12.9) with ESMTP id i19MAI7E024871; Mon, 9 Feb 2004 14:10:22 -0800 (PST) (envelope-from truckman@FreeBSD.org) Message-Id: <200402092210.i19MAI7E024871@gw.catspoiler.org> Date: Mon, 9 Feb 2004 14:10:18 -0800 (PST) From: Don Lewis To: adamw@magnesium.net In-Reply-To: <20040209045426.GB3365@toxic.magnesium.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: java@FreeBSD.org cc: openoffice@FreeBSD.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 22:10:27 -0000 On 8 Feb, Adam Weinberger wrote: > I found that by rolling jdk14 back to jdk-1.4.2p6_1, openoffice-1.1 > builds fine. > > With jdk-1.4.2p6_3, it aborted, and a regcomp process went on to eat cpu > cycles and memory until the computer fell over. > > Dunno if this helps at all, but I thought I'd put the info out there. Same thing here with a recent version of -CURRENT (and SCHED_ULE). The build wedged here: setenv CLASSPATH /mnt/usr/ports/editors/openoffice-1.1/work/oo_1.1_src/solver/64 5/unxfbsd.pro/bin/unoil.jar:/mnt/usr/ports/editors/openoffice-1.1/work/oo_1.1_sr c/solver/645/unxfbsd.pro/bin/java_uno.jar:/mnt/usr/ports/editors/openoffice-1.1/ work/oo_1.1_src/solver/645/unxfbsd.pro/bin/ridl.jar:/mnt/usr/ports/editors/openo ffice-1.1/work/oo_1.1_src/solver/645/unxfbsd.pro/bin/sandbox.jar:/mnt/usr/ports/ editors/openoffice-1.1/work/oo_1.1_src/solver/645/unxfbsd.pro/bin/jurt.jar:/mnt/ usr/ports/editors/openoffice-1.1/work/oo_1.1_src/solver/645/unxfbsd.pro/lib:/usr /local/jdk1.4.2/jre/lib/rt.jar:. && setenv LD_LIBRARY_PATH .:/mnt/usr/ports/ editors/openoffice-1.1/work/oo_1.1_src/solenv/unxfbsd.pro/lib:/usr/local/jdk1.4. 2/jre/lib/i386:/usr/local/jdk1.4.2/jre/lib/i386/client:/usr/local/jdk1.4.2/jre/l ib/i386/native_threads:../lib:/mnt/usr/ports/editors/openoffice-1.1/work/oo_1.1_ src/solver/645/unxfbsd.pro/lib:: && \ regcomp -br ../unxfbsd.pro/bin/regcomp.rdb \ -register \ -r ../unxfbsd.pro/bin/setup_services.tmp \ -l com.sun.star.loader.Java2 \ -env:UNO_JAVA_COMPPATH=file:///mnt/usr/ports/editors/ope noffice-1.1/work/oo_1.1_src/solver/645/unxfbsd.pro/bin \ -c vnd.sun.star.expand:\$UNO_JAVA_COMPPATH/java_uno_acce ssbridge.jar # # HotSpot Virtual Machine Error, Internal Error # Please report this error to # freebsd-java@FreeBSD.org mailing list # # Java VM: Java HotSpot(TM) Client VM (1.4.2-p6-dl_06_feb_2004_14_16 mixed mode) # # Error ID: 4F533F4253440E4350500063 # Heap at VM Abort: Heap From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 16:46:09 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D822116A4D1 for ; Mon, 9 Feb 2004 16:46:09 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id A4D6943D2F for ; Mon, 9 Feb 2004 16:46:09 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 90184 invoked by uid 1252); 10 Feb 2004 00:46:09 -0000 Date: 9 Feb 2004 19:46:09 -0500 Date: Mon, 9 Feb 2004 19:46:09 -0500 From: Adam Weinberger To: Alexandr Kovalenko Message-ID: <20040210004609.GO3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> <20040209060930.GE3365@toxic.magnesium.net> <20040209191407.GA85907@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040209191407.GA85907@nevermind.kiev.ua> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: daichi cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2004 00:46:10 -0000 >> (02.09.2004 @ 1414 PST): Alexandr Kovalenko said, in 0.5K: << > Hello, Adam Weinberger! > > On Mon, Feb 09, 2004 at 01:09:30AM -0500, you wrote: > > > >> (02.09.2004 @ 0053 PST): daichi said, in 0.3K: << > > > > I was using SCHED_4BSD. > > > > > > Oh, really? > > > > Yup. I haven't used SCHED_ULE yet. I compiled it into my kernel a few > > hours ago but I haven't installed it yet. > > This problem has nothing to do with SCHED_ULE or regcomp. > Just map libc_r to libkse using libmap.conf(5) - everything will go > flawlessly. >> end of "Re: the openoffice build vm abort -- kluge solution" from Alexandr Kovalenko << I cannot find a thing in /usr/local or /usr/X11R6 that is linked to libc_r. I have mapped libc_r to libkse using libmap.conf(5) anyway, and it still died out. # Adam -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 16:47:54 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D62E16A4CE; Mon, 9 Feb 2004 16:47:54 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2B5A43D1D; Mon, 9 Feb 2004 16:47:53 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6p3/8.12.6) with ESMTP id i1A0lqq3000533; Tue, 10 Feb 2004 02:47:52 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6p3/8.12.6/Submit) id i1A0lqaF000530; Tue, 10 Feb 2004 02:47:52 +0200 (EET) (envelope-from never) Date: Tue, 10 Feb 2004 02:47:52 +0200 From: Alexandr Kovalenko To: Adam Weinberger Message-ID: <20040210004751.GA432@nevermind.kiev.ua> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> <20040209060930.GE3365@toxic.magnesium.net> <20040209191407.GA85907@nevermind.kiev.ua> <20040210004609.GO3365@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20040210004609.GO3365@toxic.magnesium.net> User-Agent: Mutt/1.5.4i cc: java@FreeBSD.org cc: daichi cc: openoffice@FreeBSD.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2004 00:47:54 -0000 Hello, Adam Weinberger! On Mon, Feb 09, 2004 at 07:46:09PM -0500, you wrote: > >> (02.09.2004 @ 1414 PST): Alexandr Kovalenko said, in 0.5K: << > > Hello, Adam Weinberger! > > > > On Mon, Feb 09, 2004 at 01:09:30AM -0500, you wrote: > > > > > >> (02.09.2004 @ 0053 PST): daichi said, in 0.3K: << > > > > > I was using SCHED_4BSD. > > > > > > > > Oh, really? > > > > > > Yup. I haven't used SCHED_ULE yet. I compiled it into my kernel a few > > > hours ago but I haven't installed it yet. > > > > This problem has nothing to do with SCHED_ULE or regcomp. > > Just map libc_r to libkse using libmap.conf(5) - everything will go > > flawlessly. > >> end of "Re: the openoffice build vm abort -- kluge solution" from Alexandr Kovalenko << > > I cannot find a thing in /usr/local or /usr/X11R6 that is linked to > libc_r. > > I have mapped libc_r to libkse using libmap.conf(5) anyway, and it still > died out. This way? libc_r.so libkse.so libc_r.so5 libkse.so.1 If yes, try reverse mapping. -- NEVE-RIPE, will build world for food Ukrainian FreeBSD User Group http://uafug.org.ua/ From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 16:51:40 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18E5D16A4CF for ; Mon, 9 Feb 2004 16:51:40 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id F3D8043D2F for ; Mon, 9 Feb 2004 16:51:39 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 91145 invoked by uid 1252); 10 Feb 2004 00:51:39 -0000 Date: 9 Feb 2004 19:51:39 -0500 Date: Mon, 9 Feb 2004 19:51:39 -0500 From: Adam Weinberger To: Alexandr Kovalenko Message-ID: <20040210005139.GQ3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> <20040209060930.GE3365@toxic.magnesium.net> <20040209191407.GA85907@nevermind.kiev.ua> <20040210004609.GO3365@toxic.magnesium.net> <20040210004751.GA432@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040210004751.GA432@nevermind.kiev.ua> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: java@FreeBSD.org cc: daichi cc: openoffice@FreeBSD.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2004 00:51:40 -0000 >> (02.09.2004 @ 1947 PST): Alexandr Kovalenko said, in 1.1K: << > Hello, Adam Weinberger! > > On Mon, Feb 09, 2004 at 07:46:09PM -0500, you wrote: > > > >> (02.09.2004 @ 1414 PST): Alexandr Kovalenko said, in 0.5K: << > > > Hello, Adam Weinberger! > > > > > > On Mon, Feb 09, 2004 at 01:09:30AM -0500, you wrote: > > > > > > > >> (02.09.2004 @ 0053 PST): daichi said, in 0.3K: << > > > > > > I was using SCHED_4BSD. > > > > > > > > > > Oh, really? > > > > > > > > Yup. I haven't used SCHED_ULE yet. I compiled it into my kernel a few > > > > hours ago but I haven't installed it yet. > > > > > > This problem has nothing to do with SCHED_ULE or regcomp. > > > Just map libc_r to libkse using libmap.conf(5) - everything will go > > > flawlessly. > > >> end of "Re: the openoffice build vm abort -- kluge solution" from Alexandr Kovalenko << > > > > I cannot find a thing in /usr/local or /usr/X11R6 that is linked to > > libc_r. > > > > I have mapped libc_r to libkse using libmap.conf(5) anyway, and it still > > died out. > > This way? > > libc_r.so libkse.so > libc_r.so5 libkse.so.1 > > If yes, try reverse mapping. >> end of "Re: the openoffice build vm abort -- kluge solution" from Alexandr Kovalenko << Nope. I can try it the other way around... libc_r.so.5 libkse.so.1 libc_r.so libkse.so # Adam -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 08:00:35 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF4E516A4CE for ; Tue, 10 Feb 2004 08:00:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A07F043D1D for ; Tue, 10 Feb 2004 08:00:35 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i1AG0Zbv087156 for ; Tue, 10 Feb 2004 08:00:35 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i1AG0ZO8087155; Tue, 10 Feb 2004 08:00:35 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 10 Feb 2004 08:00:35 -0800 (PST) Resent-Message-Id: <200402101600.i1AG0ZO8087155@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jose Hidalgo Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96CAE16A4CE for ; Tue, 10 Feb 2004 07:59:18 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9293943D1D for ; Tue, 10 Feb 2004 07:59:18 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i1AFx872071445 for ; Tue, 10 Feb 2004 07:59:08 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i1AFx8rf071443; Tue, 10 Feb 2004 07:59:08 -0800 (PST) (envelope-from nobody) Message-Id: <200402101559.i1AFx8rf071443@www.freebsd.org> Date: Tue, 10 Feb 2004 07:59:08 -0800 (PST) From: Jose Hidalgo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: java/62647: jdk14 port problem, linux module X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2004 16:00:36 -0000 >Number: 62647 >Category: java >Synopsis: jdk14 port problem, linux module >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 10 08:00:35 PST 2004 >Closed-Date: >Last-Modified: >Originator: Jose Hidalgo >Release: 4.8-RELEASE-p13 >Organization: Hostarica >Environment: FreeBSD xxx.xxxxx.xxx 4.8-RELEASE-p13 FreeBSD 4.8-RELEASE-p13 #6: Wed Oct 8 14:52:54 CST 2003 root@xxx.xxxxx.xxx:/usr/obj/usr/src/sys/WSC i386 >Description: Trying to install this port: /usr/ports/java/jdk14 | JDK1.4.2 via make install it was failing in the sanity check, complaining about the bootstrap version, it wasn't loading or verifying the linux module: linux.ko >How-To-Repeat: maybe unloading the linux.ko module, and trying to install this port >Fix: (cd /modules ; kldload linux.ko) & My opinion: the 'sanity check' must load the module if it is not already loaded >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 23:42:39 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2922816A4CE; Tue, 10 Feb 2004 23:42:39 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.7.103.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id C12E343D1D; Tue, 10 Feb 2004 23:42:38 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.30; FreeBSD) id 1Aqp0v-000Ekx-NT; Wed, 11 Feb 2004 09:42:29 +0200 Date: Wed, 11 Feb 2004 09:42:29 +0200 From: Sheldon Hearn To: Alexandr Kovalenko Message-ID: <20040211074229.GZ29980@starjuice.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> <20040209060930.GE3365@toxic.magnesium.net> <20040209191407.GA85907@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040209191407.GA85907@nevermind.kiev.ua> User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: daichi cc: Adam Weinberger cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 07:42:39 -0000 On (2004/02/09 21:14), Alexandr Kovalenko wrote: > This problem has nothing to do with SCHED_ULE or regcomp. > Just map libc_r to libkse using libmap.conf(5) - everything will go > flawlessly. Except that you won't be able to start (at least) tomcat-4.1.29 with debugging enabled. Ciao, Sheldon. From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 23:44:47 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D5216A4CE for ; Tue, 10 Feb 2004 23:44:47 -0800 (PST) Received: from smtp3.euronet.nl (smtp3.euronet.nl [194.134.35.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A5EC43D1D for ; Tue, 10 Feb 2004 23:44:47 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from localhost.invalid (zaphod.euronet.nl [194.134.168.213]) by smtp3.euronet.nl (Postfix) with ESMTP id 3E81B3A150 for ; Wed, 11 Feb 2004 08:44:46 +0100 (MET) From: Ernst de Haan To: java@FreeBSD.org Date: Wed, 11 Feb 2004 08:44:45 +0100 User-Agent: KMail/1.6 X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200402110844.45017.znerd@FreeBSD.org> Subject: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 07:44:47 -0000 The official J2SDK 1.5.0 beta 1 has been released. The port java/linux-sun-jdk15 has just been updated. Home page: http://java.sun.com/j2se/1.5.0/ J2SE 1.5 in a Nutshell: http://java.sun.com/developer/technicalArticles/releases/j2se15/ Download: http://java.sun.com/j2se/1.5.0/download.jsp Release notes: http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html Documentation: http://java.sun.com/j2se/1.5.0/docs/index.html Discussion at JavaLobby site: http://www.javalobby.org/thread.jspa?forumID=61&threadID=11143 Port on FreshPorts: http://freshports.org/java/linux-sun-jdk15/ Ernst From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 23:59:42 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80C8316A4CE for ; Tue, 10 Feb 2004 23:59:42 -0800 (PST) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C02243D31 for ; Tue, 10 Feb 2004 23:59:42 -0800 (PST) (envelope-from adamw@magnesium.net) Received: (qmail 96587 invoked by uid 1252); 11 Feb 2004 07:59:42 -0000 Date: 11 Feb 2004 02:59:42 -0500 Date: Wed, 11 Feb 2004 02:59:42 -0500 From: Adam Weinberger To: Sheldon Hearn Message-ID: <20040211075942.GG3365@toxic.magnesium.net> References: <20040209045426.GB3365@toxic.magnesium.net> <20040209142718.5f63e81b.daichi@freebsd.org> <20040209053712.GC3365@toxic.magnesium.net> <20040209144431.59ba0ad4.daichi@freebsd.org> <20040209054630.GD3365@toxic.magnesium.net> <20040209145350.394f5f9f.daichi@freebsd.org> <20040209060930.GE3365@toxic.magnesium.net> <20040209191407.GA85907@nevermind.kiev.ua> <20040211074229.GZ29980@starjuice.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040211074229.GZ29980@starjuice.net> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: java@freebsd.org cc: Alexandr Kovalenko cc: daichi cc: openoffice@freebsd.org Subject: Re: the openoffice build vm abort -- kluge solution X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 07:59:42 -0000 >> (02.11.2004 @ 0242 PST): Sheldon Hearn said, in 0.3K: << > On (2004/02/09 21:14), Alexandr Kovalenko wrote: > > > This problem has nothing to do with SCHED_ULE or regcomp. > > Just map libc_r to libkse using libmap.conf(5) - everything will go > > flawlessly. > > Except that you won't be able to start (at least) tomcat-4.1.29 with > debugging enabled. > > Ciao, > Sheldon. >> end of "Re: the openoffice build vm abort -- kluge solution" from Sheldon Hearn << Seriously, guys. I've built openoffice succesfully and it runs perfectly if you just take the hard reference to -lc_r out of files/patch-config_office and replace it with -lpthread. I fail to see why this fix has not been attractive to the openoffice folks... # Adam -- Adam Weinberger adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net http://www.vectors.cx From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 00:05:53 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 414BC16A4CE; Wed, 11 Feb 2004 00:05:53 -0800 (PST) Received: from matrix.gatewaynet.com (matrix.gatewaynet.com [217.19.69.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB16343D1F; Wed, 11 Feb 2004 00:05:51 -0800 (PST) (envelope-from achill@matrix.gatewaynet.com) Received: from matrix.gatewaynet.com (localhost.localdomain [127.0.0.1]) by matrix.gatewaynet.com (8.12.8/8.12.8) with ESMTP id i1B84GSD017556; Wed, 11 Feb 2004 10:04:16 +0200 Received: from localhost (achill@localhost)i1B84GnT017552; Wed, 11 Feb 2004 10:04:16 +0200 Date: Wed, 11 Feb 2004 10:04:16 +0200 (EET) From: Achilleus Mantzios To: Ernst de Haan In-Reply-To: <200402110844.45017.znerd@FreeBSD.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: java@freebsd.org Subject: Re: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 08:05:53 -0000 Any plans for native? O kyrios Ernst de Haan egrapse stis Feb 11, 2004 : > The official J2SDK 1.5.0 beta 1 has been released. The port > java/linux-sun-jdk15 has just been updated. > > Home page: > http://java.sun.com/j2se/1.5.0/ > > J2SE 1.5 in a Nutshell: > http://java.sun.com/developer/technicalArticles/releases/j2se15/ > > Download: > http://java.sun.com/j2se/1.5.0/download.jsp > > Release notes: > http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html > > Documentation: > http://java.sun.com/j2se/1.5.0/docs/index.html > > Discussion at JavaLobby site: > http://www.javalobby.org/thread.jspa?forumID=61&threadID=11143 > > Port on FreshPorts: > http://freshports.org/java/linux-sun-jdk15/ > > Ernst > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > -- -Achilleus From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 00:13:46 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 157C816A4CE; Wed, 11 Feb 2004 00:13:46 -0800 (PST) Received: from smtp0.euronet.nl (smtp0.euronet.nl [194.134.35.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCD7F43D1D; Wed, 11 Feb 2004 00:13:45 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from localhost.invalid (zaphod.euronet.nl [194.134.168.213]) by smtp0.euronet.nl (Postfix) with ESMTP id 4708724701; Wed, 11 Feb 2004 09:13:44 +0100 (MET) From: Ernst de Haan To: Achilleus Mantzios Date: Wed, 11 Feb 2004 09:13:44 +0100 User-Agent: KMail/1.6 References: In-Reply-To: X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200402110913.44689.znerd@FreeBSD.org> cc: java@freebsd.org cc: Greg Lewis cc: Alexey Zelkin Subject: Re: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 08:13:46 -0000 Achilleus, Not as far as I know. Greg and Alexey should be able to answer that question, though... Ernst On Wednesday 11 February 2004 09:04, Achilleus Mantzios wrote: > Any plans for native? > > O kyrios Ernst de Haan egrapse stis Feb 11, 2004 : > > The official J2SDK 1.5.0 beta 1 has been released. The port > > java/linux-sun-jdk15 has just been updated. > > > > Home page: > > http://java.sun.com/j2se/1.5.0/ > > > > J2SE 1.5 in a Nutshell: > > http://java.sun.com/developer/technicalArticles/releases/j2se15/ > > > > Download: > > http://java.sun.com/j2se/1.5.0/download.jsp > > > > Release notes: > > http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html > > > > Documentation: > > http://java.sun.com/j2se/1.5.0/docs/index.html > > > > Discussion at JavaLobby site: > > http://www.javalobby.org/thread.jspa?forumID=61&threadID=11143 > > > > Port on FreshPorts: > > http://freshports.org/java/linux-sun-jdk15/ > > > > Ernst > > _______________________________________________ > > freebsd-java@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-java > > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 00:33:25 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA06916A4CE; Wed, 11 Feb 2004 00:33:25 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id B82E743D1D; Wed, 11 Feb 2004 00:33:25 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.205] (helo=mgr5.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1AqpoC-0002Zk-02; Wed, 11 Feb 2004 01:33:24 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr5.xmission.com with esmtp (Exim 4.30) id 1AqpoA-0005Sp-S3; Wed, 11 Feb 2004 01:33:23 -0700 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i1B8XJN2009715; Wed, 11 Feb 2004 01:33:20 -0700 (MST) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.10/8.12.10/Submit) id i1B8WWQ2009713; Wed, 11 Feb 2004 01:32:32 -0700 (MST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 11 Feb 2004 01:31:37 -0700 From: Greg Lewis To: Ernst de Haan Message-ID: <20040211083137.GA9651@misty.eyesbeyond.com> References: <200402110913.44689.znerd@FreeBSD.org> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <200402110913.44689.znerd@FreeBSD.org> User-Agent: Mutt/1.4.1i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr5.xmission.com X-Spam-Level: X-Spam-Status: No, hits=-0.9 required=8.0 tests=BAYES_30 autolearn=no version=2.63 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 3.1 (built Mon Jan 26 13:00:24 MST 2004) X-SA-Exim-Scanned: Yes cc: java@freebsd.org cc: Greg Lewis cc: Alexey Zelkin Subject: Re: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 08:33:25 -0000 On Wed, Feb 11, 2004 at 09:13:44AM +0100, Ernst de Haan wrote: > Achilleus, > > Not as far as I know. Greg and Alexey should be able to answer that > question, though... > > Ernst > > On Wednesday 11 February 2004 09:04, Achilleus Mantzios wrote: > > Any plans for native? Of course. No time frame though. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 01:03:49 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A054416A4CE; Wed, 11 Feb 2004 01:03:49 -0800 (PST) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C35F43D1D; Wed, 11 Feb 2004 01:03:49 -0800 (PST) (envelope-from lev@FreeBSD.org) Received: from lev (81.211.110.86.adsl-spb.net.rol.ru [81.211.110.86]) (authenticated bits=0) by ftp.translate.ru (8.12.9/8.12.9) with ESMTP id i1B93Wuj077130; Wed, 11 Feb 2004 12:03:33 +0300 (MSK) (envelope-from lev@FreeBSD.org) Date: Wed, 11 Feb 2004 12:05:21 +0300 From: Lev Serebryakov X-Mailer: The Bat! (v1.62r) Personal Organization: Home X-Priority: 3 (Normal) Message-ID: <1307435414.20040211120521@serebryakov.spb.ru> To: Greg Lewis In-Reply-To: <20040211083137.GA9651@misty.eyesbeyond.com> References: <200402110913.44689.znerd@FreeBSD.org> <20040211083137.GA9651@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org cc: Alexey Zelkin Subject: Re[2]: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lev Serebryakov List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 09:03:49 -0000 Hello, Greg! Wednesday, February 11, 2004, 11:31:37 AM, you wrote: >> On Wednesday 11 February 2004 09:04, Achilleus Mantzios wrote: >> > Any plans for native? GL> Of course. No time frame though. Is here any chances, that Sun include your patches into official JDK sources and, my be, hire you*? You are doing really great work, but in current situation Java on FreeBSD always will be behind history, because you don't have early access to new sources, need to re-invent patches from old JDKs for changed new ones, etc, etc, etc :( [*] You == you personally and Alexey here. -- Lev Serebryakov From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 03:14:46 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9612716A4CE; Wed, 11 Feb 2004 03:14:46 -0800 (PST) Received: from matrix.gatewaynet.com (matrix.gatewaynet.com [217.19.69.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A187843D1D; Wed, 11 Feb 2004 03:14:45 -0800 (PST) (envelope-from achill@matrix.gatewaynet.com) Received: from matrix.gatewaynet.com (localhost.localdomain [127.0.0.1]) by matrix.gatewaynet.com (8.12.8/8.12.8) with ESMTP id i1BBD5SD017862; Wed, 11 Feb 2004 13:13:05 +0200 Received: from localhost (achill@localhost)i1BBD4Xn017858; Wed, 11 Feb 2004 13:13:04 +0200 Date: Wed, 11 Feb 2004 13:13:04 +0200 (EET) From: Achilleus Mantzios To: Greg Lewis In-Reply-To: <20040211083137.GA9651@misty.eyesbeyond.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: java@freebsd.org cc: Greg Lewis cc: Alexey Zelkin Subject: Re: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 11:14:46 -0000 O kyrios Greg Lewis egrapse stis Feb 11, 2004 : > On Wed, Feb 11, 2004 at 09:13:44AM +0100, Ernst de Haan wrote: > > Achilleus, > > > > Not as far as I know. Greg and Alexey should be able to answer that > > question, though... > > > > Ernst > > > > On Wednesday 11 February 2004 09:04, Achilleus Mantzios wrote: > > > Any plans for native? > > Of course. No time frame though. GREAT!!!! > > -- -Achilleus From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 05:46:57 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEFE516A4CE; Wed, 11 Feb 2004 05:46:57 -0800 (PST) Received: from phantom.cris.net (phantom.cris.net [212.110.130.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6931B43D31; Wed, 11 Feb 2004 05:46:54 -0800 (PST) (envelope-from phantom@FreeBSD.org.ua) Received: from phantom.cris.net (phantom@localhost [127.0.0.1]) by phantom.cris.net (8.12.10/8.12.10) with ESMTP id i1BDlpoh052221; Wed, 11 Feb 2004 15:47:51 +0200 (EET) (envelope-from phantom@FreeBSD.org.ua) Received: (from phantom@localhost) by phantom.cris.net (8.12.10/8.12.10/Submit) id i1BDlpEZ052220; Wed, 11 Feb 2004 15:47:51 +0200 (EET) (envelope-from phantom) Date: Wed, 11 Feb 2004 15:47:50 +0200 From: Alexey Zelkin To: Ernst de Haan Message-ID: <20040211134750.GA51737@phantom.cris.net> References: <200402110913.44689.znerd@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200402110913.44689.znerd@FreeBSD.org> X-Operating-System: FreeBSD 4.9-STABLE i386 User-Agent: Mutt/1.5.5.1i cc: java@FreeBSD.org cc: Greg Lewis Subject: Re: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 13:46:58 -0000 hi, Yep. I even did initial investigation back in December. Too much changes from 1.4, so no time frames yet :( On Wed, Feb 11, 2004 at 09:13:44AM +0100, Ernst de Haan wrote: > Achilleus, > > Not as far as I know. Greg and Alexey should be able to answer that > question, though... > > Ernst > > On Wednesday 11 February 2004 09:04, Achilleus Mantzios wrote: > > Any plans for native? > > > > O kyrios Ernst de Haan egrapse stis Feb 11, 2004 : > > > The official J2SDK 1.5.0 beta 1 has been released. The port > > > java/linux-sun-jdk15 has just been updated. > > > > > > Home page: > > > http://java.sun.com/j2se/1.5.0/ > > > > > > J2SE 1.5 in a Nutshell: > > > http://java.sun.com/developer/technicalArticles/releases/j2se15/ > > > > > > Download: > > > http://java.sun.com/j2se/1.5.0/download.jsp > > > > > > Release notes: > > > http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html > > > > > > Documentation: > > > http://java.sun.com/j2se/1.5.0/docs/index.html > > > > > > Discussion at JavaLobby site: > > > http://www.javalobby.org/thread.jspa?forumID=61&threadID=11143 > > > > > > Port on FreshPorts: > > > http://freshports.org/java/linux-sun-jdk15/ > > > > > > Ernst > > > _______________________________________________ > > > freebsd-java@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-java > > > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" -- /* Alexey Zelkin && Independent Contractor */ /* phantom(at)FreeBSD.org && http://www.FreeBSD.org/java */ /* phantom(at)cris.net && http://www.FreeBSD.org.ua/ */ From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 05:55:41 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EAB316A4CE; Wed, 11 Feb 2004 05:55:41 -0800 (PST) Received: from phantom.cris.net (phantom.cris.net [212.110.130.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8AA943D31; Wed, 11 Feb 2004 05:55:36 -0800 (PST) (envelope-from phantom@FreeBSD.org.ua) Received: from phantom.cris.net (phantom@localhost [127.0.0.1]) by phantom.cris.net (8.12.10/8.12.10) with ESMTP id i1BDu5oh052372; Wed, 11 Feb 2004 15:56:05 +0200 (EET) (envelope-from phantom@FreeBSD.org.ua) Received: (from phantom@localhost) by phantom.cris.net (8.12.10/8.12.10/Submit) id i1BDu5ba052371; Wed, 11 Feb 2004 15:56:05 +0200 (EET) (envelope-from phantom) Date: Wed, 11 Feb 2004 15:56:05 +0200 From: Alexey Zelkin To: Lev Serebryakov Message-ID: <20040211135605.GB51737@phantom.cris.net> References: <200402110913.44689.znerd@FreeBSD.org> <20040211083137.GA9651@misty.eyesbeyond.com> <1307435414.20040211120521@serebryakov.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1307435414.20040211120521@serebryakov.spb.ru> X-Operating-System: FreeBSD 4.9-STABLE i386 User-Agent: Mutt/1.5.5.1i cc: java@FreeBSD.org Subject: Re: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 13:55:41 -0000 hi, On Wed, Feb 11, 2004 at 12:05:21PM +0300, Lev Serebryakov wrote: > Hello, Greg! > Wednesday, February 11, 2004, 11:31:37 AM, you wrote: > > >> On Wednesday 11 February 2004 09:04, Achilleus Mantzios wrote: > >> > Any plans for native? > GL> Of course. No time frame though. > Is here any chances, that Sun include your patches into official JDK > sources and, my be, hire you*? You are doing really great work, but No idea. > in current situation Java on FreeBSD always will be behind history, > because you don't have early access to new sources, need to Actually we have access to new sources via partner license hold by FreeBSD Foundation. But these sources can't be freely distributable therefore we mostly stuck with sources code Sun released under SCSL. Currently we are in progress of receving approval for 1.4.2 binary release. Then we complete with it I will think about doing releases from partner sources (more up-to-date, but binary only). > re-invent patches from old JDKs for changed new ones, etc, etc, etc > :( :-( > [*] You == you personally and Alexey here. -- /* Alexey Zelkin && Independent Contractor */ /* phantom(at)FreeBSD.org && http://www.FreeBSD.org/java */ /* phantom(at)cris.net && http://www.FreeBSD.org.ua/ */ From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 06:29:02 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B81C716A4CF for ; Wed, 11 Feb 2004 06:29:02 -0800 (PST) Received: from iota.root-servers.ch (iota.root-servers.ch [193.41.193.195]) by mx1.FreeBSD.org (Postfix) with SMTP id D993E43D2F for ; Wed, 11 Feb 2004 06:29:01 -0800 (PST) (envelope-from gabriel_ambuehl@buz.ch) Received: (qmail 82690 invoked from network); 11 Feb 2004 14:28:58 -0000 Received: from 217-162-134-28.dclient.hispeed.ch (HELO ga) (217.162.134.28) by 0 with SMTP; 11 Feb 2004 14:28:58 -0000 Date: Wed, 11 Feb 2004 15:31:09 +0100 From: Gabriel Ambuehl Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <1828192471.20040211153109@buz.ch> To: Alexey Zelkin In-Reply-To: <20040211135605.GB51737@phantom.cris.net> References: <200402110913.44689.znerd@FreeBSD.org> <20040211083137.GA9651@misty.eyesbeyond.com> <1307435414.20040211120521@serebryakov.spb.ru> <20040211135605.GB51737@phantom.cris.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org Subject: Re[2]: Official J2SDK 1.5.0beta1 released X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: gabriel_ambuehl@buz.ch List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 14:29:02 -0000 Hello Alexey, Wednesday, February 11, 2004, 2:56:05 PM, you wrote: > Currently we are in progress of receving approval for 1.4.2 > binary release. Which means Java is fully "supported" (well obviously not by Sun, but people can't go on telling you it should be used on Linux instead) under FreeBSD, right? I'd love this (well coming from C++, I'd obviously love Generics very much too ;-)! Keep up the good work! Best regards, Gabriel From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 09:35:22 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45E6B16A4CF for ; Wed, 11 Feb 2004 09:35:22 -0800 (PST) Received: from web14524.mail.yahoo.com (web14524.mail.yahoo.com [216.136.224.53]) by mx1.FreeBSD.org (Postfix) with SMTP id 2936C43D2F for ; Wed, 11 Feb 2004 09:35:22 -0800 (PST) (envelope-from fjbp2@yahoo.com) Message-ID: <20040211173522.10854.qmail@web14524.mail.yahoo.com> Received: from [155.54.12.100] by web14524.mail.yahoo.com via HTTP; Wed, 11 Feb 2004 09:35:22 PST Date: Wed, 11 Feb 2004 09:35:22 -0800 (PST) From: Francisco-Jose "Bernabé-Pellicer" To: freebsd-config@freebsd.org, freebsd-java@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: ant & FreeBSD5.1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 17:35:22 -0000 Hi everybody, why when I try to execute 'ant' in FreeBSD I get the following output?: /usr/libexec/ld-elf.so.1: Shared object "libc.so.4" not found The version that I'm using is: apache-ant-1.6.0 Should I try an older version? Cheers, ===== ____________________________________________________________________ Francisco José Bernabé Pellicer Home Address: Plaza de la Universidad N°2 4-J 30001 Murcia Spain Phone: +34 968 24 00 77 Mobile: +34 616 20 22 07 Office : +34 968 36 39 95 __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 10:06:08 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A6B316A4CE for ; Wed, 11 Feb 2004 10:06:08 -0800 (PST) Received: from web14521.mail.yahoo.com (web14521.mail.yahoo.com [216.136.224.50]) by mx1.FreeBSD.org (Postfix) with SMTP id 0024543D1D for ; Wed, 11 Feb 2004 10:06:07 -0800 (PST) (envelope-from fjbp2@yahoo.com) Message-ID: <20040211180607.29126.qmail@web14521.mail.yahoo.com> Received: from [155.54.12.100] by web14521.mail.yahoo.com via HTTP; Wed, 11 Feb 2004 10:06:07 PST Date: Wed, 11 Feb 2004 10:06:07 -0800 (PST) From: Francisco-Jose "Bernabé-Pellicer" To: freebsd-java@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: j2sdk1.4.2_03 in FreeBSD5.1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 18:06:08 -0000 Hi everybody, I'd like to install j2sdk1.4.2_03 in a computer with FreeBSD5.1 I the get the following output when I try it: Unpacking... Checksumming... 0 0 Extracting... ELF binary type "0" not known. ./install.sfx.14697: 1: Syntax error: "(" unexpected Done. Did anybody get a similar problem? should I use an older version? Cheers ===== ____________________________________________________________________ Francisco José Bernabé Pellicer Home Address: Plaza de la Universidad N°2 4-J 30001 Murcia Spain Phone: +34 968 24 00 77 Mobile: +34 616 20 22 07 Office : +34 968 36 39 95 __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 10:27:20 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C4CF16A4CE for ; Wed, 11 Feb 2004 10:27:20 -0800 (PST) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33B8443D1F for ; Wed, 11 Feb 2004 10:27:20 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 20726 invoked from network); 11 Feb 2004 18:27:19 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 11 Feb 2004 18:27:19 -0000 Received: from 10.50.40.205 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.10/8.12.10) with ESMTP id i1BIRCM2094970; Wed, 11 Feb 2004 13:27:16 -0500 (EST) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Francisco-Jose "BernabX-Pellicer" , freebsd-config@freebsd.org, freebsd-java@freebsd.org Date: Wed, 11 Feb 2004 13:12:02 -0500 User-Agent: KMail/1.5.4 References: <20040211173522.10854.qmail@web14524.mail.yahoo.com> In-Reply-To: <20040211173522.10854.qmail@web14524.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200402111312.02485.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Subject: Re: ant & FreeBSD5.1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 18:27:20 -0000 On Wednesday 11 February 2004 12:35 pm, Francisco-Jose "BernabX-Pellicer" wrote: > Hi everybody, > > why when I try to execute 'ant' in FreeBSD I get the > following output?: > > /usr/libexec/ld-elf.so.1: Shared object "libc.so.4" > not found > > The version that I'm using is: apache-ant-1.6.0 > > Should I try an older version? You installed a version built for a 4.x FreeBSD release. You can either install the compat4 distribution or install the 5.1 apache-ant package. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 12:52:36 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6512316A4CE for ; Wed, 11 Feb 2004 12:52:36 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54AB143D2F for ; Wed, 11 Feb 2004 12:52:36 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.203] (helo=mgr3.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1Ar1LX-00049L-02; Wed, 11 Feb 2004 13:52:35 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 4.30) id 1Ar1LW-0002MS-R8; Wed, 11 Feb 2004 13:52:34 -0700 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i1BKqVN2016831; Wed, 11 Feb 2004 13:52:31 -0700 (MST) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.10/8.12.10/Submit) id i1BKqT6I016830; Wed, 11 Feb 2004 13:52:29 -0700 (MST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 11 Feb 2004 13:52:28 -0700 From: Greg Lewis To: Francisco-Jose =?unknown-8bit?Q?Bernab=E9-Pellicer?= Message-ID: <20040211205228.GA16764@misty.eyesbeyond.com> References: <20040211180607.29126.qmail@web14521.mail.yahoo.com> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <20040211180607.29126.qmail@web14521.mail.yahoo.com> User-Agent: Mutt/1.4.1i Content-Type: text/plain; charset=unknown-8bit Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr3.xmission.com X-Spam-Level: X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 3.1 (built Mon Jan 26 13:00:24 MST 2004) X-SA-Exim-Scanned: Yes cc: freebsd-java@freebsd.org Subject: Re: j2sdk1.4.2_03 in FreeBSD5.1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2004 20:52:36 -0000 On Wed, Feb 11, 2004 at 10:06:07AM -0800, Francisco-Jose Bernabé-Pellicer wrote: > Hi everybody, > > I'd like to install j2sdk1.4.2_03 in a computer with > FreeBSD5.1 Please just use the java/linux-sun-jdk14 port. > I the get the following output when I try it: > > Unpacking... > Checksumming... > 0 > 0 > Extracting... > ELF binary type "0" not known. > ./install.sfx.14697: 1: Syntax error: "(" unexpected > Done. Sounds like no Linux emulation module loaded, but I Really advise you use the port instead. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 07:23:20 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DC7B16A4CE for ; Thu, 12 Feb 2004 07:23:20 -0800 (PST) Received: from pegmatite.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1F2B43D31 for ; Thu, 12 Feb 2004 07:23:19 -0800 (PST) (envelope-from freebsd@coal.sentex.ca) Received: by pegmatite.sentex.ca (Postfix, from userid 1001) id A4959171CF; Thu, 12 Feb 2004 10:23:15 -0500 (EST) Date: Thu, 12 Feb 2004 10:23:15 -0500 From: Damian Gerow To: java@freebsd.org Message-ID: <20040212152315.GC56315@sentex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable X-GPG-Key-Id: 0xB841F142 X-GPG-Fingerprint: C7C1 E1D1 EC06 7C86 AF7C 57E6 173D 9CF6 B841 F142 X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . User-Agent: Mutt/1.5.4i Subject: Problems compiling java/jdk14 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2004 15:23:20 -0000 I'm having some troubles trying to compile jdk1.4.2 on a newly installed machine. The weird thing is that I *just* compiled it on another machine without trouble. I hope people don't mind the newbie-ish question... When I try to do a 'make', this is what I see after a fair bit of time: /usr/bin/sed -e 's!debug_util\.o!/usr/ports/java/jdk14/work/control/bu= ild/bsd-i586/tmp/sun/sun.awt/awt/obj/&!g' > /usr/ports/java/jdk14/work/cont= rol/build/bsd-i586/tmp/sun/sun.awt/awt/obj/debug_util.d /usr/bin/gcc -fno-strict-aliasing -fPIC -W -Wall -Wno-unused -Wno-par= entheses -DMLIB_NO_LIBSUNMA -DMOTIF_VERSION=3D2 -Di586 -DAR=3D'"i586"' -DR= ELEASE=3D'"1.4.2-p6"' -DFULL_VERSION=3D'"1.4.2-p6-root_10_feb_2004_20_09"' = -D_GNU_SOURCE -D_READ_SAFE -D_REENTRANT -D_BSD_SOURCE -I. -I/usr/ports/java= /jdk14/work/control/build/bsd-i586/tmp/sun/sun.awt/awt/CClaseaders -I../../= =2E./src/solaris/javavm/export -I../../../src/share/javavm/export -I../../.= =2E/src/share/javavm/include -I../../../src/solaris/javavm/include -I../../= =2E./src/share/native/common -I../../../src/solaris/native/common -I../../.= =2E/src/share/native/sun/awt -I../../../src/solaris/native/sun/awt -I/usr= /X11R6/include -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions -I.= =2E/../../src/solaris/native/sun/awt/font -I../../../src/share/native/sun/= awt/debug -I../../../src/share/native/sun/awt/image -I../../../src/share/na= tive/sun/awt/image/cvutils -I../../../src/share/native/sun/awt/shell -I../.= =2E/../src/share/native/sun/awt/alphacomposite -I../../../src/share/native/= sun/awt/medialib -I../../../src/solaris/native/sun/awt/medialib -I../../../= src/share/native/sun/awt/../java2d -I../../../src/solaris/native/sun/awt/..= /java2d -I../../../src/share/native/sun/awt/../java2d/loops -I../../../src/= share/native/sun/awt/../java2d/pipe -I../../../src/share/native/sun/awt/../= dc/doe -I../../../src/share/native/sun/awt/../dc/path -I../../../src/solari= s/native/sun/awt/../jdga -c -o /usr/ports/java/jdk14/work/control/build/b= sd-i586/tmp/sun/sun.awt/awt/obj/awt_AWTEvent.o ../../../src/solaris/native= /sun/awt/awt_AWTEvent.c In file included from ../../../src/solaris/native/sun/awt/awt_AWTEvent.= c:19: ../../../src/solaris/native/sun/awt/awt_p.h:33:25: Xm/CascadeB.h: No su= ch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:34:25: Xm/DrawingA.h: No su= ch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:35:23: Xm/FileSB.h: No such= file or directory ../../../src/solaris/native/sun/awt/awt_p.h:36:26: Xm/BulletinB.h: No s= uch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:37:21: Xm/Form.h: No such f= ile or directory ../../../src/solaris/native/sun/awt/awt_p.h:38:22: Xm/Frame.h: No such = file or directory ../../../src/solaris/native/sun/awt/awt_p.h:39:22: Xm/Label.h: No such = file or directory ../../../src/solaris/native/sun/awt/awt_p.h:40:22: Xm/PushB.h: No such = file or directory ../../../src/solaris/native/sun/awt/awt_p.h:41:23: Xm/PushBG.h: No such= file or directory ../../../src/solaris/native/sun/awt/awt_p.h:42:26: Xm/RowColumn.h: No s= uch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:43:26: Xm/ScrollBar.h: No s= uch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:44:26: Xm/ScrolledW.h: No s= uch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:45:26: Xm/SelectioB.h: No s= uch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:46:26: Xm/SeparatoG.h: No s= uch file or directory ../../../src/solaris/native/sun/awt/awt_p.h:47:24: Xm/ToggleB.h: No suc= h file or directory ../../../src/solaris/native/sun/awt/awt_p.h:48:22: Xm/TextF.h: No such = file or directory ../../../src/solaris/native/sun/awt/awt_p.h:49:21: Xm/Text.h: No such f= ile or directory ../../../src/solaris/native/sun/awt/awt_p.h:50:21: Xm/List.h: No such f= ile or directory ../../../src/solaris/native/sun/awt/awt_p.h:51:19: Xm/Xm.h: No such fil= e or directory ../../../src/solaris/native/sun/awt/awt_p.h:52:22: Xm/MainW.h: No such = file or directory In file included from ../../../src/solaris/native/sun/awt/awt_p.h:55, from ../../../src/solaris/native/sun/awt/awt_AWTEvent.= c:19: ../../../src/solaris/native/sun/awt/awt_util.h:12:26: Xm/VendorSEP.h: N= o such file or directory ../../../src/solaris/native/sun/awt/awt_util.h:13:25: Xm/VendorSP.h: No= such file or directory In file included from ../../../src/solaris/native/sun/awt/awt_AWTEvent.= c:19: ../../../src/solaris/native/sun/awt/awt_p.h:266: error: syntax error be= fore "getMotifFontList" ../../../src/solaris/native/sun/awt/awt_p.h:266: warning: type defaults= to `int' in declaration of `getMotifFontList' ../../../src/solaris/native/sun/awt/awt_p.h:266: warning: data definiti= on has no type or storage class ../../../src/solaris/native/sun/awt/awt_AWTEvent.c: In function `Java_j= ava_awt_AWTEvent_nativeSetSource': ../../../src/solaris/native/sun/awt/awt_AWTEvent.c:72: warning: cast to= pointer from integer of different size gmake[4]: *** [/usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/su= n/sun.awt/awt/obj/awt_AWTEvent.o] Error 1 gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/a= wt' gmake[3]: *** [optimized] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/a= wt' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. The first time I built the port, I tried with -DMINIMAL, and I thought that might be the problem. But it's not. I can see all the header files on the system I just successfully installed it in under /usr/X11R6/include. On the system that the build's broken on, I only see the include files under /usr/ports/java/jdk14/work/motif/lib/. Help? What do I need to do to get the native JDK installed? I'm at a bit of a loss -- I've done the same things I normally do on systems I install java on, but this one doesn't want to install. Yes, I know that I can just copy all the header files over, I'm just wondering what it is that's caused this. And before anyone suggests, I have completely purged the java section of my ports tree and re-supped it a number of times, to no avail. And I've re-downloaded the JDK a few times, to no avail. From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 10:12:47 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B598116A4CE for ; Thu, 12 Feb 2004 10:12:47 -0800 (PST) Received: from pegmatite.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EEA343D2F for ; Thu, 12 Feb 2004 10:12:47 -0800 (PST) (envelope-from freebsd@coal.sentex.ca) Received: by pegmatite.sentex.ca (Postfix, from userid 1001) id 21D1F171D5; Thu, 12 Feb 2004 13:12:43 -0500 (EST) Date: Thu, 12 Feb 2004 13:12:43 -0500 From: Damian Gerow To: java@freebsd.org Message-ID: <20040212181242.GK56315@sentex.net> References: <20040212152315.GC56315@sentex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <20040212152315.GC56315@sentex.net> X-GPG-Key-Id: 0xB841F142 X-GPG-Fingerprint: C7C1 E1D1 EC06 7C86 AF7C 57E6 173D 9CF6 B841 F142 X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . User-Agent: Mutt/1.5.4i Subject: Re: Problems compiling java/jdk14 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2004 18:12:47 -0000 Thus spake Damian Gerow (freebsd@coal.sentex.ca) [12/02/04 10:23]: > Yes, I know that I can just copy all the header files over, I'm just > wondering what it is that's caused this. Actually, copying them doesn't work. This is what I see now: /usr/bin/gcc -fno-strict-aliasing -fPIC -W -Wall -Wno-unused -Wno-par= entheses -DMLIB_NO_LIBSUNMA -DMOTIF_VERSION=3D2 -Di586 -DAR=3D'"i586"' -DR= ELEASE=3D'"1.4.2-p6"' -DFULL_VERSION=3D'"1.4.2-p6-root_12_feb_2004_10_33"' = -D_GNU_SOURCE -D_READ_SAFE -D_REENTRANT -D_BSD_SOURCE -I. -I/usr/ports/java= /jdk14/work/control/build/bsd-i586/tmp/sun/sun.awt/awt/CClaseaders -I../../= =2E./src/solaris/javavm/export -I../../../src/share/javavm/export -I../../.= =2E/src/share/javavm/include -I../../../src/solaris/javavm/include -I../../= =2E./src/share/native/common -I../../../src/solaris/native/common -I../../.= =2E/src/share/native/sun/awt -I../../../src/solaris/native/sun/awt -I/usr= /X11R6/include -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions -I.= =2E/../../src/solaris/native/sun/awt/font -I../../../src/share/native/sun/= awt/debug -I../../../src/share/native/sun/awt/image -I../../../src/share/na= tive/sun/awt/image/cvutils -I../../../src/share/native/sun/awt/shell -I../.= =2E/../src/share/native/sun/awt/alphacomposite -I../../../src/share/native/= sun/awt/medialib -I../../../src/solaris/native/sun/awt/medialib -I../../../= src/share/native/sun/awt/../java2d -I../../../src/solaris/native/sun/awt/..= /java2d -I../../../src/share/native/sun/awt/../java2d/loops -I../../../src/= share/native/sun/awt/../java2d/pipe -I../../../src/share/native/sun/awt/../= dc/doe -I../../../src/share/native/sun/awt/../dc/path -I../../../src/solari= s/native/sun/awt/../jdga -c -o /usr/ports/java/jdk14/work/control/build/b= sd-i586/tmp/sun/sun.awt/awt/obj/awt_AWTEvent.o ../../../src/solaris/native= /sun/awt/awt_AWTEvent.c In file included from /usr/X11R6/include/Xm/CascadeB.h:19, from ../../../src/solaris/native/sun/awt/awt_p.h:33, from ../../../src/solaris/native/sun/awt/awt_AWTEvent.= c:19: /usr/X11R6/include/Xm/Xm.h:37:26: Xm/XmStrDefs.h: No such file or direc= tory ../../../src/solaris/native/sun/awt/awt_AWTEvent.c: In function `Java_j= ava_awt_AWTEvent_nativeSetSource': ../../../src/solaris/native/sun/awt/awt_AWTEvent.c:72: warning: cast to= pointer from integer of different size gmake[4]: *** [/usr/ports/java/jdk14/work/control/build/bsd-i586/tmp/su= n/sun.awt/awt/obj/awt_AWTEvent.o] Error 1 gmake[4]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/a= wt' gmake[3]: *** [optimized] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun/a= wt' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make/sun' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 12:43:04 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C7D516A4CE for ; Thu, 12 Feb 2004 12:43:04 -0800 (PST) Received: from phantom.cris.net (phantom.cris.net [212.110.130.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8788D43D1F for ; Thu, 12 Feb 2004 12:43:02 -0800 (PST) (envelope-from ml@FreeBSD.org.ua) Received: from phantom.cris.net (ml@localhost [127.0.0.1]) by phantom.cris.net (8.12.10/8.12.10) with ESMTP id i1CKhkoh073214; Thu, 12 Feb 2004 22:43:46 +0200 (EET) (envelope-from ml@FreeBSD.org.ua) Received: (from ml@localhost) by phantom.cris.net (8.12.10/8.12.10/Submit) id i1CKhkiS073213; Thu, 12 Feb 2004 22:43:46 +0200 (EET) (envelope-from ml) Date: Thu, 12 Feb 2004 22:43:45 +0200 From: Alexey Zelkin To: Damian Gerow Message-ID: <20040212204345.GA73183@phantom.cris.net> References: <20040212152315.GC56315@sentex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040212152315.GC56315@sentex.net> X-Operating-System: FreeBSD 4.9-STABLE i386 User-Agent: Mutt/1.5.5.1i cc: java@freebsd.org Subject: Re: Problems compiling java/jdk14 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2004 20:43:04 -0000 On Thu, Feb 12, 2004 at 10:23:15AM -0500, Damian Gerow wrote: > I'm having some troubles trying to compile jdk1.4.2 on a newly installed > machine. The weird thing is that I *just* compiled it on another machine > without trouble. I hope people don't mind the newbie-ish question... [dd] Is open-motif port installed ? From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 13:02:33 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3E2816A4CE for ; Thu, 12 Feb 2004 13:02:33 -0800 (PST) Received: from pegmatite.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA92A43D1D for ; Thu, 12 Feb 2004 13:02:33 -0800 (PST) (envelope-from freebsd@coal.sentex.ca) Received: by pegmatite.sentex.ca (Postfix, from userid 1001) id 18E85171F2; Thu, 12 Feb 2004 16:02:33 -0500 (EST) Date: Thu, 12 Feb 2004 16:02:32 -0500 From: Damian Gerow To: Alexey Zelkin Message-ID: <20040212210232.GA915@sentex.net> References: <20040212152315.GC56315@sentex.net> <20040212204345.GA73183@phantom.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040212204345.GA73183@phantom.cris.net> X-GPG-Key-Id: 0xB841F142 X-GPG-Fingerprint: C7C1 E1D1 EC06 7C86 AF7C 57E6 173D 9CF6 B841 F142 X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . User-Agent: Mutt/1.5.4i cc: java@freebsd.org Subject: Re: Problems compiling java/jdk14 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2004 21:02:33 -0000 Thus spake Alexey Zelkin (phantom@FreeBSD.org.ua) [12/02/04 15:57]: > > I'm having some troubles trying to compile jdk1.4.2 on a newly installed > > machine. The weird thing is that I *just* compiled it on another machine > > without trouble. I hope people don't mind the newbie-ish question... > > [dd] > > Is open-motif port installed ? Gah. I knew it'd be something incredibly simple. Why I didn't notice the make failing on installing open-motif is beyond me. Thanks. Updating to install now. From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 14:05:52 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AF2C16A4CE for ; Thu, 12 Feb 2004 14:05:52 -0800 (PST) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2FF743D2F for ; Thu, 12 Feb 2004 14:05:51 -0800 (PST) (envelope-from gwk@rahn-koltermann.de) Received: from [212.227.126.208] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1ArOxy-0007bR-00 for freebsd-java@freebsd.org; Thu, 12 Feb 2004 23:05:50 +0100 Received: from [217.232.143.127] (helo=[192.168.0.3]) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 1ArOxy-0008LL-00 for freebsd-java@freebsd.org; Thu, 12 Feb 2004 23:05:50 +0100 From: "Georg-W. Koltermann" To: freebsd-java@freebsd.org In-Reply-To: <1074904754.3751.21.camel@localhost.muc.eu.mscsoftware.com> References: <1074901855.3751.16.camel@localhost.muc.eu.mscsoftware.com> <1074904754.3751.21.camel@localhost.muc.eu.mscsoftware.com> Content-Type: text/plain Message-Id: <1076623545.17542.14.camel@localhost.muc.eu.mscsoftware.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Thu, 12 Feb 2004 23:05:46 +0100 Content-Transfer-Encoding: 7bit X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:90bcaad5e51ecc993b2919ba4b74e6dc Subject: Re: [PATCH] plugins aborts with SIG11 whan any applet pops up a dialog window X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2004 22:05:52 -0000 It seems I had to fix this myself. Fortunately the fix was simple enough, see below. Please could someone commit this patch. The testcase was in my previous email, if someone wants to verify. BTW, the installation of the jdk14 port installs a few directories with the wrong permissions: drwx------ 4 root wheel 512 12 Feb 22:53 ./jre/plugin/i386 drwx------ 2 root wheel 512 12 Feb 22:54 ./jre/plugin/i386/ns4 drwx------ 2 root wheel 512 12 Feb 22:54 ./jre/plugin/i386/ns610 -- Regards, Georg. ----------------------------------------------------snip--------------------- --- ../../j2se/src/solaris/native/sun/awt/awt_Component.c.gwk Thu Feb 12 18:43:00 2004 +++ ../../j2se/src/solaris/native/sun/awt/awt_Component.c Thu Feb 12 22:38:46 2004 @@ -1179,7 +1179,7 @@ } XtVaSetValues(to, XmNtraversalOn, True, NULL); } - } else if (from != NULL) { + } else if (from != NULL && to != NULL) { // disable the tree starting from uncommon part to 'from' if (parents_from[index] == parents_to[index]) { if (index == count_from - 1) { From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 01:56:04 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6963E16A4CF for ; Fri, 13 Feb 2004 01:56:04 -0800 (PST) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3620243D1F for ; Fri, 13 Feb 2004 01:56:04 -0800 (PST) (envelope-from gwk@rahn-koltermann.de) Received: from [212.227.126.202] (helo=mrvnet.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Ara3I-0003rM-00 for freebsd-java@freebsd.org; Fri, 13 Feb 2004 10:56:04 +0100 Received: from [172.23.4.141] (helo=config14.kundenserver.de) by mrvnet.kundenserver.de with esmtp (Exim 3.35 #1) id 1Ara3H-00061G-00 for freebsd-java@freebsd.org; Fri, 13 Feb 2004 10:56:03 +0100 Received: from www-data by config14.kundenserver.de with local (Exim 3.35 #1 (Debian)) id 1Ara3G-0002Bc-00 for ; Fri, 13 Feb 2004 10:56:02 +0100 To: From: Message-Id: <27942123$1076665103402c9b0f48bc19.40633427@config14.schlund.de> X-Binford: 6100 (more power) X-Originating-From: 27942123 X-Mailer: Webmail X-Routing: DE X-Received: from config14 by 213.148.149.130 with HTTP id 27942123 for freebsd-java@freebsd.org; Fri, 13 Feb 2004 10:54:02 +0100 Content-Type: text/plain; charset="iso-8859-1" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Priority: 3 Date: Fri, 13 Feb 2004 10:54:02 +0100 X-Provags-ID: kundenserver.de abuse@kundenserver.de ident:@172.23.4.141 Subject: java plugin has no access to cookies in mozilla-1.6 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 09:56:04 -0000 Hi, when I use an applet to access an URL which requires prior login, I get a 500. This is with mozilla-gtk2-1.6_2 built from ports yesterday and jdk1.4.2p6_3. Accessing the same URL from the browser window does give a valid data reply, so I am assuming it is because the applet does not have access to the browser's cookies. It works ok with mozilla-1.5_1,2, so it might as well be a problem with the browser. Is anybody else seeing that problem? -- Regards, Georg. From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 05:53:40 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08E8016A4CF for ; Fri, 13 Feb 2004 05:53:40 -0800 (PST) Received: from vbook.fbsd.ru (asplinux.ru [195.133.213.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id C560143D1D for ; Fri, 13 Feb 2004 05:53:39 -0800 (PST) (envelope-from vova@sw.ru) Received: from localhost ([127.0.0.1]) by vbook.fbsd.ru with esmtp (Exim 4.30; FreeBSD) id 1ArdlG-0000dx-PV for java@freebsd.org; Fri, 13 Feb 2004 16:53:42 +0300 From: "Vladimir B. Grebenschikov" To: java@freebsd.org Content-Type: text/plain Organization: SWsoft Inc. Message-Id: <1076680412.821.49.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Fri, 13 Feb 2004 16:53:42 +0300 Content-Transfer-Encoding: 7bit Subject: jdk-1.4.2p6_1 fonts problem X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 13:53:40 -0000 Hi 1. I have jdk-1.4.2p6_1 installed on fbsd-5.2 $ xset +fp /usr/local/jdk1.4.2/jre/lib/fonts $ /usr/local/jdk1.4.2/jre/bin/ControlPanel Warning: Cannot convert string "-b&h-lucida-medium-r-normal-sans-*-140-*-*-p-*-iso8859-1" to type FontStruct $ I can get rid this warning only by adding line -- LucidaTypewriterRegular.ttf -b&h-lucida-medium-r-normal-sans-0-0-0-0-p-0-iso8859-1 -- to /usr/local/jdk1.4.2/jre/lib/fonts/fonts.dir What is "right" solution for this problem ? 2. Another problem: I do not know how to configure default java fonts, now I have too large characters in X java applications or applets. Example site: http://www.sjpc.org/ssh/ Can anybody advice - how to configure default java fonts ? -- Vladimir B. Grebenschikov SWsoft Inc. From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 06:26:35 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 253C516A4CE for ; Fri, 13 Feb 2004 06:26:35 -0800 (PST) Received: from iacedexch02.mcld.net (loki.mcleodusa.com [216.43.0.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id E023043D1D for ; Fri, 13 Feb 2004 06:26:34 -0800 (PST) IMCEAX400-c=US+3Ba=+20+3Bp=MCLEODUSA+3Bo=ALPHARETTA+3Bdda+3ASMTP=cslater+40intelispan+2Enet+3B@mcleodusa.com) Received: by iacedexch02.mcld.net with Internet Mail Service (5.5.2657.72) id <1JV7P52F>; Fri, 13 Feb 2004 08:25:43 -0600 Received: from HAL9000 ([192.168.57.20]) by inmx1.intelispan.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id Q6FCK4CZ; Fri, 13 Feb 2004 09:25:29 -0500 Message-ID: <000e01c3f23e$05b5f1d0$1439a8c0@hal9000> From: "Slater, Chad" To: freebsd-java@freebsd.org Date: Fri, 13 Feb 2004 08:31:09 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Error compiling JDK 1.4, patch 6 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Slater, Chad" List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 14:26:35 -0000 Guru's o' BSD Java, I beg your help.... How do I fix this error? Compiling ../generated/adfiles/ad_i486_gen.cpp {standard input}: Assembler messages: {standard input}:63816: Warning: end of file not at end of a line; newline inserted g++: Internal compiler error: program cc1plus got fatal signal 9 gmake[3]: *** [ad_i486_gen.o] Error 1 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 _compiler2/jvmg' gmake[2]: *** [the_vm] Error 2 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 _compiler2/jvmg' gmake[1]: *** [jvmg] Error 2 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' gmake: *** [jvmg] Error 2 *** Error code 2 Thanks in advance! -C NOTICE: This electronic mail transmission may contain confidential information and is intended only for the person(s) named. Any use, copying or disclosure by any other person is strictly prohibited. If you have received this transmission in error, please notify the sender via e-mail. From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 06:49:04 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89C8A16A4CE for ; Fri, 13 Feb 2004 06:49:04 -0800 (PST) Received: from limicola.its.uu.se (limicola.its.UU.SE [130.238.7.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA5A43D1D for ; Fri, 13 Feb 2004 06:49:04 -0800 (PST) (envelope-from yuri@irfu.se) Received: by limicola.its.uu.se (Postfix, from userid 205) id 82E984990; Fri, 13 Feb 2004 15:49:00 +0100 (MEZ) Received: from limicola.its.uu.se(127.0.0.1) by limicola.its.uu.se via virus-scan id s2208; Fri, 13 Feb 04 15:47:43 +0100 Received: from irfu.se (sol.irfu.se [130.238.30.6]) by limicola.its.uu.se (Postfix) with SMTP id 903C59826; Fri, 13 Feb 2004 15:47:41 +0100 (MEZ) Received: from irfu.se by irfu.se (SMI-8.6/SMI-SVR4) id PAA02101; Fri, 13 Feb 2004 15:47:55 +0100 Message-ID: <402CE3C7.20004@irfu.se> Date: Fri, 13 Feb 2004 15:48:39 +0100 From: Yuri Khotyaintsev Organization: Swedish Inst. of Space Physics User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; uk-UA; rv:1.6) Gecko/20040113 X-Accept-Language: uk-UA, uk, ru, sv MIME-Version: 1.0 To: "Slater, Chad" References: <000e01c3f23e$05b5f1d0$1439a8c0@hal9000> In-Reply-To: <000e01c3f23e$05b5f1d0$1439a8c0@hal9000> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Error compiling JDK 1.4, patch 6 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 14:49:04 -0000 Try removing optimization CFLAGS in make.conf. I think I had a similar error when trying to compile jdk with -O2. Best, Yuri Slater, Chad wrote: > Guru's o' BSD Java, I beg your help.... > > How do I fix this error? > > Compiling ../generated/adfiles/ad_i486_gen.cpp > {standard input}: Assembler messages: > {standard input}:63816: Warning: end of file not at end of a line; newline > inserted > g++: Internal compiler error: program cc1plus got fatal signal 9 > gmake[3]: *** [ad_i486_gen.o] Error 1 > gmake[3]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 > _compiler2/jvmg' > gmake[2]: *** [the_vm] Error 2 > gmake[2]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 > _compiler2/jvmg' > gmake[1]: *** [jvmg] Error 2 > gmake[1]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' > gmake: *** [jvmg] Error 2 > *** Error code 2 > > > Thanks in advance! > > -C > > > > NOTICE: This electronic mail transmission may contain confidential > information and is intended only for the person(s) named. Any use, copying > or disclosure by any other person is strictly prohibited. If you have > received this transmission in error, please notify the sender via e-mail. > > > > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > > -- Yuri Khotyaintsev, PhD Swedish Institute of Space Physics, http://www.cluster.irfu.se/yuri Uppsala Division (IRF-U) http://ovt.irfu.se From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 09:36:21 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FC9916A4CE for ; Fri, 13 Feb 2004 09:36:21 -0800 (PST) Received: from lmdeliver02.st1.spray.net (lmdeliver02.st1.spray.net [212.78.202.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F14443D2F for ; Fri, 13 Feb 2004 09:36:21 -0800 (PST) (envelope-from markus.svensson2@spray.se) Received: from lmfilto02.st1.spray.net (lmfilto02 [212.78.202.66]) by lmdeliver02.st1.spray.net (Postfix) with ESMTP id DB00A20C30 for ; Fri, 13 Feb 2004 18:36:19 +0100 (MET) Received: from localhost (localhost [127.0.0.1]) by lmfilto02.st1.spray.net (Postfix) with ESMTP id C6F40AD9D for ; Fri, 13 Feb 2004 18:36:19 +0100 (CET) Received: from lmsmtp01.st1.spray.net ([212.78.202.111])port 10024) with ESMTP id 25463-06 for ; Fri, 13 Feb 2004 18:36:19 +0100 (CET) Received: from h173n2c2o1020.bredband.skanova.com (h173n2c2o1020.bredband.skanova.com [213.64.161.173]) by lmsmtp01.st1.spray.net (Postfix) with ESMTP id 4AFE410C3 for ; Fri, 13 Feb 2004 18:36:19 +0100 (CET) From: Markus Svensson To: freebsd-java@freebsd.org Date: Fri, 13 Feb 2004 18:36:17 +0100 User-Agent: KMail/1.6 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200402131836.17766.markus.svensson2@spray.se> X-Virus-Scanned: by amavisd-new at spray.net Subject: Netbeans 3.6Beta runide.sh fails on FreeBSD 5.2R X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 17:36:21 -0000 Hi all! I'm a member of the Netbeans 3.6 Community Acceptance Program (fancy word for bug hunter, I guess). I'm experiencing some issues with the runide.sh launcher script, which I hoped would be resolved by the Netbeans developers. But it appears that it won't be fixed, since fixing the script breaks it from MacOS X and Linux users. Anyone interested, please check out the discussion at http://www.netbeans.org/issues/show_bug.cgi?id=39830 and perhaps somebody can explain to me what why the JDK's on different platforms don't support the same parameters? Thank you. /Markus Svensson From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 10:48:34 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D78B16A4CE for ; Fri, 13 Feb 2004 10:48:34 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0105E43D1F for ; Fri, 13 Feb 2004 10:48:34 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.206] (helo=mgr6.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1AriMb-00013K-02; Fri, 13 Feb 2004 11:48:33 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr6.xmission.com with esmtp (Exim 4.30) id 1AriMX-0000vb-SH; Fri, 13 Feb 2004 11:48:30 -0700 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i1DImLN2000632; Fri, 13 Feb 2004 11:48:27 -0700 (MST) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.10/8.12.10/Submit) id i1DImJvm000631; Fri, 13 Feb 2004 11:48:19 -0700 (MST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Fri, 13 Feb 2004 11:48:19 -0700 From: Greg Lewis To: Markus Svensson Message-ID: <20040213184819.GA438@misty.eyesbeyond.com> References: <200402131836.17766.markus.svensson2@spray.se> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <200402131836.17766.markus.svensson2@spray.se> User-Agent: Mutt/1.4.2i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr6.xmission.com X-Spam-Level: X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 3.1 (built Mon Jan 26 13:00:24 MST 2004) X-SA-Exim-Scanned: Yes cc: freebsd-java@FreeBSD.org Subject: Re: Netbeans 3.6Beta runide.sh fails on FreeBSD 5.2R X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 18:48:34 -0000 On Fri, Feb 13, 2004 at 06:36:17PM +0100, Markus Svensson wrote: > I'm a member of the Netbeans 3.6 Community Acceptance Program (fancy word for > bug hunter, I guess). I'm experiencing some issues with the runide.sh > launcher script, which I hoped would be resolved by the Netbeans developers. > But it appears that it won't be fixed, since fixing the script breaks it from > MacOS X and Linux users. Anyone interested, please check out the discussion > at http://www.netbeans.org/issues/show_bug.cgi?id=39830 and perhaps somebody > can explain to me what why the JDK's on different platforms don't support the > same parameters? I read the bug, and it doesn't look like it has anything to do with the JDKs using different parameters. It looks like it has everything to do with different syntaxes for the expr utility. Here is the issue (from expr(1)): Unless FreeBSD 4.x compatibility is enabled, this version of expr adheres to the POSIX Utility Syntax Guidelines, which require that a leading argument beginning with a minus sign be considered an option to the program. The standard -- syntax may be used to prevent this interpretation. e.g. > expr -J-Xms24m : '-J\(.*\)' expr: illegal option -- J usage: expr [-e] expression However, note the first part of the quote from the man page! So, a possibly solution is for runide.sh to set the EXPR_COMPAT environment variable. Then things will work, e.g.: > env EXPR_COMPAT=1 expr -J-Xms24m : '-J\(.*\)' -Xms24m So, I would suggest adding these two lines to the script: EXPR_COMPAT=1 export EXPR_COMPAT Then it will (hopefully) work on FreeBSD. I will note strongly that its Linux and OSX which are broken in this respect though. FreeBSD is POSIX compliant, they are not. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 11:25:14 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8CF916A4CE for ; Fri, 13 Feb 2004 11:25:14 -0800 (PST) Received: from d7058.upc-d.chello.nl (d7058.upc-d.chello.nl [213.46.7.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5F9643D31 for ; Fri, 13 Feb 2004 11:25:13 -0800 (PST) (envelope-from marc@bowtie.nl) Received: from host10.meck.bowtie.nl (host10.meck.bowtie.nl [192.168.5.10]) i1DJOt0E059246; Fri, 13 Feb 2004 20:24:57 +0100 (CET) (envelope-from marc@bowtie.nl) From: Marc van Kempen To: freebsd-java@freebsd.org Date: Fri, 13 Feb 2004 20:24:54 +0100 User-Agent: KMail/1.6 References: <200402131836.17766.markus.svensson2@spray.se> <20040213184819.GA438@misty.eyesbeyond.com> In-Reply-To: <20040213184819.GA438@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200402132024.54674.marc@bowtie.nl> Subject: Re: Netbeans 3.6Beta runide.sh fails on FreeBSD 5.2R X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 19:25:15 -0000 On Friday 13 February 2004 19:48, Greg Lewis wrote: > On Fri, Feb 13, 2004 at 06:36:17PM +0100, Markus Svensson wrote: > > I'm a member of the Netbeans 3.6 Community Acceptance Program (fancy word > > for bug hunter, I guess). I'm experiencing some issues with the runide.sh > > launcher script, which I hoped would be resolved by the Netbeans > > developers. But it appears that it won't be fixed, since fixing the > > script breaks it from MacOS X and Linux users. Anyone interested, please > > check out the discussion at > > http://www.netbeans.org/issues/show_bug.cgi?id=39830 and perhaps somebody > > can explain to me what why the JDK's on different platforms don't support > > the same parameters? > > I read the bug, and it doesn't look like it has anything to do with the > JDKs using different parameters. It looks like it has everything to do > with different syntaxes for the expr utility. > > Here is the issue (from expr(1)): > > Unless FreeBSD 4.x compatibility is enabled, this version of expr adheres > to the POSIX Utility Syntax Guidelines, which require that a leading > argument beginning with a minus sign be considered an option to the > program. The standard -- syntax may be used to prevent this > interpretation. > > e.g. > > > expr -J-Xms24m : '-J\(.*\)' > > expr: illegal option -- J > usage: expr [-e] expression > > However, note the first part of the quote from the man page! So, a > possibly solution is for runide.sh to set the EXPR_COMPAT environment > > variable. Then things will work, e.g.: > > env EXPR_COMPAT=1 expr -J-Xms24m : '-J\(.*\)' > > -Xms24m > > So, I would suggest adding these two lines to the script: > > EXPR_COMPAT=1 > export EXPR_COMPAT > > Then it will (hopefully) work on FreeBSD. > > I will note strongly that its Linux and OSX which are broken in this > respect though. FreeBSD is POSIX compliant, they are not. Another possible solution, that also works on Mac OSX and Linux is: expr X-J-Xms24m : 'X-J\(.*\)' Regards, Marc. From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 11:45:15 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B18116A4CE for ; Fri, 13 Feb 2004 11:45:15 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A3CE43D2F for ; Fri, 13 Feb 2004 11:45:15 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.204] (helo=mgr4.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1ArjFR-0000GA-02; Fri, 13 Feb 2004 12:45:13 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr4.xmission.com with esmtp (Exim 4.30) id 1ArjFQ-0005n6-RS; Fri, 13 Feb 2004 12:45:13 -0700 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i1DJj8N2001301; Fri, 13 Feb 2004 12:45:09 -0700 (MST) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.10/8.12.10/Submit) id i1DJj6Kc001300; Fri, 13 Feb 2004 12:45:06 -0700 (MST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Fri, 13 Feb 2004 12:45:06 -0700 From: Greg Lewis To: Marc van Kempen Message-ID: <20040213194506.GA1285@misty.eyesbeyond.com> References: <200402131836.17766.markus.svensson2@spray.se> <20040213184819.GA438@misty.eyesbeyond.com> <200402132024.54674.marc@bowtie.nl> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <200402132024.54674.marc@bowtie.nl> User-Agent: Mutt/1.4.2i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr4.xmission.com X-Spam-Level: X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 3.1 (built Mon Jan 26 13:00:24 MST 2004) X-SA-Exim-Scanned: Yes cc: freebsd-java@freebsd.org Subject: Re: Netbeans 3.6Beta runide.sh fails on FreeBSD 5.2R X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 19:45:15 -0000 On Fri, Feb 13, 2004 at 08:24:54PM +0100, Marc van Kempen wrote: > On Friday 13 February 2004 19:48, Greg Lewis wrote: > > So, I would suggest adding these two lines to the script: > > > > EXPR_COMPAT=1 > > export EXPR_COMPAT > > > > Then it will (hopefully) work on FreeBSD. > > > > I will note strongly that its Linux and OSX which are broken in this > > respect though. FreeBSD is POSIX compliant, they are not. > > Another possible solution, that also works on Mac OSX and Linux is: The solution I should suggested should also work on Linux and OSX as they will presumably ignore the EXPR_COMPAT setting. > expr X-J-Xms24m : 'X-J\(.*\)' That would cleaner. I vote for this (assuming I have a vote :). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 12:35:12 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C93416A4CE for ; Fri, 13 Feb 2004 12:35:12 -0800 (PST) Received: from mail.intelispan.net (unknown [208.193.36.37]) by mx1.FreeBSD.org (Postfix) with SMTP id 1FDE543D2F for ; Fri, 13 Feb 2004 12:35:12 -0800 (PST) (envelope-from cslater@intelispan.net) Received: (qmail 649 invoked from network); 13 Feb 2004 20:37:24 -0000 Received: from unknown (HELO inmx1.intelispan.net) (192.168.91.39) by 192.168.91.37 with SMTP; 13 Feb 2004 20:37:24 -0000 Received: by inmx1 with Internet Mail Service (5.5.2653.19) id ; Fri, 13 Feb 2004 15:35:12 -0500 Received: from HAL9000 ([192.168.57.20]) by inmx1.intelispan.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id Q6FCKVKY; Fri, 13 Feb 2004 15:35:09 -0500 From: "Slater, Chad" To: Yuri Khotyaintsev , "Slater, Chad" Message-ID: <001c01c3f271$980e5c10$1439a8c0@hal9000> References: <000e01c3f23e$05b5f1d0$1439a8c0@hal9000> <402CE3C7.20004@irfu.se> Date: Fri, 13 Feb 2004 15:40:18 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: freebsd-java@freebsd.org Subject: Re: Error compiling JDK 1.4, patch 6 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Slater, Chad" List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2004 20:35:12 -0000 Thanks, that fixed my initial problem. Please excuse the multiple questions. I've googled extensively for answers before I post here. I can manage BSD fine, but I'm no developer... trying to learn though ;-) Now I'm getting a different error. gmake[3]: Entering directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 _compiler2/jvmg' Linking launcher... /usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_ compiler2/jvmg/libjvm_g.so: undefined referen ce to `State::MachNodeGenerator(int)' gmake[3]: *** [gamma_g] Error 1 gmake[3]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 _compiler2/jvmg' gmake[2]: *** [the_vm] Error 2 gmake[2]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 _compiler2/jvmg' gmake[1]: *** [jvmg] Error 2 gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' gmake: *** [jvmg] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk14. ----- Original Message ----- From: "Yuri Khotyaintsev" To: "Slater, Chad" Cc: Sent: Friday, February 13, 2004 9:48 AM Subject: Re: Error compiling JDK 1.4, patch 6 Try removing optimization CFLAGS in make.conf. I think I had a similar error when trying to compile jdk with -O2. Best, Yuri Slater, Chad wrote: > Guru's o' BSD Java, I beg your help.... > > How do I fix this error? > > Compiling ../generated/adfiles/ad_i486_gen.cpp > {standard input}: Assembler messages: > {standard input}:63816: Warning: end of file not at end of a line; newline > inserted > g++: Internal compiler error: program cc1plus got fatal signal 9 > gmake[3]: *** [ad_i486_gen.o] Error 1 > gmake[3]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 > _compiler2/jvmg' > gmake[2]: *** [the_vm] Error 2 > gmake[2]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486 > _compiler2/jvmg' > gmake[1]: *** [jvmg] Error 2 > gmake[1]: Leaving directory > `/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp' > gmake: *** [jvmg] Error 2 > *** Error code 2 > > > Thanks in advance! > > -C > > > > NOTICE: This electronic mail transmission may contain confidential > information and is intended only for the person(s) named. Any use, copying > or disclosure by any other person is strictly prohibited. If you have > received this transmission in error, please notify the sender via e-mail. > > > > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > > -- Yuri Khotyaintsev, PhD Swedish Institute of Space Physics, http://www.cluster.irfu.se/yuri Uppsala Division (IRF-U) http://ovt.irfu.se From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 22:29:42 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CE0116A4CE; Fri, 13 Feb 2004 22:29:42 -0800 (PST) Received: from gddsn.org.cn (mail.gddsn.org.cn [210.21.6.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D32B43D1F; Fri, 13 Feb 2004 22:29:42 -0800 (PST) (envelope-from wsk@gddsn.org.cn) Received: from gddsn.org.cn (unknown [192.168.168.138]) by gddsn.org.cn (Postfix) with ESMTP id 74C4F38CB53; Sat, 14 Feb 2004 14:29:29 +0800 (CST) Message-ID: <402DC049.8050005@gddsn.org.cn> Date: Sat, 14 Feb 2004 14:29:29 +0800 From: Suken Woo User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; zh-CN; rv:1.6) Gecko/20040117 X-Accept-Language: zh-cn,zh MIME-Version: 1.0 To: java@freebsd.org, databases@freebsd.org, hackers@freebsd.org Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 7bit Subject: a very very wierd problem....... X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Feb 2004 06:29:42 -0000 hi list: using the JDBC(MySQL JDBC CONNECTOR 3.0.10-stable) connect to mysql under 4.9R+jdk1.4.2-p6 i ifconfig fxp0 down for a few hours and ifconfig fxp0 up again. the socket will occured : %sockstat | grep 3306 mysql mysqld 157 5 tcp4 *:3306 *:* root java 1671 7 tcp4 192.168.168.138:3306 192.168.168.138:3306 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ why the socket will with the same port to connect itself???????? and the mysql didn't report any exceptions&errors........ thanks any info............. From owner-freebsd-java@FreeBSD.ORG Sat Feb 14 03:33:37 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9C9016A4D4 for ; Sat, 14 Feb 2004 03:33:36 -0800 (PST) Received: from lmdeliver01.st1.spray.net (lmdeliver01.st1.spray.net [212.78.202.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6488343D1D for ; Sat, 14 Feb 2004 03:33:36 -0800 (PST) (envelope-from markus.svensson2@spray.se) Received: from lmfilto02.st1.spray.net (lmfilto02.st1.spray.net [212.78.202.66]) by lmdeliver01.st1.spray.net (Postfix) with ESMTP id C60E17927B; Sat, 14 Feb 2004 12:33:34 +0100 (MET) Received: from localhost (localhost [127.0.0.1]) by lmfilto02.st1.spray.net (Postfix) with ESMTP id B280D4B82; Sat, 14 Feb 2004 12:33:34 +0100 (CET) Received: from lmsmtp02.st1.spray.net ([212.78.202.112])port 10024) with ESMTP id 21228-08; Sat, 14 Feb 2004 12:33:33 +0100 (CET) Received: from daemon (h13n1c1o1020.bredband.skanova.com [213.64.160.13]) by lmsmtp02.st1.spray.net (Postfix) with ESMTP id B2BEC161; Sat, 14 Feb 2004 12:33:33 +0100 (CET) From: "Markus Svensson" To: "'Marc van Kempen'" , Date: Sat, 14 Feb 2004 12:33:32 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 In-Reply-To: <200402132024.54674.marc@bowtie.nl> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Thread-Index: AcPyZxvkr+2ypFOtQpSTc87f1xRKzAAhq31Q Message-Id: <20040214113333.B2BEC161@lmsmtp02.st1.spray.net> X-Virus-Scanned: by amavisd-new at spray.net Subject: RE: Netbeans 3.6Beta runide.sh fails on FreeBSD 5.2R X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Feb 2004 11:33:37 -0000 Hi! Thank you for shedding some light on this. I've forwarded your both of your ideas to the Netbeans development team, and hopefully they will incorporate the suggested changes into the script. I think that we BSD'ers deserve a working launcher to. :) Best Regards, Markus Svensson > -----Original Message----- > From: Marc van Kempen [mailto:marc@bowtie.nl] > Sent: Friday, February 13, 2004 8:25 PM > To: freebsd-java@freebsd.org > Cc: Greg Lewis; Markus Svensson > Subject: Re: Netbeans 3.6Beta runide.sh fails on FreeBSD 5.2R > > > On Friday 13 February 2004 19:48, Greg Lewis wrote: > > On Fri, Feb 13, 2004 at 06:36:17PM +0100, Markus Svensson wrote: > > > I'm a member of the Netbeans 3.6 Community Acceptance Program (fancy > word > > > for bug hunter, I guess). I'm experiencing some issues with the > runide.sh > > > launcher script, which I hoped would be resolved by the Netbeans > > > developers. But it appears that it won't be fixed, since fixing the > > > script breaks it from MacOS X and Linux users. Anyone interested, > please > > > check out the discussion at > > > http://www.netbeans.org/issues/show_bug.cgi?id=39830 and perhaps > somebody > > > can explain to me what why the JDK's on different platforms don't > support > > > the same parameters? > > > > I read the bug, and it doesn't look like it has anything to do with the > > JDKs using different parameters. It looks like it has everything to do > > with different syntaxes for the expr utility. > > > > Here is the issue (from expr(1)): > > > > Unless FreeBSD 4.x compatibility is enabled, this version of expr > adheres > > to the POSIX Utility Syntax Guidelines, which require that a leading > > argument beginning with a minus sign be considered an option to the > > program. The standard -- syntax may be used to prevent this > > interpretation. > > > > e.g. > > > > > expr -J-Xms24m : '-J\(.*\)' > > > > expr: illegal option -- J > > usage: expr [-e] expression > > > > However, note the first part of the quote from the man page! So, a > > possibly solution is for runide.sh to set the EXPR_COMPAT environment > > > > variable. Then things will work, e.g.: > > > env EXPR_COMPAT=1 expr -J-Xms24m : '-J\(.*\)' > > > > -Xms24m > > > > So, I would suggest adding these two lines to the script: > > > > EXPR_COMPAT=1 > > export EXPR_COMPAT > > > > Then it will (hopefully) work on FreeBSD. > > > > I will note strongly that its Linux and OSX which are broken in this > > respect though. FreeBSD is POSIX compliant, they are not. > > Another possible solution, that also works on Mac OSX and Linux is: > > expr X-J-Xms24m : 'X-J\(.*\)' > > Regards, > Marc. > > . From owner-freebsd-java@FreeBSD.ORG Sat Feb 14 06:50:19 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08FE316A4CE for ; Sat, 14 Feb 2004 06:50:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0255943D1F for ; Sat, 14 Feb 2004 06:50:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i1EEoIbv060776 for ; Sat, 14 Feb 2004 06:50:18 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i1EEoI3L060775; Sat, 14 Feb 2004 06:50:18 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 14 Feb 2004 06:50:18 -0800 (PST) Resent-Message-Id: <200402141450.i1EEoI3L060775@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christopher Sean Hilton Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E3DF16A4CE for ; Sat, 14 Feb 2004 06:43:32 -0800 (PST) Received: from corellia.vindaloo.com (corellia.vindaloo.com [209.87.64.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69DB643D1D for ; Sat, 14 Feb 2004 06:43:32 -0800 (PST) (envelope-from chris@vindaloo.com) Received: from yavin.vindaloo.com (yavin.vindaloo.com [192.168.133.2]) by corellia.vindaloo.com (Postfix) with ESMTP id 907A112854 for ; Sat, 14 Feb 2004 09:43:31 -0500 (EST) Received: from dagobah.pvt.vindaloo.com (dagobah.pvt.vindaloo.com [192.168.132.4]) by yavin.vindaloo.com (Postfix) with ESMTP id 0B464EB8 for ; Sat, 14 Feb 2004 09:43:31 -0500 (EST) Received: from dagobah.pvt.vindaloo.com (localhost [127.0.0.1]) i1EEePnh003182 for ; Sat, 14 Feb 2004 09:40:25 -0500 (EST) (envelope-from chris@dagobah.pvt.vindaloo.com) Received: (from chris@localhost)i1EEePGX003181; Sat, 14 Feb 2004 09:40:25 -0500 (EST) (envelope-from chris) Message-Id: <200402141440.i1EEePGX003181@dagobah.pvt.vindaloo.com> Date: Sat, 14 Feb 2004 09:40:25 -0500 (EST) From: Christopher Sean Hilton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: java/62837: linux-sun-jdk14 executables hang with COMPAT_LINUX in the the kernel. X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christopher Sean Hilton List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Feb 2004 14:50:19 -0000 >Number: 62837 >Category: java >Synopsis: linux-sun-jdk14 executables hang with COMPAT_LINUX in the the kernel. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 14 06:50:18 PST 2004 >Closed-Date: >Last-Modified: >Originator: Christopher Sean Hilton >Release: FreeBSD 4.9-STABLE i386 >Organization: Vindaloo.Com >Environment: System: FreeBSD dagobah.pvt.vindaloo.com 4.9-STABLE FreeBSD 4.9-STABLE #1: Wed Jan 28 17:07:24 EST 2004 chris@hoth.pvt.vindaloo.com:/usr/obj/usr/src/sys/GATEWAY-M450 i386 FreeBSD 4.9 Stable, Custom kernel with COMPAT_LINUX Specified. Kernel config: # Kernel Configuration for GATEWAY-M450 Laptop machine i386 cpu I586_CPU cpu I686_CPU ident GATEWAY-M450 maxusers 0 options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options UFS_DIRHASH options NFS #Network Filesystem options MSDOSFS #MSDOS Filesystem options EXT2FS options CD9660 #ISO 9660 Filesystem options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev options COMPAT_LINUX options USER_LDT options IPSEC options IPSEC_ESP options DDB options DDB_UNATTENDED options GDB_REMOTE_CHAT device isa device eisa device pci device apm0 # ATA and ATAPI devices device ata0 device ata1 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 flags 0x6100 # syscons is the default console driver, resembling an SCO console device vga0 at isa? device sc0 at isa? flags 0x100 pseudo-device splash options VESA options SC_PIXEL_MODE # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # PCCARD (PCMCIA) support device card device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 # Server Management Bus Supported interfaces: device smbus device intpm # Intel PIIX4 Power Management Unit device iicbus # Bus support, required for ic/iic/iicsmb below. device iicbb device ic device iic device iicsmb # smb over i2c bridge # Serial ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? disable port IO_COM2 irq 3 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device device vpo # Requires scbus and da device miibus # MII bus support device em device wi device pcm # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device ppp 2 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf 4 #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device uvisor # Visor USB PDA device ucom # More Visor # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet >Description: On systems with a custom kernel with COMPAT_LINUX compiled in and linprocfs loaded as a module the Linux Sun jdk executables hang and need to be killed with kill -9. >How-To-Repeat: Compile a 4.9 Stable kernel with COMPAT_LINUX. Load linprocfs with with kldload. Add linux-sun-jdk from the ports collection. Run the Linux Java compiler. $ kldstat Id Refs Address Size Name 1 3 0xc0100000 3359b4 kernel 2 1 0xc2346000 7000 linprocfs.ko 3 1 0xc23c3000 2000 green_saver.ko $ uname -a FreeBSD dagobah.pvt.vindaloo.com 4.9-STABLE FreeBSD 4.9-STABLE #1: Wed Jan 28 17:07:24 EST 2004 chris@hoth.pvt.vindaloo.com:/usr/obj/usr/src/sys/GATEWAY-M450 i386 $ kldstat Id Refs Address Size Name 1 3 0xc0100000 3359b4 kernel 2 1 0xc2346000 7000 linprocfs.ko 3 1 0xc23c3000 2000 green_saver.ko $ pkg_info -aI | grep linux-sun linux-sun-jdk-1.4.2.02 Sun Java Development Kit 1.4 for Linux >Fix: Using the GENERIC kernel and loading both the linux compatibility and the linprocfs works around this problem. I assume that loading linux from the module is the fix. I will test this this afternoon and post a follow-up. -- Chris >Release-Note: >Audit-Trail: >Unformatted: