From 64fce2d829b65fd63f199c00051e4526f9222247 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Thu, 11 Jul 2013 13:22:11 +0200 Subject: [PATCH] * configure.ac: Indicate which liblzma is used if any. --- ChangeLog | 4 ++++ configure.ac | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 817582706..48b27ac34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-07-11 Vladimir Serbinenko + + * configure.ac: Indicate which liblzma is used if any. + 2013-06-21 Paul Wise 2013-06-21 Craig Sanders diff --git a/configure.ac b/configure.ac index 536de2908..060568d54 100644 --- a/configure.ac +++ b/configure.ac @@ -1293,4 +1293,9 @@ else echo "With unifont from $FONT_SOURCE" fi echo "*******************************************************" +if test "x$LIBLZMA" = x ; then +echo "Without liblzma (no support for XZ-compressed mips images)" +else +echo "With liblzma from $LIBLZMA (support for XZ-compressed mips images)" +fi ]