diff --git a/urjtag/ChangeLog b/urjtag/ChangeLog index 648b2dad..6242d25f 100644 --- a/urjtag/ChangeLog +++ b/urjtag/ChangeLog @@ -2,6 +2,9 @@ * src/tap/usbconn/libftdi.c (usbconn_ftdi_flush): Fix gcc printf warning. + * configure.ac: Have the libftdi + libusb-1.0 error give a tip about using + --with-async-mode with the libftdi package when erroring out. + 2010-06-21 Mike Frysinger * src/bus/bf518f_ezbrd.c (urj_bus_bf51x_bus): Fix copy & paste typo in name. diff --git a/urjtag/configure.ac b/urjtag/configure.ac index ca9a8c9e..deff72cf 100644 --- a/urjtag/configure.ac +++ b/urjtag/configure.ac @@ -282,7 +282,8 @@ AS_IF([test "x$with_libftdi" != xno], [ HAVELIBFTDI_ASYNCMODE=yes ], [ AS_IF([test "x$HAVELIBUSB1" = "xyes"], [ - AC_MSG_ERROR([this libftdi cannot be used with libusb-1.0, libusb-0.1 is needed]) + AC_MSG_ERROR([this libftdi cannot be used with libusb-1.0, libusb-0.1 is needed. + did you configure libftdi with --with-async-mode ?]) ],) ]) ],)