diff options
author | Paul A. Patience <paul@apatience.com> | 2024-02-09 19:17:15 +0000 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2024-03-01 14:09:32 +0800 |
commit | b18c003c6908b6d7bc6d63ee4451b5b5cdb6f17c (patch) | |
tree | ba2fcdbc67b906b1b345d0dc142552365da91d8c /gnu/packages | |
parent | abb5ed83a87109e8be3b47cc5f62294bb0f5823e (diff) | |
download | guix-b18c003c6908b6d7bc6d63ee4451b5b5cdb6f17c.tar.gz guix-b18c003c6908b6d7bc6d63ee4451b5b5cdb6f17c.zip |
gnu: reproc: Enable reproc++.
* gnu/packages/cpp.scm (reproc)[arguments]<#:configure-flags>: Add
-DREPROC++=ON.
Change-Id: I2bf6c4c45df6a1ca5569ce1cf63c42905cc336d0
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cpp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index e530d1d2a8..9c49ea8d33 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1068,7 +1068,8 @@ and make @code{cpplint} usable in wider contexts.") ;; No tests. `(#:tests? #f ;; Build the shared library instead of a static one. - #:configure-flags `("-DBUILD_SHARED_LIBS=1"))) + #:configure-flags `("-DBUILD_SHARED_LIBS=1" + "-DREPROC++=ON"))) (native-inputs (list pkg-config)) (synopsis "Process IO library") |