From: Uwe Hermann Date: Tue, 9 Apr 2013 16:08:16 +0000 (+0200) Subject: configure.ac: Mention required lib versions. X-Git-Tag: dsupstream~223 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=6e772cbe802327ed79cdaae9d366fed1ec6b081c;p=libsigrok.git configure.ac: Mention required lib versions. In the summary output at the end of a configure run, explicitly mention which versions of which libraries are required, and also the version which pkg-config has found. --- diff --git a/configure.ac b/configure.ac index 7be2dfff..6a20c9ec 100644 --- a/configure.ac +++ b/configure.ac @@ -465,7 +465,7 @@ echo "Detected libraries:" echo # Note: This only works for libs with pkg-config integration. -for lib in "glib-2.0" "libzip" "libusb-1.0" "libftdi" "libudev" "alsa" "check"; do +for lib in "glib-2.0 >= 2.28.0" "libzip >= 0.8" "libusb-1.0 >= 1.0.9" "libftdi >= 0.16" "libudev >= 151" "alsa >= 1.0" "check >= 0.9.4"; do if `$PKG_CONFIG --exists $lib`; then ver=`$PKG_CONFIG --modversion $lib` answer="yes ($ver)"