From 23f9fcb2d3ad1e938e6367d6447c797289dad7ea Mon Sep 17 00:00:00 2001 From: Stijn Tintel Date: Sun, 15 Aug 2021 02:32:51 +0300 Subject: [PATCH] rtl_433: disable SoapySDR When building on a host with SoapySDR installed, the package fails to build as CMake picks up the host SoapySDR CMake module. As SoapySDR is not available in OpenWrt, simply disable SoapySDR to fix build. Signed-off-by: Stijn Tintel --- utils/rtl_433/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/rtl_433/Makefile b/utils/rtl_433/Makefile index cf3e4424..e9422af4 100644 --- a/utils/rtl_433/Makefile +++ b/utils/rtl_433/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=rtl_433 PKG_VERSION:=20.11 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/merbanan/rtl_433/tar.gz/$(PKG_VERSION)? @@ -33,6 +33,8 @@ define Package/rtl-sdr/description rtl_433 turns your Realtek RTL2832 based DVB dongle into a 433.92MHz generic data receiver. endef +CMAKE_OPTIONS += -DENABLE_SOAPYSDR=NO + define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/rtl_433.h $(1)/usr/include