mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: libvisual: Fix build with gcc-14.
* gnu/packages/gstreamer.scm (libvisual)[arguments]: Add #:configure-flags to relax gcc-14's strictness. Change-Id: I84cb625c98e4ef75a87ad9ffe7fa580685c0fcf0
This commit is contained in:
parent
f80dddeb20
commit
c7585be26d
1 changed files with 10 additions and 7 deletions
|
@ -12,6 +12,7 @@
|
|||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2024 Remco van 't Veer <remco@remworks.net>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -238,13 +239,15 @@ (define-public libvisual
|
|||
(base32 "02xwakwkqjsznc03pjlb6hcv1li1gw3r8xvyswqsm4msix5xq18a"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; The package is in a sub-dir of this repo.
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "libvisual")
|
||||
#t)))))
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; The package is in a sub-dir of this repo.
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "libvisual"))))))
|
||||
(native-inputs
|
||||
(list gettext-minimal intltool libtool pkg-config))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue