guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: nghttp2: Support for the Hurd.


From: guix-commits
Subject: 01/03: gnu: nghttp2: Support for the Hurd.
Date: Tue, 30 Jun 2020 09:39:32 -0400 (EDT)

janneke pushed a commit to branch master
in repository guix.

commit b1c894b53fa86d39e7860da25852d6de84fe6801
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Jun 28 15:22:43 2020 +0200

    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 292ccf5..47b0c5c 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -7232,7 +7232,10 @@ derivation by David Revoy from the original MonsterID by 
Andreas Gohr.")
              `(("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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]