diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2020-04-11 16:34:01 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-17 13:03:01 +0200 |
commit | 84ce7c5a559c0eabd831b4bf3633103036df1929 (patch) | |
tree | 5e317c9b8aff5d1808cbbed9d22da2288fe224c1 /gnu | |
parent | d312bbfa5a1285a2b3fe357eee7f6a332374097a (diff) | |
download | patches-84ce7c5a559c0eabd831b4bf3633103036df1929.tar patches-84ce7c5a559c0eabd831b4bf3633103036df1929.tar.gz |
gnu: dovecot: Add libunwind input for arm.
* gnu/packages/mail.scm (dovecot)[inputs]: Add libunwind when targetting arm.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 8 |
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 <kyle@kyleam.com> ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017, 2018 Rene Saavedra <pacoon@protonmail.com> -;;; Copyright © 2018, 2019 Pierre Langlois <pierre.langlois@gmx.com> +;;; Copyright © 2018, 2019, 2020 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com> ;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com> ;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net> @@ -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) |