1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

liblzma: Silence unused variable warning when BCJ filters are disabled.

Thanks to Jia Tan for the original patch.
This commit is contained in:
Lasse Collin 2022-12-01 17:54:23 +02:00
parent c68af44417
commit 94adf057f2

View file

@ -237,6 +237,20 @@ static const char *parse_options(const char **const str, const char *str_end,
// BCJ //
/////////
#if defined(HAVE_ENCODER_X86) \
|| defined(HAVE_DECODER_X86) \
|| defined(HAVE_ENCODER_ARM) \
|| defined(HAVE_DECODER_ARM) \
|| defined(HAVE_ENCODER_ARMTHUMB) \
|| defined(HAVE_DECODER_ARMTHUMB) \
|| defined(HAVE_ENCODER_ARM64) \
|| defined(HAVE_DECODER_ARM64) \
|| defined(HAVE_ENCODER_POWERPC) \
|| defined(HAVE_DECODER_POWERPC) \
|| defined(HAVE_ENCODER_IA64) \
|| defined(HAVE_DECODER_IA64) \
|| defined(HAVE_ENCODER_SPARC) \
|| defined(HAVE_DECODER_SPARC)
static const option_map bcj_optmap[] = {
{
.name = "start",
@ -256,6 +270,7 @@ parse_bcj(const char **const str, const char *str_end, void *filter_options)
return parse_options(str, str_end, filter_options,
bcj_optmap, ARRAY_SIZE(bcj_optmap));
}
#endif
///////////