diff options
author | Jia Tan <jiat0218@gmail.com> | 2024-03-09 09:49:55 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2024-03-09 09:49:55 +0800 |
commit | cd5de9c1bbab3dd41b34b37a89c193fb6ff51ca5 (patch) | |
tree | 9f64874af5ab3bc00b8c83d1fbc699cf84779b9b /configure.ac | |
parent | liblzma: Fix false Valgrind error report with GCC. (diff) | |
download | xz-cd5de9c1bbab3dd41b34b37a89c193fb6ff51ca5.tar.xz |
Tests: Replace HAVE_MICROLZMA usage in CMake and Autotools builds.
This reverts commit adaacafde6661496ca2814b1e94a3ba5186428cb.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 176bb9ce..075567f6 100644 --- a/configure.ac +++ b/configure.ac @@ -304,13 +304,8 @@ AC_ARG_ENABLE([microlzma], AS_HELP_STRING([--disable-microlzma], for example, erofs-utils.]), [], [enable_microlzma=yes]) case $enable_microlzma in - yes) - AC_DEFINE([HAVE_MICROLZMA], [1], - [Define to 1 if MicroLZMA support is enabled.]) - AC_MSG_RESULT([yes]) - ;; - no) - AC_MSG_RESULT([no]) + yes | no) + AC_MSG_RESULT([$enable_microlzma]) ;; *) AC_MSG_RESULT([]) |