summarylogtreecommitdiffstats
path: root/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
diff options
context:
space:
mode:
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