Build: Build LZMA1/2 presets also when only decoder is wanted.

People shouldn't rely on the presets when decoding raw streams,
but xz uses the presets as the starting point for raw decoder
options anyway.

lzma_encocder_presets.c was renamed to lzma_presets.c to
make it clear it's not used solely by the encoder code.
This commit is contained in:
Lasse Collin 2015-11-03 18:06:40 +02:00
parent dc6b78d7f0
commit 97a3109281
2 changed files with 7 additions and 2 deletions

View File

@ -9,12 +9,16 @@ EXTRA_DIST += lzma/fastpos_tablegen.c
liblzma_la_SOURCES += lzma/lzma_common.h liblzma_la_SOURCES += lzma/lzma_common.h
if COND_FILTER_LZMA1
liblzma_la_SOURCES += \
lzma/lzma_presets.c
endif
if COND_ENCODER_LZMA1 if COND_ENCODER_LZMA1
liblzma_la_SOURCES += \ liblzma_la_SOURCES += \
lzma/fastpos.h \ lzma/fastpos.h \
lzma/lzma_encoder.h \ lzma/lzma_encoder.h \
lzma/lzma_encoder.c \ lzma/lzma_encoder.c \
lzma/lzma_encoder_presets.c \
lzma/lzma_encoder_private.h \ lzma/lzma_encoder_private.h \
lzma/lzma_encoder_optimum_fast.c \ lzma/lzma_encoder_optimum_fast.c \
lzma/lzma_encoder_optimum_normal.c lzma/lzma_encoder_optimum_normal.c

View File

@ -1,7 +1,8 @@
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// //
/// \file lzma_encoder_presets.c /// \file lzma_presets.c
/// \brief Encoder presets /// \brief Encoder presets
/// \note xz needs this even when only decoding is enabled.
// //
// Author: Lasse Collin // Author: Lasse Collin
// //