PKGBUILDs/extra/gstreamer/0003-HACK-meson-Work-around-broken-detection-of-underscor.patch
2022-06-06 18:05:15 +00:00

25 lines
1,020 B
Diff

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