File: gregorio_bool.h.diff

package info (click to toggle)
texlive-bin 2025.20250727.75242%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 209,764 kB
  • sloc: ansic: 893,576; cpp: 156,185; perl: 101,166; sh: 37,697; python: 13,679; javascript: 9,754; makefile: 8,930; xml: 8,361; lex: 5,176; pascal: 3,814; java: 3,569; yacc: 2,935; tcl: 2,903; exp: 2,031; ruby: 712; lisp: 687; sed: 375; asm: 140; csh: 46; awk: 30
file content (19 lines) | stat: -rw-r--r-- 596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: #1097988: texlive-bin: ftbfs with GCC-15
Forwarded: https://github.com/gregorio-project/gregorio/issues/1650
Author: Hilmar Preuße <hille42@debian.org>
Applied-Upstream: I confirmed TeX Live svn r74888 and I agree with the commit.
Last-Update: 2025-04-11

--- texlive-bin-2025.20250325.74682.orig/texk/gregorio/gregorio-src/src/bool.h
+++ texlive-bin-2025.20250325.74682/texk/gregorio/gregorio-src/src/bool.h
@@ -23,7 +23,9 @@
 #ifndef BOOL_H
 #define BOOL_H
 
-typedef unsigned int bool;
+#include <stdbool.h>
+
+/* typedef unsigned int bool; */
 #define true 1
 #define false 0