From: Uwe Hermann Date: Sat, 5 Apr 2014 11:35:49 +0000 (+0200) Subject: configure.ac: Clearly mark required and optional libs. X-Git-Tag: libsigrok-0.3.0~87 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=958326f8c685667239127a59ef883e7bceb63ac0;p=libsigrok.git configure.ac: Clearly mark required and optional libs. --- 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"