guix-commits
[Top][All Lists]
Advanced

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

08/08: gnu: nghttp2: Remove jemalloc dependency for the Hurd.


From: guix-commits
Subject: 08/08: gnu: nghttp2: Remove jemalloc dependency for the Hurd.
Date: Sun, 29 Mar 2020 04:29:37 -0400 (EDT)

janneke pushed a commit to branch wip-hurd
in repository guix.

commit 8817b0805de9e97c61e534cacc8245ca881f0706
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Sat Mar 7 03:36:51 2020 -0500

    gnu: nghttp2: Remove jemalloc dependency for the Hurd.
    
    * gnu/packages/web.scm (nghttp2)[inputs]: Remove jemalloc for the Hurd.
---
 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 3f59bbd..781f76a 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -41,6 +41,7 @@
 ;;; Copyright © 2020 Timotej Lazar <address@hidden>
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
 ;;; Copyright © 2020 Pierre Neidhardt <address@hidden>
+;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -108,6 +109,7 @@
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages guile-xyz)
+  #:use-module (gnu packages hurd)
   #:use-module (gnu packages java)
   #:use-module (gnu packages jemalloc)
   #:use-module (gnu packages image)
@@ -7024,7 +7026,8 @@ derivation by David Revoy from the original MonsterID by 
Andreas Gohr.")
      ;; Required to build the tools (i.e. without ‘--enable-lib-only’).
      `(("c-ares" ,c-ares)
        ("jansson" ,jansson)             ; for HPACK tools
-       ("jemalloc" ,jemalloc)           ; fight nghttpd{,x} heap fragmentation
+       ,@(if (hurd-target?) '()
+             `(("jemalloc" ,jemalloc))) ; fight nghttpd{,x} heap fragmentation
        ("libev" ,libev)
        ("libxml2" ,libxml2)             ; for ‘nghttp -a’
        ("openssl" ,openssl)))



reply via email to

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