Print a configuration summary at the end of the configure run.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1069 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Joerg Wunsch
2012-03-20 14:13:18 +00:00
parent 165d526d98
commit 19b0f84db1
2 changed files with 40 additions and 1 deletions

View File

@@ -425,3 +425,38 @@ AC_CONFIG_FILES([avrdude.conf.tmp:avrdude.conf.in],
[confsubst="$confsubst"])
AC_OUTPUT
echo ""
echo ""
echo "Configuration summary:"
echo "----------------------"
if test x$have_libelf = xyes; then
echo "DO HAVE libelf"
else
echo "DON'T HAVE libelf"
fi
if test x$have_libusb = xyes; then
echo "DO HAVE libusb"
else
echo "DON'T HAVE libusb"
fi
if test x$have_libusb_1_0 = xyes; then
echo "DO HAVE libusb_1_0"
else
echo "DON'T HAVE libusb_1_0"
fi
if test x$have_libftdi = xyes; then
echo "DO HAVE libftdi"
else
echo "DON'T HAVE libftdi"
fi
if test x$have_libhid = xyes; then
echo "DO HAVE libhid"
else
echo "DON'T HAVE libhid"
fi