From c064124429890393ee9a447990bc861840d73803 Mon Sep 17 00:00:00 2001 From: Thomas Tsou Date: Fri, 11 Oct 2013 14:55:31 -0400 Subject: Transceiver52M: Remove support for ancient libusrp versions Current functionality with these old versions is questionable. There is no reason to use any version of GNU Radio / libusrp older than 3.3. Version 3.4.2 is the only recommended version for USRP1 users. Non-USRP1 users must use UHD driver from Ettus Research. Signed-off-by: Thomas Tsou --- configure.ac | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6ab694d..1fc58ea 100644 --- a/configure.ac +++ b/configure.ac @@ -79,18 +79,7 @@ AC_ARG_WITH(extref, [ ]) AS_IF([test "x$with_usrp1" = "xyes"], [ - # Defines USRP_CFLAGS, USRP_INCLUDEDIR, and USRP_LIBS - PKG_CHECK_MODULES(USRP, usrp > 3.1) - # Check whether we have libusrp >= 3.2 - PKG_CHECK_EXISTS(usrp >= 3.2, libusrp_3_2=yes, libusrp_3_2=no) - if test "x$libusrp_3_2" = "xyes";then - AC_DEFINE(HAVE_LIBUSRP_3_2, 1, Define to 1 if you have libusrp >= 3.2) - fi - # Check whether we have libusrp >= 3.3 - PKG_CHECK_EXISTS(usrp >= 3.3, libusrp_3_3=yes, libusrp_3_3=no) - if test "x$libusrp_3_3" = "xyes";then - AC_DEFINE(HAVE_LIBUSRP_3_3, 1, Define to 1 if you have libusrp >= 3.3) - fi + PKG_CHECK_MODULES(USRP, usrp >= 3.3) # Find and define supported SIMD extensions AX_EXT ]) -- cgit v1.2.3