From d62b41974ce664e571da281e859abec31a492f62 Mon Sep 17 00:00:00 2001 From: Michael Dickens Date: Thu, 16 Sep 2010 21:07:29 -0400 Subject: [PATCH] Fixed setting of USB_LIBS for *win* --- config/usrp_libusb.m4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/usrp_libusb.m4 b/config/usrp_libusb.m4 index 588a958e..a434d379 100644 --- a/config/usrp_libusb.m4 +++ b/config/usrp_libusb.m4 @@ -129,12 +129,6 @@ AC_DEFUN([USRP_LIBUSB], [ ]], [[return $usb_lib_func ();]])], [libusbok=yes],[libusbok=no]) AC_MSG_RESULT([$libusbok]) - case "$host_os" in - cygwin* | mingw*) - USB_LIBS="$LIBS" - ;; - *) ;; - esac LIBS="$save_LIBS" AC_LANG_POP(C) @@ -197,6 +191,12 @@ AC_DEFUN([USRP_LIBUSB], [ 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 + cygwin* | mingw*) + USB_LIBS="$LIBS" + ;; + *) ;; + esac LIBS="$save_LIBS" CPPFLAGS="$save_CPPFLAGS" AC_LANG_POP(C) -- 2.30.2