libftdi1: Fix compilation with most recent CMake
authorRosen Penev <redacted>
Wed, 15 May 2019 21:46:13 +0000 (14:46 -0700)
committerRosen Penev <redacted>
Thu, 16 May 2019 00:28:33 +0000 (17:28 -0700)
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 <redacted>
libs/libftdi1/Makefile

index fddf4034134c85ac7efca0a4592c5d96e6bdfd11..2280030320dd005042474b398364124d084220ba 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=libftdi1
 PKG_VERSION:=1.4
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:=http://www.intra2net.com/en/developer/libftdi/download/
@@ -22,8 +22,6 @@ PKG_LICENSE_FILES:=COPYING.LIB
 PKG_INSTALL:=1
 PKG_USE_MIPS16:=0
 
-CMAKE_OPTIONS:=-DBUILD_TESTS=OFF
-
 include $(INCLUDE_DIR)/package.mk
 include $(INCLUDE_DIR)/cmake.mk
 
@@ -60,6 +58,10 @@ define Package/ftdi_eeprom/description
   read. Otherwise, you will still get the old values.
 endef
 
+CMAKE_OPTIONS:= \
+       -DBUILD_TESTS=OFF \
+       -DBoost_NO_BOOST_CMAKE=ON
+
 define Build/InstallDev
        $(INSTALL_DIR) $(1)/usr/include/libftdi1/
        $(CP) $(PKG_INSTALL_DIR)/usr/include/libftdi1/ftdi.h $(1)/usr/include/libftdi1/
git clone https://git.99rst.org/PROJECT