diff options
author | Jia Tan <jiat0218@gmail.com> | 2023-03-22 15:42:04 +0800 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-05-03 22:33:10 +0300 |
commit | 275e36013d091a9cb68201d908bbea765c5a8cb1 (patch) | |
tree | 9d63a4f1468fed7fe53ce2717426e3943b4734a1 | |
parent | Build: Add a comment that AC_PROG_CC_C99 is needed for Autoconf 2.69. (diff) | |
download | xz-275e36013d091a9cb68201d908bbea765c5a8cb1.tar.xz |
Build: Removes redundant check for LZMA1 filter support.
-rw-r--r-- | src/liblzma/lzma/Makefile.inc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/liblzma/lzma/Makefile.inc b/src/liblzma/lzma/Makefile.inc index 506b328c..25440d85 100644 --- a/src/liblzma/lzma/Makefile.inc +++ b/src/liblzma/lzma/Makefile.inc @@ -7,12 +7,9 @@ EXTRA_DIST += lzma/fastpos_tablegen.c -liblzma_la_SOURCES += lzma/lzma_common.h - -if COND_FILTER_LZMA1 liblzma_la_SOURCES += \ + lzma/lzma_common.h \ lzma/lzma_encoder_presets.c -endif if COND_ENCODER_LZMA1 liblzma_la_SOURCES += \ |