summarylogtreecommitdiffstats
path: root/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
diff options
context:
space:
mode:
authorkuma2022-06-26 23:17:42 +0800
committerkuma2022-06-26 23:17:42 +0800
commita224fb239c85729fc54773ae2d6c28c7d7d96f33 (patch)
treeac8b1b08c87327b8001b8435e1c50183dad41326 /0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
parent849b5c80d13b21bdb632d4c1954faf6c8f1dae64 (diff)
downloadaur-a224fb239c85729fc54773ae2d6c28c7d7d96f33.tar.gz
update(*):update to 1.20.3
Diffstat (limited to '0003-HACK-meson-Work-around-broken-detection-of-underscor.patch')
-rw-r--r--0003-HACK-meson-Work-around-broken-detection-of-underscor.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch b/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
new file mode 100644
index 000000000000..6883c6fed194
--- /dev/null
+++ b/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
+Date: Mon, 6 Jun 2022 00:30:08 +0200
+Subject: [PATCH] HACK: meson: Work around broken detection of underscore
+ prefixes
+
+See: https://github.com/mesonbuild/meson/issues/5482
+---
+ subprojects/gst-plugins-good/gst/deinterlace/meson.build | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/subprojects/gst-plugins-good/gst/deinterlace/meson.build b/subprojects/gst-plugins-good/gst/deinterlace/meson.build
+index e86bebe613fc..96a961107ab6 100644
+--- a/subprojects/gst-plugins-good/gst/deinterlace/meson.build
++++ b/subprojects/gst-plugins-good/gst/deinterlace/meson.build
+@@ -54,8 +54,6 @@ if have_nasm and host_cpu == 'x86_64'
+ # https://github.com/mesonbuild/meson/issues/5482
+ if ['darwin', 'ios'].contains(host_system)
+ asm_prefix_def = '-DPREFIX'
+- elif cc.symbols_have_underscore_prefix()
+- asm_prefix_def = '-DPREFIX'
+ else
+ asm_prefix_def = '-UPREFIX'
+ endif