diff options
author | Marius Bakke <marius@gnu.org> | 2020-10-22 11:56:42 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-10-22 18:41:29 +0200 |
commit | f343c36dcada94377a2e76486214e9d2f16bd11e (patch) | |
tree | d8e4f77742c8ad0dc587dc127ba69dd00fed1f96 /gnu/packages | |
parent | ccbbcbf0c436cb9630b28cfe1edec585a9b575b6 (diff) | |
download | guix-f343c36dcada94377a2e76486214e9d2f16bd11e.tar.gz |
gnu: srt: Do not build the static library.
* gnu/packages/networking.scm (srt)[arguments]: Add "-DENABLE_STATIC=OFF" to #:configure-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/networking.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 9ee5ed981e..02a112153d 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -331,6 +331,7 @@ supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://.") (assoc-ref %outputs "out") "/lib") (string-append "-DCMAKE_INSTALL_INCLUDEDIR=" (assoc-ref %outputs "out") "/include") + "-DENABLE_STATIC=OFF" "-DENABLE_UNITTESTS=ON" "-DENABLE_CODE_COVERAGE=ON"))) (native-inputs |