From owner-freebsd-java@FreeBSD.ORG Sun Apr 3 23:46:10 2005 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 9D41E16A4CE for ; Sun, 3 Apr 2005 23:46:10 +0000 (GMT) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1180843D3F for ; Sun, 3 Apr 2005 23:46:10 +0000 (GMT) (envelope-from alex@varju.ca) Received: from pd3mr7so.prod.shaw.ca (pd3mr7so-qfe3.prod.shaw.ca [10.0.141.23])2004))freebsd-java@freebsd.org; Sun, 03 Apr 2005 17:46:09 -0600 (MDT) Received: from pn2ml1so.prod.shaw.ca ([10.0.121.145]) by pd3mr7so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IEE00LBNA0XZFB0@pd3mr7so.prod.shaw.ca> for freebsd-java@freebsd.org; Sun, 03 Apr 2005 17:46:09 -0600 (MDT) Received: from alex.varju.ca (S010600095beeacbb.vc.shawcable.net [24.83.194.151]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0IEE00K54A0XM4@l-daemon> for freebsd-java@freebsd.org; Sun, 03 Apr 2005 17:46:09 -0600 (MDT) Received: from localhost ([127.0.0.1]) by alex.varju.ca with esmtp freebsd-java@freebsd.org; Sun, 03 Apr 2005 16:46:08 -0700 Date: Sun, 03 Apr 2005 16:46:07 -0700 From: Alex Varju In-reply-to: <425003E5.9020905@spymac.com> To: freebsd-java@freebsd.org Message-id: <4250803F.5030805@varju.ca> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-15 Content-transfer-encoding: 7bit X-Accept-Language: en-us, en References: <424490CD.9080203@chuckr.org> <4246D3C5.5060303@ebs.gr> <4246FE33.2090608@webct.com> <4248801D.7070405@webct.com> <42489BD2.40504@varju.ca> <424BA422.8070803@varju.ca> <424C5C2A.9080407@spymac.com> <424CBA64.4040404@varju.ca> <424DD0FA.1070003@spymac.com> <424F34F4.4030709@varju.ca> <425003E5.9020905@spymac.com> User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050401) Subject: Re: eclipse 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, 03 Apr 2005 23:46:10 -0000 Bruno Van Den Bossche wrote: > I found the problem, at least I like to think so :) > In the file > plugins/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/ExternalBrowserInstance.java > > they make the following call : > DefaultBrowserSupport.getInstance().removeBrowser(getId()); > > This method requires a String for argument, and getId() returns a long. > Which is a conversion that doesn't automagically happens. Changing > this to : > DefaultBrowserSupport.getInstance().removeBrowser(""+getId()); > > solves this problem and everything builds just fine on my machine > without the need of a linux-jvm. This is perfect. I think this was the last thing I needed to clean the port up for non-amd64 machines. I'm just doing some build testing right now, and assuming all goes well I will be submitting the port within the next few days. > This is an Eclipse-issue though. You seem to be more familiar with the > Eclipse project, could you submit this to them? I'm actually only barely familiar with the project. :) You can probably just submit your patch for that file to their bugzilla database. ttyl Alex