diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-11 12:44:44 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:13 +0200 |
| commit | 87f905da481da2b53cbb8fc06ee4c044e79573aa (patch) | |
| tree | 6866ef75b5d3e947434914979e6ad1f258c331f7 | |
| parent | 42966034db343fd57ef4f67666bd4c2d52ebf89f (diff) | |
gnu: bdb-4.8: Fix build with gcc-14.
* gnu/packages/dbm.scm (bdb-4.8)[arguments]: Add CFLAGS to #:configure-flags
to relax gcc-14's strictness.
Change-Id: If016d18710acd525462f7f108939180650c73587
| -rw-r--r-- | gnu/packages/dbm.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/dbm.scm b/gnu/packages/dbm.scm index 2bec8d141c2..2b4e50934ab 100644 --- a/gnu/packages/dbm.scm +++ b/gnu/packages/dbm.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net> ;;; Copyright © 2021, 2022 Maxime Devos <maximedevos@telenet.be> ;;; Copyright © 2021 LuHui <luhux76@gmail.com> +;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -89,6 +90,7 @@ #:out-of-source? #true #:configure-flags #~(list + "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration" ;; Remove 7 MiB of .a files. "--disable-static" |
