summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rwxr-xr-x[-rw-r--r--]config/usrp_libusb.m413
1 files changed, 8 insertions, 5 deletions
diff --git a/config/usrp_libusb.m4 b/config/usrp_libusb.m4
index 4347bfba3..6ed7f5e9f 100644..100755
--- a/config/usrp_libusb.m4
+++ b/config/usrp_libusb.m4
@@ -90,17 +90,20 @@ AC_DEFUN([USRP_LIBUSB], [
AC_LANG_PUSH(C)
save_LIBS="$LIBS"
+ LIBS=""
+ AC_CHECK_LIB([$usb_lib_name], [$usb_lib_func], [], [
+ libusbok=no
+ AC_MSG_RESULT([USRP requires library '$usb_lib_name' with function '$usb_lib_func', which was either not found or was not usable. See http://www.libusb.org])
+ ])
case "$host_os" in
darwin*)
USB_LIBS="$USB_LIBS -lIOKit"
;;
+ cygwin* | mingw*)
+ USB_LIBS="$LIBS"
+ ;;
*) ;;
esac
- LIBS="$LIBS $USB_LIBS"
- AC_CHECK_LIB([$usb_lib_name], [$usb_lib_func], [], [
- libusbok=no
- AC_MSG_RESULT([USRP requires library '$usb_lib_name' with function '$usb_lib_func', which was either not found or was not usable. See http://www.libusb.org])
- ])
LIBS="$save_LIBS"
AC_LANG_POP(C)
fi