From 139dd4e7727adc2abd7e7be8eae052e88eb9a4f1 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 9 Feb 2023 09:31:12 +0100 Subject: [PATCH] meson: remove unused USE_FOO_ASM defines The usage of these defines was removed, so let's remove the definitions as well. Reviewed-by: Eric Engestrom Reviewed-by: Yonggang Luo Part-of: --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 01b688a2f5d..1e969357c8f 100644 --- a/meson.build +++ b/meson.build @@ -1205,8 +1205,7 @@ with_asm_arch = '' if host_machine.cpu_family() == 'x86' if system_has_kms_drm or host_machine.system() == 'gnu' with_asm_arch = 'x86' - pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM', - '-DUSE_SSE_ASM'] + pre_args += ['-DUSE_X86_ASM'] if with_glx_read_only_text pre_args += ['-DGLX_X86_READONLY_TEXT']