From 6c40424879160e6588c0e34348b67f8c7b154180 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 15 May 2019 14:43:14 -0700 Subject: [PATCH] libftdi: Fix compilation with most recent CMake Description from Amol Bhave: This package fails to compile with boost 1.70 when the boost cmake config gets used. As far as I can tell, Boost 1.70 introduced BoostConfigVersion.cmake. In that file, the value of PACKAGE_VERSION is set to 1.70. This makes CMake auto set the variable Boost_VERSION to 1.70. Historically, Boost_VERSION has been using the format like 170000, and not 1.70. Some package cmake files still depend on this behavior and make assertions such as Boost_VERSION > 168000. This is incompatible with the new scheme. Signed-off-by: Rosen Penev --- libs/libftdi/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/libftdi/Makefile b/libs/libftdi/Makefile index ba9b09a453..4cdb0166d4 100644 --- a/libs/libftdi/Makefile +++ b/libs/libftdi/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libftdi PKG_VERSION:=0.20 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.intra2net.com/en/developer/libftdi/download/ @@ -39,6 +39,8 @@ define Package/libftdi/description The library is linked with your program in userspace, no kernel driver required. endef +CMAKE_OPTIONS += -DBoost_NO_BOOST_CMAKE=ON + define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include/ $(CP) $(PKG_INSTALL_DIR)/usr/include/ftdi.h $(1)/usr/include/ -- 2.30.2