summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Langlois <[email protected]>2020-04-11 16:34:01 +0100
committerLudovic Courtès <[email protected]>2020-04-17 13:03:01 +0200
commit84ce7c5a559c0eabd831b4bf3633103036df1929 (patch)
tree5e317c9b8aff5d1808cbbed9d22da2288fe224c1
parentd312bbfa5a1285a2b3fe357eee7f6a332374097a (diff)
gnu: dovecot: Add libunwind input for arm.
* gnu/packages/mail.scm (dovecot)[inputs]: Add libunwind when targetting arm. Signed-off-by: Ludovic Courtès <[email protected]>
-rw-r--r--gnu/packages/mail.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 9f7bbcd5b4..d2ec51f27a 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -24,7 +24,7 @@
;;; Copyright © 2017 Kyle Meyer <[email protected]>
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2017, 2018 Rene Saavedra <[email protected]>
-;;; Copyright © 2018, 2019 Pierre Langlois <[email protected]>
+;;; Copyright © 2018, 2019, 2020 Pierre Langlois <[email protected]>
;;; Copyright © 2018 Alex Vong <[email protected]>
;;; Copyright © 2018 Gábor Boskovits <[email protected]>
;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <[email protected]>
@@ -89,6 +89,7 @@
#:use-module (gnu packages libevent)
#:use-module (gnu packages libidn)
#:use-module (gnu packages libunistring)
+ #:use-module (gnu packages libunwind)
#:use-module (gnu packages linux)
#:use-module (gnu packages lsof)
#:use-module (gnu packages lua)
@@ -1435,6 +1436,11 @@ facilities for checking incoming mail.")
(inputs
`(("bzip2" ,bzip2)
("libsodium" ,libsodium) ; extra password algorithms
+ ;; FIXME: The 'test-backtrace' tests fail on arm when using glibc's
+ ;; backtrace_symbol() function so fallback to using libunwind.
+ ,@(if (target-arm?)
+ `(("libunwind" ,libunwind))
+ '())
("linux-pam" ,linux-pam)
("lz4" ,lz4)
("openssl" ,openssl)