Date: Fri, 17 Feb 2017 23:31:49 +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: r434320 - head/devel/glib20 Message-ID: <201702172331.v1HNVn8Y071800@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Feb 17 23:31:49 2017 New Revision: 434320 URL: https://svnweb.freebsd.org/changeset/ports/434320 Log: devel/glib20: unbreak with plain USES=iconv According to configure.ac --with-libiconv=native is reserved for vendor libiconv, not iconv in libc. FreeBSD removed libiconv in base r257583. checking for iconv_open in -liconv... no configure: error: *** No iconv() implementation found in C library or libiconv Modified: head/devel/glib20/Makefile (contents, props changed) Modified: head/devel/glib20/Makefile ============================================================================== --- head/devel/glib20/Makefile Fri Feb 17 23:23:47 2017 (r434319) +++ head/devel/glib20/Makefile Fri Feb 17 23:31:49 2017 (r434320) @@ -60,7 +60,7 @@ GDB_DESC= Install python gdb scripts CONFIGURE_ARGS+=--disable-dtrace .if empty(ICONV_LIB) -CONFIGURE_ARGS+= --with-libiconv=native +CONFIGURE_ARGS+= --with-libiconv=no .else CONFIGURE_ARGS+= --with-libiconv=gnu .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702172331.v1HNVn8Y071800>