File: hard_code_terminfo.patch

package info (click to toggle)
epic4 1%3A3.0-2.2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,756 kB
  • sloc: ansic: 56,285; makefile: 631; sh: 161; perl: 30
file content (16 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Author: Andreas Tille <tille@debian.org>
Last-Update: 2025-11-07
Bug-Debian: https://bugs.debian.org/1096583
Description: Tiny hack to make test.c build despite old style definitions

--- a/Makefile.in
+++ b/Makefile.in
@@ -191,7 +191,7 @@ installdirs:
 		$(IP)$(DESTDIR)$(mandir)/man1
 
 test.o: @srcdir@/test.c
-	$(CC) -c @srcdir@/test.c
+	$(CC) -c -std=gnu17 @srcdir@/test.c
 test: test.o
 	$(CC) test.o -o my_test