From 1210a633aeca082052621629a5643c661d7a7f34 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 23 Jul 2019 15:15:17 -0700 Subject: Remove GPSd dependency GPSd was used by the E310 prior to its MPM-ification, GPSd is therefore no longer required by UHD. --- host/cmake/Modules/FindGPSD.cmake | 51 --------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 host/cmake/Modules/FindGPSD.cmake (limited to 'host/cmake') 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) -- cgit v1.2.3