summaryrefslogtreecommitdiff
path: root/dev-perl/Tk/files/Tk-804.036-configure-clang16.patch
blob: 6d16a050594726a41fd51f8e3049bdec6e9737b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
https://github.com/eserte/perl-tk/pull/79
https://github.com/eserte/perl-tk/pull/80

From f7565b07f40e0cc3820e8fb0c3d2e7b5abb5eeeb Mon Sep 17 00:00:00 2001
From: Christopher Chavez <chrischavez@gmx.us>
Date: Fri, 12 Mar 2021 07:24:18 -0600
Subject: [PATCH] Fix some implicit function declarations

Hstrdup.c: missing stdlib.h for exit()
Hstrtoul.c: missing string.h for strcmp()
--- a/pTk/config/Hstrdup.c
+++ b/pTk/config/Hstrdup.c
@@ -1,3 +1,4 @@
+#include <stdlib.h>
 #include <string.h>
 
 #define STRING "Whatever"
--- a/pTk/config/Hstrtoul.c
+++ b/pTk/config/Hstrtoul.c
@@ -1,4 +1,5 @@
 #include <stdlib.h>
+#include <string.h>
 
 int main()
 {char *e;

From 47219864d6ef3fe0c5616cada78e3008447a96a1 Mon Sep 17 00:00:00 2001
From: Christopher Chavez <chrischavez@gmx.us>
Date: Fri, 12 Mar 2021 07:28:22 -0600
Subject: [PATCH] signedchar.c: use int main to avoid C99 warning

--- a/config/signedchar.c
+++ b/config/signedchar.c
@@ -1,4 +1,4 @@
-main()
+int main()
 {
  signed char x = 'a';
  return (x - 'a');