diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2024-02-17 21:13:24 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2024-02-17 21:20:34 +0100 |
commit | ab4628e756ab73d8193ed62b591417dad561b298 (patch) | |
tree | 5dfcb19495ea82b2ba7b7e427cfefe23c1d8d4f5 /configure.ac | |
parent | 6fcdc552ffdca93334ffe2d044745c83de0722fa (diff) |
Fix optional compilation of lzo compressors
- Simple fixup in autoconf.ac
- Make compilation of jffsX-utils compr_lzo.c optional. Simply
don't compile it if we built without LZO and remove the place
holders. They are not used anyway if we build without LZO.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fdd9c3c..0751b3b 100644 --- a/configure.ac +++ b/configure.ac @@ -198,7 +198,7 @@ AS_IF([test -z "$LZO_LIBS" -a "x$with_lzo" != "xno"], [ ) ], []) -AS_IF([test -z "$LZO_LIBS"], [AS_IF([test "x$with_lzo" != "xcheck"], +AS_IF([test -z "$LZO_LIBS"], [AS_IF([test "x$with_lzo" = "xyes"], [AC_MSG_ERROR([cannot find liblzo])], [with_lzo="no"])], [with_lzo="yes"]) |