aboutsummaryrefslogtreecommitdiffstats
path: root/host/cmake/Modules
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-07-23 15:15:17 -0700
committerMartin Braun <martin.braun@ettus.com>2019-07-24 12:10:29 -0700
commit1210a633aeca082052621629a5643c661d7a7f34 (patch)
treec8b1de733d28171c092dfd3e5006624040604e5d /host/cmake/Modules
parent3c8ed1b5baa5fcd093dc9e34550d485a2d3d2bd0 (diff)
downloaduhd-1210a633aeca082052621629a5643c661d7a7f34.tar.gz
uhd-1210a633aeca082052621629a5643c661d7a7f34.tar.bz2
uhd-1210a633aeca082052621629a5643c661d7a7f34.zip
Remove GPSd dependency
GPSd was used by the E310 prior to its MPM-ification, GPSd is therefore no longer required by UHD.
Diffstat (limited to 'host/cmake/Modules')
-rw-r--r--host/cmake/Modules/FindGPSD.cmake51
1 files changed, 0 insertions, 51 deletions
diff --git a/host/cmake/Modules/FindGPSD.cmake b/host/cmake/Modules/FindGPSD.cmake
deleted file mode 100644
index 92216438f..000000000
--- a/host/cmake/Modules/FindGPSD.cmake
+++ /dev/null
@@ -1,51 +0,0 @@
-#
-# Copyright 2015 Ettus Research LLC
-#
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-# - Find libgps
-# Find the Gpsd includes and client library
-# This module defines
-# LIBGPS_INCLUDE_DIR, where to find gps.h
-# LIBGPS_LIBRARIES, the libraries needed by a GPSD client.
-# LIBGPS_FOUND, If false, do not try to use GPSD.
-# also defined, but not for general use are
-# LIBGPS_LIBRARY, where to find the GPSD library.
-
-include(FindPkgConfig)
-PKG_CHECK_MODULES(PC_GPSD "libgps")
-PKG_CHECK_MODULES(PC_GPSD_V3_11 "libgps >= 3.11")
-
-if(PC_GPSD_FOUND AND NOT PC_GPSD_V3_11_FOUND)
- message(WARNING "GPSD version found is too old")
-endif(PC_GPSD_FOUND AND NOT PC_GPSD_V3_11_FOUND)
-
-if(PC_GPSD_V3_11_FOUND)
- find_path(
- LIBGPS_INCLUDE_DIR
- NAMES gps.h
- HINTS ${PC_GPSD_INCLUDE_DIR}
- )
-
- set(
- LIBGPS_NAMES
- ${LIBGPS_NAMES} gps
- )
-
- find_library(
- LIBGPS_LIBRARY
- NAMES ${LIBGPS_NAMES}
- HINTS ${PC_GPSD_LIBDIR}
- )
-endif(PC_GPSD_V3_11_FOUND)
-
-# handle the QUIETLY and REQUIRED arguments and set LIBGPS_FOUND to TRUE if
-# all listed variables are TRUE
-include(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBGPS DEFAULT_MSG LIBGPS_LIBRARY LIBGPS_INCLUDE_DIR)
-
-if(LIBGPS_FOUND)
- set(LIBGPS_LIBRARIES ${LIBGPS_LIBRARY})
-endif(LIBGPS_FOUND)
-
-mark_as_advanced(LIBGPS_LIBRARY LIBGPS_INCLUDE_DIR)