archrelease: copy trunk to community-any
[ArchLinux/community.git] / libftdi / repos / community-x86_64 / fix_includes_path.patch
blob4117f9cc57e2a6a3075be3489f61b6543a916b9b
1 From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2 Date: Fri, 17 Jul 2020 19:25:03 +0000 (+0200)
3 Subject: CMakeLists.txt: fix paths when FTDIPP is set
4 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=cdb28383402d248dbc6062f4391b038375c52385;hp=5c2c58e03ea999534e8cb64906c8ae8b15536c30
6 CMakeLists.txt: fix paths when FTDIPP is set
8 Use the same project name (i.e. libftdi1 and not libftdipp1) when FTDIPP
9 is enabled as suggested by Aurelien Jarno in
10 http://developer.intra2net.com/mailarchive/html/libftdi/2020/msg00044.html
12 Without this change, the libftdi1.pc config file defines the include
13 path as /usr/local/include/libftdipp1 while the ftdi.h file is actually
14 installed in /usr/local/include/libftdi1
16 This is an issue for example for libsigrok which will fail on:
18 In file included from src/hardware/asix-sigma/protocol.c:27:
19 src/hardware/asix-sigma/protocol.h:28:10: fatal error: ftdi.h: No such file or directory
20 28 | #include <ftdi.h>
21 | ^~~~~~~~
23 Fixes:
24 - http://autobuild.buildroot.org/results/1427f44e36752c337791597fab47a1889552a2fe
26 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
27 ---
29 diff --git a/CMakeLists.txt b/CMakeLists.txt
30 index 5aecafc..3b0b87c 100644
31 --- a/CMakeLists.txt
32 +++ b/CMakeLists.txt
33 @@ -136,7 +136,7 @@ endif ()
35 add_subdirectory(src)
36 if ( FTDIPP )
37 - project(libftdipp1 C CXX)
38 + project(libftdi1 C CXX)
39 add_subdirectory(ftdipp)
40 endif ()
41 if ( PYTHON_BINDINGS )