mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: directfb: Fix build with gcc-14.
* gnu/packages/graphics.scm (directfb)[arguments]: Add #:configure-flags to relax gcc-14's strictness. Change-Id: I8ce479978513efd0b6ebab7fe1dd3632f66456bf
This commit is contained in:
parent
23abb295ec
commit
1228391e01
1 changed files with 5 additions and 3 deletions
|
@ -40,6 +40,7 @@
|
|||
;;; Copyright © 2024 Ivan Vilata-i-Balaguer <ivan@selidor.net>
|
||||
;;; Copyright © 2024 James Smith <jsubuntuxp@disroot.org>
|
||||
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -204,7 +205,9 @@ framebuffer graphics, audio output and input event.")
|
|||
(base32 "0bs3yzb7hy3mgydrj8ycg7pllrd2b6j0gxj596inyr7ihssr3i0y"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(#:configure-flags
|
||||
'("CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-buildtime
|
||||
;; Remove embedded build time for reproducible builds
|
||||
|
@ -221,8 +224,7 @@ framebuffer graphics, audio output and input event.")
|
|||
(add-after 'unpack 'disable-configure-during-bootstrap
|
||||
(lambda _
|
||||
(substitute* "autogen.sh"
|
||||
(("^.*\\$srcdir/configure.*") ""))
|
||||
#t)))))
|
||||
(("^.*\\$srcdir/configure.*") "")))))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue