diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-04-24 17:33:01 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-04-24 17:33:01 +0300 |
commit | bc04486e368d20b3027cde625267762aae063965 (patch) | |
tree | 412e525f44be963d29476623cb95b4f159d5c09b /src | |
parent | Use 64-bit integer as range encoder's cache size. This fixes a (diff) | |
download | xz-bc04486e368d20b3027cde625267762aae063965.tar.xz |
Fix fastpos problem in Makefile.am when built with --enable-small.
Diffstat (limited to 'src')
-rw-r--r-- | src/liblzma/lzma/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/liblzma/lzma/Makefile.am b/src/liblzma/lzma/Makefile.am index 2d4a6ad7..59ded214 100644 --- a/src/liblzma/lzma/Makefile.am +++ b/src/liblzma/lzma/Makefile.am @@ -29,7 +29,6 @@ liblzma4_la_SOURCES = \ if COND_MAIN_ENCODER liblzma4_la_SOURCES += \ fastpos.h \ - fastpos_table.c \ lzma_encoder.h \ lzma_encoder.c \ lzma_encoder_presets.c \ @@ -38,6 +37,10 @@ liblzma4_la_SOURCES += \ lzma_encoder_features.c \ lzma_encoder_getoptimum.c \ lzma_encoder_getoptimumfast.c + +if !COND_SMALL +liblzma4_la_SOURCES += fastpos_table.c +endif endif if COND_MAIN_DECODER |