From owner-svn-ports-head@freebsd.org Mon Feb 22 17:04:16 2016 Return-Path: Delivered-To: svn-ports-head@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 89270AB0750; Mon, 22 Feb 2016 17:04:16 +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 5BA631BCF; Mon, 22 Feb 2016 17:04:16 +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 u1MH4FS3031995; Mon, 22 Feb 2016 17:04:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1MH4Fit031994; Mon, 22 Feb 2016 17:04:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201602221704.u1MH4Fit031994@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 22 Feb 2016 17:04:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409360 - head/devel/libunicode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2016 17:04:16 -0000 Author: jbeich Date: Mon Feb 22 17:04:15 2016 New Revision: 409360 URL: https://svnweb.freebsd.org/changeset/ports/409360 Log: 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 MFH: 2016Q1 Modified: head/devel/libunicode/Makefile (contents, props changed) Modified: head/devel/libunicode/Makefile ============================================================================== --- head/devel/libunicode/Makefile Mon Feb 22 16:51:13 2016 (r409359) +++ head/devel/libunicode/Makefile Mon Feb 22 17:04:15 2016 (r409360) @@ -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 \