mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
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:
parent
23ed1d4148
commit
4cc584985c
2 changed files with 7 additions and 2 deletions
|
@ -9,12 +9,16 @@ EXTRA_DIST += lzma/fastpos_tablegen.c
|
|||
|
||||
liblzma_la_SOURCES += lzma/lzma_common.h
|
||||
|
||||
if COND_FILTER_LZMA1
|
||||
liblzma_la_SOURCES += \
|
||||
lzma/lzma_presets.c
|
||||
endif
|
||||
|
||||
if COND_ENCODER_LZMA1
|
||||
liblzma_la_SOURCES += \
|
||||
lzma/fastpos.h \
|
||||
lzma/lzma_encoder.h \
|
||||
lzma/lzma_encoder.c \
|
||||
lzma/lzma_encoder_presets.c \
|
||||
lzma/lzma_encoder_private.h \
|
||||
lzma/lzma_encoder_optimum_fast.c \
|
||||
lzma/lzma_encoder_optimum_normal.c
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
/// \file lzma_encoder_presets.c
|
||||
/// \file lzma_presets.c
|
||||
/// \brief Encoder presets
|
||||
/// \note xz needs this even when only decoding is enabled.
|
||||
//
|
||||
// Author: Lasse Collin
|
||||
//
|
Loading…
Reference in a new issue