From b1c894b53fa86d39e7860da25852d6de84fe6801 Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Sun, 28 Jun 2020 15:22:43 +0200 Subject: [PATCH] gnu: nghttp2: Support for the Hurd. * gnu/packages/web.scm (nghttp2)[inputs]: When compiling for the Hurd, include openssl:static. --- gnu/packages/web.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 292ccf5285..47b0c5c9fb 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -7232,7 +7232,10 @@ (define-public nghttp2 `(("jemalloc" ,jemalloc))) ; fight nghttpd{,x} heap fragmentation ("libev" ,libev) ("libxml2" ,libxml2) ; for ‘nghttp -a’ - ("openssl" ,openssl))) + ("openssl" ,openssl) + ,@(if (hurd-target?) + `(("openssl-static" ,openssl "static")) + '()))) (arguments `(#:configure-flags (list (string-append "--libdir=" (assoc-ref %outputs "lib") "/lib")