Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jan 2018 23:00:29 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r459968 - branches/2018Q1/sysutils/gdisk
Message-ID:  <201801252300.w0PN0TJ6038215@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Thu Jan 25 23:00:29 2018
New Revision: 459968
URL: https://svnweb.freebsd.org/changeset/ports/459968

Log:
  MFH: r459966
  
  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 <lantw44@gmail.com>
  Approved by:	wg (maintainer timeout, ~3 years)
  
  Approved by:	ports-secteam blanket

Modified:
  branches/2018Q1/sysutils/gdisk/Makefile
Directory Properties:
  branches/2018Q1/   (props changed)

Modified: branches/2018Q1/sysutils/gdisk/Makefile
==============================================================================
--- branches/2018Q1/sysutils/gdisk/Makefile	Thu Jan 25 22:59:19 2018	(r459967)
+++ branches/2018Q1/sysutils/gdisk/Makefile	Thu Jan 25 23:00:29 2018	(r459968)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801252300.w0PN0TJ6038215>