1
0
Fork 0
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:
Lasse Collin 2022-11-09 14:17:23 +02:00
parent 724285dadb
commit 633d48a075

View file

@ -39,7 +39,6 @@ liblzma_la_SOURCES += \
common/easy_buffer_encoder.c \
common/easy_encoder.c \
common/easy_encoder_memusage.c \
common/microlzma_encoder.c \
common/filter_buffer_encoder.c \
common/filter_encoder.c \
common/filter_encoder.h \
@ -55,6 +54,11 @@ if COND_THREADS
liblzma_la_SOURCES += \
common/stream_encoder_mt.c
endif
if COND_MICROLZMA
liblzma_la_SOURCES += \
common/microlzma_encoder.c
endif
endif
if COND_MAIN_DECODER
@ -67,7 +71,6 @@ liblzma_la_SOURCES += \
common/block_decoder.h \
common/block_header_decoder.c \
common/easy_decoder_memusage.c \
common/microlzma_decoder.c \
common/file_info.c \
common/filter_buffer_decoder.c \
common/filter_decoder.c \
@ -86,4 +89,9 @@ if COND_THREADS
liblzma_la_SOURCES += \
common/stream_decoder_mt.c
endif
if COND_MICROLZMA
liblzma_la_SOURCES += \
common/microlzma_decoder.c
endif
endif