From owner-svn-ports-head@freebsd.org Thu Jan 25 22:55:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B0A5ED337F; Thu, 25 Jan 2018 22:55:03 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED8637634F; Thu, 25 Jan 2018 22:55:02 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E7BB513558; Thu, 25 Jan 2018 22:55:02 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0PMt2F6037744; Thu, 25 Jan 2018 22:55:02 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0PMt28T037743; Thu, 25 Jan 2018 22:55:02 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201801252255.w0PMt28T037743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 25 Jan 2018 22:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459966 - head/sysutils/gdisk X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/sysutils/gdisk X-SVN-Commit-Revision: 459966 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jan 2018 22:55:03 -0000 Author: tobik Date: Thu Jan 25 22:55:02 2018 New Revision: 459966 URL: https://svnweb.freebsd.org/changeset/ports/459966 Log: sysutils/gdisk: Unbreak UTF16 option /usr/bin/ld: undefined reference to symbol `_ZN3icu13UnicodeStringC1EPKc' (try adding -licuuc) //usr/local/lib/libicuuc.so.60: could not read symbols: Bad value PR: 198518 Submitted by: Ting-Wei Lan Approved by: wg (maintainer timeout, ~3 years) Modified: head/sysutils/gdisk/Makefile Modified: head/sysutils/gdisk/Makefile ============================================================================== --- head/sysutils/gdisk/Makefile Thu Jan 25 22:29:01 2018 (r459965) +++ head/sysutils/gdisk/Makefile Thu Jan 25 22:55:02 2018 (r459966) @@ -24,8 +24,8 @@ OPTIONS_DEFINE= CGDISK UTF16 OPTIONS_SUB= yes CGDISK_DESC= Curses-based interactive program UTF16_DESC= Support for Unicode partition names -UTF16_CPPFLAGS+= -DUSE_UTF16 -UTF16_LDFLAGS+= -licuio +UTF16_CPPFLAGS= -DUSE_UTF16 +UTF16_LDFLAGS= -licuio -licuuc CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib