From owner-freebsd-java@FreeBSD.ORG Sun Jun 20 00:20:34 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 BB96716A4CE for ; Sun, 20 Jun 2004 00:20:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B49F443D54 for ; Sun, 20 Jun 2004 00:20:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i5K0KPZ4044720 for ; Sun, 20 Jun 2004 00:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i5K0KPTu044719; Sun, 20 Jun 2004 00:20:25 GMT (envelope-from gnats) Date: Sun, 20 Jun 2004 00:20:25 GMT Message-Id: <200406200020.i5K0KPTu044719@freefall.freebsd.org> To: freebsd-java@FreeBSD.org From: "Georg-W. Koltermann" Subject: Re: java/68079: PATCH linux ibm jdk 1.4.1 fails with: JVMLH050: Signal stack registration failed (errno=22) X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Georg-W. Koltermann" List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jun 2004 00:20:34 -0000 The following reply was made to PR java/68079; it has been noted by GNATS. From: "Georg-W. Koltermann" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: java/68079: PATCH linux ibm jdk 1.4.1 fails with: JVMLH050: Signal stack registration failed (errno=22) Date: Sun, 20 Jun 2004 02:14:15 +0200 The problem was that linux_machdep.c had the arguments to kern_sigaltstack() switched. Apply the following patch: Index: linux_machdep.c =================================================================== RCS file: /usr/ncvs/src/sys/i386/linux/linux_machdep.c,v retrieving revision 1.40 diff -u -r1.40 linux_machdep.c --- linux_machdep.c 2 Jun 2003 16:56:40 -0000 1.40 +++ linux_machdep.c 19 Jun 2004 23:19:29 -0000 @@ -799,8 +799,8 @@ ss.ss_size = lss.ss_size; ss.ss_flags = linux_to_bsd_sigaltstack(lss.ss_flags); } - error = kern_sigaltstack(td, (uap->uoss != NULL) ? &oss : NULL, - (uap->uss != NULL) ? &ss : NULL); + error = kern_sigaltstack(td, (uap->uss != NULL) ? &ss : NULL, + (uap->uoss != NULL) ? &oss : NULL); if (!error && uap->uoss != NULL) { lss.ss_sp = oss.ss_sp; lss.ss_size = oss.ss_size; Alas, it still does not work right. Now it hangs with high system times and the message "kernel trap 26 with interrupts disabled" in syslog :( See next PR. From owner-freebsd-java@FreeBSD.ORG Sun Jun 20 14:43: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 92D9B16A4CE for ; Sun, 20 Jun 2004 14:43:35 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id A005143D1F for ; Sun, 20 Jun 2004 14:43:34 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5KEhIMI078510; Sun, 20 Jun 2004 17:43:18 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.229.10] (ppp-229-010.dialup.ntua.gr [147.102.229.10]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5KEhHlM083698; Sun, 20 Jun 2004 17:43:17 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40D5A271.6070204@noc.ntua.gr> Date: Sun, 20 Jun 2004 17:42:57 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040504) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marc van Kempen References: <40D358E2.5050606@bowtie.nl> In-Reply-To: <40D358E2.5050606@bowtie.nl> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@freebsd.org Subject: Re: -current and jdb 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: Sun, 20 Jun 2004 14:43:35 -0000 Marc van Kempen wrote: > Hi, > > Does anyone else have a problem with running jdb from jdk1.4.2p6_4? > Starting jdb works fine, but as soon as I try to debug a java program > (run ...) then jdb crashes complaining it cannot connect to the VM. > > This is on -current from 16 June. > > If needed I can post the exact error message (don't have it at hand > right now). You are probably using libpthread. It is a known issue. Try using libmap.conf to map everything to libc_r. Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Mon Jun 21 08:42:10 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 0606316A4CE for ; Mon, 21 Jun 2004 08:42:10 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7010143D1D for ; Mon, 21 Jun 2004 08:42:09 +0000 (GMT) (envelope-from freebsd@rahn-koltermann.de) Received: from [212.227.126.200] (helo=mrvnet.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BcKNR-0007LR-00 for freebsd-java@freebsd.org; Mon, 21 Jun 2004 10:42:05 +0200 Received: from [172.23.4.139] (helo=config12.kundenserver.de) by mrvnet.kundenserver.de with esmtp (Exim 3.35 #1) id 1BcKNR-00078F-00 for freebsd-java@freebsd.org; Mon, 21 Jun 2004 10:42:05 +0200 Received: from www-data by config12.kundenserver.de with local (Exim 3.35 #1 (Debian)) id 1BcKNQ-0007lx-00 for ; Mon, 21 Jun 2004 10:42:04 +0200 To: From: Message-Id: <27942123$108780685740d69d89842426.94589133@config12.schlund.de> X-Binford: 6100 (more power) X-Originating-From: 27942123 X-Mailer: Webmail X-Routing: DE X-Received: from config12 by 213.148.149.130 with HTTP id 27942123 for freebsd-java@freebsd.org; Mon, 21 Jun 2004 10:40:02 +0200 Content-Type: text/plain; charset="iso-8859-1" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Priority: 3 Date: Mon, 21 Jun 2004 10:40:02 +0200 X-Provags-ID: kundenserver.de abuse@kundenserver.de ident:@172.23.4.139 Subject: java plugin not using cookies any more? 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, 21 Jun 2004 08:42:10 -0000 Hi, a while back I noticed that in mozilla 1.(4,5? don't recall which) I could not use our Niku time tracking tool any more. The applet would report a connection error just as if I wasn't logged on. My interpretation was that the applet for some reason was not using the cookies that I got at the preceeding (form base) login. I didn't bother since firefox 0.8 did not show that problem, I simply used firefox instead of mozilla. Now with the recent upgrade to firefox 0.9 I see the exact same problem, and the current mozilla (1.6) also still has the issue. Has anyone else seen this problem? Would it likely be a mozilla/firefox problem or a java problem? -- Regards, Georg. From owner-freebsd-java@FreeBSD.ORG Mon Jun 21 11:02: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 7159D16A4CE for ; Mon, 21 Jun 2004 11:02:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 695BB43D5A for ; Mon, 21 Jun 2004 11:02:08 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i5LB1ue5064644 for ; Mon, 21 Jun 2004 11:01:56 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i5LB1uDv064638 for freebsd-java@freebsd.org; Mon, 21 Jun 2004 11:01:56 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 21 Jun 2004 11:01:56 GMT Message-Id: <200406211101.i5LB1uDv064638@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, 21 Jun 2004 11:02:08 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/04/13] ports/65479 java ports reinstall ignores ${MAKE_ARGS} o [2004/05/01] java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes o [2004/06/18] java/68079 java linux ibm jdk 1.4.1 fails with: JVMLH050: 3 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/10/18] java/44251 java Create stylebook port o [2003/07/30] java/55032 java SVr4 emulation interferes with install s [2003/09/16] java/56928 java jce-aba port should install to $JAVA_HOME o [2004/02/14] java/62837 java linux-sun-jdk14 executables hang with COM o [2004/04/08] java/65335 java [PATCH] java/jdk14: use bsd.java.mk for J o [2004/04/12] ports/65465 java Eclipse has no fonts with recent pango, c f [2004/05/19] java/66875 java Eclipse Version 3.0 port not available 7 problems total. From owner-freebsd-java@FreeBSD.ORG Mon Jun 21 23:06:38 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 37AF216A4CE for ; Mon, 21 Jun 2004 23:06:38 +0000 (GMT) Received: from ux13.sp.cs.cmu.edu (UX13.SP.CS.CMU.EDU [128.2.203.57]) by mx1.FreeBSD.org (Postfix) with SMTP id B408343D45 for ; Mon, 21 Jun 2004 23:06:37 +0000 (GMT) (envelope-from Brad_Karp@ux13.sp.cs.cmu.edu) Received: from ux13.sp.cs.cmu.edu ([127.0.0.1]) by ux13.sp.cs.cmu.edu id aa25188; 21 Jun 2004 19:06 EDT From: Brad Karp To: freebsd-java@freebsd.org Date: Mon, 21 Jun 2004 19:06:22 -0400 Sender: Brad_Karp@ux13.sp.cs.cmu.edu Message-Id: <20040621230637.B408343D45@mx1.FreeBSD.org> Subject: nio, channels, and OP_CONNECT trouble? 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, 21 Jun 2004 23:06:38 -0000 I'm using ports/java/jdk14 on FreeBSD 4.9-RELEASE, built with JDK_VERSION 1.4.2 and JDK_PATCHSET_VERSION 5. I'm running a rather large, complicated application (the Bamboo distributed hash table, or DHT; if you're curious, http://www.bamboo-dht.org/) under Java. I'm seeing behavior that seems very likely to be a bug in the FreeBSD implementation of channels in java.nio. When I use OP_CONNECT to request notification by selector.select() that a channel's connect() has completed, the CPU utilization of the Java VM pegs at 100%, with top reporting over 30% system time. A bit of poking around reveals that: 1) the connect() actually completes, according to the server being connected to 2) in the client, select() is returning several times per millisecond, but selector.selectedKeys() does *not* include the SelectionKey for the channel on which the connect() was called So selector.select() is called over and over, and the CPU saturates. Has anyone seen behavior anything like this? I can easily imagine that something in the implementation of selecting on OP_CONNECT could be awry, given that the underlying UNIX system call select(2) doesn't have any notion of distinguishing "connect complete" from "writable." More details follow, in case they are helpful. nio supports nonblocking network connections with SelectableChannels. I'm doing a nonblocking connect with: channel = SocketChannel.open(); channel.configureBlocking(false); gateway = new InetSocketAddress(gnid.address(), gnid.port()); channel.connect(gateway); (Never mind about gnid; those address() and port() methods return what you think they do.) I'm then using a Selector and registering to be notified when the connect() completes: SelectionKey skey = channel.register(selector, SelectionKey.OP_CONNECT); Thereafter, inside an event loop, I do: selector.select(); Iterator i = selector.selectedKeys ().iterator (); while (i.hasNext ()) { SelectionKey skey = (SelectionKey) i.next (); } The selectedKeys returned do not include the SelectionKey returned in the register() call above. It appears that the OP_CONNECT registration on channel is causing a SelectionKey for a *different* channel to be returned. Again, anyone seen similar behavior? If so, have a workaround or patch? Many thanks, -Brad, bkarp@cs.cmu.edu P.S. One final note: I realize that there's a version 6 patchset, but after reading the ChangeLog, I don't see any patches that since 5 that seem relevant to the above. From owner-freebsd-java@FreeBSD.ORG Tue Jun 22 05:53: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 175DC16A4CE for ; Tue, 22 Jun 2004 05:53:37 +0000 (GMT) Received: from p4.roq.com (ns1.ecoms.com [207.44.130.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD0943D41 for ; Tue, 22 Jun 2004 05:53:36 +0000 (GMT) (envelope-from michael@roq.com) Received: from [192.168.46.21] (unknown [203.100.254.38]) by p4.roq.com (Postfix) with ESMTP id CC8D24C523 for ; Tue, 22 Jun 2004 05:54:03 +0000 (GMT) Message-ID: <40D7C95E.1090706@roq.com> Date: Tue, 22 Jun 2004 15:53:34 +1000 From: Michael Vince User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040614 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Installing the J2ME Wireless Toolkit 2.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: Tue, 22 Jun 2004 05:53:37 -0000 Hey all Has any one managed to run the J2ME Wireless Toolkit 2.1? http://java.sun.com/products/j2mewtoolkit/ After it finishes installing, all I get is this $ ./ktoolbar Exception in thread "main" java.lang.ExceptionInInitializerError at com.sun.kvem.environment.Resources.(Resources.java:84) at com.sun.kvem.environment.Resources.(Resources.java:91) at com.sun.kvem.environment.ToolkitDirs.(ToolkitDirs.java:45) at com.sun.kvem.toolbar.Main$SplashWindow.(Main.java:43) at com.sun.kvem.toolbar.Main.main(Main.java:113) I mainly just wanted it for the mobile phone emulator it has in it. -- PGP ID: 0x4F163152 From owner-freebsd-java@FreeBSD.ORG Tue Jun 22 06:48: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 EF6C516A4CE for ; Tue, 22 Jun 2004 06:48:33 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D9143D4C for ; Tue, 22 Jun 2004 06:48:33 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5M6mRMI074364; Tue, 22 Jun 2004 09:48:27 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5M6mQxJ075385; Tue, 22 Jun 2004 09:48:27 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40D7D63A.2000404@noc.ntua.gr> Date: Tue, 22 Jun 2004 09:48:26 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Vince References: <40D7C95E.1090706@roq.com> In-Reply-To: <40D7C95E.1090706@roq.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Installing the J2ME Wireless Toolkit 2.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: Tue, 22 Jun 2004 06:48:34 -0000 Michael Vince wrote: > Hey all > Has any one managed to run the J2ME Wireless Toolkit 2.1? > http://java.sun.com/products/j2mewtoolkit/ > After it finishes installing, all I get is this > > $ ./ktoolbar > Exception in thread "main" java.lang.ExceptionInInitializerError > at com.sun.kvem.environment.Resources.(Resources.java:84) > at com.sun.kvem.environment.Resources.(Resources.java:91) > at > com.sun.kvem.environment.ToolkitDirs.(ToolkitDirs.java:45) > at com.sun.kvem.toolbar.Main$SplashWindow.(Main.java:43) > at com.sun.kvem.toolbar.Main.main(Main.java:113) > > I mainly just wanted it for the mobile phone emulator it has in it. You should use the fresh java/sun-wtk port. It works fine here. Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Tue Jun 22 07:09:48 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 1858D16A4CE for ; Tue, 22 Jun 2004 07:09:48 +0000 (GMT) Received: from p4.roq.com (ns1.ecoms.com [207.44.130.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA4CB43D2D for ; Tue, 22 Jun 2004 07:09:47 +0000 (GMT) (envelope-from michael@roq.com) Received: from [192.168.46.21] (unknown [203.100.254.38]) by p4.roq.com (Postfix) with ESMTP id 3AFCA4C8CF; Tue, 22 Jun 2004 07:09:52 +0000 (GMT) Message-ID: <40D7DB24.2050903@roq.com> Date: Tue, 22 Jun 2004 17:09:24 +1000 From: Michael Vince User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040614 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Panagiotis Astithas References: <40D7C95E.1090706@roq.com> <40D7D63A.2000404@noc.ntua.gr> In-Reply-To: <40D7D63A.2000404@noc.ntua.gr> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Installing the J2ME Wireless Toolkit 2.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: Tue, 22 Jun 2004 07:09:48 -0000 Panagiotis Astithas wrote: > Michael Vince wrote: > >> Hey all >> Has any one managed to run the J2ME Wireless Toolkit 2.1? >> http://java.sun.com/products/j2mewtoolkit/ >> After it finishes installing, all I get is this >> >> $ ./ktoolbar >> Exception in thread "main" java.lang.ExceptionInInitializerError >> at com.sun.kvem.environment.Resources.(Resources.java:84) >> at com.sun.kvem.environment.Resources.(Resources.java:91) >> at >> com.sun.kvem.environment.ToolkitDirs.(ToolkitDirs.java:45) >> at com.sun.kvem.toolbar.Main$SplashWindow.(Main.java:43) >> at com.sun.kvem.toolbar.Main.main(Main.java:113) >> >> I mainly just wanted it for the mobile phone emulator it has in it. > > > You should use the fresh java/sun-wtk port. It works fine here. > > Cheers, Thanks very much! Man I looked hard in the ports tree for this, doing searches like make search key="J2ME" or even "wireless" etc doesn't make it come up! From owner-freebsd-java@FreeBSD.ORG Tue Jun 22 07:27:13 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 29AD716A4CE for ; Tue, 22 Jun 2004 07:27:13 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78A8243D41 for ; Tue, 22 Jun 2004 07:27:12 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i5M7RAhU008914; Tue, 22 Jun 2004 10:27:10 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5M7RAbC077348; Tue, 22 Jun 2004 10:27:10 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40D7DF4E.1090000@noc.ntua.gr> Date: Tue, 22 Jun 2004 10:27:10 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Vince References: <40D7C95E.1090706@roq.com> <40D7D63A.2000404@noc.ntua.gr> <40D7DB24.2050903@roq.com> In-Reply-To: <40D7DB24.2050903@roq.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Installing the J2ME Wireless Toolkit 2.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: Tue, 22 Jun 2004 07:27:13 -0000 Michael Vince wrote: > Panagiotis Astithas wrote: > >> Michael Vince wrote: >> >>> Hey all >>> Has any one managed to run the J2ME Wireless Toolkit 2.1? >>> http://java.sun.com/products/j2mewtoolkit/ >>> After it finishes installing, all I get is this >>> >>> $ ./ktoolbar >>> Exception in thread "main" java.lang.ExceptionInInitializerError >>> at com.sun.kvem.environment.Resources.(Resources.java:84) >>> at >>> com.sun.kvem.environment.Resources.(Resources.java:91) >>> at >>> com.sun.kvem.environment.ToolkitDirs.(ToolkitDirs.java:45) >>> at com.sun.kvem.toolbar.Main$SplashWindow.(Main.java:43) >>> at com.sun.kvem.toolbar.Main.main(Main.java:113) >>> >>> I mainly just wanted it for the mobile phone emulator it has in it. >> >> >> >> You should use the fresh java/sun-wtk port. It works fine here. >> >> Cheers, > > Thanks very much! > Man I looked hard in the ports tree for this, > doing searches like > make search key="J2ME" or even "wireless" etc doesn't make it come up! Darn, I knew I didn't pick I good port name. Searching for it should work though, if ports/INDEX or INDEX-5 is updated locally (make index or portsdb -U). I'll see if I can get the INDEX/INDEX-5 updated in the repository. Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Tue Jun 22 19:58: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 9D5B616A4CE for ; Tue, 22 Jun 2004 19:58:46 +0000 (GMT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45C1F43D58 for ; Tue, 22 Jun 2004 19:58:46 +0000 (GMT) (envelope-from axelc@comcast.net) Received: from saturn.comcast.net (h00400527d4eb.ne.client2.attbi.com[65.96.189.254]) by comcast.net (sccrmhc12) with SMTP id <20040622195845012008ab25e> (Authid: axelc); Tue, 22 Jun 2004 19:58:45 +0000 Message-Id: <6.1.1.1.0.20040622155843.059926a0@mail.comcast.net> X-Sender: axelc@mail.comcast.net X-Mailer: QUALCOMM Windows Eudora Version 6.1.1.1 Date: Tue, 22 Jun 2004 16:02:17 -0400 To: freebsd-java@FreeBSD.org From: Axel Christensen Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Bug in running java with mem usage 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, 22 Jun 2004 19:58:46 -0000 Hi, I'm trying to run some java processes on FreeBSD and I'm getting out of memory error-- I usually use the -Xms250 -Xmx800 and its having problems with that or with if I remove these parameters. Also, when I use java to check the available memory I'm getting something tiny, like 2MB. Thanks, Axel From owner-freebsd-java@FreeBSD.ORG Tue Jun 22 20:00: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 AD31516A4CE for ; Tue, 22 Jun 2004 20:00:22 +0000 (GMT) Received: from turing.morons.org (turing.morons.org [209.237.229.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9728443D66 for ; Tue, 22 Jun 2004 20:00:22 +0000 (GMT) (envelope-from freebsd@spatula.net) Received: by turing.morons.org (Postfix, from userid 1001) id 0AC2BA92A; Tue, 22 Jun 2004 13:00:18 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by turing.morons.org (Postfix) with ESMTP id 027BAA929; Tue, 22 Jun 2004 13:00:17 -0700 (PDT) Date: Tue, 22 Jun 2004 13:00:17 -0700 (PDT) From: Nick Johnson X-X-Sender: spatula@turing.morons.org To: Axel Christensen In-Reply-To: <6.1.1.1.0.20040622155843.059926a0@mail.comcast.net> Message-ID: <20040622125949.Q63536@turing.morons.org> References: <6.1.1.1.0.20040622155843.059926a0@mail.comcast.net> X-what-happen: someone set up us the bomb X-Message-Flags: Spatula Precedence: special-delivery MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-java@FreeBSD.org Subject: Re: Bug in running java with mem usage X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jun 2004 20:00:22 -0000 What happens if you put an "m" after the number? -Xms250m -Xmx800m Nick On Tue, 22 Jun 2004, Axel Christensen wrote: > Hi, > I'm trying to run some java processes on FreeBSD and I'm getting out of > memory error-- I usually use > the -Xms250 -Xmx800 and its having problems with that or with if I remove > these parameters. Also, when I use java > to check the available memory I'm getting something tiny, like 2MB. > Thanks, > Axel > > _______________________________________________ > 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" > -- "The aptly-named morons.org is an obscenity-laced screed..." -- Robert P. Lockwood, Catholic League director of research Nick Johnson, version 2.1 http://web.morons.org/ From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 00:50:48 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 6EC2416A4CE for ; Wed, 23 Jun 2004 00:50:48 +0000 (GMT) Received: from mail.teel.ws (teel.ws [209.151.109.182]) by mx1.FreeBSD.org (Postfix) with SMTP id DFF8443D55 for ; Wed, 23 Jun 2004 00:50:46 +0000 (GMT) (envelope-from mark@teel.ws) Received: (qmail 24309 invoked by uid 513); 23 Jun 2004 00:50:33 -0000 Received: from mark@teel.ws by dmz1 by uid 508 with qmail-scanner-1.22-st-qms Clear:RC:0(192.168.0.110):SA:0(0.0/4.0):. Processed in 0.59229 secs); 23 Jun 2004 00:50:33 -0000 X-Spam-Status: No, hits=0.0 required=4.0 X-Antivirus-MYDOMAIN-Mail-From: mark@teel.ws via dmz1 X-Antivirus-MYDOMAIN: 1.22-st-qms (Clear:RC:0(192.168.0.110):SA:0(0.0/4.0):. Processed in 0.59229 secs Process 24300) Received: from unknown (HELO teel.ws) (mark@teel.ws@192.168.0.110) by mail.teel.ws with SMTP; 23 Jun 2004 00:50:32 -0000 Message-ID: <40D8D3D3.3090303@teel.ws> Date: Tue, 22 Jun 2004 19:50:27 -0500 From: Mark Teel User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Core Dump in JEdit Port Building on 5.2.1 Kernel 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, 23 Jun 2004 00:50:48 -0000 When I try to build JEdit from ports on a 5.2.1 system, it core dumps while checking to see if it is already installed. Does anyone know the reason for this or a work around? Thanks, Mark From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 06:30: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 B3BF016A4CF for ; Wed, 23 Jun 2004 06:30:26 +0000 (GMT) Received: from mx3.mra.co.id (mx3.mra.co.id [202.138.254.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0194243D2D for ; Wed, 23 Jun 2004 06:30:24 +0000 (GMT) (envelope-from reza@mra.co.id) Received: from localhost (unknown [127.0.0.1]) by mx3.mra.co.id (Postfix) with ESMTP id C47C72E14D for ; Wed, 23 Jun 2004 13:48:06 +0700 (WIT) Received: from mx3.mra.co.id ([127.0.0.1]) by localhost (mx3.mra.co.id [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 71040-28 for ; Wed, 23 Jun 2004 13:46:51 +0700 (WIT) Received: from mail.mra.co.id (unknown [172.16.0.25]) by mx3.mra.co.id (Postfix) with ESMTP id 6F59D2E222 for ; Wed, 23 Jun 2004 13:46:51 +0700 (WIT) Received: from mra.co.id ([172.16.0.228]) by mail.mra.co.id with Microsoft SMTPSVC(5.0.2195.3779); Wed, 23 Jun 2004 13:26:11 +0700 Message-ID: <40D92333.2010607@mra.co.id> Date: Wed, 23 Jun 2004 13:29:07 +0700 From: Muhammad Reza User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040429 X-Accept-Language: en-us, en MIME-Version: 1.0 To: java@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 23 Jun 2004 06:26:11.0221 (UTC) FILETIME=[F9F23C50:01C458EA] X-Virus-Scanned: by amavisd-new at mra.co.id Subject: tomcat wont start at boot time 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, 23 Jun 2004 06:30:26 -0000 Dear All, Recently i installed jakarta-tomcat-5.0.25 (binary source) on FreeBSD-4.10R, I can running it manually with this command #su -f -m www -c "/usr/local/jakarta-tomcat-5.0.25/bin/catalina.sh start" but tomcat wont start everytime i boot, even i did symbolic link catalina.sh to /usr/local/etc/rc.d/ I guess is something w/ JAVA_HOME env. and I did set this at /etc/profile and csh env #cat /etc/profile JAVA_HOME=/usr/local/jdk1.4.2 export JAVA_HOME # cat /etc/csh.cshrc setenv JAVA_HOME /usr/local/jdk1.4.2 but it still can start at boot, please help me.... regards reza From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 07:27: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 2608D16A4CE for ; Wed, 23 Jun 2004 07:27:25 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3553043D54 for ; Wed, 23 Jun 2004 07:27:24 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5N7R8XE093157; Wed, 23 Jun 2004 10:27:08 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5N7R7tD040464; Wed, 23 Jun 2004 10:27:08 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40D930CB.4060008@noc.ntua.gr> Date: Wed, 23 Jun 2004 10:27:07 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mark Teel References: <40D8D3D3.3090303@teel.ws> In-Reply-To: <40D8D3D3.3090303@teel.ws> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Core Dump in JEdit Port Building on 5.2.1 Kernel 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, 23 Jun 2004 07:27:25 -0000 Mark Teel wrote: > When I try to build JEdit from ports on a 5.2.1 system, it core dumps > while checking to see if it is already installed. > > Does anyone know the reason for this or a work around? You have to provide more details, like the output from 'make install' or whatever you used. We can't guess which process dumps core otherwise. Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 11:57: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 547E616A4CE for ; Wed, 23 Jun 2004 11:57:47 +0000 (GMT) Received: from mail.teel.ws (teel.ws [209.151.109.182]) by mx1.FreeBSD.org (Postfix) with SMTP id 393FA43D49 for ; Wed, 23 Jun 2004 11:57:44 +0000 (GMT) (envelope-from mark@teel.ws) Received: (qmail 28465 invoked by uid 513); 23 Jun 2004 11:57:41 -0000 Received: from mark@teel.ws by dmz1 by uid 508 with qmail-scanner-1.22-st-qms Clear:RC:0(192.168.0.110):SA:0(0.0/4.0):. Processed in 0.620452 secs); 23 Jun 2004 11:57:41 -0000 X-Spam-Status: No, hits=0.0 required=4.0 X-Antivirus-MYDOMAIN-Mail-From: mark@teel.ws via dmz1 X-Antivirus-MYDOMAIN: 1.22-st-qms (Clear:RC:0(192.168.0.110):SA:0(0.0/4.0):. Processed in 0.620452 secs Process 28456) Received: from unknown (HELO teel.ws) (mark@teel.ws@192.168.0.110) by mail.teel.ws with SMTP; 23 Jun 2004 11:57:41 -0000 Message-ID: <40D9702E.5060200@teel.ws> Date: Wed, 23 Jun 2004 06:57:34 -0500 From: Mark Teel User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Panagiotis Astithas References: <40D8D3D3.3090303@teel.ws> <40D930CB.4060008@noc.ntua.gr> In-Reply-To: <40D930CB.4060008@noc.ntua.gr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Core Dump in JEdit Port Building on 5.2.1 Kernel 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, 23 Jun 2004 11:57:47 -0000 Here it is (using make install of course): ****************************************** ===> Installing for jedit-4.1.0 ===> jedit-4.1.0 depends on file: /usr/local/diablo-jdk1.3.1/bin/java - found ===> jedit-4.1.0 depends on shared library: X11.6 - found ===> Generating temporary packing list ===> Checking if editors/jedit already installed Bus error (core dumped) *** Error code 138 Stop in /usr/ports/editors/jedit. ****************************************** Mark Panagiotis Astithas wrote: > Mark Teel wrote: > >> When I try to build JEdit from ports on a 5.2.1 system, it core dumps >> while checking to see if it is already installed. >> >> Does anyone know the reason for this or a work around? > > > You have to provide more details, like the output from 'make install' > or whatever you used. We can't guess which process dumps core otherwise. > > Cheers, From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 13:16:43 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 688D316A4CE; Wed, 23 Jun 2004 13:16:43 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4E2F43D2D; Wed, 23 Jun 2004 13:16:42 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5NDGLXE036963; Wed, 23 Jun 2004 16:16:21 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5NDGLiH073696; Wed, 23 Jun 2004 16:16:21 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40D982A5.8050701@noc.ntua.gr> Date: Wed, 23 Jun 2004 16:16:21 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Norikatsu Shigemura References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> In-Reply-To: <20040616171610.3ad2fde7.nork@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org Subject: Re: An alternative Eclipse 3 port 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, 23 Jun 2004 13:16:43 -0000 Norikatsu Shigemura wrote: > On Wed, 16 Jun 2004 11:00:15 +0300 > Panagiotis Astithas wrote: > >>You can get the port skeleton here: >>http://noc.ntua.gr/~past/freebsd/eclipse3-port.tgz >> >>These are some guidelines I tried to follow: >>- No reference to Linux if possible. >>- The pathces in $FILESDIR are one patch per file, as in most ports. >>- No hard-coded paths (ant, unzip, gmake, JAVA_HOME, etc.) >>- Minimize diffs from the eclipse 2 port. > > > Wow, I'll merge this and mine(maybe this is based). Hi, I have updated the port skeleton in the above URL. This iteration builds Eclipse 3.0 RC3, contains a number of cleanups and bugfixes and sports two new configuration options: - defining WITHOUT_GNOMEVFS skips the build of libswt-gnome-gtk-3061.so and avoids the dependency on the GNOME libraries - defining ECLIPSE_MOTIF builds the motif version of Eclipse. The motif version is not buildable yet, although I have made some progress besides the infrastructure part. I hope to have it ready by the time that Eclipse 3.0 ships next week. I would appreciate any comments, even alternative names for the variables (I know I suck at that). Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 13:33: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 B781116A4CE for ; Wed, 23 Jun 2004 13:33:09 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0698B43D55 for ; Wed, 23 Jun 2004 13:33:09 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5NDWdXE052648; Wed, 23 Jun 2004 16:32:39 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5NDWduw074649; Wed, 23 Jun 2004 16:32:39 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40D98677.9090407@noc.ntua.gr> Date: Wed, 23 Jun 2004 16:32:39 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mark Teel References: <40D8D3D3.3090303@teel.ws> <40D930CB.4060008@noc.ntua.gr> <40D9702E.5060200@teel.ws> In-Reply-To: <40D9702E.5060200@teel.ws> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-java@freebsd.org Subject: Re: Core Dump in JEdit Port Building on 5.2.1 Kernel 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, 23 Jun 2004 13:33:09 -0000 Mark Teel wrote: > Here it is (using make install of course): > > ****************************************** > ===> Installing for jedit-4.1.0 > ===> jedit-4.1.0 depends on file: /usr/local/diablo-jdk1.3.1/bin/java > - found > ===> jedit-4.1.0 depends on shared library: X11.6 - found > ===> Generating temporary packing list > ===> Checking if editors/jedit already installed > Bus error (core dumped) > *** Error code 138 > > Stop in /usr/ports/editors/jedit. This is very weird and may not be related to jedit or diablo-jdk. What happens if you run manually 'pkg_info -q -p jedit-4.1.0'? Do you observe any other weird behavior? Could you try fsck-ing your /var partition? Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 14:49: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 6888C16A4CE; Wed, 23 Jun 2004 14:49:40 +0000 (GMT) Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35DBB43D39; Wed, 23 Jun 2004 14:49:40 +0000 (GMT) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.202] (helo=mgr2.xmission.com) by mgr3.xmission.com with esmtp (Exim 4.32) id 1Bd94D-0000ex-SY; Wed, 23 Jun 2004 08:49:38 -0600 Received: from [198.60.22.205] (helo=mgr5.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1Bd94D-0001A3-02; Wed, 23 Jun 2004 08:49:37 -0600 Received: from [166.70.56.15] (helo=misty.eyesbeyond.com) by mgr5.xmission.com with esmtp (Exim 4.31) id 1Bd94D-0007Jg-QM; Wed, 23 Jun 2004 08:49:37 -0600 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i5NEnZkE069529; Wed, 23 Jun 2004 08:49:36 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.11/8.12.11/Submit) id i5NEnZrE069528; Wed, 23 Jun 2004 08:49:35 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 23 Jun 2004 08:49:34 -0600 From: Greg Lewis To: Panagiotis Astithas Message-ID: <20040623144934.GA69425@misty.eyesbeyond.com> References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <40D982A5.8050701@noc.ntua.gr> User-Agent: Mutt/1.4.2.1i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr3.xmission.com X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=8.0 tests=BAYES_00 autolearn=no version=2.63 X-SA-Exim-Connect-IP: 198.60.22.202 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 4.0 (built Sat, 24 Apr 2004 12:31:30 +0200) X-SA-Exim-Scanned: Yes (on mgr3.xmission.com) cc: java@FreeBSD.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 23 Jun 2004 14:49:40 -0000 On Wed, Jun 23, 2004 at 04:16:21PM +0300, Panagiotis Astithas wrote: > I have updated the port skeleton in the above URL. This iteration builds > Eclipse 3.0 RC3, contains a number of cleanups and bugfixes and sports > two new configuration options: Great work Panagiotis! > - defining WITHOUT_GNOMEVFS skips the build of libswt-gnome-gtk-3061.so > and avoids the dependency on the GNOME libraries > > - defining ECLIPSE_MOTIF builds the motif version of Eclipse. > > The motif version is not buildable yet, although I have made some > progress besides the infrastructure part. I hope to have it ready by the > time that Eclipse 3.0 ships next week. > > I would appreciate any comments, even alternative names for the > variables (I know I suck at that). I think the Gnome variable is fine (since I don't think you can do this with OPTIONS). I'd change the Motif variable to either be WITH_MOTIF or just rely on the user setting USE_MOTIF. -- 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 Jun 23 14:54:43 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 1766216A4CF for ; Wed, 23 Jun 2004 14:54:42 +0000 (GMT) Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id C801743D58 for ; Wed, 23 Jun 2004 14:54:42 +0000 (GMT) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.202] (helo=mgr2.xmission.com) by mgr3.xmission.com with esmtp (Exim 4.32) id 1Bd995-0001Rh-QV; Wed, 23 Jun 2004 08:54:39 -0600 Received: from [198.60.22.206] (helo=mgr6.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1Bd995-0001ns-02; Wed, 23 Jun 2004 08:54:39 -0600 Received: from [166.70.56.15] (helo=misty.eyesbeyond.com) by mgr6.xmission.com with esmtp (Exim 4.31) id 1Bd994-0008Oz-Rl; Wed, 23 Jun 2004 08:54:39 -0600 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i5NEsb8r069585; Wed, 23 Jun 2004 08:54:37 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.11/8.12.11/Submit) id i5NEsX0e069584; Wed, 23 Jun 2004 08:54:33 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 23 Jun 2004 08:54:33 -0600 From: Greg Lewis To: Muhammad Reza Message-ID: <20040623145433.GB69425@misty.eyesbeyond.com> References: <40D92333.2010607@mra.co.id> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <40D92333.2010607@mra.co.id> User-Agent: Mutt/1.4.2.1i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr3.xmission.com X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=8.0 tests=BAYES_00 autolearn=no version=2.63 X-SA-Exim-Connect-IP: 198.60.22.202 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 4.0 (built Sat, 24 Apr 2004 12:31:30 +0200) X-SA-Exim-Scanned: Yes (on mgr3.xmission.com) cc: java@freebsd.org Subject: Re: tomcat wont start at boot time 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, 23 Jun 2004 14:54:43 -0000 On Wed, Jun 23, 2004 at 01:29:07PM +0700, Muhammad Reza wrote: > Recently i installed jakarta-tomcat-5.0.25 (binary source) on FreeBSD-4.10R, > I can running it manually with this command > #su -f -m www -c "/usr/local/jakarta-tomcat-5.0.25/bin/catalina.sh start" > but tomcat wont start everytime i boot, even i did symbolic link > catalina.sh to /usr/local/etc/rc.d/ > I guess is something w/ JAVA_HOME env. > and I did set this at /etc/profile and csh env > #cat /etc/profile > JAVA_HOME=/usr/local/jdk1.4.2 > export JAVA_HOME > # cat /etc/csh.cshrc > setenv JAVA_HOME /usr/local/jdk1.4.2 > but it still can start at boot, > please help me.... What do you see when you try and start it with /usr/local/etc/rc.d/020.jakarta-tomcat50.sh start ? -- 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 Jun 23 15:10:24 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 2D83016A4ED for ; Wed, 23 Jun 2004 15:10:24 +0000 (GMT) Received: from wjv.com (user38.net339.fl.sprint-hsd.net [65.40.24.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9873A43D5E for ; Wed, 23 Jun 2004 15:10:16 +0000 (GMT) (envelope-from bv@bilver.wjv.com) Received: from bilver.wjv.com (localhost.wjv.com [127.0.0.1]) by wjv.com (8.12.11/8.12.11) with ESMTP id i5NFAEsU099567; Wed, 23 Jun 2004 11:10:14 -0400 (EDT) (envelope-from bv@bilver.wjv.com) Received: (from bv@localhost) by bilver.wjv.com (8.12.11/8.12.11/Submit) id i5NFADGi099566; Wed, 23 Jun 2004 11:10:13 -0400 (EDT) (envelope-from bv) Date: Wed, 23 Jun 2004 11:10:12 -0400 From: Bill Vermillion To: Panagiotis Astithas Message-ID: <20040623151012.GF92562@wjv.com> References: <40D8D3D3.3090303@teel.ws> <40D930CB.4060008@noc.ntua.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40D930CB.4060008@noc.ntua.gr> Organization: W.J.Vermillion / Orlando - Winter Park ReplyTo: bv@wjv.com User-Agent: Mutt/1.5.6i cc: Mark Teel cc: freebsd-java@freebsd.org Subject: Re: Core Dump in JEdit Port Building on 5.2.1 Kernel X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: bv@wjv.com List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jun 2004 15:10:24 -0000 On Wed, Jun 23, 2004 at 10:27 , Panagiotis Astithas exclaimed "Las Cucarachas entran, Pero no pueden salir", and then rambled on saying with: > Mark Teel wrote: > >When I try to build JEdit from ports on a 5.2.1 system, it core dumps > >while checking to see if it is already installed. > >Does anyone know the reason for this or a work around? > You have to provide more details, like the output from 'make > install' or whatever you used. We can't guess which process > dumps core otherwise. I just tried this on a 4.10. I tried earlier, did a make clean, and then accidentally removed all the files, so I did a fresh cvsup on the ports [even though I do that nightly]. This is the result of that. I did get a java.core dump earlier but accidentally nuked that. Script started on Wed Jun 23 11:06:25 2004 root@bilver.wjv.com# make -dm Examining /usr/ports/editors/jedit/work/.configure_done.jedit-4.1.0_1._usr_local...modified 10:29:35 Jun 23, 2004...:: operator and no sources...out-of-date. update time: 10:29:35 Jun 23, 2004 Examining configure...non-existent...modified before source...out-of-date. update time: 11:06:33 Jun 23, 2004 Examining build...non-existent...modified before source...out-of-date. update time: 11:06:33 Jun 23, 2004 Examining all...non-existent...modified before source...out-of-date. update time: 11:06:33 Jun 23, 2004 root@bilver.wjv.com# l total 58 drwxr-xr-x 4 root wheel 512 Jun 23 11:06 . drwxr-xr-x 231 root wheel 5120 Jun 18 22:03 .. -rw-r--r-- 1 root wheel 1111 Apr 10 13:26 Makefile -rw-r--r-- 1 root wheel 96 Jan 29 02:23 distinfo drwxr-xr-x 2 root wheel 512 Jun 30 2003 files -rw-r--r-- 1 root wheel 1215 Jun 22 2000 pkg-descr -rw-r--r-- 1 root wheel 38330 Mar 23 2003 pkg-plist -rw-r--r-- 1 root wheel 43 Jun 23 11:06 typescript drwxr-xr-x 2 root wheel 512 Jun 23 10:29 work root@bilver.wjv.com# cd work root@bilver.wjv.com# l total 6 drwxr-xr-x 2 root wheel 512 Jun 23 10:29 . drwxr-xr-x 4 root wheel 512 Jun 23 11:06 .. -rw-r--r-- 1 root wheel 0 Jun 23 11:06 .build_done.jedit-4.1.0_1._usr_local -rw-r--r-- 1 root wheel 0 Jun 23 10:29 .configure_done.jedit-4.1.0_1._usr_local -rw-r--r-- 1 root wheel 0 Jun 23 10:29 .extract_done.jedit-4.1.0_1._usr_local -rw-r--r-- 1 root wheel 0 Jun 23 10:29 .patch_done.jedit-4.1.0_1._usr_local -rw-r--r-- 1 root wheel 259 Jun 23 10:29 jedit.sh root@bilver.wjv.com# cd .. root@bilver.wjv.com# exit Script done on Wed Jun 23 11:06:55 2004 -- Bill Vermillion - bv @ wjv . com From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 16:45: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 D490A16A4CE; Wed, 23 Jun 2004 16:45:39 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A42A43D5E; Wed, 23 Jun 2004 16:45:39 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i5NGj6UG002633; Thu, 24 Jun 2004 01:45:06 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Thu, 24 Jun 2004 01:45:06 +0900 From: Norikatsu Shigemura To: Volker Stolz Message-Id: <20040624014506.4e9d15b9.nork@FreeBSD.org> In-Reply-To: <20040623144934.GA69425@misty.eyesbeyond.com> References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> X-Mailer: Sylpheed version 0.9.11-gtk2-20040613 (GTK+ 2.4.3; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.4 (sakura.ninth-nine.com [219.127.74.121]); Thu, 24 Jun 2004 01:45:06 +0900 (JST) cc: java@FreeBSD.org cc: past@noc.ntua.gr Subject: Re: An alternative Eclipse 3 port 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, 23 Jun 2004 16:45:40 -0000 On Wed, 23 Jun 2004 08:49:34 -0600 Greg Lewis wrote: > On Wed, Jun 23, 2004 at 04:16:21PM +0300, Panagiotis Astithas wrote: > > I have updated the port skeleton in the above URL. This iteration builds > > Eclipse 3.0 RC3, contains a number of cleanups and bugfixes and sports > > two new configuration options: > Great work Panagiotis! Yes. And sorry I didn't confirm it, yet. > > - defining WITHOUT_GNOMEVFS skips the build of libswt-gnome-gtk-3061.so > > and avoids the dependency on the GNOME libraries > > - defining ECLIPSE_MOTIF builds the motif version of Eclipse. > > The motif version is not buildable yet, although I have made some > > progress besides the infrastructure part. I hope to have it ready by the > > time that Eclipse 3.0 ships next week. > > I would appreciate any comments, even alternative names for the > > variables (I know I suck at that). > I think the Gnome variable is fine (since I don't think you can do this > with OPTIONS). I'd change the Motif variable to either be WITH_MOTIF or > just rely on the user setting USE_MOTIF. Humm.. My TODO are: 1. JDK 1.3.1 (diabolo) support 2. mozilla-devel, firefox support. Do you think these? > Volker This is a chanse of support these. From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 17:00: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 235C916A4D0 for ; Wed, 23 Jun 2004 17:00:25 +0000 (GMT) Received: from oxyd.caraldi.com (caraldi.com [195.137.249.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2746443D4C for ; Wed, 23 Jun 2004 17:00:24 +0000 (GMT) (envelope-from jbq@anyware-tech.com) Received: from anyware12.anyware (services.modicon.com [81.56.241.65]) by oxyd.caraldi.com (Postfix) with ESMTP id 9A59C2137 for ; Wed, 23 Jun 2004 19:00:20 +0200 (CEST) Received: by anyware12.anyware (Postfix, from userid 615) id 4646E6646; Wed, 23 Jun 2004 19:00:20 +0200 (CEST) Date: Wed, 23 Jun 2004 19:00:20 +0200 From: Jean-Baptiste Quenot To: java@freebsd.org Message-ID: <20040623170017.GC77623@anyware12.anyware> Mail-Followup-To: java@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rwEMma7ioTxnRzrJ" Content-Disposition: inline User-Agent: Mutt/1.5.6i Subject: java/jdk14 crashes 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, 23 Jun 2004 17:00:25 -0000 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, Please find below repeated crashes of the JVM. I am running www/resin2 on a web server. Java HotSpot(TM) Client VM warning: Unexpected Signal 4 occured under user-= defined signal handler 0x2848d030 Java HotSpot(TM) Client VM warning: Unexpected Signal 4 occured under user-= defined signal handler 0x2848d030 Unexpected Signal : 4 occurred at PC=3D0x282570DC Function=3D+0xEEF0 Library=3D/usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so Current Java thread: at java.lang.Object.wait(Native Method) - waiting on <0x2c94f048> (a java.lang.ref.Reference$Lock) at java.lang.Object.wait(Object.java:429) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115) - locked <0x2c94f048> (a java.lang.ref.Reference$Lock) Dynamic libraries: 0x8048000 /usr/local/jdk1.4.2/bin/java 0x28070000 /usr/lib/libc_r.so.5 0x28093000 /usr/lib/libc.so.5 0x2816c000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so 0x285b7000 /usr/lib/libstdc++.so.4 0x2866c000 /usr/lib/libm.so.2 0x28689000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so 0x28697000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so 0x286ad000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so 0x286cb000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so 0x34cef000 /usr/local/resin2/libexec/libresin.so 0x34cf4000 /usr/lib/libssl.so.3 0x34d25000 /usr/lib/libcrypto.so.3 0x34e30000 /usr/local/jdk1.4.2/jre/lib/i386/libnet.so 0x2804e000 /usr/libexec/ld-elf.so.1 Heap at VM Abort: Heap def new generation total 2112K, used 295K [0x2c460000, 0x2c6a0000, 0x2c9= 40000) eden space 1920K, 5% used [0x2c460000, 0x2c479ec8, 0x2c640000) from space 192K, 100% used [0x2c670000, 0x2c6a0000, 0x2c6a0000) to space 192K, 0% used [0x2c640000, 0x2c640000, 0x2c670000) tenured generation total 27272K, used 16531K [0x2c940000, 0x2e3e2000, 0x= 30460000) the space 27272K, 60% used [0x2c940000, 0x2d964ee8, 0x2d965000, 0x2e3e2= 000) compacting perm gen total 10752K, used 10686K [0x30460000, 0x30ee0000, 0x= 34460000) the space 10752K, 99% used [0x30460000, 0x30ecf898, 0x30ecfa00, 0x30ee0= 000) Local Time =3D Thu Jun 17 00:08:09 2004 Elapsed Time =3D 4199 # # HotSpot Virtual Machine Error : 4 # Error ID : 4F530E43505002F1 # Please report this error to # freebsd-java@FreeBSD.org mailing list # # Java VM: Java HotSpot(TM) Client VM (1.4.2-p6-jbq_23_mar_2004_11_08 mixed= mode) # # An error report file has been saved as hs_err_pid75636.log. # Please refer to the file for further information. # Unexpected Signal : 4 occurred at PC=3D0x282570DC Function=3D+0xEEF0 Library=3D/usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so Dynamic libraries: 0x8048000 /usr/local/jdk1.4.2/bin/java 0x28070000 /usr/lib/libc_r.so.5 0x28093000 /usr/lib/libc.so.5 0x2816c000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so 0x285b7000 /usr/lib/libstdc++.so.4 0x2866c000 /usr/lib/libm.so.2 0x28689000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so 0x28697000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so 0x286ad000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so 0x286cb000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so 0x34cef000 /usr/local/resin2/libexec/libresin.so 0x34cf4000 /usr/lib/libssl.so.3 0x34d25000 /usr/lib/libcrypto.so.3 0x34e30000 /usr/local/jdk1.4.2/jre/lib/i386/libnet.so 0x2804e000 /usr/libexec/ld-elf.so.1 Heap at VM Abort: Heap def new generation total 3200K, used 1335K [0x2c460000, 0x2c7d0000, 0x2c= 940000) eden space 2880K, 44% used [0x2c460000, 0x2c59fa50, 0x2c730000) from space 320K, 17% used [0x2c780000, 0x2c78e2e8, 0x2c7d0000) to space 320K, 0% used [0x2c730000, 0x2c730000, 0x2c780000) tenured generation total 41480K, used 37245K [0x2c940000, 0x2f1c2000, 0x= 30460000) the space 41480K, 89% used [0x2c940000, 0x2ed9f528, 0x2ed9f600, 0x2f1c2= 000) compacting perm gen total 14848K, used 14753K [0x30460000, 0x312e0000, 0x= 34460000) the space 14848K, 99% used [0x30460000, 0x312c8418, 0x312c8600, 0x312e0= 000) Local Time =3D Fri Jun 18 00:10:37 2004 Elapsed Time =3D 48178 # # HotSpot Virtual Machine Error : 4 # Error ID : 4F530E43505002F1 # Please report this error to # freebsd-java@FreeBSD.org mailing list # # Java VM: Java HotSpot(TM) Client VM (1.4.2-p6-jbq_23_mar_2004_11_08 mixed= mode) # # An error report file has been saved as hs_err_pid29814.log. # Please refer to the file for further information. # Unexpected Signal : 11 occurred at PC=3D0x282570DC Function=3D+0xEEF0 Library=3D/usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so Current Java thread: at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:429) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115) - locked <0x2c94e000> (a java.lang.ref.Reference$Lock) Dynamic libraries: 0x8048000 /usr/local/jdk1.4.2/bin/java 0x28070000 /usr/lib/libc_r.so.5 0x28093000 /usr/lib/libc.so.5 0x2816c000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so 0x285b7000 /usr/lib/libstdc++.so.4 0x2866c000 /usr/lib/libm.so.2 0x28689000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so 0x28697000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so 0x286ad000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so 0x286cb000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so 0x34cef000 /usr/local/resin2/libexec/libresin.so 0x34cf4000 /usr/lib/libssl.so.3 0x34d25000 /usr/lib/libcrypto.so.3 0x34e30000 /usr/local/jdk1.4.2/jre/lib/i386/libnet.so 0x352af000 /usr/local/jdk1.4.2/jre/lib/i386/libjpeg.so 0x35869000 /usr/local/jdk1.4.2/jre/lib/i386/libawt.so 0x352e4000 /usr/local/jdk1.4.2/jre/lib/i386/libmlib_image.so 0x35330000 /usr/X11R6/lib/libXp.so.6 0x35358000 /usr/X11R6/lib/libXt.so.6 0x35338000 /usr/X11R6/lib/libXext.so.6 0x35346000 /usr/X11R6/lib/libXtst.so.6 0x353a7000 /usr/X11R6/lib/libXmu.so.6 0x35add000 /usr/X11R6/lib/libX11.so.6 0x3534b000 /usr/X11R6/lib/libSM.so.6 0x353bd000 /usr/X11R6/lib/libICE.so.6 0x2804e000 /usr/libexec/ld-elf.so.1 Heap at VM Abort: Heap def new generation total 3456K, used 3064K [0x2c460000, 0x2c820000, 0x2c= 940000) eden space 3072K, 91% used [0x2c460000, 0x2c71e588, 0x2c760000) from space 384K, 66% used [0x2c7c0000, 0x2c7ffe30, 0x2c820000) to space 384K, 0% used [0x2c760000, 0x2c760000, 0x2c7c0000) tenured generation total 45652K, used 40264K [0x2c940000, 0x2f5d5000, 0x= 30460000) the space 45652K, 88% used [0x2c940000, 0x2f092338, 0x2f092400, 0x2f5d5= 000) compacting perm gen total 15360K, used 15121K [0x30460000, 0x31360000, 0x= 34460000) the space 15360K, 98% used [0x30460000, 0x313246f0, 0x31324800, 0x31360= 000) Local Time =3D Sun Jun 20 00:37:36 2004 Elapsed Time =3D 182864 # # HotSpot Virtual Machine Error : 11 # Error ID : 4F530E43505002F1 # Please report this error to # freebsd-java@FreeBSD.org mailing list # # Java VM: Java HotSpot(TM) Client VM (1.4.2-p6-jbq_23_mar_2004_11_08 mixed= mode) # Java HotSpot(TM) Client VM warning: Unexpected Signal 11 occured under user= -defined signal handler 0x2848d030 Unexpected Signal : 4 occurred at PC=3D0x282570DC Function=3D+0xEEF0 Library=3D/usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so Current Java thread: Dynamic libraries: 0x8048000 /usr/local/jdk1.4.2/bin/java 0x28070000 /usr/lib/libc_r.so.5 0x28093000 /usr/lib/libc.so.5 0x2816c000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so 0x285b7000 /usr/lib/libstdc++.so.4 0x2866c000 /usr/lib/libm.so.2 0x28689000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so 0x28697000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so 0x286ad000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so 0x286cb000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so 0x34cef000 /usr/local/resin2/libexec/libresin.so 0x34cf4000 /usr/lib/libssl.so.3 0x34d25000 /usr/lib/libcrypto.so.3 0x34e30000 /usr/local/jdk1.4.2/jre/lib/i386/libnet.so 0x2804e000 /usr/libexec/ld-elf.so.1 Heap at VM Abort: Heap def new generation total 2752K, used 1374K [0x2c460000, 0x2c750000, 0x2c= 940000) eden space 2496K, 50% used [0x2c460000, 0x2c59daa8, 0x2c6d0000) from space 256K, 40% used [0x2c710000, 0x2c729d98, 0x2c750000) to space 256K, 0% used [0x2c6d0000, 0x2c6d0000, 0x2c710000) tenured generation total 35240K, used 28788K [0x2c940000, 0x2ebaa000, 0x= 30460000) the space 35240K, 81% used [0x2c940000, 0x2e55d2e8, 0x2e55d400, 0x2ebaa= 000) compacting perm gen total 12544K, used 12526K [0x30460000, 0x310a0000, 0x= 34460000) the space 12544K, 99% used [0x30460000, 0x3109b9c0, 0x3109ba00, 0x310a0= 000) Local Time =3D Mon Jun 21 00:16:18 2004 Elapsed Time =3D 89224 # # HotSpot Virtual Machine Error : 4 # Error ID : 4F530E43505002F1 # Please report this error to # freebsd-java@FreeBSD.org mailing list # # Java VM: Java HotSpot(TM) Client VM (1.4.2-p6-jbq_23_mar_2004_11_08 mixed= mode) # # An error report file has been saved as hs_err_pid54480.log. # Please refer to the file for further information. # Unexpected Signal : 4 occurred at PC=3D0x282570DC Function=3D+0xEEF0 Library=3D/usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so Dynamic libraries: 0x8048000 /usr/local/jdk1.4.2/bin/java 0x28070000 /usr/lib/libc_r.so.5 0x28093000 /usr/lib/libc.so.5 0x2816c000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so 0x285b7000 /usr/lib/libstdc++.so.4 0x2866c000 /usr/lib/libm.so.2 0x28689000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so 0x28697000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so 0x286ad000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so 0x286cb000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so 0x34cef000 /usr/local/resin2/libexec/libresin.so 0x34cf4000 /usr/lib/libssl.so.3 0x34d25000 /usr/lib/libcrypto.so.3 0x34e30000 /usr/local/jdk1.4.2/jre/lib/i386/libnet.so 0x2804e000 /usr/libexec/ld-elf.so.1 Heap at VM Abort: Heap def new generation total 3072K, used 2627K [0x2c460000, 0x2c7b0000, 0x2c= 940000) eden space 2752K, 91% used [0x2c460000, 0x2c6d5990, 0x2c710000) from space 320K, 33% used [0x2c710000, 0x2c72b2e8, 0x2c760000) to space 320K, 0% used [0x2c760000, 0x2c760000, 0x2c7b0000) tenured generation total 39924K, used 39881K [0x2c940000, 0x2f03d000, 0x= 30460000) the space 39924K, 99% used [0x2c940000, 0x2f032718, 0x2f032800, 0x2f03d= 000) compacting perm gen total 14080K, used 13843K [0x30460000, 0x31220000, 0x= 34460000) the space 14080K, 98% used [0x30460000, 0x311e4e10, 0x311e5000, 0x31220= 000) Local Time =3D Wed Jun 23 00:07:04 2004 Elapsed Time =3D 180587 # # HotSpot Virtual Machine Error : 4 # Error ID : 4F530E43505002F1 # Please report this error to # freebsd-java@FreeBSD.org mailing list # # Java VM: Java HotSpot(TM) Client VM (1.4.2-p6-jbq_23_mar_2004_11_08 mixed= mode) # # An error report file has been saved as hs_err_pid95459.log. # Please refer to the file for further information. # --=20 Jean-Baptiste Quenot http://caraldi.com/jbq/ --rwEMma7ioTxnRzrJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFA2bch9xx3BCMc9gsRAkDoAJ0SMPrkO+O6/ahL2J1hOJVkHxPsHgCfWeFe cs2ULcUppr000UlaV8ef1Rc= =9K3Z -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- From owner-freebsd-java@FreeBSD.ORG Wed Jun 23 22: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 28AFB16A4CE; Wed, 23 Jun 2004 22:49:49 +0000 (GMT) Received: from gravy.kishka.net (pcp04097789pcs.neave01.pa.comcast.net [68.81.192.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93D4043D2F; Wed, 23 Jun 2004 22:49:48 +0000 (GMT) (envelope-from bryan@kishka.net) Received: from gravy.kishka.net (gravy.kishka.net [192.168.1.2]) by gravy.kishka.net (8.12.11/8.12.11) with ESMTP id i5NMnbRl001055; Wed, 23 Jun 2004 18:49:38 -0400 (EDT) (envelope-from bryan@kishka.net) Date: Wed, 23 Jun 2004 18:49:37 -0400 (EDT) From: Bryan Liesner To: Panagiotis Astithas In-Reply-To: <40D982A5.8050701@noc.ntua.gr> Message-ID: <20040623184811.P1025@gravy.kishka.net> References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: java@freebsd.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 23 Jun 2004 22:49:49 -0000 On Wed, 23 Jun 2004, Panagiotis Astithas wrote: > I have updated the port skeleton in the above URL. This iteration builds > Eclipse 3.0 RC3, contains a number of cleanups and bugfixes and sports two > new configuration options: > > - defining WITHOUT_GNOMEVFS skips the build of libswt-gnome-gtk-3061.so and > avoids the dependency on the GNOME libraries > > - defining ECLIPSE_MOTIF builds the motif version of Eclipse. > > The motif version is not buildable yet, although I have made some progress > besides the infrastructure part. I hope to have it ready by the time that > Eclipse 3.0 ships next week. > > I would appreciate any comments, even alternative names for the variables (I > know I suck at that). > > Cheers, > That's great news. Thanks for your work. I'm looking forward to the Motif build. -Bryan From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 04:11: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 AB73216A4D6 for ; Thu, 24 Jun 2004 04:11:39 +0000 (GMT) Received: from chen.org.nz (chen.org.nz [210.54.19.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69B0743D41 for ; Thu, 24 Jun 2004 04:11:39 +0000 (GMT) (envelope-from jonc@chen.org.nz) Received: by chen.org.nz (Postfix, from userid 1000) id B775913626; Thu, 24 Jun 2004 16:11:38 +1200 (NZST) Date: Thu, 24 Jun 2004 16:11:38 +1200 From: Jonathan Chen To: Muhammad Reza Message-ID: <20040624041138.GB62448@grimoire.chen.org.nz> References: <40D92333.2010607@mra.co.id> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40D92333.2010607@mra.co.id> User-Agent: Mutt/1.4.2.1i cc: java@freebsd.org Subject: Re: tomcat wont start at boot time 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, 24 Jun 2004 04:11:40 -0000 On Wed, Jun 23, 2004 at 01:29:07PM +0700, Muhammad Reza wrote: > Dear All, > > Recently i installed jakarta-tomcat-5.0.25 (binary source) on FreeBSD-4.10R, > I can running it manually with this command > #su -f -m www -c "/usr/local/jakarta-tomcat-5.0.25/bin/catalina.sh start" Use the ports system: ports/www/jakarta-tomcat5, and headaches like this go away. Cheers. -- Jonathan Chen ---------------------------------------------------------------------- Power corrupts, Absolute Power is pretty neat From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 07:41:51 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 D1C4116A4CE; Thu, 24 Jun 2004 07:41:51 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEA1643D1F; Thu, 24 Jun 2004 07:41:50 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5O7fWEr063113; Thu, 24 Jun 2004 10:41:32 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5O7fW61000695; Thu, 24 Jun 2004 10:41:32 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DA85AC.3080909@noc.ntua.gr> Date: Thu, 24 Jun 2004 10:41:32 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Norikatsu Shigemura References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <20040624014506.4e9d15b9.nork@FreeBSD.org> In-Reply-To: <20040624014506.4e9d15b9.nork@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org cc: Volker Stolz Subject: Re: An alternative Eclipse 3 port 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, 24 Jun 2004 07:41:52 -0000 Norikatsu Shigemura wrote: > Humm.. My TODO are: > 1. JDK 1.3.1 (diabolo) support Hmm, I don't think there is much point in this one, since only JDK 1.4 is officially supported. Check out the instructions.html file in the port's $WRKSRC. > 2. mozilla-devel, firefox support. This is definitely interesting, but I have a more urgent concern. Since eclipse 3.0 is based on mozilla 1.6, when we upgrade the mozilla port to the recent 1.7, the eclipse build might break. So if I were to propose a prioritized TODO list, I think this would be it: 1. Motif build 2. Make sure mozilla 1.7 doesn't cause any problems 3. Create knobs to use firefox, etc. Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 07:47: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 22E7C16A4CE; Thu, 24 Jun 2004 07:47:26 +0000 (GMT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B80B343D2F; Thu, 24 Jun 2004 07:47:24 +0000 (GMT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) 8.11.1-0.5-michaelw-20030918) with ESMTP id i5O7l1425351; Thu, 24 Jun 2004 09:47:01 +0200 Received: (from stolz@localhost)i5O7kwXs045617; Thu, 24 Jun 2004 09:46:58 +0200 (CEST) (envelope-from stolz) Date: Thu, 24 Jun 2004 09:46:58 +0200 From: Volker Stolz To: Panagiotis Astithas Message-ID: <20040624074658.GF76651@i2.informatik.rwth-aachen.de> References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <20040624014506.4e9d15b9.nork@FreeBSD.org> <40DA85AC.3080909@noc.ntua.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <40DA85AC.3080909@noc.ntua.gr> X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.4i cc: java@FreeBSD.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 24 Jun 2004 07:47:26 -0000 Am 24. Jun 2004 um 09:41 CEST schrieb Panagiotis Astithas: > Norikatsu Shigemura wrote: > > Humm.. My TODO are: > > 1. JDK 1.3.1 (diabolo) support > > Hmm, I don't think there is much point in this one, since only JDK 1.4 > is officially supported. Check out the instructions.html file in the > port's $WRKSRC. That's in line with my (and other people's) experience: Norikatsu, can we set the JDK for Eclipse to 1.4 please? Nobody's come up with a "Yeah, I've got it working with 1.3"... Volker -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME Neu! Ändern Sie den Anfangstag Ihrer Woche From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 07:53:58 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 830C416A4CE; Thu, 24 Jun 2004 07:53:58 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id D193443D41; Thu, 24 Jun 2004 07:53:57 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i5O7rASi008060; Thu, 24 Jun 2004 10:53:10 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5O7rAqU001262; Thu, 24 Jun 2004 10:53:10 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DA8866.1010008@noc.ntua.gr> Date: Thu, 24 Jun 2004 10:53:10 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <20040624014506.4e9d15b9.nork@FreeBSD.org> <40DA85AC.3080909@noc.ntua.gr> <20040624074658.GF76651@i2.informatik.rwth-aachen.de> In-Reply-To: <20040624074658.GF76651@i2.informatik.rwth-aachen.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 24 Jun 2004 07:53:58 -0000 Volker Stolz wrote: > Am 24. Jun 2004 um 09:41 CEST schrieb Panagiotis Astithas: > >>Norikatsu Shigemura wrote: >> >>> Humm.. My TODO are: >>> 1. JDK 1.3.1 (diabolo) support >> >>Hmm, I don't think there is much point in this one, since only JDK 1.4 >>is officially supported. Check out the instructions.html file in the >>port's $WRKSRC. > > > That's in line with my (and other people's) experience: Norikatsu, can > we set the JDK for Eclipse to 1.4 please? Nobody's come up with a > "Yeah, I've got it working with 1.3"... I think it is already set to 1.4 in all eclipse 3.0 port skeletons that have been posted in the list. It certainly is in mine :-) -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 09:15: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 A69C316A4CE; Thu, 24 Jun 2004 09:15:04 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id E64A343D41; Thu, 24 Jun 2004 09:15:03 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i5O9DlSi029480; Thu, 24 Jun 2004 12:13:47 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5O9DkGR008306; Thu, 24 Jun 2004 12:13:47 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DA9B4A.5080005@noc.ntua.gr> Date: Thu, 24 Jun 2004 12:13:46 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Greg Lewis References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> In-Reply-To: <20040623144934.GA69425@misty.eyesbeyond.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 24 Jun 2004 09:15:04 -0000 Greg Lewis wrote: > I think the Gnome variable is fine (since I don't think you can do this > with OPTIONS). I'd change the Motif variable to either be WITH_MOTIF or > just rely on the user setting USE_MOTIF. I picked the former (WITH_MOTIF), since the latter is apparently forbidden from the following snippet in open-motif/Makefile (on which we depend): .ifdef USE_MOTIF .error You have `USE_MOTIF' variable defined either in environment or in make(1) arguments. Please undefine and try again. .endif Thanks for the suggestion, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 09:48:48 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 A53B616A4CE; Thu, 24 Jun 2004 09:48:48 +0000 (GMT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 475EC43D49; Thu, 24 Jun 2004 09:48:47 +0000 (GMT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) 8.11.1-0.5-michaelw-20030918) with ESMTP id i5O9mV430221; Thu, 24 Jun 2004 11:48:31 +0200 Received: (from stolz@localhost)i5O9mWBc068431; Thu, 24 Jun 2004 11:48:32 +0200 (CEST) (envelope-from stolz) Date: Thu, 24 Jun 2004 11:48:32 +0200 From: Volker Stolz To: Panagiotis Astithas Message-ID: <20040624094832.GP76651@i2.informatik.rwth-aachen.de> References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <20040624014506.4e9d15b9.nork@FreeBSD.org> <40DA85AC.3080909@noc.ntua.gr> <20040624074658.GF76651@i2.informatik.rwth-aachen.de> <40DA8866.1010008@noc.ntua.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <40DA8866.1010008@noc.ntua.gr> X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.4i cc: java@FreeBSD.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 24 Jun 2004 09:48:48 -0000 Am 24. Jun 2004 um 09:53 CEST schrieb Panagiotis Astithas: > I think it is already set to 1.4 in all eclipse 3.0 port skeletons that > have been posted in the list. It certainly is in mine :-) Yes, but java/eclipse still has 1.3+ -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME Neu! Ändern Sie den Anfangstag Ihrer Woche From owner-freebsd-java@FreeBSD.ORG Thu Jun 24 10:08:29 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 790A416A4CE; Thu, 24 Jun 2004 10:08:29 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDE6343D39; Thu, 24 Jun 2004 10:08:28 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i5OA7dSi046955; Thu, 24 Jun 2004 13:07:39 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5OA7cUs014452; Thu, 24 Jun 2004 13:07:38 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DAA7EA.7080406@noc.ntua.gr> Date: Thu, 24 Jun 2004 13:07:38 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Volker Stolz References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <20040624014506.4e9d15b9.nork@FreeBSD.org> <40DA85AC.3080909@noc.ntua.gr> <20040624074658.GF76651@i2.informatik.rwth-aachen.de> <40DA8866.1010008@noc.ntua.gr> <20040624094832.GP76651@i2.informatik.rwth-aachen.de> In-Reply-To: <20040624094832.GP76651@i2.informatik.rwth-aachen.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@FreeBSD.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 24 Jun 2004 10:08:29 -0000 Volker Stolz wrote: > Am 24. Jun 2004 um 09:53 CEST schrieb Panagiotis Astithas: > >>I think it is already set to 1.4 in all eclipse 3.0 port skeletons that >>have been posted in the list. It certainly is in mine :-) > > > Yes, but java/eclipse still has 1.3+ Well, in that case my comment does not apply. The same file in the Eclipse 2.1.3 distribution mentions JDK 1.3. Then again, if nobody can verify its correctness with our JDK, it may as well change there too. Cheers, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 01:52: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 40CE616A4CE; Fri, 25 Jun 2004 01:52:34 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C69143D39; Fri, 25 Jun 2004 01:52:34 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from [192.160.235.2] (cs242743-143.austin.rr.com [24.27.43.143]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.soaustin.net (Postfix) with ESMTP id 94D1E141DF; Thu, 24 Jun 2004 20:52:01 -0500 (CDT) From: Mark Linimon Organization: Lonesome Dove Computing Services To: freebsd-java@freebsd.org Date: Thu, 24 Jun 2004 20:49:43 -0500 User-Agent: KMail/1.6.2 References: <40CFFE0F.6040403@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <40DA9B4A.5080005@noc.ntua.gr> In-Reply-To: <40DA9B4A.5080005@noc.ntua.gr> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200406242049.43722.linimon@lonesome.com> cc: java@FreeBSD.org cc: Panagiotis Astithas cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 25 Jun 2004 01:52:34 -0000 > I picked the former (WITH_MOTIF), since the latter is apparently > forbidden from the following snippet in open-motif/Makefile (on which we > depend): > > .ifdef USE_MOTIF > .error You have `USE_MOTIF' variable defined either in environment or in > make(1) arguments. Please undefine and try again. > .endif The WITH_* variables are intended to be user settable. The USE_* variables are intended to be set only by the ports framework. The use of .error is a bug in this case. If someone sets USE_MOTIF in /etc/make.conf (which should _not_ have USE_* variables set, but ...), then 'make index' will fail, and probably 'make search' as well. The correct usage AFAICT is to set the IGNORE Makevar instead of using .error, in all cases. Is it really true that Eclipse is intended as a slave port of open-motif? Or is this just a case of trying to reuse common code? mcl From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 01:52: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 40CE616A4CE; Fri, 25 Jun 2004 01:52:34 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C69143D39; Fri, 25 Jun 2004 01:52:34 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from [192.160.235.2] (cs242743-143.austin.rr.com [24.27.43.143]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.soaustin.net (Postfix) with ESMTP id 94D1E141DF; Thu, 24 Jun 2004 20:52:01 -0500 (CDT) From: Mark Linimon Organization: Lonesome Dove Computing Services To: freebsd-java@freebsd.org Date: Thu, 24 Jun 2004 20:49:43 -0500 User-Agent: KMail/1.6.2 References: <40CFFE0F.6040403@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <40DA9B4A.5080005@noc.ntua.gr> In-Reply-To: <40DA9B4A.5080005@noc.ntua.gr> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200406242049.43722.linimon@lonesome.com> cc: java@FreeBSD.org cc: Panagiotis Astithas cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 25 Jun 2004 01:52:34 -0000 > I picked the former (WITH_MOTIF), since the latter is apparently > forbidden from the following snippet in open-motif/Makefile (on which we > depend): > > .ifdef USE_MOTIF > .error You have `USE_MOTIF' variable defined either in environment or in > make(1) arguments. Please undefine and try again. > .endif The WITH_* variables are intended to be user settable. The USE_* variables are intended to be set only by the ports framework. The use of .error is a bug in this case. If someone sets USE_MOTIF in /etc/make.conf (which should _not_ have USE_* variables set, but ...), then 'make index' will fail, and probably 'make search' as well. The correct usage AFAICT is to set the IGNORE Makevar instead of using .error, in all cases. Is it really true that Eclipse is intended as a slave port of open-motif? Or is this just a case of trying to reuse common code? mcl From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 06:24: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 5492816A4CE; Fri, 25 Jun 2004 06:24:02 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C78A43D46; Fri, 25 Jun 2004 06:24:01 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i5P6MQSi075168; Fri, 25 Jun 2004 09:22:26 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5P6MLvR073568; Fri, 25 Jun 2004 09:22:22 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DBC49D.7070003@noc.ntua.gr> Date: Fri, 25 Jun 2004 09:22:21 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mark Linimon References: <40CFFE0F.6040403@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <40DA9B4A.5080005@noc.ntua.gr> <200406242049.43722.linimon@lonesome.com> In-Reply-To: <200406242049.43722.linimon@lonesome.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@freebsd.org cc: Norikatsu Shigemura cc: freebsd-java@freebsd.org Subject: Re: An alternative Eclipse 3 port 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, 25 Jun 2004 06:24:02 -0000 Mark Linimon wrote: >>I picked the former (WITH_MOTIF), since the latter is apparently >>forbidden from the following snippet in open-motif/Makefile (on which we >>depend): >> >>.ifdef USE_MOTIF >>.error You have `USE_MOTIF' variable defined either in environment or in >>make(1) arguments. Please undefine and try again. >>.endif > > > The WITH_* variables are intended to be user settable. The USE_* variables > are intended to be set only by the ports framework. That's what I figured too, by skimming through the ports tree (USE_MOTIF is never used in an if clause). > The use of .error is a bug in this case. If someone sets USE_MOTIF in > /etc/make.conf (which should _not_ have USE_* variables set, but ...), > then 'make index' will fail, and probably 'make search' as well. > > The correct usage AFAICT is to set the IGNORE Makevar instead of using > .error, in all cases. > > Is it really true that Eclipse is intended as a slave port of open-motif? Or > is this just a case of trying to reuse common code? The latter actually, I was looking for prior art. Not that I found it though. There are instances of WITHOUT_MOTIF (e.g. kdebase), but no WITH_MOTIF that I could find. Thanks for the clarification, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 06:24: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 5492816A4CE; Fri, 25 Jun 2004 06:24:02 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C78A43D46; Fri, 25 Jun 2004 06:24:01 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i5P6MQSi075168; Fri, 25 Jun 2004 09:22:26 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.220.45] (hal.noc.ntua.gr [147.102.220.45]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5P6MLvR073568; Fri, 25 Jun 2004 09:22:22 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DBC49D.7070003@noc.ntua.gr> Date: Fri, 25 Jun 2004 09:22:21 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040609) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mark Linimon References: <40CFFE0F.6040403@noc.ntua.gr> <20040623144934.GA69425@misty.eyesbeyond.com> <40DA9B4A.5080005@noc.ntua.gr> <200406242049.43722.linimon@lonesome.com> In-Reply-To: <200406242049.43722.linimon@lonesome.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@freebsd.org cc: Norikatsu Shigemura cc: freebsd-java@freebsd.org Subject: Re: An alternative Eclipse 3 port 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, 25 Jun 2004 06:24:02 -0000 Mark Linimon wrote: >>I picked the former (WITH_MOTIF), since the latter is apparently >>forbidden from the following snippet in open-motif/Makefile (on which we >>depend): >> >>.ifdef USE_MOTIF >>.error You have `USE_MOTIF' variable defined either in environment or in >>make(1) arguments. Please undefine and try again. >>.endif > > > The WITH_* variables are intended to be user settable. The USE_* variables > are intended to be set only by the ports framework. That's what I figured too, by skimming through the ports tree (USE_MOTIF is never used in an if clause). > The use of .error is a bug in this case. If someone sets USE_MOTIF in > /etc/make.conf (which should _not_ have USE_* variables set, but ...), > then 'make index' will fail, and probably 'make search' as well. > > The correct usage AFAICT is to set the IGNORE Makevar instead of using > .error, in all cases. > > Is it really true that Eclipse is intended as a slave port of open-motif? Or > is this just a case of trying to reuse common code? The latter actually, I was looking for prior art. Not that I found it though. There are instances of WITHOUT_MOTIF (e.g. kdebase), but no WITH_MOTIF that I could find. Thanks for the clarification, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 14:30: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 8740216A4CE for ; Fri, 25 Jun 2004 14:30:25 +0000 (GMT) Received: from smtpout01-04.mesa1.secureserver.net (smtpout01-04.mesa1.secureserver.net [64.202.165.79]) by mx1.FreeBSD.org (Postfix) with SMTP id 3D6F843D1D for ; Fri, 25 Jun 2004 14:30:25 +0000 (GMT) (envelope-from mriem@manorrock.org) Received: (qmail 26391 invoked from network); 25 Jun 2004 14:29:58 -0000 Received: from unknown (131.155.99.210) by smtpout01-04.mesa1.secureserver.net (64.202.165.79) with ESMTP; 25 Jun 2004 14:29:58 -0000 From: "Manfred Riem" To: Date: Fri, 25 Jun 2004 16:30:01 +0200 Organization: Manor 'n Rock MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcRawOXUZq0L1j+ZTIC8sPs1rCdvWQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Message-Id: <20040625143025.3D6F843D1D@mx1.FreeBSD.org> Subject: Anyone using NetBeans 3.6? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mriem@manorrock.org List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jun 2004 14:30:25 -0000 Hi there, Is anyone using NetBeans 3.6 here? I have a problem with the CVS profile (actually any profile won't show up). Any hints? Regards, Manfred Riem From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 21:23: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 B8F7C16A509 for ; Fri, 25 Jun 2004 21:23:31 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB0D843D49 for ; Fri, 25 Jun 2004 21:23:30 +0000 (GMT) (envelope-from gwk@rahn-koltermann.de) Received: from [212.227.126.162] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bdy9M-0002vH-00 for freebsd-java@freebsd.org; Fri, 25 Jun 2004 23:22:20 +0200 Received: from [217.232.135.89] (helo=[192.168.0.3]) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 1Bdy9M-0004KR-00; Fri, 25 Jun 2004 23:22:20 +0200 From: "Georg-W. Koltermann" To: freebsd@rahn-koltermann.de In-Reply-To: <27942123$108780685740d69d89842426.94589133@config12.schlund.de> References: <27942123$108780685740d69d89842426.94589133@config12.schlund.de> Content-Type: text/plain; charset=iso-8859-15 Message-Id: <1088198538.1134.6.camel@localhost.muc.eu.mscsoftware.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 25 Jun 2004 23:22:19 +0200 Content-Transfer-Encoding: quoted-printable X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:90bcaad5e51ecc993b2919ba4b74e6dc cc: freebsd-java@freebsd.org Subject: Re: java plugin not using cookies any more? 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, 25 Jun 2004 21:23:31 -0000 Am Mo, den 21.06.2004 schrieb freebsd@rahn-koltermann.de um 10:40: > Hi, >=20 > a while back I noticed that in mozilla 1.(4,5? don't recall which) > I could not use our Niku time tracking tool any more. The applet > would report a connection error just as if I wasn't logged on. My > interpretation was that the applet for some reason was not using > the cookies that I got at the preceeding (form base) login. =20 Forget me, sorry. I was actually loading a local HTML file that I had hacked, and inserted . It was with this file when the browser/plugin did not transmit the cookies to ...originalurl... It works fine for pages that are actually loaded from the server, just not when a local file:///... is loaded that points the nested relative URLs at the server. So probably just a little tighter checking on when to give out the cookies, very reasonable. --=20 Gr=FC=DFe, Georg. From owner-freebsd-java@FreeBSD.ORG Fri Jun 25 23:32:56 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 444AA16A4CE for ; Fri, 25 Jun 2004 23:32:56 +0000 (GMT) Received: from goliath.nxlkhost.com (goliath.nxlkhost.com [207.155.252.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id 242F243D39 for ; Fri, 25 Jun 2004 23:32:56 +0000 (GMT) (envelope-from dhockin@staffware-spokane.com) Received: from [127.0.0.1] (403254C2.ptr.dia.nextlink.net [64.50.84.194]) by goliath.nxlkhost.com id TAA05604; Fri, 25 Jun 2004 19:32:46 -0400 (EDT) [ConcentricHost SMTP Relay 1.17] Errors-To: Message-ID: <40DCB620.5050204@staffware-spokane.com> Date: Fri, 25 Jun 2004 16:32:48 -0700 From: Doug Hockin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8a1) Gecko/20040520 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: jdk1.4 on FreeBSD 5.2.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: Fri, 25 Jun 2004 23:32:56 -0000 I got a patch error when attempting to port jdk1.4 to 5.2.1. I used these files: j2sdk-1_4_2-src-scsl.zip j2sdk-1_4_2-bin-scsl.zip bsd-jdk14-patches-6.tar.gz I had to change the Makefile in the port area to reference version 6 of the patches rather than version 5. It gave an error when attempting to checksum the patch file (checksum missing?), so I ran the command: make NO_CHECKSUM=yes install The end make output looks like this: > |Index: j2se/src/solaris/native/sun/nio/ch/NativeThread.c > |=================================================================== > |RCS file: /var/jcvs/javasrc_1_4_scsl/j2se/src/solaris/native/sun/nio/ch/NativeThread.c,v > |retrieving revision 1.1.1.2 > |retrieving revision 1.4 > |diff -u -r1.1.1.2 -r1.4 > |--- j2se/src/solaris/native/sun/nio/ch/NativeThread.c 22 Oct 2003 23:03:50 -0000 1.1.1.2 > |+++ j2se/src/solaris/native/sun/nio/ch/NativeThread.c 27 Oct 2003 12:16:42 -0000 1.4 > -------------------------- > Patching file j2se/src/solaris/native/sun/nio/ch/NativeThread.c using Plan A... > Hunk #1 succeeded at 5. > Hmm... The next patch looks like a unified diff to me... > The text leading up to this was: > -------------------------- > |Index: j2se/src/solaris/native/sun/nio/ch/Net.c > |=================================================================== > |RCS file: /var/jcvs/javasrc_1_4_scsl/j2se/src/solaris/native/sun/nio/ch/Net.c,v > |retrieving revision 1.1.1.3 > |retrieving revision 1.6 > |diff -u -r1.1.1.3 -r1.6 > |--- j2se/src/solaris/native/sun/nio/ch/Net.c 22 Oct 2003 23:03:50 -0000 1.1.1.3 > |+++ j2se/src/solaris/native/sun/nio/ch/Net.c 27 Oct 2003 12:16:42 -0000 1.6 > -------------------------- > Patching file j2se/src/solaris/native/sun/nio/ch/Net.c using Plan A... > Hunk #1 succeeded at 283. > done > ===> Applying FreeBSD patches for jdk-1.4.2p6 > 1 out of 1 hunks failed--saving rejects to ../../j2se/src/solaris/native/java/net/PlainDatagramSocketImpl.c.rej >>> Patch patch-PlainDatagramSocketImpl.c failed to apply cleanly. > *** Error code 1 > > Stop in /usr/ports/java/jdk14. > > Compilation exited abnormally with code 1 at Fri Jun 25 15:23:43 And the .rej file looks like this: > *************** > *** 2034,2042 **** > /* > * Join the multicast group. > */ > - // XXXBSD: fix for BSD (re-implement with KAME ?) > - // if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? IP_ADD_MEMBERSHIP:IP_DROP_MEMBERSHIP), > - if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? 1 : 0), > (char *) &mname, mname_len) < 0) { > > /* > --- 2034,2040 ---- > /* > * Join the multicast group. > */ > + if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? IP_ADD_MEMBERSHIP:IP_DROP_MEMBERSHIP), > (char *) &mname, mname_len) < 0) { > > /* -- Doug From owner-freebsd-java@FreeBSD.ORG Sat Jun 26 00:01:50 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 A4F5C16A4CE for ; Sat, 26 Jun 2004 00:01:50 +0000 (GMT) Received: from smtpout01-04.mesa1.secureserver.net (smtpout01-04.mesa1.secureserver.net [64.202.165.79]) by mx1.FreeBSD.org (Postfix) with SMTP id 2D06E43D45 for ; Sat, 26 Jun 2004 00:01:48 +0000 (GMT) (envelope-from mriem@manorrock.org) Received: (qmail 6649 invoked from network); 26 Jun 2004 00:01:38 -0000 Received: from unknown (212.187.123.12) by smtpout01-04.mesa1.secureserver.net (64.202.165.79) with ESMTP; 26 Jun 2004 00:01:38 -0000 From: "Manfred Riem" To: "'Doug Hockin'" Date: Sat, 26 Jun 2004 02:01:41 +0200 Organization: Manor 'n Rock MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcRbDMNy5JnUVQR8TmeToda4tRQXdAAA+AxQ In-Reply-To: <40DCB620.5050204@staffware-spokane.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Message-Id: <20040626000148.2D06E43D45@mx1.FreeBSD.org> cc: freebsd-java@freebsd.org Subject: RE: jdk1.4 on FreeBSD 5.2.1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mriem@manorrock.org List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Jun 2004 00:01:50 -0000 Hi Doug, Did you update your ports tree before attempting this? Manfred > -----Original Message----- > From: owner-freebsd-java@freebsd.org > [mailto:owner-freebsd-java@freebsd.org] On Behalf Of Doug Hockin > Sent: Saturday, June 26, 2004 1:33 AM > To: freebsd-java@freebsd.org > Subject: jdk1.4 on FreeBSD 5.2.1 > > I got a patch error when attempting to port jdk1.4 to 5.2.1. > I used these files: > > j2sdk-1_4_2-src-scsl.zip > j2sdk-1_4_2-bin-scsl.zip > bsd-jdk14-patches-6.tar.gz > > I had to change the Makefile in the port area to reference > version 6 of the patches rather than version 5. It gave an > error when attempting to checksum the patch file (checksum > missing?), so I ran the command: > > make NO_CHECKSUM=yes install > > The end make output looks like this: > > > |Index: j2se/src/solaris/native/sun/nio/ch/NativeThread.c > > |=================================================================== > > |RCS file: > > > |/var/jcvs/javasrc_1_4_scsl/j2se/src/solaris/native/sun/nio/ch/NativeT > > |hread.c,v > > |retrieving revision 1.1.1.2 > > |retrieving revision 1.4 > > |diff -u -r1.1.1.2 -r1.4 > > |--- j2se/src/solaris/native/sun/nio/ch/NativeThread.c > 22 Oct 2003 23:03:50 -0000 1.1.1.2 > > |+++ j2se/src/solaris/native/sun/nio/ch/NativeThread.c > 27 Oct 2003 12:16:42 -0000 1.4 > > -------------------------- > > Patching file > j2se/src/solaris/native/sun/nio/ch/NativeThread.c using Plan A... > > Hunk #1 succeeded at 5. > > Hmm... The next patch looks like a unified diff to me... > > The text leading up to this was: > > -------------------------- > > |Index: j2se/src/solaris/native/sun/nio/ch/Net.c > > |=================================================================== > > |RCS file: > > > |/var/jcvs/javasrc_1_4_scsl/j2se/src/solaris/native/sun/nio/ch/Net.c,v > > |retrieving revision 1.1.1.3 > > |retrieving revision 1.6 > > |diff -u -r1.1.1.3 -r1.6 > > |--- j2se/src/solaris/native/sun/nio/ch/Net.c 22 Oct > 2003 23:03:50 -0000 1.1.1.3 > > |+++ j2se/src/solaris/native/sun/nio/ch/Net.c 27 Oct > 2003 12:16:42 -0000 1.6 > > -------------------------- > > Patching file j2se/src/solaris/native/sun/nio/ch/Net.c > using Plan A... > > Hunk #1 succeeded at 283. > > done > > ===> Applying FreeBSD patches for jdk-1.4.2p6 > > 1 out of 1 hunks failed--saving rejects to > > ../../j2se/src/solaris/native/java/net/PlainDatagramSocketImpl.c.rej > >>> Patch patch-PlainDatagramSocketImpl.c failed to apply cleanly. > > *** Error code 1 > > > > Stop in /usr/ports/java/jdk14. > > > > Compilation exited abnormally with code 1 at Fri Jun 25 15:23:43 > > And the .rej file looks like this: > > > *************** > > *** 2034,2042 **** > > /* > > * Join the multicast group. > > */ > > - // XXXBSD: fix for BSD (re-implement with KAME ?) > > - // if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? > IP_ADD_MEMBERSHIP:IP_DROP_MEMBERSHIP), > > - if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? 1 : 0), > > (char *) &mname, mname_len) < 0) { > > > > /* > > --- 2034,2040 ---- > > /* > > * Join the multicast group. > > */ > > + if (JVM_SetSockOpt(fd, IPPROTO_IP, (join ? > > + IP_ADD_MEMBERSHIP:IP_DROP_MEMBERSHIP), > > (char *) &mname, mname_len) < 0) { > > > > /* > > -- Doug > > > _______________________________________________ > 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 Sat Jun 26 13:24: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 983AA16A4CE for ; Sat, 26 Jun 2004 13:24:22 +0000 (GMT) Received: from mwinf0801.wanadoo.fr (smtp8.wanadoo.fr [193.252.22.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id C97C143D54 for ; Sat, 26 Jun 2004 13:24:21 +0000 (GMT) (envelope-from jean-maurice.lauret@wanadoo.fr) Received: from runchipsdevl (AStDenis-101-1-3-233.w80-13.abo.wanadoo.fr [80.13.79.233]) by mwinf0801.wanadoo.fr (SMTP Server) with SMTP id F201918000D9 for ; Sat, 26 Jun 2004 15:23:56 +0200 (CEST) Message-ID: <004a01c45b80$d3fd2260$6400a8c0@runchipsdevl> From: "jean-maurice Lauret" To: Date: Sat, 26 Jun 2004 17:23:52 +0400 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: core dump with diablo jre 1.3.1 or jdk with FBSD4.9 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, 26 Jun 2004 13:24:22 -0000 support to install diablo 1.3.1.0 jre or jdk on FreeBSD 4.9 i use ports or pkg_add , with or without -green or THREADS_FLAG=3Dgreen = :=20 i always get core dump for all the tools java appletviewer .... when i install, the only warning i get : gettext and XFree i already use = , are more recent version . I don't want change OS version just for this problem. I use more 5 = critical servers in hospital (DNS , FIREWALL , http server , gateway and = application gateway etc ...) . I change version very slowly for security. I need java 1.3.1.0 for TIVOLI (IBM storage solution) and ORACLE9I i have try kaffe : no problem but the java version is too low. thanks From owner-freebsd-java@FreeBSD.ORG Sat Jun 26 17:08: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 4F55716A4CE for ; Sat, 26 Jun 2004 17:08:57 +0000 (GMT) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2B0F43D4C for ; Sat, 26 Jun 2004 17:08:56 +0000 (GMT) (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 1BeGfG-0000aI-02; Sat, 26 Jun 2004 11:08:30 -0600 Received: from [166.70.56.15] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 4.32) id 1BeGfF-0004DG-Qn; Sat, 26 Jun 2004 11:08:30 -0600 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i5QH8SlX071883; Sat, 26 Jun 2004 11:08:28 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.11/8.12.11/Submit) id i5QH8RnI071882; Sat, 26 Jun 2004 11:08:27 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sat, 26 Jun 2004 11:08:26 -0600 From: Greg Lewis To: jean-maurice Lauret Message-ID: <20040626170826.GA71848@misty.eyesbeyond.com> References: <004a01c45b80$d3fd2260$6400a8c0@runchipsdevl> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <004a01c45b80$d3fd2260$6400a8c0@runchipsdevl> User-Agent: Mutt/1.4.2.1i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr3.xmission.com X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=8.0 tests=BAYES_00 autolearn=no version=2.63 X-SA-Exim-Connect-IP: 166.70.56.15 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 4.0 (built Sat, 24 Apr 2004 12:31:30 +0200) X-SA-Exim-Scanned: Yes (on mgr3.xmission.com) cc: freebsd-java@freebsd.org Subject: Re: core dump with diablo jre 1.3.1 or jdk with FBSD4.9 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, 26 Jun 2004 17:08:57 -0000 On Sat, Jun 26, 2004 at 05:23:52PM +0400, jean-maurice Lauret wrote: > support to install diablo 1.3.1.0 jre or jdk on FreeBSD 4.9 > > i use ports or pkg_add , with or without -green or THREADS_FLAG=green : > i always get core dump for all the tools java appletviewer .... You will need to provide some details, preferably the output you see for anyone to have any chance to debug this. > when i install, the only warning i get : gettext and XFree i already use , are more recent version . > > I don't want change OS version just for this problem. I use more 5 critical servers in hospital (DNS , FIREWALL , http server , gateway and application gateway etc ...) . > I change version very slowly for security. > I need java 1.3.1.0 for TIVOLI (IBM storage solution) and ORACLE9I Have you tried building the jdk13 or jdk14 ports and using them? -- 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 Sat Jun 26 18:59: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 1016C16A59E for ; Sat, 26 Jun 2004 18:59:22 +0000 (GMT) Received: from mail.run-services.com (xena.nexen.net [217.174.203.83]) by mx1.FreeBSD.org (Postfix) with SMTP id 316E743D3F for ; Sat, 26 Jun 2004 18:59:17 +0000 (GMT) (envelope-from jmo@run-services.com) Received: (qmail 10091 invoked from network); 26 Jun 2004 19:07:40 -0000 Received: from unknown (HELO runchipsdevl) (80.13.79.233) by xena.nexen.net with SMTP; 26 Jun 2004 19:07:40 -0000 Message-ID: <003c01c45baf$92b7a5d0$6400a8c0@runchipsdevl> From: "Jmo run-services" To: "Greg Lewis" References: <004a01c45b80$d3fd2260$6400a8c0@runchipsdevl> <20040626170826.GA71848@misty.eyesbeyond.com> Date: Sat, 26 Jun 2004 22:58:28 +0400 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.1409 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 cc: freebsd-java@freebsd.org Subject: Re: core dump with diablo jre 1.3.1 or jdk with FBSD4.9 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, 26 Jun 2004 18:59:22 -0000 i have installed from binary package pkg_add or make from /usr/ports/java/diablo-jre-1.3.1.0 with tgz or bz2. from the console i get "SIGNAL 6 ABORT" and the program create an java.core about 80Mo. With java without x display it seems to work (in console mode). But applet , awt or swing : crash. Tuesday i send to you the exact snapshot. ----- Original Message ----- From: "Greg Lewis" To: "jean-maurice Lauret" Cc: Sent: Saturday, June 26, 2004 9:08 PM Subject: Re: core dump with diablo jre 1.3.1 or jdk with FBSD4.9 > On Sat, Jun 26, 2004 at 05:23:52PM +0400, jean-maurice Lauret wrote: > > support to install diablo 1.3.1.0 jre or jdk on FreeBSD 4.9 > > > > i use ports or pkg_add , with or without -green or THREADS_FLAG=green : > > i always get core dump for all the tools java appletviewer .... > > You will need to provide some details, preferably the output you see > for anyone to have any chance to debug this. > > > when i install, the only warning i get : gettext and XFree i already use , are more recent version . > > > > I don't want change OS version just for this problem. I use more 5 critical servers in hospital (DNS , FIREWALL , http server , gateway and application gateway etc ...) . > > I change version very slowly for security. > > I need java 1.3.1.0 for TIVOLI (IBM storage solution) and ORACLE9I > > Have you tried building the jdk13 or jdk14 ports and using them? > > -- > Greg Lewis Email : glewis@eyesbeyond.com > Eyes Beyond Web : http://www.eyesbeyond.com > Information Technology FreeBSD : glewis@FreeBSD.org > _______________________________________________ > 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 Sat Jun 26 21:34:56 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 B993516A4CE; Sat, 26 Jun 2004 21:34:56 +0000 (GMT) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68FC343D2D; Sat, 26 Jun 2004 21:34:56 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-63-207-60-35.dsl.lsan03.pacbell.net [63.207.60.35])i5QLU2R0003489; Sat, 26 Jun 2004 17:30:03 -0400 Received: from [10.0.0.2] (xor [10.0.0.2]) by obsecurity.dyndns.org (Postfix) with ESMTP id 277BA51197; Sat, 26 Jun 2004 14:30:03 -0700 (PDT) Message-ID: <40DDEADA.7000102@obsecurity.org> Date: Sat, 26 Jun 2004 14:30:02 -0700 From: Kris Kennaway User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040617 X-Accept-Language: en-us, en MIME-Version: 1.0 To: java@FreeBSD.org, current@FreeBSD.org Content-Type: multipart/mixed; boundary="------------060104030603060308070803" Subject: [Fwd: jzip.org-0.2.0 failed on i386 4-exp] 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, 26 Jun 2004 21:34:56 -0000 This is a multi-part message in MIME format. --------------060104030603060308070803 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Looks like libm binary compatibility with 4.x was never quite fixed :-( Kris --------------060104030603060308070803 Content-Type: message/rfc822; name="jzip.org-0.2.0 failed on i386 4-exp" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="jzip.org-0.2.0 failed on i386 4-exp" Return-Path: X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org Received: from localhost (localhost [127.0.0.1]) by obsecurity.dyndns.org (Postfix) with ESMTP id 38C7B51197 for ; Sat, 26 Jun 2004 14:22:14 -0700 (PDT) Delivered-To: kris@freebsd.org Received: from localhost [127.0.0.1] by localhost with POP3 (fetchmail-6.2.4) for kkenn@localhost (single-drop); Sat, 26 Jun 2004 14:22:14 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C62D116A4CE for ; Sat, 26 Jun 2004 21:20:06 +0000 (GMT) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [216.136.204.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id A233443D2D for ; Sat, 26 Jun 2004 21:20:06 +0000 (GMT) (envelope-from ports-i386@FreeBSD.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) i5QLJTiq072907 for ; Sat, 26 Jun 2004 21:19:29 GMT (envelope-from ports-i386@pointyhat.freebsd.org) Received: (from ports-i386@localhost) by pointyhat.freebsd.org (8.12.11/8.12.11/Submit) id i5QLJT6D072906 for kris@FreeBSD.org; Sat, 26 Jun 2004 21:19:29 GMT (envelope-from ports-i386) Date: Sat, 26 Jun 2004 21:19:29 GMT From: User Ports-i386 Message-Id: <200406262119.i5QLJT6D072906@pointyhat.freebsd.org> To: kris@FreeBSD.org Subject: jzip.org-0.2.0 failed on i386 4-exp X-Bogosity: No, tests=bogofilter, spamicity=0.000000, version=0.17.5 building jzip.org-0.2.0 on gohan26 in directory /x/tmp/4-exp/chroot/88787 with arguments: jzip.org-0.2.0.tgz /usr/ports/archivers/jzip.org XFree86-libraries-4.3.0_7.tgz diablo-jdk-1.3.1.0_1.tgz expat-1.95.7.tgz fontconfig-2.2.2,1.tgz freetype2-2.1.7_3.tgz gettext-0.13.1_1.tgz glib-1.2.10_11.tgz gtk-1.2.10_12.tgz imake-4.3.0_2.tgz javavmwrapper-1.5.tgz libiconv-1.9.1_3.tgz nspr-4.4.1_1.tgz pkgconfig-0.15.0_1.tgz unzip-5.51.tgz urwfonts-1.0.tgz XFree86-libraries-4.3.0_7.tgz diablo-jdk-1.3.1.0_1.tgz expat-1.95.7.tgz fontconfig-2.2.2,1.tgz freetype2-2.1.7_3.tgz gettext-0.13.1_1.tgz glib-1.2.10_11.tgz gtk-1.2.10_12.tgz imake-4.3.0_2.tgz javavmwrapper-1.5.tgz libiconv-1.9.1_3.tgz nspr-4.4.1_1.tgz pkgconfig-0.15.0_1.tgz urwfonts-1.0.tgz maintained by: ports@FreeBSD.org build started at Sat Jun 26 21:18:21 GMT 2004 adding dependencies pkg_add XFree86-libraries-4.3.0_7.tgz Running fc-cache to build fontconfig cache... fc-cache: "/usr/X11R6/lib/X11/fonts": caching, 0 fonts, 13 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/100dpi": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/75dpi": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/CID": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/PEX": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/Speedo": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/TTF": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/Type1": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/cyrillic": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/encodings": caching, 0 fonts, 1 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/encodings/large": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/latin2": caching, 0 fonts, 2 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/latin2/100dpi": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/latin2/75dpi": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/local": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/misc": caching, 0 fonts, 0 dirs fc-cache: "/usr/X11R6/lib/X11/fonts/util": caching, 0 fonts, 0 dirs fc-cache: "/root/.fonts": skipping, no such directory fc-cache: succeeded pkg_add diablo-jdk-1.3.1.0_1.tgz pkg_add expat-1.95.7.tgz skipping expat-1.95.7, already added pkg_add fontconfig-2.2.2,1.tgz skipping fontconfig-2.2.2,1, already added pkg_add freetype2-2.1.7_3.tgz skipping freetype2-2.1.7_3, already added pkg_add gettext-0.13.1_1.tgz skipping gettext-0.13.1_1, already added pkg_add glib-1.2.10_11.tgz pkg_add gtk-1.2.10_12.tgz pkg_add imake-4.3.0_2.tgz skipping imake-4.3.0_2, already added pkg_add javavmwrapper-1.5.tgz skipping javavmwrapper-1.5, already added pkg_add libiconv-1.9.1_3.tgz skipping libiconv-1.9.1_3, already added pkg_add nspr-4.4.1_1.tgz pkg_add pkgconfig-0.15.0_1.tgz skipping pkgconfig-0.15.0_1, already added pkg_add unzip-5.51.tgz pkg_add urwfonts-1.0.tgz ============================================================ You'll have to add /usr/X11R6/lib/X11/fonts/URW to your X font path by either: $ xset fp+ /usr/X11R6/lib/X11/fonts/URW $ xset fp rehash or by adding it to your X-server configuration file (usually /etc/X11/XF86Config) and restarting the X-server. ============================================================ ================================================================ ======================================== ===> Vulnerability check disabled >> jzip.org0.2.0.src.zip doesn't seem to exist in /tmp/distfiles/. >> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles//. jzip.org0.2.0.src.zip 98 kB 1437 kBps >> Checksum OK for jzip.org0.2.0.src.zip. ========================================= ===> Vulnerability check disabled ===> Extracting for jzip.org-0.2.0 >> Checksum OK for jzip.org0.2.0.src.zip. ===> jzip.org-0.2.0 depends on executable: unzip - found ===> Patching for jzip.org-0.2.0 ===> jzip.org-0.2.0 depends on file: /usr/local/diablo-jdk1.3.1/bin/java - found ===> Configuring for jzip.org-0.2.0 ===> Building for jzip.org-0.2.0 /usr/libexec/ld-elf.so.1: /lib/libm.so.2: Undefined symbol "__fpclassifyd" *** Error code 1 Stop in /a/ports/archivers/jzip.org. ================================================================ build ended at Sat Jun 26 21:19:18 GMT 2004 --------------060104030603060308070803-- From owner-freebsd-java@FreeBSD.ORG Sat Jun 26 23:39:55 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 35D7516A4CE; Sat, 26 Jun 2004 23:39:55 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 537CA43D4C; Sat, 26 Jun 2004 23:39:54 +0000 (GMT) (envelope-from past@noc.ntua.gr) Received: from ajax.noc.ntua.gr (ajax.noc.ntua.gr [147.102.220.1]) i5QNdkEr001804; Sun, 27 Jun 2004 02:39:46 +0300 (EEST) (envelope-from past@noc.ntua.gr) Received: from [147.102.229.10] (ppp-229-010.dialup.ntua.gr [147.102.229.10]) by ajax.noc.ntua.gr (8.12.11/8.12.11) with ESMTP id i5QNdjol070524; Sun, 27 Jun 2004 02:39:46 +0300 (EEST) (envelope-from past@noc.ntua.gr) Message-ID: <40DE0929.6040509@noc.ntua.gr> Date: Sun, 27 Jun 2004 02:39:21 +0300 From: Panagiotis Astithas Organization: NTUA/NMC User-Agent: Mozilla Thunderbird 0.6 (X11/20040504) X-Accept-Language: en-us, en MIME-Version: 1.0 To: java@freebsd.org References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> In-Reply-To: <40D982A5.8050701@noc.ntua.gr> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 26 Jun 2004 23:39:55 -0000 Hello, I have once again updated the port skeleton at the following URL to build the already released final 3.0 version of Eclipse: http://noc.ntua.gr/~past/freebsd/eclipse3-port.tgz The WITH_MOTIF option still does not work, although there has been some progress. Enjoy, -- Panagiotis Astithas Electrical & Computer Engineer, PhD Network Management Center National Technical University of Athens, Greece From owner-freebsd-java@FreeBSD.ORG Sat Jun 26 23:51:32 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 2CC0C16A4CE; Sat, 26 Jun 2004 23:51:32 +0000 (GMT) Received: from gravy.kishka.net (pcp04097789pcs.neave01.pa.comcast.net [68.81.192.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id A254643D3F; Sat, 26 Jun 2004 23:51:31 +0000 (GMT) (envelope-from bryan@kishka.net) Received: from gravy.kishka.net (gravy.kishka.net [192.168.1.2]) by gravy.kishka.net (8.12.11/8.12.11) with ESMTP id i5QNovf6000665; Sat, 26 Jun 2004 19:50:57 -0400 (EDT) (envelope-from bryan@kishka.net) Date: Sat, 26 Jun 2004 19:50:57 -0400 (EDT) From: Bryan Liesner To: Panagiotis Astithas In-Reply-To: <40DE0929.6040509@noc.ntua.gr> Message-ID: <20040626194213.R613@gravy.kishka.net> References: <40CFFE0F.6040403@noc.ntua.gr> <20040616171610.3ad2fde7.nork@FreeBSD.org> <40D982A5.8050701@noc.ntua.gr> <40DE0929.6040509@noc.ntua.gr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: java@freebsd.org cc: Norikatsu Shigemura Subject: Re: An alternative Eclipse 3 port 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, 26 Jun 2004 23:51:32 -0000 On Sun, 27 Jun 2004, Panagiotis Astithas wrote: > Hello, > > I have once again updated the port skeleton at the following URL to build the > already released final 3.0 version of Eclipse: > > http://noc.ntua.gr/~past/freebsd/eclipse3-port.tgz > > The WITH_MOTIF option still does not work, although there has been some > progress. Once again, great work. I built the gnome-less version of the last RC and it's looking good. One important question - is debugging ever going to work under FreeBSD 5.x? I'm still getting the same error that no one has ever answered for me: FATAL ERROR in native method: JDWP "util.c" (Mar 9 2004), line 1194: Unexpected error, error code = 51 (JVMDI_ERROR_NOT_MONITOR_OWNER) Once upon a time, I could use Eclipse and actually run stuff under the debugger. Thanks