summarylogtreecommitdiffstats
path: root/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
diff options
context:
space:
mode:
authorkuma2022-10-12 00:49:18 +0800
committerkuma2022-10-12 00:49:18 +0800
commite28eabd3bf84d8521b0b705f578707bd0a9cfc32 (patch)
tree43100544690789e25bb83f761bf7086198eec7e0 /0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
parent15f0be78bf900657267fd05b5b0759bf5c471f41 (diff)
downloadaur-e28eabd3bf84d8521b0b705f578707bd0a9cfc32.tar.gz
update to 1.21.1
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, 0 insertions, 24 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
deleted file mode 100644
index 6883c6fed194..000000000000
--- a/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-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