From owner-freebsd-java Wed Jan 28 13:00:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21005 for java-outgoing; Wed, 28 Jan 1998 13:00:55 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from iglou.com (exim@iglou1.iglou.com [192.107.41.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA20962 for ; Wed, 28 Jan 1998 13:00:47 -0800 (PST) (envelope-from patrick@cre8tivegroup.com) Received: from gateway.cre8tivegroup.com [204.255.227.96] by iglou.com with smtp (8.7.3/8.6.12) id 0xxeaq-0006Zx-00; Wed, 28 Jan 1998 16:00:21 -0500 Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 In-Reply-To: <34CF8D41.384@dorsai.org> Date: Wed, 28 Jan 1998 15:58:31 -0500 (EST) Organization: The Creative Group From: Patrick Gardella To: Lawrence Goetz Subject: RE: JDK 1.1.5, FreeBSD 3.0 & CTWM Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Which JDK 1.1.5 are you using? Did you get it from: ftp://hub.freebsd.org/pub/incoming/java/jdk1.1.5.tar.gz That's the latest which has a lot of fixes... Patrick On 28-Jan-98 Lawrence Goetz wrote: >I'm working with my professor to get JDK 1.1.5 to work on FreeBSD 3.0. >We are using CTWM as the window's manager. When I try to run a Java >program that creates a window, I get a segmentation violation. This >program works fine using Solaris with CDE. Even if I rlogin to the >Solaris machine it causes the same segmentation violation on this >machine. We have applied the patch and that doesn't solve it. The only >time it worked is if some x configuration file for xinit is changed or >removed does it work when CTWM is not loaded. However this worked one >day and now we can not get it to work again. We are using Lesstif, not >Motif on this system. If someone can please help, we'd appreciate it. > > >Here is the very basic program the fails to run on our setup of FreeBSD: > >import java.awt.*; > >public class test { > > public static void main(String[] args) { > Frame mywindow=new Frame("My Java Test"); > mywindow.resize(100,200); > mywindow.show(); > } >} > > >Thank you, > >Lawrence Goetz