1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-05-18 00:48:57 -04:00

[meson] Removed unneeded msys2 option

This commit is contained in:
Witold Filipczyk 2024-10-20 15:48:17 +02:00
parent 0adac6bb78
commit 686e7f0713
2 changed files with 1 additions and 7 deletions

View File

@ -144,11 +144,7 @@ conf_data.set('CONFIG_ECMASCRIPT_SMJS_HEARTBEAT', true)
conf_data.set('CONFIG_SCRIPTING', true)
if get_option('msys2')
system = 'msys2'
else
system = host_machine.system()
endif
system = host_machine.system()
if system == 'haiku'
conf_data.set('CONFIG_OS_BEOS', true)

View File

@ -82,5 +82,3 @@ option('libcss', type: 'boolean', value: true, description: 'whether to compile
option('libsixel', type: 'boolean', value: false, description: 'whether to compile libsixel support to show images directly on sixel compatible terminals')
option('libcurl', type: 'boolean', value: true, description: 'whether to compile libcurl support. This option is automatically enabled with js support')
option('sftp', type: 'boolean', value: true, description: 'whether to compile SFTP protocol support. Requires libcurl')
option('msys2', type: 'boolean', value: false, description: 'whether to build for msys2')