aboutsummaryrefslogtreecommitdiff
path: root/deb_patches/fix-armhf-webrtc-build.patch
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-07-30 17:51:35 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-07-30 17:57:09 +0200
commitd73ef25178eb107680388e221ce55fa24b51ce5c (patch)
tree4f21fdeca15736de72f9129c17b98b2dd2609f88 /deb_patches/fix-armhf-webrtc-build.patch
parentFix version number typo (diff)
downloadlibrewolf-linux-d73ef25178eb107680388e221ce55fa24b51ce5c.tar.gz
librewolf-linux-d73ef25178eb107680388e221ce55fa24b51ce5c.tar.bz2
librewolf-linux-d73ef25178eb107680388e221ce55fa24b51ce5c.zip
v79.0-1
Also (re-)adds some debian armhf-patches – not really needed, but making it easier to apply the libstdc++-related patches without having to modify them.
Diffstat (limited to 'deb_patches/fix-armhf-webrtc-build.patch')
-rw-r--r--deb_patches/fix-armhf-webrtc-build.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/deb_patches/fix-armhf-webrtc-build.patch b/deb_patches/fix-armhf-webrtc-build.patch
index 44e88a6..7f56b3e 100644
--- a/deb_patches/fix-armhf-webrtc-build.patch
+++ b/deb_patches/fix-armhf-webrtc-build.patch
@@ -37,9 +37,9 @@ diff -r 53fd96ca5aa4 media/webrtc/trunk/webrtc/system_wrappers/cpu_features_linu
- "/media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c"
-]
-
- if not CONFIG["MOZ_DEBUG"]:
+ if CONFIG["MOZ_DEBUG"] == "1":
- DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "0"
+ DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1"
@@ -53,20 +49,36 @@
DEFINES["WEBRTC_ARCH_ARM64"] = True
DEFINES["WEBRTC_HAS_NEON"] = True
bgstack15