1From 3e68fd7da98a755403cf5719c3d7a3c2f4dcbb58 Mon Sep 17 00:00:00 2001 2From: Fabrice Fontaine <fontaine.fabrice@gmail.com> 3Date: Fri, 17 Jul 2020 21:04:45 +0200 4Subject: [PATCH] CMakeLists.txt: fix paths when FTDIPP is set 5 6Use the same project name (i.e. libftdi1 and not libftdipp1) when FTDIPP 7is enabled as suggested by Aurelien Jarno in 8http://developer.intra2net.com/mailarchive/html/libftdi/2020/msg00044.html 9 10Without this change, the libftdi1.pc config file defines the include 11path as /usr/local/include/libftdipp1 while the ftdi.h file is actually 12installed in /usr/local/include/libftdi1 13 14This is an issue for example for libsigrok which will fail on: 15 16In file included from src/hardware/asix-sigma/protocol.c:27: 17src/hardware/asix-sigma/protocol.h:28:10: fatal error: ftdi.h: No such file or directory 18 28 | #include <ftdi.h> 19 | ^~~~~~~~ 20 21Fixes: 22 - http://autobuild.buildroot.org/results/1427f44e36752c337791597fab47a1889552a2fe 23 24Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 25[Upstream status: 26http://developer.intra2net.com/mailarchive/html/libftdi/2020/msg00045.html] 27--- 28 CMakeLists.txt | 2 +- 29 1 file changed, 1 insertion(+), 1 deletion(-) 30 31diff --git a/CMakeLists.txt b/CMakeLists.txt 32index 5aecafc..3b0b87c 100644 33--- a/CMakeLists.txt 34+++ b/CMakeLists.txt 35@@ -136,7 +136,7 @@ endif () 36 37 add_subdirectory(src) 38 if ( FTDIPP ) 39- project(libftdipp1 C CXX) 40+ project(libftdi1 C CXX) 41 add_subdirectory(ftdipp) 42 endif () 43 if ( PYTHON_BINDINGS ) 44-- 452.27.0 46 47