From owner-freebsd-java@FreeBSD.ORG Tue Apr 10 09:43:37 2012 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0982106566B for ; Tue, 10 Apr 2012 09:43:37 +0000 (UTC) (envelope-from prvs=144737c3d0=killing@multiplay.co.uk) Received: from mail1.multiplay.co.uk (mail1.multiplay.co.uk [85.236.96.23]) by mx1.freebsd.org (Postfix) with ESMTP id 5D9B88FC0A for ; Tue, 10 Apr 2012 09:43:37 +0000 (UTC) X-Spam-Processed: mail1.multiplay.co.uk, Tue, 10 Apr 2012 10:42:14 +0100 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on mail1.multiplay.co.uk X-Spam-Level: X-Spam-Status: No, score=-5.0 required=6.0 tests=USER_IN_WHITELIST shortcircuit=ham autolearn=disabled version=3.2.5 Received: from r2d2 ([188.220.16.49]) by mail1.multiplay.co.uk (mail1.multiplay.co.uk [85.236.96.23]) (MDaemon PRO v10.0.4) with ESMTP id md50019197799.msg for ; Tue, 10 Apr 2012 10:42:14 +0100 X-MDRemoteIP: 188.220.16.49 X-Return-Path: prvs=144737c3d0=killing@multiplay.co.uk X-Envelope-From: killing@multiplay.co.uk X-MDaemon-Deliver-To: freebsd-java@FreeBSD.org Message-ID: <41EC9B5FC6504F9B82BCC3790781064B@multiplay.co.uk> From: "Steven Hartland" To: =?iso-8859-1?Q?sami_m=E4ntysaari?= , References: Date: Tue, 10 Apr 2012 10:42:09 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0E3F_01CD1706.9460B1E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Cc: Subject: Re: Java error in FreeBSD 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: Tue, 10 Apr 2012 09:43:37 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0E3F_01CD1706.9460B1E0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 8bit I guess your on 8.2 or similar, if so its likely a machine code bug in libz. The attached patch fixes this. Once applied you need to either manually recompile and reinstall libz or recompile and install world. Regards Steve ----- Original Message ----- From: "sami mäntysaari" To: Sent: Monday, April 09, 2012 1:31 PM Subject: Java error in FreeBSD > In this email is error log > -------------------------------------------------------------------------------- > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" ================================================ This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. In the event of misdirection, illegible or incomplete transmission please telephone +44 845 868 1337 or return the E.mail to postmaster@multiplay.co.uk. ------=_NextPart_000_0E3F_01CD1706.9460B1E0 Content-Type: application/octet-stream; name="libz.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="libz.patch" Index: lib/libz/Makefile=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= --- lib/libz/Makefile (revision 218815)=0A= +++ lib/libz/Makefile (working copy)=0A= @@ -25,11 +25,11 @@=0A= CFLAGS+=3D -DASMV -DNO_UNDERLINE=0A= .endif=0A= =0A= -.if ${MACHINE_ARCH} =3D=3D "amd64"=0A= -.PATH: ${.CURDIR}/contrib/gcc_gvmat64=0A= -SRCS+=3D gvmat64.S=0A= -CFLAGS+=3D -DASMV -DNO_UNDERLINE=0A= -.endif=0A= +#.if ${MACHINE_ARCH} =3D=3D "amd64"=0A= +#.PATH: ${.CURDIR}/contrib/gcc_gvmat64=0A= +#SRCS+=3D gvmat64.S=0A= +#CFLAGS+=3D -DASMV -DNO_UNDERLINE=0A= +#.endif=0A= =0A= minigzip: all minigzip.o=0A= $(CC) -o minigzip minigzip.o -L. -lz=0A= ------=_NextPart_000_0E3F_01CD1706.9460B1E0--