diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-11 12:26:14 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:13 +0200 |
| commit | c4c7fd111fc4f320841155b5bb63a7899d943947 (patch) | |
| tree | dd6bb6f466cd871864ac5ccb1132df4cfeed6704 | |
| parent | e5df1c08312959cd51d10dc60f13e69f75a0f700 (diff) | |
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
| -rw-r--r-- | gnu/packages/cyrus-sasl.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/cyrus-sasl.scm b/gnu/packages/cyrus-sasl.scm index ef408f2dd7..60db9deacd 100644 --- a/gnu/packages/cyrus-sasl.scm +++ b/gnu/packages/cyrus-sasl.scm @@ -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 @@ (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 |
