From df1dbe3ded5cbdeb75c9c67049f989b8448cc457 Mon Sep 17 00:00:00 2001 From: Marc Schink Date: Tue, 3 Jan 2017 01:28:39 +0100 Subject: [PATCH] configure.ac: Show enabled transports Signed-off-by: Marc Schink --- configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index 400d6db..916291c 100644 --- a/configure.ac +++ b/configure.ac @@ -59,6 +59,9 @@ AS_IF([test "x$HAVE_LIBUSB" = "xyes"], AS_IF([test "x$HAVE_LIBUSB" = "xyes"], [JAYLINK_PKG_LIBS="libusb-1.0"]) +AS_IF([test "x$HAVE_LIBUSB" = "xyes"], + [libusb_msg="yes"], [libusb_msg="no (missing: libusb-1.0)"]) + AM_CONDITIONAL([HAVE_LIBUSB], [test "x$HAVE_LIBUSB" = "xyes"]) @@ -120,4 +123,9 @@ echo " - Library version ................ $JAYLINK_VERSION_LIBRARY" echo " - Installation prefix ............ $prefix" echo " - Building on .................... $build" echo " - Building for ................... $host" + +echo +echo "Enabled transports:" +echo " - USB ............................ $libusb_msg" +echo " - TCP ............................ yes" echo -- 2.11.4.GIT