From owner-freebsd-java@FreeBSD.ORG Sat Sep 14 21:30:00 2013 Return-Path: Delivered-To: freebsd-java@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E104B3D2 for ; Sat, 14 Sep 2013 21:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7F8A2C18 for ; Sat, 14 Sep 2013 21:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8ELU0GZ086482 for ; Sat, 14 Sep 2013 21:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ELU03Q086481; Sat, 14 Sep 2013 21:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Sep 2013 21:30:00 GMT Resent-Message-Id: <201309142130.r8ELU03Q086481@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michaël Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 71AFB297 for ; Sat, 14 Sep 2013 21:26:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E7FD2BF1 for ; Sat, 14 Sep 2013 21:26:13 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8ELQCR1093918 for ; Sat, 14 Sep 2013 21:26:12 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8ELQCcR093914; Sat, 14 Sep 2013 21:26:12 GMT (envelope-from nobody) Message-Id: <201309142126.r8ELQCcR093914@oldred.freebsd.org> Date: Sat, 14 Sep 2013 21:26:12 GMT From: Michaël To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: java/182100: Usage of iconv is missing in openjdk6-b27_7 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Sep 2013 21:30:00 -0000 >Number: 182100 >Category: java >Synopsis: Usage of iconv is missing in openjdk6-b27_7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Sep 14 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Michaël >Release: 9.1-RELEASE >Organization: >Environment: FreeBSD FreeBsdMik 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: In the Makefile of last commit of openjdk6-6-b27_7, usage of libiconv is not spécified. This cause bluej can't start the jvm with this error : "Error output from debug VM on launch:/usr/local/openjdk6/jre/lib/amd64/libnpt.so: Undefined symbol "libiconv_open"" >How-To-Repeat: Run Bluej with openjdk6. An error message will occur. In the logs of bluej we will find the line above. >Fix: Modify line 56 of the Makefile : USES = gmake motif to USES = gmake motif iconv I tested this patch and it's ok on my system. Patch attached with submission follows: Index: java/openjdk6/Makefile =================================================================== --- java/openjdk6/Makefile (revision 327311) +++ java/openjdk6/Makefile (working copy) @@ -53,7 +53,7 @@ TEST_DESC= Add support for running regression test .endif -USES= gmake motif +USES= gmake motif iconv .include .include "${.CURDIR}/../openjdk6/Makefile.icedtea" >Release-Note: >Audit-Trail: >Unformatted: