svn commit: r459968 - branches/2018Q1/sysutils/gdisk

Tobias Kortkamp tobik at FreeBSD.org
Thu Jan 25 23:00:30 UTC 2018


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 at 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


More information about the svn-ports-branches mailing list