commit: 8208cc6879ba5708eedb5d17dd26a98f45cccb8a
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 20 06:57:08 2017 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Mon Mar 20 06:57:08 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8208cc68
net-misc/wget: force disable libunistring dep #612498
Since we require newer libidn2 now, we can force off libunistring.
net-misc/wget/wget-1.19.1-r1.ebuild | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/net-misc/wget/wget-1.19.1-r1.ebuild
b/net-misc/wget/wget-1.19.1-r1.ebuild
index c4dbdd8054d..3cdc60b9b27 100644
--- a/net-misc/wget/wget-1.19.1-r1.ebuild
+++ b/net-misc/wget/wget-1.19.1-r1.ebuild
@@ -74,9 +74,17 @@ src_configure() {
tc-export PKG_CONFIG
PKG_CONFIG+=" --static"
fi
+
+ # There is no flag that controls this. libunistring-prefix only
+ # controls the search path (which is why we turn it off below).
+ # Further, libunistring is only needed w/older libidn2 installs,
+ # and since we force the latest, we can force off libunistring. #612498
+ ac_cv_libunistring=no \
econf \
--disable-assert \
--disable-rpath \
+ --without-included-libunistring \
+ --without-libunistring-prefix \
$(use_enable debug) \
$(use_enable idn iri) \
$(use_enable ipv6) \