mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: vinagre: Fix build with GCC 14.
* gnu/packages/gnome.scm (vinagre)[#:configure-flags]: Add flags to ignore warnings. Change-Id: Id26380eaaf14c5c19d79383d099d5fc13f76895c Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
0ba01dd04f
commit
c5091996c9
1 changed files with 4 additions and 2 deletions
|
@ -4817,8 +4817,10 @@ editors, IDEs, etc.")
|
|||
(arguments
|
||||
;; Disable -Werror and such, to avoid build failures on compilation
|
||||
;; warnings.
|
||||
'(#:configure-flags '("--enable-compile-warnings=minimum"
|
||||
"CFLAGS=-O2 -g -fcommon")
|
||||
'(#:configure-flags `("--enable-compile-warnings=minimum"
|
||||
,(string-append "CFLAGS=-O2 -g -fcommon "
|
||||
"-Wno-implicit-int "
|
||||
"-Wno-incompatible-pointer-types"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'skip-gtk-update-icon-cache
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue