From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF183138334 for ; Fri, 27 Jul 2018 11:50:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EA77E086E; Fri, 27 Jul 2018 11:50:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FF10E0857 for ; Fri, 27 Jul 2018 11:50:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A86AF335CD5 for ; Fri, 27 Jul 2018 11:50:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E25F38B for ; Fri, 27 Jul 2018 11:50:25 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1532691868.2f79bc944a2dedb1e8ca2b56c53ca9c2a5354aa8.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulseaudio/pulseaudio-12.2.ebuild X-VCS-Directories: media-sound/pulseaudio/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 2f79bc944a2dedb1e8ca2b56c53ca9c2a5354aa8 X-VCS-Branch: master Date: Fri, 27 Jul 2018 11:50:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c0bcb97f-2e6e-45d5-843a-674f5cf531d6 X-Archives-Hash: 46e0f21c3045f743ae016c1578ac55ee commit: 2f79bc944a2dedb1e8ca2b56c53ca9c2a5354aa8 Author: Mart Raudsepp gentoo org> AuthorDate: Fri Jul 27 10:11:04 2018 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Fri Jul 27 11:44:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f79bc94 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 media-sound/pulseaudio/pulseaudio-12.2.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/media-sound/pulseaudio/pulseaudio-12.2.ebuild b/media-sound/pulseaudio/pulseaudio-12.2.ebuild index c084555f2e3..1b9b8b2d18e 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} \