1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

meson: luajit: Remove checkdef for SSE

This isn't actually set in luajit's Makefile. Maybe it was at some
point in the past, but there's no trace of it now.

Fixes arch1t3cht/Aegisub#98 .
This commit is contained in:
arch1t3cht 2023-11-21 21:19:06 +01:00 committed by Ryan Lucia
parent 44b5fc3889
commit df43d3f49c

View File

@ -25,10 +25,6 @@ checkdefs = [
['LJ_ABI_PAUTH', '1', ['-D', 'PAUTH']],
]
if host_machine.cpu_family() == 'x86'
checkdefs += ['__SSE2__', '1', ['-D', 'SSE']]
endif
foreach def: checkdefs
if cc.get_define(def[0], prefix: hpre) == def[1]
dasm += def[2]