]> git.pld-linux.org Git - packages/gnustep-base.git/blame - gnustep-base-ac.patch
- release 6 (by relup.sh)
[packages/gnustep-base.git] / gnustep-base-ac.patch
CommitLineData
dc8abe62
PS
1--- gnustep-base-1.15.3/config/pathtls.m4.orig 2008-01-05 14:09:39.000000000 +0000
2+++ gnustep-base-1.15.3/config/pathtls.m4 2008-10-08 19:03:13.000000000 +0000
3@@ -43,7 +43,7 @@
4 int
5 main()
6 {
7- system("touch conf.tlstest");
8+ if (system("touch conf.tlstest")) return 1;
9
10 if (gnutls_check_version("$min_tls_version") == 0)
11 {
dc8abe62
PS
12@@ -91,7 +89,7 @@
13 int
14 main()
15 {
16- system("touch conf.tlstest");
17+ if (system("touch conf.tlstest")) return 1;
18
19 if (gnutls_check_version("$min_tls_version") == 0)
20 {
21--- gnustep-base-1.15.3/config/pathxml.m4.orig 2006-02-11 18:22:57.000000000 +0000
22+++ gnustep-base-1.15.3/config/pathxml.m4 2008-10-08 19:03:43.000000000 +0000
23@@ -56,7 +56,7 @@
24 int major, minor, micro;
25 char *tmp_version;
26
27- system("touch conf.xmltest");
28+ if (system("touch conf.xmltest")) return 1;
29
30 tmp_version = xmlStrdup("$min_xml_version");
31 if(sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
dc8abe62
PS
32@@ -133,7 +131,7 @@
33 int major, minor, micro;
34 char *tmp_version;
35
36- system("touch conf.xmltest");
37+ if (system("touch conf.xmltest")) return 1;
38
39 tmp_version = xmlStrdup("$min_xml_version");
40 if(sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
This page took 0.252984 seconds and 4 git commands to generate.