From owner-freebsd-openoffice@FreeBSD.ORG Mon Sep 18 23:06:42 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB05616A49E for ; Mon, 18 Sep 2006 23:06:42 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0339C43D4C for ; Mon, 18 Sep 2006 23:06:41 +0000 (GMT) (envelope-from maho.nakata@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so5139079pye for ; Mon, 18 Sep 2006 16:06:41 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:message-id:to:cc:subject:from:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding:sender; b=YE3vwN0iR5AskNc2vI8xmmfe8rIHP9Ijcg5KYBbCpiqryNuPGx7dbr8mLMNGVOgBnVXKKCY/H7IHvm76A92wOKMghmJCtoKHvHXODVNJDzrdS60fCqSUw2s/XTEqYF8qXUUlOwkyODJeOWsaHHqe/ffxPPFAph6QJbhMuE1EpoU= Received: by 10.35.15.11 with SMTP id s11mr24737894pyi; Mon, 18 Sep 2006 16:06:41 -0700 (PDT) Received: from localhost ( [133.11.172.102]) by mx.gmail.com with ESMTP id i5sm2142962nzi.2006.09.18.16.06.38; Mon, 18 Sep 2006 16:06:39 -0700 (PDT) Date: Tue, 19 Sep 2006 08:06:36 +0900 (JST) Message-Id: <20060919.080636.85417841.chat95@mac.com> To: imb@protected-networks.net From: NAKATA Maho In-Reply-To: <450C69FF.4080109@protected-networks.net> References: <4500335F.6030600@protected-networks.net> <20060908.054022.104098278.chat95@mac.com> <450C69FF.4080109@protected-networks.net> X-Mailer: Mew version 5.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: Maho NAKATA Cc: openoffice@freebsd.org Subject: Re: openoffice build failure X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Sep 2006 23:06:42 -0000 From: Michael Butler Subject: Re: openoffice build failure Date: Sat, 16 Sep 2006 17:17:51 -0400 > configure:20317: javac Test.java > ---------- > 1. ERROR in Test.java > (at line 1) > /* #line 20312 "configure" */ > ^ > The type java.lang.Object cannot be resolved. It is indirectly > referenced from required .class files I spent several hours to investigate and tried to fix it... You specified WITH_GNUGCJ, this is the reason for the brekage. javac at /usr/local/lib/jvm/java-gcj41/bin/ is actually ecj for you. Somehow, ecj doesn't find bootstrappath as /usr/local/share/java/libgcj-4.1.2.jar so java.lang.Object cannot be resolved. IIRC, I verified that older version of gcc-4.1, but recent version even sun.boot.path seems to be empty. I'll fix it hopefully soon... -- NAKATA, Maho (maho@FreeBSD.org)