From owner-freebsd-java Tue May 23 4:31:12 2000 Delivered-To: freebsd-java@freebsd.org Received: from ilsa.franken.de (ilsa.franken.de [193.175.24.42]) by hub.freebsd.org (Postfix) with ESMTP id 4262937B54E for ; Tue, 23 May 2000 04:31:09 -0700 (PDT) (envelope-from scratchy@VULCAN.franken.de) Received: by ilsa.franken.de (Smail3.2 #1) id m12uCtl-000VJMC; Tue, 23 May 2000 13:30:57 +0200 (CEST) Received: from vulcan.franken.de(194.94.248.10) via SMTP by ilsa.franken.de, id smtpda32283; Tue May 23 13:30:47 2000 Received: from yavin.franken.de (yavin.franken.de [194.94.248.13]) by vulcan.franken.de (8.9.3/8.9.3) with ESMTP id NAA40469 for ; Tue, 23 May 2000 13:28:41 +0200 (CEST) (envelope-from scratchy@yavin.franken.de) Received: from yavin.franken.de (localhost.franken.de [127.0.0.1]) by yavin.franken.de (8.9.3/8.9.2) with ESMTP id NAA86747 for ; Tue, 23 May 2000 13:28:41 +0200 (CEST) (envelope-from scratchy@yavin.franken.de) Message-Id: <200005231128.NAA86747@yavin.franken.de> X-Mailer: exmh version 2.1.1 10/15/1999 To: freebsd-java@freebsd.org Subject: Bug report for patchset 8 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 23 May 2000 13:28:41 +0200 From: Volker Paepcke Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I think I've found a bug in patchset 8: After successfully installing and running Forte4J it seems to work very stable except some redraw problems in the menus. I think this is a known problem (I'm using Lesstif)!? The default font.properties is unusable, because the fonts have wrong metrics (The size seems to be correct but there is extra space above and below the characters). Installing the URW fonts with the correspoding font.propteries worked for me. And here comes the bug: all external programm execution doesn't work! e.g. compiling with jikes or running cvs commands. The external programm terminates but the IDE is waiting forever. I've written a small program that reproduces this problem: import java.io.*; public class ExecTest { public static void main(String args[]) { try { Process proc = Runtime.getRuntime().exec(new String[] { "date" }); proc.waitFor(); } catch (Exception ex) { ex.printStackTrace(); } } } the call to waitFor() never returns. With the JDK 1.1.8 and Blackdown's RC4 the waitFor() call is returning immediatly. I'm running FreeBSD 4.0-Stable. Aside from this all my self-written programms are working fine!!! I'm heavily using JDBC, RMI, JAI, CORBA (ORBacus) and many threads (but no calls to waitFor)... Very nice work :-) bye, Volker To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message