This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6174b135ff gnu: t1lib: Fix build with gcc@14.
6174b135ff is described below
commit 6174b135ffa3328fd7ad404b15b1586fc64e5666
Author: Jake Forster <[email protected]>
AuthorDate: Fri Sep 12 21:10:34 2025 +0930
gnu: t1lib: Fix build with gcc@14.
* gnu/packages/fontutils.scm (t1lib) [arguments]<#:configure-flags>: Add
CFLAGS with "-Wno-error=implicit-int".
Closes: #2652
Change-Id: I8dccd24ca40a0d444e42c17b1b61db9f338b4742
Signed-off-by: 宋文武 <[email protected]>
---
gnu/packages/fontutils.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 294a2f2c38..f5bf111a64 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -1408,6 +1408,8 @@ high quality, anti-aliased and subpixel rendered text on
a display.")
;; Making the documentation requires latex, but t1lib is also an input
;; for building texlive.
`(#:tests? #f ; no test target
+ #:configure-flags
+ '("CFLAGS=-g -O2 -Wno-error=implicit-int")
#:make-flags
'("without_doc")))
(synopsis "Library for generating bitmaps from Type 1 fonts")