From owner-freebsd-java@FreeBSD.ORG Wed Jan 25 18:18:34 2006 Return-Path: X-Original-To: java@freebsd.org 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 690A116A41F for ; Wed, 25 Jan 2006 18:18:34 +0000 (GMT) (envelope-from past@ebs.gr) Received: from fly.ebs.gr (dslcustomer-239-113.vivodi.gr [83.171.239.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id D974143D5E for ; Wed, 25 Jan 2006 18:18:26 +0000 (GMT) (envelope-from past@ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id k0PIICAF027145; Wed, 25 Jan 2006 20:18:12 +0200 (EET) (envelope-from past@ebs.gr) Received: from [10.1.1.200] (pptp.ebs.gr [10.1.1.200]) by ebs.gr (8.13.3/8.12.11) with ESMTP id k0PIJ2Fu037067; Wed, 25 Jan 2006 20:19:04 +0200 (EET) (envelope-from past@ebs.gr) Message-ID: <43D7C0E1.3060702@ebs.gr> Date: Wed, 25 Jan 2006 20:18:09 +0200 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Thunderbird 1.5 (X11/20060116) MIME-Version: 1.0 To: Einstein Oliveira References: <43D65306.7050207@yawl.com.br> In-Reply-To: <43D65306.7050207@yawl.com.br> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: java@freebsd.org Subject: Re: inflate_fast error with eclipse eclipse-3.1.1_3 and jdk-1.4.2p8_2 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jan 2006 18:18:34 -0000 Einstein Oliveira wrote: > Hi, > > After upgrade jdk1.4.2 to patch level 8 this message appears every time > I try to start eclipse. > > ---- > An unexpected exception has been detected in native code outside the VM. > Unexpected Signal : 11 occurred at PC=0x286D3F57 > Function=inflate_fast+0x17 > Library=/usr/local/jdk1.4.2/jre/lib/i386/libzip.so > ---- > > After that the only thing I can see is the eclipse splash screen with a > error dialog saying that JVM terminated with exit code 1. > > Checking the archives of this list I've found this suggestion: > > "portupgrade -uf libfreetype\* fontconfig\* libXft\*" > > with some people reporting that the problem was solved, but I tried it > with no luck (maybe because I'm using jdk1.4 and the suggestion was for > jdk1.5). > > I'm also did a portupgrade on eclipse (just in case). > > > Is there something else that I should try to fix this ? > It seems that inflate_fast was not made private when the relevant patch made its way into jdk14: % objdump -T /usr/local/jdk1.4.2/jre/lib/i386/libzip.so | grep inflate_fast 0000ff40 g DF .text 00000687 inflate_fast % objdump -T /usr/lib/libz.so | grep inflate_fast 0000572c g DF .text 000004cd inflate_fast