From owner-freebsd-questions@FreeBSD.ORG Fri Sep 21 02:31:18 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3648A16A419 for ; Fri, 21 Sep 2007 02:31:18 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.232]) by mx1.freebsd.org (Postfix) with ESMTP id EDA5013C45B for ; Fri, 21 Sep 2007 02:31:17 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so551125nzf for ; Thu, 20 Sep 2007 19:31:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=qMyI9hgq8T/lMO26AUTStzl8077tz11O/L+CEqPDVXM=; b=ZrWiPxO8d0qtSTOdFB6NDEhE3MSoif/U7NKIqajYgKC62/VldRvQRzXDSJ6JcOwP977+Un5Jfynd/hVqnWxJTtDf2+zPQwXSrPWU1yzJTr22d9lzFQmlmPJZSbamiTJkRJrszGXkF8XGQVUNEnuUBiRT4RDl8twz/PVwQ2mW0hc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=VxEiYQts3In+zdFhrIoylNX/AEzCdtLSzYsDnPW4A2Hco0yd3m7R+INCmxotiIbIxfPQqmsTUB0JwoMOyX/fHSDCUxRhejWTD+x4HOc4MGfwTjJmF6q3TOZNpkKNL0+RoDmxmdaV6czv/P0sLdtHahaVfUVuQG+ZPFgSa4txjEs= Received: by 10.64.91.15 with SMTP id o15mr5637995qbb.1190341876578; Thu, 20 Sep 2007 19:31:16 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Thu, 20 Sep 2007 19:31:16 -0700 (PDT) Message-ID: Date: Fri, 21 Sep 2007 02:31:16 +0000 From: "Aryeh Friedman" To: "FreeBSD Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Strange Java behaviour X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2007 02:31:18 -0000 On every JDK (linux-sun-jdk14,jdk15,diablo-jdk15,linux-sun-jdk16 and jdk16) I have tried this on it opens the JFrame then just dies (immediatly): import javax.swing.JFrame; public class Main { public static void main(String[] args) { JFrame frame=new JFrame(); frame.pack(); frame.setVisible(true); while(true) ; } } I am using FreeBSD 7-Current with xorg 7.3 (gnome)