2.42.9-1
[arch-packages.git] / gstreamer / trunk / 0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
blob6883c6fed194c7caa060b1439e8e0bcc0316b96a
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
5 prefixes
7 See: https://github.com/mesonbuild/meson/issues/5482
8 ---
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'
22 else
23 asm_prefix_def = '-UPREFIX'
24 endif