diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-07 23:28:48 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-08 09:36:26 -0500 |
commit | e0d89c37355bc09f6e561917a41ddd971f205cee (patch) | |
tree | a2bd5ad82c01f9536417ac222f9d064359735620 /gnu/packages | |
parent | 2c53c2bb6a95e6e51cde451515c4b5f8d1f0f1a3 (diff) | |
download | guix-e0d89c37355bc09f6e561917a41ddd971f205cee.tar.gz |
gnu: opendht: Do not produce static libraries.
* gnu/packages/networking.scm (opendht) [configure-flags]: Add "--disable-static".
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/networking.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 5a7d60c674..b33192d8cb 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3729,7 +3729,8 @@ and targeted primarily for asynchronous processing of HTTP-requests.") (guix build gnu-build-system) (guix build utils)) #:configure-flags - #~(list "--enable-tests" + #~(list "--disable-static" ;to reduce size + "--enable-tests" "--enable-proxy-server" "--enable-push-notifications" "--enable-proxy-server-identity" |