1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
3 Date: Mon, 6 Jun 2022 00:30:08 +0200
4 Subject: [PATCH] HACK: meson: Work around broken detection of underscore
7 See: https://github.com/mesonbuild/meson/issues/5482
9 subprojects/gst-plugins-good/gst/deinterlace/meson.build | 2 --
10 1 file changed, 2 deletions(-)
12 diff --git a/subprojects/gst-plugins-good/gst/deinterlace/meson.build b/subprojects/gst-plugins-good/gst/deinterlace/meson.build
13 index e86bebe613fc..96a961107ab6 100644
14 --- a/subprojects/gst-plugins-good/gst/deinterlace/meson.build
15 +++ b/subprojects/gst-plugins-good/gst/deinterlace/meson.build
16 @@ -54,8 +54,6 @@ if have_nasm and host_cpu == 'x86_64'
17 # https://github.com/mesonbuild/meson/issues/5482
18 if ['darwin', 'ios'].contains(host_system)
19 asm_prefix_def = '-DPREFIX'
20 - elif cc.symbols_have_underscore_prefix()
21 - asm_prefix_def = '-DPREFIX'
23 asm_prefix_def = '-UPREFIX'