civodul pushed a commit to branch master
in repository guix.
commit 902099a8c0fae2288d1da6d2da683b251b492691
Author: Petr Hodina <[email protected]>
AuthorDate: Sat Apr 16 10:24:46 2022 +0200
gnu: ntp: Support cross-compilation.
* gnu/packages/ntp.scm (ntp)[arguments]: Add configuration flag.
Co-authored-by: Ludovic Courtès <[email protected]>
---
gnu/packages/ntp.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm
index 7a3c033b2e..75460150a2 100644
--- a/gnu/packages/ntp.scm
+++ b/gnu/packages/ntp.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2019 Maxim Cournoyer <[email protected]>
;;; Copyright © 2021 Marius Bakke <[email protected]>
;;; Copyright © 2021 Brice Waegeneire <[email protected]>
+;;; Copyright © 2022 Petr Hodina <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -153,7 +154,10 @@ time-stamping or reference clock, sub-microsecond accuracy
is possible.")
`(("libcap" ,libcap))
'())))
(arguments
- `(#:phases
+ `(;; Pass "--with-yielding-select=yes" so that 'configure' knows whether
+ ;; 'select' yields when using pthreads in a cross-compilation context.
+ #:configure-flags (list "--with-yielding-select=yes")
+ #:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-network-test
(lambda _