Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jan 2018 22:55:02 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r459966 - head/sysutils/gdisk
Message-ID:  <201801252255.w0PMt28T037743@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <lantw44@gmail.com>
  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



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