meson: use a feature option for zstd

Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20409>
This commit is contained in:
Dylan Baker 2022-12-20 16:37:35 -08:00 committed by Marge Bot
parent e3f60ea4a8
commit afa97e7468
2 changed files with 4 additions and 18 deletions

View File

@ -1458,21 +1458,9 @@ if dep_zlib.found()
pre_args += '-DHAVE_ZLIB'
endif
_zstd = get_option('zstd')
if _zstd == 'true'
_zstd = 'enabled'
warning('zstd option "true" deprecated, please use "enabled" instead.')
elif _zstd == 'false'
_zstd = 'disabled'
warning('zstd option "false" deprecated, please use "disabled" instead.')
endif
if _zstd != 'disabled'
dep_zstd = dependency('libzstd', required : _zstd == 'enabled')
if dep_zstd.found()
pre_args += '-DHAVE_ZSTD'
endif
else
dep_zstd = null_dep
dep_zstd = dependency('libzstd', required : get_option('zstd'))
if dep_zstd.found()
pre_args += '-DHAVE_ZSTD'
endif
with_compression = dep_zlib.found() or dep_zstd.found()

View File

@ -442,9 +442,7 @@ option(
)
option(
'zstd',
type : 'combo',
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
value : 'auto',
type : 'feature',
description : 'Use ZSTD instead of ZLIB in some cases.'
)
option(