libftdi-git Archives

Subject: A library to talk to FTDI chips branch, master, updated. v1.5-1-gcdb2838

From: libftdi-git@xxxxxxxxxxxxxxxxxxxxxxx
To: libftdi-git@xxxxxxxxxxxxxxxxxxxxxxx
Date: Sat, 18 Jul 2020 12:50:46 +0200 (CEST)
The branch, master has been updated
       via  cdb28383402d248dbc6062f4391b038375c52385 (commit)
      from  5c2c58e03ea999534e8cb64906c8ae8b15536c30 (commit)


- Log -----------------------------------------------------------------
commit cdb28383402d248dbc6062f4391b038375c52385
Author: Fabrice Fontaine <fontaine.fabrice@xxxxxxxxx>
Date:   Fri Jul 17 21:25:03 2020 +0200

    CMakeLists.txt: fix paths when FTDIPP is set
    
    Use the same project name (i.e. libftdi1 and not libftdipp1) when FTDIPP
    is enabled as suggested by Aurelien Jarno in
    http://developer.intra2net.com/mailarchive/html/libftdi/2020/msg00044.html
    
    Without this change, the libftdi1.pc config file defines the include
    path as /usr/local/include/libftdipp1 while the ftdi.h file is actually
    installed in /usr/local/include/libftdi1
    
    This is an issue for example for libsigrok which will fail on:
    
    In file included from src/hardware/asix-sigma/protocol.c:27:
    src/hardware/asix-sigma/protocol.h:28:10: fatal error: ftdi.h: No such file 
or directory
       28 | #include <ftdi.h>
          |          ^~~~~~~~
    
    Fixes:
     - 
http://autobuild.buildroot.org/results/1427f44e36752c337791597fab47a1889552a2fe
    
    Signed-off-by: Fabrice Fontaine <fontaine.fabrice@xxxxxxxxx>

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5aecafc..3b0b87c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -136,7 +136,7 @@ endif ()
 
 add_subdirectory(src)
 if ( FTDIPP )
-  project(libftdipp1 C CXX)
+  project(libftdi1 C CXX)
   add_subdirectory(ftdipp)
 endif ()
 if ( PYTHON_BINDINGS )


hooks/post-receive
-- 
A library to talk to FTDI chips

--
libftdi-git - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi-git+unsubscribe@xxxxxxxxxxxxxxxxxxxxxxx   

Current Thread
  • A library to talk to FTDI chips branch, master, updated. v1.5-1-gcdb2838, libftdi-git <=