From b6c15d783cd2f0e680e9dc476c4f1c69b7ecccc6 Mon Sep 17 00:00:00 2001 From: Michael Heimpold Date: Sat, 27 Apr 2024 22:56:51 +0200 Subject: [PATCH] autotools: improve configure summary regarding libgpiod We cannot print the exact version we detected, but we can give a hint about the "version class" at least. Signed-off-by: Michael Heimpold --- src/configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/configure.ac b/src/configure.ac index 82b79829..969fc085 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -758,11 +758,11 @@ fi if test "x$enabled_linuxgpio" = xyes; then echo "ENABLED linuxgpio" if test "x$have_libgpiodv2" = xyes; then - echo "DO HAVE libgpiod (>=2.0)" + echo "DO HAVE libgpiod (>= 2.0)" elif test "x$have_libgpiodv1_6" = xyes; then - echo "DO HAVE libgpiod (>=1.6)" + echo "DO HAVE libgpiod (>= 1.6 < 2.0)" elif test "x$have_libgpiod" = xyes; then - echo "DO HAVE libgpiod" + echo "DO HAVE libgpiod (< 1.6)" else echo "DON'T HAVE libgpiod" fi