Date: Mon, 22 Feb 2016 17:04:15 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409360 - head/devel/libunicode Message-ID: <201602221704.u1MH4Fit031994@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602221704.u1MH4Fit031994>