diff options
author | Ashish SHUKLA <ashish.is@lostca.se> | 2025-07-19 10:26:01 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-19 12:47:22 +0200 |
commit | c5091996c99274d68cb25f0a98a2c1f86ad8064b (patch) | |
tree | e01f5b082dcb34ad4e6de47e2c550e9e69536715 | |
parent | 0ba01dd04f77c3696413dc71d58eea8464c06f5f (diff) |
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>
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 37204d4701..54555025aa 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -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 |