diff options
author | Sam James <sam@gentoo.org> | 2024-09-20 07:18:28 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-20 07:18:28 +0100 |
commit | f6d785e9cd9c36a555f73c6083c193c3879d6cce (patch) | |
tree | 651848797165c40476a94e393783c9cfc7a1af23 /media-libs/libpng | |
parent | media-video/smplayer: Stabilize 23.6.0-r1 x86, #939877 (diff) | |
download | gentoo-f6d785e9cd9c36a555f73c6083c193c3879d6cce.tar.gz gentoo-f6d785e9cd9c36a555f73c6083c193c3879d6cce.tar.bz2 gentoo-f6d785e9cd9c36a555f73c6083c193c3879d6cce.zip |
media-libs/libpng: drop cpu_flags_arm_neon
With >=1.6.44, it fails to build in some cases, but it wasn't recommended
anyway. configure warns about the use of --enable-arm-neon. Just rely
on what *FLAGS specify.
Thanks to John Bowler for the analysis.
Closes: https://bugs.gentoo.org/939819
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/libpng')
-rw-r--r-- | media-libs/libpng/libpng-1.6.44.ebuild | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/media-libs/libpng/libpng-1.6.44.ebuild b/media-libs/libpng/libpng-1.6.44.ebuild index 2cf06113dcc7..b5669bf7bc5c 100644 --- a/media-libs/libpng/libpng-1.6.44.ebuild +++ b/media-libs/libpng/libpng-1.6.44.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="libpng2" SLOT="0/16" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="apng cpu_flags_arm_neon cpu_flags_x86_sse static-libs test" +IUSE="apng cpu_flags_x86_sse static-libs test" RESTRICT="!test? ( test )" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]" @@ -55,7 +55,6 @@ multilib_src_configure() { local myeconfargs=( $(multilib_native_enable tools) $(use_enable test tests) - $(use_enable cpu_flags_arm_neon arm-neon) $(use_enable cpu_flags_x86_sse intel-sse) $(use_enable static-libs static) ) |