svn commit: r459966 - head/sysutils/gdisk

Tobias Kortkamp tobik at FreeBSD.org
Thu Jan 25 22:55:03 UTC 2018


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


More information about the svn-ports-all mailing list