commit: 16351f1c34fa68463027918e9ae59268885b4927 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Dec 12 22:25:10 2020 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Dec 12 22:25:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16351f1c
media-libs/libjpeg-turbo: fix compilaton on ppc, x32 * Drop now-unnecessary FLOATTEST workaround for tests to pass on ppc. It was causing the build to fail in 2.0.6. * Update x32 workaround. Closes: https://bugs.gentoo.org/723800 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James <sam <AT> gentoo.org> media-libs/libjpeg-turbo/libjpeg-turbo-2.0.6.ebuild | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.6.ebuild b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.6.ebuild index b0302e40805..3637bb4413a 100644 --- a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.6.ebuild +++ b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.6.ebuild @@ -83,20 +83,14 @@ multilib_src_configure() { -DWITH_MEM_SRCDST=ON ) - [[ ${ABI} == "x32" ]] && mycmakeargs+=( -DREQUIRE_SIMD=OFF ) #420239 + # bug #420239, bug #723800 + [[ ${ABI} == "x32" ]] && mycmakeargs+=( -DWITH_SIMD=OFF ) #420239 # mostly for Prefix, ensure that we use our yasm if installed and # not pick up host-provided nasm has_version dev-lang/yasm && ! has_version dev-lang/nasm && \ mycmakeargs+=( -DCMAKE_ASM_NASM_COMPILER=$(type -P yasm) ) - if use ppc ; then - # Workaround recommended by upstream: - # https://bugs.gentoo.org/715406#c9 - # https://github.com/libjpeg-turbo/libjpeg-turbo/issues/428 - mycmakeargs+=( -DFLOATTEST="64bit" ) - fi - cmake_src_configure }
