mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix fastpos problem in Makefile.am when built with --enable-small.
This commit is contained in:
parent
7ab493924e
commit
bc04486e36
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,6 @@ liblzma4_la_SOURCES = \
|
||||||
if COND_MAIN_ENCODER
|
if COND_MAIN_ENCODER
|
||||||
liblzma4_la_SOURCES += \
|
liblzma4_la_SOURCES += \
|
||||||
fastpos.h \
|
fastpos.h \
|
||||||
fastpos_table.c \
|
|
||||||
lzma_encoder.h \
|
lzma_encoder.h \
|
||||||
lzma_encoder.c \
|
lzma_encoder.c \
|
||||||
lzma_encoder_presets.c \
|
lzma_encoder_presets.c \
|
||||||
|
@ -38,6 +37,10 @@ liblzma4_la_SOURCES += \
|
||||||
lzma_encoder_features.c \
|
lzma_encoder_features.c \
|
||||||
lzma_encoder_getoptimum.c \
|
lzma_encoder_getoptimum.c \
|
||||||
lzma_encoder_getoptimumfast.c
|
lzma_encoder_getoptimumfast.c
|
||||||
|
|
||||||
|
if !COND_SMALL
|
||||||
|
liblzma4_la_SOURCES += fastpos_table.c
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if COND_MAIN_DECODER
|
if COND_MAIN_DECODER
|
||||||
|
|
Loading…
Reference in a new issue