diff options
author | ttsou <ttsou@vt.edu> | 2009-08-27 18:13:54 -0400 |
---|---|---|
committer | ttsou <ttsou@vt.edu> | 2009-09-15 18:06:27 -0400 |
commit | c62085a66bd97f389f49167492f7dccfb0b02976 (patch) | |
tree | a6e2c41f417faa0ef5b1e37e0af006d5d56f46af /config/usrp_fusb_tech.m4 | |
parent | bdec6a37a474b961389e0ac590d0582e490ffb2c (diff) |
first shot at re-adding libusb-0.12 support
Diffstat (limited to 'config/usrp_fusb_tech.m4')
-rw-r--r-- | config/usrp_fusb_tech.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/usrp_fusb_tech.m4 b/config/usrp_fusb_tech.m4 index bda6f5af96..196799e342 100644 --- a/config/usrp_fusb_tech.m4 +++ b/config/usrp_fusb_tech.m4 @@ -37,9 +37,9 @@ AC_DEFUN([USRP_SET_FUSB_TECHNIQUE],[ [x_have_usbdevice_fs_h=yes], [x_have_usbdevice_fs_h=no]) if test x${x_have_usbdevice_fs_h} = xyes; then - FUSB_TECH=libusb1 + FUSB_TECH=linux else - FUSB_TECH=libusb1 + FUSB_TECH=generic fi ;; darwin*) @@ -69,7 +69,7 @@ AC_DEFUN([USRP_SET_FUSB_TECHNIQUE],[ AM_CONDITIONAL(FUSB_TECH_darwin, test x$FUSB_TECH = xdarwin) AM_CONDITIONAL(FUSB_TECH_win32, test x$FUSB_TECH = xwin32) AM_CONDITIONAL(FUSB_TECH_generic, test x$FUSB_TECH = xgeneric) - AM_CONDITIONAL(FUSB_TECH_libusb1, test x$FUSB_TECH = xlibusb1) AM_CONDITIONAL(FUSB_TECH_linux, test x$FUSB_TECH = xlinux) + AM_CONDITIONAL(FUSB_TECH_libusb1, test x$FUSB_TECH = xlibusb1) AM_CONDITIONAL(FUSB_TECH_ra_wb, test x$FUSB_TECH = xra_wb) ]) |