janneke pushed a commit to branch core-packages-team
in repository guix.
commit 39a6c7b064fa3b73b45de01a743bc0c5c419966b
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Tue Dec 10 20:45:38 2024 +0100
gnu: texlive-xdvi-bin: Fix build with gcc-14.
* gnu/packages/tex.scm (texlive-xdvi-bin): Add CFLAGS to #:configure-flags
to
relax gcc-14's strictness.
Change-Id: Ia4f50c46911c4c4f97b8d9ba554db6f194a2c96e
---
gnu/packages/tex.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 04632e8408..3d888d7e17 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -29,6 +29,7 @@
;;; Copyright © 2023 John Kehayias <[email protected]>
;;; Copyright © 2023 Dominik Delgado Steuter <[email protected]>
;;; Copyright © 2023 Timothy Sample <[email protected]>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -90828,7 +90829,10 @@ that it will build with web2c out of the box.")
(arguments
(substitute-keyword-arguments (package-arguments texlive-bin)
((#:configure-flags flags)
- #~(cons "--enable-xdvik" (delete "--enable-web2c" #$flags)))
+ #~(cons*
+ "CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types"
+ "--enable-xdvik"
+ (delete "--enable-web2c" #$flags)))
((#:phases phases)
#~(modify-phases #$phases
(replace 'check