mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: crm114: Pass -fcommon to compiler.
* gnu/packages/mail.scm (crm114)[arguments]: Add -fcommon to CFLAGS.
This commit is contained in:
parent
9d0d4b331d
commit
3a555a93a9
1 changed files with 7 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
;;; Copyright © 2016, 2017 Troy Sankey <sankeytms@gmail.com>
|
||||
;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is>
|
||||
;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2016–2022 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
||||
;;; Copyright © 2016, 2018 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
||||
|
@ -4452,7 +4452,12 @@ (define-public crm114
|
|||
;; Inline functions can only be used from the same compilation
|
||||
;; unit. This causes the build to fail.
|
||||
(substitute* "crm_svm_matrix.c"
|
||||
(("^inline ") ""))))
|
||||
(("^inline ") ""))
|
||||
;; Building with gcc 10 fails without the -fcommon flag. Add it
|
||||
;; to CFLAGS.
|
||||
(substitute* "Makefile"
|
||||
(("CFLAGS \\+= -DVERSION")
|
||||
"CFLAGS += -fcommon -DVERSION"))))
|
||||
(add-before 'install 'pre-install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
|
|
Loading…
Reference in a new issue