aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/simple/x86.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2022-11-25 18:04:37 +0200
committerLasse Collin <lasse.collin@tukaani.org>2022-11-25 18:04:37 +0200
commit90caaded2dc6db1d6a55b01160d7e87f4a423628 (patch)
tree51be01fed8e7ad180d4c732eaca6e33ff71fe155 /src/liblzma/simple/x86.c
parentxz: Allow nice_len 2 and 3 even if match finder requires 3 or 4. (diff)
downloadxz-90caaded2dc6db1d6a55b01160d7e87f4a423628.tar.xz
liblzma: Omit simple coder init functions if they are disabled.
Diffstat (limited to 'src/liblzma/simple/x86.c')
-rw-r--r--src/liblzma/simple/x86.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/liblzma/simple/x86.c b/src/liblzma/simple/x86.c
index 0e78909c..232b2954 100644
--- a/src/liblzma/simple/x86.c
+++ b/src/liblzma/simple/x86.c
@@ -141,6 +141,7 @@ x86_coder_init(lzma_next_coder *next, const lzma_allocator *allocator,
}
+#ifdef HAVE_ENCODER_X86
extern lzma_ret
lzma_simple_x86_encoder_init(lzma_next_coder *next,
const lzma_allocator *allocator,
@@ -148,8 +149,10 @@ lzma_simple_x86_encoder_init(lzma_next_coder *next,
{
return x86_coder_init(next, allocator, filters, true);
}
+#endif
+#ifdef HAVE_DECODER_X86
extern lzma_ret
lzma_simple_x86_decoder_init(lzma_next_coder *next,
const lzma_allocator *allocator,
@@ -157,3 +160,4 @@ lzma_simple_x86_decoder_init(lzma_next_coder *next,
{
return x86_coder_init(next, allocator, filters, false);
}
+#endif