commit cdb28383402d248dbc6062f4391b038375c52385 Author: Fabrice Fontaine 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 | ^~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/1427f44e36752c337791597fab47a1889552a2fe Signed-off-by: Fabrice Fontaine 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 ) c1604a8af4bca'>commitdiff
AgeCommit message (Expand)Author
2024-09-26gnu: Add cpm-cmake....* gnu/packages/cmake.scm (cpm-cmake): New variable. Change-Id: I3938f1da1513010c8af6bedc2aa26635d43ca7ce Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> dan
2024-09-22gnu: Add tinycmmc....* gnu/packages/cmake.scm (tinycmmc): New variable. Change-Id: Ie3a4e04f1ab3fb3ad6b6825f371d233a4ee905e2 Maxim Cournoyer
2024-09-15gnu: Add cmake-3.30....Add newer version of cmake for packages that will need it (for instance, new features like finding EGL2), without yet updating the default and rebuilding all cmake packages. * gnu/packages/cmake.scm (cmake-3.30): New variable. Change-Id: I345e9cab7a79624ff0012f493c18426bd843e0d6 John Kehayias
2024-04-03gnu: Add qmsetup....* gnu/packages/cmake.scm (qmsetup): New variable. Change-Id: Iea83c59498fe7da97a01725a293915669e6714f9 Maxim Cournoyer
2024-02-25gnu: cmake: Adjust vim plugin directory....* gnu/packages/cmake.scm (cmake)[arguments]: Add configure-flag to install vim plugin to the correct directory. Change-Id: I35909bcdb1c71a19ff76a81087e0b524163da624 Efraim Flashner
2023-10-24gnu: cmake-minimal: Remove ‘hidden’ property....This makes ‘cmake-minimal’ accessible to users and additionally allows for input rewriting, as discussed at <https://issues.guix.gnu.org/65665#17>. * gnu/packages/cmake.scm (cmake-minimal)[properties]: New field. Ludovic Courtès
2023-07-20gnu: cmake-minimal: Skip tests on the Hurd....* gnu/packages/cmake.scm (cmake-minimal)[arguments]: When building natively on the Hurd, add %common-disabled-tests/hurd to skipped tests in phase 'check'. Janneke Nieuwenhuizen
2023-07-20gnu: cmake-bootstrap: Fix build for the Hurd....* gnu/packages/cmake.scm (%common-disabled-tests/hurd): New variable. (cmake-bootstrap) [inputs]: Include libuv for the Hurd too. [arguments]: Add %common-disabled-tests/hurd to #:make-flags for the Hurd. Also add a 'patch-hurd' phase to fix the build. Janneke Nieuwenhuizen
2023-06-17gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?....* gnu/packages/hurd.scm (hurd-target?): Remove. (hurd-system?): Move to... * guix/utils.scm (system-hurd?): ...here. * gnu/packages/*: Update all users, removing (gnu packages hurd) include where now unused. Janneke Nieuwenhuizen