From cb91ed8e6ba3cf11b8a99374bdb79dac353d7db3 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald@gmail.com" Date: Tue, 4 Jun 2013 09:58:34 +0000 Subject: [PATCH] make USB vendor/product optional --- configure.in | 6 ------ 1 file changed, 6 deletions(-) diff --git a/configure.in b/configure.in index 5fa41e88b..0e558d410 100644 --- a/configure.in +++ b/configure.in @@ -52,12 +52,6 @@ if test "x$HCI_TRANSPORT" = xUSB; then if test "$HAVE_LIBUSB" == "no" ; then AC_MSG_ERROR(USB Transport requested but libusb-1.0 not found using pkg-config. Please set PKG_CONFIG_PATH correctly and/or install libusb-1.0 from your distribution or from http://libusb.sourceforge.net/api-1.0/) fi - if test -z "$USB_VENDOR_ID" ; then - AC_MSG_ERROR(USB Transport requested but USB_VENDOR_ID not set. Please specify vendor ID of your USB dongle using --with-vendor-id=0x1234) - fi - if test -z "$USB_PRODUCT_ID" ; then - AC_MSG_ERROR(USB Transport requested but USB_PRODUCT_ID not set. Please specify product ID of your USB dongle using --with-product-id=0x1234) - fi CFLAGS="$CFLAGS $LIBUSB_CFLAGS" LDFLAGS="$LDFLAGS $LIBUSB_LIBS" fi