From 958326f8c685667239127a59ef883e7bceb63ac0 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 5 Apr 2014 13:35:49 +0200 Subject: [PATCH] configure.ac: Clearly mark required and optional libs. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b76110fe..5d76c16f 100644 --- a/configure.ac +++ b/configure.ac @@ -629,13 +629,16 @@ echo # Note: This only works for libs with pkg-config integration. for lib in "glib-2.0 >= 2.32.0" "libzip >= 0.10" "libserialport >= 0.1.0" "librevisa >= 0.0.20130812" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" "libudev >= 151" "alsa >= 1.0" "check >= 0.9.4"; do + optional="OPTIONAL" + if test "x$lib" = "xglib-2.0 >= 2.32.0"; then optional="REQUIRED"; fi + if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi if `$PKG_CONFIG --exists $lib`; then ver=`$PKG_CONFIG --modversion $lib` answer="yes ($ver)" else answer="no" fi - echo " - $lib: $answer" + echo " - ($optional) $lib: $answer" done echo -e "\nEnabled hardware drivers:\n"