Dfu-programmer cannot cannot find libusb. This patch fixes that. diff --git a/src/dfu-device.h b/src/dfu-device.h index bbdfa99..31af0e8 100644 --- a/src/dfu-device.h +++ b/src/dfu-device.h @@ -6,7 +6,7 @@ #endif #include #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif diff --git a/src/main.c b/src/main.c index ef2aa16..dcc3636 100644 --- a/src/main.c +++ b/src/main.c @@ -24,7 +24,7 @@ #include #include #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif diff --git a/src/dfu.c b/src/dfu.c index 7dbcc57..952e896 100644 --- a/src/dfu.c +++ b/src/dfu.c @@ -27,7 +27,7 @@ #include #include #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif diff --git a/src/dfu.h b/src/dfu.h index 2a159e8..63510f2 100644 --- a/src/dfu.h +++ b/src/dfu.h @@ -25,7 +25,7 @@ # include #endif #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif logtreecommitdiff
AgeCommit message (Expand)Author
2024-06-02Revert "services: home: Use pairs instead of lists."...This reverts commit dbeef44f3c520816251bde74c1005915a637e1ef. Despite the more semantically correct data type, it doesn't follow the style of the most services and also breaks user-facing API. Change-Id: Ib4ef4e9cd2f53ac853a5b7c7c90e57c35c99a5ea Andrew Tropin
2024-06-02services: home: Use pairs instead of lists....* gnu/services/guix.scm: Use pairs instead of lists. * doc/guix.texi: Update accordingly. * gnu/tests/guix.scm: Update accordingly. Change-Id: I0b8d3fa5b214add89bdb84a11fa20d1b319435f0 Andrew Tropin
2024-04-17services: Add the Guix Home service....This patch adds a Guix Home service, which allows for configuring/deploying an operating-system declaration with an associated home-environment. * gnu/services/guix.scm: Add guix-home-service and guix-home-shepherd-service * gnu/home/services/shepherd.scm: Don't attempt to launch user shepherd when the system shepherd runs guix-home-<user> * doc/guix.texi: Add documentation for guix-home-service * gnu/tests/guix.scm: Add a test to verify guix-home-service-type is able to activate a home environment Change-Id: Ifbcc0878d934aa4abe34bb2123b5081fb432aa8e Signed-off-by: Ludovic Courtès <ludo@gnu.org> Richard Sent