From owner-svn-ports-branches@freebsd.org Tue Feb 23 10:01:10 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06C70AB1684; Tue, 23 Feb 2016 10:01:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB757927; Tue, 23 Feb 2016 10:01:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1NA18uE032461; Tue, 23 Feb 2016 10:01:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1NA187c032460; Tue, 23 Feb 2016 10:01:08 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201602231001.u1NA187c032460@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 23 Feb 2016 10:01:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r409400 - branches/2016Q1/devel/libunicode X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Feb 2016 10:01:10 -0000 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@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@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 \