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.
This commit is contained in:
Marius Bakke 2020-01-29 10:07:11 +01:00
parent 4e8d1116ff
commit 92ebd8ede4
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -872,7 +872,8 @@ (define-public mbedtls-apache
(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)))