diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-29 10:07:11 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-29 11:03:09 +0100 |
commit | 92ebd8ede481f5965834d3d676d661cf375b299b (patch) | |
tree | 90f6562fa3cce8b94d89adf57d0b36829c0a4b70 /gnu | |
parent | 4e8d1116ff211c74231724ff1a47c7b855063bd1 (diff) | |
download | guix-92ebd8ede481f5965834d3d676d661cf375b299b.tar.gz guix-92ebd8ede481f5965834d3d676d661cf375b299b.zip |
gnu: mbedtls-apache: Do not build the static libraries.
* gnu/packages/tls.scm (mbedtls-apache)[arguments]: Add
"-DUSE_STATIC_MBEDTLS_LIBRARY=OFF" in #:configure-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tls.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index 358445301b..39f33c6ddc 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -872,7 +872,8 @@ then ported to the GNU / Linux environment.") (build-system cmake-build-system) (arguments `(#:configure-flags - (list "-DUSE_SHARED_MBEDTLS_LIBRARY=ON"))) + (list "-DUSE_SHARED_MBEDTLS_LIBRARY=ON" + "-DUSE_STATIC_MBEDTLS_LIBRARY=OFF"))) (native-inputs `(("perl" ,perl) ("python" ,python))) |