mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: libdaemon: Allow cross-compilation.
* gnu/packages/libdaemon.scm (libdaemon)[arguments]: New field.
This commit is contained in:
parent
abbeaf5450
commit
a16022a7b8
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013, 2014, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -45,6 +45,12 @@ (define-public libdaemon
|
|||
"0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(if (%current-target-system)
|
||||
;; The 'setpgrp' test cannot provide an answer when cross-compiling,
|
||||
;; so provide the right one for glibc.
|
||||
`(#:configure-flags (list "ac_cv_func_setpgrp_void=yes"))
|
||||
'()))
|
||||
|
||||
;; XXX: Stale URL, missing replacement. See <http://bugs.gnu.org/18639>.
|
||||
(home-page "http://0pointer.de/lennart/projects/libdaemon/")
|
||||
|
|
Loading…
Reference in a new issue