janneke pushed a commit to branch core-packages-team
in repository guix.
commit dce3b5e26e1c2eca2dce602612a2f4f583624a52
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Mon Dec 30 13:40:41 2024 +0100
gnu: polkit: Fix build with gcc-14.
* gnu/packages/polkit.scm (polkit)[arguments]: Add phase
"relax-gcc-14-strictness".
Change-Id: I56f100f416d17a73fe8daae4775251800e713820
---
gnu/packages/polkit.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm
index 883688a7af..4b546fe939 100644
--- a/gnu/packages/polkit.scm
+++ b/gnu/packages/polkit.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2022 Jean-Pierre De Jesus DIAZ <[email protected]>
;;; Copyright © 2022 Marius Bakke <[email protected]>
;;; Copyright © 2021, 2022 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -114,6 +115,10 @@
'()))
#:phases
#~(modify-phases %standard-phases
+ (add-before 'configure 'relax-gcc-14-strictness
+ (lambda _
+ (setenv "CFLAGS"
+ "-g -O2 -Wno-error=implicit-function-declaration")))
(add-before 'check 'patch-bash
(lambda _
(substitute* (list "subprojects/mocklibc-1.0/bin/mocklibc"