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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
$NetBSD: patch-ab,v 1.2 2003/10/02 20:14:23 tron Exp $
--- configure.orig 1997-10-22 01:52:57.000000000 +0200
+++ configure 2003-10-02 22:12:00.000000000 +0200
@@ -1089,8 +1089,8 @@
#### Check that the library files exist
echo $ac_n "checking for installed Tcl/Tk library files""... $ac_c" 1>&6
-lib1="${TCL_EXEC_PREFIX}/lib/${TCL_LIB_FILE}"
-lib2="${TK_EXEC_PREFIX}/lib/${TK_LIB_FILE}"
+eval lib1="${TCL_EXEC_PREFIX}/lib/${TCL_LIB_FILE}"
+eval lib2="${TK_EXEC_PREFIX}/lib/${TK_LIB_FILE}"
for f in "$lib1" "$lib2"; do
if test ! -f "$f"; then
echo "$ac_t""$f not found" 1>&6
@@ -1661,7 +1661,7 @@
#endif
#include <string.h>
-static void* ptr = &strerror;
+static void* ptr = (void *) &strerror;
int main() {return 0;}
EOF
@@ -1699,7 +1699,7 @@
#endif
#include <errno.h>
-static void* ptr = &sys_errlist;
+static void* ptr = (void *) &sys_errlist;
int main() {return 0;}
EOF
@@ -1737,7 +1737,7 @@
#endif
#include <sys/time.h>
-static void* ptr = &gettimeofday;
+static void* ptr = (void *) &gettimeofday;
int main() {return 0;}
EOF
@@ -1775,7 +1775,7 @@
#endif
#include <unistd.h>
-static void* ptr = &gethostname;
+static void* ptr = (void *) &gethostname;
int main() {return 0;}
EOF
@@ -1813,7 +1813,7 @@
#endif
#include <unistd.h>
-static void* ptr = &getpid;
+static void* ptr = (void *) &getpid;
int main() {return 0;}
EOF
@@ -1851,7 +1851,7 @@
#endif
#include <string.h>
-static void* ptr = &strncasecmp;
+static void* ptr = (void *) &strncasecmp;
int main() {return 0;}
EOF
@@ -1889,7 +1889,7 @@
#endif
#include <unistd.h>
-static void* ptr = &gethostid;
+static void* ptr = (void *) &gethostid;
int main() {return 0;}
EOF
|