blob: e255ec68cfe8c9c3ab18b1c43bf1c5d7b46fbc21 (
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
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
|
From: Jesse Farinacci <jieryn@gmail.com>
Date: 11 May 2007
Gentoo-bug: 177042
The configure scripts that build ICU need to include stdio.h.
diff -Naur pr3287-3.3/configure pr3287-3.3/configure
--- pr3287-3.3/configure 2007-05-11 12:22:27.622502551 -0400
+++ pr3287-3.3/configure 2007-05-11 12:24:16.842559358 -0400
@@ -3134,6 +3134,7 @@
then echo "$as_me:$LINENO: checking for ICU version strings" >&5
echo $ECHO_N "checking for ICU version strings... $ECHO_C" >&6
cat >/tmp/icutst$$.c <<EOF
+#include <stdio.h>
#include "unicode/ucnv.h"
#define xstr(s) str(s)
#define str(s) #s
diff -Naur pr3287-3.3/configure.in pr3287-3.3/configure.in
--- pr3287-3.3/configure.in 2007-05-11 12:22:27.622502551 -0400
+++ pr3287-3.3/configure.in 2007-05-11 12:24:00.080240453 -0400
@@ -146,6 +146,7 @@
if test "$enable_dbcs" != no
then AC_MSG_CHECKING([for ICU version strings])
cat >/tmp/icutst$$.c <<EOF
+#include <stdio.h>
#include "unicode/ucnv.h"
#define xstr(s) str(s)
#define str(s) #s
diff -Naur s3270-3.3/configure s3270-3.3/configure
--- s3270-3.3/configure 2007-05-11 12:22:27.619169419 -0400
+++ s3270-3.3/configure 2007-05-11 12:24:16.895889464 -0400
@@ -3608,6 +3608,7 @@
then echo "$as_me:$LINENO: checking for ICU version strings" >&5
echo $ECHO_N "checking for ICU version strings... $ECHO_C" >&6
cat >/tmp/icutst$$.c <<EOF
+#include <stdio.h>
#include "unicode/ucnv.h"
#define xstr(s) str(s)
#define str(s) #s
diff -Naur s3270-3.3/configure.in s3270-3.3/configure.in
--- s3270-3.3/configure.in 2007-05-11 12:22:27.619169419 -0400
+++ s3270-3.3/configure.in 2007-05-11 12:24:00.080240453 -0400
@@ -120,6 +120,7 @@
if test "$enable_dbcs" != no
then AC_MSG_CHECKING([for ICU version strings])
cat >/tmp/icutst$$.c <<EOF
+#include <stdio.h>
#include "unicode/ucnv.h"
#define xstr(s) str(s)
#define str(s) #s
diff -Naur tcl3270-3.3/configure tcl3270-3.3/configure
--- tcl3270-3.3/configure 2007-05-11 12:22:27.609170024 -0400
+++ tcl3270-3.3/configure 2007-05-11 12:24:16.902555727 -0400
@@ -4234,6 +4234,7 @@
then echo "$as_me:$LINENO: checking for ICU version strings" >&5
echo $ECHO_N "checking for ICU version strings... $ECHO_C" >&6
cat >/tmp/icutst$$.c <<EOF
+#include <stdio.h>
#include "unicode/ucnv.h"
#define xstr(s) str(s)
#define str(s) #s
diff -Naur tcl3270-3.3/configure.in tcl3270-3.3/configure.in
--- tcl3270-3.3/configure.in 2007-05-11 12:22:27.605836893 -0400
+++ tcl3270-3.3/configure.in 2007-05-11 12:24:00.080240453 -0400
@@ -149,6 +149,7 @@
if test "$enable_dbcs" != no
then AC_MSG_CHECKING([for ICU version strings])
cat >/tmp/icutst$$.c <<EOF
+#include <stdio.h>
#include "unicode/ucnv.h"
#define xstr(s) str(s)
#define str(s) #s
|