]> sigrok.org Git - libsigrok.git/commitdiff
configure.ac: Improve a libusb-1.0 related check.
authorUwe Hermann <redacted>
Mon, 8 Apr 2013 13:56:54 +0000 (15:56 +0200)
committerUwe Hermann <redacted>
Tue, 9 Apr 2013 15:49:14 +0000 (17:49 +0200)
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

index 8e48861be2dcddf0148dd5ac6138dd6bd608b1b5..9e52c712c203d2ad1a46394699ea2c3a415dce2a 100644 (file)
@@ -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