svn commit: r409400 - branches/2016Q1/devel/libunicode

Jan Beich jbeich at FreeBSD.org
Tue Feb 23 10:01:10 UTC 2016


Author: jbeich
Date: Tue Feb 23 10:01:08 2016
New Revision: 409400
URL: https://svnweb.freebsd.org/changeset/ports/409400

Log:
  MFH: r409360
  
  devel/libunicode: properly register iconv dependency
  
  Avoid accidentally using converters/libiconv symbols when libc is
  desired by passing -DLIBICONV_PLUG during build. This fixes the
  following error in consumers:
  
  /usr/local/lib/libunicode.so.0: undefined reference to `libiconv'
  /usr/local/lib/libunicode.so.0: undefined reference to `libiconv_close'
  /usr/local/lib/libunicode.so.0: undefined reference to `libiconv_open'
  
  PR:		206966
  Submitted by:	vvd at unislabs.com
  Approved by:	portmgr blanket
  Approved by:	ports-secteam (feld)

Modified:
  branches/2016Q1/devel/libunicode/Makefile
Directory Properties:
  branches/2016Q1/   (props changed)

Modified: branches/2016Q1/devel/libunicode/Makefile
==============================================================================
--- branches/2016Q1/devel/libunicode/Makefile	Tue Feb 23 10:00:49 2016	(r409399)
+++ branches/2016Q1/devel/libunicode/Makefile	Tue Feb 23 10:01:08 2016	(r409400)
@@ -4,7 +4,7 @@
 
 PORTNAME=	libunicode
 PORTVERSION=	0.4
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	devel gnome
 MASTER_SITES=	GNOME/sources/libunicode/0.4
 DISTNAME=	${PORTNAME}-${PORTVERSION}.gnome
@@ -12,7 +12,7 @@ DISTNAME=	${PORTNAME}-${PORTVERSION}.gno
 MAINTAINER=	gnome at FreeBSD.org
 COMMENT=	Library for manipulating Unicode characters and strings
 
-USES=		gmake libtool
+USES=		gmake iconv libtool
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 CONFIGURE_ARGS=	--localstatedir=${PREFIX}/share \


More information about the svn-ports-branches mailing list