mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Add the missing Makefile.inc change for --disable-microlzma.
This was forgotten from commit 59c4d6e139
.
This commit is contained in:
parent
724285dadb
commit
633d48a075
1 changed files with 10 additions and 2 deletions
|
@ -39,7 +39,6 @@ liblzma_la_SOURCES += \
|
||||||
common/easy_buffer_encoder.c \
|
common/easy_buffer_encoder.c \
|
||||||
common/easy_encoder.c \
|
common/easy_encoder.c \
|
||||||
common/easy_encoder_memusage.c \
|
common/easy_encoder_memusage.c \
|
||||||
common/microlzma_encoder.c \
|
|
||||||
common/filter_buffer_encoder.c \
|
common/filter_buffer_encoder.c \
|
||||||
common/filter_encoder.c \
|
common/filter_encoder.c \
|
||||||
common/filter_encoder.h \
|
common/filter_encoder.h \
|
||||||
|
@ -55,6 +54,11 @@ if COND_THREADS
|
||||||
liblzma_la_SOURCES += \
|
liblzma_la_SOURCES += \
|
||||||
common/stream_encoder_mt.c
|
common/stream_encoder_mt.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if COND_MICROLZMA
|
||||||
|
liblzma_la_SOURCES += \
|
||||||
|
common/microlzma_encoder.c
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if COND_MAIN_DECODER
|
if COND_MAIN_DECODER
|
||||||
|
@ -67,7 +71,6 @@ liblzma_la_SOURCES += \
|
||||||
common/block_decoder.h \
|
common/block_decoder.h \
|
||||||
common/block_header_decoder.c \
|
common/block_header_decoder.c \
|
||||||
common/easy_decoder_memusage.c \
|
common/easy_decoder_memusage.c \
|
||||||
common/microlzma_decoder.c \
|
|
||||||
common/file_info.c \
|
common/file_info.c \
|
||||||
common/filter_buffer_decoder.c \
|
common/filter_buffer_decoder.c \
|
||||||
common/filter_decoder.c \
|
common/filter_decoder.c \
|
||||||
|
@ -86,4 +89,9 @@ if COND_THREADS
|
||||||
liblzma_la_SOURCES += \
|
liblzma_la_SOURCES += \
|
||||||
common/stream_decoder_mt.c
|
common/stream_decoder_mt.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if COND_MICROLZMA
|
||||||
|
liblzma_la_SOURCES += \
|
||||||
|
common/microlzma_decoder.c
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue