aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/simple/arm.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/arm.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/arm.c')
-rw-r--r--src/liblzma/simple/arm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/liblzma/simple/arm.c b/src/liblzma/simple/arm.c
index ff5073ae..6e53970d 100644
--- a/src/liblzma/simple/arm.c
+++ b/src/liblzma/simple/arm.c
@@ -53,6 +53,7 @@ arm_coder_init(lzma_next_coder *next, const lzma_allocator *allocator,
}
+#ifdef HAVE_ENCODER_ARM
extern lzma_ret
lzma_simple_arm_encoder_init(lzma_next_coder *next,
const lzma_allocator *allocator,
@@ -60,8 +61,10 @@ lzma_simple_arm_encoder_init(lzma_next_coder *next,
{
return arm_coder_init(next, allocator, filters, true);
}
+#endif
+#ifdef HAVE_DECODER_ARM
extern lzma_ret
lzma_simple_arm_decoder_init(lzma_next_coder *next,
const lzma_allocator *allocator,
@@ -69,3 +72,4 @@ lzma_simple_arm_decoder_init(lzma_next_coder *next,
{
return arm_coder_init(next, allocator, filters, false);
}
+#endif