guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: ungoogled-chromium: Use bundled libvpx for WebRTC.


From: guix-commits
Subject: 03/06: gnu: ungoogled-chromium: Use bundled libvpx for WebRTC.
Date: Mon, 17 Jan 2022 12:34:27 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit f3b73e46df82297ffabaa3b32fc765fa3065cad0
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Jan 17 17:20:53 2022 +0100

    gnu: ungoogled-chromium: Use bundled libvpx for WebRTC.
    
    Fixes <https://bugs.gnu.org/53301>.
    Reported by Yasuaki Kudo <yasu@yasuaki.com>.
    
    * gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Set
    rtc_build_libvpx=true in #:configure-flags.
---
 gnu/packages/chromium.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm
index b6c877c2fa..e176102495 100644
--- a/gnu/packages/chromium.scm
+++ b/gnu/packages/chromium.scm
@@ -579,7 +579,9 @@
               ;; Don't use bundled sources.
               "rtc_build_json=true"  ;FIXME: libc++ std::string ABI difference
               "rtc_build_libevent=false"
-              "rtc_build_libvpx=false"
+              ;; XXX: Use the bundled libvpx for WebRTC because unbundling
+              ;; currently fails (see above), and the versions must match.
+              "rtc_build_libvpx=true"
               "rtc_build_opus=false"
               "rtc_build_libsrtp=true"  ;FIXME: fails to find headers
               "rtc_build_usrsctp=true"  ;TODO: package this



reply via email to

[Prev in Thread] Current Thread [Next in Thread]