From ccf35720c0494f4102fba8ee0a44ce1d3b67fc10 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 8 Apr 2013 15:56:54 +0200 Subject: [PATCH] configure.ac: Improve a libusb-1.0 related check. Don't rely on the "heuristic" that 'libusb_CFLAGS' will be non-empty if libusb-1.0 was found, but rather use the proper method of checking the variable 'have_libusb1_0' which pkg-config will set to "yes"/"no" depending on whether it finds the library. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8e48861b..9e52c712 100644 --- a/configure.ac +++ b/configure.ac @@ -228,7 +228,7 @@ case "$build" in LA_ZEROPLUS_LOGIC_CUBE="no"]) # Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0. - if test "x$libusb_CFLAGS" != "x"; then + if test "x$have_libusb1_0" != "xno"; then AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1], [Specifies whether we have a libusb.h header.]) fi