diff --git a/CMakeLists.txt b/CMakeLists.txt index e89a6a9..a594786 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -126,10 +126,6 @@ find_package(LibBpf) find_package(LibBfd) find_package(LibOpcodes) -if(${LIBBFD_FOUND} AND ${LIBOPCODES_FOUND}) - set(HAVE_BFD_DISASM TRUE) -endif() - include(CheckIncludeFile) check_include_file("sys/sdt.h" HAVE_SYSTEMTAP_SYS_SDT_H) 2'>cgit logo index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages.scm
AgeCommit message (Collapse)Author
2023-01-25packages: Adjust 'generate-package-cache' for Guile 3.0.9.Ludovic Courtès
* gnu/packages.scm (generate-package-cache): Adjust for Guile 3.0.9.
2022-06-06packages: Use SRFI-71 instead of SRFI-11.Ludovic Courtès
* gnu/packages.scm (%package-module-path): Use 'let*' instead of 'let*-values'. (specification->package, specification->location) (specification->package+output): Use 'let' instead of 'let-values'.
2022-06-06packages: Add 'specifications->packages'.Antero Mejr
* gnu/packages.scm (specifications->packages): New procedure. * guix/scripts/home/import.scm (manifest+configuration-files->code): Use it. * tests/home-import.scm (match-home-environment-no-services) (match-home-environment-no-services-nor-packages) (match-home-environment-bash-service) (match-home-environment-bash-service-with-alias): Adjust 'packages' field accordingly. Co-authored-by: Ludovic Courtès <ludo@gnu.org>