diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-02-12 17:51:42 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-18 02:40:22 +0000 |
commit | 7c3151d12085586a7ca2133583f7023fe86a793f (patch) | |
tree | 91659edb6a23998f89c01768b7fba185cfc47336 /dev-libs/libxml2 | |
parent | net-firewall/iptables: Enable ipv6 unconditionally (diff) | |
download | gentoo-7c3151d12085586a7ca2133583f7023fe86a793f.tar.gz gentoo-7c3151d12085586a7ca2133583f7023fe86a793f.tar.bz2 gentoo-7c3151d12085586a7ca2133583f7023fe86a793f.zip |
dev-libs/libxml2: Remove unnecessary USE=ipv6
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/24168
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libxml2')
-rw-r--r-- | dev-libs/libxml2/libxml2-2.9.12-r5.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild b/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild index 7dd8d6761000..9cc72e7d06a0 100644 --- a/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild +++ b/dev-libs/libxml2/libxml2-2.9.12-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,7 +37,7 @@ SLOT="2" # Dropped keywords for now because it's a minor LDFLAGS fix, and it will ease upgrades # bug #802210 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug examples icu ipv6 lzma +python readline static-libs test" +IUSE="debug examples icu lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -148,11 +148,11 @@ multilib_src_configure() { libxml2_configure() { ECONF_SOURCE="${S}" econf \ + --enable-ipv6 \ --with-html-subdir=${PF}/html \ $(use_with debug run-debug) \ $(use_with icu) \ $(use_with lzma) \ - $(use_enable ipv6) \ $(use_enable static-libs static) \ $(multilib_native_use_with readline) \ $(multilib_native_use_with readline history) \ |