Build against the system's HIDAPI instead of the bundled one. --- open-zwave-1.6-checkout/cpp/build/support.mk 2019-06-16 15:15:34.258331628 +0200 +++ open-zwave-1.6-checkout/cpp/build/support.mk 2019-06-16 15:15:54.698249462 +0200 @@ -86,6 +86,10 @@ endif endif SED := sed +# Build against the system's HIDAPI. +CPPFLAGS += $(shell pkg-config hidapi-libusb --cflags) +LDFLAGS += $(shell pkg-config hidapi-libusb --libs) + #determine if we are release or debug Build and set appropriate flags ifeq ($(BUILD), release) CFLAGS += -c $(RELEASE_CFLAGS) d>
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/channels.scm
AgeCommit message (Expand)Author
2020-05-07channels: Add mechanism to patch checkouts of the 'guix channel....Ludovic Courtès
2019-09-23channels: Allow news entries to refer to a tag....Ludovic Courtès
2019-09-23channels: Add support for a news file....Ludovic Courtès
2019-07-19channels: Always provide a <channel-metadata> record....Ludovic Courtès
2019-07-19channels: Strictly check the version of '.guix-channel'....Ludovic Courtès
2019-01-20inferior: 'gexp->derivation-in-inferior' honors EXP's load path....Ludovic Courtès
2019-01-20channels: Don't pull from the same channel more than once....Ludovic Courtès
2018-12-09guix: Add support for channel dependencies....Ricardo Wurmus