0002-CMakeLists.txt-fix-paths-when-FTDIPP-is-set.patch 1.5 KB

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