From: Mart Raudsepp Date: Fri, 27 Jul 2018 10:11:04 +0000 (+0300) Subject: media-sound/pulseaudio: fix padsp OSS wrapper for non-native multilib X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=2f79bc944a2dedb1e8ca2b56c53ca9c2a5354aa8;p=gentoo.git media-sound/pulseaudio: fix padsp OSS wrapper for non-native multilib Pass the new (in v11) configure argument with glibc per upstream release notes. Closes: https://bugs.gentoo.org/486328 Package-Manager: Portage-2.3.43, Repoman-2.3.10 --- diff --git a/media-sound/pulseaudio/pulseaudio-12.2.ebuild b/media-sound/pulseaudio/pulseaudio-12.2.ebuild index c084555f2e31..1b9b8b2d18ee 100644 --- a/media-sound/pulseaudio/pulseaudio-12.2.ebuild +++ b/media-sound/pulseaudio/pulseaudio-12.2.ebuild @@ -213,6 +213,11 @@ multilib_src_configure() { LIBSPEEX_CFLAGS=' ' LIBSPEEX_LIBS=' ' ) + else + # Make padsp work for non-native ABI, supposedly only possible with glibc; this is used by /usr/bin/padsp that comes from native build, thus we need this argument for native build + if use elibc_glibc ; then + myconf+=( --with-pulsedsp-location="${EPREFIX}"'/usr/\\$$LIB/pulseaudio' ) + fi fi ECONF_SOURCE=${S} \