mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: cyrus-sasl: Fix build mwith gcc-14.
* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[arguments]: Add CFLAGS to #:configure-flags to relax gcc-14's strictness. Change-Id: Ib6afe50a3913ed38aad3eb673786b424307fc4a7
This commit is contained in:
parent
1ac775392b
commit
c6e7595d44
1 changed files with 5 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -49,7 +50,10 @@ (define-public cyrus-sasl
|
|||
(inputs (list gdbm libxcrypt mit-krb5 openssl))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list (string-append "--with-plugindir="
|
||||
#:configure-flags #~(list (string-append
|
||||
"CFLAGS=-g -O2"
|
||||
" -Wno-error=implicit-function-declaration")
|
||||
(string-append "--with-plugindir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/sasl2")
|
||||
;; When cross-compiling the build system is
|
||||
|
|
Loading…
Reference in a new issue