diff options
-rw-r--r-- | Makefile.in | 3 | ||||
-rw-r--r-- | config.h.in | 14 | ||||
-rwxr-xr-x | configure | 18410 | ||||
-rw-r--r-- | configure.ac | 16 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | monitor.c | 20 | ||||
-rw-r--r-- | monitor.h | 2 | ||||
-rw-r--r-- | monitor_wrap.c | 17 | ||||
-rw-r--r-- | monitor_wrap.h | 1 | ||||
-rw-r--r-- | selinux.c | 150 | ||||
-rw-r--r-- | selinux.h | 8 |
11 files changed, 11426 insertions, 7223 deletions
diff --git a/Makefile.in b/Makefile.in index 0bdd23fd7..ea738aac1 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -43,6 +43,7 @@ LD=@LD@ | |||
43 | CFLAGS=@CFLAGS@ | 43 | CFLAGS=@CFLAGS@ |
44 | CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@ | 44 | CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@ |
45 | LIBS=@LIBS@ | 45 | LIBS=@LIBS@ |
46 | LIBSELINUX=@LIBSELINUX@ | ||
46 | LIBEDIT=@LIBEDIT@ | 47 | LIBEDIT=@LIBEDIT@ |
47 | LIBPAM=@LIBPAM@ | 48 | LIBPAM=@LIBPAM@ |
48 | LIBWRAP=@LIBWRAP@ | 49 | LIBWRAP=@LIBWRAP@ |
@@ -136,7 +137,7 @@ ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS) | |||
136 | $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) | 137 | $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) |
137 | 138 | ||
138 | sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) | 139 | sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) |
139 | $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBWRAP) $(LIBPAM) $(LIBS) | 140 | $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBWRAP) $(LIBPAM) $(LIBSELINUX) $(LIBS) |
140 | 141 | ||
141 | scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o progressmeter.o | 142 | scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o progressmeter.o |
142 | $(LD) -o $@ scp.o progressmeter.o bufaux.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) | 143 | $(LD) -o $@ scp.o progressmeter.o bufaux.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) |
diff --git a/config.h.in b/config.h.in index e841f33c9..b5cfdbb2c 100644 --- a/config.h.in +++ b/config.h.in | |||
@@ -1,9 +1,5 @@ | |||
1 | /* config.h.in. Generated from configure.ac by autoheader. */ | 1 | /* config.h.in. Generated from configure.ac by autoheader. */ |
2 | 2 | ||
3 | /* Define if you have a getaddrinfo that fails for the all-zeros IPv6 address | ||
4 | */ | ||
5 | #undef AIX_GETNAMEINFO_HACK | ||
6 | |||
7 | /* Define if your AIX loginfailed() function takes 4 arguments (AIX >= 5.2) */ | 3 | /* Define if your AIX loginfailed() function takes 4 arguments (AIX >= 5.2) */ |
8 | #undef AIX_LOGINFAILED_4ARG | 4 | #undef AIX_LOGINFAILED_4ARG |
9 | 5 | ||
@@ -1134,19 +1130,19 @@ | |||
1134 | /* Define if your platform breaks doing a seteuid before a setuid */ | 1130 | /* Define if your platform breaks doing a seteuid before a setuid */ |
1135 | #undef SETEUID_BREAKS_SETUID | 1131 | #undef SETEUID_BREAKS_SETUID |
1136 | 1132 | ||
1137 | /* The size of a `char', as computed by sizeof. */ | 1133 | /* The size of `char', as computed by sizeof. */ |
1138 | #undef SIZEOF_CHAR | 1134 | #undef SIZEOF_CHAR |
1139 | 1135 | ||
1140 | /* The size of a `int', as computed by sizeof. */ | 1136 | /* The size of `int', as computed by sizeof. */ |
1141 | #undef SIZEOF_INT | 1137 | #undef SIZEOF_INT |
1142 | 1138 | ||
1143 | /* The size of a `long int', as computed by sizeof. */ | 1139 | /* The size of `long int', as computed by sizeof. */ |
1144 | #undef SIZEOF_LONG_INT | 1140 | #undef SIZEOF_LONG_INT |
1145 | 1141 | ||
1146 | /* The size of a `long long int', as computed by sizeof. */ | 1142 | /* The size of `long long int', as computed by sizeof. */ |
1147 | #undef SIZEOF_LONG_LONG_INT | 1143 | #undef SIZEOF_LONG_LONG_INT |
1148 | 1144 | ||
1149 | /* The size of a `short int', as computed by sizeof. */ | 1145 | /* The size of `short int', as computed by sizeof. */ |
1150 | #undef SIZEOF_SHORT_INT | 1146 | #undef SIZEOF_SHORT_INT |
1151 | 1147 | ||
1152 | /* Define if you want S/Key support */ | 1148 | /* Define if you want S/Key support */ |
@@ -1,11 +1,12 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # From configure.ac Revision: 1.322.2.6 . | 2 | # From configure.ac Revision: 1.322.2.6 . |
3 | # Guess values for system-dependent variables and create Makefiles. | 3 | # Guess values for system-dependent variables and create Makefiles. |
4 | # Generated by GNU Autoconf 2.59 for OpenSSH Portable. | 4 | # Generated by GNU Autoconf 2.60a for OpenSSH Portable. |
5 | # | 5 | # |
6 | # Report bugs to <openssh-unix-dev@mindrot.org>. | 6 | # Report bugs to <openssh-unix-dev@mindrot.org>. |
7 | # | 7 | # |
8 | # Copyright (C) 2003 Free Software Foundation, Inc. | 8 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
9 | # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. | ||
9 | # This configure script is free software; the Free Software Foundation | 10 | # This configure script is free software; the Free Software Foundation |
10 | # gives unlimited permission to copy, distribute and modify it. | 11 | # gives unlimited permission to copy, distribute and modify it. |
11 | ## --------------------- ## | 12 | ## --------------------- ## |
@@ -19,11 +20,35 @@ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then | |||
19 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which | 20 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which |
20 | # is contrary to our usage. Disable this feature. | 21 | # is contrary to our usage. Disable this feature. |
21 | alias -g '${1+"$@"}'='"$@"' | 22 | alias -g '${1+"$@"}'='"$@"' |
22 | elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then | 23 | setopt NO_GLOB_SUBST |
23 | set -o posix | 24 | else |
25 | case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac | ||
24 | fi | 26 | fi |
27 | BIN_SH=xpg4; export BIN_SH # for Tru64 | ||
25 | DUALCASE=1; export DUALCASE # for MKS sh | 28 | DUALCASE=1; export DUALCASE # for MKS sh |
26 | 29 | ||
30 | |||
31 | # PATH needs CR | ||
32 | # Avoid depending upon Character Ranges. | ||
33 | as_cr_letters='abcdefghijklmnopqrstuvwxyz' | ||
34 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | ||
35 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS | ||
36 | as_cr_digits='0123456789' | ||
37 | as_cr_alnum=$as_cr_Letters$as_cr_digits | ||
38 | |||
39 | # The user is always right. | ||
40 | if test "${PATH_SEPARATOR+set}" != set; then | ||
41 | echo "#! /bin/sh" >conf$$.sh | ||
42 | echo "exit 0" >>conf$$.sh | ||
43 | chmod +x conf$$.sh | ||
44 | if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then | ||
45 | PATH_SEPARATOR=';' | ||
46 | else | ||
47 | PATH_SEPARATOR=: | ||
48 | fi | ||
49 | rm -f conf$$.sh | ||
50 | fi | ||
51 | |||
27 | # Support unset when possible. | 52 | # Support unset when possible. |
28 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then | 53 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then |
29 | as_unset=unset | 54 | as_unset=unset |
@@ -32,8 +57,43 @@ else | |||
32 | fi | 57 | fi |
33 | 58 | ||
34 | 59 | ||
60 | # IFS | ||
61 | # We need space, tab and new line, in precisely that order. Quoting is | ||
62 | # there to prevent editors from complaining about space-tab. | ||
63 | # (If _AS_PATH_WALK were called with IFS unset, it would disable word | ||
64 | # splitting by setting IFS to empty value.) | ||
65 | as_nl=' | ||
66 | ' | ||
67 | IFS=" "" $as_nl" | ||
68 | |||
69 | # Find who we are. Look in the path if we contain no directory separator. | ||
70 | case $0 in | ||
71 | *[\\/]* ) as_myself=$0 ;; | ||
72 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
73 | for as_dir in $PATH | ||
74 | do | ||
75 | IFS=$as_save_IFS | ||
76 | test -z "$as_dir" && as_dir=. | ||
77 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | ||
78 | done | ||
79 | IFS=$as_save_IFS | ||
80 | |||
81 | ;; | ||
82 | esac | ||
83 | # We did not find ourselves, most probably we were run as `sh COMMAND' | ||
84 | # in which case we are not to be found in the path. | ||
85 | if test "x$as_myself" = x; then | ||
86 | as_myself=$0 | ||
87 | fi | ||
88 | if test ! -f "$as_myself"; then | ||
89 | echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 | ||
90 | { (exit 1); exit 1; } | ||
91 | fi | ||
92 | |||
35 | # Work around bugs in pre-3.0 UWIN ksh. | 93 | # Work around bugs in pre-3.0 UWIN ksh. |
36 | $as_unset ENV MAIL MAILPATH | 94 | for as_var in ENV MAIL MAILPATH |
95 | do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var | ||
96 | done | ||
37 | PS1='$ ' | 97 | PS1='$ ' |
38 | PS2='> ' | 98 | PS2='> ' |
39 | PS4='+ ' | 99 | PS4='+ ' |
@@ -47,18 +107,19 @@ do | |||
47 | if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then | 107 | if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then |
48 | eval $as_var=C; export $as_var | 108 | eval $as_var=C; export $as_var |
49 | else | 109 | else |
50 | $as_unset $as_var | 110 | ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var |
51 | fi | 111 | fi |
52 | done | 112 | done |
53 | 113 | ||
54 | # Required to use basename. | 114 | # Required to use basename. |
55 | if expr a : '\(a\)' >/dev/null 2>&1; then | 115 | if expr a : '\(a\)' >/dev/null 2>&1 && |
116 | test "X`expr 00001 : '.*\(...\)'`" = X001; then | ||
56 | as_expr=expr | 117 | as_expr=expr |
57 | else | 118 | else |
58 | as_expr=false | 119 | as_expr=false |
59 | fi | 120 | fi |
60 | 121 | ||
61 | if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then | 122 | if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then |
62 | as_basename=basename | 123 | as_basename=basename |
63 | else | 124 | else |
64 | as_basename=false | 125 | as_basename=false |
@@ -66,157 +127,386 @@ fi | |||
66 | 127 | ||
67 | 128 | ||
68 | # Name of the executable. | 129 | # Name of the executable. |
69 | as_me=`$as_basename "$0" || | 130 | as_me=`$as_basename -- "$0" || |
70 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ | 131 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ |
71 | X"$0" : 'X\(//\)$' \| \ | 132 | X"$0" : 'X\(//\)$' \| \ |
72 | X"$0" : 'X\(/\)$' \| \ | 133 | X"$0" : 'X\(/\)' \| . 2>/dev/null || |
73 | . : '\(.\)' 2>/dev/null || | ||
74 | echo X/"$0" | | 134 | echo X/"$0" | |
75 | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } | 135 | sed '/^.*\/\([^/][^/]*\)\/*$/{ |
76 | /^X\/\(\/\/\)$/{ s//\1/; q; } | 136 | s//\1/ |
77 | /^X\/\(\/\).*/{ s//\1/; q; } | 137 | q |
78 | s/.*/./; q'` | 138 | } |
139 | /^X\/\(\/\/\)$/{ | ||
140 | s//\1/ | ||
141 | q | ||
142 | } | ||
143 | /^X\/\(\/\).*/{ | ||
144 | s//\1/ | ||
145 | q | ||
146 | } | ||
147 | s/.*/./; q'` | ||
79 | 148 | ||
149 | # CDPATH. | ||
150 | $as_unset CDPATH | ||
80 | 151 | ||
81 | # PATH needs CR, and LINENO needs CR and PATH. | ||
82 | # Avoid depending upon Character Ranges. | ||
83 | as_cr_letters='abcdefghijklmnopqrstuvwxyz' | ||
84 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | ||
85 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS | ||
86 | as_cr_digits='0123456789' | ||
87 | as_cr_alnum=$as_cr_Letters$as_cr_digits | ||
88 | 152 | ||
89 | # The user is always right. | 153 | if test "x$CONFIG_SHELL" = x; then |
90 | if test "${PATH_SEPARATOR+set}" != set; then | 154 | if (eval ":") 2>/dev/null; then |
91 | echo "#! /bin/sh" >conf$$.sh | 155 | as_have_required=yes |
92 | echo "exit 0" >>conf$$.sh | 156 | else |
93 | chmod +x conf$$.sh | 157 | as_have_required=no |
94 | if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then | ||
95 | PATH_SEPARATOR=';' | ||
96 | else | ||
97 | PATH_SEPARATOR=: | ||
98 | fi | ||
99 | rm -f conf$$.sh | ||
100 | fi | 158 | fi |
101 | 159 | ||
160 | if test $as_have_required = yes && (eval ": | ||
161 | (as_func_return () { | ||
162 | (exit \$1) | ||
163 | } | ||
164 | as_func_success () { | ||
165 | as_func_return 0 | ||
166 | } | ||
167 | as_func_failure () { | ||
168 | as_func_return 1 | ||
169 | } | ||
170 | as_func_ret_success () { | ||
171 | return 0 | ||
172 | } | ||
173 | as_func_ret_failure () { | ||
174 | return 1 | ||
175 | } | ||
102 | 176 | ||
103 | as_lineno_1=$LINENO | 177 | exitcode=0 |
104 | as_lineno_2=$LINENO | 178 | if as_func_success; then |
105 | as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` | 179 | : |
106 | test "x$as_lineno_1" != "x$as_lineno_2" && | 180 | else |
107 | test "x$as_lineno_3" = "x$as_lineno_2" || { | 181 | exitcode=1 |
108 | # Find who we are. Look in the path if we contain no path at all | 182 | echo as_func_success failed. |
109 | # relative or not. | 183 | fi |
110 | case $0 in | ||
111 | *[\\/]* ) as_myself=$0 ;; | ||
112 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
113 | for as_dir in $PATH | ||
114 | do | ||
115 | IFS=$as_save_IFS | ||
116 | test -z "$as_dir" && as_dir=. | ||
117 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | ||
118 | done | ||
119 | 184 | ||
120 | ;; | 185 | if as_func_failure; then |
121 | esac | 186 | exitcode=1 |
122 | # We did not find ourselves, most probably we were run as `sh COMMAND' | 187 | echo as_func_failure succeeded. |
123 | # in which case we are not to be found in the path. | 188 | fi |
124 | if test "x$as_myself" = x; then | 189 | |
125 | as_myself=$0 | 190 | if as_func_ret_success; then |
126 | fi | 191 | : |
127 | if test ! -f "$as_myself"; then | 192 | else |
128 | { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 | 193 | exitcode=1 |
129 | { (exit 1); exit 1; }; } | 194 | echo as_func_ret_success failed. |
130 | fi | 195 | fi |
131 | case $CONFIG_SHELL in | 196 | |
132 | '') | 197 | if as_func_ret_failure; then |
198 | exitcode=1 | ||
199 | echo as_func_ret_failure succeeded. | ||
200 | fi | ||
201 | |||
202 | if ( set x; as_func_ret_success y && test x = \"\$1\" ); then | ||
203 | : | ||
204 | else | ||
205 | exitcode=1 | ||
206 | echo positional parameters were not saved. | ||
207 | fi | ||
208 | |||
209 | test \$exitcode = 0) || { (exit 1); exit 1; } | ||
210 | |||
211 | ( | ||
212 | as_lineno_1=\$LINENO | ||
213 | as_lineno_2=\$LINENO | ||
214 | test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && | ||
215 | test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } | ||
216 | ") 2> /dev/null; then | ||
217 | : | ||
218 | else | ||
219 | as_candidate_shells= | ||
133 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | 220 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR |
134 | for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH | 221 | for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH |
135 | do | 222 | do |
136 | IFS=$as_save_IFS | 223 | IFS=$as_save_IFS |
137 | test -z "$as_dir" && as_dir=. | 224 | test -z "$as_dir" && as_dir=. |
138 | for as_base in sh bash ksh sh5; do | 225 | case $as_dir in |
139 | case $as_dir in | ||
140 | /*) | 226 | /*) |
141 | if ("$as_dir/$as_base" -c ' | 227 | for as_base in sh bash ksh sh5; do |
228 | as_candidate_shells="$as_candidate_shells $as_dir/$as_base" | ||
229 | done;; | ||
230 | esac | ||
231 | done | ||
232 | IFS=$as_save_IFS | ||
233 | |||
234 | |||
235 | for as_shell in $as_candidate_shells $SHELL; do | ||
236 | # Try only shells that exist, to save several forks. | ||
237 | if { test -f "$as_shell" || test -f "$as_shell.exe"; } && | ||
238 | { ("$as_shell") 2> /dev/null <<\_ASEOF | ||
239 | # Be Bourne compatible | ||
240 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then | ||
241 | emulate sh | ||
242 | NULLCMD=: | ||
243 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which | ||
244 | # is contrary to our usage. Disable this feature. | ||
245 | alias -g '${1+"$@"}'='"$@"' | ||
246 | setopt NO_GLOB_SUBST | ||
247 | else | ||
248 | case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac | ||
249 | fi | ||
250 | BIN_SH=xpg4; export BIN_SH # for Tru64 | ||
251 | DUALCASE=1; export DUALCASE # for MKS sh | ||
252 | |||
253 | : | ||
254 | _ASEOF | ||
255 | }; then | ||
256 | CONFIG_SHELL=$as_shell | ||
257 | as_have_required=yes | ||
258 | if { "$as_shell" 2> /dev/null <<\_ASEOF | ||
259 | # Be Bourne compatible | ||
260 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then | ||
261 | emulate sh | ||
262 | NULLCMD=: | ||
263 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which | ||
264 | # is contrary to our usage. Disable this feature. | ||
265 | alias -g '${1+"$@"}'='"$@"' | ||
266 | setopt NO_GLOB_SUBST | ||
267 | else | ||
268 | case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac | ||
269 | fi | ||
270 | BIN_SH=xpg4; export BIN_SH # for Tru64 | ||
271 | DUALCASE=1; export DUALCASE # for MKS sh | ||
272 | |||
273 | : | ||
274 | (as_func_return () { | ||
275 | (exit $1) | ||
276 | } | ||
277 | as_func_success () { | ||
278 | as_func_return 0 | ||
279 | } | ||
280 | as_func_failure () { | ||
281 | as_func_return 1 | ||
282 | } | ||
283 | as_func_ret_success () { | ||
284 | return 0 | ||
285 | } | ||
286 | as_func_ret_failure () { | ||
287 | return 1 | ||
288 | } | ||
289 | |||
290 | exitcode=0 | ||
291 | if as_func_success; then | ||
292 | : | ||
293 | else | ||
294 | exitcode=1 | ||
295 | echo as_func_success failed. | ||
296 | fi | ||
297 | |||
298 | if as_func_failure; then | ||
299 | exitcode=1 | ||
300 | echo as_func_failure succeeded. | ||
301 | fi | ||
302 | |||
303 | if as_func_ret_success; then | ||
304 | : | ||
305 | else | ||
306 | exitcode=1 | ||
307 | echo as_func_ret_success failed. | ||
308 | fi | ||
309 | |||
310 | if as_func_ret_failure; then | ||
311 | exitcode=1 | ||
312 | echo as_func_ret_failure succeeded. | ||
313 | fi | ||
314 | |||
315 | if ( set x; as_func_ret_success y && test x = "$1" ); then | ||
316 | : | ||
317 | else | ||
318 | exitcode=1 | ||
319 | echo positional parameters were not saved. | ||
320 | fi | ||
321 | |||
322 | test $exitcode = 0) || { (exit 1); exit 1; } | ||
323 | |||
324 | ( | ||
142 | as_lineno_1=$LINENO | 325 | as_lineno_1=$LINENO |
143 | as_lineno_2=$LINENO | 326 | as_lineno_2=$LINENO |
144 | as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` | ||
145 | test "x$as_lineno_1" != "x$as_lineno_2" && | 327 | test "x$as_lineno_1" != "x$as_lineno_2" && |
146 | test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then | 328 | test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } |
147 | $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } | 329 | |
148 | $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } | 330 | _ASEOF |
149 | CONFIG_SHELL=$as_dir/$as_base | 331 | }; then |
150 | export CONFIG_SHELL | 332 | break |
151 | exec "$CONFIG_SHELL" "$0" ${1+"$@"} | 333 | fi |
152 | fi;; | 334 | |
153 | esac | 335 | fi |
154 | done | 336 | |
155 | done | 337 | done |
156 | ;; | 338 | |
157 | esac | 339 | if test "x$CONFIG_SHELL" != x; then |
340 | for as_var in BASH_ENV ENV | ||
341 | do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var | ||
342 | done | ||
343 | export CONFIG_SHELL | ||
344 | exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} | ||
345 | fi | ||
346 | |||
347 | |||
348 | if test $as_have_required = no; then | ||
349 | echo This script requires a shell more modern than all the | ||
350 | echo shells that I found on your system. Please install a | ||
351 | echo modern shell, or manually run the script under such a | ||
352 | echo shell if you do have one. | ||
353 | { (exit 1); exit 1; } | ||
354 | fi | ||
355 | |||
356 | |||
357 | fi | ||
358 | |||
359 | fi | ||
360 | |||
361 | |||
362 | |||
363 | (eval "as_func_return () { | ||
364 | (exit \$1) | ||
365 | } | ||
366 | as_func_success () { | ||
367 | as_func_return 0 | ||
368 | } | ||
369 | as_func_failure () { | ||
370 | as_func_return 1 | ||
371 | } | ||
372 | as_func_ret_success () { | ||
373 | return 0 | ||
374 | } | ||
375 | as_func_ret_failure () { | ||
376 | return 1 | ||
377 | } | ||
378 | |||
379 | exitcode=0 | ||
380 | if as_func_success; then | ||
381 | : | ||
382 | else | ||
383 | exitcode=1 | ||
384 | echo as_func_success failed. | ||
385 | fi | ||
386 | |||
387 | if as_func_failure; then | ||
388 | exitcode=1 | ||
389 | echo as_func_failure succeeded. | ||
390 | fi | ||
391 | |||
392 | if as_func_ret_success; then | ||
393 | : | ||
394 | else | ||
395 | exitcode=1 | ||
396 | echo as_func_ret_success failed. | ||
397 | fi | ||
398 | |||
399 | if as_func_ret_failure; then | ||
400 | exitcode=1 | ||
401 | echo as_func_ret_failure succeeded. | ||
402 | fi | ||
403 | |||
404 | if ( set x; as_func_ret_success y && test x = \"\$1\" ); then | ||
405 | : | ||
406 | else | ||
407 | exitcode=1 | ||
408 | echo positional parameters were not saved. | ||
409 | fi | ||
410 | |||
411 | test \$exitcode = 0") || { | ||
412 | echo No shell found that supports shell functions. | ||
413 | echo Please tell autoconf@gnu.org about your system, | ||
414 | echo including any error possibly output before this | ||
415 | echo message | ||
416 | } | ||
417 | |||
418 | |||
419 | |||
420 | as_lineno_1=$LINENO | ||
421 | as_lineno_2=$LINENO | ||
422 | test "x$as_lineno_1" != "x$as_lineno_2" && | ||
423 | test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { | ||
158 | 424 | ||
159 | # Create $as_me.lineno as a copy of $as_myself, but with $LINENO | 425 | # Create $as_me.lineno as a copy of $as_myself, but with $LINENO |
160 | # uniformly replaced by the line number. The first 'sed' inserts a | 426 | # uniformly replaced by the line number. The first 'sed' inserts a |
161 | # line-number line before each line; the second 'sed' does the real | 427 | # line-number line after each line using $LINENO; the second 'sed' |
162 | # work. The second script uses 'N' to pair each line-number line | 428 | # does the real work. The second script uses 'N' to pair each |
163 | # with the numbered line, and appends trailing '-' during | 429 | # line-number line with the line containing $LINENO, and appends |
164 | # substitution so that $LINENO is not a special case at line end. | 430 | # trailing '-' during substitution so that $LINENO is not a special |
431 | # case at line end. | ||
165 | # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the | 432 | # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the |
166 | # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) | 433 | # scripts with optimization help from Paolo Bonzini. Blame Lee |
167 | sed '=' <$as_myself | | 434 | # E. McMahon (1931-1989) for sed's syntax. :-) |
435 | sed -n ' | ||
436 | p | ||
437 | /[$]LINENO/= | ||
438 | ' <$as_myself | | ||
168 | sed ' | 439 | sed ' |
440 | s/[$]LINENO.*/&-/ | ||
441 | t lineno | ||
442 | b | ||
443 | :lineno | ||
169 | N | 444 | N |
170 | s,$,-, | 445 | :loop |
171 | : loop | 446 | s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ |
172 | s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, | ||
173 | t loop | 447 | t loop |
174 | s,-$,, | 448 | s/-\n.*// |
175 | s,^['$as_cr_digits']*\n,, | ||
176 | ' >$as_me.lineno && | 449 | ' >$as_me.lineno && |
177 | chmod +x $as_me.lineno || | 450 | chmod +x "$as_me.lineno" || |
178 | { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 | 451 | { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 |
179 | { (exit 1); exit 1; }; } | 452 | { (exit 1); exit 1; }; } |
180 | 453 | ||
181 | # Don't try to exec as it changes $[0], causing all sort of problems | 454 | # Don't try to exec as it changes $[0], causing all sort of problems |
182 | # (the dirname of $[0] is not the place where we might find the | 455 | # (the dirname of $[0] is not the place where we might find the |
183 | # original and so on. Autoconf is especially sensible to this). | 456 | # original and so on. Autoconf is especially sensitive to this). |
184 | . ./$as_me.lineno | 457 | . "./$as_me.lineno" |
185 | # Exit status is that of the last command. | 458 | # Exit status is that of the last command. |
186 | exit | 459 | exit |
187 | } | 460 | } |
188 | 461 | ||
189 | 462 | ||
190 | case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in | 463 | if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then |
191 | *c*,-n*) ECHO_N= ECHO_C=' | 464 | as_dirname=dirname |
192 | ' ECHO_T=' ' ;; | 465 | else |
193 | *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; | 466 | as_dirname=false |
194 | *) ECHO_N= ECHO_C='\c' ECHO_T= ;; | 467 | fi |
468 | |||
469 | ECHO_C= ECHO_N= ECHO_T= | ||
470 | case `echo -n x` in | ||
471 | -n*) | ||
472 | case `echo 'x\c'` in | ||
473 | *c*) ECHO_T=' ';; # ECHO_T is single tab character. | ||
474 | *) ECHO_C='\c';; | ||
475 | esac;; | ||
476 | *) | ||
477 | ECHO_N='-n';; | ||
195 | esac | 478 | esac |
196 | 479 | ||
197 | if expr a : '\(a\)' >/dev/null 2>&1; then | 480 | if expr a : '\(a\)' >/dev/null 2>&1 && |
481 | test "X`expr 00001 : '.*\(...\)'`" = X001; then | ||
198 | as_expr=expr | 482 | as_expr=expr |
199 | else | 483 | else |
200 | as_expr=false | 484 | as_expr=false |
201 | fi | 485 | fi |
202 | 486 | ||
203 | rm -f conf$$ conf$$.exe conf$$.file | 487 | rm -f conf$$ conf$$.exe conf$$.file |
488 | if test -d conf$$.dir; then | ||
489 | rm -f conf$$.dir/conf$$.file | ||
490 | else | ||
491 | rm -f conf$$.dir | ||
492 | mkdir conf$$.dir | ||
493 | fi | ||
204 | echo >conf$$.file | 494 | echo >conf$$.file |
205 | if ln -s conf$$.file conf$$ 2>/dev/null; then | 495 | if ln -s conf$$.file conf$$ 2>/dev/null; then |
206 | # We could just check for DJGPP; but this test a) works b) is more generic | 496 | as_ln_s='ln -s' |
207 | # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). | 497 | # ... but there are two gotchas: |
208 | if test -f conf$$.exe; then | 498 | # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. |
209 | # Don't use ln at all; we don't have any links | 499 | # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. |
500 | # In both cases, we have to default to `cp -p'. | ||
501 | ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || | ||
210 | as_ln_s='cp -p' | 502 | as_ln_s='cp -p' |
211 | else | ||
212 | as_ln_s='ln -s' | ||
213 | fi | ||
214 | elif ln conf$$.file conf$$ 2>/dev/null; then | 503 | elif ln conf$$.file conf$$ 2>/dev/null; then |
215 | as_ln_s=ln | 504 | as_ln_s=ln |
216 | else | 505 | else |
217 | as_ln_s='cp -p' | 506 | as_ln_s='cp -p' |
218 | fi | 507 | fi |
219 | rm -f conf$$ conf$$.exe conf$$.file | 508 | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file |
509 | rmdir conf$$.dir 2>/dev/null | ||
220 | 510 | ||
221 | if mkdir -p . 2>/dev/null; then | 511 | if mkdir -p . 2>/dev/null; then |
222 | as_mkdir_p=: | 512 | as_mkdir_p=: |
@@ -225,7 +515,19 @@ else | |||
225 | as_mkdir_p=false | 515 | as_mkdir_p=false |
226 | fi | 516 | fi |
227 | 517 | ||
228 | as_executable_p="test -f" | 518 | # Find out whether ``test -x'' works. Don't use a zero-byte file, as |
519 | # systems may use methods other than mode bits to determine executability. | ||
520 | cat >conf$$.file <<_ASEOF | ||
521 | #! /bin/sh | ||
522 | exit 0 | ||
523 | _ASEOF | ||
524 | chmod +x conf$$.file | ||
525 | if test -x conf$$.file >/dev/null 2>&1; then | ||
526 | as_executable_p="test -x" | ||
527 | else | ||
528 | as_executable_p=: | ||
529 | fi | ||
530 | rm -f conf$$.file | ||
229 | 531 | ||
230 | # Sed expression to map a string onto a valid CPP name. | 532 | # Sed expression to map a string onto a valid CPP name. |
231 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | 533 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" |
@@ -234,39 +536,27 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | |||
234 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" | 536 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" |
235 | 537 | ||
236 | 538 | ||
237 | # IFS | ||
238 | # We need space, tab and new line, in precisely that order. | ||
239 | as_nl=' | ||
240 | ' | ||
241 | IFS=" $as_nl" | ||
242 | |||
243 | # CDPATH. | ||
244 | $as_unset CDPATH | ||
245 | 539 | ||
540 | exec 7<&0 </dev/null 6>&1 | ||
246 | 541 | ||
247 | # Name of the host. | 542 | # Name of the host. |
248 | # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, | 543 | # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, |
249 | # so uname gets run too. | 544 | # so uname gets run too. |
250 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` | 545 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` |
251 | 546 | ||
252 | exec 6>&1 | ||
253 | |||
254 | # | 547 | # |
255 | # Initializations. | 548 | # Initializations. |
256 | # | 549 | # |
257 | ac_default_prefix=/usr/local | 550 | ac_default_prefix=/usr/local |
551 | ac_clean_files= | ||
258 | ac_config_libobj_dir=. | 552 | ac_config_libobj_dir=. |
553 | LIBOBJS= | ||
259 | cross_compiling=no | 554 | cross_compiling=no |
260 | subdirs= | 555 | subdirs= |
261 | MFLAGS= | 556 | MFLAGS= |
262 | MAKEFLAGS= | 557 | MAKEFLAGS= |
263 | SHELL=${CONFIG_SHELL-/bin/sh} | 558 | SHELL=${CONFIG_SHELL-/bin/sh} |
264 | 559 | ||
265 | # Maximum number of lines to put in a shell here document. | ||
266 | # This variable seems obsolete. It should probably be removed, and | ||
267 | # only ac_max_sed_lines should be used. | ||
268 | : ${ac_max_here_lines=38} | ||
269 | |||
270 | # Identity of this package. | 560 | # Identity of this package. |
271 | PACKAGE_NAME='OpenSSH' | 561 | PACKAGE_NAME='OpenSSH' |
272 | PACKAGE_TARNAME='openssh' | 562 | PACKAGE_TARNAME='openssh' |
@@ -278,42 +568,160 @@ ac_unique_file="ssh.c" | |||
278 | # Factoring default headers for most tests. | 568 | # Factoring default headers for most tests. |
279 | ac_includes_default="\ | 569 | ac_includes_default="\ |
280 | #include <stdio.h> | 570 | #include <stdio.h> |
281 | #if HAVE_SYS_TYPES_H | 571 | #ifdef HAVE_SYS_TYPES_H |
282 | # include <sys/types.h> | 572 | # include <sys/types.h> |
283 | #endif | 573 | #endif |
284 | #if HAVE_SYS_STAT_H | 574 | #ifdef HAVE_SYS_STAT_H |
285 | # include <sys/stat.h> | 575 | # include <sys/stat.h> |
286 | #endif | 576 | #endif |
287 | #if STDC_HEADERS | 577 | #ifdef STDC_HEADERS |
288 | # include <stdlib.h> | 578 | # include <stdlib.h> |
289 | # include <stddef.h> | 579 | # include <stddef.h> |
290 | #else | 580 | #else |
291 | # if HAVE_STDLIB_H | 581 | # ifdef HAVE_STDLIB_H |
292 | # include <stdlib.h> | 582 | # include <stdlib.h> |
293 | # endif | 583 | # endif |
294 | #endif | 584 | #endif |
295 | #if HAVE_STRING_H | 585 | #ifdef HAVE_STRING_H |
296 | # if !STDC_HEADERS && HAVE_MEMORY_H | 586 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
297 | # include <memory.h> | 587 | # include <memory.h> |
298 | # endif | 588 | # endif |
299 | # include <string.h> | 589 | # include <string.h> |
300 | #endif | 590 | #endif |
301 | #if HAVE_STRINGS_H | 591 | #ifdef HAVE_STRINGS_H |
302 | # include <strings.h> | 592 | # include <strings.h> |
303 | #endif | 593 | #endif |
304 | #if HAVE_INTTYPES_H | 594 | #ifdef HAVE_INTTYPES_H |
305 | # include <inttypes.h> | 595 | # include <inttypes.h> |
306 | #else | ||
307 | # if HAVE_STDINT_H | ||
308 | # include <stdint.h> | ||
309 | # endif | ||
310 | #endif | 596 | #endif |
311 | #if HAVE_UNISTD_H | 597 | #ifdef HAVE_STDINT_H |
598 | # include <stdint.h> | ||
599 | #endif | ||
600 | #ifdef HAVE_UNISTD_H | ||
312 | # include <unistd.h> | 601 | # include <unistd.h> |
313 | #endif" | 602 | #endif" |
314 | 603 | ||
315 | ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT build build_cpu build_vendor build_os host host_cpu host_vendor host_os AWK CPP RANLIB ac_ct_RANLIB INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA EGREP AR CAT KILL PERL SED ENT TEST_MINUS_S_SH SH TEST_SHELL PATH_GROUPADD_PROG PATH_USERADD_PROG MAKE_PACKAGE_SUPPORTED STARTUP_SCRIPT_SHELL LOGIN_PROGRAM_FALLBACK PATH_PASSWD_PROG LD LIBWRAP LIBEDIT LIBPAM INSTALL_SSH_RAND_HELPER SSH_PRIVSEP_USER PROG_LS PROG_NETSTAT PROG_ARP PROG_IFCONFIG PROG_JSTAT PROG_PS PROG_SAR PROG_W PROG_WHO PROG_LAST PROG_LASTLOG PROG_DF PROG_VMSTAT PROG_UPTIME PROG_IPCS PROG_TAIL INSTALL_SSH_PRNG_CMDS OPENSC_CONFIG PRIVSEP_PATH xauth_path STRIP_OPT XAUTH_PATH NROFF MANTYPE mansubdir user_path piddir LIBOBJS LTLIBOBJS' | 604 | ac_subst_vars='SHELL |
605 | PATH_SEPARATOR | ||
606 | PACKAGE_NAME | ||
607 | PACKAGE_TARNAME | ||
608 | PACKAGE_VERSION | ||
609 | PACKAGE_STRING | ||
610 | PACKAGE_BUGREPORT | ||
611 | exec_prefix | ||
612 | prefix | ||
613 | program_transform_name | ||
614 | bindir | ||
615 | sbindir | ||
616 | libexecdir | ||
617 | datarootdir | ||
618 | datadir | ||
619 | sysconfdir | ||
620 | sharedstatedir | ||
621 | localstatedir | ||
622 | includedir | ||
623 | oldincludedir | ||
624 | docdir | ||
625 | infodir | ||
626 | htmldir | ||
627 | dvidir | ||
628 | pdfdir | ||
629 | psdir | ||
630 | libdir | ||
631 | localedir | ||
632 | mandir | ||
633 | DEFS | ||
634 | ECHO_C | ||
635 | ECHO_N | ||
636 | ECHO_T | ||
637 | LIBS | ||
638 | build_alias | ||
639 | host_alias | ||
640 | target_alias | ||
641 | CC | ||
642 | CFLAGS | ||
643 | LDFLAGS | ||
644 | CPPFLAGS | ||
645 | ac_ct_CC | ||
646 | EXEEXT | ||
647 | OBJEXT | ||
648 | build | ||
649 | build_cpu | ||
650 | build_vendor | ||
651 | build_os | ||
652 | host | ||
653 | host_cpu | ||
654 | host_vendor | ||
655 | host_os | ||
656 | CPP | ||
657 | GREP | ||
658 | EGREP | ||
659 | AWK | ||
660 | RANLIB | ||
661 | INSTALL_PROGRAM | ||
662 | INSTALL_SCRIPT | ||
663 | INSTALL_DATA | ||
664 | AR | ||
665 | CAT | ||
666 | KILL | ||
667 | PERL | ||
668 | SED | ||
669 | ENT | ||
670 | TEST_MINUS_S_SH | ||
671 | SH | ||
672 | TEST_SHELL | ||
673 | PATH_GROUPADD_PROG | ||
674 | PATH_USERADD_PROG | ||
675 | MAKE_PACKAGE_SUPPORTED | ||
676 | STARTUP_SCRIPT_SHELL | ||
677 | LOGIN_PROGRAM_FALLBACK | ||
678 | PATH_PASSWD_PROG | ||
679 | LD | ||
680 | LIBWRAP | ||
681 | LIBEDIT | ||
682 | LIBPAM | ||
683 | INSTALL_SSH_RAND_HELPER | ||
684 | SSH_PRIVSEP_USER | ||
685 | PROG_LS | ||
686 | PROG_NETSTAT | ||
687 | PROG_ARP | ||
688 | PROG_IFCONFIG | ||
689 | PROG_JSTAT | ||
690 | PROG_PS | ||
691 | PROG_SAR | ||
692 | PROG_W | ||
693 | PROG_WHO | ||
694 | PROG_LAST | ||
695 | PROG_LASTLOG | ||
696 | PROG_DF | ||
697 | PROG_VMSTAT | ||
698 | PROG_UPTIME | ||
699 | PROG_IPCS | ||
700 | PROG_TAIL | ||
701 | INSTALL_SSH_PRNG_CMDS | ||
702 | OPENSC_CONFIG | ||
703 | LIBSELINUX | ||
704 | PRIVSEP_PATH | ||
705 | xauth_path | ||
706 | STRIP_OPT | ||
707 | XAUTH_PATH | ||
708 | NROFF | ||
709 | MANTYPE | ||
710 | mansubdir | ||
711 | user_path | ||
712 | piddir | ||
713 | LIBOBJS | ||
714 | LTLIBOBJS' | ||
316 | ac_subst_files='' | 715 | ac_subst_files='' |
716 | ac_precious_vars='build_alias | ||
717 | host_alias | ||
718 | target_alias | ||
719 | CC | ||
720 | CFLAGS | ||
721 | LDFLAGS | ||
722 | CPPFLAGS | ||
723 | CPP' | ||
724 | |||
317 | 725 | ||
318 | # Initialize some variables set by options. | 726 | # Initialize some variables set by options. |
319 | ac_init_help= | 727 | ac_init_help= |
@@ -340,34 +748,48 @@ x_libraries=NONE | |||
340 | # and all the variables that are supposed to be based on exec_prefix | 748 | # and all the variables that are supposed to be based on exec_prefix |
341 | # by default will actually change. | 749 | # by default will actually change. |
342 | # Use braces instead of parens because sh, perl, etc. also accept them. | 750 | # Use braces instead of parens because sh, perl, etc. also accept them. |
751 | # (The list follows the same order as the GNU Coding Standards.) | ||
343 | bindir='${exec_prefix}/bin' | 752 | bindir='${exec_prefix}/bin' |
344 | sbindir='${exec_prefix}/sbin' | 753 | sbindir='${exec_prefix}/sbin' |
345 | libexecdir='${exec_prefix}/libexec' | 754 | libexecdir='${exec_prefix}/libexec' |
346 | datadir='${prefix}/share' | 755 | datarootdir='${prefix}/share' |
756 | datadir='${datarootdir}' | ||
347 | sysconfdir='${prefix}/etc' | 757 | sysconfdir='${prefix}/etc' |
348 | sharedstatedir='${prefix}/com' | 758 | sharedstatedir='${prefix}/com' |
349 | localstatedir='${prefix}/var' | 759 | localstatedir='${prefix}/var' |
350 | libdir='${exec_prefix}/lib' | ||
351 | includedir='${prefix}/include' | 760 | includedir='${prefix}/include' |
352 | oldincludedir='/usr/include' | 761 | oldincludedir='/usr/include' |
353 | infodir='${prefix}/info' | 762 | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' |
354 | mandir='${prefix}/man' | 763 | infodir='${datarootdir}/info' |
764 | htmldir='${docdir}' | ||
765 | dvidir='${docdir}' | ||
766 | pdfdir='${docdir}' | ||
767 | psdir='${docdir}' | ||
768 | libdir='${exec_prefix}/lib' | ||
769 | localedir='${datarootdir}/locale' | ||
770 | mandir='${datarootdir}/man' | ||
355 | 771 | ||
356 | ac_prev= | 772 | ac_prev= |
773 | ac_dashdash= | ||
357 | for ac_option | 774 | for ac_option |
358 | do | 775 | do |
359 | # If the previous option needs an argument, assign it. | 776 | # If the previous option needs an argument, assign it. |
360 | if test -n "$ac_prev"; then | 777 | if test -n "$ac_prev"; then |
361 | eval "$ac_prev=\$ac_option" | 778 | eval $ac_prev=\$ac_option |
362 | ac_prev= | 779 | ac_prev= |
363 | continue | 780 | continue |
364 | fi | 781 | fi |
365 | 782 | ||
366 | ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` | 783 | case $ac_option in |
784 | *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; | ||
785 | *) ac_optarg=yes ;; | ||
786 | esac | ||
367 | 787 | ||
368 | # Accept the important Cygnus configure options, so we can diagnose typos. | 788 | # Accept the important Cygnus configure options, so we can diagnose typos. |
369 | 789 | ||
370 | case $ac_option in | 790 | case $ac_dashdash$ac_option in |
791 | --) | ||
792 | ac_dashdash=yes ;; | ||
371 | 793 | ||
372 | -bindir | --bindir | --bindi | --bind | --bin | --bi) | 794 | -bindir | --bindir | --bindi | --bind | --bin | --bi) |
373 | ac_prev=bindir ;; | 795 | ac_prev=bindir ;; |
@@ -389,12 +811,18 @@ do | |||
389 | --config-cache | -C) | 811 | --config-cache | -C) |
390 | cache_file=config.cache ;; | 812 | cache_file=config.cache ;; |
391 | 813 | ||
392 | -datadir | --datadir | --datadi | --datad | --data | --dat | --da) | 814 | -datadir | --datadir | --datadi | --datad) |
393 | ac_prev=datadir ;; | 815 | ac_prev=datadir ;; |
394 | -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | 816 | -datadir=* | --datadir=* | --datadi=* | --datad=*) |
395 | | --da=*) | ||
396 | datadir=$ac_optarg ;; | 817 | datadir=$ac_optarg ;; |
397 | 818 | ||
819 | -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | ||
820 | | --dataroo | --dataro | --datar) | ||
821 | ac_prev=datarootdir ;; | ||
822 | -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | ||
823 | | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) | ||
824 | datarootdir=$ac_optarg ;; | ||
825 | |||
398 | -disable-* | --disable-*) | 826 | -disable-* | --disable-*) |
399 | ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` | 827 | ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` |
400 | # Reject names that are not valid shell variable names. | 828 | # Reject names that are not valid shell variable names. |
@@ -402,7 +830,17 @@ do | |||
402 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2 | 830 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2 |
403 | { (exit 1); exit 1; }; } | 831 | { (exit 1); exit 1; }; } |
404 | ac_feature=`echo $ac_feature | sed 's/-/_/g'` | 832 | ac_feature=`echo $ac_feature | sed 's/-/_/g'` |
405 | eval "enable_$ac_feature=no" ;; | 833 | eval enable_$ac_feature=no ;; |
834 | |||
835 | -docdir | --docdir | --docdi | --doc | --do) | ||
836 | ac_prev=docdir ;; | ||
837 | -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) | ||
838 | docdir=$ac_optarg ;; | ||
839 | |||
840 | -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) | ||
841 | ac_prev=dvidir ;; | ||
842 | -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) | ||
843 | dvidir=$ac_optarg ;; | ||
406 | 844 | ||
407 | -enable-* | --enable-*) | 845 | -enable-* | --enable-*) |
408 | ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` | 846 | ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` |
@@ -411,11 +849,7 @@ do | |||
411 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2 | 849 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2 |
412 | { (exit 1); exit 1; }; } | 850 | { (exit 1); exit 1; }; } |
413 | ac_feature=`echo $ac_feature | sed 's/-/_/g'` | 851 | ac_feature=`echo $ac_feature | sed 's/-/_/g'` |
414 | case $ac_option in | 852 | eval enable_$ac_feature=\$ac_optarg ;; |
415 | *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; | ||
416 | *) ac_optarg=yes ;; | ||
417 | esac | ||
418 | eval "enable_$ac_feature='$ac_optarg'" ;; | ||
419 | 853 | ||
420 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | 854 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ |
421 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | 855 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ |
@@ -442,6 +876,12 @@ do | |||
442 | -host=* | --host=* | --hos=* | --ho=*) | 876 | -host=* | --host=* | --hos=* | --ho=*) |
443 | host_alias=$ac_optarg ;; | 877 | host_alias=$ac_optarg ;; |
444 | 878 | ||
879 | -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) | ||
880 | ac_prev=htmldir ;; | ||
881 | -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | ||
882 | | --ht=*) | ||
883 | htmldir=$ac_optarg ;; | ||
884 | |||
445 | -includedir | --includedir | --includedi | --included | --include \ | 885 | -includedir | --includedir | --includedi | --included | --include \ |
446 | | --includ | --inclu | --incl | --inc) | 886 | | --includ | --inclu | --incl | --inc) |
447 | ac_prev=includedir ;; | 887 | ac_prev=includedir ;; |
@@ -466,13 +906,16 @@ do | |||
466 | | --libexe=* | --libex=* | --libe=*) | 906 | | --libexe=* | --libex=* | --libe=*) |
467 | libexecdir=$ac_optarg ;; | 907 | libexecdir=$ac_optarg ;; |
468 | 908 | ||
909 | -localedir | --localedir | --localedi | --localed | --locale) | ||
910 | ac_prev=localedir ;; | ||
911 | -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) | ||
912 | localedir=$ac_optarg ;; | ||
913 | |||
469 | -localstatedir | --localstatedir | --localstatedi | --localstated \ | 914 | -localstatedir | --localstatedir | --localstatedi | --localstated \ |
470 | | --localstate | --localstat | --localsta | --localst \ | 915 | | --localstate | --localstat | --localsta | --localst | --locals) |
471 | | --locals | --local | --loca | --loc | --lo) | ||
472 | ac_prev=localstatedir ;; | 916 | ac_prev=localstatedir ;; |
473 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | 917 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ |
474 | | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | 918 | | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) |
475 | | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) | ||
476 | localstatedir=$ac_optarg ;; | 919 | localstatedir=$ac_optarg ;; |
477 | 920 | ||
478 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m) | 921 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m) |
@@ -537,6 +980,16 @@ do | |||
537 | | --progr-tra=* | --program-tr=* | --program-t=*) | 980 | | --progr-tra=* | --program-tr=* | --program-t=*) |
538 | program_transform_name=$ac_optarg ;; | 981 | program_transform_name=$ac_optarg ;; |
539 | 982 | ||
983 | -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) | ||
984 | ac_prev=pdfdir ;; | ||
985 | -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) | ||
986 | pdfdir=$ac_optarg ;; | ||
987 | |||
988 | -psdir | --psdir | --psdi | --psd | --ps) | ||
989 | ac_prev=psdir ;; | ||
990 | -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) | ||
991 | psdir=$ac_optarg ;; | ||
992 | |||
540 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | 993 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ |
541 | | -silent | --silent | --silen | --sile | --sil) | 994 | | -silent | --silent | --silen | --sile | --sil) |
542 | silent=yes ;; | 995 | silent=yes ;; |
@@ -593,11 +1046,7 @@ do | |||
593 | { echo "$as_me: error: invalid package name: $ac_package" >&2 | 1046 | { echo "$as_me: error: invalid package name: $ac_package" >&2 |
594 | { (exit 1); exit 1; }; } | 1047 | { (exit 1); exit 1; }; } |
595 | ac_package=`echo $ac_package| sed 's/-/_/g'` | 1048 | ac_package=`echo $ac_package| sed 's/-/_/g'` |
596 | case $ac_option in | 1049 | eval with_$ac_package=\$ac_optarg ;; |
597 | *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; | ||
598 | *) ac_optarg=yes ;; | ||
599 | esac | ||
600 | eval "with_$ac_package='$ac_optarg'" ;; | ||
601 | 1050 | ||
602 | -without-* | --without-*) | 1051 | -without-* | --without-*) |
603 | ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` | 1052 | ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` |
@@ -606,7 +1055,7 @@ do | |||
606 | { echo "$as_me: error: invalid package name: $ac_package" >&2 | 1055 | { echo "$as_me: error: invalid package name: $ac_package" >&2 |
607 | { (exit 1); exit 1; }; } | 1056 | { (exit 1); exit 1; }; } |
608 | ac_package=`echo $ac_package | sed 's/-/_/g'` | 1057 | ac_package=`echo $ac_package | sed 's/-/_/g'` |
609 | eval "with_$ac_package=no" ;; | 1058 | eval with_$ac_package=no ;; |
610 | 1059 | ||
611 | --x) | 1060 | --x) |
612 | # Obsolete; use --with-x. | 1061 | # Obsolete; use --with-x. |
@@ -637,8 +1086,7 @@ Try \`$0 --help' for more information." >&2 | |||
637 | expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && | 1086 | expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && |
638 | { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 | 1087 | { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 |
639 | { (exit 1); exit 1; }; } | 1088 | { (exit 1); exit 1; }; } |
640 | ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` | 1089 | eval $ac_envvar=\$ac_optarg |
641 | eval "$ac_envvar='$ac_optarg'" | ||
642 | export $ac_envvar ;; | 1090 | export $ac_envvar ;; |
643 | 1091 | ||
644 | *) | 1092 | *) |
@@ -658,27 +1106,19 @@ if test -n "$ac_prev"; then | |||
658 | { (exit 1); exit 1; }; } | 1106 | { (exit 1); exit 1; }; } |
659 | fi | 1107 | fi |
660 | 1108 | ||
661 | # Be sure to have absolute paths. | 1109 | # Be sure to have absolute directory names. |
662 | for ac_var in exec_prefix prefix | 1110 | for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ |
1111 | datadir sysconfdir sharedstatedir localstatedir includedir \ | ||
1112 | oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ | ||
1113 | libdir localedir mandir | ||
663 | do | 1114 | do |
664 | eval ac_val=$`echo $ac_var` | 1115 | eval ac_val=\$$ac_var |
665 | case $ac_val in | 1116 | case $ac_val in |
666 | [\\/$]* | ?:[\\/]* | NONE | '' ) ;; | 1117 | [\\/$]* | ?:[\\/]* ) continue;; |
667 | *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 | 1118 | NONE | '' ) case $ac_var in *prefix ) continue;; esac;; |
668 | { (exit 1); exit 1; }; };; | ||
669 | esac | ||
670 | done | ||
671 | |||
672 | # Be sure to have absolute paths. | ||
673 | for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ | ||
674 | localstatedir libdir includedir oldincludedir infodir mandir | ||
675 | do | ||
676 | eval ac_val=$`echo $ac_var` | ||
677 | case $ac_val in | ||
678 | [\\/$]* | ?:[\\/]* ) ;; | ||
679 | *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 | ||
680 | { (exit 1); exit 1; }; };; | ||
681 | esac | 1119 | esac |
1120 | { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 | ||
1121 | { (exit 1); exit 1; }; } | ||
682 | done | 1122 | done |
683 | 1123 | ||
684 | # There might be people who depend on the old broken behavior: `$host' | 1124 | # There might be people who depend on the old broken behavior: `$host' |
@@ -705,74 +1145,76 @@ test -n "$host_alias" && ac_tool_prefix=$host_alias- | |||
705 | test "$silent" = yes && exec 6>/dev/null | 1145 | test "$silent" = yes && exec 6>/dev/null |
706 | 1146 | ||
707 | 1147 | ||
1148 | ac_pwd=`pwd` && test -n "$ac_pwd" && | ||
1149 | ac_ls_di=`ls -di .` && | ||
1150 | ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || | ||
1151 | { echo "$as_me: error: Working directory cannot be determined" >&2 | ||
1152 | { (exit 1); exit 1; }; } | ||
1153 | test "X$ac_ls_di" = "X$ac_pwd_ls_di" || | ||
1154 | { echo "$as_me: error: pwd does not report name of working directory" >&2 | ||
1155 | { (exit 1); exit 1; }; } | ||
1156 | |||
1157 | |||
708 | # Find the source files, if location was not specified. | 1158 | # Find the source files, if location was not specified. |
709 | if test -z "$srcdir"; then | 1159 | if test -z "$srcdir"; then |
710 | ac_srcdir_defaulted=yes | 1160 | ac_srcdir_defaulted=yes |
711 | # Try the directory containing this script, then its parent. | 1161 | # Try the directory containing this script, then the parent directory. |
712 | ac_confdir=`(dirname "$0") 2>/dev/null || | 1162 | ac_confdir=`$as_dirname -- "$0" || |
713 | $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | 1163 | $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
714 | X"$0" : 'X\(//\)[^/]' \| \ | 1164 | X"$0" : 'X\(//\)[^/]' \| \ |
715 | X"$0" : 'X\(//\)$' \| \ | 1165 | X"$0" : 'X\(//\)$' \| \ |
716 | X"$0" : 'X\(/\)' \| \ | 1166 | X"$0" : 'X\(/\)' \| . 2>/dev/null || |
717 | . : '\(.\)' 2>/dev/null || | ||
718 | echo X"$0" | | 1167 | echo X"$0" | |
719 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } | 1168 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ |
720 | /^X\(\/\/\)[^/].*/{ s//\1/; q; } | 1169 | s//\1/ |
721 | /^X\(\/\/\)$/{ s//\1/; q; } | 1170 | q |
722 | /^X\(\/\).*/{ s//\1/; q; } | 1171 | } |
723 | s/.*/./; q'` | 1172 | /^X\(\/\/\)[^/].*/{ |
1173 | s//\1/ | ||
1174 | q | ||
1175 | } | ||
1176 | /^X\(\/\/\)$/{ | ||
1177 | s//\1/ | ||
1178 | q | ||
1179 | } | ||
1180 | /^X\(\/\).*/{ | ||
1181 | s//\1/ | ||
1182 | q | ||
1183 | } | ||
1184 | s/.*/./; q'` | ||
724 | srcdir=$ac_confdir | 1185 | srcdir=$ac_confdir |
725 | if test ! -r $srcdir/$ac_unique_file; then | 1186 | if test ! -r "$srcdir/$ac_unique_file"; then |
726 | srcdir=.. | 1187 | srcdir=.. |
727 | fi | 1188 | fi |
728 | else | 1189 | else |
729 | ac_srcdir_defaulted=no | 1190 | ac_srcdir_defaulted=no |
730 | fi | 1191 | fi |
731 | if test ! -r $srcdir/$ac_unique_file; then | 1192 | if test ! -r "$srcdir/$ac_unique_file"; then |
732 | if test "$ac_srcdir_defaulted" = yes; then | 1193 | test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." |
733 | { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 | 1194 | { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 |
734 | { (exit 1); exit 1; }; } | 1195 | { (exit 1); exit 1; }; } |
735 | else | ||
736 | { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 | ||
737 | { (exit 1); exit 1; }; } | ||
738 | fi | ||
739 | fi | 1196 | fi |
740 | (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || | 1197 | ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" |
741 | { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 | 1198 | ac_abs_confdir=`( |
1199 | cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 | ||
742 | { (exit 1); exit 1; }; } | 1200 | { (exit 1); exit 1; }; } |
743 | srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` | 1201 | pwd)` |
744 | ac_env_build_alias_set=${build_alias+set} | 1202 | # When building in place, set srcdir=. |
745 | ac_env_build_alias_value=$build_alias | 1203 | if test "$ac_abs_confdir" = "$ac_pwd"; then |
746 | ac_cv_env_build_alias_set=${build_alias+set} | 1204 | srcdir=. |
747 | ac_cv_env_build_alias_value=$build_alias | 1205 | fi |
748 | ac_env_host_alias_set=${host_alias+set} | 1206 | # Remove unnecessary trailing slashes from srcdir. |
749 | ac_env_host_alias_value=$host_alias | 1207 | # Double slashes in file names in object file debugging info |
750 | ac_cv_env_host_alias_set=${host_alias+set} | 1208 | # mess up M-x gdb in Emacs. |
751 | ac_cv_env_host_alias_value=$host_alias | 1209 | case $srcdir in |
752 | ac_env_target_alias_set=${target_alias+set} | 1210 | */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; |
753 | ac_env_target_alias_value=$target_alias | 1211 | esac |
754 | ac_cv_env_target_alias_set=${target_alias+set} | 1212 | for ac_var in $ac_precious_vars; do |
755 | ac_cv_env_target_alias_value=$target_alias | 1213 | eval ac_env_${ac_var}_set=\${${ac_var}+set} |
756 | ac_env_CC_set=${CC+set} | 1214 | eval ac_env_${ac_var}_value=\$${ac_var} |
757 | ac_env_CC_value=$CC | 1215 | eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} |
758 | ac_cv_env_CC_set=${CC+set} | 1216 | eval ac_cv_env_${ac_var}_value=\$${ac_var} |
759 | ac_cv_env_CC_value=$CC | 1217 | done |
760 | ac_env_CFLAGS_set=${CFLAGS+set} | ||
761 | ac_env_CFLAGS_value=$CFLAGS | ||
762 | ac_cv_env_CFLAGS_set=${CFLAGS+set} | ||
763 | ac_cv_env_CFLAGS_value=$CFLAGS | ||
764 | ac_env_LDFLAGS_set=${LDFLAGS+set} | ||
765 | ac_env_LDFLAGS_value=$LDFLAGS | ||
766 | ac_cv_env_LDFLAGS_set=${LDFLAGS+set} | ||
767 | ac_cv_env_LDFLAGS_value=$LDFLAGS | ||
768 | ac_env_CPPFLAGS_set=${CPPFLAGS+set} | ||
769 | ac_env_CPPFLAGS_value=$CPPFLAGS | ||
770 | ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} | ||
771 | ac_cv_env_CPPFLAGS_value=$CPPFLAGS | ||
772 | ac_env_CPP_set=${CPP+set} | ||
773 | ac_env_CPP_value=$CPP | ||
774 | ac_cv_env_CPP_set=${CPP+set} | ||
775 | ac_cv_env_CPP_value=$CPP | ||
776 | 1218 | ||
777 | # | 1219 | # |
778 | # Report the --help message. | 1220 | # Report the --help message. |
@@ -801,9 +1243,6 @@ Configuration: | |||
801 | -n, --no-create do not create output files | 1243 | -n, --no-create do not create output files |
802 | --srcdir=DIR find the sources in DIR [configure dir or \`..'] | 1244 | --srcdir=DIR find the sources in DIR [configure dir or \`..'] |
803 | 1245 | ||
804 | _ACEOF | ||
805 | |||
806 | cat <<_ACEOF | ||
807 | Installation directories: | 1246 | Installation directories: |
808 | --prefix=PREFIX install architecture-independent files in PREFIX | 1247 | --prefix=PREFIX install architecture-independent files in PREFIX |
809 | [$ac_default_prefix] | 1248 | [$ac_default_prefix] |
@@ -821,15 +1260,22 @@ Fine tuning of the installation directories: | |||
821 | --bindir=DIR user executables [EPREFIX/bin] | 1260 | --bindir=DIR user executables [EPREFIX/bin] |
822 | --sbindir=DIR system admin executables [EPREFIX/sbin] | 1261 | --sbindir=DIR system admin executables [EPREFIX/sbin] |
823 | --libexecdir=DIR program executables [EPREFIX/libexec] | 1262 | --libexecdir=DIR program executables [EPREFIX/libexec] |
824 | --datadir=DIR read-only architecture-independent data [PREFIX/share] | ||
825 | --sysconfdir=DIR read-only single-machine data [PREFIX/etc] | 1263 | --sysconfdir=DIR read-only single-machine data [PREFIX/etc] |
826 | --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] | 1264 | --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] |
827 | --localstatedir=DIR modifiable single-machine data [PREFIX/var] | 1265 | --localstatedir=DIR modifiable single-machine data [PREFIX/var] |
828 | --libdir=DIR object code libraries [EPREFIX/lib] | 1266 | --libdir=DIR object code libraries [EPREFIX/lib] |
829 | --includedir=DIR C header files [PREFIX/include] | 1267 | --includedir=DIR C header files [PREFIX/include] |
830 | --oldincludedir=DIR C header files for non-gcc [/usr/include] | 1268 | --oldincludedir=DIR C header files for non-gcc [/usr/include] |
831 | --infodir=DIR info documentation [PREFIX/info] | 1269 | --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] |
832 | --mandir=DIR man documentation [PREFIX/man] | 1270 | --datadir=DIR read-only architecture-independent data [DATAROOTDIR] |
1271 | --infodir=DIR info documentation [DATAROOTDIR/info] | ||
1272 | --localedir=DIR locale-dependent data [DATAROOTDIR/locale] | ||
1273 | --mandir=DIR man documentation [DATAROOTDIR/man] | ||
1274 | --docdir=DIR documentation root [DATAROOTDIR/doc/openssh] | ||
1275 | --htmldir=DIR html documentation [DOCDIR] | ||
1276 | --dvidir=DIR dvi documentation [DOCDIR] | ||
1277 | --pdfdir=DIR pdf documentation [DOCDIR] | ||
1278 | --psdir=DIR ps documentation [DOCDIR] | ||
833 | _ACEOF | 1279 | _ACEOF |
834 | 1280 | ||
835 | cat <<\_ACEOF | 1281 | cat <<\_ACEOF |
@@ -886,7 +1332,7 @@ Optional Packages: | |||
886 | --with-privsep-user=user Specify non-privileged user for privilege separation | 1332 | --with-privsep-user=user Specify non-privileged user for privilege separation |
887 | --with-sectok Enable smartcard support using libsectok | 1333 | --with-sectok Enable smartcard support using libsectok |
888 | --with-opensc[=PFX] Enable smartcard support using OpenSC (optionally in PATH) | 1334 | --with-opensc[=PFX] Enable smartcard support using OpenSC (optionally in PATH) |
889 | --with-selinux Enable SELinux support | 1335 | --with-selinux[=LIBSELINUX-PATH] Enable SELinux support |
890 | --with-kerberos5=PATH Enable Kerberos 5 support | 1336 | --with-kerberos5=PATH Enable Kerberos 5 support |
891 | --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty) | 1337 | --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty) |
892 | --with-xauth=PATH Specify path to xauth program | 1338 | --with-xauth=PATH Specify path to xauth program |
@@ -906,8 +1352,8 @@ Some influential environment variables: | |||
906 | CFLAGS C compiler flags | 1352 | CFLAGS C compiler flags |
907 | LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a | 1353 | LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a |
908 | nonstandard directory <lib dir> | 1354 | nonstandard directory <lib dir> |
909 | CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have | 1355 | CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if |
910 | headers in a nonstandard directory <include dir> | 1356 | you have headers in a nonstandard directory <include dir> |
911 | CPP C preprocessor | 1357 | CPP C preprocessor |
912 | 1358 | ||
913 | Use these variables to override the choices made by `configure' or to help | 1359 | Use these variables to override the choices made by `configure' or to help |
@@ -915,120 +1361,86 @@ it to find libraries and programs with nonstandard names/locations. | |||
915 | 1361 | ||
916 | Report bugs to <openssh-unix-dev@mindrot.org>. | 1362 | Report bugs to <openssh-unix-dev@mindrot.org>. |
917 | _ACEOF | 1363 | _ACEOF |
1364 | ac_status=$? | ||
918 | fi | 1365 | fi |
919 | 1366 | ||
920 | if test "$ac_init_help" = "recursive"; then | 1367 | if test "$ac_init_help" = "recursive"; then |
921 | # If there are subdirs, report their specific --help. | 1368 | # If there are subdirs, report their specific --help. |
922 | ac_popdir=`pwd` | ||
923 | for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue | 1369 | for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue |
924 | test -d $ac_dir || continue | 1370 | test -d "$ac_dir" || continue |
925 | ac_builddir=. | 1371 | ac_builddir=. |
926 | 1372 | ||
927 | if test "$ac_dir" != .; then | 1373 | case "$ac_dir" in |
1374 | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; | ||
1375 | *) | ||
928 | ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` | 1376 | ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` |
929 | # A "../" for each directory in $ac_dir_suffix. | 1377 | # A ".." for each directory in $ac_dir_suffix. |
930 | ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` | 1378 | ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` |
931 | else | 1379 | case $ac_top_builddir_sub in |
932 | ac_dir_suffix= ac_top_builddir= | 1380 | "") ac_top_builddir_sub=. ac_top_build_prefix= ;; |
933 | fi | 1381 | *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; |
1382 | esac ;; | ||
1383 | esac | ||
1384 | ac_abs_top_builddir=$ac_pwd | ||
1385 | ac_abs_builddir=$ac_pwd$ac_dir_suffix | ||
1386 | # for backward compatibility: | ||
1387 | ac_top_builddir=$ac_top_build_prefix | ||
934 | 1388 | ||
935 | case $srcdir in | 1389 | case $srcdir in |
936 | .) # No --srcdir option. We are building in place. | 1390 | .) # We are building in place. |
937 | ac_srcdir=. | 1391 | ac_srcdir=. |
938 | if test -z "$ac_top_builddir"; then | 1392 | ac_top_srcdir=$ac_top_builddir_sub |
939 | ac_top_srcdir=. | 1393 | ac_abs_top_srcdir=$ac_pwd ;; |
940 | else | 1394 | [\\/]* | ?:[\\/]* ) # Absolute name. |
941 | ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` | ||
942 | fi ;; | ||
943 | [\\/]* | ?:[\\/]* ) # Absolute path. | ||
944 | ac_srcdir=$srcdir$ac_dir_suffix; | 1395 | ac_srcdir=$srcdir$ac_dir_suffix; |
945 | ac_top_srcdir=$srcdir ;; | 1396 | ac_top_srcdir=$srcdir |
946 | *) # Relative path. | 1397 | ac_abs_top_srcdir=$srcdir ;; |
947 | ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix | 1398 | *) # Relative name. |
948 | ac_top_srcdir=$ac_top_builddir$srcdir ;; | 1399 | ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix |
949 | esac | 1400 | ac_top_srcdir=$ac_top_build_prefix$srcdir |
950 | 1401 | ac_abs_top_srcdir=$ac_pwd/$srcdir ;; | |
951 | # Do not use `cd foo && pwd` to compute absolute paths, because | ||
952 | # the directories may not exist. | ||
953 | case `pwd` in | ||
954 | .) ac_abs_builddir="$ac_dir";; | ||
955 | *) | ||
956 | case "$ac_dir" in | ||
957 | .) ac_abs_builddir=`pwd`;; | ||
958 | [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; | ||
959 | *) ac_abs_builddir=`pwd`/"$ac_dir";; | ||
960 | esac;; | ||
961 | esac | 1402 | esac |
962 | case $ac_abs_builddir in | 1403 | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix |
963 | .) ac_abs_top_builddir=${ac_top_builddir}.;; | 1404 | |
964 | *) | 1405 | cd "$ac_dir" || { ac_status=$?; continue; } |
965 | case ${ac_top_builddir}. in | 1406 | # Check for guested configure. |
966 | .) ac_abs_top_builddir=$ac_abs_builddir;; | 1407 | if test -f "$ac_srcdir/configure.gnu"; then |
967 | [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; | 1408 | echo && |
968 | *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; | 1409 | $SHELL "$ac_srcdir/configure.gnu" --help=recursive |
969 | esac;; | 1410 | elif test -f "$ac_srcdir/configure"; then |
970 | esac | 1411 | echo && |
971 | case $ac_abs_builddir in | 1412 | $SHELL "$ac_srcdir/configure" --help=recursive |
972 | .) ac_abs_srcdir=$ac_srcdir;; | ||
973 | *) | ||
974 | case $ac_srcdir in | ||
975 | .) ac_abs_srcdir=$ac_abs_builddir;; | ||
976 | [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; | ||
977 | *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; | ||
978 | esac;; | ||
979 | esac | ||
980 | case $ac_abs_builddir in | ||
981 | .) ac_abs_top_srcdir=$ac_top_srcdir;; | ||
982 | *) | ||
983 | case $ac_top_srcdir in | ||
984 | .) ac_abs_top_srcdir=$ac_abs_builddir;; | ||
985 | [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; | ||
986 | *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; | ||
987 | esac;; | ||
988 | esac | ||
989 | |||
990 | cd $ac_dir | ||
991 | # Check for guested configure; otherwise get Cygnus style configure. | ||
992 | if test -f $ac_srcdir/configure.gnu; then | ||
993 | echo | ||
994 | $SHELL $ac_srcdir/configure.gnu --help=recursive | ||
995 | elif test -f $ac_srcdir/configure; then | ||
996 | echo | ||
997 | $SHELL $ac_srcdir/configure --help=recursive | ||
998 | elif test -f $ac_srcdir/configure.ac || | ||
999 | test -f $ac_srcdir/configure.in; then | ||
1000 | echo | ||
1001 | $ac_configure --help | ||
1002 | else | 1413 | else |
1003 | echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 | 1414 | echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 |
1004 | fi | 1415 | fi || ac_status=$? |
1005 | cd "$ac_popdir" | 1416 | cd "$ac_pwd" || { ac_status=$?; break; } |
1006 | done | 1417 | done |
1007 | fi | 1418 | fi |
1008 | 1419 | ||
1009 | test -n "$ac_init_help" && exit 0 | 1420 | test -n "$ac_init_help" && exit $ac_status |
1010 | if $ac_init_version; then | 1421 | if $ac_init_version; then |
1011 | cat <<\_ACEOF | 1422 | cat <<\_ACEOF |
1012 | OpenSSH configure Portable | 1423 | OpenSSH configure Portable |
1013 | generated by GNU Autoconf 2.59 | 1424 | generated by GNU Autoconf 2.60a |
1014 | 1425 | ||
1015 | Copyright (C) 2003 Free Software Foundation, Inc. | 1426 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
1427 | 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. | ||
1016 | This configure script is free software; the Free Software Foundation | 1428 | This configure script is free software; the Free Software Foundation |
1017 | gives unlimited permission to copy, distribute and modify it. | 1429 | gives unlimited permission to copy, distribute and modify it. |
1018 | _ACEOF | 1430 | _ACEOF |
1019 | exit 0 | 1431 | exit |
1020 | fi | 1432 | fi |
1021 | exec 5>config.log | 1433 | cat >config.log <<_ACEOF |
1022 | cat >&5 <<_ACEOF | ||
1023 | This file contains any messages produced by compilers while | 1434 | This file contains any messages produced by compilers while |
1024 | running configure, to aid debugging if configure makes a mistake. | 1435 | running configure, to aid debugging if configure makes a mistake. |
1025 | 1436 | ||
1026 | It was created by OpenSSH $as_me Portable, which was | 1437 | It was created by OpenSSH $as_me Portable, which was |
1027 | generated by GNU Autoconf 2.59. Invocation command line was | 1438 | generated by GNU Autoconf 2.60a. Invocation command line was |
1028 | 1439 | ||
1029 | $ $0 $@ | 1440 | $ $0 $@ |
1030 | 1441 | ||
1031 | _ACEOF | 1442 | _ACEOF |
1443 | exec 5>>config.log | ||
1032 | { | 1444 | { |
1033 | cat <<_ASUNAME | 1445 | cat <<_ASUNAME |
1034 | ## --------- ## | 1446 | ## --------- ## |
@@ -1047,7 +1459,7 @@ uname -v = `(uname -v) 2>/dev/null || echo unknown` | |||
1047 | /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` | 1459 | /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` |
1048 | /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` | 1460 | /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` |
1049 | /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` | 1461 | /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` |
1050 | hostinfo = `(hostinfo) 2>/dev/null || echo unknown` | 1462 | /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` |
1051 | /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` | 1463 | /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` |
1052 | /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` | 1464 | /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` |
1053 | /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` | 1465 | /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` |
@@ -1061,6 +1473,7 @@ do | |||
1061 | test -z "$as_dir" && as_dir=. | 1473 | test -z "$as_dir" && as_dir=. |
1062 | echo "PATH: $as_dir" | 1474 | echo "PATH: $as_dir" |
1063 | done | 1475 | done |
1476 | IFS=$as_save_IFS | ||
1064 | 1477 | ||
1065 | } >&5 | 1478 | } >&5 |
1066 | 1479 | ||
@@ -1082,7 +1495,6 @@ _ACEOF | |||
1082 | ac_configure_args= | 1495 | ac_configure_args= |
1083 | ac_configure_args0= | 1496 | ac_configure_args0= |
1084 | ac_configure_args1= | 1497 | ac_configure_args1= |
1085 | ac_sep= | ||
1086 | ac_must_keep_next=false | 1498 | ac_must_keep_next=false |
1087 | for ac_pass in 1 2 | 1499 | for ac_pass in 1 2 |
1088 | do | 1500 | do |
@@ -1093,7 +1505,7 @@ do | |||
1093 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | 1505 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ |
1094 | | -silent | --silent | --silen | --sile | --sil) | 1506 | | -silent | --silent | --silen | --sile | --sil) |
1095 | continue ;; | 1507 | continue ;; |
1096 | *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) | 1508 | *\'*) |
1097 | ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; | 1509 | ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; |
1098 | esac | 1510 | esac |
1099 | case $ac_pass in | 1511 | case $ac_pass in |
@@ -1115,9 +1527,7 @@ do | |||
1115 | -* ) ac_must_keep_next=true ;; | 1527 | -* ) ac_must_keep_next=true ;; |
1116 | esac | 1528 | esac |
1117 | fi | 1529 | fi |
1118 | ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" | 1530 | ac_configure_args="$ac_configure_args '$ac_arg'" |
1119 | # Get rid of the leading space. | ||
1120 | ac_sep=" " | ||
1121 | ;; | 1531 | ;; |
1122 | esac | 1532 | esac |
1123 | done | 1533 | done |
@@ -1128,8 +1538,8 @@ $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_ | |||
1128 | # When interrupted or exit'd, cleanup temporary files, and complete | 1538 | # When interrupted or exit'd, cleanup temporary files, and complete |
1129 | # config.log. We remove comments because anyway the quotes in there | 1539 | # config.log. We remove comments because anyway the quotes in there |
1130 | # would cause problems or look ugly. | 1540 | # would cause problems or look ugly. |
1131 | # WARNING: Be sure not to use single quotes in there, as some shells, | 1541 | # WARNING: Use '\'' to represent an apostrophe within the trap. |
1132 | # such as our DU 5.0 friend, will then `close' the trap. | 1542 | # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. |
1133 | trap 'exit_status=$? | 1543 | trap 'exit_status=$? |
1134 | # Save into config.log some information that might help in debugging. | 1544 | # Save into config.log some information that might help in debugging. |
1135 | { | 1545 | { |
@@ -1142,20 +1552,34 @@ trap 'exit_status=$? | |||
1142 | _ASBOX | 1552 | _ASBOX |
1143 | echo | 1553 | echo |
1144 | # The following way of writing the cache mishandles newlines in values, | 1554 | # The following way of writing the cache mishandles newlines in values, |
1145 | { | 1555 | ( |
1556 | for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do | ||
1557 | eval ac_val=\$$ac_var | ||
1558 | case $ac_val in #( | ||
1559 | *${as_nl}*) | ||
1560 | case $ac_var in #( | ||
1561 | *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 | ||
1562 | echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; | ||
1563 | esac | ||
1564 | case $ac_var in #( | ||
1565 | _ | IFS | as_nl) ;; #( | ||
1566 | *) $as_unset $ac_var ;; | ||
1567 | esac ;; | ||
1568 | esac | ||
1569 | done | ||
1146 | (set) 2>&1 | | 1570 | (set) 2>&1 | |
1147 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in | 1571 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( |
1148 | *ac_space=\ *) | 1572 | *${as_nl}ac_space=\ *) |
1149 | sed -n \ | 1573 | sed -n \ |
1150 | "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; | 1574 | "s/'\''/'\''\\\\'\'''\''/g; |
1151 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" | 1575 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" |
1152 | ;; | 1576 | ;; #( |
1153 | *) | 1577 | *) |
1154 | sed -n \ | 1578 | sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" |
1155 | "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" | ||
1156 | ;; | 1579 | ;; |
1157 | esac; | 1580 | esac | |
1158 | } | 1581 | sort |
1582 | ) | ||
1159 | echo | 1583 | echo |
1160 | 1584 | ||
1161 | cat <<\_ASBOX | 1585 | cat <<\_ASBOX |
@@ -1166,22 +1590,28 @@ _ASBOX | |||
1166 | echo | 1590 | echo |
1167 | for ac_var in $ac_subst_vars | 1591 | for ac_var in $ac_subst_vars |
1168 | do | 1592 | do |
1169 | eval ac_val=$`echo $ac_var` | 1593 | eval ac_val=\$$ac_var |
1170 | echo "$ac_var='"'"'$ac_val'"'"'" | 1594 | case $ac_val in |
1595 | *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; | ||
1596 | esac | ||
1597 | echo "$ac_var='\''$ac_val'\''" | ||
1171 | done | sort | 1598 | done | sort |
1172 | echo | 1599 | echo |
1173 | 1600 | ||
1174 | if test -n "$ac_subst_files"; then | 1601 | if test -n "$ac_subst_files"; then |
1175 | cat <<\_ASBOX | 1602 | cat <<\_ASBOX |
1176 | ## ------------- ## | 1603 | ## ------------------- ## |
1177 | ## Output files. ## | 1604 | ## File substitutions. ## |
1178 | ## ------------- ## | 1605 | ## ------------------- ## |
1179 | _ASBOX | 1606 | _ASBOX |
1180 | echo | 1607 | echo |
1181 | for ac_var in $ac_subst_files | 1608 | for ac_var in $ac_subst_files |
1182 | do | 1609 | do |
1183 | eval ac_val=$`echo $ac_var` | 1610 | eval ac_val=\$$ac_var |
1184 | echo "$ac_var='"'"'$ac_val'"'"'" | 1611 | case $ac_val in |
1612 | *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; | ||
1613 | esac | ||
1614 | echo "$ac_var='\''$ac_val'\''" | ||
1185 | done | sort | 1615 | done | sort |
1186 | echo | 1616 | echo |
1187 | fi | 1617 | fi |
@@ -1193,26 +1623,24 @@ _ASBOX | |||
1193 | ## ----------- ## | 1623 | ## ----------- ## |
1194 | _ASBOX | 1624 | _ASBOX |
1195 | echo | 1625 | echo |
1196 | sed "/^$/d" confdefs.h | sort | 1626 | cat confdefs.h |
1197 | echo | 1627 | echo |
1198 | fi | 1628 | fi |
1199 | test "$ac_signal" != 0 && | 1629 | test "$ac_signal" != 0 && |
1200 | echo "$as_me: caught signal $ac_signal" | 1630 | echo "$as_me: caught signal $ac_signal" |
1201 | echo "$as_me: exit $exit_status" | 1631 | echo "$as_me: exit $exit_status" |
1202 | } >&5 | 1632 | } >&5 |
1203 | rm -f core *.core && | 1633 | rm -f core *.core core.conftest.* && |
1204 | rm -rf conftest* confdefs* conf$$* $ac_clean_files && | 1634 | rm -f -r conftest* confdefs* conf$$* $ac_clean_files && |
1205 | exit $exit_status | 1635 | exit $exit_status |
1206 | ' 0 | 1636 | ' 0 |
1207 | for ac_signal in 1 2 13 15; do | 1637 | for ac_signal in 1 2 13 15; do |
1208 | trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal | 1638 | trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal |
1209 | done | 1639 | done |
1210 | ac_signal=0 | 1640 | ac_signal=0 |
1211 | 1641 | ||
1212 | # confdefs.h avoids OS command line length limits that DEFS can exceed. | 1642 | # confdefs.h avoids OS command line length limits that DEFS can exceed. |
1213 | rm -rf conftest* confdefs.h | 1643 | rm -f -r conftest* confdefs.h |
1214 | # AIX cpp loses on an empty file, so make sure it contains at least a newline. | ||
1215 | echo >confdefs.h | ||
1216 | 1644 | ||
1217 | # Predefined preprocessor variables. | 1645 | # Predefined preprocessor variables. |
1218 | 1646 | ||
@@ -1243,14 +1671,17 @@ _ACEOF | |||
1243 | 1671 | ||
1244 | # Let the site file select an alternate cache file if it wants to. | 1672 | # Let the site file select an alternate cache file if it wants to. |
1245 | # Prefer explicitly selected file to automatically selected ones. | 1673 | # Prefer explicitly selected file to automatically selected ones. |
1246 | if test -z "$CONFIG_SITE"; then | 1674 | if test -n "$CONFIG_SITE"; then |
1247 | if test "x$prefix" != xNONE; then | 1675 | set x "$CONFIG_SITE" |
1248 | CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" | 1676 | elif test "x$prefix" != xNONE; then |
1249 | else | 1677 | set x "$prefix/share/config.site" "$prefix/etc/config.site" |
1250 | CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" | 1678 | else |
1251 | fi | 1679 | set x "$ac_default_prefix/share/config.site" \ |
1680 | "$ac_default_prefix/etc/config.site" | ||
1252 | fi | 1681 | fi |
1253 | for ac_site_file in $CONFIG_SITE; do | 1682 | shift |
1683 | for ac_site_file | ||
1684 | do | ||
1254 | if test -r "$ac_site_file"; then | 1685 | if test -r "$ac_site_file"; then |
1255 | { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 | 1686 | { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 |
1256 | echo "$as_me: loading site script $ac_site_file" >&6;} | 1687 | echo "$as_me: loading site script $ac_site_file" >&6;} |
@@ -1266,8 +1697,8 @@ if test -r "$cache_file"; then | |||
1266 | { echo "$as_me:$LINENO: loading cache $cache_file" >&5 | 1697 | { echo "$as_me:$LINENO: loading cache $cache_file" >&5 |
1267 | echo "$as_me: loading cache $cache_file" >&6;} | 1698 | echo "$as_me: loading cache $cache_file" >&6;} |
1268 | case $cache_file in | 1699 | case $cache_file in |
1269 | [\\/]* | ?:[\\/]* ) . $cache_file;; | 1700 | [\\/]* | ?:[\\/]* ) . "$cache_file";; |
1270 | *) . ./$cache_file;; | 1701 | *) . "./$cache_file";; |
1271 | esac | 1702 | esac |
1272 | fi | 1703 | fi |
1273 | else | 1704 | else |
@@ -1279,12 +1710,11 @@ fi | |||
1279 | # Check that the precious variables saved in the cache have kept the same | 1710 | # Check that the precious variables saved in the cache have kept the same |
1280 | # value. | 1711 | # value. |
1281 | ac_cache_corrupted=false | 1712 | ac_cache_corrupted=false |
1282 | for ac_var in `(set) 2>&1 | | 1713 | for ac_var in $ac_precious_vars; do |
1283 | sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do | ||
1284 | eval ac_old_set=\$ac_cv_env_${ac_var}_set | 1714 | eval ac_old_set=\$ac_cv_env_${ac_var}_set |
1285 | eval ac_new_set=\$ac_env_${ac_var}_set | 1715 | eval ac_new_set=\$ac_env_${ac_var}_set |
1286 | eval ac_old_val="\$ac_cv_env_${ac_var}_value" | 1716 | eval ac_old_val=\$ac_cv_env_${ac_var}_value |
1287 | eval ac_new_val="\$ac_env_${ac_var}_value" | 1717 | eval ac_new_val=\$ac_env_${ac_var}_value |
1288 | case $ac_old_set,$ac_new_set in | 1718 | case $ac_old_set,$ac_new_set in |
1289 | set,) | 1719 | set,) |
1290 | { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 | 1720 | { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 |
@@ -1309,8 +1739,7 @@ echo "$as_me: current value: $ac_new_val" >&2;} | |||
1309 | # Pass precious variables to config.status. | 1739 | # Pass precious variables to config.status. |
1310 | if test "$ac_new_set" = set; then | 1740 | if test "$ac_new_set" = set; then |
1311 | case $ac_new_val in | 1741 | case $ac_new_val in |
1312 | *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) | 1742 | *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; |
1313 | ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; | ||
1314 | *) ac_arg=$ac_var=$ac_new_val ;; | 1743 | *) ac_arg=$ac_var=$ac_new_val ;; |
1315 | esac | 1744 | esac |
1316 | case " $ac_configure_args " in | 1745 | case " $ac_configure_args " in |
@@ -1327,12 +1756,6 @@ echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start ov | |||
1327 | { (exit 1); exit 1; }; } | 1756 | { (exit 1); exit 1; }; } |
1328 | fi | 1757 | fi |
1329 | 1758 | ||
1330 | ac_ext=c | ||
1331 | ac_cpp='$CPP $CPPFLAGS' | ||
1332 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||
1333 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||
1334 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||
1335 | |||
1336 | 1759 | ||
1337 | 1760 | ||
1338 | 1761 | ||
@@ -1357,12 +1780,17 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu | |||
1357 | 1780 | ||
1358 | 1781 | ||
1359 | 1782 | ||
1783 | ac_ext=c | ||
1784 | ac_cpp='$CPP $CPPFLAGS' | ||
1785 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||
1786 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||
1787 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||
1360 | 1788 | ||
1361 | 1789 | ||
1362 | 1790 | ||
1363 | 1791 | ||
1364 | 1792 | ||
1365 | ac_config_headers="$ac_config_headers config.h" | 1793 | ac_config_headers="$ac_config_headers config.h" |
1366 | 1794 | ||
1367 | ac_ext=c | 1795 | ac_ext=c |
1368 | ac_cpp='$CPP $CPPFLAGS' | 1796 | ac_cpp='$CPP $CPPFLAGS' |
@@ -1372,8 +1800,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu | |||
1372 | if test -n "$ac_tool_prefix"; then | 1800 | if test -n "$ac_tool_prefix"; then |
1373 | # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. | 1801 | # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. |
1374 | set dummy ${ac_tool_prefix}gcc; ac_word=$2 | 1802 | set dummy ${ac_tool_prefix}gcc; ac_word=$2 |
1375 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 1803 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
1376 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 1804 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
1377 | if test "${ac_cv_prog_CC+set}" = set; then | 1805 | if test "${ac_cv_prog_CC+set}" = set; then |
1378 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 1806 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1379 | else | 1807 | else |
@@ -1386,32 +1814,34 @@ do | |||
1386 | IFS=$as_save_IFS | 1814 | IFS=$as_save_IFS |
1387 | test -z "$as_dir" && as_dir=. | 1815 | test -z "$as_dir" && as_dir=. |
1388 | for ac_exec_ext in '' $ac_executable_extensions; do | 1816 | for ac_exec_ext in '' $ac_executable_extensions; do |
1389 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 1817 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
1390 | ac_cv_prog_CC="${ac_tool_prefix}gcc" | 1818 | ac_cv_prog_CC="${ac_tool_prefix}gcc" |
1391 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 1819 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
1392 | break 2 | 1820 | break 2 |
1393 | fi | 1821 | fi |
1394 | done | 1822 | done |
1395 | done | 1823 | done |
1824 | IFS=$as_save_IFS | ||
1396 | 1825 | ||
1397 | fi | 1826 | fi |
1398 | fi | 1827 | fi |
1399 | CC=$ac_cv_prog_CC | 1828 | CC=$ac_cv_prog_CC |
1400 | if test -n "$CC"; then | 1829 | if test -n "$CC"; then |
1401 | echo "$as_me:$LINENO: result: $CC" >&5 | 1830 | { echo "$as_me:$LINENO: result: $CC" >&5 |
1402 | echo "${ECHO_T}$CC" >&6 | 1831 | echo "${ECHO_T}$CC" >&6; } |
1403 | else | 1832 | else |
1404 | echo "$as_me:$LINENO: result: no" >&5 | 1833 | { echo "$as_me:$LINENO: result: no" >&5 |
1405 | echo "${ECHO_T}no" >&6 | 1834 | echo "${ECHO_T}no" >&6; } |
1406 | fi | 1835 | fi |
1407 | 1836 | ||
1837 | |||
1408 | fi | 1838 | fi |
1409 | if test -z "$ac_cv_prog_CC"; then | 1839 | if test -z "$ac_cv_prog_CC"; then |
1410 | ac_ct_CC=$CC | 1840 | ac_ct_CC=$CC |
1411 | # Extract the first word of "gcc", so it can be a program name with args. | 1841 | # Extract the first word of "gcc", so it can be a program name with args. |
1412 | set dummy gcc; ac_word=$2 | 1842 | set dummy gcc; ac_word=$2 |
1413 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 1843 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
1414 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 1844 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
1415 | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then | 1845 | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then |
1416 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 1846 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1417 | else | 1847 | else |
@@ -1424,36 +1854,51 @@ do | |||
1424 | IFS=$as_save_IFS | 1854 | IFS=$as_save_IFS |
1425 | test -z "$as_dir" && as_dir=. | 1855 | test -z "$as_dir" && as_dir=. |
1426 | for ac_exec_ext in '' $ac_executable_extensions; do | 1856 | for ac_exec_ext in '' $ac_executable_extensions; do |
1427 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 1857 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
1428 | ac_cv_prog_ac_ct_CC="gcc" | 1858 | ac_cv_prog_ac_ct_CC="gcc" |
1429 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 1859 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
1430 | break 2 | 1860 | break 2 |
1431 | fi | 1861 | fi |
1432 | done | 1862 | done |
1433 | done | 1863 | done |
1864 | IFS=$as_save_IFS | ||
1434 | 1865 | ||
1435 | fi | 1866 | fi |
1436 | fi | 1867 | fi |
1437 | ac_ct_CC=$ac_cv_prog_ac_ct_CC | 1868 | ac_ct_CC=$ac_cv_prog_ac_ct_CC |
1438 | if test -n "$ac_ct_CC"; then | 1869 | if test -n "$ac_ct_CC"; then |
1439 | echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 | 1870 | { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 |
1440 | echo "${ECHO_T}$ac_ct_CC" >&6 | 1871 | echo "${ECHO_T}$ac_ct_CC" >&6; } |
1441 | else | 1872 | else |
1442 | echo "$as_me:$LINENO: result: no" >&5 | 1873 | { echo "$as_me:$LINENO: result: no" >&5 |
1443 | echo "${ECHO_T}no" >&6 | 1874 | echo "${ECHO_T}no" >&6; } |
1444 | fi | 1875 | fi |
1445 | 1876 | ||
1446 | CC=$ac_ct_CC | 1877 | if test "x$ac_ct_CC" = x; then |
1878 | CC="" | ||
1879 | else | ||
1880 | case $cross_compiling:$ac_tool_warned in | ||
1881 | yes:) | ||
1882 | { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools | ||
1883 | whose name does not start with the host triplet. If you think this | ||
1884 | configuration is useful to you, please write to autoconf@gnu.org." >&5 | ||
1885 | echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools | ||
1886 | whose name does not start with the host triplet. If you think this | ||
1887 | configuration is useful to you, please write to autoconf@gnu.org." >&2;} | ||
1888 | ac_tool_warned=yes ;; | ||
1889 | esac | ||
1890 | CC=$ac_ct_CC | ||
1891 | fi | ||
1447 | else | 1892 | else |
1448 | CC="$ac_cv_prog_CC" | 1893 | CC="$ac_cv_prog_CC" |
1449 | fi | 1894 | fi |
1450 | 1895 | ||
1451 | if test -z "$CC"; then | 1896 | if test -z "$CC"; then |
1452 | if test -n "$ac_tool_prefix"; then | 1897 | if test -n "$ac_tool_prefix"; then |
1453 | # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. | 1898 | # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. |
1454 | set dummy ${ac_tool_prefix}cc; ac_word=$2 | 1899 | set dummy ${ac_tool_prefix}cc; ac_word=$2 |
1455 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 1900 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
1456 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 1901 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
1457 | if test "${ac_cv_prog_CC+set}" = set; then | 1902 | if test "${ac_cv_prog_CC+set}" = set; then |
1458 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 1903 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1459 | else | 1904 | else |
@@ -1466,74 +1911,34 @@ do | |||
1466 | IFS=$as_save_IFS | 1911 | IFS=$as_save_IFS |
1467 | test -z "$as_dir" && as_dir=. | 1912 | test -z "$as_dir" && as_dir=. |
1468 | for ac_exec_ext in '' $ac_executable_extensions; do | 1913 | for ac_exec_ext in '' $ac_executable_extensions; do |
1469 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 1914 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
1470 | ac_cv_prog_CC="${ac_tool_prefix}cc" | 1915 | ac_cv_prog_CC="${ac_tool_prefix}cc" |
1471 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 1916 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
1472 | break 2 | 1917 | break 2 |
1473 | fi | 1918 | fi |
1474 | done | 1919 | done |
1475 | done | 1920 | done |
1921 | IFS=$as_save_IFS | ||
1476 | 1922 | ||
1477 | fi | 1923 | fi |
1478 | fi | 1924 | fi |
1479 | CC=$ac_cv_prog_CC | 1925 | CC=$ac_cv_prog_CC |
1480 | if test -n "$CC"; then | 1926 | if test -n "$CC"; then |
1481 | echo "$as_me:$LINENO: result: $CC" >&5 | 1927 | { echo "$as_me:$LINENO: result: $CC" >&5 |
1482 | echo "${ECHO_T}$CC" >&6 | 1928 | echo "${ECHO_T}$CC" >&6; } |
1483 | else | ||
1484 | echo "$as_me:$LINENO: result: no" >&5 | ||
1485 | echo "${ECHO_T}no" >&6 | ||
1486 | fi | ||
1487 | |||
1488 | fi | ||
1489 | if test -z "$ac_cv_prog_CC"; then | ||
1490 | ac_ct_CC=$CC | ||
1491 | # Extract the first word of "cc", so it can be a program name with args. | ||
1492 | set dummy cc; ac_word=$2 | ||
1493 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | ||
1494 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | ||
1495 | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then | ||
1496 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
1497 | else | ||
1498 | if test -n "$ac_ct_CC"; then | ||
1499 | ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. | ||
1500 | else | 1929 | else |
1501 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | 1930 | { echo "$as_me:$LINENO: result: no" >&5 |
1502 | for as_dir in $PATH | 1931 | echo "${ECHO_T}no" >&6; } |
1503 | do | ||
1504 | IFS=$as_save_IFS | ||
1505 | test -z "$as_dir" && as_dir=. | ||
1506 | for ac_exec_ext in '' $ac_executable_extensions; do | ||
1507 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | ||
1508 | ac_cv_prog_ac_ct_CC="cc" | ||
1509 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | ||
1510 | break 2 | ||
1511 | fi | ||
1512 | done | ||
1513 | done | ||
1514 | |||
1515 | fi | ||
1516 | fi | ||
1517 | ac_ct_CC=$ac_cv_prog_ac_ct_CC | ||
1518 | if test -n "$ac_ct_CC"; then | ||
1519 | echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 | ||
1520 | echo "${ECHO_T}$ac_ct_CC" >&6 | ||
1521 | else | ||
1522 | echo "$as_me:$LINENO: result: no" >&5 | ||
1523 | echo "${ECHO_T}no" >&6 | ||
1524 | fi | 1932 | fi |
1525 | 1933 | ||
1526 | CC=$ac_ct_CC | ||
1527 | else | ||
1528 | CC="$ac_cv_prog_CC" | ||
1529 | fi | ||
1530 | 1934 | ||
1935 | fi | ||
1531 | fi | 1936 | fi |
1532 | if test -z "$CC"; then | 1937 | if test -z "$CC"; then |
1533 | # Extract the first word of "cc", so it can be a program name with args. | 1938 | # Extract the first word of "cc", so it can be a program name with args. |
1534 | set dummy cc; ac_word=$2 | 1939 | set dummy cc; ac_word=$2 |
1535 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 1940 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
1536 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 1941 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
1537 | if test "${ac_cv_prog_CC+set}" = set; then | 1942 | if test "${ac_cv_prog_CC+set}" = set; then |
1538 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 1943 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1539 | else | 1944 | else |
@@ -1547,7 +1952,7 @@ do | |||
1547 | IFS=$as_save_IFS | 1952 | IFS=$as_save_IFS |
1548 | test -z "$as_dir" && as_dir=. | 1953 | test -z "$as_dir" && as_dir=. |
1549 | for ac_exec_ext in '' $ac_executable_extensions; do | 1954 | for ac_exec_ext in '' $ac_executable_extensions; do |
1550 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 1955 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
1551 | if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then | 1956 | if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then |
1552 | ac_prog_rejected=yes | 1957 | ac_prog_rejected=yes |
1553 | continue | 1958 | continue |
@@ -1558,6 +1963,7 @@ do | |||
1558 | fi | 1963 | fi |
1559 | done | 1964 | done |
1560 | done | 1965 | done |
1966 | IFS=$as_save_IFS | ||
1561 | 1967 | ||
1562 | if test $ac_prog_rejected = yes; then | 1968 | if test $ac_prog_rejected = yes; then |
1563 | # We found a bogon in the path, so make sure we never use it. | 1969 | # We found a bogon in the path, so make sure we never use it. |
@@ -1575,22 +1981,23 @@ fi | |||
1575 | fi | 1981 | fi |
1576 | CC=$ac_cv_prog_CC | 1982 | CC=$ac_cv_prog_CC |
1577 | if test -n "$CC"; then | 1983 | if test -n "$CC"; then |
1578 | echo "$as_me:$LINENO: result: $CC" >&5 | 1984 | { echo "$as_me:$LINENO: result: $CC" >&5 |
1579 | echo "${ECHO_T}$CC" >&6 | 1985 | echo "${ECHO_T}$CC" >&6; } |
1580 | else | 1986 | else |
1581 | echo "$as_me:$LINENO: result: no" >&5 | 1987 | { echo "$as_me:$LINENO: result: no" >&5 |
1582 | echo "${ECHO_T}no" >&6 | 1988 | echo "${ECHO_T}no" >&6; } |
1583 | fi | 1989 | fi |
1584 | 1990 | ||
1991 | |||
1585 | fi | 1992 | fi |
1586 | if test -z "$CC"; then | 1993 | if test -z "$CC"; then |
1587 | if test -n "$ac_tool_prefix"; then | 1994 | if test -n "$ac_tool_prefix"; then |
1588 | for ac_prog in cl | 1995 | for ac_prog in cl.exe |
1589 | do | 1996 | do |
1590 | # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. | 1997 | # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. |
1591 | set dummy $ac_tool_prefix$ac_prog; ac_word=$2 | 1998 | set dummy $ac_tool_prefix$ac_prog; ac_word=$2 |
1592 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 1999 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
1593 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 2000 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
1594 | if test "${ac_cv_prog_CC+set}" = set; then | 2001 | if test "${ac_cv_prog_CC+set}" = set; then |
1595 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 2002 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1596 | else | 2003 | else |
@@ -1603,36 +2010,38 @@ do | |||
1603 | IFS=$as_save_IFS | 2010 | IFS=$as_save_IFS |
1604 | test -z "$as_dir" && as_dir=. | 2011 | test -z "$as_dir" && as_dir=. |
1605 | for ac_exec_ext in '' $ac_executable_extensions; do | 2012 | for ac_exec_ext in '' $ac_executable_extensions; do |
1606 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 2013 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
1607 | ac_cv_prog_CC="$ac_tool_prefix$ac_prog" | 2014 | ac_cv_prog_CC="$ac_tool_prefix$ac_prog" |
1608 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 2015 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
1609 | break 2 | 2016 | break 2 |
1610 | fi | 2017 | fi |
1611 | done | 2018 | done |
1612 | done | 2019 | done |
2020 | IFS=$as_save_IFS | ||
1613 | 2021 | ||
1614 | fi | 2022 | fi |
1615 | fi | 2023 | fi |
1616 | CC=$ac_cv_prog_CC | 2024 | CC=$ac_cv_prog_CC |
1617 | if test -n "$CC"; then | 2025 | if test -n "$CC"; then |
1618 | echo "$as_me:$LINENO: result: $CC" >&5 | 2026 | { echo "$as_me:$LINENO: result: $CC" >&5 |
1619 | echo "${ECHO_T}$CC" >&6 | 2027 | echo "${ECHO_T}$CC" >&6; } |
1620 | else | 2028 | else |
1621 | echo "$as_me:$LINENO: result: no" >&5 | 2029 | { echo "$as_me:$LINENO: result: no" >&5 |
1622 | echo "${ECHO_T}no" >&6 | 2030 | echo "${ECHO_T}no" >&6; } |
1623 | fi | 2031 | fi |
1624 | 2032 | ||
2033 | |||
1625 | test -n "$CC" && break | 2034 | test -n "$CC" && break |
1626 | done | 2035 | done |
1627 | fi | 2036 | fi |
1628 | if test -z "$CC"; then | 2037 | if test -z "$CC"; then |
1629 | ac_ct_CC=$CC | 2038 | ac_ct_CC=$CC |
1630 | for ac_prog in cl | 2039 | for ac_prog in cl.exe |
1631 | do | 2040 | do |
1632 | # Extract the first word of "$ac_prog", so it can be a program name with args. | 2041 | # Extract the first word of "$ac_prog", so it can be a program name with args. |
1633 | set dummy $ac_prog; ac_word=$2 | 2042 | set dummy $ac_prog; ac_word=$2 |
1634 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 2043 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
1635 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 2044 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
1636 | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then | 2045 | if test "${ac_cv_prog_ac_ct_CC+set}" = set; then |
1637 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 2046 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1638 | else | 2047 | else |
@@ -1645,29 +2054,45 @@ do | |||
1645 | IFS=$as_save_IFS | 2054 | IFS=$as_save_IFS |
1646 | test -z "$as_dir" && as_dir=. | 2055 | test -z "$as_dir" && as_dir=. |
1647 | for ac_exec_ext in '' $ac_executable_extensions; do | 2056 | for ac_exec_ext in '' $ac_executable_extensions; do |
1648 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 2057 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
1649 | ac_cv_prog_ac_ct_CC="$ac_prog" | 2058 | ac_cv_prog_ac_ct_CC="$ac_prog" |
1650 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 2059 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
1651 | break 2 | 2060 | break 2 |
1652 | fi | 2061 | fi |
1653 | done | 2062 | done |
1654 | done | 2063 | done |
2064 | IFS=$as_save_IFS | ||
1655 | 2065 | ||
1656 | fi | 2066 | fi |
1657 | fi | 2067 | fi |
1658 | ac_ct_CC=$ac_cv_prog_ac_ct_CC | 2068 | ac_ct_CC=$ac_cv_prog_ac_ct_CC |
1659 | if test -n "$ac_ct_CC"; then | 2069 | if test -n "$ac_ct_CC"; then |
1660 | echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 | 2070 | { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 |
1661 | echo "${ECHO_T}$ac_ct_CC" >&6 | 2071 | echo "${ECHO_T}$ac_ct_CC" >&6; } |
1662 | else | 2072 | else |
1663 | echo "$as_me:$LINENO: result: no" >&5 | 2073 | { echo "$as_me:$LINENO: result: no" >&5 |
1664 | echo "${ECHO_T}no" >&6 | 2074 | echo "${ECHO_T}no" >&6; } |
1665 | fi | 2075 | fi |
1666 | 2076 | ||
2077 | |||
1667 | test -n "$ac_ct_CC" && break | 2078 | test -n "$ac_ct_CC" && break |
1668 | done | 2079 | done |
1669 | 2080 | ||
1670 | CC=$ac_ct_CC | 2081 | if test "x$ac_ct_CC" = x; then |
2082 | CC="" | ||
2083 | else | ||
2084 | case $cross_compiling:$ac_tool_warned in | ||
2085 | yes:) | ||
2086 | { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools | ||
2087 | whose name does not start with the host triplet. If you think this | ||
2088 | configuration is useful to you, please write to autoconf@gnu.org." >&5 | ||
2089 | echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools | ||
2090 | whose name does not start with the host triplet. If you think this | ||
2091 | configuration is useful to you, please write to autoconf@gnu.org." >&2;} | ||
2092 | ac_tool_warned=yes ;; | ||
2093 | esac | ||
2094 | CC=$ac_ct_CC | ||
2095 | fi | ||
1671 | fi | 2096 | fi |
1672 | 2097 | ||
1673 | fi | 2098 | fi |
@@ -1680,21 +2105,35 @@ See \`config.log' for more details." >&2;} | |||
1680 | { (exit 1); exit 1; }; } | 2105 | { (exit 1); exit 1; }; } |
1681 | 2106 | ||
1682 | # Provide some information about the compiler. | 2107 | # Provide some information about the compiler. |
1683 | echo "$as_me:$LINENO:" \ | 2108 | echo "$as_me:$LINENO: checking for C compiler version" >&5 |
1684 | "checking for C compiler version" >&5 | ||
1685 | ac_compiler=`set X $ac_compile; echo $2` | 2109 | ac_compiler=`set X $ac_compile; echo $2` |
1686 | { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 | 2110 | { (ac_try="$ac_compiler --version >&5" |
1687 | (eval $ac_compiler --version </dev/null >&5) 2>&5 | 2111 | case "(($ac_try" in |
2112 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2113 | *) ac_try_echo=$ac_try;; | ||
2114 | esac | ||
2115 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2116 | (eval "$ac_compiler --version >&5") 2>&5 | ||
1688 | ac_status=$? | 2117 | ac_status=$? |
1689 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2118 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1690 | (exit $ac_status); } | 2119 | (exit $ac_status); } |
1691 | { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 | 2120 | { (ac_try="$ac_compiler -v >&5" |
1692 | (eval $ac_compiler -v </dev/null >&5) 2>&5 | 2121 | case "(($ac_try" in |
2122 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2123 | *) ac_try_echo=$ac_try;; | ||
2124 | esac | ||
2125 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2126 | (eval "$ac_compiler -v >&5") 2>&5 | ||
1693 | ac_status=$? | 2127 | ac_status=$? |
1694 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2128 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1695 | (exit $ac_status); } | 2129 | (exit $ac_status); } |
1696 | { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 | 2130 | { (ac_try="$ac_compiler -V >&5" |
1697 | (eval $ac_compiler -V </dev/null >&5) 2>&5 | 2131 | case "(($ac_try" in |
2132 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2133 | *) ac_try_echo=$ac_try;; | ||
2134 | esac | ||
2135 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2136 | (eval "$ac_compiler -V >&5") 2>&5 | ||
1698 | ac_status=$? | 2137 | ac_status=$? |
1699 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2138 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1700 | (exit $ac_status); } | 2139 | (exit $ac_status); } |
@@ -1719,47 +2158,77 @@ ac_clean_files="$ac_clean_files a.out a.exe b.out" | |||
1719 | # Try to create an executable without -o first, disregard a.out. | 2158 | # Try to create an executable without -o first, disregard a.out. |
1720 | # It will help us diagnose broken compilers, and finding out an intuition | 2159 | # It will help us diagnose broken compilers, and finding out an intuition |
1721 | # of exeext. | 2160 | # of exeext. |
1722 | echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 | 2161 | { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 |
1723 | echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 | 2162 | echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } |
1724 | ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` | 2163 | ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` |
1725 | if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 | 2164 | # |
1726 | (eval $ac_link_default) 2>&5 | 2165 | # List of possible output files, starting from the most likely. |
2166 | # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) | ||
2167 | # only as a last resort. b.out is created by i960 compilers. | ||
2168 | ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' | ||
2169 | # | ||
2170 | # The IRIX 6 linker writes into existing files which may not be | ||
2171 | # executable, retaining their permissions. Remove them first so a | ||
2172 | # subsequent execution test works. | ||
2173 | ac_rmfiles= | ||
2174 | for ac_file in $ac_files | ||
2175 | do | ||
2176 | case $ac_file in | ||
2177 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; | ||
2178 | * ) ac_rmfiles="$ac_rmfiles $ac_file";; | ||
2179 | esac | ||
2180 | done | ||
2181 | rm -f $ac_rmfiles | ||
2182 | |||
2183 | if { (ac_try="$ac_link_default" | ||
2184 | case "(($ac_try" in | ||
2185 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2186 | *) ac_try_echo=$ac_try;; | ||
2187 | esac | ||
2188 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2189 | (eval "$ac_link_default") 2>&5 | ||
1727 | ac_status=$? | 2190 | ac_status=$? |
1728 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2191 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1729 | (exit $ac_status); }; then | 2192 | (exit $ac_status); }; then |
1730 | # Find the output, starting from the most likely. This scheme is | 2193 | # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. |
1731 | # not robust to junk in `.', hence go to wildcards (a.*) only as a last | 2194 | # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' |
1732 | # resort. | 2195 | # in a Makefile. We should not override ac_cv_exeext if it was cached, |
1733 | 2196 | # so that the user can short-circuit this test for compilers unknown to | |
1734 | # Be careful to initialize this variable, since it used to be cached. | 2197 | # Autoconf. |
1735 | # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. | 2198 | for ac_file in $ac_files '' |
1736 | ac_cv_exeext= | ||
1737 | # b.out is created by i960 compilers. | ||
1738 | for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out | ||
1739 | do | 2199 | do |
1740 | test -f "$ac_file" || continue | 2200 | test -f "$ac_file" || continue |
1741 | case $ac_file in | 2201 | case $ac_file in |
1742 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) | 2202 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) |
1743 | ;; | ||
1744 | conftest.$ac_ext ) | ||
1745 | # This is the source file. | ||
1746 | ;; | 2203 | ;; |
1747 | [ab].out ) | 2204 | [ab].out ) |
1748 | # We found the default executable, but exeext='' is most | 2205 | # We found the default executable, but exeext='' is most |
1749 | # certainly right. | 2206 | # certainly right. |
1750 | break;; | 2207 | break;; |
1751 | *.* ) | 2208 | *.* ) |
1752 | ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` | 2209 | if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; |
1753 | # FIXME: I believe we export ac_cv_exeext for Libtool, | 2210 | then :; else |
1754 | # but it would be cool to find out if it's true. Does anybody | 2211 | ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` |
1755 | # maintain Libtool? --akim. | 2212 | fi |
1756 | export ac_cv_exeext | 2213 | # We set ac_cv_exeext here because the later test for it is not |
2214 | # safe: cross compilers may not add the suffix if given an `-o' | ||
2215 | # argument, so we may need to know it at that point already. | ||
2216 | # Even if this section looks crufty: it has the advantage of | ||
2217 | # actually working. | ||
1757 | break;; | 2218 | break;; |
1758 | * ) | 2219 | * ) |
1759 | break;; | 2220 | break;; |
1760 | esac | 2221 | esac |
1761 | done | 2222 | done |
2223 | test "$ac_cv_exeext" = no && ac_cv_exeext= | ||
2224 | |||
1762 | else | 2225 | else |
2226 | ac_file='' | ||
2227 | fi | ||
2228 | |||
2229 | { echo "$as_me:$LINENO: result: $ac_file" >&5 | ||
2230 | echo "${ECHO_T}$ac_file" >&6; } | ||
2231 | if test -z "$ac_file"; then | ||
1763 | echo "$as_me: failed program was:" >&5 | 2232 | echo "$as_me: failed program was:" >&5 |
1764 | sed 's/^/| /' conftest.$ac_ext >&5 | 2233 | sed 's/^/| /' conftest.$ac_ext >&5 |
1765 | 2234 | ||
@@ -1771,19 +2240,21 @@ See \`config.log' for more details." >&2;} | |||
1771 | fi | 2240 | fi |
1772 | 2241 | ||
1773 | ac_exeext=$ac_cv_exeext | 2242 | ac_exeext=$ac_cv_exeext |
1774 | echo "$as_me:$LINENO: result: $ac_file" >&5 | ||
1775 | echo "${ECHO_T}$ac_file" >&6 | ||
1776 | 2243 | ||
1777 | # Check the compiler produces executables we can run. If not, either | 2244 | # Check that the compiler produces executables we can run. If not, either |
1778 | # the compiler is broken, or we cross compile. | 2245 | # the compiler is broken, or we cross compile. |
1779 | echo "$as_me:$LINENO: checking whether the C compiler works" >&5 | 2246 | { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 |
1780 | echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 | 2247 | echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } |
1781 | # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 | 2248 | # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 |
1782 | # If not cross compiling, check that we can run a simple program. | 2249 | # If not cross compiling, check that we can run a simple program. |
1783 | if test "$cross_compiling" != yes; then | 2250 | if test "$cross_compiling" != yes; then |
1784 | if { ac_try='./$ac_file' | 2251 | if { ac_try='./$ac_file' |
1785 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2252 | { (case "(($ac_try" in |
1786 | (eval $ac_try) 2>&5 | 2253 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2254 | *) ac_try_echo=$ac_try;; | ||
2255 | esac | ||
2256 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2257 | (eval "$ac_try") 2>&5 | ||
1787 | ac_status=$? | 2258 | ac_status=$? |
1788 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2259 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1789 | (exit $ac_status); }; }; then | 2260 | (exit $ac_status); }; }; then |
@@ -1802,22 +2273,27 @@ See \`config.log' for more details." >&2;} | |||
1802 | fi | 2273 | fi |
1803 | fi | 2274 | fi |
1804 | fi | 2275 | fi |
1805 | echo "$as_me:$LINENO: result: yes" >&5 | 2276 | { echo "$as_me:$LINENO: result: yes" >&5 |
1806 | echo "${ECHO_T}yes" >&6 | 2277 | echo "${ECHO_T}yes" >&6; } |
1807 | 2278 | ||
1808 | rm -f a.out a.exe conftest$ac_cv_exeext b.out | 2279 | rm -f a.out a.exe conftest$ac_cv_exeext b.out |
1809 | ac_clean_files=$ac_clean_files_save | 2280 | ac_clean_files=$ac_clean_files_save |
1810 | # Check the compiler produces executables we can run. If not, either | 2281 | # Check that the compiler produces executables we can run. If not, either |
1811 | # the compiler is broken, or we cross compile. | 2282 | # the compiler is broken, or we cross compile. |
1812 | echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 | 2283 | { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 |
1813 | echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 | 2284 | echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } |
1814 | echo "$as_me:$LINENO: result: $cross_compiling" >&5 | 2285 | { echo "$as_me:$LINENO: result: $cross_compiling" >&5 |
1815 | echo "${ECHO_T}$cross_compiling" >&6 | 2286 | echo "${ECHO_T}$cross_compiling" >&6; } |
1816 | 2287 | ||
1817 | echo "$as_me:$LINENO: checking for suffix of executables" >&5 | 2288 | { echo "$as_me:$LINENO: checking for suffix of executables" >&5 |
1818 | echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 | 2289 | echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } |
1819 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 2290 | if { (ac_try="$ac_link" |
1820 | (eval $ac_link) 2>&5 | 2291 | case "(($ac_try" in |
2292 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2293 | *) ac_try_echo=$ac_try;; | ||
2294 | esac | ||
2295 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2296 | (eval "$ac_link") 2>&5 | ||
1821 | ac_status=$? | 2297 | ac_status=$? |
1822 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2298 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1823 | (exit $ac_status); }; then | 2299 | (exit $ac_status); }; then |
@@ -1828,9 +2304,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
1828 | for ac_file in conftest.exe conftest conftest.*; do | 2304 | for ac_file in conftest.exe conftest conftest.*; do |
1829 | test -f "$ac_file" || continue | 2305 | test -f "$ac_file" || continue |
1830 | case $ac_file in | 2306 | case $ac_file in |
1831 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; | 2307 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; |
1832 | *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` | 2308 | *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` |
1833 | export ac_cv_exeext | ||
1834 | break;; | 2309 | break;; |
1835 | * ) break;; | 2310 | * ) break;; |
1836 | esac | 2311 | esac |
@@ -1844,14 +2319,14 @@ See \`config.log' for more details." >&2;} | |||
1844 | fi | 2319 | fi |
1845 | 2320 | ||
1846 | rm -f conftest$ac_cv_exeext | 2321 | rm -f conftest$ac_cv_exeext |
1847 | echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 | 2322 | { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 |
1848 | echo "${ECHO_T}$ac_cv_exeext" >&6 | 2323 | echo "${ECHO_T}$ac_cv_exeext" >&6; } |
1849 | 2324 | ||
1850 | rm -f conftest.$ac_ext | 2325 | rm -f conftest.$ac_ext |
1851 | EXEEXT=$ac_cv_exeext | 2326 | EXEEXT=$ac_cv_exeext |
1852 | ac_exeext=$EXEEXT | 2327 | ac_exeext=$EXEEXT |
1853 | echo "$as_me:$LINENO: checking for suffix of object files" >&5 | 2328 | { echo "$as_me:$LINENO: checking for suffix of object files" >&5 |
1854 | echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 | 2329 | echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } |
1855 | if test "${ac_cv_objext+set}" = set; then | 2330 | if test "${ac_cv_objext+set}" = set; then |
1856 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 2331 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1857 | else | 2332 | else |
@@ -1871,14 +2346,20 @@ main () | |||
1871 | } | 2346 | } |
1872 | _ACEOF | 2347 | _ACEOF |
1873 | rm -f conftest.o conftest.obj | 2348 | rm -f conftest.o conftest.obj |
1874 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 2349 | if { (ac_try="$ac_compile" |
1875 | (eval $ac_compile) 2>&5 | 2350 | case "(($ac_try" in |
2351 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2352 | *) ac_try_echo=$ac_try;; | ||
2353 | esac | ||
2354 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2355 | (eval "$ac_compile") 2>&5 | ||
1876 | ac_status=$? | 2356 | ac_status=$? |
1877 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2357 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1878 | (exit $ac_status); }; then | 2358 | (exit $ac_status); }; then |
1879 | for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do | 2359 | for ac_file in conftest.o conftest.obj conftest.*; do |
2360 | test -f "$ac_file" || continue; | ||
1880 | case $ac_file in | 2361 | case $ac_file in |
1881 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; | 2362 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; |
1882 | *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` | 2363 | *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` |
1883 | break;; | 2364 | break;; |
1884 | esac | 2365 | esac |
@@ -1896,12 +2377,12 @@ fi | |||
1896 | 2377 | ||
1897 | rm -f conftest.$ac_cv_objext conftest.$ac_ext | 2378 | rm -f conftest.$ac_cv_objext conftest.$ac_ext |
1898 | fi | 2379 | fi |
1899 | echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 | 2380 | { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 |
1900 | echo "${ECHO_T}$ac_cv_objext" >&6 | 2381 | echo "${ECHO_T}$ac_cv_objext" >&6; } |
1901 | OBJEXT=$ac_cv_objext | 2382 | OBJEXT=$ac_cv_objext |
1902 | ac_objext=$OBJEXT | 2383 | ac_objext=$OBJEXT |
1903 | echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 | 2384 | { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 |
1904 | echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 | 2385 | echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } |
1905 | if test "${ac_cv_c_compiler_gnu+set}" = set; then | 2386 | if test "${ac_cv_c_compiler_gnu+set}" = set; then |
1906 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 2387 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1907 | else | 2388 | else |
@@ -1924,23 +2405,36 @@ main () | |||
1924 | } | 2405 | } |
1925 | _ACEOF | 2406 | _ACEOF |
1926 | rm -f conftest.$ac_objext | 2407 | rm -f conftest.$ac_objext |
1927 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 2408 | if { (ac_try="$ac_compile" |
1928 | (eval $ac_compile) 2>conftest.er1 | 2409 | case "(($ac_try" in |
2410 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2411 | *) ac_try_echo=$ac_try;; | ||
2412 | esac | ||
2413 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2414 | (eval "$ac_compile") 2>conftest.er1 | ||
1929 | ac_status=$? | 2415 | ac_status=$? |
1930 | grep -v '^ *+' conftest.er1 >conftest.err | 2416 | grep -v '^ *+' conftest.er1 >conftest.err |
1931 | rm -f conftest.er1 | 2417 | rm -f conftest.er1 |
1932 | cat conftest.err >&5 | 2418 | cat conftest.err >&5 |
1933 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2419 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1934 | (exit $ac_status); } && | 2420 | (exit $ac_status); } && |
1935 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 2421 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
1936 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2422 | { (case "(($ac_try" in |
1937 | (eval $ac_try) 2>&5 | 2423 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2424 | *) ac_try_echo=$ac_try;; | ||
2425 | esac | ||
2426 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2427 | (eval "$ac_try") 2>&5 | ||
1938 | ac_status=$? | 2428 | ac_status=$? |
1939 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2429 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1940 | (exit $ac_status); }; } && | 2430 | (exit $ac_status); }; } && |
1941 | { ac_try='test -s conftest.$ac_objext' | 2431 | { ac_try='test -s conftest.$ac_objext' |
1942 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2432 | { (case "(($ac_try" in |
1943 | (eval $ac_try) 2>&5 | 2433 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2434 | *) ac_try_echo=$ac_try;; | ||
2435 | esac | ||
2436 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2437 | (eval "$ac_try") 2>&5 | ||
1944 | ac_status=$? | 2438 | ac_status=$? |
1945 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2439 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1946 | (exit $ac_status); }; }; then | 2440 | (exit $ac_status); }; }; then |
@@ -1949,24 +2443,139 @@ else | |||
1949 | echo "$as_me: failed program was:" >&5 | 2443 | echo "$as_me: failed program was:" >&5 |
1950 | sed 's/^/| /' conftest.$ac_ext >&5 | 2444 | sed 's/^/| /' conftest.$ac_ext >&5 |
1951 | 2445 | ||
1952 | ac_compiler_gnu=no | 2446 | ac_compiler_gnu=no |
1953 | fi | 2447 | fi |
1954 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 2448 | |
2449 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
1955 | ac_cv_c_compiler_gnu=$ac_compiler_gnu | 2450 | ac_cv_c_compiler_gnu=$ac_compiler_gnu |
1956 | 2451 | ||
1957 | fi | 2452 | fi |
1958 | echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 | 2453 | { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 |
1959 | echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 | 2454 | echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } |
1960 | GCC=`test $ac_compiler_gnu = yes && echo yes` | 2455 | GCC=`test $ac_compiler_gnu = yes && echo yes` |
1961 | ac_test_CFLAGS=${CFLAGS+set} | 2456 | ac_test_CFLAGS=${CFLAGS+set} |
1962 | ac_save_CFLAGS=$CFLAGS | 2457 | ac_save_CFLAGS=$CFLAGS |
1963 | CFLAGS="-g" | 2458 | { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 |
1964 | echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 | 2459 | echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } |
1965 | echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 | ||
1966 | if test "${ac_cv_prog_cc_g+set}" = set; then | 2460 | if test "${ac_cv_prog_cc_g+set}" = set; then |
1967 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 2461 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
1968 | else | 2462 | else |
1969 | cat >conftest.$ac_ext <<_ACEOF | 2463 | ac_save_c_werror_flag=$ac_c_werror_flag |
2464 | ac_c_werror_flag=yes | ||
2465 | ac_cv_prog_cc_g=no | ||
2466 | CFLAGS="-g" | ||
2467 | cat >conftest.$ac_ext <<_ACEOF | ||
2468 | /* confdefs.h. */ | ||
2469 | _ACEOF | ||
2470 | cat confdefs.h >>conftest.$ac_ext | ||
2471 | cat >>conftest.$ac_ext <<_ACEOF | ||
2472 | /* end confdefs.h. */ | ||
2473 | |||
2474 | int | ||
2475 | main () | ||
2476 | { | ||
2477 | |||
2478 | ; | ||
2479 | return 0; | ||
2480 | } | ||
2481 | _ACEOF | ||
2482 | rm -f conftest.$ac_objext | ||
2483 | if { (ac_try="$ac_compile" | ||
2484 | case "(($ac_try" in | ||
2485 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2486 | *) ac_try_echo=$ac_try;; | ||
2487 | esac | ||
2488 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2489 | (eval "$ac_compile") 2>conftest.er1 | ||
2490 | ac_status=$? | ||
2491 | grep -v '^ *+' conftest.er1 >conftest.err | ||
2492 | rm -f conftest.er1 | ||
2493 | cat conftest.err >&5 | ||
2494 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
2495 | (exit $ac_status); } && | ||
2496 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
2497 | { (case "(($ac_try" in | ||
2498 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2499 | *) ac_try_echo=$ac_try;; | ||
2500 | esac | ||
2501 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2502 | (eval "$ac_try") 2>&5 | ||
2503 | ac_status=$? | ||
2504 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
2505 | (exit $ac_status); }; } && | ||
2506 | { ac_try='test -s conftest.$ac_objext' | ||
2507 | { (case "(($ac_try" in | ||
2508 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2509 | *) ac_try_echo=$ac_try;; | ||
2510 | esac | ||
2511 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2512 | (eval "$ac_try") 2>&5 | ||
2513 | ac_status=$? | ||
2514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
2515 | (exit $ac_status); }; }; then | ||
2516 | ac_cv_prog_cc_g=yes | ||
2517 | else | ||
2518 | echo "$as_me: failed program was:" >&5 | ||
2519 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
2520 | |||
2521 | CFLAGS="" | ||
2522 | cat >conftest.$ac_ext <<_ACEOF | ||
2523 | /* confdefs.h. */ | ||
2524 | _ACEOF | ||
2525 | cat confdefs.h >>conftest.$ac_ext | ||
2526 | cat >>conftest.$ac_ext <<_ACEOF | ||
2527 | /* end confdefs.h. */ | ||
2528 | |||
2529 | int | ||
2530 | main () | ||
2531 | { | ||
2532 | |||
2533 | ; | ||
2534 | return 0; | ||
2535 | } | ||
2536 | _ACEOF | ||
2537 | rm -f conftest.$ac_objext | ||
2538 | if { (ac_try="$ac_compile" | ||
2539 | case "(($ac_try" in | ||
2540 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2541 | *) ac_try_echo=$ac_try;; | ||
2542 | esac | ||
2543 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2544 | (eval "$ac_compile") 2>conftest.er1 | ||
2545 | ac_status=$? | ||
2546 | grep -v '^ *+' conftest.er1 >conftest.err | ||
2547 | rm -f conftest.er1 | ||
2548 | cat conftest.err >&5 | ||
2549 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
2550 | (exit $ac_status); } && | ||
2551 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
2552 | { (case "(($ac_try" in | ||
2553 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2554 | *) ac_try_echo=$ac_try;; | ||
2555 | esac | ||
2556 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2557 | (eval "$ac_try") 2>&5 | ||
2558 | ac_status=$? | ||
2559 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
2560 | (exit $ac_status); }; } && | ||
2561 | { ac_try='test -s conftest.$ac_objext' | ||
2562 | { (case "(($ac_try" in | ||
2563 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2564 | *) ac_try_echo=$ac_try;; | ||
2565 | esac | ||
2566 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2567 | (eval "$ac_try") 2>&5 | ||
2568 | ac_status=$? | ||
2569 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
2570 | (exit $ac_status); }; }; then | ||
2571 | : | ||
2572 | else | ||
2573 | echo "$as_me: failed program was:" >&5 | ||
2574 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
2575 | |||
2576 | ac_c_werror_flag=$ac_save_c_werror_flag | ||
2577 | CFLAGS="-g" | ||
2578 | cat >conftest.$ac_ext <<_ACEOF | ||
1970 | /* confdefs.h. */ | 2579 | /* confdefs.h. */ |
1971 | _ACEOF | 2580 | _ACEOF |
1972 | cat confdefs.h >>conftest.$ac_ext | 2581 | cat confdefs.h >>conftest.$ac_ext |
@@ -1982,23 +2591,36 @@ main () | |||
1982 | } | 2591 | } |
1983 | _ACEOF | 2592 | _ACEOF |
1984 | rm -f conftest.$ac_objext | 2593 | rm -f conftest.$ac_objext |
1985 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 2594 | if { (ac_try="$ac_compile" |
1986 | (eval $ac_compile) 2>conftest.er1 | 2595 | case "(($ac_try" in |
2596 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2597 | *) ac_try_echo=$ac_try;; | ||
2598 | esac | ||
2599 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2600 | (eval "$ac_compile") 2>conftest.er1 | ||
1987 | ac_status=$? | 2601 | ac_status=$? |
1988 | grep -v '^ *+' conftest.er1 >conftest.err | 2602 | grep -v '^ *+' conftest.er1 >conftest.err |
1989 | rm -f conftest.er1 | 2603 | rm -f conftest.er1 |
1990 | cat conftest.err >&5 | 2604 | cat conftest.err >&5 |
1991 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2605 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1992 | (exit $ac_status); } && | 2606 | (exit $ac_status); } && |
1993 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 2607 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
1994 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2608 | { (case "(($ac_try" in |
1995 | (eval $ac_try) 2>&5 | 2609 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2610 | *) ac_try_echo=$ac_try;; | ||
2611 | esac | ||
2612 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2613 | (eval "$ac_try") 2>&5 | ||
1996 | ac_status=$? | 2614 | ac_status=$? |
1997 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2615 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1998 | (exit $ac_status); }; } && | 2616 | (exit $ac_status); }; } && |
1999 | { ac_try='test -s conftest.$ac_objext' | 2617 | { ac_try='test -s conftest.$ac_objext' |
2000 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2618 | { (case "(($ac_try" in |
2001 | (eval $ac_try) 2>&5 | 2619 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2620 | *) ac_try_echo=$ac_try;; | ||
2621 | esac | ||
2622 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2623 | (eval "$ac_try") 2>&5 | ||
2002 | ac_status=$? | 2624 | ac_status=$? |
2003 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2625 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2004 | (exit $ac_status); }; }; then | 2626 | (exit $ac_status); }; }; then |
@@ -2007,12 +2629,20 @@ else | |||
2007 | echo "$as_me: failed program was:" >&5 | 2629 | echo "$as_me: failed program was:" >&5 |
2008 | sed 's/^/| /' conftest.$ac_ext >&5 | 2630 | sed 's/^/| /' conftest.$ac_ext >&5 |
2009 | 2631 | ||
2010 | ac_cv_prog_cc_g=no | 2632 | |
2633 | fi | ||
2634 | |||
2635 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
2636 | fi | ||
2637 | |||
2638 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
2011 | fi | 2639 | fi |
2012 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 2640 | |
2641 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
2642 | ac_c_werror_flag=$ac_save_c_werror_flag | ||
2013 | fi | 2643 | fi |
2014 | echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 | 2644 | { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 |
2015 | echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 | 2645 | echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } |
2016 | if test "$ac_test_CFLAGS" = set; then | 2646 | if test "$ac_test_CFLAGS" = set; then |
2017 | CFLAGS=$ac_save_CFLAGS | 2647 | CFLAGS=$ac_save_CFLAGS |
2018 | elif test $ac_cv_prog_cc_g = yes; then | 2648 | elif test $ac_cv_prog_cc_g = yes; then |
@@ -2028,12 +2658,12 @@ else | |||
2028 | CFLAGS= | 2658 | CFLAGS= |
2029 | fi | 2659 | fi |
2030 | fi | 2660 | fi |
2031 | echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 | 2661 | { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 |
2032 | echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 | 2662 | echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } |
2033 | if test "${ac_cv_prog_cc_stdc+set}" = set; then | 2663 | if test "${ac_cv_prog_cc_c89+set}" = set; then |
2034 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 2664 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
2035 | else | 2665 | else |
2036 | ac_cv_prog_cc_stdc=no | 2666 | ac_cv_prog_cc_c89=no |
2037 | ac_save_CC=$CC | 2667 | ac_save_CC=$CC |
2038 | cat >conftest.$ac_ext <<_ACEOF | 2668 | cat >conftest.$ac_ext <<_ACEOF |
2039 | /* confdefs.h. */ | 2669 | /* confdefs.h. */ |
@@ -2067,12 +2697,17 @@ static char *f (char * (*g) (char **, int), char **p, ...) | |||
2067 | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | 2697 | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has |
2068 | function prototypes and stuff, but not '\xHH' hex character constants. | 2698 | function prototypes and stuff, but not '\xHH' hex character constants. |
2069 | These don't provoke an error unfortunately, instead are silently treated | 2699 | These don't provoke an error unfortunately, instead are silently treated |
2070 | as 'x'. The following induces an error, until -std1 is added to get | 2700 | as 'x'. The following induces an error, until -std is added to get |
2071 | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | 2701 | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an |
2072 | array size at least. It's necessary to write '\x00'==0 to get something | 2702 | array size at least. It's necessary to write '\x00'==0 to get something |
2073 | that's true only with -std1. */ | 2703 | that's true only with -std. */ |
2074 | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | 2704 | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; |
2075 | 2705 | ||
2706 | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | ||
2707 | inside strings and character constants. */ | ||
2708 | #define FOO(x) 'x' | ||
2709 | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | ||
2710 | |||
2076 | int test (int i, double x); | 2711 | int test (int i, double x); |
2077 | struct s1 {int (*f) (int a);}; | 2712 | struct s1 {int (*f) (int a);}; |
2078 | struct s2 {int (*f) (double a);}; | 2713 | struct s2 {int (*f) (double a);}; |
@@ -2087,289 +2722,895 @@ return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | |||
2087 | return 0; | 2722 | return 0; |
2088 | } | 2723 | } |
2089 | _ACEOF | 2724 | _ACEOF |
2090 | # Don't try gcc -ansi; that turns off useful extensions and | 2725 | for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ |
2091 | # breaks some systems' header files. | 2726 | -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" |
2092 | # AIX -qlanglvl=ansi | ||
2093 | # Ultrix and OSF/1 -std1 | ||
2094 | # HP-UX 10.20 and later -Ae | ||
2095 | # HP-UX older versions -Aa -D_HPUX_SOURCE | ||
2096 | # SVR4 -Xc -D__EXTENSIONS__ | ||
2097 | for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" | ||
2098 | do | 2727 | do |
2099 | CC="$ac_save_CC $ac_arg" | 2728 | CC="$ac_save_CC $ac_arg" |
2100 | rm -f conftest.$ac_objext | 2729 | rm -f conftest.$ac_objext |
2101 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 2730 | if { (ac_try="$ac_compile" |
2102 | (eval $ac_compile) 2>conftest.er1 | 2731 | case "(($ac_try" in |
2732 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
2733 | *) ac_try_echo=$ac_try;; | ||
2734 | esac | ||
2735 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2736 | (eval "$ac_compile") 2>conftest.er1 | ||
2103 | ac_status=$? | 2737 | ac_status=$? |
2104 | grep -v '^ *+' conftest.er1 >conftest.err | 2738 | grep -v '^ *+' conftest.er1 >conftest.err |
2105 | rm -f conftest.er1 | 2739 | rm -f conftest.er1 |
2106 | cat conftest.err >&5 | 2740 | cat conftest.err >&5 |
2107 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2741 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2108 | (exit $ac_status); } && | 2742 | (exit $ac_status); } && |
2109 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 2743 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2110 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2744 | { (case "(($ac_try" in |
2111 | (eval $ac_try) 2>&5 | 2745 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2746 | *) ac_try_echo=$ac_try;; | ||
2747 | esac | ||
2748 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2749 | (eval "$ac_try") 2>&5 | ||
2112 | ac_status=$? | 2750 | ac_status=$? |
2113 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2751 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2114 | (exit $ac_status); }; } && | 2752 | (exit $ac_status); }; } && |
2115 | { ac_try='test -s conftest.$ac_objext' | 2753 | { ac_try='test -s conftest.$ac_objext' |
2116 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2754 | { (case "(($ac_try" in |
2117 | (eval $ac_try) 2>&5 | 2755 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2756 | *) ac_try_echo=$ac_try;; | ||
2757 | esac | ||
2758 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2759 | (eval "$ac_try") 2>&5 | ||
2118 | ac_status=$? | 2760 | ac_status=$? |
2119 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2761 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2120 | (exit $ac_status); }; }; then | 2762 | (exit $ac_status); }; }; then |
2121 | ac_cv_prog_cc_stdc=$ac_arg | 2763 | ac_cv_prog_cc_c89=$ac_arg |
2122 | break | ||
2123 | else | 2764 | else |
2124 | echo "$as_me: failed program was:" >&5 | 2765 | echo "$as_me: failed program was:" >&5 |
2125 | sed 's/^/| /' conftest.$ac_ext >&5 | 2766 | sed 's/^/| /' conftest.$ac_ext >&5 |
2126 | 2767 | ||
2768 | |||
2127 | fi | 2769 | fi |
2128 | rm -f conftest.err conftest.$ac_objext | 2770 | |
2771 | rm -f core conftest.err conftest.$ac_objext | ||
2772 | test "x$ac_cv_prog_cc_c89" != "xno" && break | ||
2129 | done | 2773 | done |
2130 | rm -f conftest.$ac_ext conftest.$ac_objext | 2774 | rm -f conftest.$ac_ext |
2131 | CC=$ac_save_CC | 2775 | CC=$ac_save_CC |
2132 | 2776 | ||
2133 | fi | 2777 | fi |
2134 | 2778 | # AC_CACHE_VAL | |
2135 | case "x$ac_cv_prog_cc_stdc" in | 2779 | case "x$ac_cv_prog_cc_c89" in |
2136 | x|xno) | 2780 | x) |
2137 | echo "$as_me:$LINENO: result: none needed" >&5 | 2781 | { echo "$as_me:$LINENO: result: none needed" >&5 |
2138 | echo "${ECHO_T}none needed" >&6 ;; | 2782 | echo "${ECHO_T}none needed" >&6; } ;; |
2783 | xno) | ||
2784 | { echo "$as_me:$LINENO: result: unsupported" >&5 | ||
2785 | echo "${ECHO_T}unsupported" >&6; } ;; | ||
2139 | *) | 2786 | *) |
2140 | echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 | 2787 | CC="$CC $ac_cv_prog_cc_c89" |
2141 | echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 | 2788 | { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 |
2142 | CC="$CC $ac_cv_prog_cc_stdc" ;; | 2789 | echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; |
2143 | esac | 2790 | esac |
2144 | 2791 | ||
2145 | # Some people use a C++ compiler to compile C. Since we use `exit', | 2792 | |
2146 | # in C++ we need to declare it. In case someone uses the same compiler | 2793 | ac_ext=c |
2147 | # for both compiling C and C++ we need to have the C++ compiler decide | 2794 | ac_cpp='$CPP $CPPFLAGS' |
2148 | # the declaration of exit, since it's the most demanding environment. | 2795 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
2149 | cat >conftest.$ac_ext <<_ACEOF | 2796 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
2150 | #ifndef __cplusplus | 2797 | ac_compiler_gnu=$ac_cv_c_compiler_gnu |
2151 | choke me | 2798 | |
2799 | ac_aux_dir= | ||
2800 | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | ||
2801 | if test -f "$ac_dir/install-sh"; then | ||
2802 | ac_aux_dir=$ac_dir | ||
2803 | ac_install_sh="$ac_aux_dir/install-sh -c" | ||
2804 | break | ||
2805 | elif test -f "$ac_dir/install.sh"; then | ||
2806 | ac_aux_dir=$ac_dir | ||
2807 | ac_install_sh="$ac_aux_dir/install.sh -c" | ||
2808 | break | ||
2809 | elif test -f "$ac_dir/shtool"; then | ||
2810 | ac_aux_dir=$ac_dir | ||
2811 | ac_install_sh="$ac_aux_dir/shtool install -c" | ||
2812 | break | ||
2813 | fi | ||
2814 | done | ||
2815 | if test -z "$ac_aux_dir"; then | ||
2816 | { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 | ||
2817 | echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} | ||
2818 | { (exit 1); exit 1; }; } | ||
2819 | fi | ||
2820 | |||
2821 | # These three variables are undocumented and unsupported, | ||
2822 | # and are intended to be withdrawn in a future Autoconf release. | ||
2823 | # They can cause serious problems if a builder's source tree is in a directory | ||
2824 | # whose full name contains unusual characters. | ||
2825 | ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. | ||
2826 | ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. | ||
2827 | ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. | ||
2828 | |||
2829 | |||
2830 | # Make sure we can run config.sub. | ||
2831 | $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || | ||
2832 | { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 | ||
2833 | echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} | ||
2834 | { (exit 1); exit 1; }; } | ||
2835 | |||
2836 | { echo "$as_me:$LINENO: checking build system type" >&5 | ||
2837 | echo $ECHO_N "checking build system type... $ECHO_C" >&6; } | ||
2838 | if test "${ac_cv_build+set}" = set; then | ||
2839 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
2840 | else | ||
2841 | ac_build_alias=$build_alias | ||
2842 | test "x$ac_build_alias" = x && | ||
2843 | ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` | ||
2844 | test "x$ac_build_alias" = x && | ||
2845 | { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 | ||
2846 | echo "$as_me: error: cannot guess build type; you must specify one" >&2;} | ||
2847 | { (exit 1); exit 1; }; } | ||
2848 | ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || | ||
2849 | { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 | ||
2850 | echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} | ||
2851 | { (exit 1); exit 1; }; } | ||
2852 | |||
2853 | fi | ||
2854 | { echo "$as_me:$LINENO: result: $ac_cv_build" >&5 | ||
2855 | echo "${ECHO_T}$ac_cv_build" >&6; } | ||
2856 | case $ac_cv_build in | ||
2857 | *-*-*) ;; | ||
2858 | *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 | ||
2859 | echo "$as_me: error: invalid value of canonical build" >&2;} | ||
2860 | { (exit 1); exit 1; }; };; | ||
2861 | esac | ||
2862 | build=$ac_cv_build | ||
2863 | ac_save_IFS=$IFS; IFS='-' | ||
2864 | set x $ac_cv_build | ||
2865 | shift | ||
2866 | build_cpu=$1 | ||
2867 | build_vendor=$2 | ||
2868 | shift; shift | ||
2869 | # Remember, the first character of IFS is used to create $*, | ||
2870 | # except with old shells: | ||
2871 | build_os=$* | ||
2872 | IFS=$ac_save_IFS | ||
2873 | case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac | ||
2874 | |||
2875 | |||
2876 | { echo "$as_me:$LINENO: checking host system type" >&5 | ||
2877 | echo $ECHO_N "checking host system type... $ECHO_C" >&6; } | ||
2878 | if test "${ac_cv_host+set}" = set; then | ||
2879 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
2880 | else | ||
2881 | if test "x$host_alias" = x; then | ||
2882 | ac_cv_host=$ac_cv_build | ||
2883 | else | ||
2884 | ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || | ||
2885 | { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 | ||
2886 | echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} | ||
2887 | { (exit 1); exit 1; }; } | ||
2888 | fi | ||
2889 | |||
2890 | fi | ||
2891 | { echo "$as_me:$LINENO: result: $ac_cv_host" >&5 | ||
2892 | echo "${ECHO_T}$ac_cv_host" >&6; } | ||
2893 | case $ac_cv_host in | ||
2894 | *-*-*) ;; | ||
2895 | *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 | ||
2896 | echo "$as_me: error: invalid value of canonical host" >&2;} | ||
2897 | { (exit 1); exit 1; }; };; | ||
2898 | esac | ||
2899 | host=$ac_cv_host | ||
2900 | ac_save_IFS=$IFS; IFS='-' | ||
2901 | set x $ac_cv_host | ||
2902 | shift | ||
2903 | host_cpu=$1 | ||
2904 | host_vendor=$2 | ||
2905 | shift; shift | ||
2906 | # Remember, the first character of IFS is used to create $*, | ||
2907 | # except with old shells: | ||
2908 | host_os=$* | ||
2909 | IFS=$ac_save_IFS | ||
2910 | case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac | ||
2911 | |||
2912 | |||
2913 | |||
2914 | ac_ext=c | ||
2915 | ac_cpp='$CPP $CPPFLAGS' | ||
2916 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||
2917 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||
2918 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||
2919 | { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 | ||
2920 | echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } | ||
2921 | # On Suns, sometimes $CPP names a directory. | ||
2922 | if test -n "$CPP" && test -d "$CPP"; then | ||
2923 | CPP= | ||
2924 | fi | ||
2925 | if test -z "$CPP"; then | ||
2926 | if test "${ac_cv_prog_CPP+set}" = set; then | ||
2927 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
2928 | else | ||
2929 | # Double quotes because CPP needs to be expanded | ||
2930 | for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" | ||
2931 | do | ||
2932 | ac_preproc_ok=false | ||
2933 | for ac_c_preproc_warn_flag in '' yes | ||
2934 | do | ||
2935 | # Use a header file that comes with gcc, so configuring glibc | ||
2936 | # with a fresh cross-compiler works. | ||
2937 | # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | ||
2938 | # <limits.h> exists even on freestanding compilers. | ||
2939 | # On the NeXT, cc -E runs the code through the compiler's parser, | ||
2940 | # not just through cpp. "Syntax error" is here to catch this case. | ||
2941 | cat >conftest.$ac_ext <<_ACEOF | ||
2942 | /* confdefs.h. */ | ||
2943 | _ACEOF | ||
2944 | cat confdefs.h >>conftest.$ac_ext | ||
2945 | cat >>conftest.$ac_ext <<_ACEOF | ||
2946 | /* end confdefs.h. */ | ||
2947 | #ifdef __STDC__ | ||
2948 | # include <limits.h> | ||
2949 | #else | ||
2950 | # include <assert.h> | ||
2152 | #endif | 2951 | #endif |
2952 | Syntax error | ||
2153 | _ACEOF | 2953 | _ACEOF |
2154 | rm -f conftest.$ac_objext | 2954 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
2155 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 2955 | case "(($ac_try" in |
2156 | (eval $ac_compile) 2>conftest.er1 | 2956 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2957 | *) ac_try_echo=$ac_try;; | ||
2958 | esac | ||
2959 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
2960 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2157 | ac_status=$? | 2961 | ac_status=$? |
2158 | grep -v '^ *+' conftest.er1 >conftest.err | 2962 | grep -v '^ *+' conftest.er1 >conftest.err |
2159 | rm -f conftest.er1 | 2963 | rm -f conftest.er1 |
2160 | cat conftest.err >&5 | 2964 | cat conftest.err >&5 |
2161 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2965 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2162 | (exit $ac_status); } && | 2966 | (exit $ac_status); } >/dev/null; then |
2163 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 2967 | if test -s conftest.err; then |
2164 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2968 | ac_cpp_err=$ac_c_preproc_warn_flag |
2165 | (eval $ac_try) 2>&5 | 2969 | ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
2970 | else | ||
2971 | ac_cpp_err= | ||
2972 | fi | ||
2973 | else | ||
2974 | ac_cpp_err=yes | ||
2975 | fi | ||
2976 | if test -z "$ac_cpp_err"; then | ||
2977 | : | ||
2978 | else | ||
2979 | echo "$as_me: failed program was:" >&5 | ||
2980 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
2981 | |||
2982 | # Broken: fails on valid input. | ||
2983 | continue | ||
2984 | fi | ||
2985 | |||
2986 | rm -f conftest.err conftest.$ac_ext | ||
2987 | |||
2988 | # OK, works on sane cases. Now check whether nonexistent headers | ||
2989 | # can be detected and how. | ||
2990 | cat >conftest.$ac_ext <<_ACEOF | ||
2991 | /* confdefs.h. */ | ||
2992 | _ACEOF | ||
2993 | cat confdefs.h >>conftest.$ac_ext | ||
2994 | cat >>conftest.$ac_ext <<_ACEOF | ||
2995 | /* end confdefs.h. */ | ||
2996 | #include <ac_nonexistent.h> | ||
2997 | _ACEOF | ||
2998 | if { (ac_try="$ac_cpp conftest.$ac_ext" | ||
2999 | case "(($ac_try" in | ||
3000 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3001 | *) ac_try_echo=$ac_try;; | ||
3002 | esac | ||
3003 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3004 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2166 | ac_status=$? | 3005 | ac_status=$? |
3006 | grep -v '^ *+' conftest.er1 >conftest.err | ||
3007 | rm -f conftest.er1 | ||
3008 | cat conftest.err >&5 | ||
2167 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3009 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2168 | (exit $ac_status); }; } && | 3010 | (exit $ac_status); } >/dev/null; then |
2169 | { ac_try='test -s conftest.$ac_objext' | 3011 | if test -s conftest.err; then |
2170 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3012 | ac_cpp_err=$ac_c_preproc_warn_flag |
2171 | (eval $ac_try) 2>&5 | 3013 | ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
3014 | else | ||
3015 | ac_cpp_err= | ||
3016 | fi | ||
3017 | else | ||
3018 | ac_cpp_err=yes | ||
3019 | fi | ||
3020 | if test -z "$ac_cpp_err"; then | ||
3021 | # Broken: success on invalid input. | ||
3022 | continue | ||
3023 | else | ||
3024 | echo "$as_me: failed program was:" >&5 | ||
3025 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
3026 | |||
3027 | # Passes both tests. | ||
3028 | ac_preproc_ok=: | ||
3029 | break | ||
3030 | fi | ||
3031 | |||
3032 | rm -f conftest.err conftest.$ac_ext | ||
3033 | |||
3034 | done | ||
3035 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. | ||
3036 | rm -f conftest.err conftest.$ac_ext | ||
3037 | if $ac_preproc_ok; then | ||
3038 | break | ||
3039 | fi | ||
3040 | |||
3041 | done | ||
3042 | ac_cv_prog_CPP=$CPP | ||
3043 | |||
3044 | fi | ||
3045 | CPP=$ac_cv_prog_CPP | ||
3046 | else | ||
3047 | ac_cv_prog_CPP=$CPP | ||
3048 | fi | ||
3049 | { echo "$as_me:$LINENO: result: $CPP" >&5 | ||
3050 | echo "${ECHO_T}$CPP" >&6; } | ||
3051 | ac_preproc_ok=false | ||
3052 | for ac_c_preproc_warn_flag in '' yes | ||
3053 | do | ||
3054 | # Use a header file that comes with gcc, so configuring glibc | ||
3055 | # with a fresh cross-compiler works. | ||
3056 | # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | ||
3057 | # <limits.h> exists even on freestanding compilers. | ||
3058 | # On the NeXT, cc -E runs the code through the compiler's parser, | ||
3059 | # not just through cpp. "Syntax error" is here to catch this case. | ||
3060 | cat >conftest.$ac_ext <<_ACEOF | ||
3061 | /* confdefs.h. */ | ||
3062 | _ACEOF | ||
3063 | cat confdefs.h >>conftest.$ac_ext | ||
3064 | cat >>conftest.$ac_ext <<_ACEOF | ||
3065 | /* end confdefs.h. */ | ||
3066 | #ifdef __STDC__ | ||
3067 | # include <limits.h> | ||
3068 | #else | ||
3069 | # include <assert.h> | ||
3070 | #endif | ||
3071 | Syntax error | ||
3072 | _ACEOF | ||
3073 | if { (ac_try="$ac_cpp conftest.$ac_ext" | ||
3074 | case "(($ac_try" in | ||
3075 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3076 | *) ac_try_echo=$ac_try;; | ||
3077 | esac | ||
3078 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3079 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2172 | ac_status=$? | 3080 | ac_status=$? |
3081 | grep -v '^ *+' conftest.er1 >conftest.err | ||
3082 | rm -f conftest.er1 | ||
3083 | cat conftest.err >&5 | ||
2173 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3084 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2174 | (exit $ac_status); }; }; then | 3085 | (exit $ac_status); } >/dev/null; then |
2175 | for ac_declaration in \ | 3086 | if test -s conftest.err; then |
2176 | '' \ | 3087 | ac_cpp_err=$ac_c_preproc_warn_flag |
2177 | 'extern "C" void std::exit (int) throw (); using std::exit;' \ | 3088 | ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
2178 | 'extern "C" void std::exit (int); using std::exit;' \ | 3089 | else |
2179 | 'extern "C" void exit (int) throw ();' \ | 3090 | ac_cpp_err= |
2180 | 'extern "C" void exit (int);' \ | 3091 | fi |
2181 | 'void exit (int);' | 3092 | else |
3093 | ac_cpp_err=yes | ||
3094 | fi | ||
3095 | if test -z "$ac_cpp_err"; then | ||
3096 | : | ||
3097 | else | ||
3098 | echo "$as_me: failed program was:" >&5 | ||
3099 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
3100 | |||
3101 | # Broken: fails on valid input. | ||
3102 | continue | ||
3103 | fi | ||
3104 | |||
3105 | rm -f conftest.err conftest.$ac_ext | ||
3106 | |||
3107 | # OK, works on sane cases. Now check whether nonexistent headers | ||
3108 | # can be detected and how. | ||
3109 | cat >conftest.$ac_ext <<_ACEOF | ||
3110 | /* confdefs.h. */ | ||
3111 | _ACEOF | ||
3112 | cat confdefs.h >>conftest.$ac_ext | ||
3113 | cat >>conftest.$ac_ext <<_ACEOF | ||
3114 | /* end confdefs.h. */ | ||
3115 | #include <ac_nonexistent.h> | ||
3116 | _ACEOF | ||
3117 | if { (ac_try="$ac_cpp conftest.$ac_ext" | ||
3118 | case "(($ac_try" in | ||
3119 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3120 | *) ac_try_echo=$ac_try;; | ||
3121 | esac | ||
3122 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3123 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
3124 | ac_status=$? | ||
3125 | grep -v '^ *+' conftest.er1 >conftest.err | ||
3126 | rm -f conftest.er1 | ||
3127 | cat conftest.err >&5 | ||
3128 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
3129 | (exit $ac_status); } >/dev/null; then | ||
3130 | if test -s conftest.err; then | ||
3131 | ac_cpp_err=$ac_c_preproc_warn_flag | ||
3132 | ac_cpp_err=$ac_cpp_err$ac_c_werror_flag | ||
3133 | else | ||
3134 | ac_cpp_err= | ||
3135 | fi | ||
3136 | else | ||
3137 | ac_cpp_err=yes | ||
3138 | fi | ||
3139 | if test -z "$ac_cpp_err"; then | ||
3140 | # Broken: success on invalid input. | ||
3141 | continue | ||
3142 | else | ||
3143 | echo "$as_me: failed program was:" >&5 | ||
3144 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
3145 | |||
3146 | # Passes both tests. | ||
3147 | ac_preproc_ok=: | ||
3148 | break | ||
3149 | fi | ||
3150 | |||
3151 | rm -f conftest.err conftest.$ac_ext | ||
3152 | |||
3153 | done | ||
3154 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. | ||
3155 | rm -f conftest.err conftest.$ac_ext | ||
3156 | if $ac_preproc_ok; then | ||
3157 | : | ||
3158 | else | ||
3159 | { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check | ||
3160 | See \`config.log' for more details." >&5 | ||
3161 | echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check | ||
3162 | See \`config.log' for more details." >&2;} | ||
3163 | { (exit 1); exit 1; }; } | ||
3164 | fi | ||
3165 | |||
3166 | ac_ext=c | ||
3167 | ac_cpp='$CPP $CPPFLAGS' | ||
3168 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ||
3169 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | ||
3170 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||
3171 | |||
3172 | |||
3173 | { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 | ||
3174 | echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } | ||
3175 | if test "${ac_cv_path_GREP+set}" = set; then | ||
3176 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
3177 | else | ||
3178 | # Extract the first word of "grep ggrep" to use in msg output | ||
3179 | if test -z "$GREP"; then | ||
3180 | set dummy grep ggrep; ac_prog_name=$2 | ||
3181 | if test "${ac_cv_path_GREP+set}" = set; then | ||
3182 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
3183 | else | ||
3184 | ac_path_GREP_found=false | ||
3185 | # Loop through the user's path and test for each of PROGNAME-LIST | ||
3186 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
3187 | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin | ||
3188 | do | ||
3189 | IFS=$as_save_IFS | ||
3190 | test -z "$as_dir" && as_dir=. | ||
3191 | for ac_prog in grep ggrep; do | ||
3192 | for ac_exec_ext in '' $ac_executable_extensions; do | ||
3193 | ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" | ||
3194 | { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue | ||
3195 | # Check for GNU ac_path_GREP and select it if it is found. | ||
3196 | # Check for GNU $ac_path_GREP | ||
3197 | case `"$ac_path_GREP" --version 2>&1` in | ||
3198 | *GNU*) | ||
3199 | ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; | ||
3200 | *) | ||
3201 | ac_count=0 | ||
3202 | echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" | ||
3203 | while : | ||
3204 | do | ||
3205 | cat "conftest.in" "conftest.in" >"conftest.tmp" | ||
3206 | mv "conftest.tmp" "conftest.in" | ||
3207 | cp "conftest.in" "conftest.nl" | ||
3208 | echo 'GREP' >> "conftest.nl" | ||
3209 | "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break | ||
3210 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | ||
3211 | ac_count=`expr $ac_count + 1` | ||
3212 | if test $ac_count -gt ${ac_path_GREP_max-0}; then | ||
3213 | # Best one so far, save it but keep looking for a better one | ||
3214 | ac_cv_path_GREP="$ac_path_GREP" | ||
3215 | ac_path_GREP_max=$ac_count | ||
3216 | fi | ||
3217 | # 10*(2^10) chars as input seems more than enough | ||
3218 | test $ac_count -gt 10 && break | ||
3219 | done | ||
3220 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | ||
3221 | esac | ||
3222 | |||
3223 | |||
3224 | $ac_path_GREP_found && break 3 | ||
3225 | done | ||
3226 | done | ||
3227 | |||
3228 | done | ||
3229 | IFS=$as_save_IFS | ||
3230 | |||
3231 | |||
3232 | fi | ||
3233 | |||
3234 | GREP="$ac_cv_path_GREP" | ||
3235 | if test -z "$GREP"; then | ||
3236 | { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 | ||
3237 | echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} | ||
3238 | { (exit 1); exit 1; }; } | ||
3239 | fi | ||
3240 | |||
3241 | else | ||
3242 | ac_cv_path_GREP=$GREP | ||
3243 | fi | ||
3244 | |||
3245 | |||
3246 | fi | ||
3247 | { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 | ||
3248 | echo "${ECHO_T}$ac_cv_path_GREP" >&6; } | ||
3249 | GREP="$ac_cv_path_GREP" | ||
3250 | |||
3251 | |||
3252 | { echo "$as_me:$LINENO: checking for egrep" >&5 | ||
3253 | echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } | ||
3254 | if test "${ac_cv_path_EGREP+set}" = set; then | ||
3255 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
3256 | else | ||
3257 | if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 | ||
3258 | then ac_cv_path_EGREP="$GREP -E" | ||
3259 | else | ||
3260 | # Extract the first word of "egrep" to use in msg output | ||
3261 | if test -z "$EGREP"; then | ||
3262 | set dummy egrep; ac_prog_name=$2 | ||
3263 | if test "${ac_cv_path_EGREP+set}" = set; then | ||
3264 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
3265 | else | ||
3266 | ac_path_EGREP_found=false | ||
3267 | # Loop through the user's path and test for each of PROGNAME-LIST | ||
3268 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
3269 | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin | ||
2182 | do | 3270 | do |
3271 | IFS=$as_save_IFS | ||
3272 | test -z "$as_dir" && as_dir=. | ||
3273 | for ac_prog in egrep; do | ||
3274 | for ac_exec_ext in '' $ac_executable_extensions; do | ||
3275 | ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" | ||
3276 | { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue | ||
3277 | # Check for GNU ac_path_EGREP and select it if it is found. | ||
3278 | # Check for GNU $ac_path_EGREP | ||
3279 | case `"$ac_path_EGREP" --version 2>&1` in | ||
3280 | *GNU*) | ||
3281 | ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; | ||
3282 | *) | ||
3283 | ac_count=0 | ||
3284 | echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" | ||
3285 | while : | ||
3286 | do | ||
3287 | cat "conftest.in" "conftest.in" >"conftest.tmp" | ||
3288 | mv "conftest.tmp" "conftest.in" | ||
3289 | cp "conftest.in" "conftest.nl" | ||
3290 | echo 'EGREP' >> "conftest.nl" | ||
3291 | "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break | ||
3292 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | ||
3293 | ac_count=`expr $ac_count + 1` | ||
3294 | if test $ac_count -gt ${ac_path_EGREP_max-0}; then | ||
3295 | # Best one so far, save it but keep looking for a better one | ||
3296 | ac_cv_path_EGREP="$ac_path_EGREP" | ||
3297 | ac_path_EGREP_max=$ac_count | ||
3298 | fi | ||
3299 | # 10*(2^10) chars as input seems more than enough | ||
3300 | test $ac_count -gt 10 && break | ||
3301 | done | ||
3302 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | ||
3303 | esac | ||
3304 | |||
3305 | |||
3306 | $ac_path_EGREP_found && break 3 | ||
3307 | done | ||
3308 | done | ||
3309 | |||
3310 | done | ||
3311 | IFS=$as_save_IFS | ||
3312 | |||
3313 | |||
3314 | fi | ||
3315 | |||
3316 | EGREP="$ac_cv_path_EGREP" | ||
3317 | if test -z "$EGREP"; then | ||
3318 | { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 | ||
3319 | echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} | ||
3320 | { (exit 1); exit 1; }; } | ||
3321 | fi | ||
3322 | |||
3323 | else | ||
3324 | ac_cv_path_EGREP=$EGREP | ||
3325 | fi | ||
3326 | |||
3327 | |||
3328 | fi | ||
3329 | fi | ||
3330 | { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 | ||
3331 | echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } | ||
3332 | EGREP="$ac_cv_path_EGREP" | ||
3333 | |||
3334 | |||
3335 | { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 | ||
3336 | echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } | ||
3337 | if test "${ac_cv_header_stdc+set}" = set; then | ||
3338 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
3339 | else | ||
2183 | cat >conftest.$ac_ext <<_ACEOF | 3340 | cat >conftest.$ac_ext <<_ACEOF |
2184 | /* confdefs.h. */ | 3341 | /* confdefs.h. */ |
2185 | _ACEOF | 3342 | _ACEOF |
2186 | cat confdefs.h >>conftest.$ac_ext | 3343 | cat confdefs.h >>conftest.$ac_ext |
2187 | cat >>conftest.$ac_ext <<_ACEOF | 3344 | cat >>conftest.$ac_ext <<_ACEOF |
2188 | /* end confdefs.h. */ | 3345 | /* end confdefs.h. */ |
2189 | $ac_declaration | ||
2190 | #include <stdlib.h> | 3346 | #include <stdlib.h> |
3347 | #include <stdarg.h> | ||
3348 | #include <string.h> | ||
3349 | #include <float.h> | ||
3350 | |||
2191 | int | 3351 | int |
2192 | main () | 3352 | main () |
2193 | { | 3353 | { |
2194 | exit (42); | 3354 | |
2195 | ; | 3355 | ; |
2196 | return 0; | 3356 | return 0; |
2197 | } | 3357 | } |
2198 | _ACEOF | 3358 | _ACEOF |
2199 | rm -f conftest.$ac_objext | 3359 | rm -f conftest.$ac_objext |
2200 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 3360 | if { (ac_try="$ac_compile" |
2201 | (eval $ac_compile) 2>conftest.er1 | 3361 | case "(($ac_try" in |
3362 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3363 | *) ac_try_echo=$ac_try;; | ||
3364 | esac | ||
3365 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3366 | (eval "$ac_compile") 2>conftest.er1 | ||
2202 | ac_status=$? | 3367 | ac_status=$? |
2203 | grep -v '^ *+' conftest.er1 >conftest.err | 3368 | grep -v '^ *+' conftest.er1 >conftest.err |
2204 | rm -f conftest.er1 | 3369 | rm -f conftest.er1 |
2205 | cat conftest.err >&5 | 3370 | cat conftest.err >&5 |
2206 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3371 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2207 | (exit $ac_status); } && | 3372 | (exit $ac_status); } && |
2208 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 3373 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2209 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3374 | { (case "(($ac_try" in |
2210 | (eval $ac_try) 2>&5 | 3375 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3376 | *) ac_try_echo=$ac_try;; | ||
3377 | esac | ||
3378 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3379 | (eval "$ac_try") 2>&5 | ||
2211 | ac_status=$? | 3380 | ac_status=$? |
2212 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3381 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2213 | (exit $ac_status); }; } && | 3382 | (exit $ac_status); }; } && |
2214 | { ac_try='test -s conftest.$ac_objext' | 3383 | { ac_try='test -s conftest.$ac_objext' |
2215 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3384 | { (case "(($ac_try" in |
2216 | (eval $ac_try) 2>&5 | 3385 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3386 | *) ac_try_echo=$ac_try;; | ||
3387 | esac | ||
3388 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3389 | (eval "$ac_try") 2>&5 | ||
2217 | ac_status=$? | 3390 | ac_status=$? |
2218 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3391 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2219 | (exit $ac_status); }; }; then | 3392 | (exit $ac_status); }; }; then |
2220 | : | 3393 | ac_cv_header_stdc=yes |
2221 | else | 3394 | else |
2222 | echo "$as_me: failed program was:" >&5 | 3395 | echo "$as_me: failed program was:" >&5 |
2223 | sed 's/^/| /' conftest.$ac_ext >&5 | 3396 | sed 's/^/| /' conftest.$ac_ext >&5 |
2224 | 3397 | ||
2225 | continue | 3398 | ac_cv_header_stdc=no |
3399 | fi | ||
3400 | |||
3401 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
3402 | |||
3403 | if test $ac_cv_header_stdc = yes; then | ||
3404 | # SunOS 4.x string.h does not declare mem*, contrary to ANSI. | ||
3405 | cat >conftest.$ac_ext <<_ACEOF | ||
3406 | /* confdefs.h. */ | ||
3407 | _ACEOF | ||
3408 | cat confdefs.h >>conftest.$ac_ext | ||
3409 | cat >>conftest.$ac_ext <<_ACEOF | ||
3410 | /* end confdefs.h. */ | ||
3411 | #include <string.h> | ||
3412 | |||
3413 | _ACEOF | ||
3414 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | ||
3415 | $EGREP "memchr" >/dev/null 2>&1; then | ||
3416 | : | ||
3417 | else | ||
3418 | ac_cv_header_stdc=no | ||
3419 | fi | ||
3420 | rm -f conftest* | ||
3421 | |||
3422 | fi | ||
3423 | |||
3424 | if test $ac_cv_header_stdc = yes; then | ||
3425 | # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. | ||
3426 | cat >conftest.$ac_ext <<_ACEOF | ||
3427 | /* confdefs.h. */ | ||
3428 | _ACEOF | ||
3429 | cat confdefs.h >>conftest.$ac_ext | ||
3430 | cat >>conftest.$ac_ext <<_ACEOF | ||
3431 | /* end confdefs.h. */ | ||
3432 | #include <stdlib.h> | ||
3433 | |||
3434 | _ACEOF | ||
3435 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | ||
3436 | $EGREP "free" >/dev/null 2>&1; then | ||
3437 | : | ||
3438 | else | ||
3439 | ac_cv_header_stdc=no | ||
3440 | fi | ||
3441 | rm -f conftest* | ||
3442 | |||
2226 | fi | 3443 | fi |
2227 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 3444 | |
3445 | if test $ac_cv_header_stdc = yes; then | ||
3446 | # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. | ||
3447 | if test "$cross_compiling" = yes; then | ||
3448 | : | ||
3449 | else | ||
2228 | cat >conftest.$ac_ext <<_ACEOF | 3450 | cat >conftest.$ac_ext <<_ACEOF |
2229 | /* confdefs.h. */ | 3451 | /* confdefs.h. */ |
2230 | _ACEOF | 3452 | _ACEOF |
2231 | cat confdefs.h >>conftest.$ac_ext | 3453 | cat confdefs.h >>conftest.$ac_ext |
2232 | cat >>conftest.$ac_ext <<_ACEOF | 3454 | cat >>conftest.$ac_ext <<_ACEOF |
2233 | /* end confdefs.h. */ | 3455 | /* end confdefs.h. */ |
2234 | $ac_declaration | 3456 | #include <ctype.h> |
3457 | #include <stdlib.h> | ||
3458 | #if ((' ' & 0x0FF) == 0x020) | ||
3459 | # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') | ||
3460 | # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) | ||
3461 | #else | ||
3462 | # define ISLOWER(c) \ | ||
3463 | (('a' <= (c) && (c) <= 'i') \ | ||
3464 | || ('j' <= (c) && (c) <= 'r') \ | ||
3465 | || ('s' <= (c) && (c) <= 'z')) | ||
3466 | # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) | ||
3467 | #endif | ||
3468 | |||
3469 | #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) | ||
2235 | int | 3470 | int |
2236 | main () | 3471 | main () |
2237 | { | 3472 | { |
2238 | exit (42); | 3473 | int i; |
2239 | ; | 3474 | for (i = 0; i < 256; i++) |
3475 | if (XOR (islower (i), ISLOWER (i)) | ||
3476 | || toupper (i) != TOUPPER (i)) | ||
3477 | return 2; | ||
2240 | return 0; | 3478 | return 0; |
2241 | } | 3479 | } |
2242 | _ACEOF | 3480 | _ACEOF |
2243 | rm -f conftest.$ac_objext | 3481 | rm -f conftest$ac_exeext |
2244 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 3482 | if { (ac_try="$ac_link" |
2245 | (eval $ac_compile) 2>conftest.er1 | 3483 | case "(($ac_try" in |
2246 | ac_status=$? | 3484 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2247 | grep -v '^ *+' conftest.er1 >conftest.err | 3485 | *) ac_try_echo=$ac_try;; |
2248 | rm -f conftest.er1 | 3486 | esac |
2249 | cat conftest.err >&5 | 3487 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 |
2250 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3488 | (eval "$ac_link") 2>&5 |
2251 | (exit $ac_status); } && | ||
2252 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
2253 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
2254 | (eval $ac_try) 2>&5 | ||
2255 | ac_status=$? | 3489 | ac_status=$? |
2256 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3490 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2257 | (exit $ac_status); }; } && | 3491 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
2258 | { ac_try='test -s conftest.$ac_objext' | 3492 | { (case "(($ac_try" in |
2259 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3493 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
2260 | (eval $ac_try) 2>&5 | 3494 | *) ac_try_echo=$ac_try;; |
3495 | esac | ||
3496 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3497 | (eval "$ac_try") 2>&5 | ||
2261 | ac_status=$? | 3498 | ac_status=$? |
2262 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3499 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2263 | (exit $ac_status); }; }; then | 3500 | (exit $ac_status); }; }; then |
2264 | break | 3501 | : |
2265 | else | 3502 | else |
2266 | echo "$as_me: failed program was:" >&5 | 3503 | echo "$as_me: program exited with status $ac_status" >&5 |
3504 | echo "$as_me: failed program was:" >&5 | ||
2267 | sed 's/^/| /' conftest.$ac_ext >&5 | 3505 | sed 's/^/| /' conftest.$ac_ext >&5 |
2268 | 3506 | ||
3507 | ( exit $ac_status ) | ||
3508 | ac_cv_header_stdc=no | ||
2269 | fi | 3509 | fi |
2270 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 3510 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
2271 | done | ||
2272 | rm -f conftest* | ||
2273 | if test -n "$ac_declaration"; then | ||
2274 | echo '#ifdef __cplusplus' >>confdefs.h | ||
2275 | echo $ac_declaration >>confdefs.h | ||
2276 | echo '#endif' >>confdefs.h | ||
2277 | fi | 3511 | fi |
2278 | 3512 | ||
2279 | else | ||
2280 | echo "$as_me: failed program was:" >&5 | ||
2281 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
2282 | 3513 | ||
2283 | fi | 3514 | fi |
2284 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 3515 | fi |
2285 | ac_ext=c | 3516 | { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 |
2286 | ac_cpp='$CPP $CPPFLAGS' | 3517 | echo "${ECHO_T}$ac_cv_header_stdc" >&6; } |
2287 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | 3518 | if test $ac_cv_header_stdc = yes; then |
2288 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | 3519 | |
2289 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | 3520 | cat >>confdefs.h <<\_ACEOF |
3521 | #define STDC_HEADERS 1 | ||
3522 | _ACEOF | ||
2290 | 3523 | ||
2291 | ac_aux_dir= | ||
2292 | for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do | ||
2293 | if test -f $ac_dir/install-sh; then | ||
2294 | ac_aux_dir=$ac_dir | ||
2295 | ac_install_sh="$ac_aux_dir/install-sh -c" | ||
2296 | break | ||
2297 | elif test -f $ac_dir/install.sh; then | ||
2298 | ac_aux_dir=$ac_dir | ||
2299 | ac_install_sh="$ac_aux_dir/install.sh -c" | ||
2300 | break | ||
2301 | elif test -f $ac_dir/shtool; then | ||
2302 | ac_aux_dir=$ac_dir | ||
2303 | ac_install_sh="$ac_aux_dir/shtool install -c" | ||
2304 | break | ||
2305 | fi | ||
2306 | done | ||
2307 | if test -z "$ac_aux_dir"; then | ||
2308 | { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 | ||
2309 | echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} | ||
2310 | { (exit 1); exit 1; }; } | ||
2311 | fi | 3524 | fi |
2312 | ac_config_guess="$SHELL $ac_aux_dir/config.guess" | ||
2313 | ac_config_sub="$SHELL $ac_aux_dir/config.sub" | ||
2314 | ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. | ||
2315 | 3525 | ||
2316 | # Make sure we can run config.sub. | 3526 | # On IRIX 5.3, sys/types and inttypes.h are conflicting. |
2317 | $ac_config_sub sun4 >/dev/null 2>&1 || | ||
2318 | { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 | ||
2319 | echo "$as_me: error: cannot run $ac_config_sub" >&2;} | ||
2320 | { (exit 1); exit 1; }; } | ||
2321 | 3527 | ||
2322 | echo "$as_me:$LINENO: checking build system type" >&5 | ||
2323 | echo $ECHO_N "checking build system type... $ECHO_C" >&6 | ||
2324 | if test "${ac_cv_build+set}" = set; then | ||
2325 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
2326 | else | ||
2327 | ac_cv_build_alias=$build_alias | ||
2328 | test -z "$ac_cv_build_alias" && | ||
2329 | ac_cv_build_alias=`$ac_config_guess` | ||
2330 | test -z "$ac_cv_build_alias" && | ||
2331 | { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 | ||
2332 | echo "$as_me: error: cannot guess build type; you must specify one" >&2;} | ||
2333 | { (exit 1); exit 1; }; } | ||
2334 | ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || | ||
2335 | { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 | ||
2336 | echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} | ||
2337 | { (exit 1); exit 1; }; } | ||
2338 | 3528 | ||
2339 | fi | ||
2340 | echo "$as_me:$LINENO: result: $ac_cv_build" >&5 | ||
2341 | echo "${ECHO_T}$ac_cv_build" >&6 | ||
2342 | build=$ac_cv_build | ||
2343 | build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` | ||
2344 | build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` | ||
2345 | build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` | ||
2346 | 3529 | ||
2347 | 3530 | ||
2348 | echo "$as_me:$LINENO: checking host system type" >&5 | 3531 | |
2349 | echo $ECHO_N "checking host system type... $ECHO_C" >&6 | 3532 | |
2350 | if test "${ac_cv_host+set}" = set; then | 3533 | |
3534 | |||
3535 | |||
3536 | for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ | ||
3537 | inttypes.h stdint.h unistd.h | ||
3538 | do | ||
3539 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | ||
3540 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 | ||
3541 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } | ||
3542 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then | ||
2351 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 3543 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
2352 | else | 3544 | else |
2353 | ac_cv_host_alias=$host_alias | 3545 | cat >conftest.$ac_ext <<_ACEOF |
2354 | test -z "$ac_cv_host_alias" && | 3546 | /* confdefs.h. */ |
2355 | ac_cv_host_alias=$ac_cv_build_alias | 3547 | _ACEOF |
2356 | ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || | 3548 | cat confdefs.h >>conftest.$ac_ext |
2357 | { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 | 3549 | cat >>conftest.$ac_ext <<_ACEOF |
2358 | echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} | 3550 | /* end confdefs.h. */ |
2359 | { (exit 1); exit 1; }; } | 3551 | $ac_includes_default |
2360 | 3552 | ||
3553 | #include <$ac_header> | ||
3554 | _ACEOF | ||
3555 | rm -f conftest.$ac_objext | ||
3556 | if { (ac_try="$ac_compile" | ||
3557 | case "(($ac_try" in | ||
3558 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3559 | *) ac_try_echo=$ac_try;; | ||
3560 | esac | ||
3561 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3562 | (eval "$ac_compile") 2>conftest.er1 | ||
3563 | ac_status=$? | ||
3564 | grep -v '^ *+' conftest.er1 >conftest.err | ||
3565 | rm -f conftest.er1 | ||
3566 | cat conftest.err >&5 | ||
3567 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
3568 | (exit $ac_status); } && | ||
3569 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
3570 | { (case "(($ac_try" in | ||
3571 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3572 | *) ac_try_echo=$ac_try;; | ||
3573 | esac | ||
3574 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3575 | (eval "$ac_try") 2>&5 | ||
3576 | ac_status=$? | ||
3577 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
3578 | (exit $ac_status); }; } && | ||
3579 | { ac_try='test -s conftest.$ac_objext' | ||
3580 | { (case "(($ac_try" in | ||
3581 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3582 | *) ac_try_echo=$ac_try;; | ||
3583 | esac | ||
3584 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3585 | (eval "$ac_try") 2>&5 | ||
3586 | ac_status=$? | ||
3587 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
3588 | (exit $ac_status); }; }; then | ||
3589 | eval "$as_ac_Header=yes" | ||
3590 | else | ||
3591 | echo "$as_me: failed program was:" >&5 | ||
3592 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
3593 | |||
3594 | eval "$as_ac_Header=no" | ||
2361 | fi | 3595 | fi |
2362 | echo "$as_me:$LINENO: result: $ac_cv_host" >&5 | ||
2363 | echo "${ECHO_T}$ac_cv_host" >&6 | ||
2364 | host=$ac_cv_host | ||
2365 | host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` | ||
2366 | host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` | ||
2367 | host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` | ||
2368 | 3596 | ||
3597 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
3598 | fi | ||
3599 | ac_res=`eval echo '${'$as_ac_Header'}'` | ||
3600 | { echo "$as_me:$LINENO: result: $ac_res" >&5 | ||
3601 | echo "${ECHO_T}$ac_res" >&6; } | ||
3602 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | ||
3603 | cat >>confdefs.h <<_ACEOF | ||
3604 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 | ||
3605 | _ACEOF | ||
3606 | |||
3607 | fi | ||
3608 | |||
3609 | done | ||
2369 | 3610 | ||
2370 | 3611 | ||
2371 | echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 | 3612 | { echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 |
2372 | echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6 | 3613 | echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; } |
2373 | if test "${ac_cv_c_bigendian+set}" = set; then | 3614 | if test "${ac_cv_c_bigendian+set}" = set; then |
2374 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 3615 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
2375 | else | 3616 | else |
@@ -2386,7 +3627,8 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
2386 | int | 3627 | int |
2387 | main () | 3628 | main () |
2388 | { | 3629 | { |
2389 | #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN | 3630 | #if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \ |
3631 | && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN) | ||
2390 | bogus endian macros | 3632 | bogus endian macros |
2391 | #endif | 3633 | #endif |
2392 | 3634 | ||
@@ -2395,23 +3637,36 @@ main () | |||
2395 | } | 3637 | } |
2396 | _ACEOF | 3638 | _ACEOF |
2397 | rm -f conftest.$ac_objext | 3639 | rm -f conftest.$ac_objext |
2398 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 3640 | if { (ac_try="$ac_compile" |
2399 | (eval $ac_compile) 2>conftest.er1 | 3641 | case "(($ac_try" in |
3642 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3643 | *) ac_try_echo=$ac_try;; | ||
3644 | esac | ||
3645 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3646 | (eval "$ac_compile") 2>conftest.er1 | ||
2400 | ac_status=$? | 3647 | ac_status=$? |
2401 | grep -v '^ *+' conftest.er1 >conftest.err | 3648 | grep -v '^ *+' conftest.er1 >conftest.err |
2402 | rm -f conftest.er1 | 3649 | rm -f conftest.er1 |
2403 | cat conftest.err >&5 | 3650 | cat conftest.err >&5 |
2404 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3651 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2405 | (exit $ac_status); } && | 3652 | (exit $ac_status); } && |
2406 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 3653 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2407 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3654 | { (case "(($ac_try" in |
2408 | (eval $ac_try) 2>&5 | 3655 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3656 | *) ac_try_echo=$ac_try;; | ||
3657 | esac | ||
3658 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3659 | (eval "$ac_try") 2>&5 | ||
2409 | ac_status=$? | 3660 | ac_status=$? |
2410 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3661 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2411 | (exit $ac_status); }; } && | 3662 | (exit $ac_status); }; } && |
2412 | { ac_try='test -s conftest.$ac_objext' | 3663 | { ac_try='test -s conftest.$ac_objext' |
2413 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3664 | { (case "(($ac_try" in |
2414 | (eval $ac_try) 2>&5 | 3665 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3666 | *) ac_try_echo=$ac_try;; | ||
3667 | esac | ||
3668 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3669 | (eval "$ac_try") 2>&5 | ||
2415 | ac_status=$? | 3670 | ac_status=$? |
2416 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3671 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2417 | (exit $ac_status); }; }; then | 3672 | (exit $ac_status); }; }; then |
@@ -2437,23 +3692,36 @@ main () | |||
2437 | } | 3692 | } |
2438 | _ACEOF | 3693 | _ACEOF |
2439 | rm -f conftest.$ac_objext | 3694 | rm -f conftest.$ac_objext |
2440 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 3695 | if { (ac_try="$ac_compile" |
2441 | (eval $ac_compile) 2>conftest.er1 | 3696 | case "(($ac_try" in |
3697 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3698 | *) ac_try_echo=$ac_try;; | ||
3699 | esac | ||
3700 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3701 | (eval "$ac_compile") 2>conftest.er1 | ||
2442 | ac_status=$? | 3702 | ac_status=$? |
2443 | grep -v '^ *+' conftest.er1 >conftest.err | 3703 | grep -v '^ *+' conftest.er1 >conftest.err |
2444 | rm -f conftest.er1 | 3704 | rm -f conftest.er1 |
2445 | cat conftest.err >&5 | 3705 | cat conftest.err >&5 |
2446 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3706 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2447 | (exit $ac_status); } && | 3707 | (exit $ac_status); } && |
2448 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 3708 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2449 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3709 | { (case "(($ac_try" in |
2450 | (eval $ac_try) 2>&5 | 3710 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3711 | *) ac_try_echo=$ac_try;; | ||
3712 | esac | ||
3713 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3714 | (eval "$ac_try") 2>&5 | ||
2451 | ac_status=$? | 3715 | ac_status=$? |
2452 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3716 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2453 | (exit $ac_status); }; } && | 3717 | (exit $ac_status); }; } && |
2454 | { ac_try='test -s conftest.$ac_objext' | 3718 | { ac_try='test -s conftest.$ac_objext' |
2455 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3719 | { (case "(($ac_try" in |
2456 | (eval $ac_try) 2>&5 | 3720 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3721 | *) ac_try_echo=$ac_try;; | ||
3722 | esac | ||
3723 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3724 | (eval "$ac_try") 2>&5 | ||
2457 | ac_status=$? | 3725 | ac_status=$? |
2458 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3726 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2459 | (exit $ac_status); }; }; then | 3727 | (exit $ac_status); }; }; then |
@@ -2462,14 +3730,15 @@ else | |||
2462 | echo "$as_me: failed program was:" >&5 | 3730 | echo "$as_me: failed program was:" >&5 |
2463 | sed 's/^/| /' conftest.$ac_ext >&5 | 3731 | sed 's/^/| /' conftest.$ac_ext >&5 |
2464 | 3732 | ||
2465 | ac_cv_c_bigendian=no | 3733 | ac_cv_c_bigendian=no |
2466 | fi | 3734 | fi |
2467 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 3735 | |
3736 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
2468 | else | 3737 | else |
2469 | echo "$as_me: failed program was:" >&5 | 3738 | echo "$as_me: failed program was:" >&5 |
2470 | sed 's/^/| /' conftest.$ac_ext >&5 | 3739 | sed 's/^/| /' conftest.$ac_ext >&5 |
2471 | 3740 | ||
2472 | # It does not; compile a test program. | 3741 | # It does not; compile a test program. |
2473 | if test "$cross_compiling" = yes; then | 3742 | if test "$cross_compiling" = yes; then |
2474 | # try to guess the endianness by grepping values into an object file | 3743 | # try to guess the endianness by grepping values into an object file |
2475 | ac_cv_c_bigendian=unknown | 3744 | ac_cv_c_bigendian=unknown |
@@ -2479,11 +3748,11 @@ _ACEOF | |||
2479 | cat confdefs.h >>conftest.$ac_ext | 3748 | cat confdefs.h >>conftest.$ac_ext |
2480 | cat >>conftest.$ac_ext <<_ACEOF | 3749 | cat >>conftest.$ac_ext <<_ACEOF |
2481 | /* end confdefs.h. */ | 3750 | /* end confdefs.h. */ |
2482 | short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; | 3751 | short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; |
2483 | short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; | 3752 | short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; |
2484 | void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } | 3753 | void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } |
2485 | short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; | 3754 | short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; |
2486 | short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; | 3755 | short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; |
2487 | void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } | 3756 | void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } |
2488 | int | 3757 | int |
2489 | main () | 3758 | main () |
@@ -2494,23 +3763,36 @@ main () | |||
2494 | } | 3763 | } |
2495 | _ACEOF | 3764 | _ACEOF |
2496 | rm -f conftest.$ac_objext | 3765 | rm -f conftest.$ac_objext |
2497 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 3766 | if { (ac_try="$ac_compile" |
2498 | (eval $ac_compile) 2>conftest.er1 | 3767 | case "(($ac_try" in |
3768 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3769 | *) ac_try_echo=$ac_try;; | ||
3770 | esac | ||
3771 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3772 | (eval "$ac_compile") 2>conftest.er1 | ||
2499 | ac_status=$? | 3773 | ac_status=$? |
2500 | grep -v '^ *+' conftest.er1 >conftest.err | 3774 | grep -v '^ *+' conftest.er1 >conftest.err |
2501 | rm -f conftest.er1 | 3775 | rm -f conftest.er1 |
2502 | cat conftest.err >&5 | 3776 | cat conftest.err >&5 |
2503 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3777 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2504 | (exit $ac_status); } && | 3778 | (exit $ac_status); } && |
2505 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 3779 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2506 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3780 | { (case "(($ac_try" in |
2507 | (eval $ac_try) 2>&5 | 3781 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3782 | *) ac_try_echo=$ac_try;; | ||
3783 | esac | ||
3784 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3785 | (eval "$ac_try") 2>&5 | ||
2508 | ac_status=$? | 3786 | ac_status=$? |
2509 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3787 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2510 | (exit $ac_status); }; } && | 3788 | (exit $ac_status); }; } && |
2511 | { ac_try='test -s conftest.$ac_objext' | 3789 | { ac_try='test -s conftest.$ac_objext' |
2512 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3790 | { (case "(($ac_try" in |
2513 | (eval $ac_try) 2>&5 | 3791 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3792 | *) ac_try_echo=$ac_try;; | ||
3793 | esac | ||
3794 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3795 | (eval "$ac_try") 2>&5 | ||
2514 | ac_status=$? | 3796 | ac_status=$? |
2515 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3797 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2516 | (exit $ac_status); }; }; then | 3798 | (exit $ac_status); }; }; then |
@@ -2529,8 +3811,10 @@ else | |||
2529 | echo "$as_me: failed program was:" >&5 | 3811 | echo "$as_me: failed program was:" >&5 |
2530 | sed 's/^/| /' conftest.$ac_ext >&5 | 3812 | sed 's/^/| /' conftest.$ac_ext >&5 |
2531 | 3813 | ||
3814 | |||
2532 | fi | 3815 | fi |
2533 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 3816 | |
3817 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
2534 | else | 3818 | else |
2535 | cat >conftest.$ac_ext <<_ACEOF | 3819 | cat >conftest.$ac_ext <<_ACEOF |
2536 | /* confdefs.h. */ | 3820 | /* confdefs.h. */ |
@@ -2538,27 +3822,41 @@ _ACEOF | |||
2538 | cat confdefs.h >>conftest.$ac_ext | 3822 | cat confdefs.h >>conftest.$ac_ext |
2539 | cat >>conftest.$ac_ext <<_ACEOF | 3823 | cat >>conftest.$ac_ext <<_ACEOF |
2540 | /* end confdefs.h. */ | 3824 | /* end confdefs.h. */ |
3825 | $ac_includes_default | ||
2541 | int | 3826 | int |
2542 | main () | 3827 | main () |
2543 | { | 3828 | { |
3829 | |||
2544 | /* Are we little or big endian? From Harbison&Steele. */ | 3830 | /* Are we little or big endian? From Harbison&Steele. */ |
2545 | union | 3831 | union |
2546 | { | 3832 | { |
2547 | long l; | 3833 | long int l; |
2548 | char c[sizeof (long)]; | 3834 | char c[sizeof (long int)]; |
2549 | } u; | 3835 | } u; |
2550 | u.l = 1; | 3836 | u.l = 1; |
2551 | exit (u.c[sizeof (long) - 1] == 1); | 3837 | return u.c[sizeof (long int) - 1] == 1; |
3838 | |||
3839 | ; | ||
3840 | return 0; | ||
2552 | } | 3841 | } |
2553 | _ACEOF | 3842 | _ACEOF |
2554 | rm -f conftest$ac_exeext | 3843 | rm -f conftest$ac_exeext |
2555 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 3844 | if { (ac_try="$ac_link" |
2556 | (eval $ac_link) 2>&5 | 3845 | case "(($ac_try" in |
3846 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3847 | *) ac_try_echo=$ac_try;; | ||
3848 | esac | ||
3849 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3850 | (eval "$ac_link") 2>&5 | ||
2557 | ac_status=$? | 3851 | ac_status=$? |
2558 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3852 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2559 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 3853 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
2560 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3854 | { (case "(($ac_try" in |
2561 | (eval $ac_try) 2>&5 | 3855 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
3856 | *) ac_try_echo=$ac_try;; | ||
3857 | esac | ||
3858 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3859 | (eval "$ac_try") 2>&5 | ||
2562 | ac_status=$? | 3860 | ac_status=$? |
2563 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3861 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2564 | (exit $ac_status); }; }; then | 3862 | (exit $ac_status); }; }; then |
@@ -2571,13 +3869,16 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
2571 | ( exit $ac_status ) | 3869 | ( exit $ac_status ) |
2572 | ac_cv_c_bigendian=yes | 3870 | ac_cv_c_bigendian=yes |
2573 | fi | 3871 | fi |
2574 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 3872 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
2575 | fi | 3873 | fi |
3874 | |||
3875 | |||
2576 | fi | 3876 | fi |
2577 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 3877 | |
3878 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
2578 | fi | 3879 | fi |
2579 | echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 | 3880 | { echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 |
2580 | echo "${ECHO_T}$ac_cv_c_bigendian" >&6 | 3881 | echo "${ECHO_T}$ac_cv_c_bigendian" >&6; } |
2581 | case $ac_cv_c_bigendian in | 3882 | case $ac_cv_c_bigendian in |
2582 | yes) | 3883 | yes) |
2583 | 3884 | ||
@@ -2601,8 +3902,8 @@ for ac_prog in gawk mawk nawk awk | |||
2601 | do | 3902 | do |
2602 | # Extract the first word of "$ac_prog", so it can be a program name with args. | 3903 | # Extract the first word of "$ac_prog", so it can be a program name with args. |
2603 | set dummy $ac_prog; ac_word=$2 | 3904 | set dummy $ac_prog; ac_word=$2 |
2604 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 3905 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
2605 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 3906 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
2606 | if test "${ac_cv_prog_AWK+set}" = set; then | 3907 | if test "${ac_cv_prog_AWK+set}" = set; then |
2607 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 3908 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
2608 | else | 3909 | else |
@@ -2615,25 +3916,27 @@ do | |||
2615 | IFS=$as_save_IFS | 3916 | IFS=$as_save_IFS |
2616 | test -z "$as_dir" && as_dir=. | 3917 | test -z "$as_dir" && as_dir=. |
2617 | for ac_exec_ext in '' $ac_executable_extensions; do | 3918 | for ac_exec_ext in '' $ac_executable_extensions; do |
2618 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 3919 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
2619 | ac_cv_prog_AWK="$ac_prog" | 3920 | ac_cv_prog_AWK="$ac_prog" |
2620 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 3921 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
2621 | break 2 | 3922 | break 2 |
2622 | fi | 3923 | fi |
2623 | done | 3924 | done |
2624 | done | 3925 | done |
3926 | IFS=$as_save_IFS | ||
2625 | 3927 | ||
2626 | fi | 3928 | fi |
2627 | fi | 3929 | fi |
2628 | AWK=$ac_cv_prog_AWK | 3930 | AWK=$ac_cv_prog_AWK |
2629 | if test -n "$AWK"; then | 3931 | if test -n "$AWK"; then |
2630 | echo "$as_me:$LINENO: result: $AWK" >&5 | 3932 | { echo "$as_me:$LINENO: result: $AWK" >&5 |
2631 | echo "${ECHO_T}$AWK" >&6 | 3933 | echo "${ECHO_T}$AWK" >&6; } |
2632 | else | 3934 | else |
2633 | echo "$as_me:$LINENO: result: no" >&5 | 3935 | { echo "$as_me:$LINENO: result: no" >&5 |
2634 | echo "${ECHO_T}no" >&6 | 3936 | echo "${ECHO_T}no" >&6; } |
2635 | fi | 3937 | fi |
2636 | 3938 | ||
3939 | |||
2637 | test -n "$AWK" && break | 3940 | test -n "$AWK" && break |
2638 | done | 3941 | done |
2639 | 3942 | ||
@@ -2642,8 +3945,8 @@ ac_cpp='$CPP $CPPFLAGS' | |||
2642 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | 3945 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
2643 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | 3946 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
2644 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | 3947 | ac_compiler_gnu=$ac_cv_c_compiler_gnu |
2645 | echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 | 3948 | { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 |
2646 | echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 | 3949 | echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } |
2647 | # On Suns, sometimes $CPP names a directory. | 3950 | # On Suns, sometimes $CPP names a directory. |
2648 | if test -n "$CPP" && test -d "$CPP"; then | 3951 | if test -n "$CPP" && test -d "$CPP"; then |
2649 | CPP= | 3952 | CPP= |
@@ -2677,8 +3980,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
2677 | #endif | 3980 | #endif |
2678 | Syntax error | 3981 | Syntax error |
2679 | _ACEOF | 3982 | _ACEOF |
2680 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 3983 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
2681 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 3984 | case "(($ac_try" in |
3985 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
3986 | *) ac_try_echo=$ac_try;; | ||
3987 | esac | ||
3988 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
3989 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2682 | ac_status=$? | 3990 | ac_status=$? |
2683 | grep -v '^ *+' conftest.er1 >conftest.err | 3991 | grep -v '^ *+' conftest.er1 >conftest.err |
2684 | rm -f conftest.er1 | 3992 | rm -f conftest.er1 |
@@ -2703,9 +4011,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
2703 | # Broken: fails on valid input. | 4011 | # Broken: fails on valid input. |
2704 | continue | 4012 | continue |
2705 | fi | 4013 | fi |
4014 | |||
2706 | rm -f conftest.err conftest.$ac_ext | 4015 | rm -f conftest.err conftest.$ac_ext |
2707 | 4016 | ||
2708 | # OK, works on sane cases. Now check whether non-existent headers | 4017 | # OK, works on sane cases. Now check whether nonexistent headers |
2709 | # can be detected and how. | 4018 | # can be detected and how. |
2710 | cat >conftest.$ac_ext <<_ACEOF | 4019 | cat >conftest.$ac_ext <<_ACEOF |
2711 | /* confdefs.h. */ | 4020 | /* confdefs.h. */ |
@@ -2715,8 +4024,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
2715 | /* end confdefs.h. */ | 4024 | /* end confdefs.h. */ |
2716 | #include <ac_nonexistent.h> | 4025 | #include <ac_nonexistent.h> |
2717 | _ACEOF | 4026 | _ACEOF |
2718 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 4027 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
2719 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 4028 | case "(($ac_try" in |
4029 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
4030 | *) ac_try_echo=$ac_try;; | ||
4031 | esac | ||
4032 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
4033 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2720 | ac_status=$? | 4034 | ac_status=$? |
2721 | grep -v '^ *+' conftest.er1 >conftest.err | 4035 | grep -v '^ *+' conftest.er1 >conftest.err |
2722 | rm -f conftest.er1 | 4036 | rm -f conftest.er1 |
@@ -2743,6 +4057,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
2743 | ac_preproc_ok=: | 4057 | ac_preproc_ok=: |
2744 | break | 4058 | break |
2745 | fi | 4059 | fi |
4060 | |||
2746 | rm -f conftest.err conftest.$ac_ext | 4061 | rm -f conftest.err conftest.$ac_ext |
2747 | 4062 | ||
2748 | done | 4063 | done |
@@ -2760,8 +4075,8 @@ fi | |||
2760 | else | 4075 | else |
2761 | ac_cv_prog_CPP=$CPP | 4076 | ac_cv_prog_CPP=$CPP |
2762 | fi | 4077 | fi |
2763 | echo "$as_me:$LINENO: result: $CPP" >&5 | 4078 | { echo "$as_me:$LINENO: result: $CPP" >&5 |
2764 | echo "${ECHO_T}$CPP" >&6 | 4079 | echo "${ECHO_T}$CPP" >&6; } |
2765 | ac_preproc_ok=false | 4080 | ac_preproc_ok=false |
2766 | for ac_c_preproc_warn_flag in '' yes | 4081 | for ac_c_preproc_warn_flag in '' yes |
2767 | do | 4082 | do |
@@ -2784,8 +4099,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
2784 | #endif | 4099 | #endif |
2785 | Syntax error | 4100 | Syntax error |
2786 | _ACEOF | 4101 | _ACEOF |
2787 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 4102 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
2788 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 4103 | case "(($ac_try" in |
4104 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
4105 | *) ac_try_echo=$ac_try;; | ||
4106 | esac | ||
4107 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
4108 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2789 | ac_status=$? | 4109 | ac_status=$? |
2790 | grep -v '^ *+' conftest.er1 >conftest.err | 4110 | grep -v '^ *+' conftest.er1 >conftest.err |
2791 | rm -f conftest.er1 | 4111 | rm -f conftest.er1 |
@@ -2810,9 +4130,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
2810 | # Broken: fails on valid input. | 4130 | # Broken: fails on valid input. |
2811 | continue | 4131 | continue |
2812 | fi | 4132 | fi |
4133 | |||
2813 | rm -f conftest.err conftest.$ac_ext | 4134 | rm -f conftest.err conftest.$ac_ext |
2814 | 4135 | ||
2815 | # OK, works on sane cases. Now check whether non-existent headers | 4136 | # OK, works on sane cases. Now check whether nonexistent headers |
2816 | # can be detected and how. | 4137 | # can be detected and how. |
2817 | cat >conftest.$ac_ext <<_ACEOF | 4138 | cat >conftest.$ac_ext <<_ACEOF |
2818 | /* confdefs.h. */ | 4139 | /* confdefs.h. */ |
@@ -2822,8 +4143,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
2822 | /* end confdefs.h. */ | 4143 | /* end confdefs.h. */ |
2823 | #include <ac_nonexistent.h> | 4144 | #include <ac_nonexistent.h> |
2824 | _ACEOF | 4145 | _ACEOF |
2825 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 4146 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
2826 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 4147 | case "(($ac_try" in |
4148 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
4149 | *) ac_try_echo=$ac_try;; | ||
4150 | esac | ||
4151 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
4152 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
2827 | ac_status=$? | 4153 | ac_status=$? |
2828 | grep -v '^ *+' conftest.er1 >conftest.err | 4154 | grep -v '^ *+' conftest.er1 >conftest.err |
2829 | rm -f conftest.er1 | 4155 | rm -f conftest.er1 |
@@ -2850,6 +4176,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
2850 | ac_preproc_ok=: | 4176 | ac_preproc_ok=: |
2851 | break | 4177 | break |
2852 | fi | 4178 | fi |
4179 | |||
2853 | rm -f conftest.err conftest.$ac_ext | 4180 | rm -f conftest.err conftest.$ac_ext |
2854 | 4181 | ||
2855 | done | 4182 | done |
@@ -2874,8 +4201,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu | |||
2874 | if test -n "$ac_tool_prefix"; then | 4201 | if test -n "$ac_tool_prefix"; then |
2875 | # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. | 4202 | # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. |
2876 | set dummy ${ac_tool_prefix}ranlib; ac_word=$2 | 4203 | set dummy ${ac_tool_prefix}ranlib; ac_word=$2 |
2877 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4204 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
2878 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4205 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
2879 | if test "${ac_cv_prog_RANLIB+set}" = set; then | 4206 | if test "${ac_cv_prog_RANLIB+set}" = set; then |
2880 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4207 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
2881 | else | 4208 | else |
@@ -2888,32 +4215,34 @@ do | |||
2888 | IFS=$as_save_IFS | 4215 | IFS=$as_save_IFS |
2889 | test -z "$as_dir" && as_dir=. | 4216 | test -z "$as_dir" && as_dir=. |
2890 | for ac_exec_ext in '' $ac_executable_extensions; do | 4217 | for ac_exec_ext in '' $ac_executable_extensions; do |
2891 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4218 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
2892 | ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" | 4219 | ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" |
2893 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4220 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
2894 | break 2 | 4221 | break 2 |
2895 | fi | 4222 | fi |
2896 | done | 4223 | done |
2897 | done | 4224 | done |
4225 | IFS=$as_save_IFS | ||
2898 | 4226 | ||
2899 | fi | 4227 | fi |
2900 | fi | 4228 | fi |
2901 | RANLIB=$ac_cv_prog_RANLIB | 4229 | RANLIB=$ac_cv_prog_RANLIB |
2902 | if test -n "$RANLIB"; then | 4230 | if test -n "$RANLIB"; then |
2903 | echo "$as_me:$LINENO: result: $RANLIB" >&5 | 4231 | { echo "$as_me:$LINENO: result: $RANLIB" >&5 |
2904 | echo "${ECHO_T}$RANLIB" >&6 | 4232 | echo "${ECHO_T}$RANLIB" >&6; } |
2905 | else | 4233 | else |
2906 | echo "$as_me:$LINENO: result: no" >&5 | 4234 | { echo "$as_me:$LINENO: result: no" >&5 |
2907 | echo "${ECHO_T}no" >&6 | 4235 | echo "${ECHO_T}no" >&6; } |
2908 | fi | 4236 | fi |
2909 | 4237 | ||
4238 | |||
2910 | fi | 4239 | fi |
2911 | if test -z "$ac_cv_prog_RANLIB"; then | 4240 | if test -z "$ac_cv_prog_RANLIB"; then |
2912 | ac_ct_RANLIB=$RANLIB | 4241 | ac_ct_RANLIB=$RANLIB |
2913 | # Extract the first word of "ranlib", so it can be a program name with args. | 4242 | # Extract the first word of "ranlib", so it can be a program name with args. |
2914 | set dummy ranlib; ac_word=$2 | 4243 | set dummy ranlib; ac_word=$2 |
2915 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4244 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
2916 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4245 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
2917 | if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then | 4246 | if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then |
2918 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4247 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
2919 | else | 4248 | else |
@@ -2926,27 +4255,41 @@ do | |||
2926 | IFS=$as_save_IFS | 4255 | IFS=$as_save_IFS |
2927 | test -z "$as_dir" && as_dir=. | 4256 | test -z "$as_dir" && as_dir=. |
2928 | for ac_exec_ext in '' $ac_executable_extensions; do | 4257 | for ac_exec_ext in '' $ac_executable_extensions; do |
2929 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4258 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
2930 | ac_cv_prog_ac_ct_RANLIB="ranlib" | 4259 | ac_cv_prog_ac_ct_RANLIB="ranlib" |
2931 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4260 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
2932 | break 2 | 4261 | break 2 |
2933 | fi | 4262 | fi |
2934 | done | 4263 | done |
2935 | done | 4264 | done |
4265 | IFS=$as_save_IFS | ||
2936 | 4266 | ||
2937 | test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" | ||
2938 | fi | 4267 | fi |
2939 | fi | 4268 | fi |
2940 | ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB | 4269 | ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB |
2941 | if test -n "$ac_ct_RANLIB"; then | 4270 | if test -n "$ac_ct_RANLIB"; then |
2942 | echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 | 4271 | { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 |
2943 | echo "${ECHO_T}$ac_ct_RANLIB" >&6 | 4272 | echo "${ECHO_T}$ac_ct_RANLIB" >&6; } |
2944 | else | 4273 | else |
2945 | echo "$as_me:$LINENO: result: no" >&5 | 4274 | { echo "$as_me:$LINENO: result: no" >&5 |
2946 | echo "${ECHO_T}no" >&6 | 4275 | echo "${ECHO_T}no" >&6; } |
2947 | fi | 4276 | fi |
2948 | 4277 | ||
2949 | RANLIB=$ac_ct_RANLIB | 4278 | if test "x$ac_ct_RANLIB" = x; then |
4279 | RANLIB=":" | ||
4280 | else | ||
4281 | case $cross_compiling:$ac_tool_warned in | ||
4282 | yes:) | ||
4283 | { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools | ||
4284 | whose name does not start with the host triplet. If you think this | ||
4285 | configuration is useful to you, please write to autoconf@gnu.org." >&5 | ||
4286 | echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools | ||
4287 | whose name does not start with the host triplet. If you think this | ||
4288 | configuration is useful to you, please write to autoconf@gnu.org." >&2;} | ||
4289 | ac_tool_warned=yes ;; | ||
4290 | esac | ||
4291 | RANLIB=$ac_ct_RANLIB | ||
4292 | fi | ||
2950 | else | 4293 | else |
2951 | RANLIB="$ac_cv_prog_RANLIB" | 4294 | RANLIB="$ac_cv_prog_RANLIB" |
2952 | fi | 4295 | fi |
@@ -2964,8 +4307,8 @@ fi | |||
2964 | # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" | 4307 | # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" |
2965 | # OS/2's system install, which has a completely different semantic | 4308 | # OS/2's system install, which has a completely different semantic |
2966 | # ./install, which can be erroneously created by make from ./install.sh. | 4309 | # ./install, which can be erroneously created by make from ./install.sh. |
2967 | echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 | 4310 | { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 |
2968 | echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 | 4311 | echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } |
2969 | if test -z "$INSTALL"; then | 4312 | if test -z "$INSTALL"; then |
2970 | if test "${ac_cv_path_install+set}" = set; then | 4313 | if test "${ac_cv_path_install+set}" = set; then |
2971 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4314 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
@@ -2987,7 +4330,7 @@ case $as_dir/ in | |||
2987 | # by default. | 4330 | # by default. |
2988 | for ac_prog in ginstall scoinst install; do | 4331 | for ac_prog in ginstall scoinst install; do |
2989 | for ac_exec_ext in '' $ac_executable_extensions; do | 4332 | for ac_exec_ext in '' $ac_executable_extensions; do |
2990 | if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then | 4333 | if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then |
2991 | if test $ac_prog = install && | 4334 | if test $ac_prog = install && |
2992 | grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then | 4335 | grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then |
2993 | # AIX install. It has an incompatible calling convention. | 4336 | # AIX install. It has an incompatible calling convention. |
@@ -3006,21 +4349,22 @@ case $as_dir/ in | |||
3006 | ;; | 4349 | ;; |
3007 | esac | 4350 | esac |
3008 | done | 4351 | done |
4352 | IFS=$as_save_IFS | ||
3009 | 4353 | ||
3010 | 4354 | ||
3011 | fi | 4355 | fi |
3012 | if test "${ac_cv_path_install+set}" = set; then | 4356 | if test "${ac_cv_path_install+set}" = set; then |
3013 | INSTALL=$ac_cv_path_install | 4357 | INSTALL=$ac_cv_path_install |
3014 | else | 4358 | else |
3015 | # As a last resort, use the slow shell script. We don't cache a | 4359 | # As a last resort, use the slow shell script. Don't cache a |
3016 | # path for INSTALL within a source directory, because that will | 4360 | # value for INSTALL within a source directory, because that will |
3017 | # break other packages using the cache if that directory is | 4361 | # break other packages using the cache if that directory is |
3018 | # removed, or if the path is relative. | 4362 | # removed, or if the value is a relative name. |
3019 | INSTALL=$ac_install_sh | 4363 | INSTALL=$ac_install_sh |
3020 | fi | 4364 | fi |
3021 | fi | 4365 | fi |
3022 | echo "$as_me:$LINENO: result: $INSTALL" >&5 | 4366 | { echo "$as_me:$LINENO: result: $INSTALL" >&5 |
3023 | echo "${ECHO_T}$INSTALL" >&6 | 4367 | echo "${ECHO_T}$INSTALL" >&6; } |
3024 | 4368 | ||
3025 | # Use test -z because SunOS4 sh mishandles braces in ${var-val}. | 4369 | # Use test -z because SunOS4 sh mishandles braces in ${var-val}. |
3026 | # It thinks the first close brace ends the variable substitution. | 4370 | # It thinks the first close brace ends the variable substitution. |
@@ -3030,25 +4374,93 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' | |||
3030 | 4374 | ||
3031 | test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' | 4375 | test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' |
3032 | 4376 | ||
3033 | echo "$as_me:$LINENO: checking for egrep" >&5 | 4377 | { echo "$as_me:$LINENO: checking for egrep" >&5 |
3034 | echo $ECHO_N "checking for egrep... $ECHO_C" >&6 | 4378 | echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } |
3035 | if test "${ac_cv_prog_egrep+set}" = set; then | 4379 | if test "${ac_cv_path_EGREP+set}" = set; then |
4380 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
4381 | else | ||
4382 | if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 | ||
4383 | then ac_cv_path_EGREP="$GREP -E" | ||
4384 | else | ||
4385 | # Extract the first word of "egrep" to use in msg output | ||
4386 | if test -z "$EGREP"; then | ||
4387 | set dummy egrep; ac_prog_name=$2 | ||
4388 | if test "${ac_cv_path_EGREP+set}" = set; then | ||
3036 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4389 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3037 | else | 4390 | else |
3038 | if echo a | (grep -E '(a|b)') >/dev/null 2>&1 | 4391 | ac_path_EGREP_found=false |
3039 | then ac_cv_prog_egrep='grep -E' | 4392 | # Loop through the user's path and test for each of PROGNAME-LIST |
3040 | else ac_cv_prog_egrep='egrep' | 4393 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR |
4394 | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin | ||
4395 | do | ||
4396 | IFS=$as_save_IFS | ||
4397 | test -z "$as_dir" && as_dir=. | ||
4398 | for ac_prog in egrep; do | ||
4399 | for ac_exec_ext in '' $ac_executable_extensions; do | ||
4400 | ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" | ||
4401 | { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue | ||
4402 | # Check for GNU ac_path_EGREP and select it if it is found. | ||
4403 | # Check for GNU $ac_path_EGREP | ||
4404 | case `"$ac_path_EGREP" --version 2>&1` in | ||
4405 | *GNU*) | ||
4406 | ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; | ||
4407 | *) | ||
4408 | ac_count=0 | ||
4409 | echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" | ||
4410 | while : | ||
4411 | do | ||
4412 | cat "conftest.in" "conftest.in" >"conftest.tmp" | ||
4413 | mv "conftest.tmp" "conftest.in" | ||
4414 | cp "conftest.in" "conftest.nl" | ||
4415 | echo 'EGREP' >> "conftest.nl" | ||
4416 | "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break | ||
4417 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | ||
4418 | ac_count=`expr $ac_count + 1` | ||
4419 | if test $ac_count -gt ${ac_path_EGREP_max-0}; then | ||
4420 | # Best one so far, save it but keep looking for a better one | ||
4421 | ac_cv_path_EGREP="$ac_path_EGREP" | ||
4422 | ac_path_EGREP_max=$ac_count | ||
3041 | fi | 4423 | fi |
4424 | # 10*(2^10) chars as input seems more than enough | ||
4425 | test $ac_count -gt 10 && break | ||
4426 | done | ||
4427 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | ||
4428 | esac | ||
4429 | |||
4430 | |||
4431 | $ac_path_EGREP_found && break 3 | ||
4432 | done | ||
4433 | done | ||
4434 | |||
4435 | done | ||
4436 | IFS=$as_save_IFS | ||
4437 | |||
4438 | |||
4439 | fi | ||
4440 | |||
4441 | EGREP="$ac_cv_path_EGREP" | ||
4442 | if test -z "$EGREP"; then | ||
4443 | { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 | ||
4444 | echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} | ||
4445 | { (exit 1); exit 1; }; } | ||
4446 | fi | ||
4447 | |||
4448 | else | ||
4449 | ac_cv_path_EGREP=$EGREP | ||
4450 | fi | ||
4451 | |||
4452 | |||
4453 | fi | ||
3042 | fi | 4454 | fi |
3043 | echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 | 4455 | { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 |
3044 | echo "${ECHO_T}$ac_cv_prog_egrep" >&6 | 4456 | echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } |
3045 | EGREP=$ac_cv_prog_egrep | 4457 | EGREP="$ac_cv_path_EGREP" |
3046 | 4458 | ||
3047 | 4459 | ||
3048 | # Extract the first word of "ar", so it can be a program name with args. | 4460 | # Extract the first word of "ar", so it can be a program name with args. |
3049 | set dummy ar; ac_word=$2 | 4461 | set dummy ar; ac_word=$2 |
3050 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4462 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3051 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4463 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3052 | if test "${ac_cv_path_AR+set}" = set; then | 4464 | if test "${ac_cv_path_AR+set}" = set; then |
3053 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4465 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3054 | else | 4466 | else |
@@ -3063,31 +4475,32 @@ do | |||
3063 | IFS=$as_save_IFS | 4475 | IFS=$as_save_IFS |
3064 | test -z "$as_dir" && as_dir=. | 4476 | test -z "$as_dir" && as_dir=. |
3065 | for ac_exec_ext in '' $ac_executable_extensions; do | 4477 | for ac_exec_ext in '' $ac_executable_extensions; do |
3066 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4478 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3067 | ac_cv_path_AR="$as_dir/$ac_word$ac_exec_ext" | 4479 | ac_cv_path_AR="$as_dir/$ac_word$ac_exec_ext" |
3068 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4480 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3069 | break 2 | 4481 | break 2 |
3070 | fi | 4482 | fi |
3071 | done | 4483 | done |
3072 | done | 4484 | done |
4485 | IFS=$as_save_IFS | ||
3073 | 4486 | ||
3074 | ;; | 4487 | ;; |
3075 | esac | 4488 | esac |
3076 | fi | 4489 | fi |
3077 | AR=$ac_cv_path_AR | 4490 | AR=$ac_cv_path_AR |
3078 | |||
3079 | if test -n "$AR"; then | 4491 | if test -n "$AR"; then |
3080 | echo "$as_me:$LINENO: result: $AR" >&5 | 4492 | { echo "$as_me:$LINENO: result: $AR" >&5 |
3081 | echo "${ECHO_T}$AR" >&6 | 4493 | echo "${ECHO_T}$AR" >&6; } |
3082 | else | 4494 | else |
3083 | echo "$as_me:$LINENO: result: no" >&5 | 4495 | { echo "$as_me:$LINENO: result: no" >&5 |
3084 | echo "${ECHO_T}no" >&6 | 4496 | echo "${ECHO_T}no" >&6; } |
3085 | fi | 4497 | fi |
3086 | 4498 | ||
4499 | |||
3087 | # Extract the first word of "cat", so it can be a program name with args. | 4500 | # Extract the first word of "cat", so it can be a program name with args. |
3088 | set dummy cat; ac_word=$2 | 4501 | set dummy cat; ac_word=$2 |
3089 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4502 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3090 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4503 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3091 | if test "${ac_cv_path_CAT+set}" = set; then | 4504 | if test "${ac_cv_path_CAT+set}" = set; then |
3092 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4505 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3093 | else | 4506 | else |
@@ -3102,31 +4515,32 @@ do | |||
3102 | IFS=$as_save_IFS | 4515 | IFS=$as_save_IFS |
3103 | test -z "$as_dir" && as_dir=. | 4516 | test -z "$as_dir" && as_dir=. |
3104 | for ac_exec_ext in '' $ac_executable_extensions; do | 4517 | for ac_exec_ext in '' $ac_executable_extensions; do |
3105 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4518 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3106 | ac_cv_path_CAT="$as_dir/$ac_word$ac_exec_ext" | 4519 | ac_cv_path_CAT="$as_dir/$ac_word$ac_exec_ext" |
3107 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4520 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3108 | break 2 | 4521 | break 2 |
3109 | fi | 4522 | fi |
3110 | done | 4523 | done |
3111 | done | 4524 | done |
4525 | IFS=$as_save_IFS | ||
3112 | 4526 | ||
3113 | ;; | 4527 | ;; |
3114 | esac | 4528 | esac |
3115 | fi | 4529 | fi |
3116 | CAT=$ac_cv_path_CAT | 4530 | CAT=$ac_cv_path_CAT |
3117 | |||
3118 | if test -n "$CAT"; then | 4531 | if test -n "$CAT"; then |
3119 | echo "$as_me:$LINENO: result: $CAT" >&5 | 4532 | { echo "$as_me:$LINENO: result: $CAT" >&5 |
3120 | echo "${ECHO_T}$CAT" >&6 | 4533 | echo "${ECHO_T}$CAT" >&6; } |
3121 | else | 4534 | else |
3122 | echo "$as_me:$LINENO: result: no" >&5 | 4535 | { echo "$as_me:$LINENO: result: no" >&5 |
3123 | echo "${ECHO_T}no" >&6 | 4536 | echo "${ECHO_T}no" >&6; } |
3124 | fi | 4537 | fi |
3125 | 4538 | ||
4539 | |||
3126 | # Extract the first word of "kill", so it can be a program name with args. | 4540 | # Extract the first word of "kill", so it can be a program name with args. |
3127 | set dummy kill; ac_word=$2 | 4541 | set dummy kill; ac_word=$2 |
3128 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4542 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3129 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4543 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3130 | if test "${ac_cv_path_KILL+set}" = set; then | 4544 | if test "${ac_cv_path_KILL+set}" = set; then |
3131 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4545 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3132 | else | 4546 | else |
@@ -3141,33 +4555,34 @@ do | |||
3141 | IFS=$as_save_IFS | 4555 | IFS=$as_save_IFS |
3142 | test -z "$as_dir" && as_dir=. | 4556 | test -z "$as_dir" && as_dir=. |
3143 | for ac_exec_ext in '' $ac_executable_extensions; do | 4557 | for ac_exec_ext in '' $ac_executable_extensions; do |
3144 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4558 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3145 | ac_cv_path_KILL="$as_dir/$ac_word$ac_exec_ext" | 4559 | ac_cv_path_KILL="$as_dir/$ac_word$ac_exec_ext" |
3146 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4560 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3147 | break 2 | 4561 | break 2 |
3148 | fi | 4562 | fi |
3149 | done | 4563 | done |
3150 | done | 4564 | done |
4565 | IFS=$as_save_IFS | ||
3151 | 4566 | ||
3152 | ;; | 4567 | ;; |
3153 | esac | 4568 | esac |
3154 | fi | 4569 | fi |
3155 | KILL=$ac_cv_path_KILL | 4570 | KILL=$ac_cv_path_KILL |
3156 | |||
3157 | if test -n "$KILL"; then | 4571 | if test -n "$KILL"; then |
3158 | echo "$as_me:$LINENO: result: $KILL" >&5 | 4572 | { echo "$as_me:$LINENO: result: $KILL" >&5 |
3159 | echo "${ECHO_T}$KILL" >&6 | 4573 | echo "${ECHO_T}$KILL" >&6; } |
3160 | else | 4574 | else |
3161 | echo "$as_me:$LINENO: result: no" >&5 | 4575 | { echo "$as_me:$LINENO: result: no" >&5 |
3162 | echo "${ECHO_T}no" >&6 | 4576 | echo "${ECHO_T}no" >&6; } |
3163 | fi | 4577 | fi |
3164 | 4578 | ||
4579 | |||
3165 | for ac_prog in perl5 perl | 4580 | for ac_prog in perl5 perl |
3166 | do | 4581 | do |
3167 | # Extract the first word of "$ac_prog", so it can be a program name with args. | 4582 | # Extract the first word of "$ac_prog", so it can be a program name with args. |
3168 | set dummy $ac_prog; ac_word=$2 | 4583 | set dummy $ac_prog; ac_word=$2 |
3169 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4584 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3170 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4585 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3171 | if test "${ac_cv_path_PERL+set}" = set; then | 4586 | if test "${ac_cv_path_PERL+set}" = set; then |
3172 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4587 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3173 | else | 4588 | else |
@@ -3182,34 +4597,35 @@ do | |||
3182 | IFS=$as_save_IFS | 4597 | IFS=$as_save_IFS |
3183 | test -z "$as_dir" && as_dir=. | 4598 | test -z "$as_dir" && as_dir=. |
3184 | for ac_exec_ext in '' $ac_executable_extensions; do | 4599 | for ac_exec_ext in '' $ac_executable_extensions; do |
3185 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4600 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3186 | ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" | 4601 | ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" |
3187 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4602 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3188 | break 2 | 4603 | break 2 |
3189 | fi | 4604 | fi |
3190 | done | 4605 | done |
3191 | done | 4606 | done |
4607 | IFS=$as_save_IFS | ||
3192 | 4608 | ||
3193 | ;; | 4609 | ;; |
3194 | esac | 4610 | esac |
3195 | fi | 4611 | fi |
3196 | PERL=$ac_cv_path_PERL | 4612 | PERL=$ac_cv_path_PERL |
3197 | |||
3198 | if test -n "$PERL"; then | 4613 | if test -n "$PERL"; then |
3199 | echo "$as_me:$LINENO: result: $PERL" >&5 | 4614 | { echo "$as_me:$LINENO: result: $PERL" >&5 |
3200 | echo "${ECHO_T}$PERL" >&6 | 4615 | echo "${ECHO_T}$PERL" >&6; } |
3201 | else | 4616 | else |
3202 | echo "$as_me:$LINENO: result: no" >&5 | 4617 | { echo "$as_me:$LINENO: result: no" >&5 |
3203 | echo "${ECHO_T}no" >&6 | 4618 | echo "${ECHO_T}no" >&6; } |
3204 | fi | 4619 | fi |
3205 | 4620 | ||
4621 | |||
3206 | test -n "$PERL" && break | 4622 | test -n "$PERL" && break |
3207 | done | 4623 | done |
3208 | 4624 | ||
3209 | # Extract the first word of "sed", so it can be a program name with args. | 4625 | # Extract the first word of "sed", so it can be a program name with args. |
3210 | set dummy sed; ac_word=$2 | 4626 | set dummy sed; ac_word=$2 |
3211 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4627 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3212 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4628 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3213 | if test "${ac_cv_path_SED+set}" = set; then | 4629 | if test "${ac_cv_path_SED+set}" = set; then |
3214 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4630 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3215 | else | 4631 | else |
@@ -3224,32 +4640,33 @@ do | |||
3224 | IFS=$as_save_IFS | 4640 | IFS=$as_save_IFS |
3225 | test -z "$as_dir" && as_dir=. | 4641 | test -z "$as_dir" && as_dir=. |
3226 | for ac_exec_ext in '' $ac_executable_extensions; do | 4642 | for ac_exec_ext in '' $ac_executable_extensions; do |
3227 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4643 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3228 | ac_cv_path_SED="$as_dir/$ac_word$ac_exec_ext" | 4644 | ac_cv_path_SED="$as_dir/$ac_word$ac_exec_ext" |
3229 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4645 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3230 | break 2 | 4646 | break 2 |
3231 | fi | 4647 | fi |
3232 | done | 4648 | done |
3233 | done | 4649 | done |
4650 | IFS=$as_save_IFS | ||
3234 | 4651 | ||
3235 | ;; | 4652 | ;; |
3236 | esac | 4653 | esac |
3237 | fi | 4654 | fi |
3238 | SED=$ac_cv_path_SED | 4655 | SED=$ac_cv_path_SED |
3239 | |||
3240 | if test -n "$SED"; then | 4656 | if test -n "$SED"; then |
3241 | echo "$as_me:$LINENO: result: $SED" >&5 | 4657 | { echo "$as_me:$LINENO: result: $SED" >&5 |
3242 | echo "${ECHO_T}$SED" >&6 | 4658 | echo "${ECHO_T}$SED" >&6; } |
3243 | else | 4659 | else |
3244 | echo "$as_me:$LINENO: result: no" >&5 | 4660 | { echo "$as_me:$LINENO: result: no" >&5 |
3245 | echo "${ECHO_T}no" >&6 | 4661 | echo "${ECHO_T}no" >&6; } |
3246 | fi | 4662 | fi |
3247 | 4663 | ||
3248 | 4664 | ||
4665 | |||
3249 | # Extract the first word of "ent", so it can be a program name with args. | 4666 | # Extract the first word of "ent", so it can be a program name with args. |
3250 | set dummy ent; ac_word=$2 | 4667 | set dummy ent; ac_word=$2 |
3251 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4668 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3252 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4669 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3253 | if test "${ac_cv_path_ENT+set}" = set; then | 4670 | if test "${ac_cv_path_ENT+set}" = set; then |
3254 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4671 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3255 | else | 4672 | else |
@@ -3264,32 +4681,33 @@ do | |||
3264 | IFS=$as_save_IFS | 4681 | IFS=$as_save_IFS |
3265 | test -z "$as_dir" && as_dir=. | 4682 | test -z "$as_dir" && as_dir=. |
3266 | for ac_exec_ext in '' $ac_executable_extensions; do | 4683 | for ac_exec_ext in '' $ac_executable_extensions; do |
3267 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4684 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3268 | ac_cv_path_ENT="$as_dir/$ac_word$ac_exec_ext" | 4685 | ac_cv_path_ENT="$as_dir/$ac_word$ac_exec_ext" |
3269 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4686 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3270 | break 2 | 4687 | break 2 |
3271 | fi | 4688 | fi |
3272 | done | 4689 | done |
3273 | done | 4690 | done |
4691 | IFS=$as_save_IFS | ||
3274 | 4692 | ||
3275 | ;; | 4693 | ;; |
3276 | esac | 4694 | esac |
3277 | fi | 4695 | fi |
3278 | ENT=$ac_cv_path_ENT | 4696 | ENT=$ac_cv_path_ENT |
3279 | |||
3280 | if test -n "$ENT"; then | 4697 | if test -n "$ENT"; then |
3281 | echo "$as_me:$LINENO: result: $ENT" >&5 | 4698 | { echo "$as_me:$LINENO: result: $ENT" >&5 |
3282 | echo "${ECHO_T}$ENT" >&6 | 4699 | echo "${ECHO_T}$ENT" >&6; } |
3283 | else | 4700 | else |
3284 | echo "$as_me:$LINENO: result: no" >&5 | 4701 | { echo "$as_me:$LINENO: result: no" >&5 |
3285 | echo "${ECHO_T}no" >&6 | 4702 | echo "${ECHO_T}no" >&6; } |
3286 | fi | 4703 | fi |
3287 | 4704 | ||
3288 | 4705 | ||
4706 | |||
3289 | # Extract the first word of "bash", so it can be a program name with args. | 4707 | # Extract the first word of "bash", so it can be a program name with args. |
3290 | set dummy bash; ac_word=$2 | 4708 | set dummy bash; ac_word=$2 |
3291 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4709 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3292 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4710 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3293 | if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then | 4711 | if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then |
3294 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4712 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3295 | else | 4713 | else |
@@ -3304,31 +4722,32 @@ do | |||
3304 | IFS=$as_save_IFS | 4722 | IFS=$as_save_IFS |
3305 | test -z "$as_dir" && as_dir=. | 4723 | test -z "$as_dir" && as_dir=. |
3306 | for ac_exec_ext in '' $ac_executable_extensions; do | 4724 | for ac_exec_ext in '' $ac_executable_extensions; do |
3307 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4725 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3308 | ac_cv_path_TEST_MINUS_S_SH="$as_dir/$ac_word$ac_exec_ext" | 4726 | ac_cv_path_TEST_MINUS_S_SH="$as_dir/$ac_word$ac_exec_ext" |
3309 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4727 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3310 | break 2 | 4728 | break 2 |
3311 | fi | 4729 | fi |
3312 | done | 4730 | done |
3313 | done | 4731 | done |
4732 | IFS=$as_save_IFS | ||
3314 | 4733 | ||
3315 | ;; | 4734 | ;; |
3316 | esac | 4735 | esac |
3317 | fi | 4736 | fi |
3318 | TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH | 4737 | TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH |
3319 | |||
3320 | if test -n "$TEST_MINUS_S_SH"; then | 4738 | if test -n "$TEST_MINUS_S_SH"; then |
3321 | echo "$as_me:$LINENO: result: $TEST_MINUS_S_SH" >&5 | 4739 | { echo "$as_me:$LINENO: result: $TEST_MINUS_S_SH" >&5 |
3322 | echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 | 4740 | echo "${ECHO_T}$TEST_MINUS_S_SH" >&6; } |
3323 | else | 4741 | else |
3324 | echo "$as_me:$LINENO: result: no" >&5 | 4742 | { echo "$as_me:$LINENO: result: no" >&5 |
3325 | echo "${ECHO_T}no" >&6 | 4743 | echo "${ECHO_T}no" >&6; } |
3326 | fi | 4744 | fi |
3327 | 4745 | ||
4746 | |||
3328 | # Extract the first word of "ksh", so it can be a program name with args. | 4747 | # Extract the first word of "ksh", so it can be a program name with args. |
3329 | set dummy ksh; ac_word=$2 | 4748 | set dummy ksh; ac_word=$2 |
3330 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4749 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3331 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4750 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3332 | if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then | 4751 | if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then |
3333 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4752 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3334 | else | 4753 | else |
@@ -3343,31 +4762,32 @@ do | |||
3343 | IFS=$as_save_IFS | 4762 | IFS=$as_save_IFS |
3344 | test -z "$as_dir" && as_dir=. | 4763 | test -z "$as_dir" && as_dir=. |
3345 | for ac_exec_ext in '' $ac_executable_extensions; do | 4764 | for ac_exec_ext in '' $ac_executable_extensions; do |
3346 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4765 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3347 | ac_cv_path_TEST_MINUS_S_SH="$as_dir/$ac_word$ac_exec_ext" | 4766 | ac_cv_path_TEST_MINUS_S_SH="$as_dir/$ac_word$ac_exec_ext" |
3348 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4767 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3349 | break 2 | 4768 | break 2 |
3350 | fi | 4769 | fi |
3351 | done | 4770 | done |
3352 | done | 4771 | done |
4772 | IFS=$as_save_IFS | ||
3353 | 4773 | ||
3354 | ;; | 4774 | ;; |
3355 | esac | 4775 | esac |
3356 | fi | 4776 | fi |
3357 | TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH | 4777 | TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH |
3358 | |||
3359 | if test -n "$TEST_MINUS_S_SH"; then | 4778 | if test -n "$TEST_MINUS_S_SH"; then |
3360 | echo "$as_me:$LINENO: result: $TEST_MINUS_S_SH" >&5 | 4779 | { echo "$as_me:$LINENO: result: $TEST_MINUS_S_SH" >&5 |
3361 | echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 | 4780 | echo "${ECHO_T}$TEST_MINUS_S_SH" >&6; } |
3362 | else | 4781 | else |
3363 | echo "$as_me:$LINENO: result: no" >&5 | 4782 | { echo "$as_me:$LINENO: result: no" >&5 |
3364 | echo "${ECHO_T}no" >&6 | 4783 | echo "${ECHO_T}no" >&6; } |
3365 | fi | 4784 | fi |
3366 | 4785 | ||
4786 | |||
3367 | # Extract the first word of "sh", so it can be a program name with args. | 4787 | # Extract the first word of "sh", so it can be a program name with args. |
3368 | set dummy sh; ac_word=$2 | 4788 | set dummy sh; ac_word=$2 |
3369 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4789 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3370 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4790 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3371 | if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then | 4791 | if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then |
3372 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4792 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3373 | else | 4793 | else |
@@ -3382,31 +4802,32 @@ do | |||
3382 | IFS=$as_save_IFS | 4802 | IFS=$as_save_IFS |
3383 | test -z "$as_dir" && as_dir=. | 4803 | test -z "$as_dir" && as_dir=. |
3384 | for ac_exec_ext in '' $ac_executable_extensions; do | 4804 | for ac_exec_ext in '' $ac_executable_extensions; do |
3385 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4805 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3386 | ac_cv_path_TEST_MINUS_S_SH="$as_dir/$ac_word$ac_exec_ext" | 4806 | ac_cv_path_TEST_MINUS_S_SH="$as_dir/$ac_word$ac_exec_ext" |
3387 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4807 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3388 | break 2 | 4808 | break 2 |
3389 | fi | 4809 | fi |
3390 | done | 4810 | done |
3391 | done | 4811 | done |
4812 | IFS=$as_save_IFS | ||
3392 | 4813 | ||
3393 | ;; | 4814 | ;; |
3394 | esac | 4815 | esac |
3395 | fi | 4816 | fi |
3396 | TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH | 4817 | TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH |
3397 | |||
3398 | if test -n "$TEST_MINUS_S_SH"; then | 4818 | if test -n "$TEST_MINUS_S_SH"; then |
3399 | echo "$as_me:$LINENO: result: $TEST_MINUS_S_SH" >&5 | 4819 | { echo "$as_me:$LINENO: result: $TEST_MINUS_S_SH" >&5 |
3400 | echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 | 4820 | echo "${ECHO_T}$TEST_MINUS_S_SH" >&6; } |
3401 | else | 4821 | else |
3402 | echo "$as_me:$LINENO: result: no" >&5 | 4822 | { echo "$as_me:$LINENO: result: no" >&5 |
3403 | echo "${ECHO_T}no" >&6 | 4823 | echo "${ECHO_T}no" >&6; } |
3404 | fi | 4824 | fi |
3405 | 4825 | ||
4826 | |||
3406 | # Extract the first word of "sh", so it can be a program name with args. | 4827 | # Extract the first word of "sh", so it can be a program name with args. |
3407 | set dummy sh; ac_word=$2 | 4828 | set dummy sh; ac_word=$2 |
3408 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4829 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3409 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4830 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3410 | if test "${ac_cv_path_SH+set}" = set; then | 4831 | if test "${ac_cv_path_SH+set}" = set; then |
3411 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4832 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3412 | else | 4833 | else |
@@ -3421,34 +4842,35 @@ do | |||
3421 | IFS=$as_save_IFS | 4842 | IFS=$as_save_IFS |
3422 | test -z "$as_dir" && as_dir=. | 4843 | test -z "$as_dir" && as_dir=. |
3423 | for ac_exec_ext in '' $ac_executable_extensions; do | 4844 | for ac_exec_ext in '' $ac_executable_extensions; do |
3424 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4845 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3425 | ac_cv_path_SH="$as_dir/$ac_word$ac_exec_ext" | 4846 | ac_cv_path_SH="$as_dir/$ac_word$ac_exec_ext" |
3426 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4847 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3427 | break 2 | 4848 | break 2 |
3428 | fi | 4849 | fi |
3429 | done | 4850 | done |
3430 | done | 4851 | done |
4852 | IFS=$as_save_IFS | ||
3431 | 4853 | ||
3432 | ;; | 4854 | ;; |
3433 | esac | 4855 | esac |
3434 | fi | 4856 | fi |
3435 | SH=$ac_cv_path_SH | 4857 | SH=$ac_cv_path_SH |
3436 | |||
3437 | if test -n "$SH"; then | 4858 | if test -n "$SH"; then |
3438 | echo "$as_me:$LINENO: result: $SH" >&5 | 4859 | { echo "$as_me:$LINENO: result: $SH" >&5 |
3439 | echo "${ECHO_T}$SH" >&6 | 4860 | echo "${ECHO_T}$SH" >&6; } |
3440 | else | 4861 | else |
3441 | echo "$as_me:$LINENO: result: no" >&5 | 4862 | { echo "$as_me:$LINENO: result: no" >&5 |
3442 | echo "${ECHO_T}no" >&6 | 4863 | echo "${ECHO_T}no" >&6; } |
3443 | fi | 4864 | fi |
3444 | 4865 | ||
4866 | |||
3445 | TEST_SHELL=sh | 4867 | TEST_SHELL=sh |
3446 | 4868 | ||
3447 | 4869 | ||
3448 | # Extract the first word of "groupadd", so it can be a program name with args. | 4870 | # Extract the first word of "groupadd", so it can be a program name with args. |
3449 | set dummy groupadd; ac_word=$2 | 4871 | set dummy groupadd; ac_word=$2 |
3450 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4872 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3451 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4873 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3452 | if test "${ac_cv_path_PATH_GROUPADD_PROG+set}" = set; then | 4874 | if test "${ac_cv_path_PATH_GROUPADD_PROG+set}" = set; then |
3453 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4875 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3454 | else | 4876 | else |
@@ -3463,32 +4885,33 @@ do | |||
3463 | IFS=$as_save_IFS | 4885 | IFS=$as_save_IFS |
3464 | test -z "$as_dir" && as_dir=. | 4886 | test -z "$as_dir" && as_dir=. |
3465 | for ac_exec_ext in '' $ac_executable_extensions; do | 4887 | for ac_exec_ext in '' $ac_executable_extensions; do |
3466 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4888 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3467 | ac_cv_path_PATH_GROUPADD_PROG="$as_dir/$ac_word$ac_exec_ext" | 4889 | ac_cv_path_PATH_GROUPADD_PROG="$as_dir/$ac_word$ac_exec_ext" |
3468 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4890 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3469 | break 2 | 4891 | break 2 |
3470 | fi | 4892 | fi |
3471 | done | 4893 | done |
3472 | done | 4894 | done |
4895 | IFS=$as_save_IFS | ||
3473 | 4896 | ||
3474 | test -z "$ac_cv_path_PATH_GROUPADD_PROG" && ac_cv_path_PATH_GROUPADD_PROG="groupadd" | 4897 | test -z "$ac_cv_path_PATH_GROUPADD_PROG" && ac_cv_path_PATH_GROUPADD_PROG="groupadd" |
3475 | ;; | 4898 | ;; |
3476 | esac | 4899 | esac |
3477 | fi | 4900 | fi |
3478 | PATH_GROUPADD_PROG=$ac_cv_path_PATH_GROUPADD_PROG | 4901 | PATH_GROUPADD_PROG=$ac_cv_path_PATH_GROUPADD_PROG |
3479 | |||
3480 | if test -n "$PATH_GROUPADD_PROG"; then | 4902 | if test -n "$PATH_GROUPADD_PROG"; then |
3481 | echo "$as_me:$LINENO: result: $PATH_GROUPADD_PROG" >&5 | 4903 | { echo "$as_me:$LINENO: result: $PATH_GROUPADD_PROG" >&5 |
3482 | echo "${ECHO_T}$PATH_GROUPADD_PROG" >&6 | 4904 | echo "${ECHO_T}$PATH_GROUPADD_PROG" >&6; } |
3483 | else | 4905 | else |
3484 | echo "$as_me:$LINENO: result: no" >&5 | 4906 | { echo "$as_me:$LINENO: result: no" >&5 |
3485 | echo "${ECHO_T}no" >&6 | 4907 | echo "${ECHO_T}no" >&6; } |
3486 | fi | 4908 | fi |
3487 | 4909 | ||
4910 | |||
3488 | # Extract the first word of "useradd", so it can be a program name with args. | 4911 | # Extract the first word of "useradd", so it can be a program name with args. |
3489 | set dummy useradd; ac_word=$2 | 4912 | set dummy useradd; ac_word=$2 |
3490 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4913 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3491 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4914 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3492 | if test "${ac_cv_path_PATH_USERADD_PROG+set}" = set; then | 4915 | if test "${ac_cv_path_PATH_USERADD_PROG+set}" = set; then |
3493 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4916 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3494 | else | 4917 | else |
@@ -3503,32 +4926,33 @@ do | |||
3503 | IFS=$as_save_IFS | 4926 | IFS=$as_save_IFS |
3504 | test -z "$as_dir" && as_dir=. | 4927 | test -z "$as_dir" && as_dir=. |
3505 | for ac_exec_ext in '' $ac_executable_extensions; do | 4928 | for ac_exec_ext in '' $ac_executable_extensions; do |
3506 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4929 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3507 | ac_cv_path_PATH_USERADD_PROG="$as_dir/$ac_word$ac_exec_ext" | 4930 | ac_cv_path_PATH_USERADD_PROG="$as_dir/$ac_word$ac_exec_ext" |
3508 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4931 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3509 | break 2 | 4932 | break 2 |
3510 | fi | 4933 | fi |
3511 | done | 4934 | done |
3512 | done | 4935 | done |
4936 | IFS=$as_save_IFS | ||
3513 | 4937 | ||
3514 | test -z "$ac_cv_path_PATH_USERADD_PROG" && ac_cv_path_PATH_USERADD_PROG="useradd" | 4938 | test -z "$ac_cv_path_PATH_USERADD_PROG" && ac_cv_path_PATH_USERADD_PROG="useradd" |
3515 | ;; | 4939 | ;; |
3516 | esac | 4940 | esac |
3517 | fi | 4941 | fi |
3518 | PATH_USERADD_PROG=$ac_cv_path_PATH_USERADD_PROG | 4942 | PATH_USERADD_PROG=$ac_cv_path_PATH_USERADD_PROG |
3519 | |||
3520 | if test -n "$PATH_USERADD_PROG"; then | 4943 | if test -n "$PATH_USERADD_PROG"; then |
3521 | echo "$as_me:$LINENO: result: $PATH_USERADD_PROG" >&5 | 4944 | { echo "$as_me:$LINENO: result: $PATH_USERADD_PROG" >&5 |
3522 | echo "${ECHO_T}$PATH_USERADD_PROG" >&6 | 4945 | echo "${ECHO_T}$PATH_USERADD_PROG" >&6; } |
3523 | else | 4946 | else |
3524 | echo "$as_me:$LINENO: result: no" >&5 | 4947 | { echo "$as_me:$LINENO: result: no" >&5 |
3525 | echo "${ECHO_T}no" >&6 | 4948 | echo "${ECHO_T}no" >&6; } |
3526 | fi | 4949 | fi |
3527 | 4950 | ||
4951 | |||
3528 | # Extract the first word of "pkgmk", so it can be a program name with args. | 4952 | # Extract the first word of "pkgmk", so it can be a program name with args. |
3529 | set dummy pkgmk; ac_word=$2 | 4953 | set dummy pkgmk; ac_word=$2 |
3530 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 4954 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3531 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 4955 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3532 | if test "${ac_cv_prog_MAKE_PACKAGE_SUPPORTED+set}" = set; then | 4956 | if test "${ac_cv_prog_MAKE_PACKAGE_SUPPORTED+set}" = set; then |
3533 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 4957 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3534 | else | 4958 | else |
@@ -3541,26 +4965,28 @@ do | |||
3541 | IFS=$as_save_IFS | 4965 | IFS=$as_save_IFS |
3542 | test -z "$as_dir" && as_dir=. | 4966 | test -z "$as_dir" && as_dir=. |
3543 | for ac_exec_ext in '' $ac_executable_extensions; do | 4967 | for ac_exec_ext in '' $ac_executable_extensions; do |
3544 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 4968 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3545 | ac_cv_prog_MAKE_PACKAGE_SUPPORTED="yes" | 4969 | ac_cv_prog_MAKE_PACKAGE_SUPPORTED="yes" |
3546 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 4970 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3547 | break 2 | 4971 | break 2 |
3548 | fi | 4972 | fi |
3549 | done | 4973 | done |
3550 | done | 4974 | done |
4975 | IFS=$as_save_IFS | ||
3551 | 4976 | ||
3552 | test -z "$ac_cv_prog_MAKE_PACKAGE_SUPPORTED" && ac_cv_prog_MAKE_PACKAGE_SUPPORTED="no" | 4977 | test -z "$ac_cv_prog_MAKE_PACKAGE_SUPPORTED" && ac_cv_prog_MAKE_PACKAGE_SUPPORTED="no" |
3553 | fi | 4978 | fi |
3554 | fi | 4979 | fi |
3555 | MAKE_PACKAGE_SUPPORTED=$ac_cv_prog_MAKE_PACKAGE_SUPPORTED | 4980 | MAKE_PACKAGE_SUPPORTED=$ac_cv_prog_MAKE_PACKAGE_SUPPORTED |
3556 | if test -n "$MAKE_PACKAGE_SUPPORTED"; then | 4981 | if test -n "$MAKE_PACKAGE_SUPPORTED"; then |
3557 | echo "$as_me:$LINENO: result: $MAKE_PACKAGE_SUPPORTED" >&5 | 4982 | { echo "$as_me:$LINENO: result: $MAKE_PACKAGE_SUPPORTED" >&5 |
3558 | echo "${ECHO_T}$MAKE_PACKAGE_SUPPORTED" >&6 | 4983 | echo "${ECHO_T}$MAKE_PACKAGE_SUPPORTED" >&6; } |
3559 | else | 4984 | else |
3560 | echo "$as_me:$LINENO: result: no" >&5 | 4985 | { echo "$as_me:$LINENO: result: no" >&5 |
3561 | echo "${ECHO_T}no" >&6 | 4986 | echo "${ECHO_T}no" >&6; } |
3562 | fi | 4987 | fi |
3563 | 4988 | ||
4989 | |||
3564 | if test -x /sbin/sh; then | 4990 | if test -x /sbin/sh; then |
3565 | STARTUP_SCRIPT_SHELL=/sbin/sh | 4991 | STARTUP_SCRIPT_SHELL=/sbin/sh |
3566 | 4992 | ||
@@ -3570,15 +4996,15 @@ else | |||
3570 | fi | 4996 | fi |
3571 | 4997 | ||
3572 | # System features | 4998 | # System features |
3573 | # Check whether --enable-largefile or --disable-largefile was given. | 4999 | # Check whether --enable-largefile was given. |
3574 | if test "${enable_largefile+set}" = set; then | 5000 | if test "${enable_largefile+set}" = set; then |
3575 | enableval="$enable_largefile" | 5001 | enableval=$enable_largefile; |
5002 | fi | ||
3576 | 5003 | ||
3577 | fi; | ||
3578 | if test "$enable_largefile" != no; then | 5004 | if test "$enable_largefile" != no; then |
3579 | 5005 | ||
3580 | echo "$as_me:$LINENO: checking for special C compiler options needed for large files" >&5 | 5006 | { echo "$as_me:$LINENO: checking for special C compiler options needed for large files" >&5 |
3581 | echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 | 5007 | echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6; } |
3582 | if test "${ac_cv_sys_largefile_CC+set}" = set; then | 5008 | if test "${ac_cv_sys_largefile_CC+set}" = set; then |
3583 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5009 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3584 | else | 5010 | else |
@@ -3586,8 +5012,8 @@ else | |||
3586 | if test "$GCC" != yes; then | 5012 | if test "$GCC" != yes; then |
3587 | ac_save_CC=$CC | 5013 | ac_save_CC=$CC |
3588 | while :; do | 5014 | while :; do |
3589 | # IRIX 6.2 and later do not support large files by default, | 5015 | # IRIX 6.2 and later do not support large files by default, |
3590 | # so use the C compiler's -n32 option if that helps. | 5016 | # so use the C compiler's -n32 option if that helps. |
3591 | cat >conftest.$ac_ext <<_ACEOF | 5017 | cat >conftest.$ac_ext <<_ACEOF |
3592 | /* confdefs.h. */ | 5018 | /* confdefs.h. */ |
3593 | _ACEOF | 5019 | _ACEOF |
@@ -3611,24 +5037,37 @@ main () | |||
3611 | return 0; | 5037 | return 0; |
3612 | } | 5038 | } |
3613 | _ACEOF | 5039 | _ACEOF |
3614 | rm -f conftest.$ac_objext | 5040 | rm -f conftest.$ac_objext |
3615 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5041 | if { (ac_try="$ac_compile" |
3616 | (eval $ac_compile) 2>conftest.er1 | 5042 | case "(($ac_try" in |
5043 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5044 | *) ac_try_echo=$ac_try;; | ||
5045 | esac | ||
5046 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5047 | (eval "$ac_compile") 2>conftest.er1 | ||
3617 | ac_status=$? | 5048 | ac_status=$? |
3618 | grep -v '^ *+' conftest.er1 >conftest.err | 5049 | grep -v '^ *+' conftest.er1 >conftest.err |
3619 | rm -f conftest.er1 | 5050 | rm -f conftest.er1 |
3620 | cat conftest.err >&5 | 5051 | cat conftest.err >&5 |
3621 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5052 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3622 | (exit $ac_status); } && | 5053 | (exit $ac_status); } && |
3623 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5054 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3624 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5055 | { (case "(($ac_try" in |
3625 | (eval $ac_try) 2>&5 | 5056 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5057 | *) ac_try_echo=$ac_try;; | ||
5058 | esac | ||
5059 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5060 | (eval "$ac_try") 2>&5 | ||
3626 | ac_status=$? | 5061 | ac_status=$? |
3627 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5062 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3628 | (exit $ac_status); }; } && | 5063 | (exit $ac_status); }; } && |
3629 | { ac_try='test -s conftest.$ac_objext' | 5064 | { ac_try='test -s conftest.$ac_objext' |
3630 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5065 | { (case "(($ac_try" in |
3631 | (eval $ac_try) 2>&5 | 5066 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5067 | *) ac_try_echo=$ac_try;; | ||
5068 | esac | ||
5069 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5070 | (eval "$ac_try") 2>&5 | ||
3632 | ac_status=$? | 5071 | ac_status=$? |
3633 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5072 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3634 | (exit $ac_status); }; }; then | 5073 | (exit $ac_status); }; }; then |
@@ -3637,27 +5076,42 @@ else | |||
3637 | echo "$as_me: failed program was:" >&5 | 5076 | echo "$as_me: failed program was:" >&5 |
3638 | sed 's/^/| /' conftest.$ac_ext >&5 | 5077 | sed 's/^/| /' conftest.$ac_ext >&5 |
3639 | 5078 | ||
5079 | |||
3640 | fi | 5080 | fi |
3641 | rm -f conftest.err conftest.$ac_objext | 5081 | |
3642 | CC="$CC -n32" | 5082 | rm -f core conftest.err conftest.$ac_objext |
3643 | rm -f conftest.$ac_objext | 5083 | CC="$CC -n32" |
3644 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5084 | rm -f conftest.$ac_objext |
3645 | (eval $ac_compile) 2>conftest.er1 | 5085 | if { (ac_try="$ac_compile" |
5086 | case "(($ac_try" in | ||
5087 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5088 | *) ac_try_echo=$ac_try;; | ||
5089 | esac | ||
5090 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5091 | (eval "$ac_compile") 2>conftest.er1 | ||
3646 | ac_status=$? | 5092 | ac_status=$? |
3647 | grep -v '^ *+' conftest.er1 >conftest.err | 5093 | grep -v '^ *+' conftest.er1 >conftest.err |
3648 | rm -f conftest.er1 | 5094 | rm -f conftest.er1 |
3649 | cat conftest.err >&5 | 5095 | cat conftest.err >&5 |
3650 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5096 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3651 | (exit $ac_status); } && | 5097 | (exit $ac_status); } && |
3652 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5098 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3653 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5099 | { (case "(($ac_try" in |
3654 | (eval $ac_try) 2>&5 | 5100 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5101 | *) ac_try_echo=$ac_try;; | ||
5102 | esac | ||
5103 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5104 | (eval "$ac_try") 2>&5 | ||
3655 | ac_status=$? | 5105 | ac_status=$? |
3656 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5106 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3657 | (exit $ac_status); }; } && | 5107 | (exit $ac_status); }; } && |
3658 | { ac_try='test -s conftest.$ac_objext' | 5108 | { ac_try='test -s conftest.$ac_objext' |
3659 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5109 | { (case "(($ac_try" in |
3660 | (eval $ac_try) 2>&5 | 5110 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5111 | *) ac_try_echo=$ac_try;; | ||
5112 | esac | ||
5113 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5114 | (eval "$ac_try") 2>&5 | ||
3661 | ac_status=$? | 5115 | ac_status=$? |
3662 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5116 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3663 | (exit $ac_status); }; }; then | 5117 | (exit $ac_status); }; }; then |
@@ -3666,22 +5120,24 @@ else | |||
3666 | echo "$as_me: failed program was:" >&5 | 5120 | echo "$as_me: failed program was:" >&5 |
3667 | sed 's/^/| /' conftest.$ac_ext >&5 | 5121 | sed 's/^/| /' conftest.$ac_ext >&5 |
3668 | 5122 | ||
5123 | |||
3669 | fi | 5124 | fi |
3670 | rm -f conftest.err conftest.$ac_objext | 5125 | |
5126 | rm -f core conftest.err conftest.$ac_objext | ||
3671 | break | 5127 | break |
3672 | done | 5128 | done |
3673 | CC=$ac_save_CC | 5129 | CC=$ac_save_CC |
3674 | rm -f conftest.$ac_ext | 5130 | rm -f conftest.$ac_ext |
3675 | fi | 5131 | fi |
3676 | fi | 5132 | fi |
3677 | echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_CC" >&5 | 5133 | { echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_CC" >&5 |
3678 | echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 | 5134 | echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6; } |
3679 | if test "$ac_cv_sys_largefile_CC" != no; then | 5135 | if test "$ac_cv_sys_largefile_CC" != no; then |
3680 | CC=$CC$ac_cv_sys_largefile_CC | 5136 | CC=$CC$ac_cv_sys_largefile_CC |
3681 | fi | 5137 | fi |
3682 | 5138 | ||
3683 | echo "$as_me:$LINENO: checking for _FILE_OFFSET_BITS value needed for large files" >&5 | 5139 | { echo "$as_me:$LINENO: checking for _FILE_OFFSET_BITS value needed for large files" >&5 |
3684 | echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 | 5140 | echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6; } |
3685 | if test "${ac_cv_sys_file_offset_bits+set}" = set; then | 5141 | if test "${ac_cv_sys_file_offset_bits+set}" = set; then |
3686 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5142 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3687 | else | 5143 | else |
@@ -3711,23 +5167,36 @@ main () | |||
3711 | } | 5167 | } |
3712 | _ACEOF | 5168 | _ACEOF |
3713 | rm -f conftest.$ac_objext | 5169 | rm -f conftest.$ac_objext |
3714 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5170 | if { (ac_try="$ac_compile" |
3715 | (eval $ac_compile) 2>conftest.er1 | 5171 | case "(($ac_try" in |
5172 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5173 | *) ac_try_echo=$ac_try;; | ||
5174 | esac | ||
5175 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5176 | (eval "$ac_compile") 2>conftest.er1 | ||
3716 | ac_status=$? | 5177 | ac_status=$? |
3717 | grep -v '^ *+' conftest.er1 >conftest.err | 5178 | grep -v '^ *+' conftest.er1 >conftest.err |
3718 | rm -f conftest.er1 | 5179 | rm -f conftest.er1 |
3719 | cat conftest.err >&5 | 5180 | cat conftest.err >&5 |
3720 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5181 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3721 | (exit $ac_status); } && | 5182 | (exit $ac_status); } && |
3722 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5183 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3723 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5184 | { (case "(($ac_try" in |
3724 | (eval $ac_try) 2>&5 | 5185 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5186 | *) ac_try_echo=$ac_try;; | ||
5187 | esac | ||
5188 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5189 | (eval "$ac_try") 2>&5 | ||
3725 | ac_status=$? | 5190 | ac_status=$? |
3726 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5191 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3727 | (exit $ac_status); }; } && | 5192 | (exit $ac_status); }; } && |
3728 | { ac_try='test -s conftest.$ac_objext' | 5193 | { ac_try='test -s conftest.$ac_objext' |
3729 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5194 | { (case "(($ac_try" in |
3730 | (eval $ac_try) 2>&5 | 5195 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5196 | *) ac_try_echo=$ac_try;; | ||
5197 | esac | ||
5198 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5199 | (eval "$ac_try") 2>&5 | ||
3731 | ac_status=$? | 5200 | ac_status=$? |
3732 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5201 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3733 | (exit $ac_status); }; }; then | 5202 | (exit $ac_status); }; }; then |
@@ -3736,8 +5205,10 @@ else | |||
3736 | echo "$as_me: failed program was:" >&5 | 5205 | echo "$as_me: failed program was:" >&5 |
3737 | sed 's/^/| /' conftest.$ac_ext >&5 | 5206 | sed 's/^/| /' conftest.$ac_ext >&5 |
3738 | 5207 | ||
5208 | |||
3739 | fi | 5209 | fi |
3740 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5210 | |
5211 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
3741 | cat >conftest.$ac_ext <<_ACEOF | 5212 | cat >conftest.$ac_ext <<_ACEOF |
3742 | /* confdefs.h. */ | 5213 | /* confdefs.h. */ |
3743 | _ACEOF | 5214 | _ACEOF |
@@ -3763,23 +5234,36 @@ main () | |||
3763 | } | 5234 | } |
3764 | _ACEOF | 5235 | _ACEOF |
3765 | rm -f conftest.$ac_objext | 5236 | rm -f conftest.$ac_objext |
3766 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5237 | if { (ac_try="$ac_compile" |
3767 | (eval $ac_compile) 2>conftest.er1 | 5238 | case "(($ac_try" in |
5239 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5240 | *) ac_try_echo=$ac_try;; | ||
5241 | esac | ||
5242 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5243 | (eval "$ac_compile") 2>conftest.er1 | ||
3768 | ac_status=$? | 5244 | ac_status=$? |
3769 | grep -v '^ *+' conftest.er1 >conftest.err | 5245 | grep -v '^ *+' conftest.er1 >conftest.err |
3770 | rm -f conftest.er1 | 5246 | rm -f conftest.er1 |
3771 | cat conftest.err >&5 | 5247 | cat conftest.err >&5 |
3772 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5248 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3773 | (exit $ac_status); } && | 5249 | (exit $ac_status); } && |
3774 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5250 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3775 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5251 | { (case "(($ac_try" in |
3776 | (eval $ac_try) 2>&5 | 5252 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5253 | *) ac_try_echo=$ac_try;; | ||
5254 | esac | ||
5255 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5256 | (eval "$ac_try") 2>&5 | ||
3777 | ac_status=$? | 5257 | ac_status=$? |
3778 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5258 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3779 | (exit $ac_status); }; } && | 5259 | (exit $ac_status); }; } && |
3780 | { ac_try='test -s conftest.$ac_objext' | 5260 | { ac_try='test -s conftest.$ac_objext' |
3781 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5261 | { (case "(($ac_try" in |
3782 | (eval $ac_try) 2>&5 | 5262 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5263 | *) ac_try_echo=$ac_try;; | ||
5264 | esac | ||
5265 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5266 | (eval "$ac_try") 2>&5 | ||
3783 | ac_status=$? | 5267 | ac_status=$? |
3784 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5268 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3785 | (exit $ac_status); }; }; then | 5269 | (exit $ac_status); }; }; then |
@@ -3788,13 +5272,15 @@ else | |||
3788 | echo "$as_me: failed program was:" >&5 | 5272 | echo "$as_me: failed program was:" >&5 |
3789 | sed 's/^/| /' conftest.$ac_ext >&5 | 5273 | sed 's/^/| /' conftest.$ac_ext >&5 |
3790 | 5274 | ||
5275 | |||
3791 | fi | 5276 | fi |
3792 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5277 | |
5278 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
3793 | break | 5279 | break |
3794 | done | 5280 | done |
3795 | fi | 5281 | fi |
3796 | echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5 | 5282 | { echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5 |
3797 | echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 | 5283 | echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6; } |
3798 | if test "$ac_cv_sys_file_offset_bits" != no; then | 5284 | if test "$ac_cv_sys_file_offset_bits" != no; then |
3799 | 5285 | ||
3800 | cat >>confdefs.h <<_ACEOF | 5286 | cat >>confdefs.h <<_ACEOF |
@@ -3803,8 +5289,8 @@ _ACEOF | |||
3803 | 5289 | ||
3804 | fi | 5290 | fi |
3805 | rm -f conftest* | 5291 | rm -f conftest* |
3806 | echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5 | 5292 | { echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5 |
3807 | echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 | 5293 | echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6; } |
3808 | if test "${ac_cv_sys_large_files+set}" = set; then | 5294 | if test "${ac_cv_sys_large_files+set}" = set; then |
3809 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5295 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3810 | else | 5296 | else |
@@ -3834,23 +5320,36 @@ main () | |||
3834 | } | 5320 | } |
3835 | _ACEOF | 5321 | _ACEOF |
3836 | rm -f conftest.$ac_objext | 5322 | rm -f conftest.$ac_objext |
3837 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5323 | if { (ac_try="$ac_compile" |
3838 | (eval $ac_compile) 2>conftest.er1 | 5324 | case "(($ac_try" in |
5325 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5326 | *) ac_try_echo=$ac_try;; | ||
5327 | esac | ||
5328 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5329 | (eval "$ac_compile") 2>conftest.er1 | ||
3839 | ac_status=$? | 5330 | ac_status=$? |
3840 | grep -v '^ *+' conftest.er1 >conftest.err | 5331 | grep -v '^ *+' conftest.er1 >conftest.err |
3841 | rm -f conftest.er1 | 5332 | rm -f conftest.er1 |
3842 | cat conftest.err >&5 | 5333 | cat conftest.err >&5 |
3843 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5334 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3844 | (exit $ac_status); } && | 5335 | (exit $ac_status); } && |
3845 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5336 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3846 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5337 | { (case "(($ac_try" in |
3847 | (eval $ac_try) 2>&5 | 5338 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5339 | *) ac_try_echo=$ac_try;; | ||
5340 | esac | ||
5341 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5342 | (eval "$ac_try") 2>&5 | ||
3848 | ac_status=$? | 5343 | ac_status=$? |
3849 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5344 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3850 | (exit $ac_status); }; } && | 5345 | (exit $ac_status); }; } && |
3851 | { ac_try='test -s conftest.$ac_objext' | 5346 | { ac_try='test -s conftest.$ac_objext' |
3852 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5347 | { (case "(($ac_try" in |
3853 | (eval $ac_try) 2>&5 | 5348 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5349 | *) ac_try_echo=$ac_try;; | ||
5350 | esac | ||
5351 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5352 | (eval "$ac_try") 2>&5 | ||
3854 | ac_status=$? | 5353 | ac_status=$? |
3855 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5354 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3856 | (exit $ac_status); }; }; then | 5355 | (exit $ac_status); }; }; then |
@@ -3859,8 +5358,10 @@ else | |||
3859 | echo "$as_me: failed program was:" >&5 | 5358 | echo "$as_me: failed program was:" >&5 |
3860 | sed 's/^/| /' conftest.$ac_ext >&5 | 5359 | sed 's/^/| /' conftest.$ac_ext >&5 |
3861 | 5360 | ||
5361 | |||
3862 | fi | 5362 | fi |
3863 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5363 | |
5364 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
3864 | cat >conftest.$ac_ext <<_ACEOF | 5365 | cat >conftest.$ac_ext <<_ACEOF |
3865 | /* confdefs.h. */ | 5366 | /* confdefs.h. */ |
3866 | _ACEOF | 5367 | _ACEOF |
@@ -3886,23 +5387,36 @@ main () | |||
3886 | } | 5387 | } |
3887 | _ACEOF | 5388 | _ACEOF |
3888 | rm -f conftest.$ac_objext | 5389 | rm -f conftest.$ac_objext |
3889 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5390 | if { (ac_try="$ac_compile" |
3890 | (eval $ac_compile) 2>conftest.er1 | 5391 | case "(($ac_try" in |
5392 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5393 | *) ac_try_echo=$ac_try;; | ||
5394 | esac | ||
5395 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5396 | (eval "$ac_compile") 2>conftest.er1 | ||
3891 | ac_status=$? | 5397 | ac_status=$? |
3892 | grep -v '^ *+' conftest.er1 >conftest.err | 5398 | grep -v '^ *+' conftest.er1 >conftest.err |
3893 | rm -f conftest.er1 | 5399 | rm -f conftest.er1 |
3894 | cat conftest.err >&5 | 5400 | cat conftest.err >&5 |
3895 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5401 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3896 | (exit $ac_status); } && | 5402 | (exit $ac_status); } && |
3897 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5403 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3898 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5404 | { (case "(($ac_try" in |
3899 | (eval $ac_try) 2>&5 | 5405 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5406 | *) ac_try_echo=$ac_try;; | ||
5407 | esac | ||
5408 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5409 | (eval "$ac_try") 2>&5 | ||
3900 | ac_status=$? | 5410 | ac_status=$? |
3901 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5411 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3902 | (exit $ac_status); }; } && | 5412 | (exit $ac_status); }; } && |
3903 | { ac_try='test -s conftest.$ac_objext' | 5413 | { ac_try='test -s conftest.$ac_objext' |
3904 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5414 | { (case "(($ac_try" in |
3905 | (eval $ac_try) 2>&5 | 5415 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5416 | *) ac_try_echo=$ac_try;; | ||
5417 | esac | ||
5418 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5419 | (eval "$ac_try") 2>&5 | ||
3906 | ac_status=$? | 5420 | ac_status=$? |
3907 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5421 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3908 | (exit $ac_status); }; }; then | 5422 | (exit $ac_status); }; }; then |
@@ -3911,13 +5425,15 @@ else | |||
3911 | echo "$as_me: failed program was:" >&5 | 5425 | echo "$as_me: failed program was:" >&5 |
3912 | sed 's/^/| /' conftest.$ac_ext >&5 | 5426 | sed 's/^/| /' conftest.$ac_ext >&5 |
3913 | 5427 | ||
5428 | |||
3914 | fi | 5429 | fi |
3915 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5430 | |
5431 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
3916 | break | 5432 | break |
3917 | done | 5433 | done |
3918 | fi | 5434 | fi |
3919 | echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5 | 5435 | { echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5 |
3920 | echo "${ECHO_T}$ac_cv_sys_large_files" >&6 | 5436 | echo "${ECHO_T}$ac_cv_sys_large_files" >&6; } |
3921 | if test "$ac_cv_sys_large_files" != no; then | 5437 | if test "$ac_cv_sys_large_files" != no; then |
3922 | 5438 | ||
3923 | cat >>confdefs.h <<_ACEOF | 5439 | cat >>confdefs.h <<_ACEOF |
@@ -3946,8 +5462,8 @@ else | |||
3946 | # Search for login | 5462 | # Search for login |
3947 | # Extract the first word of "login", so it can be a program name with args. | 5463 | # Extract the first word of "login", so it can be a program name with args. |
3948 | set dummy login; ac_word=$2 | 5464 | set dummy login; ac_word=$2 |
3949 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 5465 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3950 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 5466 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3951 | if test "${ac_cv_path_LOGIN_PROGRAM_FALLBACK+set}" = set; then | 5467 | if test "${ac_cv_path_LOGIN_PROGRAM_FALLBACK+set}" = set; then |
3952 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5468 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
3953 | else | 5469 | else |
@@ -3962,27 +5478,28 @@ do | |||
3962 | IFS=$as_save_IFS | 5478 | IFS=$as_save_IFS |
3963 | test -z "$as_dir" && as_dir=. | 5479 | test -z "$as_dir" && as_dir=. |
3964 | for ac_exec_ext in '' $ac_executable_extensions; do | 5480 | for ac_exec_ext in '' $ac_executable_extensions; do |
3965 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 5481 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
3966 | ac_cv_path_LOGIN_PROGRAM_FALLBACK="$as_dir/$ac_word$ac_exec_ext" | 5482 | ac_cv_path_LOGIN_PROGRAM_FALLBACK="$as_dir/$ac_word$ac_exec_ext" |
3967 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 5483 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
3968 | break 2 | 5484 | break 2 |
3969 | fi | 5485 | fi |
3970 | done | 5486 | done |
3971 | done | 5487 | done |
5488 | IFS=$as_save_IFS | ||
3972 | 5489 | ||
3973 | ;; | 5490 | ;; |
3974 | esac | 5491 | esac |
3975 | fi | 5492 | fi |
3976 | LOGIN_PROGRAM_FALLBACK=$ac_cv_path_LOGIN_PROGRAM_FALLBACK | 5493 | LOGIN_PROGRAM_FALLBACK=$ac_cv_path_LOGIN_PROGRAM_FALLBACK |
3977 | |||
3978 | if test -n "$LOGIN_PROGRAM_FALLBACK"; then | 5494 | if test -n "$LOGIN_PROGRAM_FALLBACK"; then |
3979 | echo "$as_me:$LINENO: result: $LOGIN_PROGRAM_FALLBACK" >&5 | 5495 | { echo "$as_me:$LINENO: result: $LOGIN_PROGRAM_FALLBACK" >&5 |
3980 | echo "${ECHO_T}$LOGIN_PROGRAM_FALLBACK" >&6 | 5496 | echo "${ECHO_T}$LOGIN_PROGRAM_FALLBACK" >&6; } |
3981 | else | 5497 | else |
3982 | echo "$as_me:$LINENO: result: no" >&5 | 5498 | { echo "$as_me:$LINENO: result: no" >&5 |
3983 | echo "${ECHO_T}no" >&6 | 5499 | echo "${ECHO_T}no" >&6; } |
3984 | fi | 5500 | fi |
3985 | 5501 | ||
5502 | |||
3986 | if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then | 5503 | if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then |
3987 | cat >>confdefs.h <<_ACEOF | 5504 | cat >>confdefs.h <<_ACEOF |
3988 | #define LOGIN_PROGRAM_FALLBACK "$LOGIN_PROGRAM_FALLBACK" | 5505 | #define LOGIN_PROGRAM_FALLBACK "$LOGIN_PROGRAM_FALLBACK" |
@@ -3993,8 +5510,8 @@ fi | |||
3993 | 5510 | ||
3994 | # Extract the first word of "passwd", so it can be a program name with args. | 5511 | # Extract the first word of "passwd", so it can be a program name with args. |
3995 | set dummy passwd; ac_word=$2 | 5512 | set dummy passwd; ac_word=$2 |
3996 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 5513 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
3997 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 5514 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
3998 | if test "${ac_cv_path_PATH_PASSWD_PROG+set}" = set; then | 5515 | if test "${ac_cv_path_PATH_PASSWD_PROG+set}" = set; then |
3999 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5516 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4000 | else | 5517 | else |
@@ -4009,27 +5526,28 @@ do | |||
4009 | IFS=$as_save_IFS | 5526 | IFS=$as_save_IFS |
4010 | test -z "$as_dir" && as_dir=. | 5527 | test -z "$as_dir" && as_dir=. |
4011 | for ac_exec_ext in '' $ac_executable_extensions; do | 5528 | for ac_exec_ext in '' $ac_executable_extensions; do |
4012 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 5529 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
4013 | ac_cv_path_PATH_PASSWD_PROG="$as_dir/$ac_word$ac_exec_ext" | 5530 | ac_cv_path_PATH_PASSWD_PROG="$as_dir/$ac_word$ac_exec_ext" |
4014 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 5531 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
4015 | break 2 | 5532 | break 2 |
4016 | fi | 5533 | fi |
4017 | done | 5534 | done |
4018 | done | 5535 | done |
5536 | IFS=$as_save_IFS | ||
4019 | 5537 | ||
4020 | ;; | 5538 | ;; |
4021 | esac | 5539 | esac |
4022 | fi | 5540 | fi |
4023 | PATH_PASSWD_PROG=$ac_cv_path_PATH_PASSWD_PROG | 5541 | PATH_PASSWD_PROG=$ac_cv_path_PATH_PASSWD_PROG |
4024 | |||
4025 | if test -n "$PATH_PASSWD_PROG"; then | 5542 | if test -n "$PATH_PASSWD_PROG"; then |
4026 | echo "$as_me:$LINENO: result: $PATH_PASSWD_PROG" >&5 | 5543 | { echo "$as_me:$LINENO: result: $PATH_PASSWD_PROG" >&5 |
4027 | echo "${ECHO_T}$PATH_PASSWD_PROG" >&6 | 5544 | echo "${ECHO_T}$PATH_PASSWD_PROG" >&6; } |
4028 | else | 5545 | else |
4029 | echo "$as_me:$LINENO: result: no" >&5 | 5546 | { echo "$as_me:$LINENO: result: no" >&5 |
4030 | echo "${ECHO_T}no" >&6 | 5547 | echo "${ECHO_T}no" >&6; } |
4031 | fi | 5548 | fi |
4032 | 5549 | ||
5550 | |||
4033 | if test ! -z "$PATH_PASSWD_PROG" ; then | 5551 | if test ! -z "$PATH_PASSWD_PROG" ; then |
4034 | 5552 | ||
4035 | cat >>confdefs.h <<_ACEOF | 5553 | cat >>confdefs.h <<_ACEOF |
@@ -4043,8 +5561,8 @@ if test -z "$LD" ; then | |||
4043 | fi | 5561 | fi |
4044 | 5562 | ||
4045 | 5563 | ||
4046 | echo "$as_me:$LINENO: checking for inline" >&5 | 5564 | { echo "$as_me:$LINENO: checking for inline" >&5 |
4047 | echo $ECHO_N "checking for inline... $ECHO_C" >&6 | 5565 | echo $ECHO_N "checking for inline... $ECHO_C" >&6; } |
4048 | if test "${ac_cv_c_inline+set}" = set; then | 5566 | if test "${ac_cv_c_inline+set}" = set; then |
4049 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5567 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4050 | else | 5568 | else |
@@ -4064,38 +5582,54 @@ $ac_kw foo_t foo () {return 0; } | |||
4064 | 5582 | ||
4065 | _ACEOF | 5583 | _ACEOF |
4066 | rm -f conftest.$ac_objext | 5584 | rm -f conftest.$ac_objext |
4067 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5585 | if { (ac_try="$ac_compile" |
4068 | (eval $ac_compile) 2>conftest.er1 | 5586 | case "(($ac_try" in |
5587 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5588 | *) ac_try_echo=$ac_try;; | ||
5589 | esac | ||
5590 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5591 | (eval "$ac_compile") 2>conftest.er1 | ||
4069 | ac_status=$? | 5592 | ac_status=$? |
4070 | grep -v '^ *+' conftest.er1 >conftest.err | 5593 | grep -v '^ *+' conftest.er1 >conftest.err |
4071 | rm -f conftest.er1 | 5594 | rm -f conftest.er1 |
4072 | cat conftest.err >&5 | 5595 | cat conftest.err >&5 |
4073 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5596 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4074 | (exit $ac_status); } && | 5597 | (exit $ac_status); } && |
4075 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5598 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4076 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5599 | { (case "(($ac_try" in |
4077 | (eval $ac_try) 2>&5 | 5600 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5601 | *) ac_try_echo=$ac_try;; | ||
5602 | esac | ||
5603 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5604 | (eval "$ac_try") 2>&5 | ||
4078 | ac_status=$? | 5605 | ac_status=$? |
4079 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5606 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4080 | (exit $ac_status); }; } && | 5607 | (exit $ac_status); }; } && |
4081 | { ac_try='test -s conftest.$ac_objext' | 5608 | { ac_try='test -s conftest.$ac_objext' |
4082 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5609 | { (case "(($ac_try" in |
4083 | (eval $ac_try) 2>&5 | 5610 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5611 | *) ac_try_echo=$ac_try;; | ||
5612 | esac | ||
5613 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5614 | (eval "$ac_try") 2>&5 | ||
4084 | ac_status=$? | 5615 | ac_status=$? |
4085 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5616 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4086 | (exit $ac_status); }; }; then | 5617 | (exit $ac_status); }; }; then |
4087 | ac_cv_c_inline=$ac_kw; break | 5618 | ac_cv_c_inline=$ac_kw |
4088 | else | 5619 | else |
4089 | echo "$as_me: failed program was:" >&5 | 5620 | echo "$as_me: failed program was:" >&5 |
4090 | sed 's/^/| /' conftest.$ac_ext >&5 | 5621 | sed 's/^/| /' conftest.$ac_ext >&5 |
4091 | 5622 | ||
5623 | |||
4092 | fi | 5624 | fi |
4093 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5625 | |
5626 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
5627 | test "$ac_cv_c_inline" != no && break | ||
4094 | done | 5628 | done |
4095 | 5629 | ||
4096 | fi | 5630 | fi |
4097 | echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 | 5631 | { echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 |
4098 | echo "${ECHO_T}$ac_cv_c_inline" >&6 | 5632 | echo "${ECHO_T}$ac_cv_c_inline" >&6; } |
4099 | 5633 | ||
4100 | 5634 | ||
4101 | case $ac_cv_c_inline in | 5635 | case $ac_cv_c_inline in |
@@ -4114,8 +5648,8 @@ _ACEOF | |||
4114 | esac | 5648 | esac |
4115 | 5649 | ||
4116 | 5650 | ||
4117 | echo "$as_me:$LINENO: checking whether LLONG_MAX is declared" >&5 | 5651 | { echo "$as_me:$LINENO: checking whether LLONG_MAX is declared" >&5 |
4118 | echo $ECHO_N "checking whether LLONG_MAX is declared... $ECHO_C" >&6 | 5652 | echo $ECHO_N "checking whether LLONG_MAX is declared... $ECHO_C" >&6; } |
4119 | if test "${ac_cv_have_decl_LLONG_MAX+set}" = set; then | 5653 | if test "${ac_cv_have_decl_LLONG_MAX+set}" = set; then |
4120 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5654 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4121 | else | 5655 | else |
@@ -4132,6 +5666,7 @@ main () | |||
4132 | { | 5666 | { |
4133 | #ifndef LLONG_MAX | 5667 | #ifndef LLONG_MAX |
4134 | char *p = (char *) LLONG_MAX; | 5668 | char *p = (char *) LLONG_MAX; |
5669 | return !p; | ||
4135 | #endif | 5670 | #endif |
4136 | 5671 | ||
4137 | ; | 5672 | ; |
@@ -4139,23 +5674,36 @@ main () | |||
4139 | } | 5674 | } |
4140 | _ACEOF | 5675 | _ACEOF |
4141 | rm -f conftest.$ac_objext | 5676 | rm -f conftest.$ac_objext |
4142 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5677 | if { (ac_try="$ac_compile" |
4143 | (eval $ac_compile) 2>conftest.er1 | 5678 | case "(($ac_try" in |
5679 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5680 | *) ac_try_echo=$ac_try;; | ||
5681 | esac | ||
5682 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5683 | (eval "$ac_compile") 2>conftest.er1 | ||
4144 | ac_status=$? | 5684 | ac_status=$? |
4145 | grep -v '^ *+' conftest.er1 >conftest.err | 5685 | grep -v '^ *+' conftest.er1 >conftest.err |
4146 | rm -f conftest.er1 | 5686 | rm -f conftest.er1 |
4147 | cat conftest.err >&5 | 5687 | cat conftest.err >&5 |
4148 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5688 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4149 | (exit $ac_status); } && | 5689 | (exit $ac_status); } && |
4150 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5690 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4151 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5691 | { (case "(($ac_try" in |
4152 | (eval $ac_try) 2>&5 | 5692 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5693 | *) ac_try_echo=$ac_try;; | ||
5694 | esac | ||
5695 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5696 | (eval "$ac_try") 2>&5 | ||
4153 | ac_status=$? | 5697 | ac_status=$? |
4154 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5698 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4155 | (exit $ac_status); }; } && | 5699 | (exit $ac_status); }; } && |
4156 | { ac_try='test -s conftest.$ac_objext' | 5700 | { ac_try='test -s conftest.$ac_objext' |
4157 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5701 | { (case "(($ac_try" in |
4158 | (eval $ac_try) 2>&5 | 5702 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5703 | *) ac_try_echo=$ac_try;; | ||
5704 | esac | ||
5705 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5706 | (eval "$ac_try") 2>&5 | ||
4159 | ac_status=$? | 5707 | ac_status=$? |
4160 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5708 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4161 | (exit $ac_status); }; }; then | 5709 | (exit $ac_status); }; }; then |
@@ -4164,12 +5712,13 @@ else | |||
4164 | echo "$as_me: failed program was:" >&5 | 5712 | echo "$as_me: failed program was:" >&5 |
4165 | sed 's/^/| /' conftest.$ac_ext >&5 | 5713 | sed 's/^/| /' conftest.$ac_ext >&5 |
4166 | 5714 | ||
4167 | ac_cv_have_decl_LLONG_MAX=no | 5715 | ac_cv_have_decl_LLONG_MAX=no |
4168 | fi | 5716 | fi |
4169 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5717 | |
5718 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4170 | fi | 5719 | fi |
4171 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_LLONG_MAX" >&5 | 5720 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_LLONG_MAX" >&5 |
4172 | echo "${ECHO_T}$ac_cv_have_decl_LLONG_MAX" >&6 | 5721 | echo "${ECHO_T}$ac_cv_have_decl_LLONG_MAX" >&6; } |
4173 | if test $ac_cv_have_decl_LLONG_MAX = yes; then | 5722 | if test $ac_cv_have_decl_LLONG_MAX = yes; then |
4174 | have_llong_max=1 | 5723 | have_llong_max=1 |
4175 | fi | 5724 | fi |
@@ -4192,8 +5741,8 @@ if test "$GCC" = "yes" || test "$GCC" = "egcs"; then | |||
4192 | unset ac_cv_have_decl_LLONG_MAX | 5741 | unset ac_cv_have_decl_LLONG_MAX |
4193 | saved_CFLAGS="$CFLAGS" | 5742 | saved_CFLAGS="$CFLAGS" |
4194 | CFLAGS="$CFLAGS -std=gnu99" | 5743 | CFLAGS="$CFLAGS -std=gnu99" |
4195 | echo "$as_me:$LINENO: checking whether LLONG_MAX is declared" >&5 | 5744 | { echo "$as_me:$LINENO: checking whether LLONG_MAX is declared" >&5 |
4196 | echo $ECHO_N "checking whether LLONG_MAX is declared... $ECHO_C" >&6 | 5745 | echo $ECHO_N "checking whether LLONG_MAX is declared... $ECHO_C" >&6; } |
4197 | if test "${ac_cv_have_decl_LLONG_MAX+set}" = set; then | 5746 | if test "${ac_cv_have_decl_LLONG_MAX+set}" = set; then |
4198 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5747 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4199 | else | 5748 | else |
@@ -4211,6 +5760,7 @@ main () | |||
4211 | { | 5760 | { |
4212 | #ifndef LLONG_MAX | 5761 | #ifndef LLONG_MAX |
4213 | char *p = (char *) LLONG_MAX; | 5762 | char *p = (char *) LLONG_MAX; |
5763 | return !p; | ||
4214 | #endif | 5764 | #endif |
4215 | 5765 | ||
4216 | ; | 5766 | ; |
@@ -4218,23 +5768,36 @@ main () | |||
4218 | } | 5768 | } |
4219 | _ACEOF | 5769 | _ACEOF |
4220 | rm -f conftest.$ac_objext | 5770 | rm -f conftest.$ac_objext |
4221 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 5771 | if { (ac_try="$ac_compile" |
4222 | (eval $ac_compile) 2>conftest.er1 | 5772 | case "(($ac_try" in |
5773 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5774 | *) ac_try_echo=$ac_try;; | ||
5775 | esac | ||
5776 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5777 | (eval "$ac_compile") 2>conftest.er1 | ||
4223 | ac_status=$? | 5778 | ac_status=$? |
4224 | grep -v '^ *+' conftest.er1 >conftest.err | 5779 | grep -v '^ *+' conftest.er1 >conftest.err |
4225 | rm -f conftest.er1 | 5780 | rm -f conftest.er1 |
4226 | cat conftest.err >&5 | 5781 | cat conftest.err >&5 |
4227 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5782 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4228 | (exit $ac_status); } && | 5783 | (exit $ac_status); } && |
4229 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5784 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4230 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5785 | { (case "(($ac_try" in |
4231 | (eval $ac_try) 2>&5 | 5786 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5787 | *) ac_try_echo=$ac_try;; | ||
5788 | esac | ||
5789 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5790 | (eval "$ac_try") 2>&5 | ||
4232 | ac_status=$? | 5791 | ac_status=$? |
4233 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5792 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4234 | (exit $ac_status); }; } && | 5793 | (exit $ac_status); }; } && |
4235 | { ac_try='test -s conftest.$ac_objext' | 5794 | { ac_try='test -s conftest.$ac_objext' |
4236 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5795 | { (case "(($ac_try" in |
4237 | (eval $ac_try) 2>&5 | 5796 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5797 | *) ac_try_echo=$ac_try;; | ||
5798 | esac | ||
5799 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5800 | (eval "$ac_try") 2>&5 | ||
4238 | ac_status=$? | 5801 | ac_status=$? |
4239 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5802 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4240 | (exit $ac_status); }; }; then | 5803 | (exit $ac_status); }; }; then |
@@ -4243,12 +5806,13 @@ else | |||
4243 | echo "$as_me: failed program was:" >&5 | 5806 | echo "$as_me: failed program was:" >&5 |
4244 | sed 's/^/| /' conftest.$ac_ext >&5 | 5807 | sed 's/^/| /' conftest.$ac_ext >&5 |
4245 | 5808 | ||
4246 | ac_cv_have_decl_LLONG_MAX=no | 5809 | ac_cv_have_decl_LLONG_MAX=no |
4247 | fi | 5810 | fi |
4248 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 5811 | |
5812 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4249 | fi | 5813 | fi |
4250 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_LLONG_MAX" >&5 | 5814 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_LLONG_MAX" >&5 |
4251 | echo "${ECHO_T}$ac_cv_have_decl_LLONG_MAX" >&6 | 5815 | echo "${ECHO_T}$ac_cv_have_decl_LLONG_MAX" >&6; } |
4252 | if test $ac_cv_have_decl_LLONG_MAX = yes; then | 5816 | if test $ac_cv_have_decl_LLONG_MAX = yes; then |
4253 | have_llong_max=1 | 5817 | have_llong_max=1 |
4254 | else | 5818 | else |
@@ -4259,10 +5823,9 @@ fi | |||
4259 | fi | 5823 | fi |
4260 | 5824 | ||
4261 | 5825 | ||
4262 | # Check whether --with-rpath or --without-rpath was given. | 5826 | # Check whether --with-rpath was given. |
4263 | if test "${with_rpath+set}" = set; then | 5827 | if test "${with_rpath+set}" = set; then |
4264 | withval="$with_rpath" | 5828 | withval=$with_rpath; |
4265 | |||
4266 | if test "x$withval" = "xno" ; then | 5829 | if test "x$withval" = "xno" ; then |
4267 | need_dash_r="" | 5830 | need_dash_r="" |
4268 | fi | 5831 | fi |
@@ -4271,13 +5834,14 @@ if test "${with_rpath+set}" = set; then | |||
4271 | fi | 5834 | fi |
4272 | 5835 | ||
4273 | 5836 | ||
4274 | fi; | 5837 | fi |
5838 | |||
4275 | 5839 | ||
4276 | # Check for some target-specific stuff | 5840 | # Check for some target-specific stuff |
4277 | case "$host" in | 5841 | case "$host" in |
4278 | *-*-aix*) | 5842 | *-*-aix*) |
4279 | echo "$as_me:$LINENO: checking how to specify blibpath for linker ($LD)" >&5 | 5843 | { echo "$as_me:$LINENO: checking how to specify blibpath for linker ($LD)" >&5 |
4280 | echo $ECHO_N "checking how to specify blibpath for linker ($LD)... $ECHO_C" >&6 | 5844 | echo $ECHO_N "checking how to specify blibpath for linker ($LD)... $ECHO_C" >&6; } |
4281 | if (test -z "$blibpath"); then | 5845 | if (test -z "$blibpath"); then |
4282 | blibpath="/usr/lib:/lib" | 5846 | blibpath="/usr/lib:/lib" |
4283 | fi | 5847 | fi |
@@ -4301,23 +5865,36 @@ main () | |||
4301 | } | 5865 | } |
4302 | _ACEOF | 5866 | _ACEOF |
4303 | rm -f conftest.$ac_objext conftest$ac_exeext | 5867 | rm -f conftest.$ac_objext conftest$ac_exeext |
4304 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 5868 | if { (ac_try="$ac_link" |
4305 | (eval $ac_link) 2>conftest.er1 | 5869 | case "(($ac_try" in |
5870 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5871 | *) ac_try_echo=$ac_try;; | ||
5872 | esac | ||
5873 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5874 | (eval "$ac_link") 2>conftest.er1 | ||
4306 | ac_status=$? | 5875 | ac_status=$? |
4307 | grep -v '^ *+' conftest.er1 >conftest.err | 5876 | grep -v '^ *+' conftest.er1 >conftest.err |
4308 | rm -f conftest.er1 | 5877 | rm -f conftest.er1 |
4309 | cat conftest.err >&5 | 5878 | cat conftest.err >&5 |
4310 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5879 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4311 | (exit $ac_status); } && | 5880 | (exit $ac_status); } && |
4312 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5881 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4313 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5882 | { (case "(($ac_try" in |
4314 | (eval $ac_try) 2>&5 | 5883 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5884 | *) ac_try_echo=$ac_try;; | ||
5885 | esac | ||
5886 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5887 | (eval "$ac_try") 2>&5 | ||
4315 | ac_status=$? | 5888 | ac_status=$? |
4316 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5889 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4317 | (exit $ac_status); }; } && | 5890 | (exit $ac_status); }; } && |
4318 | { ac_try='test -s conftest$ac_exeext' | 5891 | { ac_try='test -s conftest$ac_exeext' |
4319 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5892 | { (case "(($ac_try" in |
4320 | (eval $ac_try) 2>&5 | 5893 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5894 | *) ac_try_echo=$ac_try;; | ||
5895 | esac | ||
5896 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5897 | (eval "$ac_try") 2>&5 | ||
4321 | ac_status=$? | 5898 | ac_status=$? |
4322 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5899 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4323 | (exit $ac_status); }; }; then | 5900 | (exit $ac_status); }; }; then |
@@ -4326,24 +5903,26 @@ else | |||
4326 | echo "$as_me: failed program was:" >&5 | 5903 | echo "$as_me: failed program was:" >&5 |
4327 | sed 's/^/| /' conftest.$ac_ext >&5 | 5904 | sed 's/^/| /' conftest.$ac_ext >&5 |
4328 | 5905 | ||
5906 | |||
4329 | fi | 5907 | fi |
4330 | rm -f conftest.err conftest.$ac_objext \ | 5908 | |
5909 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
4331 | conftest$ac_exeext conftest.$ac_ext | 5910 | conftest$ac_exeext conftest.$ac_ext |
4332 | fi | 5911 | fi |
4333 | done | 5912 | done |
4334 | if (test -z "$blibflags"); then | 5913 | if (test -z "$blibflags"); then |
4335 | echo "$as_me:$LINENO: result: not found" >&5 | 5914 | { echo "$as_me:$LINENO: result: not found" >&5 |
4336 | echo "${ECHO_T}not found" >&6 | 5915 | echo "${ECHO_T}not found" >&6; } |
4337 | { { echo "$as_me:$LINENO: error: *** must be able to specify blibpath on AIX - check config.log" >&5 | 5916 | { { echo "$as_me:$LINENO: error: *** must be able to specify blibpath on AIX - check config.log" >&5 |
4338 | echo "$as_me: error: *** must be able to specify blibpath on AIX - check config.log" >&2;} | 5917 | echo "$as_me: error: *** must be able to specify blibpath on AIX - check config.log" >&2;} |
4339 | { (exit 1); exit 1; }; } | 5918 | { (exit 1); exit 1; }; } |
4340 | else | 5919 | else |
4341 | echo "$as_me:$LINENO: result: $blibflags" >&5 | 5920 | { echo "$as_me:$LINENO: result: $blibflags" >&5 |
4342 | echo "${ECHO_T}$blibflags" >&6 | 5921 | echo "${ECHO_T}$blibflags" >&6; } |
4343 | fi | 5922 | fi |
4344 | LDFLAGS="$saved_LDFLAGS" | 5923 | LDFLAGS="$saved_LDFLAGS" |
4345 | echo "$as_me:$LINENO: checking for authenticate" >&5 | 5924 | { echo "$as_me:$LINENO: checking for authenticate" >&5 |
4346 | echo $ECHO_N "checking for authenticate... $ECHO_C" >&6 | 5925 | echo $ECHO_N "checking for authenticate... $ECHO_C" >&6; } |
4347 | if test "${ac_cv_func_authenticate+set}" = set; then | 5926 | if test "${ac_cv_func_authenticate+set}" = set; then |
4348 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 5927 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4349 | else | 5928 | else |
@@ -4370,52 +5949,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
4370 | 5949 | ||
4371 | #undef authenticate | 5950 | #undef authenticate |
4372 | 5951 | ||
4373 | /* Override any gcc2 internal prototype to avoid an error. */ | 5952 | /* Override any GCC internal prototype to avoid an error. |
5953 | Use char because int might match the return type of a GCC | ||
5954 | builtin and then its argument prototype would still apply. */ | ||
4374 | #ifdef __cplusplus | 5955 | #ifdef __cplusplus |
4375 | extern "C" | 5956 | extern "C" |
4376 | { | ||
4377 | #endif | 5957 | #endif |
4378 | /* We use char because int might match the return type of a gcc2 | ||
4379 | builtin and then its argument prototype would still apply. */ | ||
4380 | char authenticate (); | 5958 | char authenticate (); |
4381 | /* The GNU C library defines this for functions which it implements | 5959 | /* The GNU C library defines this for functions which it implements |
4382 | to always fail with ENOSYS. Some functions are actually named | 5960 | to always fail with ENOSYS. Some functions are actually named |
4383 | something starting with __ and the normal name is an alias. */ | 5961 | something starting with __ and the normal name is an alias. */ |
4384 | #if defined (__stub_authenticate) || defined (__stub___authenticate) | 5962 | #if defined __stub_authenticate || defined __stub___authenticate |
4385 | choke me | 5963 | choke me |
4386 | #else | ||
4387 | char (*f) () = authenticate; | ||
4388 | #endif | ||
4389 | #ifdef __cplusplus | ||
4390 | } | ||
4391 | #endif | 5964 | #endif |
4392 | 5965 | ||
4393 | int | 5966 | int |
4394 | main () | 5967 | main () |
4395 | { | 5968 | { |
4396 | return f != authenticate; | 5969 | return authenticate (); |
4397 | ; | 5970 | ; |
4398 | return 0; | 5971 | return 0; |
4399 | } | 5972 | } |
4400 | _ACEOF | 5973 | _ACEOF |
4401 | rm -f conftest.$ac_objext conftest$ac_exeext | 5974 | rm -f conftest.$ac_objext conftest$ac_exeext |
4402 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 5975 | if { (ac_try="$ac_link" |
4403 | (eval $ac_link) 2>conftest.er1 | 5976 | case "(($ac_try" in |
5977 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
5978 | *) ac_try_echo=$ac_try;; | ||
5979 | esac | ||
5980 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5981 | (eval "$ac_link") 2>conftest.er1 | ||
4404 | ac_status=$? | 5982 | ac_status=$? |
4405 | grep -v '^ *+' conftest.er1 >conftest.err | 5983 | grep -v '^ *+' conftest.er1 >conftest.err |
4406 | rm -f conftest.er1 | 5984 | rm -f conftest.er1 |
4407 | cat conftest.err >&5 | 5985 | cat conftest.err >&5 |
4408 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5986 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4409 | (exit $ac_status); } && | 5987 | (exit $ac_status); } && |
4410 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 5988 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4411 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5989 | { (case "(($ac_try" in |
4412 | (eval $ac_try) 2>&5 | 5990 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
5991 | *) ac_try_echo=$ac_try;; | ||
5992 | esac | ||
5993 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
5994 | (eval "$ac_try") 2>&5 | ||
4413 | ac_status=$? | 5995 | ac_status=$? |
4414 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5996 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4415 | (exit $ac_status); }; } && | 5997 | (exit $ac_status); }; } && |
4416 | { ac_try='test -s conftest$ac_exeext' | 5998 | { ac_try='test -s conftest$ac_exeext' |
4417 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5999 | { (case "(($ac_try" in |
4418 | (eval $ac_try) 2>&5 | 6000 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6001 | *) ac_try_echo=$ac_try;; | ||
6002 | esac | ||
6003 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6004 | (eval "$ac_try") 2>&5 | ||
4419 | ac_status=$? | 6005 | ac_status=$? |
4420 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6006 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4421 | (exit $ac_status); }; }; then | 6007 | (exit $ac_status); }; }; then |
@@ -4424,13 +6010,14 @@ else | |||
4424 | echo "$as_me: failed program was:" >&5 | 6010 | echo "$as_me: failed program was:" >&5 |
4425 | sed 's/^/| /' conftest.$ac_ext >&5 | 6011 | sed 's/^/| /' conftest.$ac_ext >&5 |
4426 | 6012 | ||
4427 | ac_cv_func_authenticate=no | 6013 | ac_cv_func_authenticate=no |
4428 | fi | 6014 | fi |
4429 | rm -f conftest.err conftest.$ac_objext \ | 6015 | |
6016 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
4430 | conftest$ac_exeext conftest.$ac_ext | 6017 | conftest$ac_exeext conftest.$ac_ext |
4431 | fi | 6018 | fi |
4432 | echo "$as_me:$LINENO: result: $ac_cv_func_authenticate" >&5 | 6019 | { echo "$as_me:$LINENO: result: $ac_cv_func_authenticate" >&5 |
4433 | echo "${ECHO_T}$ac_cv_func_authenticate" >&6 | 6020 | echo "${ECHO_T}$ac_cv_func_authenticate" >&6; } |
4434 | if test $ac_cv_func_authenticate = yes; then | 6021 | if test $ac_cv_func_authenticate = yes; then |
4435 | 6022 | ||
4436 | cat >>confdefs.h <<\_ACEOF | 6023 | cat >>confdefs.h <<\_ACEOF |
@@ -4438,8 +6025,8 @@ cat >>confdefs.h <<\_ACEOF | |||
4438 | _ACEOF | 6025 | _ACEOF |
4439 | 6026 | ||
4440 | else | 6027 | else |
4441 | echo "$as_me:$LINENO: checking for authenticate in -ls" >&5 | 6028 | { echo "$as_me:$LINENO: checking for authenticate in -ls" >&5 |
4442 | echo $ECHO_N "checking for authenticate in -ls... $ECHO_C" >&6 | 6029 | echo $ECHO_N "checking for authenticate in -ls... $ECHO_C" >&6; } |
4443 | if test "${ac_cv_lib_s_authenticate+set}" = set; then | 6030 | if test "${ac_cv_lib_s_authenticate+set}" = set; then |
4444 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6031 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4445 | else | 6032 | else |
@@ -4452,39 +6039,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
4452 | cat >>conftest.$ac_ext <<_ACEOF | 6039 | cat >>conftest.$ac_ext <<_ACEOF |
4453 | /* end confdefs.h. */ | 6040 | /* end confdefs.h. */ |
4454 | 6041 | ||
4455 | /* Override any gcc2 internal prototype to avoid an error. */ | 6042 | /* Override any GCC internal prototype to avoid an error. |
6043 | Use char because int might match the return type of a GCC | ||
6044 | builtin and then its argument prototype would still apply. */ | ||
4456 | #ifdef __cplusplus | 6045 | #ifdef __cplusplus |
4457 | extern "C" | 6046 | extern "C" |
4458 | #endif | 6047 | #endif |
4459 | /* We use char because int might match the return type of a gcc2 | ||
4460 | builtin and then its argument prototype would still apply. */ | ||
4461 | char authenticate (); | 6048 | char authenticate (); |
4462 | int | 6049 | int |
4463 | main () | 6050 | main () |
4464 | { | 6051 | { |
4465 | authenticate (); | 6052 | return authenticate (); |
4466 | ; | 6053 | ; |
4467 | return 0; | 6054 | return 0; |
4468 | } | 6055 | } |
4469 | _ACEOF | 6056 | _ACEOF |
4470 | rm -f conftest.$ac_objext conftest$ac_exeext | 6057 | rm -f conftest.$ac_objext conftest$ac_exeext |
4471 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 6058 | if { (ac_try="$ac_link" |
4472 | (eval $ac_link) 2>conftest.er1 | 6059 | case "(($ac_try" in |
6060 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6061 | *) ac_try_echo=$ac_try;; | ||
6062 | esac | ||
6063 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6064 | (eval "$ac_link") 2>conftest.er1 | ||
4473 | ac_status=$? | 6065 | ac_status=$? |
4474 | grep -v '^ *+' conftest.er1 >conftest.err | 6066 | grep -v '^ *+' conftest.er1 >conftest.err |
4475 | rm -f conftest.er1 | 6067 | rm -f conftest.er1 |
4476 | cat conftest.err >&5 | 6068 | cat conftest.err >&5 |
4477 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6069 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4478 | (exit $ac_status); } && | 6070 | (exit $ac_status); } && |
4479 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6071 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4480 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6072 | { (case "(($ac_try" in |
4481 | (eval $ac_try) 2>&5 | 6073 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6074 | *) ac_try_echo=$ac_try;; | ||
6075 | esac | ||
6076 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6077 | (eval "$ac_try") 2>&5 | ||
4482 | ac_status=$? | 6078 | ac_status=$? |
4483 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6079 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4484 | (exit $ac_status); }; } && | 6080 | (exit $ac_status); }; } && |
4485 | { ac_try='test -s conftest$ac_exeext' | 6081 | { ac_try='test -s conftest$ac_exeext' |
4486 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6082 | { (case "(($ac_try" in |
4487 | (eval $ac_try) 2>&5 | 6083 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6084 | *) ac_try_echo=$ac_try;; | ||
6085 | esac | ||
6086 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6087 | (eval "$ac_try") 2>&5 | ||
4488 | ac_status=$? | 6088 | ac_status=$? |
4489 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6089 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4490 | (exit $ac_status); }; }; then | 6090 | (exit $ac_status); }; }; then |
@@ -4493,14 +6093,15 @@ else | |||
4493 | echo "$as_me: failed program was:" >&5 | 6093 | echo "$as_me: failed program was:" >&5 |
4494 | sed 's/^/| /' conftest.$ac_ext >&5 | 6094 | sed 's/^/| /' conftest.$ac_ext >&5 |
4495 | 6095 | ||
4496 | ac_cv_lib_s_authenticate=no | 6096 | ac_cv_lib_s_authenticate=no |
4497 | fi | 6097 | fi |
4498 | rm -f conftest.err conftest.$ac_objext \ | 6098 | |
6099 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
4499 | conftest$ac_exeext conftest.$ac_ext | 6100 | conftest$ac_exeext conftest.$ac_ext |
4500 | LIBS=$ac_check_lib_save_LIBS | 6101 | LIBS=$ac_check_lib_save_LIBS |
4501 | fi | 6102 | fi |
4502 | echo "$as_me:$LINENO: result: $ac_cv_lib_s_authenticate" >&5 | 6103 | { echo "$as_me:$LINENO: result: $ac_cv_lib_s_authenticate" >&5 |
4503 | echo "${ECHO_T}$ac_cv_lib_s_authenticate" >&6 | 6104 | echo "${ECHO_T}$ac_cv_lib_s_authenticate" >&6; } |
4504 | if test $ac_cv_lib_s_authenticate = yes; then | 6105 | if test $ac_cv_lib_s_authenticate = yes; then |
4505 | cat >>confdefs.h <<\_ACEOF | 6106 | cat >>confdefs.h <<\_ACEOF |
4506 | #define WITH_AIXAUTHENTICATE 1 | 6107 | #define WITH_AIXAUTHENTICATE 1 |
@@ -4513,8 +6114,8 @@ fi | |||
4513 | 6114 | ||
4514 | fi | 6115 | fi |
4515 | 6116 | ||
4516 | echo "$as_me:$LINENO: checking whether authenticate is declared" >&5 | 6117 | { echo "$as_me:$LINENO: checking whether authenticate is declared" >&5 |
4517 | echo $ECHO_N "checking whether authenticate is declared... $ECHO_C" >&6 | 6118 | echo $ECHO_N "checking whether authenticate is declared... $ECHO_C" >&6; } |
4518 | if test "${ac_cv_have_decl_authenticate+set}" = set; then | 6119 | if test "${ac_cv_have_decl_authenticate+set}" = set; then |
4519 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6120 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4520 | else | 6121 | else |
@@ -4531,6 +6132,7 @@ main () | |||
4531 | { | 6132 | { |
4532 | #ifndef authenticate | 6133 | #ifndef authenticate |
4533 | char *p = (char *) authenticate; | 6134 | char *p = (char *) authenticate; |
6135 | return !p; | ||
4534 | #endif | 6136 | #endif |
4535 | 6137 | ||
4536 | ; | 6138 | ; |
@@ -4538,23 +6140,36 @@ main () | |||
4538 | } | 6140 | } |
4539 | _ACEOF | 6141 | _ACEOF |
4540 | rm -f conftest.$ac_objext | 6142 | rm -f conftest.$ac_objext |
4541 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6143 | if { (ac_try="$ac_compile" |
4542 | (eval $ac_compile) 2>conftest.er1 | 6144 | case "(($ac_try" in |
6145 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6146 | *) ac_try_echo=$ac_try;; | ||
6147 | esac | ||
6148 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6149 | (eval "$ac_compile") 2>conftest.er1 | ||
4543 | ac_status=$? | 6150 | ac_status=$? |
4544 | grep -v '^ *+' conftest.er1 >conftest.err | 6151 | grep -v '^ *+' conftest.er1 >conftest.err |
4545 | rm -f conftest.er1 | 6152 | rm -f conftest.er1 |
4546 | cat conftest.err >&5 | 6153 | cat conftest.err >&5 |
4547 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6154 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4548 | (exit $ac_status); } && | 6155 | (exit $ac_status); } && |
4549 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6156 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4550 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6157 | { (case "(($ac_try" in |
4551 | (eval $ac_try) 2>&5 | 6158 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6159 | *) ac_try_echo=$ac_try;; | ||
6160 | esac | ||
6161 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6162 | (eval "$ac_try") 2>&5 | ||
4552 | ac_status=$? | 6163 | ac_status=$? |
4553 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6164 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4554 | (exit $ac_status); }; } && | 6165 | (exit $ac_status); }; } && |
4555 | { ac_try='test -s conftest.$ac_objext' | 6166 | { ac_try='test -s conftest.$ac_objext' |
4556 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6167 | { (case "(($ac_try" in |
4557 | (eval $ac_try) 2>&5 | 6168 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6169 | *) ac_try_echo=$ac_try;; | ||
6170 | esac | ||
6171 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6172 | (eval "$ac_try") 2>&5 | ||
4558 | ac_status=$? | 6173 | ac_status=$? |
4559 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6174 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4560 | (exit $ac_status); }; }; then | 6175 | (exit $ac_status); }; }; then |
@@ -4563,12 +6178,13 @@ else | |||
4563 | echo "$as_me: failed program was:" >&5 | 6178 | echo "$as_me: failed program was:" >&5 |
4564 | sed 's/^/| /' conftest.$ac_ext >&5 | 6179 | sed 's/^/| /' conftest.$ac_ext >&5 |
4565 | 6180 | ||
4566 | ac_cv_have_decl_authenticate=no | 6181 | ac_cv_have_decl_authenticate=no |
4567 | fi | 6182 | fi |
4568 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6183 | |
6184 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4569 | fi | 6185 | fi |
4570 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_authenticate" >&5 | 6186 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_authenticate" >&5 |
4571 | echo "${ECHO_T}$ac_cv_have_decl_authenticate" >&6 | 6187 | echo "${ECHO_T}$ac_cv_have_decl_authenticate" >&6; } |
4572 | if test $ac_cv_have_decl_authenticate = yes; then | 6188 | if test $ac_cv_have_decl_authenticate = yes; then |
4573 | 6189 | ||
4574 | cat >>confdefs.h <<_ACEOF | 6190 | cat >>confdefs.h <<_ACEOF |
@@ -4583,8 +6199,8 @@ _ACEOF | |||
4583 | 6199 | ||
4584 | 6200 | ||
4585 | fi | 6201 | fi |
4586 | echo "$as_me:$LINENO: checking whether loginrestrictions is declared" >&5 | 6202 | { echo "$as_me:$LINENO: checking whether loginrestrictions is declared" >&5 |
4587 | echo $ECHO_N "checking whether loginrestrictions is declared... $ECHO_C" >&6 | 6203 | echo $ECHO_N "checking whether loginrestrictions is declared... $ECHO_C" >&6; } |
4588 | if test "${ac_cv_have_decl_loginrestrictions+set}" = set; then | 6204 | if test "${ac_cv_have_decl_loginrestrictions+set}" = set; then |
4589 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6205 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4590 | else | 6206 | else |
@@ -4601,6 +6217,7 @@ main () | |||
4601 | { | 6217 | { |
4602 | #ifndef loginrestrictions | 6218 | #ifndef loginrestrictions |
4603 | char *p = (char *) loginrestrictions; | 6219 | char *p = (char *) loginrestrictions; |
6220 | return !p; | ||
4604 | #endif | 6221 | #endif |
4605 | 6222 | ||
4606 | ; | 6223 | ; |
@@ -4608,23 +6225,36 @@ main () | |||
4608 | } | 6225 | } |
4609 | _ACEOF | 6226 | _ACEOF |
4610 | rm -f conftest.$ac_objext | 6227 | rm -f conftest.$ac_objext |
4611 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6228 | if { (ac_try="$ac_compile" |
4612 | (eval $ac_compile) 2>conftest.er1 | 6229 | case "(($ac_try" in |
6230 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6231 | *) ac_try_echo=$ac_try;; | ||
6232 | esac | ||
6233 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6234 | (eval "$ac_compile") 2>conftest.er1 | ||
4613 | ac_status=$? | 6235 | ac_status=$? |
4614 | grep -v '^ *+' conftest.er1 >conftest.err | 6236 | grep -v '^ *+' conftest.er1 >conftest.err |
4615 | rm -f conftest.er1 | 6237 | rm -f conftest.er1 |
4616 | cat conftest.err >&5 | 6238 | cat conftest.err >&5 |
4617 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6239 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4618 | (exit $ac_status); } && | 6240 | (exit $ac_status); } && |
4619 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6241 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4620 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6242 | { (case "(($ac_try" in |
4621 | (eval $ac_try) 2>&5 | 6243 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6244 | *) ac_try_echo=$ac_try;; | ||
6245 | esac | ||
6246 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6247 | (eval "$ac_try") 2>&5 | ||
4622 | ac_status=$? | 6248 | ac_status=$? |
4623 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6249 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4624 | (exit $ac_status); }; } && | 6250 | (exit $ac_status); }; } && |
4625 | { ac_try='test -s conftest.$ac_objext' | 6251 | { ac_try='test -s conftest.$ac_objext' |
4626 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6252 | { (case "(($ac_try" in |
4627 | (eval $ac_try) 2>&5 | 6253 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6254 | *) ac_try_echo=$ac_try;; | ||
6255 | esac | ||
6256 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6257 | (eval "$ac_try") 2>&5 | ||
4628 | ac_status=$? | 6258 | ac_status=$? |
4629 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6259 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4630 | (exit $ac_status); }; }; then | 6260 | (exit $ac_status); }; }; then |
@@ -4633,12 +6263,13 @@ else | |||
4633 | echo "$as_me: failed program was:" >&5 | 6263 | echo "$as_me: failed program was:" >&5 |
4634 | sed 's/^/| /' conftest.$ac_ext >&5 | 6264 | sed 's/^/| /' conftest.$ac_ext >&5 |
4635 | 6265 | ||
4636 | ac_cv_have_decl_loginrestrictions=no | 6266 | ac_cv_have_decl_loginrestrictions=no |
4637 | fi | 6267 | fi |
4638 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6268 | |
6269 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4639 | fi | 6270 | fi |
4640 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_loginrestrictions" >&5 | 6271 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_loginrestrictions" >&5 |
4641 | echo "${ECHO_T}$ac_cv_have_decl_loginrestrictions" >&6 | 6272 | echo "${ECHO_T}$ac_cv_have_decl_loginrestrictions" >&6; } |
4642 | if test $ac_cv_have_decl_loginrestrictions = yes; then | 6273 | if test $ac_cv_have_decl_loginrestrictions = yes; then |
4643 | 6274 | ||
4644 | cat >>confdefs.h <<_ACEOF | 6275 | cat >>confdefs.h <<_ACEOF |
@@ -4653,8 +6284,8 @@ _ACEOF | |||
4653 | 6284 | ||
4654 | 6285 | ||
4655 | fi | 6286 | fi |
4656 | echo "$as_me:$LINENO: checking whether loginsuccess is declared" >&5 | 6287 | { echo "$as_me:$LINENO: checking whether loginsuccess is declared" >&5 |
4657 | echo $ECHO_N "checking whether loginsuccess is declared... $ECHO_C" >&6 | 6288 | echo $ECHO_N "checking whether loginsuccess is declared... $ECHO_C" >&6; } |
4658 | if test "${ac_cv_have_decl_loginsuccess+set}" = set; then | 6289 | if test "${ac_cv_have_decl_loginsuccess+set}" = set; then |
4659 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6290 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4660 | else | 6291 | else |
@@ -4671,6 +6302,7 @@ main () | |||
4671 | { | 6302 | { |
4672 | #ifndef loginsuccess | 6303 | #ifndef loginsuccess |
4673 | char *p = (char *) loginsuccess; | 6304 | char *p = (char *) loginsuccess; |
6305 | return !p; | ||
4674 | #endif | 6306 | #endif |
4675 | 6307 | ||
4676 | ; | 6308 | ; |
@@ -4678,23 +6310,36 @@ main () | |||
4678 | } | 6310 | } |
4679 | _ACEOF | 6311 | _ACEOF |
4680 | rm -f conftest.$ac_objext | 6312 | rm -f conftest.$ac_objext |
4681 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6313 | if { (ac_try="$ac_compile" |
4682 | (eval $ac_compile) 2>conftest.er1 | 6314 | case "(($ac_try" in |
6315 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6316 | *) ac_try_echo=$ac_try;; | ||
6317 | esac | ||
6318 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6319 | (eval "$ac_compile") 2>conftest.er1 | ||
4683 | ac_status=$? | 6320 | ac_status=$? |
4684 | grep -v '^ *+' conftest.er1 >conftest.err | 6321 | grep -v '^ *+' conftest.er1 >conftest.err |
4685 | rm -f conftest.er1 | 6322 | rm -f conftest.er1 |
4686 | cat conftest.err >&5 | 6323 | cat conftest.err >&5 |
4687 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6324 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4688 | (exit $ac_status); } && | 6325 | (exit $ac_status); } && |
4689 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6326 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4690 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6327 | { (case "(($ac_try" in |
4691 | (eval $ac_try) 2>&5 | 6328 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6329 | *) ac_try_echo=$ac_try;; | ||
6330 | esac | ||
6331 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6332 | (eval "$ac_try") 2>&5 | ||
4692 | ac_status=$? | 6333 | ac_status=$? |
4693 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6334 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4694 | (exit $ac_status); }; } && | 6335 | (exit $ac_status); }; } && |
4695 | { ac_try='test -s conftest.$ac_objext' | 6336 | { ac_try='test -s conftest.$ac_objext' |
4696 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6337 | { (case "(($ac_try" in |
4697 | (eval $ac_try) 2>&5 | 6338 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6339 | *) ac_try_echo=$ac_try;; | ||
6340 | esac | ||
6341 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6342 | (eval "$ac_try") 2>&5 | ||
4698 | ac_status=$? | 6343 | ac_status=$? |
4699 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6344 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4700 | (exit $ac_status); }; }; then | 6345 | (exit $ac_status); }; }; then |
@@ -4703,12 +6348,13 @@ else | |||
4703 | echo "$as_me: failed program was:" >&5 | 6348 | echo "$as_me: failed program was:" >&5 |
4704 | sed 's/^/| /' conftest.$ac_ext >&5 | 6349 | sed 's/^/| /' conftest.$ac_ext >&5 |
4705 | 6350 | ||
4706 | ac_cv_have_decl_loginsuccess=no | 6351 | ac_cv_have_decl_loginsuccess=no |
4707 | fi | 6352 | fi |
4708 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6353 | |
6354 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4709 | fi | 6355 | fi |
4710 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_loginsuccess" >&5 | 6356 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_loginsuccess" >&5 |
4711 | echo "${ECHO_T}$ac_cv_have_decl_loginsuccess" >&6 | 6357 | echo "${ECHO_T}$ac_cv_have_decl_loginsuccess" >&6; } |
4712 | if test $ac_cv_have_decl_loginsuccess = yes; then | 6358 | if test $ac_cv_have_decl_loginsuccess = yes; then |
4713 | 6359 | ||
4714 | cat >>confdefs.h <<_ACEOF | 6360 | cat >>confdefs.h <<_ACEOF |
@@ -4723,8 +6369,8 @@ _ACEOF | |||
4723 | 6369 | ||
4724 | 6370 | ||
4725 | fi | 6371 | fi |
4726 | echo "$as_me:$LINENO: checking whether passwdexpired is declared" >&5 | 6372 | { echo "$as_me:$LINENO: checking whether passwdexpired is declared" >&5 |
4727 | echo $ECHO_N "checking whether passwdexpired is declared... $ECHO_C" >&6 | 6373 | echo $ECHO_N "checking whether passwdexpired is declared... $ECHO_C" >&6; } |
4728 | if test "${ac_cv_have_decl_passwdexpired+set}" = set; then | 6374 | if test "${ac_cv_have_decl_passwdexpired+set}" = set; then |
4729 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6375 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4730 | else | 6376 | else |
@@ -4741,6 +6387,7 @@ main () | |||
4741 | { | 6387 | { |
4742 | #ifndef passwdexpired | 6388 | #ifndef passwdexpired |
4743 | char *p = (char *) passwdexpired; | 6389 | char *p = (char *) passwdexpired; |
6390 | return !p; | ||
4744 | #endif | 6391 | #endif |
4745 | 6392 | ||
4746 | ; | 6393 | ; |
@@ -4748,23 +6395,36 @@ main () | |||
4748 | } | 6395 | } |
4749 | _ACEOF | 6396 | _ACEOF |
4750 | rm -f conftest.$ac_objext | 6397 | rm -f conftest.$ac_objext |
4751 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6398 | if { (ac_try="$ac_compile" |
4752 | (eval $ac_compile) 2>conftest.er1 | 6399 | case "(($ac_try" in |
6400 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6401 | *) ac_try_echo=$ac_try;; | ||
6402 | esac | ||
6403 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6404 | (eval "$ac_compile") 2>conftest.er1 | ||
4753 | ac_status=$? | 6405 | ac_status=$? |
4754 | grep -v '^ *+' conftest.er1 >conftest.err | 6406 | grep -v '^ *+' conftest.er1 >conftest.err |
4755 | rm -f conftest.er1 | 6407 | rm -f conftest.er1 |
4756 | cat conftest.err >&5 | 6408 | cat conftest.err >&5 |
4757 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6409 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4758 | (exit $ac_status); } && | 6410 | (exit $ac_status); } && |
4759 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6411 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4760 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6412 | { (case "(($ac_try" in |
4761 | (eval $ac_try) 2>&5 | 6413 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6414 | *) ac_try_echo=$ac_try;; | ||
6415 | esac | ||
6416 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6417 | (eval "$ac_try") 2>&5 | ||
4762 | ac_status=$? | 6418 | ac_status=$? |
4763 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6419 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4764 | (exit $ac_status); }; } && | 6420 | (exit $ac_status); }; } && |
4765 | { ac_try='test -s conftest.$ac_objext' | 6421 | { ac_try='test -s conftest.$ac_objext' |
4766 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6422 | { (case "(($ac_try" in |
4767 | (eval $ac_try) 2>&5 | 6423 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6424 | *) ac_try_echo=$ac_try;; | ||
6425 | esac | ||
6426 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6427 | (eval "$ac_try") 2>&5 | ||
4768 | ac_status=$? | 6428 | ac_status=$? |
4769 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6429 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4770 | (exit $ac_status); }; }; then | 6430 | (exit $ac_status); }; }; then |
@@ -4773,12 +6433,13 @@ else | |||
4773 | echo "$as_me: failed program was:" >&5 | 6433 | echo "$as_me: failed program was:" >&5 |
4774 | sed 's/^/| /' conftest.$ac_ext >&5 | 6434 | sed 's/^/| /' conftest.$ac_ext >&5 |
4775 | 6435 | ||
4776 | ac_cv_have_decl_passwdexpired=no | 6436 | ac_cv_have_decl_passwdexpired=no |
4777 | fi | 6437 | fi |
4778 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6438 | |
6439 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4779 | fi | 6440 | fi |
4780 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_passwdexpired" >&5 | 6441 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_passwdexpired" >&5 |
4781 | echo "${ECHO_T}$ac_cv_have_decl_passwdexpired" >&6 | 6442 | echo "${ECHO_T}$ac_cv_have_decl_passwdexpired" >&6; } |
4782 | if test $ac_cv_have_decl_passwdexpired = yes; then | 6443 | if test $ac_cv_have_decl_passwdexpired = yes; then |
4783 | 6444 | ||
4784 | cat >>confdefs.h <<_ACEOF | 6445 | cat >>confdefs.h <<_ACEOF |
@@ -4793,8 +6454,8 @@ _ACEOF | |||
4793 | 6454 | ||
4794 | 6455 | ||
4795 | fi | 6456 | fi |
4796 | echo "$as_me:$LINENO: checking whether setauthdb is declared" >&5 | 6457 | { echo "$as_me:$LINENO: checking whether setauthdb is declared" >&5 |
4797 | echo $ECHO_N "checking whether setauthdb is declared... $ECHO_C" >&6 | 6458 | echo $ECHO_N "checking whether setauthdb is declared... $ECHO_C" >&6; } |
4798 | if test "${ac_cv_have_decl_setauthdb+set}" = set; then | 6459 | if test "${ac_cv_have_decl_setauthdb+set}" = set; then |
4799 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6460 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4800 | else | 6461 | else |
@@ -4811,6 +6472,7 @@ main () | |||
4811 | { | 6472 | { |
4812 | #ifndef setauthdb | 6473 | #ifndef setauthdb |
4813 | char *p = (char *) setauthdb; | 6474 | char *p = (char *) setauthdb; |
6475 | return !p; | ||
4814 | #endif | 6476 | #endif |
4815 | 6477 | ||
4816 | ; | 6478 | ; |
@@ -4818,23 +6480,36 @@ main () | |||
4818 | } | 6480 | } |
4819 | _ACEOF | 6481 | _ACEOF |
4820 | rm -f conftest.$ac_objext | 6482 | rm -f conftest.$ac_objext |
4821 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6483 | if { (ac_try="$ac_compile" |
4822 | (eval $ac_compile) 2>conftest.er1 | 6484 | case "(($ac_try" in |
6485 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6486 | *) ac_try_echo=$ac_try;; | ||
6487 | esac | ||
6488 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6489 | (eval "$ac_compile") 2>conftest.er1 | ||
4823 | ac_status=$? | 6490 | ac_status=$? |
4824 | grep -v '^ *+' conftest.er1 >conftest.err | 6491 | grep -v '^ *+' conftest.er1 >conftest.err |
4825 | rm -f conftest.er1 | 6492 | rm -f conftest.er1 |
4826 | cat conftest.err >&5 | 6493 | cat conftest.err >&5 |
4827 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6494 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4828 | (exit $ac_status); } && | 6495 | (exit $ac_status); } && |
4829 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6496 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4830 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6497 | { (case "(($ac_try" in |
4831 | (eval $ac_try) 2>&5 | 6498 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6499 | *) ac_try_echo=$ac_try;; | ||
6500 | esac | ||
6501 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6502 | (eval "$ac_try") 2>&5 | ||
4832 | ac_status=$? | 6503 | ac_status=$? |
4833 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6504 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4834 | (exit $ac_status); }; } && | 6505 | (exit $ac_status); }; } && |
4835 | { ac_try='test -s conftest.$ac_objext' | 6506 | { ac_try='test -s conftest.$ac_objext' |
4836 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6507 | { (case "(($ac_try" in |
4837 | (eval $ac_try) 2>&5 | 6508 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6509 | *) ac_try_echo=$ac_try;; | ||
6510 | esac | ||
6511 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6512 | (eval "$ac_try") 2>&5 | ||
4838 | ac_status=$? | 6513 | ac_status=$? |
4839 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4840 | (exit $ac_status); }; }; then | 6515 | (exit $ac_status); }; }; then |
@@ -4843,12 +6518,13 @@ else | |||
4843 | echo "$as_me: failed program was:" >&5 | 6518 | echo "$as_me: failed program was:" >&5 |
4844 | sed 's/^/| /' conftest.$ac_ext >&5 | 6519 | sed 's/^/| /' conftest.$ac_ext >&5 |
4845 | 6520 | ||
4846 | ac_cv_have_decl_setauthdb=no | 6521 | ac_cv_have_decl_setauthdb=no |
4847 | fi | 6522 | fi |
4848 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6523 | |
6524 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4849 | fi | 6525 | fi |
4850 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_setauthdb" >&5 | 6526 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_setauthdb" >&5 |
4851 | echo "${ECHO_T}$ac_cv_have_decl_setauthdb" >&6 | 6527 | echo "${ECHO_T}$ac_cv_have_decl_setauthdb" >&6; } |
4852 | if test $ac_cv_have_decl_setauthdb = yes; then | 6528 | if test $ac_cv_have_decl_setauthdb = yes; then |
4853 | 6529 | ||
4854 | cat >>confdefs.h <<_ACEOF | 6530 | cat >>confdefs.h <<_ACEOF |
@@ -4865,8 +6541,8 @@ _ACEOF | |||
4865 | fi | 6541 | fi |
4866 | 6542 | ||
4867 | 6543 | ||
4868 | echo "$as_me:$LINENO: checking whether loginfailed is declared" >&5 | 6544 | { echo "$as_me:$LINENO: checking whether loginfailed is declared" >&5 |
4869 | echo $ECHO_N "checking whether loginfailed is declared... $ECHO_C" >&6 | 6545 | echo $ECHO_N "checking whether loginfailed is declared... $ECHO_C" >&6; } |
4870 | if test "${ac_cv_have_decl_loginfailed+set}" = set; then | 6546 | if test "${ac_cv_have_decl_loginfailed+set}" = set; then |
4871 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6547 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
4872 | else | 6548 | else |
@@ -4884,6 +6560,7 @@ main () | |||
4884 | { | 6560 | { |
4885 | #ifndef loginfailed | 6561 | #ifndef loginfailed |
4886 | char *p = (char *) loginfailed; | 6562 | char *p = (char *) loginfailed; |
6563 | return !p; | ||
4887 | #endif | 6564 | #endif |
4888 | 6565 | ||
4889 | ; | 6566 | ; |
@@ -4891,23 +6568,36 @@ main () | |||
4891 | } | 6568 | } |
4892 | _ACEOF | 6569 | _ACEOF |
4893 | rm -f conftest.$ac_objext | 6570 | rm -f conftest.$ac_objext |
4894 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6571 | if { (ac_try="$ac_compile" |
4895 | (eval $ac_compile) 2>conftest.er1 | 6572 | case "(($ac_try" in |
6573 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6574 | *) ac_try_echo=$ac_try;; | ||
6575 | esac | ||
6576 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6577 | (eval "$ac_compile") 2>conftest.er1 | ||
4896 | ac_status=$? | 6578 | ac_status=$? |
4897 | grep -v '^ *+' conftest.er1 >conftest.err | 6579 | grep -v '^ *+' conftest.er1 >conftest.err |
4898 | rm -f conftest.er1 | 6580 | rm -f conftest.er1 |
4899 | cat conftest.err >&5 | 6581 | cat conftest.err >&5 |
4900 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6582 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4901 | (exit $ac_status); } && | 6583 | (exit $ac_status); } && |
4902 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6584 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4903 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6585 | { (case "(($ac_try" in |
4904 | (eval $ac_try) 2>&5 | 6586 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6587 | *) ac_try_echo=$ac_try;; | ||
6588 | esac | ||
6589 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6590 | (eval "$ac_try") 2>&5 | ||
4905 | ac_status=$? | 6591 | ac_status=$? |
4906 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6592 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4907 | (exit $ac_status); }; } && | 6593 | (exit $ac_status); }; } && |
4908 | { ac_try='test -s conftest.$ac_objext' | 6594 | { ac_try='test -s conftest.$ac_objext' |
4909 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6595 | { (case "(($ac_try" in |
4910 | (eval $ac_try) 2>&5 | 6596 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6597 | *) ac_try_echo=$ac_try;; | ||
6598 | esac | ||
6599 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6600 | (eval "$ac_try") 2>&5 | ||
4911 | ac_status=$? | 6601 | ac_status=$? |
4912 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6602 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4913 | (exit $ac_status); }; }; then | 6603 | (exit $ac_status); }; }; then |
@@ -4916,20 +6606,21 @@ else | |||
4916 | echo "$as_me: failed program was:" >&5 | 6606 | echo "$as_me: failed program was:" >&5 |
4917 | sed 's/^/| /' conftest.$ac_ext >&5 | 6607 | sed 's/^/| /' conftest.$ac_ext >&5 |
4918 | 6608 | ||
4919 | ac_cv_have_decl_loginfailed=no | 6609 | ac_cv_have_decl_loginfailed=no |
4920 | fi | 6610 | fi |
4921 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6611 | |
6612 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4922 | fi | 6613 | fi |
4923 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_loginfailed" >&5 | 6614 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_loginfailed" >&5 |
4924 | echo "${ECHO_T}$ac_cv_have_decl_loginfailed" >&6 | 6615 | echo "${ECHO_T}$ac_cv_have_decl_loginfailed" >&6; } |
4925 | if test $ac_cv_have_decl_loginfailed = yes; then | 6616 | if test $ac_cv_have_decl_loginfailed = yes; then |
4926 | 6617 | ||
4927 | cat >>confdefs.h <<_ACEOF | 6618 | cat >>confdefs.h <<_ACEOF |
4928 | #define HAVE_DECL_LOGINFAILED 1 | 6619 | #define HAVE_DECL_LOGINFAILED 1 |
4929 | _ACEOF | 6620 | _ACEOF |
4930 | 6621 | ||
4931 | echo "$as_me:$LINENO: checking if loginfailed takes 4 arguments" >&5 | 6622 | { echo "$as_me:$LINENO: checking if loginfailed takes 4 arguments" >&5 |
4932 | echo $ECHO_N "checking if loginfailed takes 4 arguments... $ECHO_C" >&6 | 6623 | echo $ECHO_N "checking if loginfailed takes 4 arguments... $ECHO_C" >&6; } |
4933 | cat >conftest.$ac_ext <<_ACEOF | 6624 | cat >conftest.$ac_ext <<_ACEOF |
4934 | /* confdefs.h. */ | 6625 | /* confdefs.h. */ |
4935 | _ACEOF | 6626 | _ACEOF |
@@ -4946,28 +6637,41 @@ main () | |||
4946 | } | 6637 | } |
4947 | _ACEOF | 6638 | _ACEOF |
4948 | rm -f conftest.$ac_objext | 6639 | rm -f conftest.$ac_objext |
4949 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 6640 | if { (ac_try="$ac_compile" |
4950 | (eval $ac_compile) 2>conftest.er1 | 6641 | case "(($ac_try" in |
6642 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6643 | *) ac_try_echo=$ac_try;; | ||
6644 | esac | ||
6645 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6646 | (eval "$ac_compile") 2>conftest.er1 | ||
4951 | ac_status=$? | 6647 | ac_status=$? |
4952 | grep -v '^ *+' conftest.er1 >conftest.err | 6648 | grep -v '^ *+' conftest.er1 >conftest.err |
4953 | rm -f conftest.er1 | 6649 | rm -f conftest.er1 |
4954 | cat conftest.err >&5 | 6650 | cat conftest.err >&5 |
4955 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6651 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4956 | (exit $ac_status); } && | 6652 | (exit $ac_status); } && |
4957 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6653 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4958 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6654 | { (case "(($ac_try" in |
4959 | (eval $ac_try) 2>&5 | 6655 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6656 | *) ac_try_echo=$ac_try;; | ||
6657 | esac | ||
6658 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6659 | (eval "$ac_try") 2>&5 | ||
4960 | ac_status=$? | 6660 | ac_status=$? |
4961 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6661 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4962 | (exit $ac_status); }; } && | 6662 | (exit $ac_status); }; } && |
4963 | { ac_try='test -s conftest.$ac_objext' | 6663 | { ac_try='test -s conftest.$ac_objext' |
4964 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6664 | { (case "(($ac_try" in |
4965 | (eval $ac_try) 2>&5 | 6665 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6666 | *) ac_try_echo=$ac_try;; | ||
6667 | esac | ||
6668 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6669 | (eval "$ac_try") 2>&5 | ||
4966 | ac_status=$? | 6670 | ac_status=$? |
4967 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6671 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4968 | (exit $ac_status); }; }; then | 6672 | (exit $ac_status); }; }; then |
4969 | echo "$as_me:$LINENO: result: yes" >&5 | 6673 | { echo "$as_me:$LINENO: result: yes" >&5 |
4970 | echo "${ECHO_T}yes" >&6 | 6674 | echo "${ECHO_T}yes" >&6; } |
4971 | 6675 | ||
4972 | cat >>confdefs.h <<\_ACEOF | 6676 | cat >>confdefs.h <<\_ACEOF |
4973 | #define AIX_LOGINFAILED_4ARG 1 | 6677 | #define AIX_LOGINFAILED_4ARG 1 |
@@ -4977,11 +6681,12 @@ else | |||
4977 | echo "$as_me: failed program was:" >&5 | 6681 | echo "$as_me: failed program was:" >&5 |
4978 | sed 's/^/| /' conftest.$ac_ext >&5 | 6682 | sed 's/^/| /' conftest.$ac_ext >&5 |
4979 | 6683 | ||
4980 | echo "$as_me:$LINENO: result: no" >&5 | 6684 | { echo "$as_me:$LINENO: result: no" >&5 |
4981 | echo "${ECHO_T}no" >&6 | 6685 | echo "${ECHO_T}no" >&6; } |
4982 | 6686 | ||
4983 | fi | 6687 | fi |
4984 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 6688 | |
6689 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
4985 | else | 6690 | else |
4986 | cat >>confdefs.h <<_ACEOF | 6691 | cat >>confdefs.h <<_ACEOF |
4987 | #define HAVE_DECL_LOGINFAILED 0 | 6692 | #define HAVE_DECL_LOGINFAILED 0 |
@@ -4995,9 +6700,9 @@ fi | |||
4995 | for ac_func in setauthdb | 6700 | for ac_func in setauthdb |
4996 | do | 6701 | do |
4997 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 6702 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
4998 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 6703 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
4999 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 6704 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
5000 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 6705 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
5001 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 6706 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
5002 | else | 6707 | else |
5003 | cat >conftest.$ac_ext <<_ACEOF | 6708 | cat >conftest.$ac_ext <<_ACEOF |
@@ -5023,52 +6728,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
5023 | 6728 | ||
5024 | #undef $ac_func | 6729 | #undef $ac_func |
5025 | 6730 | ||
5026 | /* Override any gcc2 internal prototype to avoid an error. */ | 6731 | /* Override any GCC internal prototype to avoid an error. |
6732 | Use char because int might match the return type of a GCC | ||
6733 | builtin and then its argument prototype would still apply. */ | ||
5027 | #ifdef __cplusplus | 6734 | #ifdef __cplusplus |
5028 | extern "C" | 6735 | extern "C" |
5029 | { | ||
5030 | #endif | 6736 | #endif |
5031 | /* We use char because int might match the return type of a gcc2 | ||
5032 | builtin and then its argument prototype would still apply. */ | ||
5033 | char $ac_func (); | 6737 | char $ac_func (); |
5034 | /* The GNU C library defines this for functions which it implements | 6738 | /* The GNU C library defines this for functions which it implements |
5035 | to always fail with ENOSYS. Some functions are actually named | 6739 | to always fail with ENOSYS. Some functions are actually named |
5036 | something starting with __ and the normal name is an alias. */ | 6740 | something starting with __ and the normal name is an alias. */ |
5037 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 6741 | #if defined __stub_$ac_func || defined __stub___$ac_func |
5038 | choke me | 6742 | choke me |
5039 | #else | ||
5040 | char (*f) () = $ac_func; | ||
5041 | #endif | ||
5042 | #ifdef __cplusplus | ||
5043 | } | ||
5044 | #endif | 6743 | #endif |
5045 | 6744 | ||
5046 | int | 6745 | int |
5047 | main () | 6746 | main () |
5048 | { | 6747 | { |
5049 | return f != $ac_func; | 6748 | return $ac_func (); |
5050 | ; | 6749 | ; |
5051 | return 0; | 6750 | return 0; |
5052 | } | 6751 | } |
5053 | _ACEOF | 6752 | _ACEOF |
5054 | rm -f conftest.$ac_objext conftest$ac_exeext | 6753 | rm -f conftest.$ac_objext conftest$ac_exeext |
5055 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 6754 | if { (ac_try="$ac_link" |
5056 | (eval $ac_link) 2>conftest.er1 | 6755 | case "(($ac_try" in |
6756 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6757 | *) ac_try_echo=$ac_try;; | ||
6758 | esac | ||
6759 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6760 | (eval "$ac_link") 2>conftest.er1 | ||
5057 | ac_status=$? | 6761 | ac_status=$? |
5058 | grep -v '^ *+' conftest.er1 >conftest.err | 6762 | grep -v '^ *+' conftest.er1 >conftest.err |
5059 | rm -f conftest.er1 | 6763 | rm -f conftest.er1 |
5060 | cat conftest.err >&5 | 6764 | cat conftest.err >&5 |
5061 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6765 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5062 | (exit $ac_status); } && | 6766 | (exit $ac_status); } && |
5063 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 6767 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5064 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6768 | { (case "(($ac_try" in |
5065 | (eval $ac_try) 2>&5 | 6769 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6770 | *) ac_try_echo=$ac_try;; | ||
6771 | esac | ||
6772 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6773 | (eval "$ac_try") 2>&5 | ||
5066 | ac_status=$? | 6774 | ac_status=$? |
5067 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6775 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5068 | (exit $ac_status); }; } && | 6776 | (exit $ac_status); }; } && |
5069 | { ac_try='test -s conftest$ac_exeext' | 6777 | { ac_try='test -s conftest$ac_exeext' |
5070 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6778 | { (case "(($ac_try" in |
5071 | (eval $ac_try) 2>&5 | 6779 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6780 | *) ac_try_echo=$ac_try;; | ||
6781 | esac | ||
6782 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6783 | (eval "$ac_try") 2>&5 | ||
5072 | ac_status=$? | 6784 | ac_status=$? |
5073 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6785 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5074 | (exit $ac_status); }; }; then | 6786 | (exit $ac_status); }; }; then |
@@ -5077,13 +6789,15 @@ else | |||
5077 | echo "$as_me: failed program was:" >&5 | 6789 | echo "$as_me: failed program was:" >&5 |
5078 | sed 's/^/| /' conftest.$ac_ext >&5 | 6790 | sed 's/^/| /' conftest.$ac_ext >&5 |
5079 | 6791 | ||
5080 | eval "$as_ac_var=no" | 6792 | eval "$as_ac_var=no" |
5081 | fi | 6793 | fi |
5082 | rm -f conftest.err conftest.$ac_objext \ | 6794 | |
6795 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
5083 | conftest$ac_exeext conftest.$ac_ext | 6796 | conftest$ac_exeext conftest.$ac_ext |
5084 | fi | 6797 | fi |
5085 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 6798 | ac_res=`eval echo '${'$as_ac_var'}'` |
5086 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 6799 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
6800 | echo "${ECHO_T}$ac_res" >&6; } | ||
5087 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 6801 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
5088 | cat >>confdefs.h <<_ACEOF | 6802 | cat >>confdefs.h <<_ACEOF |
5089 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 6803 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -5192,11 +6906,11 @@ _ACEOF | |||
5192 | 6906 | ||
5193 | ;; | 6907 | ;; |
5194 | *-*-darwin*) | 6908 | *-*-darwin*) |
5195 | echo "$as_me:$LINENO: checking if we have working getaddrinfo" >&5 | 6909 | { echo "$as_me:$LINENO: checking if we have working getaddrinfo" >&5 |
5196 | echo $ECHO_N "checking if we have working getaddrinfo... $ECHO_C" >&6 | 6910 | echo $ECHO_N "checking if we have working getaddrinfo... $ECHO_C" >&6; } |
5197 | if test "$cross_compiling" = yes; then | 6911 | if test "$cross_compiling" = yes; then |
5198 | echo "$as_me:$LINENO: result: assume it is working" >&5 | 6912 | { echo "$as_me:$LINENO: result: assume it is working" >&5 |
5199 | echo "${ECHO_T}assume it is working" >&6 | 6913 | echo "${ECHO_T}assume it is working" >&6; } |
5200 | else | 6914 | else |
5201 | cat >conftest.$ac_ext <<_ACEOF | 6915 | cat >conftest.$ac_ext <<_ACEOF |
5202 | /* confdefs.h. */ | 6916 | /* confdefs.h. */ |
@@ -5212,34 +6926,45 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) | |||
5212 | } | 6926 | } |
5213 | _ACEOF | 6927 | _ACEOF |
5214 | rm -f conftest$ac_exeext | 6928 | rm -f conftest$ac_exeext |
5215 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 6929 | if { (ac_try="$ac_link" |
5216 | (eval $ac_link) 2>&5 | 6930 | case "(($ac_try" in |
6931 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
6932 | *) ac_try_echo=$ac_try;; | ||
6933 | esac | ||
6934 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6935 | (eval "$ac_link") 2>&5 | ||
5217 | ac_status=$? | 6936 | ac_status=$? |
5218 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6937 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5219 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 6938 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
5220 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6939 | { (case "(($ac_try" in |
5221 | (eval $ac_try) 2>&5 | 6940 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
6941 | *) ac_try_echo=$ac_try;; | ||
6942 | esac | ||
6943 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
6944 | (eval "$ac_try") 2>&5 | ||
5222 | ac_status=$? | 6945 | ac_status=$? |
5223 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6946 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5224 | (exit $ac_status); }; }; then | 6947 | (exit $ac_status); }; }; then |
5225 | echo "$as_me:$LINENO: result: working" >&5 | 6948 | { echo "$as_me:$LINENO: result: working" >&5 |
5226 | echo "${ECHO_T}working" >&6 | 6949 | echo "${ECHO_T}working" >&6; } |
5227 | else | 6950 | else |
5228 | echo "$as_me: program exited with status $ac_status" >&5 | 6951 | echo "$as_me: program exited with status $ac_status" >&5 |
5229 | echo "$as_me: failed program was:" >&5 | 6952 | echo "$as_me: failed program was:" >&5 |
5230 | sed 's/^/| /' conftest.$ac_ext >&5 | 6953 | sed 's/^/| /' conftest.$ac_ext >&5 |
5231 | 6954 | ||
5232 | ( exit $ac_status ) | 6955 | ( exit $ac_status ) |
5233 | echo "$as_me:$LINENO: result: buggy" >&5 | 6956 | { echo "$as_me:$LINENO: result: buggy" >&5 |
5234 | echo "${ECHO_T}buggy" >&6 | 6957 | echo "${ECHO_T}buggy" >&6; } |
5235 | 6958 | ||
5236 | cat >>confdefs.h <<\_ACEOF | 6959 | cat >>confdefs.h <<\_ACEOF |
5237 | #define BROKEN_GETADDRINFO 1 | 6960 | #define BROKEN_GETADDRINFO 1 |
5238 | _ACEOF | 6961 | _ACEOF |
5239 | 6962 | ||
5240 | fi | 6963 | fi |
5241 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 6964 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
5242 | fi | 6965 | fi |
6966 | |||
6967 | |||
5243 | cat >>confdefs.h <<\_ACEOF | 6968 | cat >>confdefs.h <<\_ACEOF |
5244 | #define SETEUID_BREAKS_SETUID 1 | 6969 | #define SETEUID_BREAKS_SETUID 1 |
5245 | _ACEOF | 6970 | _ACEOF |
@@ -5257,8 +6982,8 @@ cat >>confdefs.h <<_ACEOF | |||
5257 | #define BIND_8_COMPAT 1 | 6982 | #define BIND_8_COMPAT 1 |
5258 | _ACEOF | 6983 | _ACEOF |
5259 | 6984 | ||
5260 | echo "$as_me:$LINENO: checking if we have the Security Authorization Session API" >&5 | 6985 | { echo "$as_me:$LINENO: checking if we have the Security Authorization Session API" >&5 |
5261 | echo $ECHO_N "checking if we have the Security Authorization Session API... $ECHO_C" >&6 | 6986 | echo $ECHO_N "checking if we have the Security Authorization Session API... $ECHO_C" >&6; } |
5262 | cat >conftest.$ac_ext <<_ACEOF | 6987 | cat >conftest.$ac_ext <<_ACEOF |
5263 | /* confdefs.h. */ | 6988 | /* confdefs.h. */ |
5264 | _ACEOF | 6989 | _ACEOF |
@@ -5275,23 +7000,36 @@ SessionCreate(0, 0); | |||
5275 | } | 7000 | } |
5276 | _ACEOF | 7001 | _ACEOF |
5277 | rm -f conftest.$ac_objext | 7002 | rm -f conftest.$ac_objext |
5278 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 7003 | if { (ac_try="$ac_compile" |
5279 | (eval $ac_compile) 2>conftest.er1 | 7004 | case "(($ac_try" in |
7005 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7006 | *) ac_try_echo=$ac_try;; | ||
7007 | esac | ||
7008 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7009 | (eval "$ac_compile") 2>conftest.er1 | ||
5280 | ac_status=$? | 7010 | ac_status=$? |
5281 | grep -v '^ *+' conftest.er1 >conftest.err | 7011 | grep -v '^ *+' conftest.er1 >conftest.err |
5282 | rm -f conftest.er1 | 7012 | rm -f conftest.er1 |
5283 | cat conftest.err >&5 | 7013 | cat conftest.err >&5 |
5284 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7014 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5285 | (exit $ac_status); } && | 7015 | (exit $ac_status); } && |
5286 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7016 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5287 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7017 | { (case "(($ac_try" in |
5288 | (eval $ac_try) 2>&5 | 7018 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7019 | *) ac_try_echo=$ac_try;; | ||
7020 | esac | ||
7021 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7022 | (eval "$ac_try") 2>&5 | ||
5289 | ac_status=$? | 7023 | ac_status=$? |
5290 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7024 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5291 | (exit $ac_status); }; } && | 7025 | (exit $ac_status); }; } && |
5292 | { ac_try='test -s conftest.$ac_objext' | 7026 | { ac_try='test -s conftest.$ac_objext' |
5293 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7027 | { (case "(($ac_try" in |
5294 | (eval $ac_try) 2>&5 | 7028 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7029 | *) ac_try_echo=$ac_try;; | ||
7030 | esac | ||
7031 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7032 | (eval "$ac_try") 2>&5 | ||
5295 | ac_status=$? | 7033 | ac_status=$? |
5296 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7034 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5297 | (exit $ac_status); }; }; then | 7035 | (exit $ac_status); }; }; then |
@@ -5302,19 +7040,20 @@ cat >>confdefs.h <<\_ACEOF | |||
5302 | _ACEOF | 7040 | _ACEOF |
5303 | 7041 | ||
5304 | LIBS="$LIBS -framework Security" | 7042 | LIBS="$LIBS -framework Security" |
5305 | echo "$as_me:$LINENO: result: yes" >&5 | 7043 | { echo "$as_me:$LINENO: result: yes" >&5 |
5306 | echo "${ECHO_T}yes" >&6 | 7044 | echo "${ECHO_T}yes" >&6; } |
5307 | else | 7045 | else |
5308 | echo "$as_me: failed program was:" >&5 | 7046 | echo "$as_me: failed program was:" >&5 |
5309 | sed 's/^/| /' conftest.$ac_ext >&5 | 7047 | sed 's/^/| /' conftest.$ac_ext >&5 |
5310 | 7048 | ||
5311 | ac_cv_use_security_session_api="no" | 7049 | ac_cv_use_security_session_api="no" |
5312 | echo "$as_me:$LINENO: result: no" >&5 | 7050 | { echo "$as_me:$LINENO: result: no" >&5 |
5313 | echo "${ECHO_T}no" >&6 | 7051 | echo "${ECHO_T}no" >&6; } |
5314 | fi | 7052 | fi |
5315 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 7053 | |
5316 | echo "$as_me:$LINENO: checking if we have an in-memory credentials cache" >&5 | 7054 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
5317 | echo $ECHO_N "checking if we have an in-memory credentials cache... $ECHO_C" >&6 | 7055 | { echo "$as_me:$LINENO: checking if we have an in-memory credentials cache" >&5 |
7056 | echo $ECHO_N "checking if we have an in-memory credentials cache... $ECHO_C" >&6; } | ||
5318 | cat >conftest.$ac_ext <<_ACEOF | 7057 | cat >conftest.$ac_ext <<_ACEOF |
5319 | /* confdefs.h. */ | 7058 | /* confdefs.h. */ |
5320 | _ACEOF | 7059 | _ACEOF |
@@ -5332,23 +7071,36 @@ cc_context_t c; | |||
5332 | } | 7071 | } |
5333 | _ACEOF | 7072 | _ACEOF |
5334 | rm -f conftest.$ac_objext | 7073 | rm -f conftest.$ac_objext |
5335 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 7074 | if { (ac_try="$ac_compile" |
5336 | (eval $ac_compile) 2>conftest.er1 | 7075 | case "(($ac_try" in |
7076 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7077 | *) ac_try_echo=$ac_try;; | ||
7078 | esac | ||
7079 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7080 | (eval "$ac_compile") 2>conftest.er1 | ||
5337 | ac_status=$? | 7081 | ac_status=$? |
5338 | grep -v '^ *+' conftest.er1 >conftest.err | 7082 | grep -v '^ *+' conftest.er1 >conftest.err |
5339 | rm -f conftest.er1 | 7083 | rm -f conftest.er1 |
5340 | cat conftest.err >&5 | 7084 | cat conftest.err >&5 |
5341 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7085 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5342 | (exit $ac_status); } && | 7086 | (exit $ac_status); } && |
5343 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7087 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5344 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7088 | { (case "(($ac_try" in |
5345 | (eval $ac_try) 2>&5 | 7089 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7090 | *) ac_try_echo=$ac_try;; | ||
7091 | esac | ||
7092 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7093 | (eval "$ac_try") 2>&5 | ||
5346 | ac_status=$? | 7094 | ac_status=$? |
5347 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7095 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5348 | (exit $ac_status); }; } && | 7096 | (exit $ac_status); }; } && |
5349 | { ac_try='test -s conftest.$ac_objext' | 7097 | { ac_try='test -s conftest.$ac_objext' |
5350 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7098 | { (case "(($ac_try" in |
5351 | (eval $ac_try) 2>&5 | 7099 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7100 | *) ac_try_echo=$ac_try;; | ||
7101 | esac | ||
7102 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7103 | (eval "$ac_try") 2>&5 | ||
5352 | ac_status=$? | 7104 | ac_status=$? |
5353 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7105 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5354 | (exit $ac_status); }; }; then | 7106 | (exit $ac_status); }; }; then |
@@ -5358,8 +7110,8 @@ cat >>confdefs.h <<\_ACEOF | |||
5358 | _ACEOF | 7110 | _ACEOF |
5359 | 7111 | ||
5360 | LIBS="$LIBS -framework Security" | 7112 | LIBS="$LIBS -framework Security" |
5361 | echo "$as_me:$LINENO: result: yes" >&5 | 7113 | { echo "$as_me:$LINENO: result: yes" >&5 |
5362 | echo "${ECHO_T}yes" >&6 | 7114 | echo "${ECHO_T}yes" >&6; } |
5363 | if test "x$ac_cv_use_security_session_api" = "xno"; then | 7115 | if test "x$ac_cv_use_security_session_api" = "xno"; then |
5364 | { { echo "$as_me:$LINENO: error: *** Need a security framework to use the credentials cache API ***" >&5 | 7116 | { { echo "$as_me:$LINENO: error: *** Need a security framework to use the credentials cache API ***" >&5 |
5365 | echo "$as_me: error: *** Need a security framework to use the credentials cache API ***" >&2;} | 7117 | echo "$as_me: error: *** Need a security framework to use the credentials cache API ***" >&2;} |
@@ -5369,11 +7121,12 @@ else | |||
5369 | echo "$as_me: failed program was:" >&5 | 7121 | echo "$as_me: failed program was:" >&5 |
5370 | sed 's/^/| /' conftest.$ac_ext >&5 | 7122 | sed 's/^/| /' conftest.$ac_ext >&5 |
5371 | 7123 | ||
5372 | echo "$as_me:$LINENO: result: no" >&5 | 7124 | { echo "$as_me:$LINENO: result: no" >&5 |
5373 | echo "${ECHO_T}no" >&6 | 7125 | echo "${ECHO_T}no" >&6; } |
5374 | 7126 | ||
5375 | fi | 7127 | fi |
5376 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 7128 | |
7129 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
5377 | ;; | 7130 | ;; |
5378 | *-*-hpux*) | 7131 | *-*-hpux*) |
5379 | # first we define all of the options common to all HP-UX releases | 7132 | # first we define all of the options common to all HP-UX releases |
@@ -5404,8 +7157,8 @@ _ACEOF | |||
5404 | MAIL="/var/mail/username" | 7157 | MAIL="/var/mail/username" |
5405 | LIBS="$LIBS -lsec" | 7158 | LIBS="$LIBS -lsec" |
5406 | 7159 | ||
5407 | echo "$as_me:$LINENO: checking for t_error in -lxnet" >&5 | 7160 | { echo "$as_me:$LINENO: checking for t_error in -lxnet" >&5 |
5408 | echo $ECHO_N "checking for t_error in -lxnet... $ECHO_C" >&6 | 7161 | echo $ECHO_N "checking for t_error in -lxnet... $ECHO_C" >&6; } |
5409 | if test "${ac_cv_lib_xnet_t_error+set}" = set; then | 7162 | if test "${ac_cv_lib_xnet_t_error+set}" = set; then |
5410 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7163 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
5411 | else | 7164 | else |
@@ -5418,39 +7171,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
5418 | cat >>conftest.$ac_ext <<_ACEOF | 7171 | cat >>conftest.$ac_ext <<_ACEOF |
5419 | /* end confdefs.h. */ | 7172 | /* end confdefs.h. */ |
5420 | 7173 | ||
5421 | /* Override any gcc2 internal prototype to avoid an error. */ | 7174 | /* Override any GCC internal prototype to avoid an error. |
7175 | Use char because int might match the return type of a GCC | ||
7176 | builtin and then its argument prototype would still apply. */ | ||
5422 | #ifdef __cplusplus | 7177 | #ifdef __cplusplus |
5423 | extern "C" | 7178 | extern "C" |
5424 | #endif | 7179 | #endif |
5425 | /* We use char because int might match the return type of a gcc2 | ||
5426 | builtin and then its argument prototype would still apply. */ | ||
5427 | char t_error (); | 7180 | char t_error (); |
5428 | int | 7181 | int |
5429 | main () | 7182 | main () |
5430 | { | 7183 | { |
5431 | t_error (); | 7184 | return t_error (); |
5432 | ; | 7185 | ; |
5433 | return 0; | 7186 | return 0; |
5434 | } | 7187 | } |
5435 | _ACEOF | 7188 | _ACEOF |
5436 | rm -f conftest.$ac_objext conftest$ac_exeext | 7189 | rm -f conftest.$ac_objext conftest$ac_exeext |
5437 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 7190 | if { (ac_try="$ac_link" |
5438 | (eval $ac_link) 2>conftest.er1 | 7191 | case "(($ac_try" in |
7192 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7193 | *) ac_try_echo=$ac_try;; | ||
7194 | esac | ||
7195 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7196 | (eval "$ac_link") 2>conftest.er1 | ||
5439 | ac_status=$? | 7197 | ac_status=$? |
5440 | grep -v '^ *+' conftest.er1 >conftest.err | 7198 | grep -v '^ *+' conftest.er1 >conftest.err |
5441 | rm -f conftest.er1 | 7199 | rm -f conftest.er1 |
5442 | cat conftest.err >&5 | 7200 | cat conftest.err >&5 |
5443 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7201 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5444 | (exit $ac_status); } && | 7202 | (exit $ac_status); } && |
5445 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7203 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5446 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7204 | { (case "(($ac_try" in |
5447 | (eval $ac_try) 2>&5 | 7205 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7206 | *) ac_try_echo=$ac_try;; | ||
7207 | esac | ||
7208 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7209 | (eval "$ac_try") 2>&5 | ||
5448 | ac_status=$? | 7210 | ac_status=$? |
5449 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7211 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5450 | (exit $ac_status); }; } && | 7212 | (exit $ac_status); }; } && |
5451 | { ac_try='test -s conftest$ac_exeext' | 7213 | { ac_try='test -s conftest$ac_exeext' |
5452 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7214 | { (case "(($ac_try" in |
5453 | (eval $ac_try) 2>&5 | 7215 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7216 | *) ac_try_echo=$ac_try;; | ||
7217 | esac | ||
7218 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7219 | (eval "$ac_try") 2>&5 | ||
5454 | ac_status=$? | 7220 | ac_status=$? |
5455 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5456 | (exit $ac_status); }; }; then | 7222 | (exit $ac_status); }; }; then |
@@ -5459,14 +7225,15 @@ else | |||
5459 | echo "$as_me: failed program was:" >&5 | 7225 | echo "$as_me: failed program was:" >&5 |
5460 | sed 's/^/| /' conftest.$ac_ext >&5 | 7226 | sed 's/^/| /' conftest.$ac_ext >&5 |
5461 | 7227 | ||
5462 | ac_cv_lib_xnet_t_error=no | 7228 | ac_cv_lib_xnet_t_error=no |
5463 | fi | 7229 | fi |
5464 | rm -f conftest.err conftest.$ac_objext \ | 7230 | |
7231 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
5465 | conftest$ac_exeext conftest.$ac_ext | 7232 | conftest$ac_exeext conftest.$ac_ext |
5466 | LIBS=$ac_check_lib_save_LIBS | 7233 | LIBS=$ac_check_lib_save_LIBS |
5467 | fi | 7234 | fi |
5468 | echo "$as_me:$LINENO: result: $ac_cv_lib_xnet_t_error" >&5 | 7235 | { echo "$as_me:$LINENO: result: $ac_cv_lib_xnet_t_error" >&5 |
5469 | echo "${ECHO_T}$ac_cv_lib_xnet_t_error" >&6 | 7236 | echo "${ECHO_T}$ac_cv_lib_xnet_t_error" >&6; } |
5470 | if test $ac_cv_lib_xnet_t_error = yes; then | 7237 | if test $ac_cv_lib_xnet_t_error = yes; then |
5471 | cat >>confdefs.h <<_ACEOF | 7238 | cat >>confdefs.h <<_ACEOF |
5472 | #define HAVE_LIBXNET 1 | 7239 | #define HAVE_LIBXNET 1 |
@@ -5568,8 +7335,8 @@ cat >>confdefs.h <<\_ACEOF | |||
5568 | #define WITH_IRIX_AUDIT 1 | 7335 | #define WITH_IRIX_AUDIT 1 |
5569 | _ACEOF | 7336 | _ACEOF |
5570 | 7337 | ||
5571 | echo "$as_me:$LINENO: checking for jlimit_startjob" >&5 | 7338 | { echo "$as_me:$LINENO: checking for jlimit_startjob" >&5 |
5572 | echo $ECHO_N "checking for jlimit_startjob... $ECHO_C" >&6 | 7339 | echo $ECHO_N "checking for jlimit_startjob... $ECHO_C" >&6; } |
5573 | if test "${ac_cv_func_jlimit_startjob+set}" = set; then | 7340 | if test "${ac_cv_func_jlimit_startjob+set}" = set; then |
5574 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7341 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
5575 | else | 7342 | else |
@@ -5596,52 +7363,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
5596 | 7363 | ||
5597 | #undef jlimit_startjob | 7364 | #undef jlimit_startjob |
5598 | 7365 | ||
5599 | /* Override any gcc2 internal prototype to avoid an error. */ | 7366 | /* Override any GCC internal prototype to avoid an error. |
7367 | Use char because int might match the return type of a GCC | ||
7368 | builtin and then its argument prototype would still apply. */ | ||
5600 | #ifdef __cplusplus | 7369 | #ifdef __cplusplus |
5601 | extern "C" | 7370 | extern "C" |
5602 | { | ||
5603 | #endif | 7371 | #endif |
5604 | /* We use char because int might match the return type of a gcc2 | ||
5605 | builtin and then its argument prototype would still apply. */ | ||
5606 | char jlimit_startjob (); | 7372 | char jlimit_startjob (); |
5607 | /* The GNU C library defines this for functions which it implements | 7373 | /* The GNU C library defines this for functions which it implements |
5608 | to always fail with ENOSYS. Some functions are actually named | 7374 | to always fail with ENOSYS. Some functions are actually named |
5609 | something starting with __ and the normal name is an alias. */ | 7375 | something starting with __ and the normal name is an alias. */ |
5610 | #if defined (__stub_jlimit_startjob) || defined (__stub___jlimit_startjob) | 7376 | #if defined __stub_jlimit_startjob || defined __stub___jlimit_startjob |
5611 | choke me | 7377 | choke me |
5612 | #else | ||
5613 | char (*f) () = jlimit_startjob; | ||
5614 | #endif | ||
5615 | #ifdef __cplusplus | ||
5616 | } | ||
5617 | #endif | 7378 | #endif |
5618 | 7379 | ||
5619 | int | 7380 | int |
5620 | main () | 7381 | main () |
5621 | { | 7382 | { |
5622 | return f != jlimit_startjob; | 7383 | return jlimit_startjob (); |
5623 | ; | 7384 | ; |
5624 | return 0; | 7385 | return 0; |
5625 | } | 7386 | } |
5626 | _ACEOF | 7387 | _ACEOF |
5627 | rm -f conftest.$ac_objext conftest$ac_exeext | 7388 | rm -f conftest.$ac_objext conftest$ac_exeext |
5628 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 7389 | if { (ac_try="$ac_link" |
5629 | (eval $ac_link) 2>conftest.er1 | 7390 | case "(($ac_try" in |
7391 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7392 | *) ac_try_echo=$ac_try;; | ||
7393 | esac | ||
7394 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7395 | (eval "$ac_link") 2>conftest.er1 | ||
5630 | ac_status=$? | 7396 | ac_status=$? |
5631 | grep -v '^ *+' conftest.er1 >conftest.err | 7397 | grep -v '^ *+' conftest.er1 >conftest.err |
5632 | rm -f conftest.er1 | 7398 | rm -f conftest.er1 |
5633 | cat conftest.err >&5 | 7399 | cat conftest.err >&5 |
5634 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7400 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5635 | (exit $ac_status); } && | 7401 | (exit $ac_status); } && |
5636 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7402 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5637 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7403 | { (case "(($ac_try" in |
5638 | (eval $ac_try) 2>&5 | 7404 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7405 | *) ac_try_echo=$ac_try;; | ||
7406 | esac | ||
7407 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7408 | (eval "$ac_try") 2>&5 | ||
5639 | ac_status=$? | 7409 | ac_status=$? |
5640 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7410 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5641 | (exit $ac_status); }; } && | 7411 | (exit $ac_status); }; } && |
5642 | { ac_try='test -s conftest$ac_exeext' | 7412 | { ac_try='test -s conftest$ac_exeext' |
5643 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7413 | { (case "(($ac_try" in |
5644 | (eval $ac_try) 2>&5 | 7414 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7415 | *) ac_try_echo=$ac_try;; | ||
7416 | esac | ||
7417 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7418 | (eval "$ac_try") 2>&5 | ||
5645 | ac_status=$? | 7419 | ac_status=$? |
5646 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7420 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5647 | (exit $ac_status); }; }; then | 7421 | (exit $ac_status); }; }; then |
@@ -5650,13 +7424,14 @@ else | |||
5650 | echo "$as_me: failed program was:" >&5 | 7424 | echo "$as_me: failed program was:" >&5 |
5651 | sed 's/^/| /' conftest.$ac_ext >&5 | 7425 | sed 's/^/| /' conftest.$ac_ext >&5 |
5652 | 7426 | ||
5653 | ac_cv_func_jlimit_startjob=no | 7427 | ac_cv_func_jlimit_startjob=no |
5654 | fi | 7428 | fi |
5655 | rm -f conftest.err conftest.$ac_objext \ | 7429 | |
7430 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
5656 | conftest$ac_exeext conftest.$ac_ext | 7431 | conftest$ac_exeext conftest.$ac_ext |
5657 | fi | 7432 | fi |
5658 | echo "$as_me:$LINENO: result: $ac_cv_func_jlimit_startjob" >&5 | 7433 | { echo "$as_me:$LINENO: result: $ac_cv_func_jlimit_startjob" >&5 |
5659 | echo "${ECHO_T}$ac_cv_func_jlimit_startjob" >&6 | 7434 | echo "${ECHO_T}$ac_cv_func_jlimit_startjob" >&6; } |
5660 | if test $ac_cv_func_jlimit_startjob = yes; then | 7435 | if test $ac_cv_func_jlimit_startjob = yes; then |
5661 | 7436 | ||
5662 | cat >>confdefs.h <<\_ACEOF | 7437 | cat >>confdefs.h <<\_ACEOF |
@@ -5769,258 +7544,22 @@ _ACEOF | |||
5769 | esac | 7544 | esac |
5770 | # tun(4) forwarding compat code | 7545 | # tun(4) forwarding compat code |
5771 | 7546 | ||
5772 | echo "$as_me:$LINENO: checking for ANSI C header files" >&5 | ||
5773 | echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 | ||
5774 | if test "${ac_cv_header_stdc+set}" = set; then | ||
5775 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
5776 | else | ||
5777 | cat >conftest.$ac_ext <<_ACEOF | ||
5778 | /* confdefs.h. */ | ||
5779 | _ACEOF | ||
5780 | cat confdefs.h >>conftest.$ac_ext | ||
5781 | cat >>conftest.$ac_ext <<_ACEOF | ||
5782 | /* end confdefs.h. */ | ||
5783 | #include <stdlib.h> | ||
5784 | #include <stdarg.h> | ||
5785 | #include <string.h> | ||
5786 | #include <float.h> | ||
5787 | |||
5788 | int | ||
5789 | main () | ||
5790 | { | ||
5791 | |||
5792 | ; | ||
5793 | return 0; | ||
5794 | } | ||
5795 | _ACEOF | ||
5796 | rm -f conftest.$ac_objext | ||
5797 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | ||
5798 | (eval $ac_compile) 2>conftest.er1 | ||
5799 | ac_status=$? | ||
5800 | grep -v '^ *+' conftest.er1 >conftest.err | ||
5801 | rm -f conftest.er1 | ||
5802 | cat conftest.err >&5 | ||
5803 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5804 | (exit $ac_status); } && | ||
5805 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
5806 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
5807 | (eval $ac_try) 2>&5 | ||
5808 | ac_status=$? | ||
5809 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5810 | (exit $ac_status); }; } && | ||
5811 | { ac_try='test -s conftest.$ac_objext' | ||
5812 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
5813 | (eval $ac_try) 2>&5 | ||
5814 | ac_status=$? | ||
5815 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5816 | (exit $ac_status); }; }; then | ||
5817 | ac_cv_header_stdc=yes | ||
5818 | else | ||
5819 | echo "$as_me: failed program was:" >&5 | ||
5820 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
5821 | |||
5822 | ac_cv_header_stdc=no | ||
5823 | fi | ||
5824 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | ||
5825 | |||
5826 | if test $ac_cv_header_stdc = yes; then | ||
5827 | # SunOS 4.x string.h does not declare mem*, contrary to ANSI. | ||
5828 | cat >conftest.$ac_ext <<_ACEOF | ||
5829 | /* confdefs.h. */ | ||
5830 | _ACEOF | ||
5831 | cat confdefs.h >>conftest.$ac_ext | ||
5832 | cat >>conftest.$ac_ext <<_ACEOF | ||
5833 | /* end confdefs.h. */ | ||
5834 | #include <string.h> | ||
5835 | |||
5836 | _ACEOF | ||
5837 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | ||
5838 | $EGREP "memchr" >/dev/null 2>&1; then | ||
5839 | : | ||
5840 | else | ||
5841 | ac_cv_header_stdc=no | ||
5842 | fi | ||
5843 | rm -f conftest* | ||
5844 | |||
5845 | fi | ||
5846 | |||
5847 | if test $ac_cv_header_stdc = yes; then | ||
5848 | # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. | ||
5849 | cat >conftest.$ac_ext <<_ACEOF | ||
5850 | /* confdefs.h. */ | ||
5851 | _ACEOF | ||
5852 | cat confdefs.h >>conftest.$ac_ext | ||
5853 | cat >>conftest.$ac_ext <<_ACEOF | ||
5854 | /* end confdefs.h. */ | ||
5855 | #include <stdlib.h> | ||
5856 | |||
5857 | _ACEOF | ||
5858 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | ||
5859 | $EGREP "free" >/dev/null 2>&1; then | ||
5860 | : | ||
5861 | else | ||
5862 | ac_cv_header_stdc=no | ||
5863 | fi | ||
5864 | rm -f conftest* | ||
5865 | |||
5866 | fi | ||
5867 | |||
5868 | if test $ac_cv_header_stdc = yes; then | ||
5869 | # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. | ||
5870 | if test "$cross_compiling" = yes; then | ||
5871 | : | ||
5872 | else | ||
5873 | cat >conftest.$ac_ext <<_ACEOF | ||
5874 | /* confdefs.h. */ | ||
5875 | _ACEOF | ||
5876 | cat confdefs.h >>conftest.$ac_ext | ||
5877 | cat >>conftest.$ac_ext <<_ACEOF | ||
5878 | /* end confdefs.h. */ | ||
5879 | #include <ctype.h> | ||
5880 | #if ((' ' & 0x0FF) == 0x020) | ||
5881 | # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') | ||
5882 | # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) | ||
5883 | #else | ||
5884 | # define ISLOWER(c) \ | ||
5885 | (('a' <= (c) && (c) <= 'i') \ | ||
5886 | || ('j' <= (c) && (c) <= 'r') \ | ||
5887 | || ('s' <= (c) && (c) <= 'z')) | ||
5888 | # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) | ||
5889 | #endif | ||
5890 | |||
5891 | #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) | ||
5892 | int | ||
5893 | main () | ||
5894 | { | ||
5895 | int i; | ||
5896 | for (i = 0; i < 256; i++) | ||
5897 | if (XOR (islower (i), ISLOWER (i)) | ||
5898 | || toupper (i) != TOUPPER (i)) | ||
5899 | exit(2); | ||
5900 | exit (0); | ||
5901 | } | ||
5902 | _ACEOF | ||
5903 | rm -f conftest$ac_exeext | ||
5904 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
5905 | (eval $ac_link) 2>&5 | ||
5906 | ac_status=$? | ||
5907 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5908 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | ||
5909 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
5910 | (eval $ac_try) 2>&5 | ||
5911 | ac_status=$? | ||
5912 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5913 | (exit $ac_status); }; }; then | ||
5914 | : | ||
5915 | else | ||
5916 | echo "$as_me: program exited with status $ac_status" >&5 | ||
5917 | echo "$as_me: failed program was:" >&5 | ||
5918 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
5919 | |||
5920 | ( exit $ac_status ) | ||
5921 | ac_cv_header_stdc=no | ||
5922 | fi | ||
5923 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
5924 | fi | ||
5925 | fi | ||
5926 | fi | ||
5927 | echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 | ||
5928 | echo "${ECHO_T}$ac_cv_header_stdc" >&6 | ||
5929 | if test $ac_cv_header_stdc = yes; then | ||
5930 | |||
5931 | cat >>confdefs.h <<\_ACEOF | ||
5932 | #define STDC_HEADERS 1 | ||
5933 | _ACEOF | ||
5934 | |||
5935 | fi | ||
5936 | |||
5937 | # On IRIX 5.3, sys/types and inttypes.h are conflicting. | ||
5938 | |||
5939 | |||
5940 | |||
5941 | |||
5942 | |||
5943 | |||
5944 | |||
5945 | |||
5946 | |||
5947 | for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ | ||
5948 | inttypes.h stdint.h unistd.h | ||
5949 | do | ||
5950 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | ||
5951 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | ||
5952 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | ||
5953 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | ||
5954 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
5955 | else | ||
5956 | cat >conftest.$ac_ext <<_ACEOF | ||
5957 | /* confdefs.h. */ | ||
5958 | _ACEOF | ||
5959 | cat confdefs.h >>conftest.$ac_ext | ||
5960 | cat >>conftest.$ac_ext <<_ACEOF | ||
5961 | /* end confdefs.h. */ | ||
5962 | $ac_includes_default | ||
5963 | |||
5964 | #include <$ac_header> | ||
5965 | _ACEOF | ||
5966 | rm -f conftest.$ac_objext | ||
5967 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | ||
5968 | (eval $ac_compile) 2>conftest.er1 | ||
5969 | ac_status=$? | ||
5970 | grep -v '^ *+' conftest.er1 >conftest.err | ||
5971 | rm -f conftest.er1 | ||
5972 | cat conftest.err >&5 | ||
5973 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5974 | (exit $ac_status); } && | ||
5975 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
5976 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
5977 | (eval $ac_try) 2>&5 | ||
5978 | ac_status=$? | ||
5979 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5980 | (exit $ac_status); }; } && | ||
5981 | { ac_try='test -s conftest.$ac_objext' | ||
5982 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
5983 | (eval $ac_try) 2>&5 | ||
5984 | ac_status=$? | ||
5985 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
5986 | (exit $ac_status); }; }; then | ||
5987 | eval "$as_ac_Header=yes" | ||
5988 | else | ||
5989 | echo "$as_me: failed program was:" >&5 | ||
5990 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
5991 | |||
5992 | eval "$as_ac_Header=no" | ||
5993 | fi | ||
5994 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | ||
5995 | fi | ||
5996 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | ||
5997 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | ||
5998 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | ||
5999 | cat >>confdefs.h <<_ACEOF | ||
6000 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 | ||
6001 | _ACEOF | ||
6002 | |||
6003 | fi | ||
6004 | |||
6005 | done | ||
6006 | |||
6007 | |||
6008 | |||
6009 | for ac_header in linux/if_tun.h | 7547 | for ac_header in linux/if_tun.h |
6010 | do | 7548 | do |
6011 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 7549 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
6012 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 7550 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
6013 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 7551 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
6014 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 7552 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
6015 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 7553 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
6016 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7554 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6017 | fi | 7555 | fi |
6018 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 7556 | ac_res=`eval echo '${'$as_ac_Header'}'` |
6019 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 7557 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
7558 | echo "${ECHO_T}$ac_res" >&6; } | ||
6020 | else | 7559 | else |
6021 | # Is the header compilable? | 7560 | # Is the header compilable? |
6022 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 7561 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
6023 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 7562 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
6024 | cat >conftest.$ac_ext <<_ACEOF | 7563 | cat >conftest.$ac_ext <<_ACEOF |
6025 | /* confdefs.h. */ | 7564 | /* confdefs.h. */ |
6026 | _ACEOF | 7565 | _ACEOF |
@@ -6031,23 +7570,36 @@ $ac_includes_default | |||
6031 | #include <$ac_header> | 7570 | #include <$ac_header> |
6032 | _ACEOF | 7571 | _ACEOF |
6033 | rm -f conftest.$ac_objext | 7572 | rm -f conftest.$ac_objext |
6034 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 7573 | if { (ac_try="$ac_compile" |
6035 | (eval $ac_compile) 2>conftest.er1 | 7574 | case "(($ac_try" in |
7575 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7576 | *) ac_try_echo=$ac_try;; | ||
7577 | esac | ||
7578 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7579 | (eval "$ac_compile") 2>conftest.er1 | ||
6036 | ac_status=$? | 7580 | ac_status=$? |
6037 | grep -v '^ *+' conftest.er1 >conftest.err | 7581 | grep -v '^ *+' conftest.er1 >conftest.err |
6038 | rm -f conftest.er1 | 7582 | rm -f conftest.er1 |
6039 | cat conftest.err >&5 | 7583 | cat conftest.err >&5 |
6040 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7584 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6041 | (exit $ac_status); } && | 7585 | (exit $ac_status); } && |
6042 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7586 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6043 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7587 | { (case "(($ac_try" in |
6044 | (eval $ac_try) 2>&5 | 7588 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7589 | *) ac_try_echo=$ac_try;; | ||
7590 | esac | ||
7591 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7592 | (eval "$ac_try") 2>&5 | ||
6045 | ac_status=$? | 7593 | ac_status=$? |
6046 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7594 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6047 | (exit $ac_status); }; } && | 7595 | (exit $ac_status); }; } && |
6048 | { ac_try='test -s conftest.$ac_objext' | 7596 | { ac_try='test -s conftest.$ac_objext' |
6049 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7597 | { (case "(($ac_try" in |
6050 | (eval $ac_try) 2>&5 | 7598 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7599 | *) ac_try_echo=$ac_try;; | ||
7600 | esac | ||
7601 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7602 | (eval "$ac_try") 2>&5 | ||
6051 | ac_status=$? | 7603 | ac_status=$? |
6052 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7604 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6053 | (exit $ac_status); }; }; then | 7605 | (exit $ac_status); }; }; then |
@@ -6056,15 +7608,16 @@ else | |||
6056 | echo "$as_me: failed program was:" >&5 | 7608 | echo "$as_me: failed program was:" >&5 |
6057 | sed 's/^/| /' conftest.$ac_ext >&5 | 7609 | sed 's/^/| /' conftest.$ac_ext >&5 |
6058 | 7610 | ||
6059 | ac_header_compiler=no | 7611 | ac_header_compiler=no |
6060 | fi | 7612 | fi |
6061 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 7613 | |
6062 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 7614 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
6063 | echo "${ECHO_T}$ac_header_compiler" >&6 | 7615 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
7616 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
6064 | 7617 | ||
6065 | # Is the header present? | 7618 | # Is the header present? |
6066 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 7619 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
6067 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 7620 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
6068 | cat >conftest.$ac_ext <<_ACEOF | 7621 | cat >conftest.$ac_ext <<_ACEOF |
6069 | /* confdefs.h. */ | 7622 | /* confdefs.h. */ |
6070 | _ACEOF | 7623 | _ACEOF |
@@ -6073,8 +7626,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
6073 | /* end confdefs.h. */ | 7626 | /* end confdefs.h. */ |
6074 | #include <$ac_header> | 7627 | #include <$ac_header> |
6075 | _ACEOF | 7628 | _ACEOF |
6076 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 7629 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
6077 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 7630 | case "(($ac_try" in |
7631 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7632 | *) ac_try_echo=$ac_try;; | ||
7633 | esac | ||
7634 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7635 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
6078 | ac_status=$? | 7636 | ac_status=$? |
6079 | grep -v '^ *+' conftest.er1 >conftest.err | 7637 | grep -v '^ *+' conftest.er1 >conftest.err |
6080 | rm -f conftest.er1 | 7638 | rm -f conftest.er1 |
@@ -6098,9 +7656,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
6098 | 7656 | ||
6099 | ac_header_preproc=no | 7657 | ac_header_preproc=no |
6100 | fi | 7658 | fi |
7659 | |||
6101 | rm -f conftest.err conftest.$ac_ext | 7660 | rm -f conftest.err conftest.$ac_ext |
6102 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 7661 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
6103 | echo "${ECHO_T}$ac_header_preproc" >&6 | 7662 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
6104 | 7663 | ||
6105 | # So? What about this header? | 7664 | # So? What about this header? |
6106 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 7665 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -6124,25 +7683,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
6124 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 7683 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
6125 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 7684 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
6126 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 7685 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
6127 | ( | 7686 | ( cat <<\_ASBOX |
6128 | cat <<\_ASBOX | ||
6129 | ## ------------------------------------------- ## | 7687 | ## ------------------------------------------- ## |
6130 | ## Report this to openssh-unix-dev@mindrot.org ## | 7688 | ## Report this to openssh-unix-dev@mindrot.org ## |
6131 | ## ------------------------------------------- ## | 7689 | ## ------------------------------------------- ## |
6132 | _ASBOX | 7690 | _ASBOX |
6133 | ) | | 7691 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
6134 | sed "s/^/$as_me: WARNING: /" >&2 | ||
6135 | ;; | 7692 | ;; |
6136 | esac | 7693 | esac |
6137 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 7694 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
6138 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 7695 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
6139 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 7696 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
6140 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7697 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6141 | else | 7698 | else |
6142 | eval "$as_ac_Header=\$ac_header_preproc" | 7699 | eval "$as_ac_Header=\$ac_header_preproc" |
6143 | fi | 7700 | fi |
6144 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 7701 | ac_res=`eval echo '${'$as_ac_Header'}'` |
6145 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 7702 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
7703 | echo "${ECHO_T}$ac_res" >&6; } | ||
6146 | 7704 | ||
6147 | fi | 7705 | fi |
6148 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 7706 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -6191,17 +7749,17 @@ cat >>confdefs.h <<\_ACEOF | |||
6191 | _ACEOF | 7749 | _ACEOF |
6192 | 7750 | ||
6193 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then | 7751 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then |
6194 | echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 | 7752 | { echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 |
6195 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6 | 7753 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6; } |
6196 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then | 7754 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then |
6197 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7755 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6198 | fi | 7756 | fi |
6199 | echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 | 7757 | { echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 |
6200 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6 | 7758 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6; } |
6201 | else | 7759 | else |
6202 | # Is the header compilable? | 7760 | # Is the header compilable? |
6203 | echo "$as_me:$LINENO: checking net/if_tap.h usability" >&5 | 7761 | { echo "$as_me:$LINENO: checking net/if_tap.h usability" >&5 |
6204 | echo $ECHO_N "checking net/if_tap.h usability... $ECHO_C" >&6 | 7762 | echo $ECHO_N "checking net/if_tap.h usability... $ECHO_C" >&6; } |
6205 | cat >conftest.$ac_ext <<_ACEOF | 7763 | cat >conftest.$ac_ext <<_ACEOF |
6206 | /* confdefs.h. */ | 7764 | /* confdefs.h. */ |
6207 | _ACEOF | 7765 | _ACEOF |
@@ -6212,23 +7770,36 @@ $ac_includes_default | |||
6212 | #include <net/if_tap.h> | 7770 | #include <net/if_tap.h> |
6213 | _ACEOF | 7771 | _ACEOF |
6214 | rm -f conftest.$ac_objext | 7772 | rm -f conftest.$ac_objext |
6215 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 7773 | if { (ac_try="$ac_compile" |
6216 | (eval $ac_compile) 2>conftest.er1 | 7774 | case "(($ac_try" in |
7775 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7776 | *) ac_try_echo=$ac_try;; | ||
7777 | esac | ||
7778 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7779 | (eval "$ac_compile") 2>conftest.er1 | ||
6217 | ac_status=$? | 7780 | ac_status=$? |
6218 | grep -v '^ *+' conftest.er1 >conftest.err | 7781 | grep -v '^ *+' conftest.er1 >conftest.err |
6219 | rm -f conftest.er1 | 7782 | rm -f conftest.er1 |
6220 | cat conftest.err >&5 | 7783 | cat conftest.err >&5 |
6221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7784 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6222 | (exit $ac_status); } && | 7785 | (exit $ac_status); } && |
6223 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7786 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6224 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7787 | { (case "(($ac_try" in |
6225 | (eval $ac_try) 2>&5 | 7788 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7789 | *) ac_try_echo=$ac_try;; | ||
7790 | esac | ||
7791 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7792 | (eval "$ac_try") 2>&5 | ||
6226 | ac_status=$? | 7793 | ac_status=$? |
6227 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7794 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6228 | (exit $ac_status); }; } && | 7795 | (exit $ac_status); }; } && |
6229 | { ac_try='test -s conftest.$ac_objext' | 7796 | { ac_try='test -s conftest.$ac_objext' |
6230 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7797 | { (case "(($ac_try" in |
6231 | (eval $ac_try) 2>&5 | 7798 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7799 | *) ac_try_echo=$ac_try;; | ||
7800 | esac | ||
7801 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7802 | (eval "$ac_try") 2>&5 | ||
6232 | ac_status=$? | 7803 | ac_status=$? |
6233 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7804 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6234 | (exit $ac_status); }; }; then | 7805 | (exit $ac_status); }; }; then |
@@ -6237,15 +7808,16 @@ else | |||
6237 | echo "$as_me: failed program was:" >&5 | 7808 | echo "$as_me: failed program was:" >&5 |
6238 | sed 's/^/| /' conftest.$ac_ext >&5 | 7809 | sed 's/^/| /' conftest.$ac_ext >&5 |
6239 | 7810 | ||
6240 | ac_header_compiler=no | 7811 | ac_header_compiler=no |
6241 | fi | 7812 | fi |
6242 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 7813 | |
6243 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 7814 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
6244 | echo "${ECHO_T}$ac_header_compiler" >&6 | 7815 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
7816 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
6245 | 7817 | ||
6246 | # Is the header present? | 7818 | # Is the header present? |
6247 | echo "$as_me:$LINENO: checking net/if_tap.h presence" >&5 | 7819 | { echo "$as_me:$LINENO: checking net/if_tap.h presence" >&5 |
6248 | echo $ECHO_N "checking net/if_tap.h presence... $ECHO_C" >&6 | 7820 | echo $ECHO_N "checking net/if_tap.h presence... $ECHO_C" >&6; } |
6249 | cat >conftest.$ac_ext <<_ACEOF | 7821 | cat >conftest.$ac_ext <<_ACEOF |
6250 | /* confdefs.h. */ | 7822 | /* confdefs.h. */ |
6251 | _ACEOF | 7823 | _ACEOF |
@@ -6254,8 +7826,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
6254 | /* end confdefs.h. */ | 7826 | /* end confdefs.h. */ |
6255 | #include <net/if_tap.h> | 7827 | #include <net/if_tap.h> |
6256 | _ACEOF | 7828 | _ACEOF |
6257 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 7829 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
6258 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 7830 | case "(($ac_try" in |
7831 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7832 | *) ac_try_echo=$ac_try;; | ||
7833 | esac | ||
7834 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7835 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
6259 | ac_status=$? | 7836 | ac_status=$? |
6260 | grep -v '^ *+' conftest.er1 >conftest.err | 7837 | grep -v '^ *+' conftest.er1 >conftest.err |
6261 | rm -f conftest.er1 | 7838 | rm -f conftest.er1 |
@@ -6279,9 +7856,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
6279 | 7856 | ||
6280 | ac_header_preproc=no | 7857 | ac_header_preproc=no |
6281 | fi | 7858 | fi |
7859 | |||
6282 | rm -f conftest.err conftest.$ac_ext | 7860 | rm -f conftest.err conftest.$ac_ext |
6283 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 7861 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
6284 | echo "${ECHO_T}$ac_header_preproc" >&6 | 7862 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
6285 | 7863 | ||
6286 | # So? What about this header? | 7864 | # So? What about this header? |
6287 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 7865 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -6305,25 +7883,23 @@ echo "$as_me: WARNING: net/if_tap.h: section \"Present But Cannot Be Compile | |||
6305 | echo "$as_me: WARNING: net/if_tap.h: proceeding with the preprocessor's result" >&2;} | 7883 | echo "$as_me: WARNING: net/if_tap.h: proceeding with the preprocessor's result" >&2;} |
6306 | { echo "$as_me:$LINENO: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&5 | 7884 | { echo "$as_me:$LINENO: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&5 |
6307 | echo "$as_me: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&2;} | 7885 | echo "$as_me: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&2;} |
6308 | ( | 7886 | ( cat <<\_ASBOX |
6309 | cat <<\_ASBOX | ||
6310 | ## ------------------------------------------- ## | 7887 | ## ------------------------------------------- ## |
6311 | ## Report this to openssh-unix-dev@mindrot.org ## | 7888 | ## Report this to openssh-unix-dev@mindrot.org ## |
6312 | ## ------------------------------------------- ## | 7889 | ## ------------------------------------------- ## |
6313 | _ASBOX | 7890 | _ASBOX |
6314 | ) | | 7891 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
6315 | sed "s/^/$as_me: WARNING: /" >&2 | ||
6316 | ;; | 7892 | ;; |
6317 | esac | 7893 | esac |
6318 | echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 | 7894 | { echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 |
6319 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6 | 7895 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6; } |
6320 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then | 7896 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then |
6321 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7897 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6322 | else | 7898 | else |
6323 | ac_cv_header_net_if_tap_h=$ac_header_preproc | 7899 | ac_cv_header_net_if_tap_h=$ac_header_preproc |
6324 | fi | 7900 | fi |
6325 | echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 | 7901 | { echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 |
6326 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6 | 7902 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6; } |
6327 | 7903 | ||
6328 | fi | 7904 | fi |
6329 | if test $ac_cv_header_net_if_tap_h = yes; then | 7905 | if test $ac_cv_header_net_if_tap_h = yes; then |
@@ -6356,17 +7932,17 @@ cat >>confdefs.h <<\_ACEOF | |||
6356 | _ACEOF | 7932 | _ACEOF |
6357 | 7933 | ||
6358 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then | 7934 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then |
6359 | echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 | 7935 | { echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 |
6360 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6 | 7936 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6; } |
6361 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then | 7937 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then |
6362 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 7938 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6363 | fi | 7939 | fi |
6364 | echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 | 7940 | { echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 |
6365 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6 | 7941 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6; } |
6366 | else | 7942 | else |
6367 | # Is the header compilable? | 7943 | # Is the header compilable? |
6368 | echo "$as_me:$LINENO: checking net/if_tap.h usability" >&5 | 7944 | { echo "$as_me:$LINENO: checking net/if_tap.h usability" >&5 |
6369 | echo $ECHO_N "checking net/if_tap.h usability... $ECHO_C" >&6 | 7945 | echo $ECHO_N "checking net/if_tap.h usability... $ECHO_C" >&6; } |
6370 | cat >conftest.$ac_ext <<_ACEOF | 7946 | cat >conftest.$ac_ext <<_ACEOF |
6371 | /* confdefs.h. */ | 7947 | /* confdefs.h. */ |
6372 | _ACEOF | 7948 | _ACEOF |
@@ -6377,23 +7953,36 @@ $ac_includes_default | |||
6377 | #include <net/if_tap.h> | 7953 | #include <net/if_tap.h> |
6378 | _ACEOF | 7954 | _ACEOF |
6379 | rm -f conftest.$ac_objext | 7955 | rm -f conftest.$ac_objext |
6380 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 7956 | if { (ac_try="$ac_compile" |
6381 | (eval $ac_compile) 2>conftest.er1 | 7957 | case "(($ac_try" in |
7958 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
7959 | *) ac_try_echo=$ac_try;; | ||
7960 | esac | ||
7961 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7962 | (eval "$ac_compile") 2>conftest.er1 | ||
6382 | ac_status=$? | 7963 | ac_status=$? |
6383 | grep -v '^ *+' conftest.er1 >conftest.err | 7964 | grep -v '^ *+' conftest.er1 >conftest.err |
6384 | rm -f conftest.er1 | 7965 | rm -f conftest.er1 |
6385 | cat conftest.err >&5 | 7966 | cat conftest.err >&5 |
6386 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7967 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6387 | (exit $ac_status); } && | 7968 | (exit $ac_status); } && |
6388 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 7969 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6389 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7970 | { (case "(($ac_try" in |
6390 | (eval $ac_try) 2>&5 | 7971 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7972 | *) ac_try_echo=$ac_try;; | ||
7973 | esac | ||
7974 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7975 | (eval "$ac_try") 2>&5 | ||
6391 | ac_status=$? | 7976 | ac_status=$? |
6392 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7977 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6393 | (exit $ac_status); }; } && | 7978 | (exit $ac_status); }; } && |
6394 | { ac_try='test -s conftest.$ac_objext' | 7979 | { ac_try='test -s conftest.$ac_objext' |
6395 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7980 | { (case "(($ac_try" in |
6396 | (eval $ac_try) 2>&5 | 7981 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
7982 | *) ac_try_echo=$ac_try;; | ||
7983 | esac | ||
7984 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
7985 | (eval "$ac_try") 2>&5 | ||
6397 | ac_status=$? | 7986 | ac_status=$? |
6398 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7987 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6399 | (exit $ac_status); }; }; then | 7988 | (exit $ac_status); }; }; then |
@@ -6402,15 +7991,16 @@ else | |||
6402 | echo "$as_me: failed program was:" >&5 | 7991 | echo "$as_me: failed program was:" >&5 |
6403 | sed 's/^/| /' conftest.$ac_ext >&5 | 7992 | sed 's/^/| /' conftest.$ac_ext >&5 |
6404 | 7993 | ||
6405 | ac_header_compiler=no | 7994 | ac_header_compiler=no |
6406 | fi | 7995 | fi |
6407 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 7996 | |
6408 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 7997 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
6409 | echo "${ECHO_T}$ac_header_compiler" >&6 | 7998 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
7999 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
6410 | 8000 | ||
6411 | # Is the header present? | 8001 | # Is the header present? |
6412 | echo "$as_me:$LINENO: checking net/if_tap.h presence" >&5 | 8002 | { echo "$as_me:$LINENO: checking net/if_tap.h presence" >&5 |
6413 | echo $ECHO_N "checking net/if_tap.h presence... $ECHO_C" >&6 | 8003 | echo $ECHO_N "checking net/if_tap.h presence... $ECHO_C" >&6; } |
6414 | cat >conftest.$ac_ext <<_ACEOF | 8004 | cat >conftest.$ac_ext <<_ACEOF |
6415 | /* confdefs.h. */ | 8005 | /* confdefs.h. */ |
6416 | _ACEOF | 8006 | _ACEOF |
@@ -6419,8 +8009,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
6419 | /* end confdefs.h. */ | 8009 | /* end confdefs.h. */ |
6420 | #include <net/if_tap.h> | 8010 | #include <net/if_tap.h> |
6421 | _ACEOF | 8011 | _ACEOF |
6422 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 8012 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
6423 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 8013 | case "(($ac_try" in |
8014 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
8015 | *) ac_try_echo=$ac_try;; | ||
8016 | esac | ||
8017 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8018 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
6424 | ac_status=$? | 8019 | ac_status=$? |
6425 | grep -v '^ *+' conftest.er1 >conftest.err | 8020 | grep -v '^ *+' conftest.er1 >conftest.err |
6426 | rm -f conftest.er1 | 8021 | rm -f conftest.er1 |
@@ -6444,9 +8039,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
6444 | 8039 | ||
6445 | ac_header_preproc=no | 8040 | ac_header_preproc=no |
6446 | fi | 8041 | fi |
8042 | |||
6447 | rm -f conftest.err conftest.$ac_ext | 8043 | rm -f conftest.err conftest.$ac_ext |
6448 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 8044 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
6449 | echo "${ECHO_T}$ac_header_preproc" >&6 | 8045 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
6450 | 8046 | ||
6451 | # So? What about this header? | 8047 | # So? What about this header? |
6452 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 8048 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -6470,25 +8066,23 @@ echo "$as_me: WARNING: net/if_tap.h: section \"Present But Cannot Be Compile | |||
6470 | echo "$as_me: WARNING: net/if_tap.h: proceeding with the preprocessor's result" >&2;} | 8066 | echo "$as_me: WARNING: net/if_tap.h: proceeding with the preprocessor's result" >&2;} |
6471 | { echo "$as_me:$LINENO: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&5 | 8067 | { echo "$as_me:$LINENO: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&5 |
6472 | echo "$as_me: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&2;} | 8068 | echo "$as_me: WARNING: net/if_tap.h: in the future, the compiler will take precedence" >&2;} |
6473 | ( | 8069 | ( cat <<\_ASBOX |
6474 | cat <<\_ASBOX | ||
6475 | ## ------------------------------------------- ## | 8070 | ## ------------------------------------------- ## |
6476 | ## Report this to openssh-unix-dev@mindrot.org ## | 8071 | ## Report this to openssh-unix-dev@mindrot.org ## |
6477 | ## ------------------------------------------- ## | 8072 | ## ------------------------------------------- ## |
6478 | _ASBOX | 8073 | _ASBOX |
6479 | ) | | 8074 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
6480 | sed "s/^/$as_me: WARNING: /" >&2 | ||
6481 | ;; | 8075 | ;; |
6482 | esac | 8076 | esac |
6483 | echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 | 8077 | { echo "$as_me:$LINENO: checking for net/if_tap.h" >&5 |
6484 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6 | 8078 | echo $ECHO_N "checking for net/if_tap.h... $ECHO_C" >&6; } |
6485 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then | 8079 | if test "${ac_cv_header_net_if_tap_h+set}" = set; then |
6486 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 8080 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6487 | else | 8081 | else |
6488 | ac_cv_header_net_if_tap_h=$ac_header_preproc | 8082 | ac_cv_header_net_if_tap_h=$ac_header_preproc |
6489 | fi | 8083 | fi |
6490 | echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 | 8084 | { echo "$as_me:$LINENO: result: $ac_cv_header_net_if_tap_h" >&5 |
6491 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6 | 8085 | echo "${ECHO_T}$ac_cv_header_net_if_tap_h" >&6; } |
6492 | 8086 | ||
6493 | fi | 8087 | fi |
6494 | if test $ac_cv_header_net_if_tap_h = yes; then | 8088 | if test $ac_cv_header_net_if_tap_h = yes; then |
@@ -6597,12 +8191,12 @@ _ACEOF | |||
6597 | external_path_file=/etc/default/login | 8191 | external_path_file=/etc/default/login |
6598 | # hardwire lastlog location (can't detect it on some versions) | 8192 | # hardwire lastlog location (can't detect it on some versions) |
6599 | conf_lastlog_location="/var/adm/lastlog" | 8193 | conf_lastlog_location="/var/adm/lastlog" |
6600 | echo "$as_me:$LINENO: checking for obsolete utmp and wtmp in solaris2.x" >&5 | 8194 | { echo "$as_me:$LINENO: checking for obsolete utmp and wtmp in solaris2.x" >&5 |
6601 | echo $ECHO_N "checking for obsolete utmp and wtmp in solaris2.x... $ECHO_C" >&6 | 8195 | echo $ECHO_N "checking for obsolete utmp and wtmp in solaris2.x... $ECHO_C" >&6; } |
6602 | sol2ver=`echo "$host"| sed -e 's/.*[0-9]\.//'` | 8196 | sol2ver=`echo "$host"| sed -e 's/.*[0-9]\.//'` |
6603 | if test "$sol2ver" -ge 8; then | 8197 | if test "$sol2ver" -ge 8; then |
6604 | echo "$as_me:$LINENO: result: yes" >&5 | 8198 | { echo "$as_me:$LINENO: result: yes" >&5 |
6605 | echo "${ECHO_T}yes" >&6 | 8199 | echo "${ECHO_T}yes" >&6; } |
6606 | cat >>confdefs.h <<\_ACEOF | 8200 | cat >>confdefs.h <<\_ACEOF |
6607 | #define DISABLE_UTMP 1 | 8201 | #define DISABLE_UTMP 1 |
6608 | _ACEOF | 8202 | _ACEOF |
@@ -6613,8 +8207,8 @@ cat >>confdefs.h <<\_ACEOF | |||
6613 | _ACEOF | 8207 | _ACEOF |
6614 | 8208 | ||
6615 | else | 8209 | else |
6616 | echo "$as_me:$LINENO: result: no" >&5 | 8210 | { echo "$as_me:$LINENO: result: no" >&5 |
6617 | echo "${ECHO_T}no" >&6 | 8211 | echo "${ECHO_T}no" >&6; } |
6618 | fi | 8212 | fi |
6619 | ;; | 8213 | ;; |
6620 | *-*-sunos4*) | 8214 | *-*-sunos4*) |
@@ -6623,9 +8217,9 @@ echo "${ECHO_T}no" >&6 | |||
6623 | for ac_func in getpwanam | 8217 | for ac_func in getpwanam |
6624 | do | 8218 | do |
6625 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 8219 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
6626 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 8220 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
6627 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 8221 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
6628 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 8222 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
6629 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 8223 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6630 | else | 8224 | else |
6631 | cat >conftest.$ac_ext <<_ACEOF | 8225 | cat >conftest.$ac_ext <<_ACEOF |
@@ -6651,52 +8245,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
6651 | 8245 | ||
6652 | #undef $ac_func | 8246 | #undef $ac_func |
6653 | 8247 | ||
6654 | /* Override any gcc2 internal prototype to avoid an error. */ | 8248 | /* Override any GCC internal prototype to avoid an error. |
8249 | Use char because int might match the return type of a GCC | ||
8250 | builtin and then its argument prototype would still apply. */ | ||
6655 | #ifdef __cplusplus | 8251 | #ifdef __cplusplus |
6656 | extern "C" | 8252 | extern "C" |
6657 | { | ||
6658 | #endif | 8253 | #endif |
6659 | /* We use char because int might match the return type of a gcc2 | ||
6660 | builtin and then its argument prototype would still apply. */ | ||
6661 | char $ac_func (); | 8254 | char $ac_func (); |
6662 | /* The GNU C library defines this for functions which it implements | 8255 | /* The GNU C library defines this for functions which it implements |
6663 | to always fail with ENOSYS. Some functions are actually named | 8256 | to always fail with ENOSYS. Some functions are actually named |
6664 | something starting with __ and the normal name is an alias. */ | 8257 | something starting with __ and the normal name is an alias. */ |
6665 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 8258 | #if defined __stub_$ac_func || defined __stub___$ac_func |
6666 | choke me | 8259 | choke me |
6667 | #else | ||
6668 | char (*f) () = $ac_func; | ||
6669 | #endif | ||
6670 | #ifdef __cplusplus | ||
6671 | } | ||
6672 | #endif | 8260 | #endif |
6673 | 8261 | ||
6674 | int | 8262 | int |
6675 | main () | 8263 | main () |
6676 | { | 8264 | { |
6677 | return f != $ac_func; | 8265 | return $ac_func (); |
6678 | ; | 8266 | ; |
6679 | return 0; | 8267 | return 0; |
6680 | } | 8268 | } |
6681 | _ACEOF | 8269 | _ACEOF |
6682 | rm -f conftest.$ac_objext conftest$ac_exeext | 8270 | rm -f conftest.$ac_objext conftest$ac_exeext |
6683 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 8271 | if { (ac_try="$ac_link" |
6684 | (eval $ac_link) 2>conftest.er1 | 8272 | case "(($ac_try" in |
8273 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
8274 | *) ac_try_echo=$ac_try;; | ||
8275 | esac | ||
8276 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8277 | (eval "$ac_link") 2>conftest.er1 | ||
6685 | ac_status=$? | 8278 | ac_status=$? |
6686 | grep -v '^ *+' conftest.er1 >conftest.err | 8279 | grep -v '^ *+' conftest.er1 >conftest.err |
6687 | rm -f conftest.er1 | 8280 | rm -f conftest.er1 |
6688 | cat conftest.err >&5 | 8281 | cat conftest.err >&5 |
6689 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8282 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6690 | (exit $ac_status); } && | 8283 | (exit $ac_status); } && |
6691 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 8284 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6692 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8285 | { (case "(($ac_try" in |
6693 | (eval $ac_try) 2>&5 | 8286 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8287 | *) ac_try_echo=$ac_try;; | ||
8288 | esac | ||
8289 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8290 | (eval "$ac_try") 2>&5 | ||
6694 | ac_status=$? | 8291 | ac_status=$? |
6695 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8292 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6696 | (exit $ac_status); }; } && | 8293 | (exit $ac_status); }; } && |
6697 | { ac_try='test -s conftest$ac_exeext' | 8294 | { ac_try='test -s conftest$ac_exeext' |
6698 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8295 | { (case "(($ac_try" in |
6699 | (eval $ac_try) 2>&5 | 8296 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8297 | *) ac_try_echo=$ac_try;; | ||
8298 | esac | ||
8299 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8300 | (eval "$ac_try") 2>&5 | ||
6700 | ac_status=$? | 8301 | ac_status=$? |
6701 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8302 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6702 | (exit $ac_status); }; }; then | 8303 | (exit $ac_status); }; }; then |
@@ -6705,13 +8306,15 @@ else | |||
6705 | echo "$as_me: failed program was:" >&5 | 8306 | echo "$as_me: failed program was:" >&5 |
6706 | sed 's/^/| /' conftest.$ac_ext >&5 | 8307 | sed 's/^/| /' conftest.$ac_ext >&5 |
6707 | 8308 | ||
6708 | eval "$as_ac_var=no" | 8309 | eval "$as_ac_var=no" |
6709 | fi | 8310 | fi |
6710 | rm -f conftest.err conftest.$ac_objext \ | 8311 | |
8312 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
6711 | conftest$ac_exeext conftest.$ac_ext | 8313 | conftest$ac_exeext conftest.$ac_ext |
6712 | fi | 8314 | fi |
6713 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 8315 | ac_res=`eval echo '${'$as_ac_var'}'` |
6714 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 8316 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
8317 | echo "${ECHO_T}$ac_res" >&6; } | ||
6715 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 8318 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
6716 | cat >>confdefs.h <<_ACEOF | 8319 | cat >>confdefs.h <<_ACEOF |
6717 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 8320 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -6758,8 +8361,8 @@ _ACEOF | |||
6758 | *-sni-sysv*) | 8361 | *-sni-sysv*) |
6759 | # /usr/ucblib MUST NOT be searched on ReliantUNIX | 8362 | # /usr/ucblib MUST NOT be searched on ReliantUNIX |
6760 | 8363 | ||
6761 | echo "$as_me:$LINENO: checking for dlsym in -ldl" >&5 | 8364 | { echo "$as_me:$LINENO: checking for dlsym in -ldl" >&5 |
6762 | echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 | 8365 | echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6; } |
6763 | if test "${ac_cv_lib_dl_dlsym+set}" = set; then | 8366 | if test "${ac_cv_lib_dl_dlsym+set}" = set; then |
6764 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 8367 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6765 | else | 8368 | else |
@@ -6772,39 +8375,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
6772 | cat >>conftest.$ac_ext <<_ACEOF | 8375 | cat >>conftest.$ac_ext <<_ACEOF |
6773 | /* end confdefs.h. */ | 8376 | /* end confdefs.h. */ |
6774 | 8377 | ||
6775 | /* Override any gcc2 internal prototype to avoid an error. */ | 8378 | /* Override any GCC internal prototype to avoid an error. |
8379 | Use char because int might match the return type of a GCC | ||
8380 | builtin and then its argument prototype would still apply. */ | ||
6776 | #ifdef __cplusplus | 8381 | #ifdef __cplusplus |
6777 | extern "C" | 8382 | extern "C" |
6778 | #endif | 8383 | #endif |
6779 | /* We use char because int might match the return type of a gcc2 | ||
6780 | builtin and then its argument prototype would still apply. */ | ||
6781 | char dlsym (); | 8384 | char dlsym (); |
6782 | int | 8385 | int |
6783 | main () | 8386 | main () |
6784 | { | 8387 | { |
6785 | dlsym (); | 8388 | return dlsym (); |
6786 | ; | 8389 | ; |
6787 | return 0; | 8390 | return 0; |
6788 | } | 8391 | } |
6789 | _ACEOF | 8392 | _ACEOF |
6790 | rm -f conftest.$ac_objext conftest$ac_exeext | 8393 | rm -f conftest.$ac_objext conftest$ac_exeext |
6791 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 8394 | if { (ac_try="$ac_link" |
6792 | (eval $ac_link) 2>conftest.er1 | 8395 | case "(($ac_try" in |
8396 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
8397 | *) ac_try_echo=$ac_try;; | ||
8398 | esac | ||
8399 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8400 | (eval "$ac_link") 2>conftest.er1 | ||
6793 | ac_status=$? | 8401 | ac_status=$? |
6794 | grep -v '^ *+' conftest.er1 >conftest.err | 8402 | grep -v '^ *+' conftest.er1 >conftest.err |
6795 | rm -f conftest.er1 | 8403 | rm -f conftest.er1 |
6796 | cat conftest.err >&5 | 8404 | cat conftest.err >&5 |
6797 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8405 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6798 | (exit $ac_status); } && | 8406 | (exit $ac_status); } && |
6799 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 8407 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6800 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8408 | { (case "(($ac_try" in |
6801 | (eval $ac_try) 2>&5 | 8409 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8410 | *) ac_try_echo=$ac_try;; | ||
8411 | esac | ||
8412 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8413 | (eval "$ac_try") 2>&5 | ||
6802 | ac_status=$? | 8414 | ac_status=$? |
6803 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8415 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6804 | (exit $ac_status); }; } && | 8416 | (exit $ac_status); }; } && |
6805 | { ac_try='test -s conftest$ac_exeext' | 8417 | { ac_try='test -s conftest$ac_exeext' |
6806 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8418 | { (case "(($ac_try" in |
6807 | (eval $ac_try) 2>&5 | 8419 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8420 | *) ac_try_echo=$ac_try;; | ||
8421 | esac | ||
8422 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8423 | (eval "$ac_try") 2>&5 | ||
6808 | ac_status=$? | 8424 | ac_status=$? |
6809 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8425 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6810 | (exit $ac_status); }; }; then | 8426 | (exit $ac_status); }; }; then |
@@ -6813,14 +8429,15 @@ else | |||
6813 | echo "$as_me: failed program was:" >&5 | 8429 | echo "$as_me: failed program was:" >&5 |
6814 | sed 's/^/| /' conftest.$ac_ext >&5 | 8430 | sed 's/^/| /' conftest.$ac_ext >&5 |
6815 | 8431 | ||
6816 | ac_cv_lib_dl_dlsym=no | 8432 | ac_cv_lib_dl_dlsym=no |
6817 | fi | 8433 | fi |
6818 | rm -f conftest.err conftest.$ac_objext \ | 8434 | |
8435 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
6819 | conftest$ac_exeext conftest.$ac_ext | 8436 | conftest$ac_exeext conftest.$ac_ext |
6820 | LIBS=$ac_check_lib_save_LIBS | 8437 | LIBS=$ac_check_lib_save_LIBS |
6821 | fi | 8438 | fi |
6822 | echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlsym" >&5 | 8439 | { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlsym" >&5 |
6823 | echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 | 8440 | echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6; } |
6824 | if test $ac_cv_lib_dl_dlsym = yes; then | 8441 | if test $ac_cv_lib_dl_dlsym = yes; then |
6825 | cat >>confdefs.h <<_ACEOF | 8442 | cat >>confdefs.h <<_ACEOF |
6826 | #define HAVE_LIBDL 1 | 8443 | #define HAVE_LIBDL 1 |
@@ -6831,8 +8448,8 @@ _ACEOF | |||
6831 | fi | 8448 | fi |
6832 | 8449 | ||
6833 | # -lresolv needs to be at the end of LIBS or DNS lookups break | 8450 | # -lresolv needs to be at the end of LIBS or DNS lookups break |
6834 | echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5 | 8451 | { echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5 |
6835 | echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6 | 8452 | echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6; } |
6836 | if test "${ac_cv_lib_resolv_res_query+set}" = set; then | 8453 | if test "${ac_cv_lib_resolv_res_query+set}" = set; then |
6837 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 8454 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
6838 | else | 8455 | else |
@@ -6845,39 +8462,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
6845 | cat >>conftest.$ac_ext <<_ACEOF | 8462 | cat >>conftest.$ac_ext <<_ACEOF |
6846 | /* end confdefs.h. */ | 8463 | /* end confdefs.h. */ |
6847 | 8464 | ||
6848 | /* Override any gcc2 internal prototype to avoid an error. */ | 8465 | /* Override any GCC internal prototype to avoid an error. |
8466 | Use char because int might match the return type of a GCC | ||
8467 | builtin and then its argument prototype would still apply. */ | ||
6849 | #ifdef __cplusplus | 8468 | #ifdef __cplusplus |
6850 | extern "C" | 8469 | extern "C" |
6851 | #endif | 8470 | #endif |
6852 | /* We use char because int might match the return type of a gcc2 | ||
6853 | builtin and then its argument prototype would still apply. */ | ||
6854 | char res_query (); | 8471 | char res_query (); |
6855 | int | 8472 | int |
6856 | main () | 8473 | main () |
6857 | { | 8474 | { |
6858 | res_query (); | 8475 | return res_query (); |
6859 | ; | 8476 | ; |
6860 | return 0; | 8477 | return 0; |
6861 | } | 8478 | } |
6862 | _ACEOF | 8479 | _ACEOF |
6863 | rm -f conftest.$ac_objext conftest$ac_exeext | 8480 | rm -f conftest.$ac_objext conftest$ac_exeext |
6864 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 8481 | if { (ac_try="$ac_link" |
6865 | (eval $ac_link) 2>conftest.er1 | 8482 | case "(($ac_try" in |
8483 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
8484 | *) ac_try_echo=$ac_try;; | ||
8485 | esac | ||
8486 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8487 | (eval "$ac_link") 2>conftest.er1 | ||
6866 | ac_status=$? | 8488 | ac_status=$? |
6867 | grep -v '^ *+' conftest.er1 >conftest.err | 8489 | grep -v '^ *+' conftest.er1 >conftest.err |
6868 | rm -f conftest.er1 | 8490 | rm -f conftest.er1 |
6869 | cat conftest.err >&5 | 8491 | cat conftest.err >&5 |
6870 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8492 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6871 | (exit $ac_status); } && | 8493 | (exit $ac_status); } && |
6872 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 8494 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6873 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8495 | { (case "(($ac_try" in |
6874 | (eval $ac_try) 2>&5 | 8496 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8497 | *) ac_try_echo=$ac_try;; | ||
8498 | esac | ||
8499 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8500 | (eval "$ac_try") 2>&5 | ||
6875 | ac_status=$? | 8501 | ac_status=$? |
6876 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8502 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6877 | (exit $ac_status); }; } && | 8503 | (exit $ac_status); }; } && |
6878 | { ac_try='test -s conftest$ac_exeext' | 8504 | { ac_try='test -s conftest$ac_exeext' |
6879 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8505 | { (case "(($ac_try" in |
6880 | (eval $ac_try) 2>&5 | 8506 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8507 | *) ac_try_echo=$ac_try;; | ||
8508 | esac | ||
8509 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8510 | (eval "$ac_try") 2>&5 | ||
6881 | ac_status=$? | 8511 | ac_status=$? |
6882 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8512 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6883 | (exit $ac_status); }; }; then | 8513 | (exit $ac_status); }; }; then |
@@ -6886,14 +8516,15 @@ else | |||
6886 | echo "$as_me: failed program was:" >&5 | 8516 | echo "$as_me: failed program was:" >&5 |
6887 | sed 's/^/| /' conftest.$ac_ext >&5 | 8517 | sed 's/^/| /' conftest.$ac_ext >&5 |
6888 | 8518 | ||
6889 | ac_cv_lib_resolv_res_query=no | 8519 | ac_cv_lib_resolv_res_query=no |
6890 | fi | 8520 | fi |
6891 | rm -f conftest.err conftest.$ac_objext \ | 8521 | |
8522 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
6892 | conftest$ac_exeext conftest.$ac_ext | 8523 | conftest$ac_exeext conftest.$ac_ext |
6893 | LIBS=$ac_check_lib_save_LIBS | 8524 | LIBS=$ac_check_lib_save_LIBS |
6894 | fi | 8525 | fi |
6895 | echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_query" >&5 | 8526 | { echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_query" >&5 |
6896 | echo "${ECHO_T}$ac_cv_lib_resolv_res_query" >&6 | 8527 | echo "${ECHO_T}$ac_cv_lib_resolv_res_query" >&6; } |
6897 | if test $ac_cv_lib_resolv_res_query = yes; then | 8528 | if test $ac_cv_lib_resolv_res_query = yes; then |
6898 | LIBS="$LIBS -lresolv" | 8529 | LIBS="$LIBS -lresolv" |
6899 | fi | 8530 | fi |
@@ -7061,9 +8692,9 @@ _ACEOF | |||
7061 | for ac_func in getluid setluid | 8692 | for ac_func in getluid setluid |
7062 | do | 8693 | do |
7063 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 8694 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
7064 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 8695 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
7065 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 8696 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
7066 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 8697 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
7067 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 8698 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7068 | else | 8699 | else |
7069 | cat >conftest.$ac_ext <<_ACEOF | 8700 | cat >conftest.$ac_ext <<_ACEOF |
@@ -7089,52 +8720,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
7089 | 8720 | ||
7090 | #undef $ac_func | 8721 | #undef $ac_func |
7091 | 8722 | ||
7092 | /* Override any gcc2 internal prototype to avoid an error. */ | 8723 | /* Override any GCC internal prototype to avoid an error. |
8724 | Use char because int might match the return type of a GCC | ||
8725 | builtin and then its argument prototype would still apply. */ | ||
7093 | #ifdef __cplusplus | 8726 | #ifdef __cplusplus |
7094 | extern "C" | 8727 | extern "C" |
7095 | { | ||
7096 | #endif | 8728 | #endif |
7097 | /* We use char because int might match the return type of a gcc2 | ||
7098 | builtin and then its argument prototype would still apply. */ | ||
7099 | char $ac_func (); | 8729 | char $ac_func (); |
7100 | /* The GNU C library defines this for functions which it implements | 8730 | /* The GNU C library defines this for functions which it implements |
7101 | to always fail with ENOSYS. Some functions are actually named | 8731 | to always fail with ENOSYS. Some functions are actually named |
7102 | something starting with __ and the normal name is an alias. */ | 8732 | something starting with __ and the normal name is an alias. */ |
7103 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 8733 | #if defined __stub_$ac_func || defined __stub___$ac_func |
7104 | choke me | 8734 | choke me |
7105 | #else | ||
7106 | char (*f) () = $ac_func; | ||
7107 | #endif | ||
7108 | #ifdef __cplusplus | ||
7109 | } | ||
7110 | #endif | 8735 | #endif |
7111 | 8736 | ||
7112 | int | 8737 | int |
7113 | main () | 8738 | main () |
7114 | { | 8739 | { |
7115 | return f != $ac_func; | 8740 | return $ac_func (); |
7116 | ; | 8741 | ; |
7117 | return 0; | 8742 | return 0; |
7118 | } | 8743 | } |
7119 | _ACEOF | 8744 | _ACEOF |
7120 | rm -f conftest.$ac_objext conftest$ac_exeext | 8745 | rm -f conftest.$ac_objext conftest$ac_exeext |
7121 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 8746 | if { (ac_try="$ac_link" |
7122 | (eval $ac_link) 2>conftest.er1 | 8747 | case "(($ac_try" in |
8748 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
8749 | *) ac_try_echo=$ac_try;; | ||
8750 | esac | ||
8751 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8752 | (eval "$ac_link") 2>conftest.er1 | ||
7123 | ac_status=$? | 8753 | ac_status=$? |
7124 | grep -v '^ *+' conftest.er1 >conftest.err | 8754 | grep -v '^ *+' conftest.er1 >conftest.err |
7125 | rm -f conftest.er1 | 8755 | rm -f conftest.er1 |
7126 | cat conftest.err >&5 | 8756 | cat conftest.err >&5 |
7127 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8757 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7128 | (exit $ac_status); } && | 8758 | (exit $ac_status); } && |
7129 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 8759 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7130 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8760 | { (case "(($ac_try" in |
7131 | (eval $ac_try) 2>&5 | 8761 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8762 | *) ac_try_echo=$ac_try;; | ||
8763 | esac | ||
8764 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8765 | (eval "$ac_try") 2>&5 | ||
7132 | ac_status=$? | 8766 | ac_status=$? |
7133 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8767 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7134 | (exit $ac_status); }; } && | 8768 | (exit $ac_status); }; } && |
7135 | { ac_try='test -s conftest$ac_exeext' | 8769 | { ac_try='test -s conftest$ac_exeext' |
7136 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8770 | { (case "(($ac_try" in |
7137 | (eval $ac_try) 2>&5 | 8771 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
8772 | *) ac_try_echo=$ac_try;; | ||
8773 | esac | ||
8774 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
8775 | (eval "$ac_try") 2>&5 | ||
7138 | ac_status=$? | 8776 | ac_status=$? |
7139 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8777 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7140 | (exit $ac_status); }; }; then | 8778 | (exit $ac_status); }; }; then |
@@ -7143,13 +8781,15 @@ else | |||
7143 | echo "$as_me: failed program was:" >&5 | 8781 | echo "$as_me: failed program was:" >&5 |
7144 | sed 's/^/| /' conftest.$ac_ext >&5 | 8782 | sed 's/^/| /' conftest.$ac_ext >&5 |
7145 | 8783 | ||
7146 | eval "$as_ac_var=no" | 8784 | eval "$as_ac_var=no" |
7147 | fi | 8785 | fi |
7148 | rm -f conftest.err conftest.$ac_objext \ | 8786 | |
8787 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
7149 | conftest$ac_exeext conftest.$ac_ext | 8788 | conftest$ac_exeext conftest.$ac_ext |
7150 | fi | 8789 | fi |
7151 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 8790 | ac_res=`eval echo '${'$as_ac_var'}'` |
7152 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 8791 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
8792 | echo "${ECHO_T}$ac_res" >&6; } | ||
7153 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 8793 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
7154 | cat >>confdefs.h <<_ACEOF | 8794 | cat >>confdefs.h <<_ACEOF |
7155 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 8795 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -7250,25 +8890,25 @@ _ACEOF | |||
7250 | MANTYPE=cat | 8890 | MANTYPE=cat |
7251 | ;; | 8891 | ;; |
7252 | *-dec-osf*) | 8892 | *-dec-osf*) |
7253 | echo "$as_me:$LINENO: checking for Digital Unix SIA" >&5 | 8893 | { echo "$as_me:$LINENO: checking for Digital Unix SIA" >&5 |
7254 | echo $ECHO_N "checking for Digital Unix SIA... $ECHO_C" >&6 | 8894 | echo $ECHO_N "checking for Digital Unix SIA... $ECHO_C" >&6; } |
7255 | no_osfsia="" | 8895 | no_osfsia="" |
7256 | 8896 | ||
7257 | # Check whether --with-osfsia or --without-osfsia was given. | 8897 | # Check whether --with-osfsia was given. |
7258 | if test "${with_osfsia+set}" = set; then | 8898 | if test "${with_osfsia+set}" = set; then |
7259 | withval="$with_osfsia" | 8899 | withval=$with_osfsia; |
7260 | |||
7261 | if test "x$withval" = "xno" ; then | 8900 | if test "x$withval" = "xno" ; then |
7262 | echo "$as_me:$LINENO: result: disabled" >&5 | 8901 | { echo "$as_me:$LINENO: result: disabled" >&5 |
7263 | echo "${ECHO_T}disabled" >&6 | 8902 | echo "${ECHO_T}disabled" >&6; } |
7264 | no_osfsia=1 | 8903 | no_osfsia=1 |
7265 | fi | 8904 | fi |
7266 | 8905 | ||
7267 | fi; | 8906 | fi |
8907 | |||
7268 | if test -z "$no_osfsia" ; then | 8908 | if test -z "$no_osfsia" ; then |
7269 | if test -f /etc/sia/matrix.conf; then | 8909 | if test -f /etc/sia/matrix.conf; then |
7270 | echo "$as_me:$LINENO: result: yes" >&5 | 8910 | { echo "$as_me:$LINENO: result: yes" >&5 |
7271 | echo "${ECHO_T}yes" >&6 | 8911 | echo "${ECHO_T}yes" >&6; } |
7272 | 8912 | ||
7273 | cat >>confdefs.h <<\_ACEOF | 8913 | cat >>confdefs.h <<\_ACEOF |
7274 | #define HAVE_OSF_SIA 1 | 8914 | #define HAVE_OSF_SIA 1 |
@@ -7285,8 +8925,8 @@ _ACEOF | |||
7285 | 8925 | ||
7286 | LIBS="$LIBS -lsecurity -ldb -lm -laud" | 8926 | LIBS="$LIBS -lsecurity -ldb -lm -laud" |
7287 | else | 8927 | else |
7288 | echo "$as_me:$LINENO: result: no" >&5 | 8928 | { echo "$as_me:$LINENO: result: no" >&5 |
7289 | echo "${ECHO_T}no" >&6 | 8929 | echo "${ECHO_T}no" >&6; } |
7290 | 8930 | ||
7291 | cat >>confdefs.h <<\_ACEOF | 8931 | cat >>confdefs.h <<\_ACEOF |
7292 | #define LOCKED_PASSWD_SUBSTR "Nologin" | 8932 | #define LOCKED_PASSWD_SUBSTR "Nologin" |
@@ -7380,58 +9020,57 @@ esac | |||
7380 | 9020 | ||
7381 | # Allow user to specify flags | 9021 | # Allow user to specify flags |
7382 | 9022 | ||
7383 | # Check whether --with-cflags or --without-cflags was given. | 9023 | # Check whether --with-cflags was given. |
7384 | if test "${with_cflags+set}" = set; then | 9024 | if test "${with_cflags+set}" = set; then |
7385 | withval="$with_cflags" | 9025 | withval=$with_cflags; |
7386 | |||
7387 | if test -n "$withval" && test "x$withval" != "xno" && \ | 9026 | if test -n "$withval" && test "x$withval" != "xno" && \ |
7388 | test "x${withval}" != "xyes"; then | 9027 | test "x${withval}" != "xyes"; then |
7389 | CFLAGS="$CFLAGS $withval" | 9028 | CFLAGS="$CFLAGS $withval" |
7390 | fi | 9029 | fi |
7391 | 9030 | ||
7392 | 9031 | ||
7393 | fi; | 9032 | fi |
9033 | |||
7394 | 9034 | ||
7395 | # Check whether --with-cppflags or --without-cppflags was given. | 9035 | # Check whether --with-cppflags was given. |
7396 | if test "${with_cppflags+set}" = set; then | 9036 | if test "${with_cppflags+set}" = set; then |
7397 | withval="$with_cppflags" | 9037 | withval=$with_cppflags; |
7398 | |||
7399 | if test -n "$withval" && test "x$withval" != "xno" && \ | 9038 | if test -n "$withval" && test "x$withval" != "xno" && \ |
7400 | test "x${withval}" != "xyes"; then | 9039 | test "x${withval}" != "xyes"; then |
7401 | CPPFLAGS="$CPPFLAGS $withval" | 9040 | CPPFLAGS="$CPPFLAGS $withval" |
7402 | fi | 9041 | fi |
7403 | 9042 | ||
7404 | 9043 | ||
7405 | fi; | 9044 | fi |
7406 | 9045 | ||
7407 | # Check whether --with-ldflags or --without-ldflags was given. | ||
7408 | if test "${with_ldflags+set}" = set; then | ||
7409 | withval="$with_ldflags" | ||
7410 | 9046 | ||
9047 | # Check whether --with-ldflags was given. | ||
9048 | if test "${with_ldflags+set}" = set; then | ||
9049 | withval=$with_ldflags; | ||
7411 | if test -n "$withval" && test "x$withval" != "xno" && \ | 9050 | if test -n "$withval" && test "x$withval" != "xno" && \ |
7412 | test "x${withval}" != "xyes"; then | 9051 | test "x${withval}" != "xyes"; then |
7413 | LDFLAGS="$LDFLAGS $withval" | 9052 | LDFLAGS="$LDFLAGS $withval" |
7414 | fi | 9053 | fi |
7415 | 9054 | ||
7416 | 9055 | ||
7417 | fi; | 9056 | fi |
7418 | 9057 | ||
7419 | # Check whether --with-libs or --without-libs was given. | ||
7420 | if test "${with_libs+set}" = set; then | ||
7421 | withval="$with_libs" | ||
7422 | 9058 | ||
9059 | # Check whether --with-libs was given. | ||
9060 | if test "${with_libs+set}" = set; then | ||
9061 | withval=$with_libs; | ||
7423 | if test -n "$withval" && test "x$withval" != "xno" && \ | 9062 | if test -n "$withval" && test "x$withval" != "xno" && \ |
7424 | test "x${withval}" != "xyes"; then | 9063 | test "x${withval}" != "xyes"; then |
7425 | LIBS="$LIBS $withval" | 9064 | LIBS="$LIBS $withval" |
7426 | fi | 9065 | fi |
7427 | 9066 | ||
7428 | 9067 | ||
7429 | fi; | 9068 | fi |
9069 | |||
7430 | 9070 | ||
7431 | # Check whether --with-Werror or --without-Werror was given. | 9071 | # Check whether --with-Werror was given. |
7432 | if test "${with_Werror+set}" = set; then | 9072 | if test "${with_Werror+set}" = set; then |
7433 | withval="$with_Werror" | 9073 | withval=$with_Werror; |
7434 | |||
7435 | if test -n "$withval" && test "x$withval" != "xno"; then | 9074 | if test -n "$withval" && test "x$withval" != "xno"; then |
7436 | werror_flags="-Werror" | 9075 | werror_flags="-Werror" |
7437 | if test "x${withval}" != "xyes"; then | 9076 | if test "x${withval}" != "xyes"; then |
@@ -7440,10 +9079,11 @@ if test "${with_Werror+set}" = set; then | |||
7440 | fi | 9079 | fi |
7441 | 9080 | ||
7442 | 9081 | ||
7443 | fi; | 9082 | fi |
9083 | |||
7444 | 9084 | ||
7445 | echo "$as_me:$LINENO: checking compiler and flags for sanity" >&5 | 9085 | { echo "$as_me:$LINENO: checking compiler and flags for sanity" >&5 |
7446 | echo $ECHO_N "checking compiler and flags for sanity... $ECHO_C" >&6 | 9086 | echo $ECHO_N "checking compiler and flags for sanity... $ECHO_C" >&6; } |
7447 | if test "$cross_compiling" = yes; then | 9087 | if test "$cross_compiling" = yes; then |
7448 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking compiler sanity" >&5 | 9088 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking compiler sanity" >&5 |
7449 | echo "$as_me: WARNING: cross compiling: not checking compiler sanity" >&2;} | 9089 | echo "$as_me: WARNING: cross compiling: not checking compiler sanity" >&2;} |
@@ -7461,18 +9101,27 @@ int main(){exit(0);} | |||
7461 | 9101 | ||
7462 | _ACEOF | 9102 | _ACEOF |
7463 | rm -f conftest$ac_exeext | 9103 | rm -f conftest$ac_exeext |
7464 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 9104 | if { (ac_try="$ac_link" |
7465 | (eval $ac_link) 2>&5 | 9105 | case "(($ac_try" in |
9106 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9107 | *) ac_try_echo=$ac_try;; | ||
9108 | esac | ||
9109 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9110 | (eval "$ac_link") 2>&5 | ||
7466 | ac_status=$? | 9111 | ac_status=$? |
7467 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9112 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7468 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 9113 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
7469 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9114 | { (case "(($ac_try" in |
7470 | (eval $ac_try) 2>&5 | 9115 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9116 | *) ac_try_echo=$ac_try;; | ||
9117 | esac | ||
9118 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9119 | (eval "$ac_try") 2>&5 | ||
7471 | ac_status=$? | 9120 | ac_status=$? |
7472 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9121 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7473 | (exit $ac_status); }; }; then | 9122 | (exit $ac_status); }; }; then |
7474 | echo "$as_me:$LINENO: result: yes" >&5 | 9123 | { echo "$as_me:$LINENO: result: yes" >&5 |
7475 | echo "${ECHO_T}yes" >&6 | 9124 | echo "${ECHO_T}yes" >&6; } |
7476 | else | 9125 | else |
7477 | echo "$as_me: program exited with status $ac_status" >&5 | 9126 | echo "$as_me: program exited with status $ac_status" >&5 |
7478 | echo "$as_me: failed program was:" >&5 | 9127 | echo "$as_me: failed program was:" >&5 |
@@ -7480,14 +9129,14 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
7480 | 9129 | ||
7481 | ( exit $ac_status ) | 9130 | ( exit $ac_status ) |
7482 | 9131 | ||
7483 | echo "$as_me:$LINENO: result: no" >&5 | 9132 | { echo "$as_me:$LINENO: result: no" >&5 |
7484 | echo "${ECHO_T}no" >&6 | 9133 | echo "${ECHO_T}no" >&6; } |
7485 | { { echo "$as_me:$LINENO: error: *** compiler cannot create working executables, check config.log ***" >&5 | 9134 | { { echo "$as_me:$LINENO: error: *** compiler cannot create working executables, check config.log ***" >&5 |
7486 | echo "$as_me: error: *** compiler cannot create working executables, check config.log ***" >&2;} | 9135 | echo "$as_me: error: *** compiler cannot create working executables, check config.log ***" >&2;} |
7487 | { (exit 1); exit 1; }; } | 9136 | { (exit 1); exit 1; }; } |
7488 | 9137 | ||
7489 | fi | 9138 | fi |
7490 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 9139 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
7491 | fi | 9140 | fi |
7492 | 9141 | ||
7493 | 9142 | ||
@@ -7546,6 +9195,8 @@ fi | |||
7546 | 9195 | ||
7547 | 9196 | ||
7548 | 9197 | ||
9198 | |||
9199 | |||
7549 | for ac_header in \ | 9200 | for ac_header in \ |
7550 | bstring.h \ | 9201 | bstring.h \ |
7551 | crypt.h \ | 9202 | crypt.h \ |
@@ -7606,18 +9257,19 @@ for ac_header in \ | |||
7606 | 9257 | ||
7607 | do | 9258 | do |
7608 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 9259 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
7609 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 9260 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
7610 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 9261 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
7611 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 9262 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
7612 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 9263 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
7613 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9264 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7614 | fi | 9265 | fi |
7615 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 9266 | ac_res=`eval echo '${'$as_ac_Header'}'` |
7616 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 9267 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
9268 | echo "${ECHO_T}$ac_res" >&6; } | ||
7617 | else | 9269 | else |
7618 | # Is the header compilable? | 9270 | # Is the header compilable? |
7619 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 9271 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
7620 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 9272 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
7621 | cat >conftest.$ac_ext <<_ACEOF | 9273 | cat >conftest.$ac_ext <<_ACEOF |
7622 | /* confdefs.h. */ | 9274 | /* confdefs.h. */ |
7623 | _ACEOF | 9275 | _ACEOF |
@@ -7628,23 +9280,36 @@ $ac_includes_default | |||
7628 | #include <$ac_header> | 9280 | #include <$ac_header> |
7629 | _ACEOF | 9281 | _ACEOF |
7630 | rm -f conftest.$ac_objext | 9282 | rm -f conftest.$ac_objext |
7631 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 9283 | if { (ac_try="$ac_compile" |
7632 | (eval $ac_compile) 2>conftest.er1 | 9284 | case "(($ac_try" in |
9285 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9286 | *) ac_try_echo=$ac_try;; | ||
9287 | esac | ||
9288 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9289 | (eval "$ac_compile") 2>conftest.er1 | ||
7633 | ac_status=$? | 9290 | ac_status=$? |
7634 | grep -v '^ *+' conftest.er1 >conftest.err | 9291 | grep -v '^ *+' conftest.er1 >conftest.err |
7635 | rm -f conftest.er1 | 9292 | rm -f conftest.er1 |
7636 | cat conftest.err >&5 | 9293 | cat conftest.err >&5 |
7637 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9294 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7638 | (exit $ac_status); } && | 9295 | (exit $ac_status); } && |
7639 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9296 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7640 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9297 | { (case "(($ac_try" in |
7641 | (eval $ac_try) 2>&5 | 9298 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9299 | *) ac_try_echo=$ac_try;; | ||
9300 | esac | ||
9301 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9302 | (eval "$ac_try") 2>&5 | ||
7642 | ac_status=$? | 9303 | ac_status=$? |
7643 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9304 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7644 | (exit $ac_status); }; } && | 9305 | (exit $ac_status); }; } && |
7645 | { ac_try='test -s conftest.$ac_objext' | 9306 | { ac_try='test -s conftest.$ac_objext' |
7646 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9307 | { (case "(($ac_try" in |
7647 | (eval $ac_try) 2>&5 | 9308 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9309 | *) ac_try_echo=$ac_try;; | ||
9310 | esac | ||
9311 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9312 | (eval "$ac_try") 2>&5 | ||
7648 | ac_status=$? | 9313 | ac_status=$? |
7649 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9314 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7650 | (exit $ac_status); }; }; then | 9315 | (exit $ac_status); }; }; then |
@@ -7653,15 +9318,16 @@ else | |||
7653 | echo "$as_me: failed program was:" >&5 | 9318 | echo "$as_me: failed program was:" >&5 |
7654 | sed 's/^/| /' conftest.$ac_ext >&5 | 9319 | sed 's/^/| /' conftest.$ac_ext >&5 |
7655 | 9320 | ||
7656 | ac_header_compiler=no | 9321 | ac_header_compiler=no |
7657 | fi | 9322 | fi |
7658 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 9323 | |
7659 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 9324 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
7660 | echo "${ECHO_T}$ac_header_compiler" >&6 | 9325 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
9326 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
7661 | 9327 | ||
7662 | # Is the header present? | 9328 | # Is the header present? |
7663 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 9329 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
7664 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 9330 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
7665 | cat >conftest.$ac_ext <<_ACEOF | 9331 | cat >conftest.$ac_ext <<_ACEOF |
7666 | /* confdefs.h. */ | 9332 | /* confdefs.h. */ |
7667 | _ACEOF | 9333 | _ACEOF |
@@ -7670,8 +9336,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
7670 | /* end confdefs.h. */ | 9336 | /* end confdefs.h. */ |
7671 | #include <$ac_header> | 9337 | #include <$ac_header> |
7672 | _ACEOF | 9338 | _ACEOF |
7673 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 9339 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
7674 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 9340 | case "(($ac_try" in |
9341 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9342 | *) ac_try_echo=$ac_try;; | ||
9343 | esac | ||
9344 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9345 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
7675 | ac_status=$? | 9346 | ac_status=$? |
7676 | grep -v '^ *+' conftest.er1 >conftest.err | 9347 | grep -v '^ *+' conftest.er1 >conftest.err |
7677 | rm -f conftest.er1 | 9348 | rm -f conftest.er1 |
@@ -7695,9 +9366,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
7695 | 9366 | ||
7696 | ac_header_preproc=no | 9367 | ac_header_preproc=no |
7697 | fi | 9368 | fi |
9369 | |||
7698 | rm -f conftest.err conftest.$ac_ext | 9370 | rm -f conftest.err conftest.$ac_ext |
7699 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 9371 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
7700 | echo "${ECHO_T}$ac_header_preproc" >&6 | 9372 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
7701 | 9373 | ||
7702 | # So? What about this header? | 9374 | # So? What about this header? |
7703 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 9375 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -7721,25 +9393,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
7721 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 9393 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
7722 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 9394 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
7723 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 9395 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
7724 | ( | 9396 | ( cat <<\_ASBOX |
7725 | cat <<\_ASBOX | ||
7726 | ## ------------------------------------------- ## | 9397 | ## ------------------------------------------- ## |
7727 | ## Report this to openssh-unix-dev@mindrot.org ## | 9398 | ## Report this to openssh-unix-dev@mindrot.org ## |
7728 | ## ------------------------------------------- ## | 9399 | ## ------------------------------------------- ## |
7729 | _ASBOX | 9400 | _ASBOX |
7730 | ) | | 9401 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
7731 | sed "s/^/$as_me: WARNING: /" >&2 | ||
7732 | ;; | 9402 | ;; |
7733 | esac | 9403 | esac |
7734 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 9404 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
7735 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 9405 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
7736 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 9406 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
7737 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9407 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7738 | else | 9408 | else |
7739 | eval "$as_ac_Header=\$ac_header_preproc" | 9409 | eval "$as_ac_Header=\$ac_header_preproc" |
7740 | fi | 9410 | fi |
7741 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 9411 | ac_res=`eval echo '${'$as_ac_Header'}'` |
7742 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 9412 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
9413 | echo "${ECHO_T}$ac_res" >&6; } | ||
7743 | 9414 | ||
7744 | fi | 9415 | fi |
7745 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 9416 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -7757,9 +9428,9 @@ done | |||
7757 | for ac_header in lastlog.h | 9428 | for ac_header in lastlog.h |
7758 | do | 9429 | do |
7759 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 9430 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
7760 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 9431 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
7761 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 9432 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
7762 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 9433 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
7763 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9434 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7764 | else | 9435 | else |
7765 | cat >conftest.$ac_ext <<_ACEOF | 9436 | cat >conftest.$ac_ext <<_ACEOF |
@@ -7777,23 +9448,36 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
7777 | #include <$ac_header> | 9448 | #include <$ac_header> |
7778 | _ACEOF | 9449 | _ACEOF |
7779 | rm -f conftest.$ac_objext | 9450 | rm -f conftest.$ac_objext |
7780 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 9451 | if { (ac_try="$ac_compile" |
7781 | (eval $ac_compile) 2>conftest.er1 | 9452 | case "(($ac_try" in |
9453 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9454 | *) ac_try_echo=$ac_try;; | ||
9455 | esac | ||
9456 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9457 | (eval "$ac_compile") 2>conftest.er1 | ||
7782 | ac_status=$? | 9458 | ac_status=$? |
7783 | grep -v '^ *+' conftest.er1 >conftest.err | 9459 | grep -v '^ *+' conftest.er1 >conftest.err |
7784 | rm -f conftest.er1 | 9460 | rm -f conftest.er1 |
7785 | cat conftest.err >&5 | 9461 | cat conftest.err >&5 |
7786 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9462 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7787 | (exit $ac_status); } && | 9463 | (exit $ac_status); } && |
7788 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9464 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7789 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9465 | { (case "(($ac_try" in |
7790 | (eval $ac_try) 2>&5 | 9466 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9467 | *) ac_try_echo=$ac_try;; | ||
9468 | esac | ||
9469 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9470 | (eval "$ac_try") 2>&5 | ||
7791 | ac_status=$? | 9471 | ac_status=$? |
7792 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9472 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7793 | (exit $ac_status); }; } && | 9473 | (exit $ac_status); }; } && |
7794 | { ac_try='test -s conftest.$ac_objext' | 9474 | { ac_try='test -s conftest.$ac_objext' |
7795 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9475 | { (case "(($ac_try" in |
7796 | (eval $ac_try) 2>&5 | 9476 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9477 | *) ac_try_echo=$ac_try;; | ||
9478 | esac | ||
9479 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9480 | (eval "$ac_try") 2>&5 | ||
7797 | ac_status=$? | 9481 | ac_status=$? |
7798 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9482 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7799 | (exit $ac_status); }; }; then | 9483 | (exit $ac_status); }; }; then |
@@ -7802,12 +9486,14 @@ else | |||
7802 | echo "$as_me: failed program was:" >&5 | 9486 | echo "$as_me: failed program was:" >&5 |
7803 | sed 's/^/| /' conftest.$ac_ext >&5 | 9487 | sed 's/^/| /' conftest.$ac_ext >&5 |
7804 | 9488 | ||
7805 | eval "$as_ac_Header=no" | 9489 | eval "$as_ac_Header=no" |
7806 | fi | 9490 | fi |
7807 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 9491 | |
9492 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
7808 | fi | 9493 | fi |
7809 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 9494 | ac_res=`eval echo '${'$as_ac_Header'}'` |
7810 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 9495 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
9496 | echo "${ECHO_T}$ac_res" >&6; } | ||
7811 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 9497 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
7812 | cat >>confdefs.h <<_ACEOF | 9498 | cat >>confdefs.h <<_ACEOF |
7813 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 | 9499 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 |
@@ -7823,9 +9509,9 @@ done | |||
7823 | for ac_header in sys/ptms.h | 9509 | for ac_header in sys/ptms.h |
7824 | do | 9510 | do |
7825 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 9511 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
7826 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 9512 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
7827 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 9513 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
7828 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 9514 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
7829 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9515 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7830 | else | 9516 | else |
7831 | cat >conftest.$ac_ext <<_ACEOF | 9517 | cat >conftest.$ac_ext <<_ACEOF |
@@ -7843,23 +9529,36 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
7843 | #include <$ac_header> | 9529 | #include <$ac_header> |
7844 | _ACEOF | 9530 | _ACEOF |
7845 | rm -f conftest.$ac_objext | 9531 | rm -f conftest.$ac_objext |
7846 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 9532 | if { (ac_try="$ac_compile" |
7847 | (eval $ac_compile) 2>conftest.er1 | 9533 | case "(($ac_try" in |
9534 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9535 | *) ac_try_echo=$ac_try;; | ||
9536 | esac | ||
9537 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9538 | (eval "$ac_compile") 2>conftest.er1 | ||
7848 | ac_status=$? | 9539 | ac_status=$? |
7849 | grep -v '^ *+' conftest.er1 >conftest.err | 9540 | grep -v '^ *+' conftest.er1 >conftest.err |
7850 | rm -f conftest.er1 | 9541 | rm -f conftest.er1 |
7851 | cat conftest.err >&5 | 9542 | cat conftest.err >&5 |
7852 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9543 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7853 | (exit $ac_status); } && | 9544 | (exit $ac_status); } && |
7854 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9545 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7855 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9546 | { (case "(($ac_try" in |
7856 | (eval $ac_try) 2>&5 | 9547 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9548 | *) ac_try_echo=$ac_try;; | ||
9549 | esac | ||
9550 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9551 | (eval "$ac_try") 2>&5 | ||
7857 | ac_status=$? | 9552 | ac_status=$? |
7858 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9553 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7859 | (exit $ac_status); }; } && | 9554 | (exit $ac_status); }; } && |
7860 | { ac_try='test -s conftest.$ac_objext' | 9555 | { ac_try='test -s conftest.$ac_objext' |
7861 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9556 | { (case "(($ac_try" in |
7862 | (eval $ac_try) 2>&5 | 9557 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9558 | *) ac_try_echo=$ac_try;; | ||
9559 | esac | ||
9560 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9561 | (eval "$ac_try") 2>&5 | ||
7863 | ac_status=$? | 9562 | ac_status=$? |
7864 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9563 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7865 | (exit $ac_status); }; }; then | 9564 | (exit $ac_status); }; }; then |
@@ -7868,12 +9567,14 @@ else | |||
7868 | echo "$as_me: failed program was:" >&5 | 9567 | echo "$as_me: failed program was:" >&5 |
7869 | sed 's/^/| /' conftest.$ac_ext >&5 | 9568 | sed 's/^/| /' conftest.$ac_ext >&5 |
7870 | 9569 | ||
7871 | eval "$as_ac_Header=no" | 9570 | eval "$as_ac_Header=no" |
7872 | fi | 9571 | fi |
7873 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 9572 | |
9573 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
7874 | fi | 9574 | fi |
7875 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 9575 | ac_res=`eval echo '${'$as_ac_Header'}'` |
7876 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 9576 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
9577 | echo "${ECHO_T}$ac_res" >&6; } | ||
7877 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 9578 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
7878 | cat >>confdefs.h <<_ACEOF | 9579 | cat >>confdefs.h <<_ACEOF |
7879 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 | 9580 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 |
@@ -7885,8 +9586,8 @@ done | |||
7885 | 9586 | ||
7886 | 9587 | ||
7887 | # Checks for libraries. | 9588 | # Checks for libraries. |
7888 | echo "$as_me:$LINENO: checking for yp_match" >&5 | 9589 | { echo "$as_me:$LINENO: checking for yp_match" >&5 |
7889 | echo $ECHO_N "checking for yp_match... $ECHO_C" >&6 | 9590 | echo $ECHO_N "checking for yp_match... $ECHO_C" >&6; } |
7890 | if test "${ac_cv_func_yp_match+set}" = set; then | 9591 | if test "${ac_cv_func_yp_match+set}" = set; then |
7891 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9592 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7892 | else | 9593 | else |
@@ -7913,52 +9614,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
7913 | 9614 | ||
7914 | #undef yp_match | 9615 | #undef yp_match |
7915 | 9616 | ||
7916 | /* Override any gcc2 internal prototype to avoid an error. */ | 9617 | /* Override any GCC internal prototype to avoid an error. |
9618 | Use char because int might match the return type of a GCC | ||
9619 | builtin and then its argument prototype would still apply. */ | ||
7917 | #ifdef __cplusplus | 9620 | #ifdef __cplusplus |
7918 | extern "C" | 9621 | extern "C" |
7919 | { | ||
7920 | #endif | 9622 | #endif |
7921 | /* We use char because int might match the return type of a gcc2 | ||
7922 | builtin and then its argument prototype would still apply. */ | ||
7923 | char yp_match (); | 9623 | char yp_match (); |
7924 | /* The GNU C library defines this for functions which it implements | 9624 | /* The GNU C library defines this for functions which it implements |
7925 | to always fail with ENOSYS. Some functions are actually named | 9625 | to always fail with ENOSYS. Some functions are actually named |
7926 | something starting with __ and the normal name is an alias. */ | 9626 | something starting with __ and the normal name is an alias. */ |
7927 | #if defined (__stub_yp_match) || defined (__stub___yp_match) | 9627 | #if defined __stub_yp_match || defined __stub___yp_match |
7928 | choke me | 9628 | choke me |
7929 | #else | ||
7930 | char (*f) () = yp_match; | ||
7931 | #endif | ||
7932 | #ifdef __cplusplus | ||
7933 | } | ||
7934 | #endif | 9629 | #endif |
7935 | 9630 | ||
7936 | int | 9631 | int |
7937 | main () | 9632 | main () |
7938 | { | 9633 | { |
7939 | return f != yp_match; | 9634 | return yp_match (); |
7940 | ; | 9635 | ; |
7941 | return 0; | 9636 | return 0; |
7942 | } | 9637 | } |
7943 | _ACEOF | 9638 | _ACEOF |
7944 | rm -f conftest.$ac_objext conftest$ac_exeext | 9639 | rm -f conftest.$ac_objext conftest$ac_exeext |
7945 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 9640 | if { (ac_try="$ac_link" |
7946 | (eval $ac_link) 2>conftest.er1 | 9641 | case "(($ac_try" in |
9642 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9643 | *) ac_try_echo=$ac_try;; | ||
9644 | esac | ||
9645 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9646 | (eval "$ac_link") 2>conftest.er1 | ||
7947 | ac_status=$? | 9647 | ac_status=$? |
7948 | grep -v '^ *+' conftest.er1 >conftest.err | 9648 | grep -v '^ *+' conftest.er1 >conftest.err |
7949 | rm -f conftest.er1 | 9649 | rm -f conftest.er1 |
7950 | cat conftest.err >&5 | 9650 | cat conftest.err >&5 |
7951 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9651 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7952 | (exit $ac_status); } && | 9652 | (exit $ac_status); } && |
7953 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9653 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7954 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9654 | { (case "(($ac_try" in |
7955 | (eval $ac_try) 2>&5 | 9655 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9656 | *) ac_try_echo=$ac_try;; | ||
9657 | esac | ||
9658 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9659 | (eval "$ac_try") 2>&5 | ||
7956 | ac_status=$? | 9660 | ac_status=$? |
7957 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9661 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7958 | (exit $ac_status); }; } && | 9662 | (exit $ac_status); }; } && |
7959 | { ac_try='test -s conftest$ac_exeext' | 9663 | { ac_try='test -s conftest$ac_exeext' |
7960 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9664 | { (case "(($ac_try" in |
7961 | (eval $ac_try) 2>&5 | 9665 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9666 | *) ac_try_echo=$ac_try;; | ||
9667 | esac | ||
9668 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9669 | (eval "$ac_try") 2>&5 | ||
7962 | ac_status=$? | 9670 | ac_status=$? |
7963 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9671 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7964 | (exit $ac_status); }; }; then | 9672 | (exit $ac_status); }; }; then |
@@ -7967,19 +9675,20 @@ else | |||
7967 | echo "$as_me: failed program was:" >&5 | 9675 | echo "$as_me: failed program was:" >&5 |
7968 | sed 's/^/| /' conftest.$ac_ext >&5 | 9676 | sed 's/^/| /' conftest.$ac_ext >&5 |
7969 | 9677 | ||
7970 | ac_cv_func_yp_match=no | 9678 | ac_cv_func_yp_match=no |
7971 | fi | 9679 | fi |
7972 | rm -f conftest.err conftest.$ac_objext \ | 9680 | |
9681 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
7973 | conftest$ac_exeext conftest.$ac_ext | 9682 | conftest$ac_exeext conftest.$ac_ext |
7974 | fi | 9683 | fi |
7975 | echo "$as_me:$LINENO: result: $ac_cv_func_yp_match" >&5 | 9684 | { echo "$as_me:$LINENO: result: $ac_cv_func_yp_match" >&5 |
7976 | echo "${ECHO_T}$ac_cv_func_yp_match" >&6 | 9685 | echo "${ECHO_T}$ac_cv_func_yp_match" >&6; } |
7977 | if test $ac_cv_func_yp_match = yes; then | 9686 | if test $ac_cv_func_yp_match = yes; then |
7978 | : | 9687 | : |
7979 | else | 9688 | else |
7980 | 9689 | ||
7981 | echo "$as_me:$LINENO: checking for yp_match in -lnsl" >&5 | 9690 | { echo "$as_me:$LINENO: checking for yp_match in -lnsl" >&5 |
7982 | echo $ECHO_N "checking for yp_match in -lnsl... $ECHO_C" >&6 | 9691 | echo $ECHO_N "checking for yp_match in -lnsl... $ECHO_C" >&6; } |
7983 | if test "${ac_cv_lib_nsl_yp_match+set}" = set; then | 9692 | if test "${ac_cv_lib_nsl_yp_match+set}" = set; then |
7984 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9693 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
7985 | else | 9694 | else |
@@ -7992,39 +9701,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
7992 | cat >>conftest.$ac_ext <<_ACEOF | 9701 | cat >>conftest.$ac_ext <<_ACEOF |
7993 | /* end confdefs.h. */ | 9702 | /* end confdefs.h. */ |
7994 | 9703 | ||
7995 | /* Override any gcc2 internal prototype to avoid an error. */ | 9704 | /* Override any GCC internal prototype to avoid an error. |
9705 | Use char because int might match the return type of a GCC | ||
9706 | builtin and then its argument prototype would still apply. */ | ||
7996 | #ifdef __cplusplus | 9707 | #ifdef __cplusplus |
7997 | extern "C" | 9708 | extern "C" |
7998 | #endif | 9709 | #endif |
7999 | /* We use char because int might match the return type of a gcc2 | ||
8000 | builtin and then its argument prototype would still apply. */ | ||
8001 | char yp_match (); | 9710 | char yp_match (); |
8002 | int | 9711 | int |
8003 | main () | 9712 | main () |
8004 | { | 9713 | { |
8005 | yp_match (); | 9714 | return yp_match (); |
8006 | ; | 9715 | ; |
8007 | return 0; | 9716 | return 0; |
8008 | } | 9717 | } |
8009 | _ACEOF | 9718 | _ACEOF |
8010 | rm -f conftest.$ac_objext conftest$ac_exeext | 9719 | rm -f conftest.$ac_objext conftest$ac_exeext |
8011 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 9720 | if { (ac_try="$ac_link" |
8012 | (eval $ac_link) 2>conftest.er1 | 9721 | case "(($ac_try" in |
9722 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9723 | *) ac_try_echo=$ac_try;; | ||
9724 | esac | ||
9725 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9726 | (eval "$ac_link") 2>conftest.er1 | ||
8013 | ac_status=$? | 9727 | ac_status=$? |
8014 | grep -v '^ *+' conftest.er1 >conftest.err | 9728 | grep -v '^ *+' conftest.er1 >conftest.err |
8015 | rm -f conftest.er1 | 9729 | rm -f conftest.er1 |
8016 | cat conftest.err >&5 | 9730 | cat conftest.err >&5 |
8017 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9731 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8018 | (exit $ac_status); } && | 9732 | (exit $ac_status); } && |
8019 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9733 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8020 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9734 | { (case "(($ac_try" in |
8021 | (eval $ac_try) 2>&5 | 9735 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9736 | *) ac_try_echo=$ac_try;; | ||
9737 | esac | ||
9738 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9739 | (eval "$ac_try") 2>&5 | ||
8022 | ac_status=$? | 9740 | ac_status=$? |
8023 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9741 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8024 | (exit $ac_status); }; } && | 9742 | (exit $ac_status); }; } && |
8025 | { ac_try='test -s conftest$ac_exeext' | 9743 | { ac_try='test -s conftest$ac_exeext' |
8026 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9744 | { (case "(($ac_try" in |
8027 | (eval $ac_try) 2>&5 | 9745 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9746 | *) ac_try_echo=$ac_try;; | ||
9747 | esac | ||
9748 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9749 | (eval "$ac_try") 2>&5 | ||
8028 | ac_status=$? | 9750 | ac_status=$? |
8029 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9751 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8030 | (exit $ac_status); }; }; then | 9752 | (exit $ac_status); }; }; then |
@@ -8033,14 +9755,15 @@ else | |||
8033 | echo "$as_me: failed program was:" >&5 | 9755 | echo "$as_me: failed program was:" >&5 |
8034 | sed 's/^/| /' conftest.$ac_ext >&5 | 9756 | sed 's/^/| /' conftest.$ac_ext >&5 |
8035 | 9757 | ||
8036 | ac_cv_lib_nsl_yp_match=no | 9758 | ac_cv_lib_nsl_yp_match=no |
8037 | fi | 9759 | fi |
8038 | rm -f conftest.err conftest.$ac_objext \ | 9760 | |
9761 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8039 | conftest$ac_exeext conftest.$ac_ext | 9762 | conftest$ac_exeext conftest.$ac_ext |
8040 | LIBS=$ac_check_lib_save_LIBS | 9763 | LIBS=$ac_check_lib_save_LIBS |
8041 | fi | 9764 | fi |
8042 | echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_yp_match" >&5 | 9765 | { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_yp_match" >&5 |
8043 | echo "${ECHO_T}$ac_cv_lib_nsl_yp_match" >&6 | 9766 | echo "${ECHO_T}$ac_cv_lib_nsl_yp_match" >&6; } |
8044 | if test $ac_cv_lib_nsl_yp_match = yes; then | 9767 | if test $ac_cv_lib_nsl_yp_match = yes; then |
8045 | cat >>confdefs.h <<_ACEOF | 9768 | cat >>confdefs.h <<_ACEOF |
8046 | #define HAVE_LIBNSL 1 | 9769 | #define HAVE_LIBNSL 1 |
@@ -8052,8 +9775,8 @@ fi | |||
8052 | 9775 | ||
8053 | fi | 9776 | fi |
8054 | 9777 | ||
8055 | echo "$as_me:$LINENO: checking for setsockopt" >&5 | 9778 | { echo "$as_me:$LINENO: checking for setsockopt" >&5 |
8056 | echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6 | 9779 | echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6; } |
8057 | if test "${ac_cv_func_setsockopt+set}" = set; then | 9780 | if test "${ac_cv_func_setsockopt+set}" = set; then |
8058 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9781 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8059 | else | 9782 | else |
@@ -8080,52 +9803,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
8080 | 9803 | ||
8081 | #undef setsockopt | 9804 | #undef setsockopt |
8082 | 9805 | ||
8083 | /* Override any gcc2 internal prototype to avoid an error. */ | 9806 | /* Override any GCC internal prototype to avoid an error. |
9807 | Use char because int might match the return type of a GCC | ||
9808 | builtin and then its argument prototype would still apply. */ | ||
8084 | #ifdef __cplusplus | 9809 | #ifdef __cplusplus |
8085 | extern "C" | 9810 | extern "C" |
8086 | { | ||
8087 | #endif | 9811 | #endif |
8088 | /* We use char because int might match the return type of a gcc2 | ||
8089 | builtin and then its argument prototype would still apply. */ | ||
8090 | char setsockopt (); | 9812 | char setsockopt (); |
8091 | /* The GNU C library defines this for functions which it implements | 9813 | /* The GNU C library defines this for functions which it implements |
8092 | to always fail with ENOSYS. Some functions are actually named | 9814 | to always fail with ENOSYS. Some functions are actually named |
8093 | something starting with __ and the normal name is an alias. */ | 9815 | something starting with __ and the normal name is an alias. */ |
8094 | #if defined (__stub_setsockopt) || defined (__stub___setsockopt) | 9816 | #if defined __stub_setsockopt || defined __stub___setsockopt |
8095 | choke me | 9817 | choke me |
8096 | #else | ||
8097 | char (*f) () = setsockopt; | ||
8098 | #endif | ||
8099 | #ifdef __cplusplus | ||
8100 | } | ||
8101 | #endif | 9818 | #endif |
8102 | 9819 | ||
8103 | int | 9820 | int |
8104 | main () | 9821 | main () |
8105 | { | 9822 | { |
8106 | return f != setsockopt; | 9823 | return setsockopt (); |
8107 | ; | 9824 | ; |
8108 | return 0; | 9825 | return 0; |
8109 | } | 9826 | } |
8110 | _ACEOF | 9827 | _ACEOF |
8111 | rm -f conftest.$ac_objext conftest$ac_exeext | 9828 | rm -f conftest.$ac_objext conftest$ac_exeext |
8112 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 9829 | if { (ac_try="$ac_link" |
8113 | (eval $ac_link) 2>conftest.er1 | 9830 | case "(($ac_try" in |
9831 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9832 | *) ac_try_echo=$ac_try;; | ||
9833 | esac | ||
9834 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9835 | (eval "$ac_link") 2>conftest.er1 | ||
8114 | ac_status=$? | 9836 | ac_status=$? |
8115 | grep -v '^ *+' conftest.er1 >conftest.err | 9837 | grep -v '^ *+' conftest.er1 >conftest.err |
8116 | rm -f conftest.er1 | 9838 | rm -f conftest.er1 |
8117 | cat conftest.err >&5 | 9839 | cat conftest.err >&5 |
8118 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9840 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8119 | (exit $ac_status); } && | 9841 | (exit $ac_status); } && |
8120 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9842 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8121 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9843 | { (case "(($ac_try" in |
8122 | (eval $ac_try) 2>&5 | 9844 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9845 | *) ac_try_echo=$ac_try;; | ||
9846 | esac | ||
9847 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9848 | (eval "$ac_try") 2>&5 | ||
8123 | ac_status=$? | 9849 | ac_status=$? |
8124 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9850 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8125 | (exit $ac_status); }; } && | 9851 | (exit $ac_status); }; } && |
8126 | { ac_try='test -s conftest$ac_exeext' | 9852 | { ac_try='test -s conftest$ac_exeext' |
8127 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9853 | { (case "(($ac_try" in |
8128 | (eval $ac_try) 2>&5 | 9854 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9855 | *) ac_try_echo=$ac_try;; | ||
9856 | esac | ||
9857 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9858 | (eval "$ac_try") 2>&5 | ||
8129 | ac_status=$? | 9859 | ac_status=$? |
8130 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9860 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8131 | (exit $ac_status); }; }; then | 9861 | (exit $ac_status); }; }; then |
@@ -8134,19 +9864,20 @@ else | |||
8134 | echo "$as_me: failed program was:" >&5 | 9864 | echo "$as_me: failed program was:" >&5 |
8135 | sed 's/^/| /' conftest.$ac_ext >&5 | 9865 | sed 's/^/| /' conftest.$ac_ext >&5 |
8136 | 9866 | ||
8137 | ac_cv_func_setsockopt=no | 9867 | ac_cv_func_setsockopt=no |
8138 | fi | 9868 | fi |
8139 | rm -f conftest.err conftest.$ac_objext \ | 9869 | |
9870 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8140 | conftest$ac_exeext conftest.$ac_ext | 9871 | conftest$ac_exeext conftest.$ac_ext |
8141 | fi | 9872 | fi |
8142 | echo "$as_me:$LINENO: result: $ac_cv_func_setsockopt" >&5 | 9873 | { echo "$as_me:$LINENO: result: $ac_cv_func_setsockopt" >&5 |
8143 | echo "${ECHO_T}$ac_cv_func_setsockopt" >&6 | 9874 | echo "${ECHO_T}$ac_cv_func_setsockopt" >&6; } |
8144 | if test $ac_cv_func_setsockopt = yes; then | 9875 | if test $ac_cv_func_setsockopt = yes; then |
8145 | : | 9876 | : |
8146 | else | 9877 | else |
8147 | 9878 | ||
8148 | echo "$as_me:$LINENO: checking for setsockopt in -lsocket" >&5 | 9879 | { echo "$as_me:$LINENO: checking for setsockopt in -lsocket" >&5 |
8149 | echo $ECHO_N "checking for setsockopt in -lsocket... $ECHO_C" >&6 | 9880 | echo $ECHO_N "checking for setsockopt in -lsocket... $ECHO_C" >&6; } |
8150 | if test "${ac_cv_lib_socket_setsockopt+set}" = set; then | 9881 | if test "${ac_cv_lib_socket_setsockopt+set}" = set; then |
8151 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9882 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8152 | else | 9883 | else |
@@ -8159,39 +9890,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
8159 | cat >>conftest.$ac_ext <<_ACEOF | 9890 | cat >>conftest.$ac_ext <<_ACEOF |
8160 | /* end confdefs.h. */ | 9891 | /* end confdefs.h. */ |
8161 | 9892 | ||
8162 | /* Override any gcc2 internal prototype to avoid an error. */ | 9893 | /* Override any GCC internal prototype to avoid an error. |
9894 | Use char because int might match the return type of a GCC | ||
9895 | builtin and then its argument prototype would still apply. */ | ||
8163 | #ifdef __cplusplus | 9896 | #ifdef __cplusplus |
8164 | extern "C" | 9897 | extern "C" |
8165 | #endif | 9898 | #endif |
8166 | /* We use char because int might match the return type of a gcc2 | ||
8167 | builtin and then its argument prototype would still apply. */ | ||
8168 | char setsockopt (); | 9899 | char setsockopt (); |
8169 | int | 9900 | int |
8170 | main () | 9901 | main () |
8171 | { | 9902 | { |
8172 | setsockopt (); | 9903 | return setsockopt (); |
8173 | ; | 9904 | ; |
8174 | return 0; | 9905 | return 0; |
8175 | } | 9906 | } |
8176 | _ACEOF | 9907 | _ACEOF |
8177 | rm -f conftest.$ac_objext conftest$ac_exeext | 9908 | rm -f conftest.$ac_objext conftest$ac_exeext |
8178 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 9909 | if { (ac_try="$ac_link" |
8179 | (eval $ac_link) 2>conftest.er1 | 9910 | case "(($ac_try" in |
9911 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
9912 | *) ac_try_echo=$ac_try;; | ||
9913 | esac | ||
9914 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9915 | (eval "$ac_link") 2>conftest.er1 | ||
8180 | ac_status=$? | 9916 | ac_status=$? |
8181 | grep -v '^ *+' conftest.er1 >conftest.err | 9917 | grep -v '^ *+' conftest.er1 >conftest.err |
8182 | rm -f conftest.er1 | 9918 | rm -f conftest.er1 |
8183 | cat conftest.err >&5 | 9919 | cat conftest.err >&5 |
8184 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9920 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8185 | (exit $ac_status); } && | 9921 | (exit $ac_status); } && |
8186 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 9922 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8187 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9923 | { (case "(($ac_try" in |
8188 | (eval $ac_try) 2>&5 | 9924 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9925 | *) ac_try_echo=$ac_try;; | ||
9926 | esac | ||
9927 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9928 | (eval "$ac_try") 2>&5 | ||
8189 | ac_status=$? | 9929 | ac_status=$? |
8190 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9930 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8191 | (exit $ac_status); }; } && | 9931 | (exit $ac_status); }; } && |
8192 | { ac_try='test -s conftest$ac_exeext' | 9932 | { ac_try='test -s conftest$ac_exeext' |
8193 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9933 | { (case "(($ac_try" in |
8194 | (eval $ac_try) 2>&5 | 9934 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
9935 | *) ac_try_echo=$ac_try;; | ||
9936 | esac | ||
9937 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
9938 | (eval "$ac_try") 2>&5 | ||
8195 | ac_status=$? | 9939 | ac_status=$? |
8196 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9940 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8197 | (exit $ac_status); }; }; then | 9941 | (exit $ac_status); }; }; then |
@@ -8200,14 +9944,15 @@ else | |||
8200 | echo "$as_me: failed program was:" >&5 | 9944 | echo "$as_me: failed program was:" >&5 |
8201 | sed 's/^/| /' conftest.$ac_ext >&5 | 9945 | sed 's/^/| /' conftest.$ac_ext >&5 |
8202 | 9946 | ||
8203 | ac_cv_lib_socket_setsockopt=no | 9947 | ac_cv_lib_socket_setsockopt=no |
8204 | fi | 9948 | fi |
8205 | rm -f conftest.err conftest.$ac_objext \ | 9949 | |
9950 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8206 | conftest$ac_exeext conftest.$ac_ext | 9951 | conftest$ac_exeext conftest.$ac_ext |
8207 | LIBS=$ac_check_lib_save_LIBS | 9952 | LIBS=$ac_check_lib_save_LIBS |
8208 | fi | 9953 | fi |
8209 | echo "$as_me:$LINENO: result: $ac_cv_lib_socket_setsockopt" >&5 | 9954 | { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_setsockopt" >&5 |
8210 | echo "${ECHO_T}$ac_cv_lib_socket_setsockopt" >&6 | 9955 | echo "${ECHO_T}$ac_cv_lib_socket_setsockopt" >&6; } |
8211 | if test $ac_cv_lib_socket_setsockopt = yes; then | 9956 | if test $ac_cv_lib_socket_setsockopt = yes; then |
8212 | cat >>confdefs.h <<_ACEOF | 9957 | cat >>confdefs.h <<_ACEOF |
8213 | #define HAVE_LIBSOCKET 1 | 9958 | #define HAVE_LIBSOCKET 1 |
@@ -8224,9 +9969,9 @@ fi | |||
8224 | for ac_func in dirname | 9969 | for ac_func in dirname |
8225 | do | 9970 | do |
8226 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 9971 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
8227 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 9972 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
8228 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 9973 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
8229 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 9974 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
8230 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 9975 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8231 | else | 9976 | else |
8232 | cat >conftest.$ac_ext <<_ACEOF | 9977 | cat >conftest.$ac_ext <<_ACEOF |
@@ -8252,52 +9997,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
8252 | 9997 | ||
8253 | #undef $ac_func | 9998 | #undef $ac_func |
8254 | 9999 | ||
8255 | /* Override any gcc2 internal prototype to avoid an error. */ | 10000 | /* Override any GCC internal prototype to avoid an error. |
10001 | Use char because int might match the return type of a GCC | ||
10002 | builtin and then its argument prototype would still apply. */ | ||
8256 | #ifdef __cplusplus | 10003 | #ifdef __cplusplus |
8257 | extern "C" | 10004 | extern "C" |
8258 | { | ||
8259 | #endif | 10005 | #endif |
8260 | /* We use char because int might match the return type of a gcc2 | ||
8261 | builtin and then its argument prototype would still apply. */ | ||
8262 | char $ac_func (); | 10006 | char $ac_func (); |
8263 | /* The GNU C library defines this for functions which it implements | 10007 | /* The GNU C library defines this for functions which it implements |
8264 | to always fail with ENOSYS. Some functions are actually named | 10008 | to always fail with ENOSYS. Some functions are actually named |
8265 | something starting with __ and the normal name is an alias. */ | 10009 | something starting with __ and the normal name is an alias. */ |
8266 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 10010 | #if defined __stub_$ac_func || defined __stub___$ac_func |
8267 | choke me | 10011 | choke me |
8268 | #else | ||
8269 | char (*f) () = $ac_func; | ||
8270 | #endif | ||
8271 | #ifdef __cplusplus | ||
8272 | } | ||
8273 | #endif | 10012 | #endif |
8274 | 10013 | ||
8275 | int | 10014 | int |
8276 | main () | 10015 | main () |
8277 | { | 10016 | { |
8278 | return f != $ac_func; | 10017 | return $ac_func (); |
8279 | ; | 10018 | ; |
8280 | return 0; | 10019 | return 0; |
8281 | } | 10020 | } |
8282 | _ACEOF | 10021 | _ACEOF |
8283 | rm -f conftest.$ac_objext conftest$ac_exeext | 10022 | rm -f conftest.$ac_objext conftest$ac_exeext |
8284 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10023 | if { (ac_try="$ac_link" |
8285 | (eval $ac_link) 2>conftest.er1 | 10024 | case "(($ac_try" in |
10025 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10026 | *) ac_try_echo=$ac_try;; | ||
10027 | esac | ||
10028 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10029 | (eval "$ac_link") 2>conftest.er1 | ||
8286 | ac_status=$? | 10030 | ac_status=$? |
8287 | grep -v '^ *+' conftest.er1 >conftest.err | 10031 | grep -v '^ *+' conftest.er1 >conftest.err |
8288 | rm -f conftest.er1 | 10032 | rm -f conftest.er1 |
8289 | cat conftest.err >&5 | 10033 | cat conftest.err >&5 |
8290 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10034 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8291 | (exit $ac_status); } && | 10035 | (exit $ac_status); } && |
8292 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10036 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8293 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10037 | { (case "(($ac_try" in |
8294 | (eval $ac_try) 2>&5 | 10038 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10039 | *) ac_try_echo=$ac_try;; | ||
10040 | esac | ||
10041 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10042 | (eval "$ac_try") 2>&5 | ||
8295 | ac_status=$? | 10043 | ac_status=$? |
8296 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10044 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8297 | (exit $ac_status); }; } && | 10045 | (exit $ac_status); }; } && |
8298 | { ac_try='test -s conftest$ac_exeext' | 10046 | { ac_try='test -s conftest$ac_exeext' |
8299 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10047 | { (case "(($ac_try" in |
8300 | (eval $ac_try) 2>&5 | 10048 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10049 | *) ac_try_echo=$ac_try;; | ||
10050 | esac | ||
10051 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10052 | (eval "$ac_try") 2>&5 | ||
8301 | ac_status=$? | 10053 | ac_status=$? |
8302 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10054 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8303 | (exit $ac_status); }; }; then | 10055 | (exit $ac_status); }; }; then |
@@ -8306,13 +10058,15 @@ else | |||
8306 | echo "$as_me: failed program was:" >&5 | 10058 | echo "$as_me: failed program was:" >&5 |
8307 | sed 's/^/| /' conftest.$ac_ext >&5 | 10059 | sed 's/^/| /' conftest.$ac_ext >&5 |
8308 | 10060 | ||
8309 | eval "$as_ac_var=no" | 10061 | eval "$as_ac_var=no" |
8310 | fi | 10062 | fi |
8311 | rm -f conftest.err conftest.$ac_objext \ | 10063 | |
10064 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8312 | conftest$ac_exeext conftest.$ac_ext | 10065 | conftest$ac_exeext conftest.$ac_ext |
8313 | fi | 10066 | fi |
8314 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 10067 | ac_res=`eval echo '${'$as_ac_var'}'` |
8315 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 10068 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
10069 | echo "${ECHO_T}$ac_res" >&6; } | ||
8316 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 10070 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
8317 | cat >>confdefs.h <<_ACEOF | 10071 | cat >>confdefs.h <<_ACEOF |
8318 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 10072 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -8321,18 +10075,19 @@ _ACEOF | |||
8321 | for ac_header in libgen.h | 10075 | for ac_header in libgen.h |
8322 | do | 10076 | do |
8323 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 10077 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
8324 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 10078 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
8325 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 10079 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
8326 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 10080 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
8327 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 10081 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
8328 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10082 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8329 | fi | 10083 | fi |
8330 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 10084 | ac_res=`eval echo '${'$as_ac_Header'}'` |
8331 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 10085 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
10086 | echo "${ECHO_T}$ac_res" >&6; } | ||
8332 | else | 10087 | else |
8333 | # Is the header compilable? | 10088 | # Is the header compilable? |
8334 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 10089 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
8335 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 10090 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
8336 | cat >conftest.$ac_ext <<_ACEOF | 10091 | cat >conftest.$ac_ext <<_ACEOF |
8337 | /* confdefs.h. */ | 10092 | /* confdefs.h. */ |
8338 | _ACEOF | 10093 | _ACEOF |
@@ -8343,23 +10098,36 @@ $ac_includes_default | |||
8343 | #include <$ac_header> | 10098 | #include <$ac_header> |
8344 | _ACEOF | 10099 | _ACEOF |
8345 | rm -f conftest.$ac_objext | 10100 | rm -f conftest.$ac_objext |
8346 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 10101 | if { (ac_try="$ac_compile" |
8347 | (eval $ac_compile) 2>conftest.er1 | 10102 | case "(($ac_try" in |
10103 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10104 | *) ac_try_echo=$ac_try;; | ||
10105 | esac | ||
10106 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10107 | (eval "$ac_compile") 2>conftest.er1 | ||
8348 | ac_status=$? | 10108 | ac_status=$? |
8349 | grep -v '^ *+' conftest.er1 >conftest.err | 10109 | grep -v '^ *+' conftest.er1 >conftest.err |
8350 | rm -f conftest.er1 | 10110 | rm -f conftest.er1 |
8351 | cat conftest.err >&5 | 10111 | cat conftest.err >&5 |
8352 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10112 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8353 | (exit $ac_status); } && | 10113 | (exit $ac_status); } && |
8354 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10114 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8355 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10115 | { (case "(($ac_try" in |
8356 | (eval $ac_try) 2>&5 | 10116 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10117 | *) ac_try_echo=$ac_try;; | ||
10118 | esac | ||
10119 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10120 | (eval "$ac_try") 2>&5 | ||
8357 | ac_status=$? | 10121 | ac_status=$? |
8358 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10122 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8359 | (exit $ac_status); }; } && | 10123 | (exit $ac_status); }; } && |
8360 | { ac_try='test -s conftest.$ac_objext' | 10124 | { ac_try='test -s conftest.$ac_objext' |
8361 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10125 | { (case "(($ac_try" in |
8362 | (eval $ac_try) 2>&5 | 10126 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10127 | *) ac_try_echo=$ac_try;; | ||
10128 | esac | ||
10129 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10130 | (eval "$ac_try") 2>&5 | ||
8363 | ac_status=$? | 10131 | ac_status=$? |
8364 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10132 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8365 | (exit $ac_status); }; }; then | 10133 | (exit $ac_status); }; }; then |
@@ -8368,15 +10136,16 @@ else | |||
8368 | echo "$as_me: failed program was:" >&5 | 10136 | echo "$as_me: failed program was:" >&5 |
8369 | sed 's/^/| /' conftest.$ac_ext >&5 | 10137 | sed 's/^/| /' conftest.$ac_ext >&5 |
8370 | 10138 | ||
8371 | ac_header_compiler=no | 10139 | ac_header_compiler=no |
8372 | fi | 10140 | fi |
8373 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 10141 | |
8374 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 10142 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
8375 | echo "${ECHO_T}$ac_header_compiler" >&6 | 10143 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
10144 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
8376 | 10145 | ||
8377 | # Is the header present? | 10146 | # Is the header present? |
8378 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 10147 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
8379 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 10148 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
8380 | cat >conftest.$ac_ext <<_ACEOF | 10149 | cat >conftest.$ac_ext <<_ACEOF |
8381 | /* confdefs.h. */ | 10150 | /* confdefs.h. */ |
8382 | _ACEOF | 10151 | _ACEOF |
@@ -8385,8 +10154,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
8385 | /* end confdefs.h. */ | 10154 | /* end confdefs.h. */ |
8386 | #include <$ac_header> | 10155 | #include <$ac_header> |
8387 | _ACEOF | 10156 | _ACEOF |
8388 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 10157 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
8389 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 10158 | case "(($ac_try" in |
10159 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10160 | *) ac_try_echo=$ac_try;; | ||
10161 | esac | ||
10162 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10163 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
8390 | ac_status=$? | 10164 | ac_status=$? |
8391 | grep -v '^ *+' conftest.er1 >conftest.err | 10165 | grep -v '^ *+' conftest.er1 >conftest.err |
8392 | rm -f conftest.er1 | 10166 | rm -f conftest.er1 |
@@ -8410,9 +10184,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
8410 | 10184 | ||
8411 | ac_header_preproc=no | 10185 | ac_header_preproc=no |
8412 | fi | 10186 | fi |
10187 | |||
8413 | rm -f conftest.err conftest.$ac_ext | 10188 | rm -f conftest.err conftest.$ac_ext |
8414 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 10189 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
8415 | echo "${ECHO_T}$ac_header_preproc" >&6 | 10190 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
8416 | 10191 | ||
8417 | # So? What about this header? | 10192 | # So? What about this header? |
8418 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 10193 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -8436,25 +10211,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
8436 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 10211 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
8437 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 10212 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
8438 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 10213 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
8439 | ( | 10214 | ( cat <<\_ASBOX |
8440 | cat <<\_ASBOX | ||
8441 | ## ------------------------------------------- ## | 10215 | ## ------------------------------------------- ## |
8442 | ## Report this to openssh-unix-dev@mindrot.org ## | 10216 | ## Report this to openssh-unix-dev@mindrot.org ## |
8443 | ## ------------------------------------------- ## | 10217 | ## ------------------------------------------- ## |
8444 | _ASBOX | 10218 | _ASBOX |
8445 | ) | | 10219 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
8446 | sed "s/^/$as_me: WARNING: /" >&2 | ||
8447 | ;; | 10220 | ;; |
8448 | esac | 10221 | esac |
8449 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 10222 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
8450 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 10223 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
8451 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 10224 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
8452 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10225 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8453 | else | 10226 | else |
8454 | eval "$as_ac_Header=\$ac_header_preproc" | 10227 | eval "$as_ac_Header=\$ac_header_preproc" |
8455 | fi | 10228 | fi |
8456 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 10229 | ac_res=`eval echo '${'$as_ac_Header'}'` |
8457 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 10230 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
10231 | echo "${ECHO_T}$ac_res" >&6; } | ||
8458 | 10232 | ||
8459 | fi | 10233 | fi |
8460 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 10234 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -8468,8 +10242,8 @@ done | |||
8468 | 10242 | ||
8469 | else | 10243 | else |
8470 | 10244 | ||
8471 | echo "$as_me:$LINENO: checking for dirname in -lgen" >&5 | 10245 | { echo "$as_me:$LINENO: checking for dirname in -lgen" >&5 |
8472 | echo $ECHO_N "checking for dirname in -lgen... $ECHO_C" >&6 | 10246 | echo $ECHO_N "checking for dirname in -lgen... $ECHO_C" >&6; } |
8473 | if test "${ac_cv_lib_gen_dirname+set}" = set; then | 10247 | if test "${ac_cv_lib_gen_dirname+set}" = set; then |
8474 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10248 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8475 | else | 10249 | else |
@@ -8482,39 +10256,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
8482 | cat >>conftest.$ac_ext <<_ACEOF | 10256 | cat >>conftest.$ac_ext <<_ACEOF |
8483 | /* end confdefs.h. */ | 10257 | /* end confdefs.h. */ |
8484 | 10258 | ||
8485 | /* Override any gcc2 internal prototype to avoid an error. */ | 10259 | /* Override any GCC internal prototype to avoid an error. |
10260 | Use char because int might match the return type of a GCC | ||
10261 | builtin and then its argument prototype would still apply. */ | ||
8486 | #ifdef __cplusplus | 10262 | #ifdef __cplusplus |
8487 | extern "C" | 10263 | extern "C" |
8488 | #endif | 10264 | #endif |
8489 | /* We use char because int might match the return type of a gcc2 | ||
8490 | builtin and then its argument prototype would still apply. */ | ||
8491 | char dirname (); | 10265 | char dirname (); |
8492 | int | 10266 | int |
8493 | main () | 10267 | main () |
8494 | { | 10268 | { |
8495 | dirname (); | 10269 | return dirname (); |
8496 | ; | 10270 | ; |
8497 | return 0; | 10271 | return 0; |
8498 | } | 10272 | } |
8499 | _ACEOF | 10273 | _ACEOF |
8500 | rm -f conftest.$ac_objext conftest$ac_exeext | 10274 | rm -f conftest.$ac_objext conftest$ac_exeext |
8501 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10275 | if { (ac_try="$ac_link" |
8502 | (eval $ac_link) 2>conftest.er1 | 10276 | case "(($ac_try" in |
10277 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10278 | *) ac_try_echo=$ac_try;; | ||
10279 | esac | ||
10280 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10281 | (eval "$ac_link") 2>conftest.er1 | ||
8503 | ac_status=$? | 10282 | ac_status=$? |
8504 | grep -v '^ *+' conftest.er1 >conftest.err | 10283 | grep -v '^ *+' conftest.er1 >conftest.err |
8505 | rm -f conftest.er1 | 10284 | rm -f conftest.er1 |
8506 | cat conftest.err >&5 | 10285 | cat conftest.err >&5 |
8507 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10286 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8508 | (exit $ac_status); } && | 10287 | (exit $ac_status); } && |
8509 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10288 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8510 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10289 | { (case "(($ac_try" in |
8511 | (eval $ac_try) 2>&5 | 10290 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10291 | *) ac_try_echo=$ac_try;; | ||
10292 | esac | ||
10293 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10294 | (eval "$ac_try") 2>&5 | ||
8512 | ac_status=$? | 10295 | ac_status=$? |
8513 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10296 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8514 | (exit $ac_status); }; } && | 10297 | (exit $ac_status); }; } && |
8515 | { ac_try='test -s conftest$ac_exeext' | 10298 | { ac_try='test -s conftest$ac_exeext' |
8516 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10299 | { (case "(($ac_try" in |
8517 | (eval $ac_try) 2>&5 | 10300 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10301 | *) ac_try_echo=$ac_try;; | ||
10302 | esac | ||
10303 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10304 | (eval "$ac_try") 2>&5 | ||
8518 | ac_status=$? | 10305 | ac_status=$? |
8519 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10306 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8520 | (exit $ac_status); }; }; then | 10307 | (exit $ac_status); }; }; then |
@@ -8523,18 +10310,19 @@ else | |||
8523 | echo "$as_me: failed program was:" >&5 | 10310 | echo "$as_me: failed program was:" >&5 |
8524 | sed 's/^/| /' conftest.$ac_ext >&5 | 10311 | sed 's/^/| /' conftest.$ac_ext >&5 |
8525 | 10312 | ||
8526 | ac_cv_lib_gen_dirname=no | 10313 | ac_cv_lib_gen_dirname=no |
8527 | fi | 10314 | fi |
8528 | rm -f conftest.err conftest.$ac_objext \ | 10315 | |
10316 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8529 | conftest$ac_exeext conftest.$ac_ext | 10317 | conftest$ac_exeext conftest.$ac_ext |
8530 | LIBS=$ac_check_lib_save_LIBS | 10318 | LIBS=$ac_check_lib_save_LIBS |
8531 | fi | 10319 | fi |
8532 | echo "$as_me:$LINENO: result: $ac_cv_lib_gen_dirname" >&5 | 10320 | { echo "$as_me:$LINENO: result: $ac_cv_lib_gen_dirname" >&5 |
8533 | echo "${ECHO_T}$ac_cv_lib_gen_dirname" >&6 | 10321 | echo "${ECHO_T}$ac_cv_lib_gen_dirname" >&6; } |
8534 | if test $ac_cv_lib_gen_dirname = yes; then | 10322 | if test $ac_cv_lib_gen_dirname = yes; then |
8535 | 10323 | ||
8536 | echo "$as_me:$LINENO: checking for broken dirname" >&5 | 10324 | { echo "$as_me:$LINENO: checking for broken dirname" >&5 |
8537 | echo $ECHO_N "checking for broken dirname... $ECHO_C" >&6 | 10325 | echo $ECHO_N "checking for broken dirname... $ECHO_C" >&6; } |
8538 | if test "${ac_cv_have_broken_dirname+set}" = set; then | 10326 | if test "${ac_cv_have_broken_dirname+set}" = set; then |
8539 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10327 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8540 | else | 10328 | else |
@@ -8568,13 +10356,22 @@ int main(int argc, char **argv) { | |||
8568 | 10356 | ||
8569 | _ACEOF | 10357 | _ACEOF |
8570 | rm -f conftest$ac_exeext | 10358 | rm -f conftest$ac_exeext |
8571 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10359 | if { (ac_try="$ac_link" |
8572 | (eval $ac_link) 2>&5 | 10360 | case "(($ac_try" in |
10361 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10362 | *) ac_try_echo=$ac_try;; | ||
10363 | esac | ||
10364 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10365 | (eval "$ac_link") 2>&5 | ||
8573 | ac_status=$? | 10366 | ac_status=$? |
8574 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10367 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8575 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 10368 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
8576 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10369 | { (case "(($ac_try" in |
8577 | (eval $ac_try) 2>&5 | 10370 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10371 | *) ac_try_echo=$ac_try;; | ||
10372 | esac | ||
10373 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10374 | (eval "$ac_try") 2>&5 | ||
8578 | ac_status=$? | 10375 | ac_status=$? |
8579 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10376 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8580 | (exit $ac_status); }; }; then | 10377 | (exit $ac_status); }; }; then |
@@ -8587,13 +10384,15 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
8587 | ( exit $ac_status ) | 10384 | ( exit $ac_status ) |
8588 | ac_cv_have_broken_dirname="yes" | 10385 | ac_cv_have_broken_dirname="yes" |
8589 | fi | 10386 | fi |
8590 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 10387 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
8591 | fi | 10388 | fi |
10389 | |||
10390 | |||
8592 | LIBS="$save_LIBS" | 10391 | LIBS="$save_LIBS" |
8593 | 10392 | ||
8594 | fi | 10393 | fi |
8595 | echo "$as_me:$LINENO: result: $ac_cv_have_broken_dirname" >&5 | 10394 | { echo "$as_me:$LINENO: result: $ac_cv_have_broken_dirname" >&5 |
8596 | echo "${ECHO_T}$ac_cv_have_broken_dirname" >&6 | 10395 | echo "${ECHO_T}$ac_cv_have_broken_dirname" >&6; } |
8597 | if test "x$ac_cv_have_broken_dirname" = "xno" ; then | 10396 | if test "x$ac_cv_have_broken_dirname" = "xno" ; then |
8598 | LIBS="$LIBS -lgen" | 10397 | LIBS="$LIBS -lgen" |
8599 | cat >>confdefs.h <<\_ACEOF | 10398 | cat >>confdefs.h <<\_ACEOF |
@@ -8604,18 +10403,19 @@ _ACEOF | |||
8604 | for ac_header in libgen.h | 10403 | for ac_header in libgen.h |
8605 | do | 10404 | do |
8606 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 10405 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
8607 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 10406 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
8608 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 10407 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
8609 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 10408 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
8610 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 10409 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
8611 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10410 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8612 | fi | 10411 | fi |
8613 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 10412 | ac_res=`eval echo '${'$as_ac_Header'}'` |
8614 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 10413 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
10414 | echo "${ECHO_T}$ac_res" >&6; } | ||
8615 | else | 10415 | else |
8616 | # Is the header compilable? | 10416 | # Is the header compilable? |
8617 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 10417 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
8618 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 10418 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
8619 | cat >conftest.$ac_ext <<_ACEOF | 10419 | cat >conftest.$ac_ext <<_ACEOF |
8620 | /* confdefs.h. */ | 10420 | /* confdefs.h. */ |
8621 | _ACEOF | 10421 | _ACEOF |
@@ -8626,23 +10426,36 @@ $ac_includes_default | |||
8626 | #include <$ac_header> | 10426 | #include <$ac_header> |
8627 | _ACEOF | 10427 | _ACEOF |
8628 | rm -f conftest.$ac_objext | 10428 | rm -f conftest.$ac_objext |
8629 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 10429 | if { (ac_try="$ac_compile" |
8630 | (eval $ac_compile) 2>conftest.er1 | 10430 | case "(($ac_try" in |
10431 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10432 | *) ac_try_echo=$ac_try;; | ||
10433 | esac | ||
10434 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10435 | (eval "$ac_compile") 2>conftest.er1 | ||
8631 | ac_status=$? | 10436 | ac_status=$? |
8632 | grep -v '^ *+' conftest.er1 >conftest.err | 10437 | grep -v '^ *+' conftest.er1 >conftest.err |
8633 | rm -f conftest.er1 | 10438 | rm -f conftest.er1 |
8634 | cat conftest.err >&5 | 10439 | cat conftest.err >&5 |
8635 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10440 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8636 | (exit $ac_status); } && | 10441 | (exit $ac_status); } && |
8637 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10442 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8638 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10443 | { (case "(($ac_try" in |
8639 | (eval $ac_try) 2>&5 | 10444 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10445 | *) ac_try_echo=$ac_try;; | ||
10446 | esac | ||
10447 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10448 | (eval "$ac_try") 2>&5 | ||
8640 | ac_status=$? | 10449 | ac_status=$? |
8641 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10450 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8642 | (exit $ac_status); }; } && | 10451 | (exit $ac_status); }; } && |
8643 | { ac_try='test -s conftest.$ac_objext' | 10452 | { ac_try='test -s conftest.$ac_objext' |
8644 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10453 | { (case "(($ac_try" in |
8645 | (eval $ac_try) 2>&5 | 10454 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10455 | *) ac_try_echo=$ac_try;; | ||
10456 | esac | ||
10457 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10458 | (eval "$ac_try") 2>&5 | ||
8646 | ac_status=$? | 10459 | ac_status=$? |
8647 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10460 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8648 | (exit $ac_status); }; }; then | 10461 | (exit $ac_status); }; }; then |
@@ -8651,15 +10464,16 @@ else | |||
8651 | echo "$as_me: failed program was:" >&5 | 10464 | echo "$as_me: failed program was:" >&5 |
8652 | sed 's/^/| /' conftest.$ac_ext >&5 | 10465 | sed 's/^/| /' conftest.$ac_ext >&5 |
8653 | 10466 | ||
8654 | ac_header_compiler=no | 10467 | ac_header_compiler=no |
8655 | fi | 10468 | fi |
8656 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 10469 | |
8657 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 10470 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
8658 | echo "${ECHO_T}$ac_header_compiler" >&6 | 10471 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
10472 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
8659 | 10473 | ||
8660 | # Is the header present? | 10474 | # Is the header present? |
8661 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 10475 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
8662 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 10476 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
8663 | cat >conftest.$ac_ext <<_ACEOF | 10477 | cat >conftest.$ac_ext <<_ACEOF |
8664 | /* confdefs.h. */ | 10478 | /* confdefs.h. */ |
8665 | _ACEOF | 10479 | _ACEOF |
@@ -8668,8 +10482,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
8668 | /* end confdefs.h. */ | 10482 | /* end confdefs.h. */ |
8669 | #include <$ac_header> | 10483 | #include <$ac_header> |
8670 | _ACEOF | 10484 | _ACEOF |
8671 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 10485 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
8672 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 10486 | case "(($ac_try" in |
10487 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10488 | *) ac_try_echo=$ac_try;; | ||
10489 | esac | ||
10490 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10491 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
8673 | ac_status=$? | 10492 | ac_status=$? |
8674 | grep -v '^ *+' conftest.er1 >conftest.err | 10493 | grep -v '^ *+' conftest.er1 >conftest.err |
8675 | rm -f conftest.er1 | 10494 | rm -f conftest.er1 |
@@ -8693,9 +10512,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
8693 | 10512 | ||
8694 | ac_header_preproc=no | 10513 | ac_header_preproc=no |
8695 | fi | 10514 | fi |
10515 | |||
8696 | rm -f conftest.err conftest.$ac_ext | 10516 | rm -f conftest.err conftest.$ac_ext |
8697 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 10517 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
8698 | echo "${ECHO_T}$ac_header_preproc" >&6 | 10518 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
8699 | 10519 | ||
8700 | # So? What about this header? | 10520 | # So? What about this header? |
8701 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 10521 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -8719,25 +10539,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
8719 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 10539 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
8720 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 10540 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
8721 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 10541 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
8722 | ( | 10542 | ( cat <<\_ASBOX |
8723 | cat <<\_ASBOX | ||
8724 | ## ------------------------------------------- ## | 10543 | ## ------------------------------------------- ## |
8725 | ## Report this to openssh-unix-dev@mindrot.org ## | 10544 | ## Report this to openssh-unix-dev@mindrot.org ## |
8726 | ## ------------------------------------------- ## | 10545 | ## ------------------------------------------- ## |
8727 | _ASBOX | 10546 | _ASBOX |
8728 | ) | | 10547 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
8729 | sed "s/^/$as_me: WARNING: /" >&2 | ||
8730 | ;; | 10548 | ;; |
8731 | esac | 10549 | esac |
8732 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 10550 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
8733 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 10551 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
8734 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 10552 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
8735 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10553 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8736 | else | 10554 | else |
8737 | eval "$as_ac_Header=\$ac_header_preproc" | 10555 | eval "$as_ac_Header=\$ac_header_preproc" |
8738 | fi | 10556 | fi |
8739 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 10557 | ac_res=`eval echo '${'$as_ac_Header'}'` |
8740 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 10558 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
10559 | echo "${ECHO_T}$ac_res" >&6; } | ||
8741 | 10560 | ||
8742 | fi | 10561 | fi |
8743 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 10562 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -8758,8 +10577,8 @@ fi | |||
8758 | done | 10577 | done |
8759 | 10578 | ||
8760 | 10579 | ||
8761 | echo "$as_me:$LINENO: checking for getspnam" >&5 | 10580 | { echo "$as_me:$LINENO: checking for getspnam" >&5 |
8762 | echo $ECHO_N "checking for getspnam... $ECHO_C" >&6 | 10581 | echo $ECHO_N "checking for getspnam... $ECHO_C" >&6; } |
8763 | if test "${ac_cv_func_getspnam+set}" = set; then | 10582 | if test "${ac_cv_func_getspnam+set}" = set; then |
8764 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10583 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8765 | else | 10584 | else |
@@ -8786,52 +10605,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
8786 | 10605 | ||
8787 | #undef getspnam | 10606 | #undef getspnam |
8788 | 10607 | ||
8789 | /* Override any gcc2 internal prototype to avoid an error. */ | 10608 | /* Override any GCC internal prototype to avoid an error. |
10609 | Use char because int might match the return type of a GCC | ||
10610 | builtin and then its argument prototype would still apply. */ | ||
8790 | #ifdef __cplusplus | 10611 | #ifdef __cplusplus |
8791 | extern "C" | 10612 | extern "C" |
8792 | { | ||
8793 | #endif | 10613 | #endif |
8794 | /* We use char because int might match the return type of a gcc2 | ||
8795 | builtin and then its argument prototype would still apply. */ | ||
8796 | char getspnam (); | 10614 | char getspnam (); |
8797 | /* The GNU C library defines this for functions which it implements | 10615 | /* The GNU C library defines this for functions which it implements |
8798 | to always fail with ENOSYS. Some functions are actually named | 10616 | to always fail with ENOSYS. Some functions are actually named |
8799 | something starting with __ and the normal name is an alias. */ | 10617 | something starting with __ and the normal name is an alias. */ |
8800 | #if defined (__stub_getspnam) || defined (__stub___getspnam) | 10618 | #if defined __stub_getspnam || defined __stub___getspnam |
8801 | choke me | 10619 | choke me |
8802 | #else | ||
8803 | char (*f) () = getspnam; | ||
8804 | #endif | ||
8805 | #ifdef __cplusplus | ||
8806 | } | ||
8807 | #endif | 10620 | #endif |
8808 | 10621 | ||
8809 | int | 10622 | int |
8810 | main () | 10623 | main () |
8811 | { | 10624 | { |
8812 | return f != getspnam; | 10625 | return getspnam (); |
8813 | ; | 10626 | ; |
8814 | return 0; | 10627 | return 0; |
8815 | } | 10628 | } |
8816 | _ACEOF | 10629 | _ACEOF |
8817 | rm -f conftest.$ac_objext conftest$ac_exeext | 10630 | rm -f conftest.$ac_objext conftest$ac_exeext |
8818 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10631 | if { (ac_try="$ac_link" |
8819 | (eval $ac_link) 2>conftest.er1 | 10632 | case "(($ac_try" in |
10633 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10634 | *) ac_try_echo=$ac_try;; | ||
10635 | esac | ||
10636 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10637 | (eval "$ac_link") 2>conftest.er1 | ||
8820 | ac_status=$? | 10638 | ac_status=$? |
8821 | grep -v '^ *+' conftest.er1 >conftest.err | 10639 | grep -v '^ *+' conftest.er1 >conftest.err |
8822 | rm -f conftest.er1 | 10640 | rm -f conftest.er1 |
8823 | cat conftest.err >&5 | 10641 | cat conftest.err >&5 |
8824 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10642 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8825 | (exit $ac_status); } && | 10643 | (exit $ac_status); } && |
8826 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10644 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8827 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10645 | { (case "(($ac_try" in |
8828 | (eval $ac_try) 2>&5 | 10646 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10647 | *) ac_try_echo=$ac_try;; | ||
10648 | esac | ||
10649 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10650 | (eval "$ac_try") 2>&5 | ||
8829 | ac_status=$? | 10651 | ac_status=$? |
8830 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10652 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8831 | (exit $ac_status); }; } && | 10653 | (exit $ac_status); }; } && |
8832 | { ac_try='test -s conftest$ac_exeext' | 10654 | { ac_try='test -s conftest$ac_exeext' |
8833 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10655 | { (case "(($ac_try" in |
8834 | (eval $ac_try) 2>&5 | 10656 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10657 | *) ac_try_echo=$ac_try;; | ||
10658 | esac | ||
10659 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10660 | (eval "$ac_try") 2>&5 | ||
8835 | ac_status=$? | 10661 | ac_status=$? |
8836 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10662 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8837 | (exit $ac_status); }; }; then | 10663 | (exit $ac_status); }; }; then |
@@ -8840,18 +10666,19 @@ else | |||
8840 | echo "$as_me: failed program was:" >&5 | 10666 | echo "$as_me: failed program was:" >&5 |
8841 | sed 's/^/| /' conftest.$ac_ext >&5 | 10667 | sed 's/^/| /' conftest.$ac_ext >&5 |
8842 | 10668 | ||
8843 | ac_cv_func_getspnam=no | 10669 | ac_cv_func_getspnam=no |
8844 | fi | 10670 | fi |
8845 | rm -f conftest.err conftest.$ac_objext \ | 10671 | |
10672 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8846 | conftest$ac_exeext conftest.$ac_ext | 10673 | conftest$ac_exeext conftest.$ac_ext |
8847 | fi | 10674 | fi |
8848 | echo "$as_me:$LINENO: result: $ac_cv_func_getspnam" >&5 | 10675 | { echo "$as_me:$LINENO: result: $ac_cv_func_getspnam" >&5 |
8849 | echo "${ECHO_T}$ac_cv_func_getspnam" >&6 | 10676 | echo "${ECHO_T}$ac_cv_func_getspnam" >&6; } |
8850 | if test $ac_cv_func_getspnam = yes; then | 10677 | if test $ac_cv_func_getspnam = yes; then |
8851 | : | 10678 | : |
8852 | else | 10679 | else |
8853 | echo "$as_me:$LINENO: checking for getspnam in -lgen" >&5 | 10680 | { echo "$as_me:$LINENO: checking for getspnam in -lgen" >&5 |
8854 | echo $ECHO_N "checking for getspnam in -lgen... $ECHO_C" >&6 | 10681 | echo $ECHO_N "checking for getspnam in -lgen... $ECHO_C" >&6; } |
8855 | if test "${ac_cv_lib_gen_getspnam+set}" = set; then | 10682 | if test "${ac_cv_lib_gen_getspnam+set}" = set; then |
8856 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10683 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8857 | else | 10684 | else |
@@ -8864,39 +10691,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
8864 | cat >>conftest.$ac_ext <<_ACEOF | 10691 | cat >>conftest.$ac_ext <<_ACEOF |
8865 | /* end confdefs.h. */ | 10692 | /* end confdefs.h. */ |
8866 | 10693 | ||
8867 | /* Override any gcc2 internal prototype to avoid an error. */ | 10694 | /* Override any GCC internal prototype to avoid an error. |
10695 | Use char because int might match the return type of a GCC | ||
10696 | builtin and then its argument prototype would still apply. */ | ||
8868 | #ifdef __cplusplus | 10697 | #ifdef __cplusplus |
8869 | extern "C" | 10698 | extern "C" |
8870 | #endif | 10699 | #endif |
8871 | /* We use char because int might match the return type of a gcc2 | ||
8872 | builtin and then its argument prototype would still apply. */ | ||
8873 | char getspnam (); | 10700 | char getspnam (); |
8874 | int | 10701 | int |
8875 | main () | 10702 | main () |
8876 | { | 10703 | { |
8877 | getspnam (); | 10704 | return getspnam (); |
8878 | ; | 10705 | ; |
8879 | return 0; | 10706 | return 0; |
8880 | } | 10707 | } |
8881 | _ACEOF | 10708 | _ACEOF |
8882 | rm -f conftest.$ac_objext conftest$ac_exeext | 10709 | rm -f conftest.$ac_objext conftest$ac_exeext |
8883 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10710 | if { (ac_try="$ac_link" |
8884 | (eval $ac_link) 2>conftest.er1 | 10711 | case "(($ac_try" in |
10712 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10713 | *) ac_try_echo=$ac_try;; | ||
10714 | esac | ||
10715 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10716 | (eval "$ac_link") 2>conftest.er1 | ||
8885 | ac_status=$? | 10717 | ac_status=$? |
8886 | grep -v '^ *+' conftest.er1 >conftest.err | 10718 | grep -v '^ *+' conftest.er1 >conftest.err |
8887 | rm -f conftest.er1 | 10719 | rm -f conftest.er1 |
8888 | cat conftest.err >&5 | 10720 | cat conftest.err >&5 |
8889 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10721 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8890 | (exit $ac_status); } && | 10722 | (exit $ac_status); } && |
8891 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10723 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8892 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10724 | { (case "(($ac_try" in |
8893 | (eval $ac_try) 2>&5 | 10725 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10726 | *) ac_try_echo=$ac_try;; | ||
10727 | esac | ||
10728 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10729 | (eval "$ac_try") 2>&5 | ||
8894 | ac_status=$? | 10730 | ac_status=$? |
8895 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10731 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8896 | (exit $ac_status); }; } && | 10732 | (exit $ac_status); }; } && |
8897 | { ac_try='test -s conftest$ac_exeext' | 10733 | { ac_try='test -s conftest$ac_exeext' |
8898 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10734 | { (case "(($ac_try" in |
8899 | (eval $ac_try) 2>&5 | 10735 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10736 | *) ac_try_echo=$ac_try;; | ||
10737 | esac | ||
10738 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10739 | (eval "$ac_try") 2>&5 | ||
8900 | ac_status=$? | 10740 | ac_status=$? |
8901 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10741 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8902 | (exit $ac_status); }; }; then | 10742 | (exit $ac_status); }; }; then |
@@ -8905,27 +10745,27 @@ else | |||
8905 | echo "$as_me: failed program was:" >&5 | 10745 | echo "$as_me: failed program was:" >&5 |
8906 | sed 's/^/| /' conftest.$ac_ext >&5 | 10746 | sed 's/^/| /' conftest.$ac_ext >&5 |
8907 | 10747 | ||
8908 | ac_cv_lib_gen_getspnam=no | 10748 | ac_cv_lib_gen_getspnam=no |
8909 | fi | 10749 | fi |
8910 | rm -f conftest.err conftest.$ac_objext \ | 10750 | |
10751 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
8911 | conftest$ac_exeext conftest.$ac_ext | 10752 | conftest$ac_exeext conftest.$ac_ext |
8912 | LIBS=$ac_check_lib_save_LIBS | 10753 | LIBS=$ac_check_lib_save_LIBS |
8913 | fi | 10754 | fi |
8914 | echo "$as_me:$LINENO: result: $ac_cv_lib_gen_getspnam" >&5 | 10755 | { echo "$as_me:$LINENO: result: $ac_cv_lib_gen_getspnam" >&5 |
8915 | echo "${ECHO_T}$ac_cv_lib_gen_getspnam" >&6 | 10756 | echo "${ECHO_T}$ac_cv_lib_gen_getspnam" >&6; } |
8916 | if test $ac_cv_lib_gen_getspnam = yes; then | 10757 | if test $ac_cv_lib_gen_getspnam = yes; then |
8917 | LIBS="$LIBS -lgen" | 10758 | LIBS="$LIBS -lgen" |
8918 | fi | 10759 | fi |
8919 | 10760 | ||
8920 | fi | 10761 | fi |
8921 | 10762 | ||
8922 | echo "$as_me:$LINENO: checking for library containing basename" >&5 | 10763 | { echo "$as_me:$LINENO: checking for library containing basename" >&5 |
8923 | echo $ECHO_N "checking for library containing basename... $ECHO_C" >&6 | 10764 | echo $ECHO_N "checking for library containing basename... $ECHO_C" >&6; } |
8924 | if test "${ac_cv_search_basename+set}" = set; then | 10765 | if test "${ac_cv_search_basename+set}" = set; then |
8925 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10766 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
8926 | else | 10767 | else |
8927 | ac_func_search_save_LIBS=$LIBS | 10768 | ac_func_search_save_LIBS=$LIBS |
8928 | ac_cv_search_basename=no | ||
8929 | cat >conftest.$ac_ext <<_ACEOF | 10769 | cat >conftest.$ac_ext <<_ACEOF |
8930 | /* confdefs.h. */ | 10770 | /* confdefs.h. */ |
8931 | _ACEOF | 10771 | _ACEOF |
@@ -8933,113 +10773,89 @@ cat confdefs.h >>conftest.$ac_ext | |||
8933 | cat >>conftest.$ac_ext <<_ACEOF | 10773 | cat >>conftest.$ac_ext <<_ACEOF |
8934 | /* end confdefs.h. */ | 10774 | /* end confdefs.h. */ |
8935 | 10775 | ||
8936 | /* Override any gcc2 internal prototype to avoid an error. */ | 10776 | /* Override any GCC internal prototype to avoid an error. |
10777 | Use char because int might match the return type of a GCC | ||
10778 | builtin and then its argument prototype would still apply. */ | ||
8937 | #ifdef __cplusplus | 10779 | #ifdef __cplusplus |
8938 | extern "C" | 10780 | extern "C" |
8939 | #endif | 10781 | #endif |
8940 | /* We use char because int might match the return type of a gcc2 | ||
8941 | builtin and then its argument prototype would still apply. */ | ||
8942 | char basename (); | 10782 | char basename (); |
8943 | int | 10783 | int |
8944 | main () | 10784 | main () |
8945 | { | 10785 | { |
8946 | basename (); | 10786 | return basename (); |
8947 | ; | 10787 | ; |
8948 | return 0; | 10788 | return 0; |
8949 | } | 10789 | } |
8950 | _ACEOF | 10790 | _ACEOF |
8951 | rm -f conftest.$ac_objext conftest$ac_exeext | 10791 | for ac_lib in '' gen; do |
8952 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10792 | if test -z "$ac_lib"; then |
8953 | (eval $ac_link) 2>conftest.er1 | 10793 | ac_res="none required" |
10794 | else | ||
10795 | ac_res=-l$ac_lib | ||
10796 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
10797 | fi | ||
10798 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
10799 | if { (ac_try="$ac_link" | ||
10800 | case "(($ac_try" in | ||
10801 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10802 | *) ac_try_echo=$ac_try;; | ||
10803 | esac | ||
10804 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10805 | (eval "$ac_link") 2>conftest.er1 | ||
8954 | ac_status=$? | 10806 | ac_status=$? |
8955 | grep -v '^ *+' conftest.er1 >conftest.err | 10807 | grep -v '^ *+' conftest.er1 >conftest.err |
8956 | rm -f conftest.er1 | 10808 | rm -f conftest.er1 |
8957 | cat conftest.err >&5 | 10809 | cat conftest.err >&5 |
8958 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10810 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8959 | (exit $ac_status); } && | 10811 | (exit $ac_status); } && |
8960 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10812 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8961 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10813 | { (case "(($ac_try" in |
8962 | (eval $ac_try) 2>&5 | 10814 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10815 | *) ac_try_echo=$ac_try;; | ||
10816 | esac | ||
10817 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10818 | (eval "$ac_try") 2>&5 | ||
8963 | ac_status=$? | 10819 | ac_status=$? |
8964 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10820 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8965 | (exit $ac_status); }; } && | 10821 | (exit $ac_status); }; } && |
8966 | { ac_try='test -s conftest$ac_exeext' | 10822 | { ac_try='test -s conftest$ac_exeext' |
8967 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10823 | { (case "(($ac_try" in |
8968 | (eval $ac_try) 2>&5 | 10824 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10825 | *) ac_try_echo=$ac_try;; | ||
10826 | esac | ||
10827 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10828 | (eval "$ac_try") 2>&5 | ||
8969 | ac_status=$? | 10829 | ac_status=$? |
8970 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10830 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8971 | (exit $ac_status); }; }; then | 10831 | (exit $ac_status); }; }; then |
8972 | ac_cv_search_basename="none required" | 10832 | ac_cv_search_basename=$ac_res |
8973 | else | 10833 | else |
8974 | echo "$as_me: failed program was:" >&5 | 10834 | echo "$as_me: failed program was:" >&5 |
8975 | sed 's/^/| /' conftest.$ac_ext >&5 | 10835 | sed 's/^/| /' conftest.$ac_ext >&5 |
8976 | 10836 | ||
8977 | fi | ||
8978 | rm -f conftest.err conftest.$ac_objext \ | ||
8979 | conftest$ac_exeext conftest.$ac_ext | ||
8980 | if test "$ac_cv_search_basename" = no; then | ||
8981 | for ac_lib in gen; do | ||
8982 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
8983 | cat >conftest.$ac_ext <<_ACEOF | ||
8984 | /* confdefs.h. */ | ||
8985 | _ACEOF | ||
8986 | cat confdefs.h >>conftest.$ac_ext | ||
8987 | cat >>conftest.$ac_ext <<_ACEOF | ||
8988 | /* end confdefs.h. */ | ||
8989 | 10837 | ||
8990 | /* Override any gcc2 internal prototype to avoid an error. */ | 10838 | fi |
8991 | #ifdef __cplusplus | ||
8992 | extern "C" | ||
8993 | #endif | ||
8994 | /* We use char because int might match the return type of a gcc2 | ||
8995 | builtin and then its argument prototype would still apply. */ | ||
8996 | char basename (); | ||
8997 | int | ||
8998 | main () | ||
8999 | { | ||
9000 | basename (); | ||
9001 | ; | ||
9002 | return 0; | ||
9003 | } | ||
9004 | _ACEOF | ||
9005 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
9006 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
9007 | (eval $ac_link) 2>conftest.er1 | ||
9008 | ac_status=$? | ||
9009 | grep -v '^ *+' conftest.er1 >conftest.err | ||
9010 | rm -f conftest.er1 | ||
9011 | cat conftest.err >&5 | ||
9012 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
9013 | (exit $ac_status); } && | ||
9014 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
9015 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
9016 | (eval $ac_try) 2>&5 | ||
9017 | ac_status=$? | ||
9018 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
9019 | (exit $ac_status); }; } && | ||
9020 | { ac_try='test -s conftest$ac_exeext' | ||
9021 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
9022 | (eval $ac_try) 2>&5 | ||
9023 | ac_status=$? | ||
9024 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
9025 | (exit $ac_status); }; }; then | ||
9026 | ac_cv_search_basename="-l$ac_lib" | ||
9027 | break | ||
9028 | else | ||
9029 | echo "$as_me: failed program was:" >&5 | ||
9030 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
9031 | 10839 | ||
10840 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10841 | conftest$ac_exeext | ||
10842 | if test "${ac_cv_search_basename+set}" = set; then | ||
10843 | break | ||
9032 | fi | 10844 | fi |
9033 | rm -f conftest.err conftest.$ac_objext \ | 10845 | done |
9034 | conftest$ac_exeext conftest.$ac_ext | 10846 | if test "${ac_cv_search_basename+set}" = set; then |
9035 | done | 10847 | : |
10848 | else | ||
10849 | ac_cv_search_basename=no | ||
9036 | fi | 10850 | fi |
10851 | rm conftest.$ac_ext | ||
9037 | LIBS=$ac_func_search_save_LIBS | 10852 | LIBS=$ac_func_search_save_LIBS |
9038 | fi | 10853 | fi |
9039 | echo "$as_me:$LINENO: result: $ac_cv_search_basename" >&5 | 10854 | { echo "$as_me:$LINENO: result: $ac_cv_search_basename" >&5 |
9040 | echo "${ECHO_T}$ac_cv_search_basename" >&6 | 10855 | echo "${ECHO_T}$ac_cv_search_basename" >&6; } |
9041 | if test "$ac_cv_search_basename" != no; then | 10856 | ac_res=$ac_cv_search_basename |
9042 | test "$ac_cv_search_basename" = "none required" || LIBS="$ac_cv_search_basename $LIBS" | 10857 | if test "$ac_res" != no; then |
10858 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
9043 | 10859 | ||
9044 | cat >>confdefs.h <<\_ACEOF | 10860 | cat >>confdefs.h <<\_ACEOF |
9045 | #define HAVE_BASENAME 1 | 10861 | #define HAVE_BASENAME 1 |
@@ -9049,10 +10865,9 @@ fi | |||
9049 | 10865 | ||
9050 | 10866 | ||
9051 | 10867 | ||
9052 | # Check whether --with-zlib or --without-zlib was given. | 10868 | # Check whether --with-zlib was given. |
9053 | if test "${with_zlib+set}" = set; then | 10869 | if test "${with_zlib+set}" = set; then |
9054 | withval="$with_zlib" | 10870 | withval=$with_zlib; if test "x$withval" = "xno" ; then |
9055 | if test "x$withval" = "xno" ; then | ||
9056 | { { echo "$as_me:$LINENO: error: *** zlib is required ***" >&5 | 10871 | { { echo "$as_me:$LINENO: error: *** zlib is required ***" >&5 |
9057 | echo "$as_me: error: *** zlib is required ***" >&2;} | 10872 | echo "$as_me: error: *** zlib is required ***" >&2;} |
9058 | { (exit 1); exit 1; }; } | 10873 | { (exit 1); exit 1; }; } |
@@ -9077,11 +10892,12 @@ echo "$as_me: error: *** zlib is required ***" >&2;} | |||
9077 | fi | 10892 | fi |
9078 | fi | 10893 | fi |
9079 | 10894 | ||
9080 | fi; | 10895 | fi |
10896 | |||
9081 | 10897 | ||
9082 | 10898 | ||
9083 | echo "$as_me:$LINENO: checking for deflate in -lz" >&5 | 10899 | { echo "$as_me:$LINENO: checking for deflate in -lz" >&5 |
9084 | echo $ECHO_N "checking for deflate in -lz... $ECHO_C" >&6 | 10900 | echo $ECHO_N "checking for deflate in -lz... $ECHO_C" >&6; } |
9085 | if test "${ac_cv_lib_z_deflate+set}" = set; then | 10901 | if test "${ac_cv_lib_z_deflate+set}" = set; then |
9086 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 10902 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9087 | else | 10903 | else |
@@ -9094,39 +10910,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
9094 | cat >>conftest.$ac_ext <<_ACEOF | 10910 | cat >>conftest.$ac_ext <<_ACEOF |
9095 | /* end confdefs.h. */ | 10911 | /* end confdefs.h. */ |
9096 | 10912 | ||
9097 | /* Override any gcc2 internal prototype to avoid an error. */ | 10913 | /* Override any GCC internal prototype to avoid an error. |
10914 | Use char because int might match the return type of a GCC | ||
10915 | builtin and then its argument prototype would still apply. */ | ||
9098 | #ifdef __cplusplus | 10916 | #ifdef __cplusplus |
9099 | extern "C" | 10917 | extern "C" |
9100 | #endif | 10918 | #endif |
9101 | /* We use char because int might match the return type of a gcc2 | ||
9102 | builtin and then its argument prototype would still apply. */ | ||
9103 | char deflate (); | 10919 | char deflate (); |
9104 | int | 10920 | int |
9105 | main () | 10921 | main () |
9106 | { | 10922 | { |
9107 | deflate (); | 10923 | return deflate (); |
9108 | ; | 10924 | ; |
9109 | return 0; | 10925 | return 0; |
9110 | } | 10926 | } |
9111 | _ACEOF | 10927 | _ACEOF |
9112 | rm -f conftest.$ac_objext conftest$ac_exeext | 10928 | rm -f conftest.$ac_objext conftest$ac_exeext |
9113 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 10929 | if { (ac_try="$ac_link" |
9114 | (eval $ac_link) 2>conftest.er1 | 10930 | case "(($ac_try" in |
10931 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
10932 | *) ac_try_echo=$ac_try;; | ||
10933 | esac | ||
10934 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10935 | (eval "$ac_link") 2>conftest.er1 | ||
9115 | ac_status=$? | 10936 | ac_status=$? |
9116 | grep -v '^ *+' conftest.er1 >conftest.err | 10937 | grep -v '^ *+' conftest.er1 >conftest.err |
9117 | rm -f conftest.er1 | 10938 | rm -f conftest.er1 |
9118 | cat conftest.err >&5 | 10939 | cat conftest.err >&5 |
9119 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10940 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9120 | (exit $ac_status); } && | 10941 | (exit $ac_status); } && |
9121 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 10942 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9122 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10943 | { (case "(($ac_try" in |
9123 | (eval $ac_try) 2>&5 | 10944 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10945 | *) ac_try_echo=$ac_try;; | ||
10946 | esac | ||
10947 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10948 | (eval "$ac_try") 2>&5 | ||
9124 | ac_status=$? | 10949 | ac_status=$? |
9125 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10950 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9126 | (exit $ac_status); }; } && | 10951 | (exit $ac_status); }; } && |
9127 | { ac_try='test -s conftest$ac_exeext' | 10952 | { ac_try='test -s conftest$ac_exeext' |
9128 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10953 | { (case "(($ac_try" in |
9129 | (eval $ac_try) 2>&5 | 10954 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
10955 | *) ac_try_echo=$ac_try;; | ||
10956 | esac | ||
10957 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
10958 | (eval "$ac_try") 2>&5 | ||
9130 | ac_status=$? | 10959 | ac_status=$? |
9131 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10960 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9132 | (exit $ac_status); }; }; then | 10961 | (exit $ac_status); }; }; then |
@@ -9135,14 +10964,15 @@ else | |||
9135 | echo "$as_me: failed program was:" >&5 | 10964 | echo "$as_me: failed program was:" >&5 |
9136 | sed 's/^/| /' conftest.$ac_ext >&5 | 10965 | sed 's/^/| /' conftest.$ac_ext >&5 |
9137 | 10966 | ||
9138 | ac_cv_lib_z_deflate=no | 10967 | ac_cv_lib_z_deflate=no |
9139 | fi | 10968 | fi |
9140 | rm -f conftest.err conftest.$ac_objext \ | 10969 | |
10970 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
9141 | conftest$ac_exeext conftest.$ac_ext | 10971 | conftest$ac_exeext conftest.$ac_ext |
9142 | LIBS=$ac_check_lib_save_LIBS | 10972 | LIBS=$ac_check_lib_save_LIBS |
9143 | fi | 10973 | fi |
9144 | echo "$as_me:$LINENO: result: $ac_cv_lib_z_deflate" >&5 | 10974 | { echo "$as_me:$LINENO: result: $ac_cv_lib_z_deflate" >&5 |
9145 | echo "${ECHO_T}$ac_cv_lib_z_deflate" >&6 | 10975 | echo "${ECHO_T}$ac_cv_lib_z_deflate" >&6; } |
9146 | if test $ac_cv_lib_z_deflate = yes; then | 10976 | if test $ac_cv_lib_z_deflate = yes; then |
9147 | cat >>confdefs.h <<_ACEOF | 10977 | cat >>confdefs.h <<_ACEOF |
9148 | #define HAVE_LIBZ 1 | 10978 | #define HAVE_LIBZ 1 |
@@ -9169,39 +10999,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
9169 | cat >>conftest.$ac_ext <<_ACEOF | 10999 | cat >>conftest.$ac_ext <<_ACEOF |
9170 | /* end confdefs.h. */ | 11000 | /* end confdefs.h. */ |
9171 | 11001 | ||
9172 | /* Override any gcc2 internal prototype to avoid an error. */ | 11002 | /* Override any GCC internal prototype to avoid an error. |
11003 | Use char because int might match the return type of a GCC | ||
11004 | builtin and then its argument prototype would still apply. */ | ||
9173 | #ifdef __cplusplus | 11005 | #ifdef __cplusplus |
9174 | extern "C" | 11006 | extern "C" |
9175 | #endif | 11007 | #endif |
9176 | /* We use char because int might match the return type of a gcc2 | ||
9177 | builtin and then its argument prototype would still apply. */ | ||
9178 | char deflate (); | 11008 | char deflate (); |
9179 | int | 11009 | int |
9180 | main () | 11010 | main () |
9181 | { | 11011 | { |
9182 | deflate (); | 11012 | return deflate (); |
9183 | ; | 11013 | ; |
9184 | return 0; | 11014 | return 0; |
9185 | } | 11015 | } |
9186 | _ACEOF | 11016 | _ACEOF |
9187 | rm -f conftest.$ac_objext conftest$ac_exeext | 11017 | rm -f conftest.$ac_objext conftest$ac_exeext |
9188 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11018 | if { (ac_try="$ac_link" |
9189 | (eval $ac_link) 2>conftest.er1 | 11019 | case "(($ac_try" in |
11020 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11021 | *) ac_try_echo=$ac_try;; | ||
11022 | esac | ||
11023 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11024 | (eval "$ac_link") 2>conftest.er1 | ||
9190 | ac_status=$? | 11025 | ac_status=$? |
9191 | grep -v '^ *+' conftest.er1 >conftest.err | 11026 | grep -v '^ *+' conftest.er1 >conftest.err |
9192 | rm -f conftest.er1 | 11027 | rm -f conftest.er1 |
9193 | cat conftest.err >&5 | 11028 | cat conftest.err >&5 |
9194 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11029 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9195 | (exit $ac_status); } && | 11030 | (exit $ac_status); } && |
9196 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11031 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9197 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11032 | { (case "(($ac_try" in |
9198 | (eval $ac_try) 2>&5 | 11033 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11034 | *) ac_try_echo=$ac_try;; | ||
11035 | esac | ||
11036 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11037 | (eval "$ac_try") 2>&5 | ||
9199 | ac_status=$? | 11038 | ac_status=$? |
9200 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11039 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9201 | (exit $ac_status); }; } && | 11040 | (exit $ac_status); }; } && |
9202 | { ac_try='test -s conftest$ac_exeext' | 11041 | { ac_try='test -s conftest$ac_exeext' |
9203 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11042 | { (case "(($ac_try" in |
9204 | (eval $ac_try) 2>&5 | 11043 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11044 | *) ac_try_echo=$ac_try;; | ||
11045 | esac | ||
11046 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11047 | (eval "$ac_try") 2>&5 | ||
9205 | ac_status=$? | 11048 | ac_status=$? |
9206 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11049 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9207 | (exit $ac_status); }; }; then | 11050 | (exit $ac_status); }; }; then |
@@ -9220,24 +11063,25 @@ echo "$as_me: error: *** zlib missing - please install first or check config.log | |||
9220 | 11063 | ||
9221 | 11064 | ||
9222 | fi | 11065 | fi |
9223 | rm -f conftest.err conftest.$ac_objext \ | 11066 | |
11067 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
9224 | conftest$ac_exeext conftest.$ac_ext | 11068 | conftest$ac_exeext conftest.$ac_ext |
9225 | 11069 | ||
9226 | 11070 | ||
9227 | fi | 11071 | fi |
9228 | 11072 | ||
9229 | if test "${ac_cv_header_zlib_h+set}" = set; then | 11073 | if test "${ac_cv_header_zlib_h+set}" = set; then |
9230 | echo "$as_me:$LINENO: checking for zlib.h" >&5 | 11074 | { echo "$as_me:$LINENO: checking for zlib.h" >&5 |
9231 | echo $ECHO_N "checking for zlib.h... $ECHO_C" >&6 | 11075 | echo $ECHO_N "checking for zlib.h... $ECHO_C" >&6; } |
9232 | if test "${ac_cv_header_zlib_h+set}" = set; then | 11076 | if test "${ac_cv_header_zlib_h+set}" = set; then |
9233 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11077 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9234 | fi | 11078 | fi |
9235 | echo "$as_me:$LINENO: result: $ac_cv_header_zlib_h" >&5 | 11079 | { echo "$as_me:$LINENO: result: $ac_cv_header_zlib_h" >&5 |
9236 | echo "${ECHO_T}$ac_cv_header_zlib_h" >&6 | 11080 | echo "${ECHO_T}$ac_cv_header_zlib_h" >&6; } |
9237 | else | 11081 | else |
9238 | # Is the header compilable? | 11082 | # Is the header compilable? |
9239 | echo "$as_me:$LINENO: checking zlib.h usability" >&5 | 11083 | { echo "$as_me:$LINENO: checking zlib.h usability" >&5 |
9240 | echo $ECHO_N "checking zlib.h usability... $ECHO_C" >&6 | 11084 | echo $ECHO_N "checking zlib.h usability... $ECHO_C" >&6; } |
9241 | cat >conftest.$ac_ext <<_ACEOF | 11085 | cat >conftest.$ac_ext <<_ACEOF |
9242 | /* confdefs.h. */ | 11086 | /* confdefs.h. */ |
9243 | _ACEOF | 11087 | _ACEOF |
@@ -9248,23 +11092,36 @@ $ac_includes_default | |||
9248 | #include <zlib.h> | 11092 | #include <zlib.h> |
9249 | _ACEOF | 11093 | _ACEOF |
9250 | rm -f conftest.$ac_objext | 11094 | rm -f conftest.$ac_objext |
9251 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 11095 | if { (ac_try="$ac_compile" |
9252 | (eval $ac_compile) 2>conftest.er1 | 11096 | case "(($ac_try" in |
11097 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11098 | *) ac_try_echo=$ac_try;; | ||
11099 | esac | ||
11100 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11101 | (eval "$ac_compile") 2>conftest.er1 | ||
9253 | ac_status=$? | 11102 | ac_status=$? |
9254 | grep -v '^ *+' conftest.er1 >conftest.err | 11103 | grep -v '^ *+' conftest.er1 >conftest.err |
9255 | rm -f conftest.er1 | 11104 | rm -f conftest.er1 |
9256 | cat conftest.err >&5 | 11105 | cat conftest.err >&5 |
9257 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11106 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9258 | (exit $ac_status); } && | 11107 | (exit $ac_status); } && |
9259 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11108 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9260 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11109 | { (case "(($ac_try" in |
9261 | (eval $ac_try) 2>&5 | 11110 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11111 | *) ac_try_echo=$ac_try;; | ||
11112 | esac | ||
11113 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11114 | (eval "$ac_try") 2>&5 | ||
9262 | ac_status=$? | 11115 | ac_status=$? |
9263 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11116 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9264 | (exit $ac_status); }; } && | 11117 | (exit $ac_status); }; } && |
9265 | { ac_try='test -s conftest.$ac_objext' | 11118 | { ac_try='test -s conftest.$ac_objext' |
9266 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11119 | { (case "(($ac_try" in |
9267 | (eval $ac_try) 2>&5 | 11120 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11121 | *) ac_try_echo=$ac_try;; | ||
11122 | esac | ||
11123 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11124 | (eval "$ac_try") 2>&5 | ||
9268 | ac_status=$? | 11125 | ac_status=$? |
9269 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11126 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9270 | (exit $ac_status); }; }; then | 11127 | (exit $ac_status); }; }; then |
@@ -9273,15 +11130,16 @@ else | |||
9273 | echo "$as_me: failed program was:" >&5 | 11130 | echo "$as_me: failed program was:" >&5 |
9274 | sed 's/^/| /' conftest.$ac_ext >&5 | 11131 | sed 's/^/| /' conftest.$ac_ext >&5 |
9275 | 11132 | ||
9276 | ac_header_compiler=no | 11133 | ac_header_compiler=no |
9277 | fi | 11134 | fi |
9278 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 11135 | |
9279 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 11136 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
9280 | echo "${ECHO_T}$ac_header_compiler" >&6 | 11137 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
11138 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
9281 | 11139 | ||
9282 | # Is the header present? | 11140 | # Is the header present? |
9283 | echo "$as_me:$LINENO: checking zlib.h presence" >&5 | 11141 | { echo "$as_me:$LINENO: checking zlib.h presence" >&5 |
9284 | echo $ECHO_N "checking zlib.h presence... $ECHO_C" >&6 | 11142 | echo $ECHO_N "checking zlib.h presence... $ECHO_C" >&6; } |
9285 | cat >conftest.$ac_ext <<_ACEOF | 11143 | cat >conftest.$ac_ext <<_ACEOF |
9286 | /* confdefs.h. */ | 11144 | /* confdefs.h. */ |
9287 | _ACEOF | 11145 | _ACEOF |
@@ -9290,8 +11148,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
9290 | /* end confdefs.h. */ | 11148 | /* end confdefs.h. */ |
9291 | #include <zlib.h> | 11149 | #include <zlib.h> |
9292 | _ACEOF | 11150 | _ACEOF |
9293 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 11151 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
9294 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 11152 | case "(($ac_try" in |
11153 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11154 | *) ac_try_echo=$ac_try;; | ||
11155 | esac | ||
11156 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11157 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
9295 | ac_status=$? | 11158 | ac_status=$? |
9296 | grep -v '^ *+' conftest.er1 >conftest.err | 11159 | grep -v '^ *+' conftest.er1 >conftest.err |
9297 | rm -f conftest.er1 | 11160 | rm -f conftest.er1 |
@@ -9315,9 +11178,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
9315 | 11178 | ||
9316 | ac_header_preproc=no | 11179 | ac_header_preproc=no |
9317 | fi | 11180 | fi |
11181 | |||
9318 | rm -f conftest.err conftest.$ac_ext | 11182 | rm -f conftest.err conftest.$ac_ext |
9319 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 11183 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
9320 | echo "${ECHO_T}$ac_header_preproc" >&6 | 11184 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
9321 | 11185 | ||
9322 | # So? What about this header? | 11186 | # So? What about this header? |
9323 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 11187 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -9341,25 +11205,23 @@ echo "$as_me: WARNING: zlib.h: section \"Present But Cannot Be Compiled\"" > | |||
9341 | echo "$as_me: WARNING: zlib.h: proceeding with the preprocessor's result" >&2;} | 11205 | echo "$as_me: WARNING: zlib.h: proceeding with the preprocessor's result" >&2;} |
9342 | { echo "$as_me:$LINENO: WARNING: zlib.h: in the future, the compiler will take precedence" >&5 | 11206 | { echo "$as_me:$LINENO: WARNING: zlib.h: in the future, the compiler will take precedence" >&5 |
9343 | echo "$as_me: WARNING: zlib.h: in the future, the compiler will take precedence" >&2;} | 11207 | echo "$as_me: WARNING: zlib.h: in the future, the compiler will take precedence" >&2;} |
9344 | ( | 11208 | ( cat <<\_ASBOX |
9345 | cat <<\_ASBOX | ||
9346 | ## ------------------------------------------- ## | 11209 | ## ------------------------------------------- ## |
9347 | ## Report this to openssh-unix-dev@mindrot.org ## | 11210 | ## Report this to openssh-unix-dev@mindrot.org ## |
9348 | ## ------------------------------------------- ## | 11211 | ## ------------------------------------------- ## |
9349 | _ASBOX | 11212 | _ASBOX |
9350 | ) | | 11213 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
9351 | sed "s/^/$as_me: WARNING: /" >&2 | ||
9352 | ;; | 11214 | ;; |
9353 | esac | 11215 | esac |
9354 | echo "$as_me:$LINENO: checking for zlib.h" >&5 | 11216 | { echo "$as_me:$LINENO: checking for zlib.h" >&5 |
9355 | echo $ECHO_N "checking for zlib.h... $ECHO_C" >&6 | 11217 | echo $ECHO_N "checking for zlib.h... $ECHO_C" >&6; } |
9356 | if test "${ac_cv_header_zlib_h+set}" = set; then | 11218 | if test "${ac_cv_header_zlib_h+set}" = set; then |
9357 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11219 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9358 | else | 11220 | else |
9359 | ac_cv_header_zlib_h=$ac_header_preproc | 11221 | ac_cv_header_zlib_h=$ac_header_preproc |
9360 | fi | 11222 | fi |
9361 | echo "$as_me:$LINENO: result: $ac_cv_header_zlib_h" >&5 | 11223 | { echo "$as_me:$LINENO: result: $ac_cv_header_zlib_h" >&5 |
9362 | echo "${ECHO_T}$ac_cv_header_zlib_h" >&6 | 11224 | echo "${ECHO_T}$ac_cv_header_zlib_h" >&6; } |
9363 | 11225 | ||
9364 | fi | 11226 | fi |
9365 | if test $ac_cv_header_zlib_h = yes; then | 11227 | if test $ac_cv_header_zlib_h = yes; then |
@@ -9373,18 +11235,18 @@ fi | |||
9373 | 11235 | ||
9374 | 11236 | ||
9375 | 11237 | ||
9376 | # Check whether --with-zlib-version-check or --without-zlib-version-check was given. | 11238 | # Check whether --with-zlib-version-check was given. |
9377 | if test "${with_zlib_version_check+set}" = set; then | 11239 | if test "${with_zlib_version_check+set}" = set; then |
9378 | withval="$with_zlib_version_check" | 11240 | withval=$with_zlib_version_check; if test "x$withval" = "xno" ; then |
9379 | if test "x$withval" = "xno" ; then | ||
9380 | zlib_check_nonfatal=1 | 11241 | zlib_check_nonfatal=1 |
9381 | fi | 11242 | fi |
9382 | 11243 | ||
9383 | 11244 | ||
9384 | fi; | 11245 | fi |
11246 | |||
9385 | 11247 | ||
9386 | echo "$as_me:$LINENO: checking for possibly buggy zlib" >&5 | 11248 | { echo "$as_me:$LINENO: checking for possibly buggy zlib" >&5 |
9387 | echo $ECHO_N "checking for possibly buggy zlib... $ECHO_C" >&6 | 11249 | echo $ECHO_N "checking for possibly buggy zlib... $ECHO_C" >&6; } |
9388 | if test "$cross_compiling" = yes; then | 11250 | if test "$cross_compiling" = yes; then |
9389 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking zlib version" >&5 | 11251 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking zlib version" >&5 |
9390 | echo "$as_me: WARNING: cross compiling: not checking zlib version" >&2;} | 11252 | echo "$as_me: WARNING: cross compiling: not checking zlib version" >&2;} |
@@ -9421,26 +11283,35 @@ int main() | |||
9421 | 11283 | ||
9422 | _ACEOF | 11284 | _ACEOF |
9423 | rm -f conftest$ac_exeext | 11285 | rm -f conftest$ac_exeext |
9424 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11286 | if { (ac_try="$ac_link" |
9425 | (eval $ac_link) 2>&5 | 11287 | case "(($ac_try" in |
11288 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11289 | *) ac_try_echo=$ac_try;; | ||
11290 | esac | ||
11291 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11292 | (eval "$ac_link") 2>&5 | ||
9426 | ac_status=$? | 11293 | ac_status=$? |
9427 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11294 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9428 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 11295 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
9429 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11296 | { (case "(($ac_try" in |
9430 | (eval $ac_try) 2>&5 | 11297 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11298 | *) ac_try_echo=$ac_try;; | ||
11299 | esac | ||
11300 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11301 | (eval "$ac_try") 2>&5 | ||
9431 | ac_status=$? | 11302 | ac_status=$? |
9432 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11303 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9433 | (exit $ac_status); }; }; then | 11304 | (exit $ac_status); }; }; then |
9434 | echo "$as_me:$LINENO: result: no" >&5 | 11305 | { echo "$as_me:$LINENO: result: no" >&5 |
9435 | echo "${ECHO_T}no" >&6 | 11306 | echo "${ECHO_T}no" >&6; } |
9436 | else | 11307 | else |
9437 | echo "$as_me: program exited with status $ac_status" >&5 | 11308 | echo "$as_me: program exited with status $ac_status" >&5 |
9438 | echo "$as_me: failed program was:" >&5 | 11309 | echo "$as_me: failed program was:" >&5 |
9439 | sed 's/^/| /' conftest.$ac_ext >&5 | 11310 | sed 's/^/| /' conftest.$ac_ext >&5 |
9440 | 11311 | ||
9441 | ( exit $ac_status ) | 11312 | ( exit $ac_status ) |
9442 | echo "$as_me:$LINENO: result: yes" >&5 | 11313 | { echo "$as_me:$LINENO: result: yes" >&5 |
9443 | echo "${ECHO_T}yes" >&6 | 11314 | echo "${ECHO_T}yes" >&6; } |
9444 | if test -z "$zlib_check_nonfatal" ; then | 11315 | if test -z "$zlib_check_nonfatal" ; then |
9445 | { { echo "$as_me:$LINENO: error: *** zlib too old - check config.log *** | 11316 | { { echo "$as_me:$LINENO: error: *** zlib too old - check config.log *** |
9446 | Your reported zlib version has known security problems. It's possible your | 11317 | Your reported zlib version has known security problems. It's possible your |
@@ -9463,11 +11334,13 @@ echo "$as_me: WARNING: zlib version may have security problems" >&2;} | |||
9463 | fi | 11334 | fi |
9464 | 11335 | ||
9465 | fi | 11336 | fi |
9466 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 11337 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
9467 | fi | 11338 | fi |
9468 | 11339 | ||
9469 | echo "$as_me:$LINENO: checking for strcasecmp" >&5 | 11340 | |
9470 | echo $ECHO_N "checking for strcasecmp... $ECHO_C" >&6 | 11341 | |
11342 | { echo "$as_me:$LINENO: checking for strcasecmp" >&5 | ||
11343 | echo $ECHO_N "checking for strcasecmp... $ECHO_C" >&6; } | ||
9471 | if test "${ac_cv_func_strcasecmp+set}" = set; then | 11344 | if test "${ac_cv_func_strcasecmp+set}" = set; then |
9472 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11345 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9473 | else | 11346 | else |
@@ -9494,52 +11367,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
9494 | 11367 | ||
9495 | #undef strcasecmp | 11368 | #undef strcasecmp |
9496 | 11369 | ||
9497 | /* Override any gcc2 internal prototype to avoid an error. */ | 11370 | /* Override any GCC internal prototype to avoid an error. |
11371 | Use char because int might match the return type of a GCC | ||
11372 | builtin and then its argument prototype would still apply. */ | ||
9498 | #ifdef __cplusplus | 11373 | #ifdef __cplusplus |
9499 | extern "C" | 11374 | extern "C" |
9500 | { | ||
9501 | #endif | 11375 | #endif |
9502 | /* We use char because int might match the return type of a gcc2 | ||
9503 | builtin and then its argument prototype would still apply. */ | ||
9504 | char strcasecmp (); | 11376 | char strcasecmp (); |
9505 | /* The GNU C library defines this for functions which it implements | 11377 | /* The GNU C library defines this for functions which it implements |
9506 | to always fail with ENOSYS. Some functions are actually named | 11378 | to always fail with ENOSYS. Some functions are actually named |
9507 | something starting with __ and the normal name is an alias. */ | 11379 | something starting with __ and the normal name is an alias. */ |
9508 | #if defined (__stub_strcasecmp) || defined (__stub___strcasecmp) | 11380 | #if defined __stub_strcasecmp || defined __stub___strcasecmp |
9509 | choke me | 11381 | choke me |
9510 | #else | ||
9511 | char (*f) () = strcasecmp; | ||
9512 | #endif | ||
9513 | #ifdef __cplusplus | ||
9514 | } | ||
9515 | #endif | 11382 | #endif |
9516 | 11383 | ||
9517 | int | 11384 | int |
9518 | main () | 11385 | main () |
9519 | { | 11386 | { |
9520 | return f != strcasecmp; | 11387 | return strcasecmp (); |
9521 | ; | 11388 | ; |
9522 | return 0; | 11389 | return 0; |
9523 | } | 11390 | } |
9524 | _ACEOF | 11391 | _ACEOF |
9525 | rm -f conftest.$ac_objext conftest$ac_exeext | 11392 | rm -f conftest.$ac_objext conftest$ac_exeext |
9526 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11393 | if { (ac_try="$ac_link" |
9527 | (eval $ac_link) 2>conftest.er1 | 11394 | case "(($ac_try" in |
11395 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11396 | *) ac_try_echo=$ac_try;; | ||
11397 | esac | ||
11398 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11399 | (eval "$ac_link") 2>conftest.er1 | ||
9528 | ac_status=$? | 11400 | ac_status=$? |
9529 | grep -v '^ *+' conftest.er1 >conftest.err | 11401 | grep -v '^ *+' conftest.er1 >conftest.err |
9530 | rm -f conftest.er1 | 11402 | rm -f conftest.er1 |
9531 | cat conftest.err >&5 | 11403 | cat conftest.err >&5 |
9532 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11404 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9533 | (exit $ac_status); } && | 11405 | (exit $ac_status); } && |
9534 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11406 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9535 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11407 | { (case "(($ac_try" in |
9536 | (eval $ac_try) 2>&5 | 11408 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11409 | *) ac_try_echo=$ac_try;; | ||
11410 | esac | ||
11411 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11412 | (eval "$ac_try") 2>&5 | ||
9537 | ac_status=$? | 11413 | ac_status=$? |
9538 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11414 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9539 | (exit $ac_status); }; } && | 11415 | (exit $ac_status); }; } && |
9540 | { ac_try='test -s conftest$ac_exeext' | 11416 | { ac_try='test -s conftest$ac_exeext' |
9541 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11417 | { (case "(($ac_try" in |
9542 | (eval $ac_try) 2>&5 | 11418 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11419 | *) ac_try_echo=$ac_try;; | ||
11420 | esac | ||
11421 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11422 | (eval "$ac_try") 2>&5 | ||
9543 | ac_status=$? | 11423 | ac_status=$? |
9544 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11424 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9545 | (exit $ac_status); }; }; then | 11425 | (exit $ac_status); }; }; then |
@@ -9548,18 +11428,19 @@ else | |||
9548 | echo "$as_me: failed program was:" >&5 | 11428 | echo "$as_me: failed program was:" >&5 |
9549 | sed 's/^/| /' conftest.$ac_ext >&5 | 11429 | sed 's/^/| /' conftest.$ac_ext >&5 |
9550 | 11430 | ||
9551 | ac_cv_func_strcasecmp=no | 11431 | ac_cv_func_strcasecmp=no |
9552 | fi | 11432 | fi |
9553 | rm -f conftest.err conftest.$ac_objext \ | 11433 | |
11434 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
9554 | conftest$ac_exeext conftest.$ac_ext | 11435 | conftest$ac_exeext conftest.$ac_ext |
9555 | fi | 11436 | fi |
9556 | echo "$as_me:$LINENO: result: $ac_cv_func_strcasecmp" >&5 | 11437 | { echo "$as_me:$LINENO: result: $ac_cv_func_strcasecmp" >&5 |
9557 | echo "${ECHO_T}$ac_cv_func_strcasecmp" >&6 | 11438 | echo "${ECHO_T}$ac_cv_func_strcasecmp" >&6; } |
9558 | if test $ac_cv_func_strcasecmp = yes; then | 11439 | if test $ac_cv_func_strcasecmp = yes; then |
9559 | : | 11440 | : |
9560 | else | 11441 | else |
9561 | echo "$as_me:$LINENO: checking for strcasecmp in -lresolv" >&5 | 11442 | { echo "$as_me:$LINENO: checking for strcasecmp in -lresolv" >&5 |
9562 | echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 | 11443 | echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6; } |
9563 | if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then | 11444 | if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then |
9564 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11445 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9565 | else | 11446 | else |
@@ -9572,39 +11453,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
9572 | cat >>conftest.$ac_ext <<_ACEOF | 11453 | cat >>conftest.$ac_ext <<_ACEOF |
9573 | /* end confdefs.h. */ | 11454 | /* end confdefs.h. */ |
9574 | 11455 | ||
9575 | /* Override any gcc2 internal prototype to avoid an error. */ | 11456 | /* Override any GCC internal prototype to avoid an error. |
11457 | Use char because int might match the return type of a GCC | ||
11458 | builtin and then its argument prototype would still apply. */ | ||
9576 | #ifdef __cplusplus | 11459 | #ifdef __cplusplus |
9577 | extern "C" | 11460 | extern "C" |
9578 | #endif | 11461 | #endif |
9579 | /* We use char because int might match the return type of a gcc2 | ||
9580 | builtin and then its argument prototype would still apply. */ | ||
9581 | char strcasecmp (); | 11462 | char strcasecmp (); |
9582 | int | 11463 | int |
9583 | main () | 11464 | main () |
9584 | { | 11465 | { |
9585 | strcasecmp (); | 11466 | return strcasecmp (); |
9586 | ; | 11467 | ; |
9587 | return 0; | 11468 | return 0; |
9588 | } | 11469 | } |
9589 | _ACEOF | 11470 | _ACEOF |
9590 | rm -f conftest.$ac_objext conftest$ac_exeext | 11471 | rm -f conftest.$ac_objext conftest$ac_exeext |
9591 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11472 | if { (ac_try="$ac_link" |
9592 | (eval $ac_link) 2>conftest.er1 | 11473 | case "(($ac_try" in |
11474 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11475 | *) ac_try_echo=$ac_try;; | ||
11476 | esac | ||
11477 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11478 | (eval "$ac_link") 2>conftest.er1 | ||
9593 | ac_status=$? | 11479 | ac_status=$? |
9594 | grep -v '^ *+' conftest.er1 >conftest.err | 11480 | grep -v '^ *+' conftest.er1 >conftest.err |
9595 | rm -f conftest.er1 | 11481 | rm -f conftest.er1 |
9596 | cat conftest.err >&5 | 11482 | cat conftest.err >&5 |
9597 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11483 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9598 | (exit $ac_status); } && | 11484 | (exit $ac_status); } && |
9599 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11485 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9600 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11486 | { (case "(($ac_try" in |
9601 | (eval $ac_try) 2>&5 | 11487 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11488 | *) ac_try_echo=$ac_try;; | ||
11489 | esac | ||
11490 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11491 | (eval "$ac_try") 2>&5 | ||
9602 | ac_status=$? | 11492 | ac_status=$? |
9603 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11493 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9604 | (exit $ac_status); }; } && | 11494 | (exit $ac_status); }; } && |
9605 | { ac_try='test -s conftest$ac_exeext' | 11495 | { ac_try='test -s conftest$ac_exeext' |
9606 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11496 | { (case "(($ac_try" in |
9607 | (eval $ac_try) 2>&5 | 11497 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11498 | *) ac_try_echo=$ac_try;; | ||
11499 | esac | ||
11500 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11501 | (eval "$ac_try") 2>&5 | ||
9608 | ac_status=$? | 11502 | ac_status=$? |
9609 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11503 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9610 | (exit $ac_status); }; }; then | 11504 | (exit $ac_status); }; }; then |
@@ -9613,14 +11507,15 @@ else | |||
9613 | echo "$as_me: failed program was:" >&5 | 11507 | echo "$as_me: failed program was:" >&5 |
9614 | sed 's/^/| /' conftest.$ac_ext >&5 | 11508 | sed 's/^/| /' conftest.$ac_ext >&5 |
9615 | 11509 | ||
9616 | ac_cv_lib_resolv_strcasecmp=no | 11510 | ac_cv_lib_resolv_strcasecmp=no |
9617 | fi | 11511 | fi |
9618 | rm -f conftest.err conftest.$ac_objext \ | 11512 | |
11513 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
9619 | conftest$ac_exeext conftest.$ac_ext | 11514 | conftest$ac_exeext conftest.$ac_ext |
9620 | LIBS=$ac_check_lib_save_LIBS | 11515 | LIBS=$ac_check_lib_save_LIBS |
9621 | fi | 11516 | fi |
9622 | echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_strcasecmp" >&5 | 11517 | { echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_strcasecmp" >&5 |
9623 | echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 | 11518 | echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6; } |
9624 | if test $ac_cv_lib_resolv_strcasecmp = yes; then | 11519 | if test $ac_cv_lib_resolv_strcasecmp = yes; then |
9625 | LIBS="$LIBS -lresolv" | 11520 | LIBS="$LIBS -lresolv" |
9626 | fi | 11521 | fi |
@@ -9632,9 +11527,9 @@ fi | |||
9632 | for ac_func in utimes | 11527 | for ac_func in utimes |
9633 | do | 11528 | do |
9634 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 11529 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
9635 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 11530 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
9636 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 11531 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
9637 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 11532 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
9638 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11533 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9639 | else | 11534 | else |
9640 | cat >conftest.$ac_ext <<_ACEOF | 11535 | cat >conftest.$ac_ext <<_ACEOF |
@@ -9660,52 +11555,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
9660 | 11555 | ||
9661 | #undef $ac_func | 11556 | #undef $ac_func |
9662 | 11557 | ||
9663 | /* Override any gcc2 internal prototype to avoid an error. */ | 11558 | /* Override any GCC internal prototype to avoid an error. |
11559 | Use char because int might match the return type of a GCC | ||
11560 | builtin and then its argument prototype would still apply. */ | ||
9664 | #ifdef __cplusplus | 11561 | #ifdef __cplusplus |
9665 | extern "C" | 11562 | extern "C" |
9666 | { | ||
9667 | #endif | 11563 | #endif |
9668 | /* We use char because int might match the return type of a gcc2 | ||
9669 | builtin and then its argument prototype would still apply. */ | ||
9670 | char $ac_func (); | 11564 | char $ac_func (); |
9671 | /* The GNU C library defines this for functions which it implements | 11565 | /* The GNU C library defines this for functions which it implements |
9672 | to always fail with ENOSYS. Some functions are actually named | 11566 | to always fail with ENOSYS. Some functions are actually named |
9673 | something starting with __ and the normal name is an alias. */ | 11567 | something starting with __ and the normal name is an alias. */ |
9674 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 11568 | #if defined __stub_$ac_func || defined __stub___$ac_func |
9675 | choke me | 11569 | choke me |
9676 | #else | ||
9677 | char (*f) () = $ac_func; | ||
9678 | #endif | ||
9679 | #ifdef __cplusplus | ||
9680 | } | ||
9681 | #endif | 11570 | #endif |
9682 | 11571 | ||
9683 | int | 11572 | int |
9684 | main () | 11573 | main () |
9685 | { | 11574 | { |
9686 | return f != $ac_func; | 11575 | return $ac_func (); |
9687 | ; | 11576 | ; |
9688 | return 0; | 11577 | return 0; |
9689 | } | 11578 | } |
9690 | _ACEOF | 11579 | _ACEOF |
9691 | rm -f conftest.$ac_objext conftest$ac_exeext | 11580 | rm -f conftest.$ac_objext conftest$ac_exeext |
9692 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11581 | if { (ac_try="$ac_link" |
9693 | (eval $ac_link) 2>conftest.er1 | 11582 | case "(($ac_try" in |
11583 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11584 | *) ac_try_echo=$ac_try;; | ||
11585 | esac | ||
11586 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11587 | (eval "$ac_link") 2>conftest.er1 | ||
9694 | ac_status=$? | 11588 | ac_status=$? |
9695 | grep -v '^ *+' conftest.er1 >conftest.err | 11589 | grep -v '^ *+' conftest.er1 >conftest.err |
9696 | rm -f conftest.er1 | 11590 | rm -f conftest.er1 |
9697 | cat conftest.err >&5 | 11591 | cat conftest.err >&5 |
9698 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11592 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9699 | (exit $ac_status); } && | 11593 | (exit $ac_status); } && |
9700 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11594 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9701 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11595 | { (case "(($ac_try" in |
9702 | (eval $ac_try) 2>&5 | 11596 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11597 | *) ac_try_echo=$ac_try;; | ||
11598 | esac | ||
11599 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11600 | (eval "$ac_try") 2>&5 | ||
9703 | ac_status=$? | 11601 | ac_status=$? |
9704 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11602 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9705 | (exit $ac_status); }; } && | 11603 | (exit $ac_status); }; } && |
9706 | { ac_try='test -s conftest$ac_exeext' | 11604 | { ac_try='test -s conftest$ac_exeext' |
9707 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11605 | { (case "(($ac_try" in |
9708 | (eval $ac_try) 2>&5 | 11606 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11607 | *) ac_try_echo=$ac_try;; | ||
11608 | esac | ||
11609 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11610 | (eval "$ac_try") 2>&5 | ||
9709 | ac_status=$? | 11611 | ac_status=$? |
9710 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11612 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9711 | (exit $ac_status); }; }; then | 11613 | (exit $ac_status); }; }; then |
@@ -9714,21 +11616,23 @@ else | |||
9714 | echo "$as_me: failed program was:" >&5 | 11616 | echo "$as_me: failed program was:" >&5 |
9715 | sed 's/^/| /' conftest.$ac_ext >&5 | 11617 | sed 's/^/| /' conftest.$ac_ext >&5 |
9716 | 11618 | ||
9717 | eval "$as_ac_var=no" | 11619 | eval "$as_ac_var=no" |
9718 | fi | 11620 | fi |
9719 | rm -f conftest.err conftest.$ac_objext \ | 11621 | |
11622 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
9720 | conftest$ac_exeext conftest.$ac_ext | 11623 | conftest$ac_exeext conftest.$ac_ext |
9721 | fi | 11624 | fi |
9722 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 11625 | ac_res=`eval echo '${'$as_ac_var'}'` |
9723 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 11626 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
11627 | echo "${ECHO_T}$ac_res" >&6; } | ||
9724 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 11628 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
9725 | cat >>confdefs.h <<_ACEOF | 11629 | cat >>confdefs.h <<_ACEOF |
9726 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 11630 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
9727 | _ACEOF | 11631 | _ACEOF |
9728 | 11632 | ||
9729 | else | 11633 | else |
9730 | echo "$as_me:$LINENO: checking for utimes in -lc89" >&5 | 11634 | { echo "$as_me:$LINENO: checking for utimes in -lc89" >&5 |
9731 | echo $ECHO_N "checking for utimes in -lc89... $ECHO_C" >&6 | 11635 | echo $ECHO_N "checking for utimes in -lc89... $ECHO_C" >&6; } |
9732 | if test "${ac_cv_lib_c89_utimes+set}" = set; then | 11636 | if test "${ac_cv_lib_c89_utimes+set}" = set; then |
9733 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11637 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9734 | else | 11638 | else |
@@ -9741,39 +11645,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
9741 | cat >>conftest.$ac_ext <<_ACEOF | 11645 | cat >>conftest.$ac_ext <<_ACEOF |
9742 | /* end confdefs.h. */ | 11646 | /* end confdefs.h. */ |
9743 | 11647 | ||
9744 | /* Override any gcc2 internal prototype to avoid an error. */ | 11648 | /* Override any GCC internal prototype to avoid an error. |
11649 | Use char because int might match the return type of a GCC | ||
11650 | builtin and then its argument prototype would still apply. */ | ||
9745 | #ifdef __cplusplus | 11651 | #ifdef __cplusplus |
9746 | extern "C" | 11652 | extern "C" |
9747 | #endif | 11653 | #endif |
9748 | /* We use char because int might match the return type of a gcc2 | ||
9749 | builtin and then its argument prototype would still apply. */ | ||
9750 | char utimes (); | 11654 | char utimes (); |
9751 | int | 11655 | int |
9752 | main () | 11656 | main () |
9753 | { | 11657 | { |
9754 | utimes (); | 11658 | return utimes (); |
9755 | ; | 11659 | ; |
9756 | return 0; | 11660 | return 0; |
9757 | } | 11661 | } |
9758 | _ACEOF | 11662 | _ACEOF |
9759 | rm -f conftest.$ac_objext conftest$ac_exeext | 11663 | rm -f conftest.$ac_objext conftest$ac_exeext |
9760 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11664 | if { (ac_try="$ac_link" |
9761 | (eval $ac_link) 2>conftest.er1 | 11665 | case "(($ac_try" in |
11666 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11667 | *) ac_try_echo=$ac_try;; | ||
11668 | esac | ||
11669 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11670 | (eval "$ac_link") 2>conftest.er1 | ||
9762 | ac_status=$? | 11671 | ac_status=$? |
9763 | grep -v '^ *+' conftest.er1 >conftest.err | 11672 | grep -v '^ *+' conftest.er1 >conftest.err |
9764 | rm -f conftest.er1 | 11673 | rm -f conftest.er1 |
9765 | cat conftest.err >&5 | 11674 | cat conftest.err >&5 |
9766 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11675 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9767 | (exit $ac_status); } && | 11676 | (exit $ac_status); } && |
9768 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11677 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9769 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11678 | { (case "(($ac_try" in |
9770 | (eval $ac_try) 2>&5 | 11679 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11680 | *) ac_try_echo=$ac_try;; | ||
11681 | esac | ||
11682 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11683 | (eval "$ac_try") 2>&5 | ||
9771 | ac_status=$? | 11684 | ac_status=$? |
9772 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11685 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9773 | (exit $ac_status); }; } && | 11686 | (exit $ac_status); }; } && |
9774 | { ac_try='test -s conftest$ac_exeext' | 11687 | { ac_try='test -s conftest$ac_exeext' |
9775 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11688 | { (case "(($ac_try" in |
9776 | (eval $ac_try) 2>&5 | 11689 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11690 | *) ac_try_echo=$ac_try;; | ||
11691 | esac | ||
11692 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11693 | (eval "$ac_try") 2>&5 | ||
9777 | ac_status=$? | 11694 | ac_status=$? |
9778 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11695 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9779 | (exit $ac_status); }; }; then | 11696 | (exit $ac_status); }; }; then |
@@ -9782,14 +11699,15 @@ else | |||
9782 | echo "$as_me: failed program was:" >&5 | 11699 | echo "$as_me: failed program was:" >&5 |
9783 | sed 's/^/| /' conftest.$ac_ext >&5 | 11700 | sed 's/^/| /' conftest.$ac_ext >&5 |
9784 | 11701 | ||
9785 | ac_cv_lib_c89_utimes=no | 11702 | ac_cv_lib_c89_utimes=no |
9786 | fi | 11703 | fi |
9787 | rm -f conftest.err conftest.$ac_objext \ | 11704 | |
11705 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
9788 | conftest$ac_exeext conftest.$ac_ext | 11706 | conftest$ac_exeext conftest.$ac_ext |
9789 | LIBS=$ac_check_lib_save_LIBS | 11707 | LIBS=$ac_check_lib_save_LIBS |
9790 | fi | 11708 | fi |
9791 | echo "$as_me:$LINENO: result: $ac_cv_lib_c89_utimes" >&5 | 11709 | { echo "$as_me:$LINENO: result: $ac_cv_lib_c89_utimes" >&5 |
9792 | echo "${ECHO_T}$ac_cv_lib_c89_utimes" >&6 | 11710 | echo "${ECHO_T}$ac_cv_lib_c89_utimes" >&6; } |
9793 | if test $ac_cv_lib_c89_utimes = yes; then | 11711 | if test $ac_cv_lib_c89_utimes = yes; then |
9794 | cat >>confdefs.h <<\_ACEOF | 11712 | cat >>confdefs.h <<\_ACEOF |
9795 | #define HAVE_UTIMES 1 | 11713 | #define HAVE_UTIMES 1 |
@@ -9807,18 +11725,19 @@ done | |||
9807 | for ac_header in libutil.h | 11725 | for ac_header in libutil.h |
9808 | do | 11726 | do |
9809 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 11727 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
9810 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 11728 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
9811 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 11729 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
9812 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 11730 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
9813 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 11731 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
9814 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11732 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9815 | fi | 11733 | fi |
9816 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 11734 | ac_res=`eval echo '${'$as_ac_Header'}'` |
9817 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 11735 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
11736 | echo "${ECHO_T}$ac_res" >&6; } | ||
9818 | else | 11737 | else |
9819 | # Is the header compilable? | 11738 | # Is the header compilable? |
9820 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 11739 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
9821 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 11740 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
9822 | cat >conftest.$ac_ext <<_ACEOF | 11741 | cat >conftest.$ac_ext <<_ACEOF |
9823 | /* confdefs.h. */ | 11742 | /* confdefs.h. */ |
9824 | _ACEOF | 11743 | _ACEOF |
@@ -9829,23 +11748,36 @@ $ac_includes_default | |||
9829 | #include <$ac_header> | 11748 | #include <$ac_header> |
9830 | _ACEOF | 11749 | _ACEOF |
9831 | rm -f conftest.$ac_objext | 11750 | rm -f conftest.$ac_objext |
9832 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 11751 | if { (ac_try="$ac_compile" |
9833 | (eval $ac_compile) 2>conftest.er1 | 11752 | case "(($ac_try" in |
11753 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11754 | *) ac_try_echo=$ac_try;; | ||
11755 | esac | ||
11756 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11757 | (eval "$ac_compile") 2>conftest.er1 | ||
9834 | ac_status=$? | 11758 | ac_status=$? |
9835 | grep -v '^ *+' conftest.er1 >conftest.err | 11759 | grep -v '^ *+' conftest.er1 >conftest.err |
9836 | rm -f conftest.er1 | 11760 | rm -f conftest.er1 |
9837 | cat conftest.err >&5 | 11761 | cat conftest.err >&5 |
9838 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11762 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9839 | (exit $ac_status); } && | 11763 | (exit $ac_status); } && |
9840 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11764 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9841 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11765 | { (case "(($ac_try" in |
9842 | (eval $ac_try) 2>&5 | 11766 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11767 | *) ac_try_echo=$ac_try;; | ||
11768 | esac | ||
11769 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11770 | (eval "$ac_try") 2>&5 | ||
9843 | ac_status=$? | 11771 | ac_status=$? |
9844 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11772 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9845 | (exit $ac_status); }; } && | 11773 | (exit $ac_status); }; } && |
9846 | { ac_try='test -s conftest.$ac_objext' | 11774 | { ac_try='test -s conftest.$ac_objext' |
9847 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11775 | { (case "(($ac_try" in |
9848 | (eval $ac_try) 2>&5 | 11776 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11777 | *) ac_try_echo=$ac_try;; | ||
11778 | esac | ||
11779 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11780 | (eval "$ac_try") 2>&5 | ||
9849 | ac_status=$? | 11781 | ac_status=$? |
9850 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11782 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9851 | (exit $ac_status); }; }; then | 11783 | (exit $ac_status); }; }; then |
@@ -9854,15 +11786,16 @@ else | |||
9854 | echo "$as_me: failed program was:" >&5 | 11786 | echo "$as_me: failed program was:" >&5 |
9855 | sed 's/^/| /' conftest.$ac_ext >&5 | 11787 | sed 's/^/| /' conftest.$ac_ext >&5 |
9856 | 11788 | ||
9857 | ac_header_compiler=no | 11789 | ac_header_compiler=no |
9858 | fi | 11790 | fi |
9859 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 11791 | |
9860 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 11792 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
9861 | echo "${ECHO_T}$ac_header_compiler" >&6 | 11793 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
11794 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
9862 | 11795 | ||
9863 | # Is the header present? | 11796 | # Is the header present? |
9864 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 11797 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
9865 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 11798 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
9866 | cat >conftest.$ac_ext <<_ACEOF | 11799 | cat >conftest.$ac_ext <<_ACEOF |
9867 | /* confdefs.h. */ | 11800 | /* confdefs.h. */ |
9868 | _ACEOF | 11801 | _ACEOF |
@@ -9871,8 +11804,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
9871 | /* end confdefs.h. */ | 11804 | /* end confdefs.h. */ |
9872 | #include <$ac_header> | 11805 | #include <$ac_header> |
9873 | _ACEOF | 11806 | _ACEOF |
9874 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 11807 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
9875 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 11808 | case "(($ac_try" in |
11809 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11810 | *) ac_try_echo=$ac_try;; | ||
11811 | esac | ||
11812 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11813 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
9876 | ac_status=$? | 11814 | ac_status=$? |
9877 | grep -v '^ *+' conftest.er1 >conftest.err | 11815 | grep -v '^ *+' conftest.er1 >conftest.err |
9878 | rm -f conftest.er1 | 11816 | rm -f conftest.er1 |
@@ -9896,9 +11834,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
9896 | 11834 | ||
9897 | ac_header_preproc=no | 11835 | ac_header_preproc=no |
9898 | fi | 11836 | fi |
11837 | |||
9899 | rm -f conftest.err conftest.$ac_ext | 11838 | rm -f conftest.err conftest.$ac_ext |
9900 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 11839 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
9901 | echo "${ECHO_T}$ac_header_preproc" >&6 | 11840 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
9902 | 11841 | ||
9903 | # So? What about this header? | 11842 | # So? What about this header? |
9904 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 11843 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -9922,25 +11861,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
9922 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 11861 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
9923 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 11862 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
9924 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 11863 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
9925 | ( | 11864 | ( cat <<\_ASBOX |
9926 | cat <<\_ASBOX | ||
9927 | ## ------------------------------------------- ## | 11865 | ## ------------------------------------------- ## |
9928 | ## Report this to openssh-unix-dev@mindrot.org ## | 11866 | ## Report this to openssh-unix-dev@mindrot.org ## |
9929 | ## ------------------------------------------- ## | 11867 | ## ------------------------------------------- ## |
9930 | _ASBOX | 11868 | _ASBOX |
9931 | ) | | 11869 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
9932 | sed "s/^/$as_me: WARNING: /" >&2 | ||
9933 | ;; | 11870 | ;; |
9934 | esac | 11871 | esac |
9935 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 11872 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
9936 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 11873 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
9937 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 11874 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
9938 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11875 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9939 | else | 11876 | else |
9940 | eval "$as_ac_Header=\$ac_header_preproc" | 11877 | eval "$as_ac_Header=\$ac_header_preproc" |
9941 | fi | 11878 | fi |
9942 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 11879 | ac_res=`eval echo '${'$as_ac_Header'}'` |
9943 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 11880 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
11881 | echo "${ECHO_T}$ac_res" >&6; } | ||
9944 | 11882 | ||
9945 | fi | 11883 | fi |
9946 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 11884 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -9952,13 +11890,12 @@ fi | |||
9952 | 11890 | ||
9953 | done | 11891 | done |
9954 | 11892 | ||
9955 | echo "$as_me:$LINENO: checking for library containing login" >&5 | 11893 | { echo "$as_me:$LINENO: checking for library containing login" >&5 |
9956 | echo $ECHO_N "checking for library containing login... $ECHO_C" >&6 | 11894 | echo $ECHO_N "checking for library containing login... $ECHO_C" >&6; } |
9957 | if test "${ac_cv_search_login+set}" = set; then | 11895 | if test "${ac_cv_search_login+set}" = set; then |
9958 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 11896 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
9959 | else | 11897 | else |
9960 | ac_func_search_save_LIBS=$LIBS | 11898 | ac_func_search_save_LIBS=$LIBS |
9961 | ac_cv_search_login=no | ||
9962 | cat >conftest.$ac_ext <<_ACEOF | 11899 | cat >conftest.$ac_ext <<_ACEOF |
9963 | /* confdefs.h. */ | 11900 | /* confdefs.h. */ |
9964 | _ACEOF | 11901 | _ACEOF |
@@ -9966,113 +11903,89 @@ cat confdefs.h >>conftest.$ac_ext | |||
9966 | cat >>conftest.$ac_ext <<_ACEOF | 11903 | cat >>conftest.$ac_ext <<_ACEOF |
9967 | /* end confdefs.h. */ | 11904 | /* end confdefs.h. */ |
9968 | 11905 | ||
9969 | /* Override any gcc2 internal prototype to avoid an error. */ | 11906 | /* Override any GCC internal prototype to avoid an error. |
11907 | Use char because int might match the return type of a GCC | ||
11908 | builtin and then its argument prototype would still apply. */ | ||
9970 | #ifdef __cplusplus | 11909 | #ifdef __cplusplus |
9971 | extern "C" | 11910 | extern "C" |
9972 | #endif | 11911 | #endif |
9973 | /* We use char because int might match the return type of a gcc2 | ||
9974 | builtin and then its argument prototype would still apply. */ | ||
9975 | char login (); | 11912 | char login (); |
9976 | int | 11913 | int |
9977 | main () | 11914 | main () |
9978 | { | 11915 | { |
9979 | login (); | 11916 | return login (); |
9980 | ; | 11917 | ; |
9981 | return 0; | 11918 | return 0; |
9982 | } | 11919 | } |
9983 | _ACEOF | 11920 | _ACEOF |
9984 | rm -f conftest.$ac_objext conftest$ac_exeext | 11921 | for ac_lib in '' util bsd; do |
9985 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 11922 | if test -z "$ac_lib"; then |
9986 | (eval $ac_link) 2>conftest.er1 | 11923 | ac_res="none required" |
11924 | else | ||
11925 | ac_res=-l$ac_lib | ||
11926 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
11927 | fi | ||
11928 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
11929 | if { (ac_try="$ac_link" | ||
11930 | case "(($ac_try" in | ||
11931 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
11932 | *) ac_try_echo=$ac_try;; | ||
11933 | esac | ||
11934 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11935 | (eval "$ac_link") 2>conftest.er1 | ||
9987 | ac_status=$? | 11936 | ac_status=$? |
9988 | grep -v '^ *+' conftest.er1 >conftest.err | 11937 | grep -v '^ *+' conftest.er1 >conftest.err |
9989 | rm -f conftest.er1 | 11938 | rm -f conftest.er1 |
9990 | cat conftest.err >&5 | 11939 | cat conftest.err >&5 |
9991 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11940 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9992 | (exit $ac_status); } && | 11941 | (exit $ac_status); } && |
9993 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 11942 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9994 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11943 | { (case "(($ac_try" in |
9995 | (eval $ac_try) 2>&5 | 11944 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11945 | *) ac_try_echo=$ac_try;; | ||
11946 | esac | ||
11947 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11948 | (eval "$ac_try") 2>&5 | ||
9996 | ac_status=$? | 11949 | ac_status=$? |
9997 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11950 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9998 | (exit $ac_status); }; } && | 11951 | (exit $ac_status); }; } && |
9999 | { ac_try='test -s conftest$ac_exeext' | 11952 | { ac_try='test -s conftest$ac_exeext' |
10000 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11953 | { (case "(($ac_try" in |
10001 | (eval $ac_try) 2>&5 | 11954 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
11955 | *) ac_try_echo=$ac_try;; | ||
11956 | esac | ||
11957 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
11958 | (eval "$ac_try") 2>&5 | ||
10002 | ac_status=$? | 11959 | ac_status=$? |
10003 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11960 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10004 | (exit $ac_status); }; }; then | 11961 | (exit $ac_status); }; }; then |
10005 | ac_cv_search_login="none required" | 11962 | ac_cv_search_login=$ac_res |
10006 | else | 11963 | else |
10007 | echo "$as_me: failed program was:" >&5 | 11964 | echo "$as_me: failed program was:" >&5 |
10008 | sed 's/^/| /' conftest.$ac_ext >&5 | 11965 | sed 's/^/| /' conftest.$ac_ext >&5 |
10009 | 11966 | ||
10010 | fi | ||
10011 | rm -f conftest.err conftest.$ac_objext \ | ||
10012 | conftest$ac_exeext conftest.$ac_ext | ||
10013 | if test "$ac_cv_search_login" = no; then | ||
10014 | for ac_lib in util bsd; do | ||
10015 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
10016 | cat >conftest.$ac_ext <<_ACEOF | ||
10017 | /* confdefs.h. */ | ||
10018 | _ACEOF | ||
10019 | cat confdefs.h >>conftest.$ac_ext | ||
10020 | cat >>conftest.$ac_ext <<_ACEOF | ||
10021 | /* end confdefs.h. */ | ||
10022 | 11967 | ||
10023 | /* Override any gcc2 internal prototype to avoid an error. */ | 11968 | fi |
10024 | #ifdef __cplusplus | ||
10025 | extern "C" | ||
10026 | #endif | ||
10027 | /* We use char because int might match the return type of a gcc2 | ||
10028 | builtin and then its argument prototype would still apply. */ | ||
10029 | char login (); | ||
10030 | int | ||
10031 | main () | ||
10032 | { | ||
10033 | login (); | ||
10034 | ; | ||
10035 | return 0; | ||
10036 | } | ||
10037 | _ACEOF | ||
10038 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
10039 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
10040 | (eval $ac_link) 2>conftest.er1 | ||
10041 | ac_status=$? | ||
10042 | grep -v '^ *+' conftest.er1 >conftest.err | ||
10043 | rm -f conftest.er1 | ||
10044 | cat conftest.err >&5 | ||
10045 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
10046 | (exit $ac_status); } && | ||
10047 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
10048 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
10049 | (eval $ac_try) 2>&5 | ||
10050 | ac_status=$? | ||
10051 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
10052 | (exit $ac_status); }; } && | ||
10053 | { ac_try='test -s conftest$ac_exeext' | ||
10054 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
10055 | (eval $ac_try) 2>&5 | ||
10056 | ac_status=$? | ||
10057 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
10058 | (exit $ac_status); }; }; then | ||
10059 | ac_cv_search_login="-l$ac_lib" | ||
10060 | break | ||
10061 | else | ||
10062 | echo "$as_me: failed program was:" >&5 | ||
10063 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
10064 | 11969 | ||
11970 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
11971 | conftest$ac_exeext | ||
11972 | if test "${ac_cv_search_login+set}" = set; then | ||
11973 | break | ||
10065 | fi | 11974 | fi |
10066 | rm -f conftest.err conftest.$ac_objext \ | 11975 | done |
10067 | conftest$ac_exeext conftest.$ac_ext | 11976 | if test "${ac_cv_search_login+set}" = set; then |
10068 | done | 11977 | : |
11978 | else | ||
11979 | ac_cv_search_login=no | ||
10069 | fi | 11980 | fi |
11981 | rm conftest.$ac_ext | ||
10070 | LIBS=$ac_func_search_save_LIBS | 11982 | LIBS=$ac_func_search_save_LIBS |
10071 | fi | 11983 | fi |
10072 | echo "$as_me:$LINENO: result: $ac_cv_search_login" >&5 | 11984 | { echo "$as_me:$LINENO: result: $ac_cv_search_login" >&5 |
10073 | echo "${ECHO_T}$ac_cv_search_login" >&6 | 11985 | echo "${ECHO_T}$ac_cv_search_login" >&6; } |
10074 | if test "$ac_cv_search_login" != no; then | 11986 | ac_res=$ac_cv_search_login |
10075 | test "$ac_cv_search_login" = "none required" || LIBS="$ac_cv_search_login $LIBS" | 11987 | if test "$ac_res" != no; then |
11988 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
10076 | 11989 | ||
10077 | cat >>confdefs.h <<\_ACEOF | 11990 | cat >>confdefs.h <<\_ACEOF |
10078 | #define HAVE_LOGIN 1 | 11991 | #define HAVE_LOGIN 1 |
@@ -10086,9 +11999,9 @@ fi | |||
10086 | for ac_func in logout updwtmp logwtmp | 11999 | for ac_func in logout updwtmp logwtmp |
10087 | do | 12000 | do |
10088 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 12001 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
10089 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 12002 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
10090 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 12003 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
10091 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 12004 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
10092 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 12005 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
10093 | else | 12006 | else |
10094 | cat >conftest.$ac_ext <<_ACEOF | 12007 | cat >conftest.$ac_ext <<_ACEOF |
@@ -10114,52 +12027,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
10114 | 12027 | ||
10115 | #undef $ac_func | 12028 | #undef $ac_func |
10116 | 12029 | ||
10117 | /* Override any gcc2 internal prototype to avoid an error. */ | 12030 | /* Override any GCC internal prototype to avoid an error. |
12031 | Use char because int might match the return type of a GCC | ||
12032 | builtin and then its argument prototype would still apply. */ | ||
10118 | #ifdef __cplusplus | 12033 | #ifdef __cplusplus |
10119 | extern "C" | 12034 | extern "C" |
10120 | { | ||
10121 | #endif | 12035 | #endif |
10122 | /* We use char because int might match the return type of a gcc2 | ||
10123 | builtin and then its argument prototype would still apply. */ | ||
10124 | char $ac_func (); | 12036 | char $ac_func (); |
10125 | /* The GNU C library defines this for functions which it implements | 12037 | /* The GNU C library defines this for functions which it implements |
10126 | to always fail with ENOSYS. Some functions are actually named | 12038 | to always fail with ENOSYS. Some functions are actually named |
10127 | something starting with __ and the normal name is an alias. */ | 12039 | something starting with __ and the normal name is an alias. */ |
10128 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 12040 | #if defined __stub_$ac_func || defined __stub___$ac_func |
10129 | choke me | 12041 | choke me |
10130 | #else | ||
10131 | char (*f) () = $ac_func; | ||
10132 | #endif | ||
10133 | #ifdef __cplusplus | ||
10134 | } | ||
10135 | #endif | 12042 | #endif |
10136 | 12043 | ||
10137 | int | 12044 | int |
10138 | main () | 12045 | main () |
10139 | { | 12046 | { |
10140 | return f != $ac_func; | 12047 | return $ac_func (); |
10141 | ; | 12048 | ; |
10142 | return 0; | 12049 | return 0; |
10143 | } | 12050 | } |
10144 | _ACEOF | 12051 | _ACEOF |
10145 | rm -f conftest.$ac_objext conftest$ac_exeext | 12052 | rm -f conftest.$ac_objext conftest$ac_exeext |
10146 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12053 | if { (ac_try="$ac_link" |
10147 | (eval $ac_link) 2>conftest.er1 | 12054 | case "(($ac_try" in |
12055 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12056 | *) ac_try_echo=$ac_try;; | ||
12057 | esac | ||
12058 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12059 | (eval "$ac_link") 2>conftest.er1 | ||
10148 | ac_status=$? | 12060 | ac_status=$? |
10149 | grep -v '^ *+' conftest.er1 >conftest.err | 12061 | grep -v '^ *+' conftest.er1 >conftest.err |
10150 | rm -f conftest.er1 | 12062 | rm -f conftest.er1 |
10151 | cat conftest.err >&5 | 12063 | cat conftest.err >&5 |
10152 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12064 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10153 | (exit $ac_status); } && | 12065 | (exit $ac_status); } && |
10154 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12066 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10155 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12067 | { (case "(($ac_try" in |
10156 | (eval $ac_try) 2>&5 | 12068 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12069 | *) ac_try_echo=$ac_try;; | ||
12070 | esac | ||
12071 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12072 | (eval "$ac_try") 2>&5 | ||
10157 | ac_status=$? | 12073 | ac_status=$? |
10158 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12074 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10159 | (exit $ac_status); }; } && | 12075 | (exit $ac_status); }; } && |
10160 | { ac_try='test -s conftest$ac_exeext' | 12076 | { ac_try='test -s conftest$ac_exeext' |
10161 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12077 | { (case "(($ac_try" in |
10162 | (eval $ac_try) 2>&5 | 12078 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12079 | *) ac_try_echo=$ac_try;; | ||
12080 | esac | ||
12081 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12082 | (eval "$ac_try") 2>&5 | ||
10163 | ac_status=$? | 12083 | ac_status=$? |
10164 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12084 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10165 | (exit $ac_status); }; }; then | 12085 | (exit $ac_status); }; }; then |
@@ -10168,13 +12088,15 @@ else | |||
10168 | echo "$as_me: failed program was:" >&5 | 12088 | echo "$as_me: failed program was:" >&5 |
10169 | sed 's/^/| /' conftest.$ac_ext >&5 | 12089 | sed 's/^/| /' conftest.$ac_ext >&5 |
10170 | 12090 | ||
10171 | eval "$as_ac_var=no" | 12091 | eval "$as_ac_var=no" |
10172 | fi | 12092 | fi |
10173 | rm -f conftest.err conftest.$ac_objext \ | 12093 | |
12094 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10174 | conftest$ac_exeext conftest.$ac_ext | 12095 | conftest$ac_exeext conftest.$ac_ext |
10175 | fi | 12096 | fi |
10176 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 12097 | ac_res=`eval echo '${'$as_ac_var'}'` |
10177 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 12098 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
12099 | echo "${ECHO_T}$ac_res" >&6; } | ||
10178 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 12100 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
10179 | cat >>confdefs.h <<_ACEOF | 12101 | cat >>confdefs.h <<_ACEOF |
10180 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 12102 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -10188,9 +12110,9 @@ done | |||
10188 | for ac_func in strftime | 12110 | for ac_func in strftime |
10189 | do | 12111 | do |
10190 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 12112 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
10191 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 12113 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
10192 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 12114 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
10193 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 12115 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
10194 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 12116 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
10195 | else | 12117 | else |
10196 | cat >conftest.$ac_ext <<_ACEOF | 12118 | cat >conftest.$ac_ext <<_ACEOF |
@@ -10216,52 +12138,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
10216 | 12138 | ||
10217 | #undef $ac_func | 12139 | #undef $ac_func |
10218 | 12140 | ||
10219 | /* Override any gcc2 internal prototype to avoid an error. */ | 12141 | /* Override any GCC internal prototype to avoid an error. |
12142 | Use char because int might match the return type of a GCC | ||
12143 | builtin and then its argument prototype would still apply. */ | ||
10220 | #ifdef __cplusplus | 12144 | #ifdef __cplusplus |
10221 | extern "C" | 12145 | extern "C" |
10222 | { | ||
10223 | #endif | 12146 | #endif |
10224 | /* We use char because int might match the return type of a gcc2 | ||
10225 | builtin and then its argument prototype would still apply. */ | ||
10226 | char $ac_func (); | 12147 | char $ac_func (); |
10227 | /* The GNU C library defines this for functions which it implements | 12148 | /* The GNU C library defines this for functions which it implements |
10228 | to always fail with ENOSYS. Some functions are actually named | 12149 | to always fail with ENOSYS. Some functions are actually named |
10229 | something starting with __ and the normal name is an alias. */ | 12150 | something starting with __ and the normal name is an alias. */ |
10230 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 12151 | #if defined __stub_$ac_func || defined __stub___$ac_func |
10231 | choke me | 12152 | choke me |
10232 | #else | ||
10233 | char (*f) () = $ac_func; | ||
10234 | #endif | ||
10235 | #ifdef __cplusplus | ||
10236 | } | ||
10237 | #endif | 12153 | #endif |
10238 | 12154 | ||
10239 | int | 12155 | int |
10240 | main () | 12156 | main () |
10241 | { | 12157 | { |
10242 | return f != $ac_func; | 12158 | return $ac_func (); |
10243 | ; | 12159 | ; |
10244 | return 0; | 12160 | return 0; |
10245 | } | 12161 | } |
10246 | _ACEOF | 12162 | _ACEOF |
10247 | rm -f conftest.$ac_objext conftest$ac_exeext | 12163 | rm -f conftest.$ac_objext conftest$ac_exeext |
10248 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12164 | if { (ac_try="$ac_link" |
10249 | (eval $ac_link) 2>conftest.er1 | 12165 | case "(($ac_try" in |
12166 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12167 | *) ac_try_echo=$ac_try;; | ||
12168 | esac | ||
12169 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12170 | (eval "$ac_link") 2>conftest.er1 | ||
10250 | ac_status=$? | 12171 | ac_status=$? |
10251 | grep -v '^ *+' conftest.er1 >conftest.err | 12172 | grep -v '^ *+' conftest.er1 >conftest.err |
10252 | rm -f conftest.er1 | 12173 | rm -f conftest.er1 |
10253 | cat conftest.err >&5 | 12174 | cat conftest.err >&5 |
10254 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12175 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10255 | (exit $ac_status); } && | 12176 | (exit $ac_status); } && |
10256 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12177 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10257 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12178 | { (case "(($ac_try" in |
10258 | (eval $ac_try) 2>&5 | 12179 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12180 | *) ac_try_echo=$ac_try;; | ||
12181 | esac | ||
12182 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12183 | (eval "$ac_try") 2>&5 | ||
10259 | ac_status=$? | 12184 | ac_status=$? |
10260 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12185 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10261 | (exit $ac_status); }; } && | 12186 | (exit $ac_status); }; } && |
10262 | { ac_try='test -s conftest$ac_exeext' | 12187 | { ac_try='test -s conftest$ac_exeext' |
10263 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12188 | { (case "(($ac_try" in |
10264 | (eval $ac_try) 2>&5 | 12189 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12190 | *) ac_try_echo=$ac_try;; | ||
12191 | esac | ||
12192 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12193 | (eval "$ac_try") 2>&5 | ||
10265 | ac_status=$? | 12194 | ac_status=$? |
10266 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12195 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10267 | (exit $ac_status); }; }; then | 12196 | (exit $ac_status); }; }; then |
@@ -10270,13 +12199,15 @@ else | |||
10270 | echo "$as_me: failed program was:" >&5 | 12199 | echo "$as_me: failed program was:" >&5 |
10271 | sed 's/^/| /' conftest.$ac_ext >&5 | 12200 | sed 's/^/| /' conftest.$ac_ext >&5 |
10272 | 12201 | ||
10273 | eval "$as_ac_var=no" | 12202 | eval "$as_ac_var=no" |
10274 | fi | 12203 | fi |
10275 | rm -f conftest.err conftest.$ac_objext \ | 12204 | |
12205 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10276 | conftest$ac_exeext conftest.$ac_ext | 12206 | conftest$ac_exeext conftest.$ac_ext |
10277 | fi | 12207 | fi |
10278 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 12208 | ac_res=`eval echo '${'$as_ac_var'}'` |
10279 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 12209 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
12210 | echo "${ECHO_T}$ac_res" >&6; } | ||
10280 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 12211 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
10281 | cat >>confdefs.h <<_ACEOF | 12212 | cat >>confdefs.h <<_ACEOF |
10282 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 12213 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -10284,8 +12215,8 @@ _ACEOF | |||
10284 | 12215 | ||
10285 | else | 12216 | else |
10286 | # strftime is in -lintl on SCO UNIX. | 12217 | # strftime is in -lintl on SCO UNIX. |
10287 | echo "$as_me:$LINENO: checking for strftime in -lintl" >&5 | 12218 | { echo "$as_me:$LINENO: checking for strftime in -lintl" >&5 |
10288 | echo $ECHO_N "checking for strftime in -lintl... $ECHO_C" >&6 | 12219 | echo $ECHO_N "checking for strftime in -lintl... $ECHO_C" >&6; } |
10289 | if test "${ac_cv_lib_intl_strftime+set}" = set; then | 12220 | if test "${ac_cv_lib_intl_strftime+set}" = set; then |
10290 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 12221 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
10291 | else | 12222 | else |
@@ -10298,39 +12229,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
10298 | cat >>conftest.$ac_ext <<_ACEOF | 12229 | cat >>conftest.$ac_ext <<_ACEOF |
10299 | /* end confdefs.h. */ | 12230 | /* end confdefs.h. */ |
10300 | 12231 | ||
10301 | /* Override any gcc2 internal prototype to avoid an error. */ | 12232 | /* Override any GCC internal prototype to avoid an error. |
12233 | Use char because int might match the return type of a GCC | ||
12234 | builtin and then its argument prototype would still apply. */ | ||
10302 | #ifdef __cplusplus | 12235 | #ifdef __cplusplus |
10303 | extern "C" | 12236 | extern "C" |
10304 | #endif | 12237 | #endif |
10305 | /* We use char because int might match the return type of a gcc2 | ||
10306 | builtin and then its argument prototype would still apply. */ | ||
10307 | char strftime (); | 12238 | char strftime (); |
10308 | int | 12239 | int |
10309 | main () | 12240 | main () |
10310 | { | 12241 | { |
10311 | strftime (); | 12242 | return strftime (); |
10312 | ; | 12243 | ; |
10313 | return 0; | 12244 | return 0; |
10314 | } | 12245 | } |
10315 | _ACEOF | 12246 | _ACEOF |
10316 | rm -f conftest.$ac_objext conftest$ac_exeext | 12247 | rm -f conftest.$ac_objext conftest$ac_exeext |
10317 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12248 | if { (ac_try="$ac_link" |
10318 | (eval $ac_link) 2>conftest.er1 | 12249 | case "(($ac_try" in |
12250 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12251 | *) ac_try_echo=$ac_try;; | ||
12252 | esac | ||
12253 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12254 | (eval "$ac_link") 2>conftest.er1 | ||
10319 | ac_status=$? | 12255 | ac_status=$? |
10320 | grep -v '^ *+' conftest.er1 >conftest.err | 12256 | grep -v '^ *+' conftest.er1 >conftest.err |
10321 | rm -f conftest.er1 | 12257 | rm -f conftest.er1 |
10322 | cat conftest.err >&5 | 12258 | cat conftest.err >&5 |
10323 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12259 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10324 | (exit $ac_status); } && | 12260 | (exit $ac_status); } && |
10325 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12261 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10326 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12262 | { (case "(($ac_try" in |
10327 | (eval $ac_try) 2>&5 | 12263 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12264 | *) ac_try_echo=$ac_try;; | ||
12265 | esac | ||
12266 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12267 | (eval "$ac_try") 2>&5 | ||
10328 | ac_status=$? | 12268 | ac_status=$? |
10329 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12269 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10330 | (exit $ac_status); }; } && | 12270 | (exit $ac_status); }; } && |
10331 | { ac_try='test -s conftest$ac_exeext' | 12271 | { ac_try='test -s conftest$ac_exeext' |
10332 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12272 | { (case "(($ac_try" in |
10333 | (eval $ac_try) 2>&5 | 12273 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12274 | *) ac_try_echo=$ac_try;; | ||
12275 | esac | ||
12276 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12277 | (eval "$ac_try") 2>&5 | ||
10334 | ac_status=$? | 12278 | ac_status=$? |
10335 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12279 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10336 | (exit $ac_status); }; }; then | 12280 | (exit $ac_status); }; }; then |
@@ -10339,14 +12283,15 @@ else | |||
10339 | echo "$as_me: failed program was:" >&5 | 12283 | echo "$as_me: failed program was:" >&5 |
10340 | sed 's/^/| /' conftest.$ac_ext >&5 | 12284 | sed 's/^/| /' conftest.$ac_ext >&5 |
10341 | 12285 | ||
10342 | ac_cv_lib_intl_strftime=no | 12286 | ac_cv_lib_intl_strftime=no |
10343 | fi | 12287 | fi |
10344 | rm -f conftest.err conftest.$ac_objext \ | 12288 | |
12289 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10345 | conftest$ac_exeext conftest.$ac_ext | 12290 | conftest$ac_exeext conftest.$ac_ext |
10346 | LIBS=$ac_check_lib_save_LIBS | 12291 | LIBS=$ac_check_lib_save_LIBS |
10347 | fi | 12292 | fi |
10348 | echo "$as_me:$LINENO: result: $ac_cv_lib_intl_strftime" >&5 | 12293 | { echo "$as_me:$LINENO: result: $ac_cv_lib_intl_strftime" >&5 |
10349 | echo "${ECHO_T}$ac_cv_lib_intl_strftime" >&6 | 12294 | echo "${ECHO_T}$ac_cv_lib_intl_strftime" >&6; } |
10350 | if test $ac_cv_lib_intl_strftime = yes; then | 12295 | if test $ac_cv_lib_intl_strftime = yes; then |
10351 | cat >>confdefs.h <<\_ACEOF | 12296 | cat >>confdefs.h <<\_ACEOF |
10352 | #define HAVE_STRFTIME 1 | 12297 | #define HAVE_STRFTIME 1 |
@@ -10360,8 +12305,8 @@ done | |||
10360 | 12305 | ||
10361 | 12306 | ||
10362 | # Check for ALTDIRFUNC glob() extension | 12307 | # Check for ALTDIRFUNC glob() extension |
10363 | echo "$as_me:$LINENO: checking for GLOB_ALTDIRFUNC support" >&5 | 12308 | { echo "$as_me:$LINENO: checking for GLOB_ALTDIRFUNC support" >&5 |
10364 | echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6 | 12309 | echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6; } |
10365 | cat >conftest.$ac_ext <<_ACEOF | 12310 | cat >conftest.$ac_ext <<_ACEOF |
10366 | /* confdefs.h. */ | 12311 | /* confdefs.h. */ |
10367 | _ACEOF | 12312 | _ACEOF |
@@ -10383,13 +12328,13 @@ cat >>confdefs.h <<\_ACEOF | |||
10383 | #define GLOB_HAS_ALTDIRFUNC 1 | 12328 | #define GLOB_HAS_ALTDIRFUNC 1 |
10384 | _ACEOF | 12329 | _ACEOF |
10385 | 12330 | ||
10386 | echo "$as_me:$LINENO: result: yes" >&5 | 12331 | { echo "$as_me:$LINENO: result: yes" >&5 |
10387 | echo "${ECHO_T}yes" >&6 | 12332 | echo "${ECHO_T}yes" >&6; } |
10388 | 12333 | ||
10389 | else | 12334 | else |
10390 | 12335 | ||
10391 | echo "$as_me:$LINENO: result: no" >&5 | 12336 | { echo "$as_me:$LINENO: result: no" >&5 |
10392 | echo "${ECHO_T}no" >&6 | 12337 | echo "${ECHO_T}no" >&6; } |
10393 | 12338 | ||
10394 | 12339 | ||
10395 | fi | 12340 | fi |
@@ -10397,8 +12342,8 @@ rm -f conftest* | |||
10397 | 12342 | ||
10398 | 12343 | ||
10399 | # Check for g.gl_matchc glob() extension | 12344 | # Check for g.gl_matchc glob() extension |
10400 | echo "$as_me:$LINENO: checking for gl_matchc field in glob_t" >&5 | 12345 | { echo "$as_me:$LINENO: checking for gl_matchc field in glob_t" >&5 |
10401 | echo $ECHO_N "checking for gl_matchc field in glob_t... $ECHO_C" >&6 | 12346 | echo $ECHO_N "checking for gl_matchc field in glob_t... $ECHO_C" >&6; } |
10402 | cat >conftest.$ac_ext <<_ACEOF | 12347 | cat >conftest.$ac_ext <<_ACEOF |
10403 | /* confdefs.h. */ | 12348 | /* confdefs.h. */ |
10404 | _ACEOF | 12349 | _ACEOF |
@@ -10418,21 +12363,21 @@ cat >>confdefs.h <<\_ACEOF | |||
10418 | #define GLOB_HAS_GL_MATCHC 1 | 12363 | #define GLOB_HAS_GL_MATCHC 1 |
10419 | _ACEOF | 12364 | _ACEOF |
10420 | 12365 | ||
10421 | echo "$as_me:$LINENO: result: yes" >&5 | 12366 | { echo "$as_me:$LINENO: result: yes" >&5 |
10422 | echo "${ECHO_T}yes" >&6 | 12367 | echo "${ECHO_T}yes" >&6; } |
10423 | 12368 | ||
10424 | else | 12369 | else |
10425 | 12370 | ||
10426 | echo "$as_me:$LINENO: result: no" >&5 | 12371 | { echo "$as_me:$LINENO: result: no" >&5 |
10427 | echo "${ECHO_T}no" >&6 | 12372 | echo "${ECHO_T}no" >&6; } |
10428 | 12373 | ||
10429 | 12374 | ||
10430 | fi | 12375 | fi |
10431 | rm -f conftest* | 12376 | rm -f conftest* |
10432 | 12377 | ||
10433 | 12378 | ||
10434 | echo "$as_me:$LINENO: checking whether struct dirent allocates space for d_name" >&5 | 12379 | { echo "$as_me:$LINENO: checking whether struct dirent allocates space for d_name" >&5 |
10435 | echo $ECHO_N "checking whether struct dirent allocates space for d_name... $ECHO_C" >&6 | 12380 | echo $ECHO_N "checking whether struct dirent allocates space for d_name... $ECHO_C" >&6; } |
10436 | if test "$cross_compiling" = yes; then | 12381 | if test "$cross_compiling" = yes; then |
10437 | 12382 | ||
10438 | { echo "$as_me:$LINENO: WARNING: cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME" >&5 | 12383 | { echo "$as_me:$LINENO: WARNING: cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME" >&5 |
@@ -10457,18 +12402,27 @@ int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));} | |||
10457 | 12402 | ||
10458 | _ACEOF | 12403 | _ACEOF |
10459 | rm -f conftest$ac_exeext | 12404 | rm -f conftest$ac_exeext |
10460 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12405 | if { (ac_try="$ac_link" |
10461 | (eval $ac_link) 2>&5 | 12406 | case "(($ac_try" in |
12407 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12408 | *) ac_try_echo=$ac_try;; | ||
12409 | esac | ||
12410 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12411 | (eval "$ac_link") 2>&5 | ||
10462 | ac_status=$? | 12412 | ac_status=$? |
10463 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12413 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10464 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 12414 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
10465 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12415 | { (case "(($ac_try" in |
10466 | (eval $ac_try) 2>&5 | 12416 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12417 | *) ac_try_echo=$ac_try;; | ||
12418 | esac | ||
12419 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12420 | (eval "$ac_try") 2>&5 | ||
10467 | ac_status=$? | 12421 | ac_status=$? |
10468 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12422 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10469 | (exit $ac_status); }; }; then | 12423 | (exit $ac_status); }; }; then |
10470 | echo "$as_me:$LINENO: result: yes" >&5 | 12424 | { echo "$as_me:$LINENO: result: yes" >&5 |
10471 | echo "${ECHO_T}yes" >&6 | 12425 | echo "${ECHO_T}yes" >&6; } |
10472 | else | 12426 | else |
10473 | echo "$as_me: program exited with status $ac_status" >&5 | 12427 | echo "$as_me: program exited with status $ac_status" >&5 |
10474 | echo "$as_me: failed program was:" >&5 | 12428 | echo "$as_me: failed program was:" >&5 |
@@ -10476,8 +12430,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
10476 | 12430 | ||
10477 | ( exit $ac_status ) | 12431 | ( exit $ac_status ) |
10478 | 12432 | ||
10479 | echo "$as_me:$LINENO: result: no" >&5 | 12433 | { echo "$as_me:$LINENO: result: no" >&5 |
10480 | echo "${ECHO_T}no" >&6 | 12434 | echo "${ECHO_T}no" >&6; } |
10481 | 12435 | ||
10482 | cat >>confdefs.h <<\_ACEOF | 12436 | cat >>confdefs.h <<\_ACEOF |
10483 | #define BROKEN_ONE_BYTE_DIRENT_D_NAME 1 | 12437 | #define BROKEN_ONE_BYTE_DIRENT_D_NAME 1 |
@@ -10485,31 +12439,32 @@ _ACEOF | |||
10485 | 12439 | ||
10486 | 12440 | ||
10487 | fi | 12441 | fi |
10488 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 12442 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
10489 | fi | 12443 | fi |
10490 | 12444 | ||
10491 | echo "$as_me:$LINENO: checking for /proc/pid/fd directory" >&5 | 12445 | |
10492 | echo $ECHO_N "checking for /proc/pid/fd directory... $ECHO_C" >&6 | 12446 | |
12447 | { echo "$as_me:$LINENO: checking for /proc/pid/fd directory" >&5 | ||
12448 | echo $ECHO_N "checking for /proc/pid/fd directory... $ECHO_C" >&6; } | ||
10493 | if test -d "/proc/$$/fd" ; then | 12449 | if test -d "/proc/$$/fd" ; then |
10494 | 12450 | ||
10495 | cat >>confdefs.h <<\_ACEOF | 12451 | cat >>confdefs.h <<\_ACEOF |
10496 | #define HAVE_PROC_PID 1 | 12452 | #define HAVE_PROC_PID 1 |
10497 | _ACEOF | 12453 | _ACEOF |
10498 | 12454 | ||
10499 | echo "$as_me:$LINENO: result: yes" >&5 | 12455 | { echo "$as_me:$LINENO: result: yes" >&5 |
10500 | echo "${ECHO_T}yes" >&6 | 12456 | echo "${ECHO_T}yes" >&6; } |
10501 | else | 12457 | else |
10502 | echo "$as_me:$LINENO: result: no" >&5 | 12458 | { echo "$as_me:$LINENO: result: no" >&5 |
10503 | echo "${ECHO_T}no" >&6 | 12459 | echo "${ECHO_T}no" >&6; } |
10504 | fi | 12460 | fi |
10505 | 12461 | ||
10506 | # Check whether user wants S/Key support | 12462 | # Check whether user wants S/Key support |
10507 | SKEY_MSG="no" | 12463 | SKEY_MSG="no" |
10508 | 12464 | ||
10509 | # Check whether --with-skey or --without-skey was given. | 12465 | # Check whether --with-skey was given. |
10510 | if test "${with_skey+set}" = set; then | 12466 | if test "${with_skey+set}" = set; then |
10511 | withval="$with_skey" | 12467 | withval=$with_skey; |
10512 | |||
10513 | if test "x$withval" != "xno" ; then | 12468 | if test "x$withval" != "xno" ; then |
10514 | 12469 | ||
10515 | if test "x$withval" != "xyes" ; then | 12470 | if test "x$withval" != "xyes" ; then |
@@ -10525,8 +12480,8 @@ _ACEOF | |||
10525 | LIBS="-lskey $LIBS" | 12480 | LIBS="-lskey $LIBS" |
10526 | SKEY_MSG="yes" | 12481 | SKEY_MSG="yes" |
10527 | 12482 | ||
10528 | echo "$as_me:$LINENO: checking for s/key support" >&5 | 12483 | { echo "$as_me:$LINENO: checking for s/key support" >&5 |
10529 | echo $ECHO_N "checking for s/key support... $ECHO_C" >&6 | 12484 | echo $ECHO_N "checking for s/key support... $ECHO_C" >&6; } |
10530 | cat >conftest.$ac_ext <<_ACEOF | 12485 | cat >conftest.$ac_ext <<_ACEOF |
10531 | /* confdefs.h. */ | 12486 | /* confdefs.h. */ |
10532 | _ACEOF | 12487 | _ACEOF |
@@ -10540,44 +12495,58 @@ int main() { char *ff = skey_keyinfo(""); ff=""; exit(0); } | |||
10540 | 12495 | ||
10541 | _ACEOF | 12496 | _ACEOF |
10542 | rm -f conftest.$ac_objext conftest$ac_exeext | 12497 | rm -f conftest.$ac_objext conftest$ac_exeext |
10543 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12498 | if { (ac_try="$ac_link" |
10544 | (eval $ac_link) 2>conftest.er1 | 12499 | case "(($ac_try" in |
12500 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12501 | *) ac_try_echo=$ac_try;; | ||
12502 | esac | ||
12503 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12504 | (eval "$ac_link") 2>conftest.er1 | ||
10545 | ac_status=$? | 12505 | ac_status=$? |
10546 | grep -v '^ *+' conftest.er1 >conftest.err | 12506 | grep -v '^ *+' conftest.er1 >conftest.err |
10547 | rm -f conftest.er1 | 12507 | rm -f conftest.er1 |
10548 | cat conftest.err >&5 | 12508 | cat conftest.err >&5 |
10549 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12509 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10550 | (exit $ac_status); } && | 12510 | (exit $ac_status); } && |
10551 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12511 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10552 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12512 | { (case "(($ac_try" in |
10553 | (eval $ac_try) 2>&5 | 12513 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12514 | *) ac_try_echo=$ac_try;; | ||
12515 | esac | ||
12516 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12517 | (eval "$ac_try") 2>&5 | ||
10554 | ac_status=$? | 12518 | ac_status=$? |
10555 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12519 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10556 | (exit $ac_status); }; } && | 12520 | (exit $ac_status); }; } && |
10557 | { ac_try='test -s conftest$ac_exeext' | 12521 | { ac_try='test -s conftest$ac_exeext' |
10558 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12522 | { (case "(($ac_try" in |
10559 | (eval $ac_try) 2>&5 | 12523 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12524 | *) ac_try_echo=$ac_try;; | ||
12525 | esac | ||
12526 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12527 | (eval "$ac_try") 2>&5 | ||
10560 | ac_status=$? | 12528 | ac_status=$? |
10561 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12529 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10562 | (exit $ac_status); }; }; then | 12530 | (exit $ac_status); }; }; then |
10563 | echo "$as_me:$LINENO: result: yes" >&5 | 12531 | { echo "$as_me:$LINENO: result: yes" >&5 |
10564 | echo "${ECHO_T}yes" >&6 | 12532 | echo "${ECHO_T}yes" >&6; } |
10565 | else | 12533 | else |
10566 | echo "$as_me: failed program was:" >&5 | 12534 | echo "$as_me: failed program was:" >&5 |
10567 | sed 's/^/| /' conftest.$ac_ext >&5 | 12535 | sed 's/^/| /' conftest.$ac_ext >&5 |
10568 | 12536 | ||
10569 | 12537 | ||
10570 | echo "$as_me:$LINENO: result: no" >&5 | 12538 | { echo "$as_me:$LINENO: result: no" >&5 |
10571 | echo "${ECHO_T}no" >&6 | 12539 | echo "${ECHO_T}no" >&6; } |
10572 | { { echo "$as_me:$LINENO: error: ** Incomplete or missing s/key libraries." >&5 | 12540 | { { echo "$as_me:$LINENO: error: ** Incomplete or missing s/key libraries." >&5 |
10573 | echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;} | 12541 | echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;} |
10574 | { (exit 1); exit 1; }; } | 12542 | { (exit 1); exit 1; }; } |
10575 | 12543 | ||
10576 | fi | 12544 | fi |
10577 | rm -f conftest.err conftest.$ac_objext \ | 12545 | |
12546 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10578 | conftest$ac_exeext conftest.$ac_ext | 12547 | conftest$ac_exeext conftest.$ac_ext |
10579 | echo "$as_me:$LINENO: checking if skeychallenge takes 4 arguments" >&5 | 12548 | { echo "$as_me:$LINENO: checking if skeychallenge takes 4 arguments" >&5 |
10580 | echo $ECHO_N "checking if skeychallenge takes 4 arguments... $ECHO_C" >&6 | 12549 | echo $ECHO_N "checking if skeychallenge takes 4 arguments... $ECHO_C" >&6; } |
10581 | cat >conftest.$ac_ext <<_ACEOF | 12550 | cat >conftest.$ac_ext <<_ACEOF |
10582 | /* confdefs.h. */ | 12551 | /* confdefs.h. */ |
10583 | _ACEOF | 12552 | _ACEOF |
@@ -10595,28 +12564,41 @@ main () | |||
10595 | } | 12564 | } |
10596 | _ACEOF | 12565 | _ACEOF |
10597 | rm -f conftest.$ac_objext | 12566 | rm -f conftest.$ac_objext |
10598 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 12567 | if { (ac_try="$ac_compile" |
10599 | (eval $ac_compile) 2>conftest.er1 | 12568 | case "(($ac_try" in |
12569 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12570 | *) ac_try_echo=$ac_try;; | ||
12571 | esac | ||
12572 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12573 | (eval "$ac_compile") 2>conftest.er1 | ||
10600 | ac_status=$? | 12574 | ac_status=$? |
10601 | grep -v '^ *+' conftest.er1 >conftest.err | 12575 | grep -v '^ *+' conftest.er1 >conftest.err |
10602 | rm -f conftest.er1 | 12576 | rm -f conftest.er1 |
10603 | cat conftest.err >&5 | 12577 | cat conftest.err >&5 |
10604 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12578 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10605 | (exit $ac_status); } && | 12579 | (exit $ac_status); } && |
10606 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12580 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10607 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12581 | { (case "(($ac_try" in |
10608 | (eval $ac_try) 2>&5 | 12582 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12583 | *) ac_try_echo=$ac_try;; | ||
12584 | esac | ||
12585 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12586 | (eval "$ac_try") 2>&5 | ||
10609 | ac_status=$? | 12587 | ac_status=$? |
10610 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12588 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10611 | (exit $ac_status); }; } && | 12589 | (exit $ac_status); }; } && |
10612 | { ac_try='test -s conftest.$ac_objext' | 12590 | { ac_try='test -s conftest.$ac_objext' |
10613 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12591 | { (case "(($ac_try" in |
10614 | (eval $ac_try) 2>&5 | 12592 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12593 | *) ac_try_echo=$ac_try;; | ||
12594 | esac | ||
12595 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12596 | (eval "$ac_try") 2>&5 | ||
10615 | ac_status=$? | 12597 | ac_status=$? |
10616 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12598 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10617 | (exit $ac_status); }; }; then | 12599 | (exit $ac_status); }; }; then |
10618 | echo "$as_me:$LINENO: result: yes" >&5 | 12600 | { echo "$as_me:$LINENO: result: yes" >&5 |
10619 | echo "${ECHO_T}yes" >&6 | 12601 | echo "${ECHO_T}yes" >&6; } |
10620 | 12602 | ||
10621 | cat >>confdefs.h <<\_ACEOF | 12603 | cat >>confdefs.h <<\_ACEOF |
10622 | #define SKEYCHALLENGE_4ARG 1 | 12604 | #define SKEYCHALLENGE_4ARG 1 |
@@ -10626,23 +12608,24 @@ else | |||
10626 | echo "$as_me: failed program was:" >&5 | 12608 | echo "$as_me: failed program was:" >&5 |
10627 | sed 's/^/| /' conftest.$ac_ext >&5 | 12609 | sed 's/^/| /' conftest.$ac_ext >&5 |
10628 | 12610 | ||
10629 | echo "$as_me:$LINENO: result: no" >&5 | 12611 | { echo "$as_me:$LINENO: result: no" >&5 |
10630 | echo "${ECHO_T}no" >&6 | 12612 | echo "${ECHO_T}no" >&6; } |
10631 | 12613 | ||
10632 | fi | 12614 | fi |
10633 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 12615 | |
12616 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
10634 | fi | 12617 | fi |
10635 | 12618 | ||
10636 | 12619 | ||
10637 | fi; | 12620 | fi |
12621 | |||
10638 | 12622 | ||
10639 | # Check whether user wants TCP wrappers support | 12623 | # Check whether user wants TCP wrappers support |
10640 | TCPW_MSG="no" | 12624 | TCPW_MSG="no" |
10641 | 12625 | ||
10642 | # Check whether --with-tcp-wrappers or --without-tcp-wrappers was given. | 12626 | # Check whether --with-tcp-wrappers was given. |
10643 | if test "${with_tcp_wrappers+set}" = set; then | 12627 | if test "${with_tcp_wrappers+set}" = set; then |
10644 | withval="$with_tcp_wrappers" | 12628 | withval=$with_tcp_wrappers; |
10645 | |||
10646 | if test "x$withval" != "xno" ; then | 12629 | if test "x$withval" != "xno" ; then |
10647 | saved_LIBS="$LIBS" | 12630 | saved_LIBS="$LIBS" |
10648 | saved_LDFLAGS="$LDFLAGS" | 12631 | saved_LDFLAGS="$LDFLAGS" |
@@ -10670,8 +12653,8 @@ if test "${with_tcp_wrappers+set}" = set; then | |||
10670 | fi | 12653 | fi |
10671 | LIBWRAP="-lwrap" | 12654 | LIBWRAP="-lwrap" |
10672 | LIBS="$LIBWRAP $LIBS" | 12655 | LIBS="$LIBWRAP $LIBS" |
10673 | echo "$as_me:$LINENO: checking for libwrap" >&5 | 12656 | { echo "$as_me:$LINENO: checking for libwrap" >&5 |
10674 | echo $ECHO_N "checking for libwrap... $ECHO_C" >&6 | 12657 | echo $ECHO_N "checking for libwrap... $ECHO_C" >&6; } |
10675 | cat >conftest.$ac_ext <<_ACEOF | 12658 | cat >conftest.$ac_ext <<_ACEOF |
10676 | /* confdefs.h. */ | 12659 | /* confdefs.h. */ |
10677 | _ACEOF | 12660 | _ACEOF |
@@ -10694,29 +12677,42 @@ hosts_access(0); | |||
10694 | } | 12677 | } |
10695 | _ACEOF | 12678 | _ACEOF |
10696 | rm -f conftest.$ac_objext conftest$ac_exeext | 12679 | rm -f conftest.$ac_objext conftest$ac_exeext |
10697 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12680 | if { (ac_try="$ac_link" |
10698 | (eval $ac_link) 2>conftest.er1 | 12681 | case "(($ac_try" in |
12682 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12683 | *) ac_try_echo=$ac_try;; | ||
12684 | esac | ||
12685 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12686 | (eval "$ac_link") 2>conftest.er1 | ||
10699 | ac_status=$? | 12687 | ac_status=$? |
10700 | grep -v '^ *+' conftest.er1 >conftest.err | 12688 | grep -v '^ *+' conftest.er1 >conftest.err |
10701 | rm -f conftest.er1 | 12689 | rm -f conftest.er1 |
10702 | cat conftest.err >&5 | 12690 | cat conftest.err >&5 |
10703 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12691 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10704 | (exit $ac_status); } && | 12692 | (exit $ac_status); } && |
10705 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12693 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10706 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12694 | { (case "(($ac_try" in |
10707 | (eval $ac_try) 2>&5 | 12695 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12696 | *) ac_try_echo=$ac_try;; | ||
12697 | esac | ||
12698 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12699 | (eval "$ac_try") 2>&5 | ||
10708 | ac_status=$? | 12700 | ac_status=$? |
10709 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12701 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10710 | (exit $ac_status); }; } && | 12702 | (exit $ac_status); }; } && |
10711 | { ac_try='test -s conftest$ac_exeext' | 12703 | { ac_try='test -s conftest$ac_exeext' |
10712 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12704 | { (case "(($ac_try" in |
10713 | (eval $ac_try) 2>&5 | 12705 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12706 | *) ac_try_echo=$ac_try;; | ||
12707 | esac | ||
12708 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12709 | (eval "$ac_try") 2>&5 | ||
10714 | ac_status=$? | 12710 | ac_status=$? |
10715 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12711 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10716 | (exit $ac_status); }; }; then | 12712 | (exit $ac_status); }; }; then |
10717 | 12713 | ||
10718 | echo "$as_me:$LINENO: result: yes" >&5 | 12714 | { echo "$as_me:$LINENO: result: yes" >&5 |
10719 | echo "${ECHO_T}yes" >&6 | 12715 | echo "${ECHO_T}yes" >&6; } |
10720 | 12716 | ||
10721 | cat >>confdefs.h <<\_ACEOF | 12717 | cat >>confdefs.h <<\_ACEOF |
10722 | #define LIBWRAP 1 | 12718 | #define LIBWRAP 1 |
@@ -10736,21 +12732,22 @@ echo "$as_me: error: *** libwrap missing" >&2;} | |||
10736 | 12732 | ||
10737 | 12733 | ||
10738 | fi | 12734 | fi |
10739 | rm -f conftest.err conftest.$ac_objext \ | 12735 | |
12736 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10740 | conftest$ac_exeext conftest.$ac_ext | 12737 | conftest$ac_exeext conftest.$ac_ext |
10741 | LIBS="$saved_LIBS" | 12738 | LIBS="$saved_LIBS" |
10742 | fi | 12739 | fi |
10743 | 12740 | ||
10744 | 12741 | ||
10745 | fi; | 12742 | fi |
12743 | |||
10746 | 12744 | ||
10747 | # Check whether user wants libedit support | 12745 | # Check whether user wants libedit support |
10748 | LIBEDIT_MSG="no" | 12746 | LIBEDIT_MSG="no" |
10749 | 12747 | ||
10750 | # Check whether --with-libedit or --without-libedit was given. | 12748 | # Check whether --with-libedit was given. |
10751 | if test "${with_libedit+set}" = set; then | 12749 | if test "${with_libedit+set}" = set; then |
10752 | withval="$with_libedit" | 12750 | withval=$with_libedit; if test "x$withval" != "xno" ; then |
10753 | if test "x$withval" != "xno" ; then | ||
10754 | if test "x$withval" != "xyes"; then | 12751 | if test "x$withval" != "xyes"; then |
10755 | CPPFLAGS="$CPPFLAGS -I${withval}/include" | 12752 | CPPFLAGS="$CPPFLAGS -I${withval}/include" |
10756 | if test -n "${need_dash_r}"; then | 12753 | if test -n "${need_dash_r}"; then |
@@ -10759,8 +12756,8 @@ if test "${with_libedit+set}" = set; then | |||
10759 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" | 12756 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" |
10760 | fi | 12757 | fi |
10761 | fi | 12758 | fi |
10762 | echo "$as_me:$LINENO: checking for el_init in -ledit" >&5 | 12759 | { echo "$as_me:$LINENO: checking for el_init in -ledit" >&5 |
10763 | echo $ECHO_N "checking for el_init in -ledit... $ECHO_C" >&6 | 12760 | echo $ECHO_N "checking for el_init in -ledit... $ECHO_C" >&6; } |
10764 | if test "${ac_cv_lib_edit_el_init+set}" = set; then | 12761 | if test "${ac_cv_lib_edit_el_init+set}" = set; then |
10765 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 12762 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
10766 | else | 12763 | else |
@@ -10774,39 +12771,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
10774 | cat >>conftest.$ac_ext <<_ACEOF | 12771 | cat >>conftest.$ac_ext <<_ACEOF |
10775 | /* end confdefs.h. */ | 12772 | /* end confdefs.h. */ |
10776 | 12773 | ||
10777 | /* Override any gcc2 internal prototype to avoid an error. */ | 12774 | /* Override any GCC internal prototype to avoid an error. |
12775 | Use char because int might match the return type of a GCC | ||
12776 | builtin and then its argument prototype would still apply. */ | ||
10778 | #ifdef __cplusplus | 12777 | #ifdef __cplusplus |
10779 | extern "C" | 12778 | extern "C" |
10780 | #endif | 12779 | #endif |
10781 | /* We use char because int might match the return type of a gcc2 | ||
10782 | builtin and then its argument prototype would still apply. */ | ||
10783 | char el_init (); | 12780 | char el_init (); |
10784 | int | 12781 | int |
10785 | main () | 12782 | main () |
10786 | { | 12783 | { |
10787 | el_init (); | 12784 | return el_init (); |
10788 | ; | 12785 | ; |
10789 | return 0; | 12786 | return 0; |
10790 | } | 12787 | } |
10791 | _ACEOF | 12788 | _ACEOF |
10792 | rm -f conftest.$ac_objext conftest$ac_exeext | 12789 | rm -f conftest.$ac_objext conftest$ac_exeext |
10793 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 12790 | if { (ac_try="$ac_link" |
10794 | (eval $ac_link) 2>conftest.er1 | 12791 | case "(($ac_try" in |
12792 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12793 | *) ac_try_echo=$ac_try;; | ||
12794 | esac | ||
12795 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12796 | (eval "$ac_link") 2>conftest.er1 | ||
10795 | ac_status=$? | 12797 | ac_status=$? |
10796 | grep -v '^ *+' conftest.er1 >conftest.err | 12798 | grep -v '^ *+' conftest.er1 >conftest.err |
10797 | rm -f conftest.er1 | 12799 | rm -f conftest.er1 |
10798 | cat conftest.err >&5 | 12800 | cat conftest.err >&5 |
10799 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12801 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10800 | (exit $ac_status); } && | 12802 | (exit $ac_status); } && |
10801 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12803 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10802 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12804 | { (case "(($ac_try" in |
10803 | (eval $ac_try) 2>&5 | 12805 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12806 | *) ac_try_echo=$ac_try;; | ||
12807 | esac | ||
12808 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12809 | (eval "$ac_try") 2>&5 | ||
10804 | ac_status=$? | 12810 | ac_status=$? |
10805 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12811 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10806 | (exit $ac_status); }; } && | 12812 | (exit $ac_status); }; } && |
10807 | { ac_try='test -s conftest$ac_exeext' | 12813 | { ac_try='test -s conftest$ac_exeext' |
10808 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12814 | { (case "(($ac_try" in |
10809 | (eval $ac_try) 2>&5 | 12815 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12816 | *) ac_try_echo=$ac_try;; | ||
12817 | esac | ||
12818 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12819 | (eval "$ac_try") 2>&5 | ||
10810 | ac_status=$? | 12820 | ac_status=$? |
10811 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12821 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10812 | (exit $ac_status); }; }; then | 12822 | (exit $ac_status); }; }; then |
@@ -10815,14 +12825,15 @@ else | |||
10815 | echo "$as_me: failed program was:" >&5 | 12825 | echo "$as_me: failed program was:" >&5 |
10816 | sed 's/^/| /' conftest.$ac_ext >&5 | 12826 | sed 's/^/| /' conftest.$ac_ext >&5 |
10817 | 12827 | ||
10818 | ac_cv_lib_edit_el_init=no | 12828 | ac_cv_lib_edit_el_init=no |
10819 | fi | 12829 | fi |
10820 | rm -f conftest.err conftest.$ac_objext \ | 12830 | |
12831 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
10821 | conftest$ac_exeext conftest.$ac_ext | 12832 | conftest$ac_exeext conftest.$ac_ext |
10822 | LIBS=$ac_check_lib_save_LIBS | 12833 | LIBS=$ac_check_lib_save_LIBS |
10823 | fi | 12834 | fi |
10824 | echo "$as_me:$LINENO: result: $ac_cv_lib_edit_el_init" >&5 | 12835 | { echo "$as_me:$LINENO: result: $ac_cv_lib_edit_el_init" >&5 |
10825 | echo "${ECHO_T}$ac_cv_lib_edit_el_init" >&6 | 12836 | echo "${ECHO_T}$ac_cv_lib_edit_el_init" >&6; } |
10826 | if test $ac_cv_lib_edit_el_init = yes; then | 12837 | if test $ac_cv_lib_edit_el_init = yes; then |
10827 | 12838 | ||
10828 | cat >>confdefs.h <<\_ACEOF | 12839 | cat >>confdefs.h <<\_ACEOF |
@@ -10839,8 +12850,8 @@ echo "$as_me: error: libedit not found" >&2;} | |||
10839 | { (exit 1); exit 1; }; } | 12850 | { (exit 1); exit 1; }; } |
10840 | fi | 12851 | fi |
10841 | 12852 | ||
10842 | echo "$as_me:$LINENO: checking if libedit version is compatible" >&5 | 12853 | { echo "$as_me:$LINENO: checking if libedit version is compatible" >&5 |
10843 | echo $ECHO_N "checking if libedit version is compatible... $ECHO_C" >&6 | 12854 | echo $ECHO_N "checking if libedit version is compatible... $ECHO_C" >&6; } |
10844 | cat >conftest.$ac_ext <<_ACEOF | 12855 | cat >conftest.$ac_ext <<_ACEOF |
10845 | /* confdefs.h. */ | 12856 | /* confdefs.h. */ |
10846 | _ACEOF | 12857 | _ACEOF |
@@ -10858,73 +12869,88 @@ int main(void) | |||
10858 | 12869 | ||
10859 | _ACEOF | 12870 | _ACEOF |
10860 | rm -f conftest.$ac_objext | 12871 | rm -f conftest.$ac_objext |
10861 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 12872 | if { (ac_try="$ac_compile" |
10862 | (eval $ac_compile) 2>conftest.er1 | 12873 | case "(($ac_try" in |
12874 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12875 | *) ac_try_echo=$ac_try;; | ||
12876 | esac | ||
12877 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12878 | (eval "$ac_compile") 2>conftest.er1 | ||
10863 | ac_status=$? | 12879 | ac_status=$? |
10864 | grep -v '^ *+' conftest.er1 >conftest.err | 12880 | grep -v '^ *+' conftest.er1 >conftest.err |
10865 | rm -f conftest.er1 | 12881 | rm -f conftest.er1 |
10866 | cat conftest.err >&5 | 12882 | cat conftest.err >&5 |
10867 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12883 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10868 | (exit $ac_status); } && | 12884 | (exit $ac_status); } && |
10869 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12885 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10870 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12886 | { (case "(($ac_try" in |
10871 | (eval $ac_try) 2>&5 | 12887 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12888 | *) ac_try_echo=$ac_try;; | ||
12889 | esac | ||
12890 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12891 | (eval "$ac_try") 2>&5 | ||
10872 | ac_status=$? | 12892 | ac_status=$? |
10873 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12893 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10874 | (exit $ac_status); }; } && | 12894 | (exit $ac_status); }; } && |
10875 | { ac_try='test -s conftest.$ac_objext' | 12895 | { ac_try='test -s conftest.$ac_objext' |
10876 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12896 | { (case "(($ac_try" in |
10877 | (eval $ac_try) 2>&5 | 12897 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12898 | *) ac_try_echo=$ac_try;; | ||
12899 | esac | ||
12900 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12901 | (eval "$ac_try") 2>&5 | ||
10878 | ac_status=$? | 12902 | ac_status=$? |
10879 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12903 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10880 | (exit $ac_status); }; }; then | 12904 | (exit $ac_status); }; }; then |
10881 | echo "$as_me:$LINENO: result: yes" >&5 | 12905 | { echo "$as_me:$LINENO: result: yes" >&5 |
10882 | echo "${ECHO_T}yes" >&6 | 12906 | echo "${ECHO_T}yes" >&6; } |
10883 | else | 12907 | else |
10884 | echo "$as_me: failed program was:" >&5 | 12908 | echo "$as_me: failed program was:" >&5 |
10885 | sed 's/^/| /' conftest.$ac_ext >&5 | 12909 | sed 's/^/| /' conftest.$ac_ext >&5 |
10886 | 12910 | ||
10887 | echo "$as_me:$LINENO: result: no" >&5 | 12911 | { echo "$as_me:$LINENO: result: no" >&5 |
10888 | echo "${ECHO_T}no" >&6 | 12912 | echo "${ECHO_T}no" >&6; } |
10889 | { { echo "$as_me:$LINENO: error: libedit version is not compatible" >&5 | 12913 | { { echo "$as_me:$LINENO: error: libedit version is not compatible" >&5 |
10890 | echo "$as_me: error: libedit version is not compatible" >&2;} | 12914 | echo "$as_me: error: libedit version is not compatible" >&2;} |
10891 | { (exit 1); exit 1; }; } | 12915 | { (exit 1); exit 1; }; } |
10892 | 12916 | ||
10893 | fi | 12917 | fi |
10894 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 12918 | |
12919 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
10895 | fi | 12920 | fi |
10896 | 12921 | ||
10897 | fi; | 12922 | fi |
12923 | |||
10898 | 12924 | ||
10899 | AUDIT_MODULE=none | 12925 | AUDIT_MODULE=none |
10900 | 12926 | ||
10901 | # Check whether --with-audit or --without-audit was given. | 12927 | # Check whether --with-audit was given. |
10902 | if test "${with_audit+set}" = set; then | 12928 | if test "${with_audit+set}" = set; then |
10903 | withval="$with_audit" | 12929 | withval=$with_audit; |
10904 | 12930 | { echo "$as_me:$LINENO: checking for supported audit module" >&5 | |
10905 | echo "$as_me:$LINENO: checking for supported audit module" >&5 | 12931 | echo $ECHO_N "checking for supported audit module... $ECHO_C" >&6; } |
10906 | echo $ECHO_N "checking for supported audit module... $ECHO_C" >&6 | ||
10907 | case "$withval" in | 12932 | case "$withval" in |
10908 | bsm) | 12933 | bsm) |
10909 | echo "$as_me:$LINENO: result: bsm" >&5 | 12934 | { echo "$as_me:$LINENO: result: bsm" >&5 |
10910 | echo "${ECHO_T}bsm" >&6 | 12935 | echo "${ECHO_T}bsm" >&6; } |
10911 | AUDIT_MODULE=bsm | 12936 | AUDIT_MODULE=bsm |
10912 | 12937 | ||
10913 | for ac_header in bsm/audit.h | 12938 | for ac_header in bsm/audit.h |
10914 | do | 12939 | do |
10915 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 12940 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
10916 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 12941 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
10917 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 12942 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
10918 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 12943 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
10919 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 12944 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
10920 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 12945 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
10921 | fi | 12946 | fi |
10922 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 12947 | ac_res=`eval echo '${'$as_ac_Header'}'` |
10923 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 12948 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
12949 | echo "${ECHO_T}$ac_res" >&6; } | ||
10924 | else | 12950 | else |
10925 | # Is the header compilable? | 12951 | # Is the header compilable? |
10926 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 12952 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
10927 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 12953 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
10928 | cat >conftest.$ac_ext <<_ACEOF | 12954 | cat >conftest.$ac_ext <<_ACEOF |
10929 | /* confdefs.h. */ | 12955 | /* confdefs.h. */ |
10930 | _ACEOF | 12956 | _ACEOF |
@@ -10935,23 +12961,36 @@ $ac_includes_default | |||
10935 | #include <$ac_header> | 12961 | #include <$ac_header> |
10936 | _ACEOF | 12962 | _ACEOF |
10937 | rm -f conftest.$ac_objext | 12963 | rm -f conftest.$ac_objext |
10938 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 12964 | if { (ac_try="$ac_compile" |
10939 | (eval $ac_compile) 2>conftest.er1 | 12965 | case "(($ac_try" in |
12966 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
12967 | *) ac_try_echo=$ac_try;; | ||
12968 | esac | ||
12969 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12970 | (eval "$ac_compile") 2>conftest.er1 | ||
10940 | ac_status=$? | 12971 | ac_status=$? |
10941 | grep -v '^ *+' conftest.er1 >conftest.err | 12972 | grep -v '^ *+' conftest.er1 >conftest.err |
10942 | rm -f conftest.er1 | 12973 | rm -f conftest.er1 |
10943 | cat conftest.err >&5 | 12974 | cat conftest.err >&5 |
10944 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12975 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10945 | (exit $ac_status); } && | 12976 | (exit $ac_status); } && |
10946 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 12977 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10947 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12978 | { (case "(($ac_try" in |
10948 | (eval $ac_try) 2>&5 | 12979 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12980 | *) ac_try_echo=$ac_try;; | ||
12981 | esac | ||
12982 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12983 | (eval "$ac_try") 2>&5 | ||
10949 | ac_status=$? | 12984 | ac_status=$? |
10950 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12985 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10951 | (exit $ac_status); }; } && | 12986 | (exit $ac_status); }; } && |
10952 | { ac_try='test -s conftest.$ac_objext' | 12987 | { ac_try='test -s conftest.$ac_objext' |
10953 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12988 | { (case "(($ac_try" in |
10954 | (eval $ac_try) 2>&5 | 12989 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
12990 | *) ac_try_echo=$ac_try;; | ||
12991 | esac | ||
12992 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
12993 | (eval "$ac_try") 2>&5 | ||
10955 | ac_status=$? | 12994 | ac_status=$? |
10956 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12995 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10957 | (exit $ac_status); }; }; then | 12996 | (exit $ac_status); }; }; then |
@@ -10960,15 +12999,16 @@ else | |||
10960 | echo "$as_me: failed program was:" >&5 | 12999 | echo "$as_me: failed program was:" >&5 |
10961 | sed 's/^/| /' conftest.$ac_ext >&5 | 13000 | sed 's/^/| /' conftest.$ac_ext >&5 |
10962 | 13001 | ||
10963 | ac_header_compiler=no | 13002 | ac_header_compiler=no |
10964 | fi | 13003 | fi |
10965 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 13004 | |
10966 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 13005 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
10967 | echo "${ECHO_T}$ac_header_compiler" >&6 | 13006 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
13007 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
10968 | 13008 | ||
10969 | # Is the header present? | 13009 | # Is the header present? |
10970 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 13010 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
10971 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 13011 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
10972 | cat >conftest.$ac_ext <<_ACEOF | 13012 | cat >conftest.$ac_ext <<_ACEOF |
10973 | /* confdefs.h. */ | 13013 | /* confdefs.h. */ |
10974 | _ACEOF | 13014 | _ACEOF |
@@ -10977,8 +13017,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
10977 | /* end confdefs.h. */ | 13017 | /* end confdefs.h. */ |
10978 | #include <$ac_header> | 13018 | #include <$ac_header> |
10979 | _ACEOF | 13019 | _ACEOF |
10980 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 13020 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
10981 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 13021 | case "(($ac_try" in |
13022 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13023 | *) ac_try_echo=$ac_try;; | ||
13024 | esac | ||
13025 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13026 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
10982 | ac_status=$? | 13027 | ac_status=$? |
10983 | grep -v '^ *+' conftest.er1 >conftest.err | 13028 | grep -v '^ *+' conftest.er1 >conftest.err |
10984 | rm -f conftest.er1 | 13029 | rm -f conftest.er1 |
@@ -11002,9 +13047,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
11002 | 13047 | ||
11003 | ac_header_preproc=no | 13048 | ac_header_preproc=no |
11004 | fi | 13049 | fi |
13050 | |||
11005 | rm -f conftest.err conftest.$ac_ext | 13051 | rm -f conftest.err conftest.$ac_ext |
11006 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 13052 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
11007 | echo "${ECHO_T}$ac_header_preproc" >&6 | 13053 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
11008 | 13054 | ||
11009 | # So? What about this header? | 13055 | # So? What about this header? |
11010 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 13056 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -11028,25 +13074,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
11028 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 13074 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
11029 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 13075 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
11030 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 13076 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
11031 | ( | 13077 | ( cat <<\_ASBOX |
11032 | cat <<\_ASBOX | ||
11033 | ## ------------------------------------------- ## | 13078 | ## ------------------------------------------- ## |
11034 | ## Report this to openssh-unix-dev@mindrot.org ## | 13079 | ## Report this to openssh-unix-dev@mindrot.org ## |
11035 | ## ------------------------------------------- ## | 13080 | ## ------------------------------------------- ## |
11036 | _ASBOX | 13081 | _ASBOX |
11037 | ) | | 13082 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
11038 | sed "s/^/$as_me: WARNING: /" >&2 | ||
11039 | ;; | 13083 | ;; |
11040 | esac | 13084 | esac |
11041 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 13085 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
11042 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 13086 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
11043 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 13087 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
11044 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13088 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11045 | else | 13089 | else |
11046 | eval "$as_ac_Header=\$ac_header_preproc" | 13090 | eval "$as_ac_Header=\$ac_header_preproc" |
11047 | fi | 13091 | fi |
11048 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 13092 | ac_res=`eval echo '${'$as_ac_Header'}'` |
11049 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 13093 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
13094 | echo "${ECHO_T}$ac_res" >&6; } | ||
11050 | 13095 | ||
11051 | fi | 13096 | fi |
11052 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 13097 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -11063,8 +13108,8 @@ fi | |||
11063 | done | 13108 | done |
11064 | 13109 | ||
11065 | 13110 | ||
11066 | echo "$as_me:$LINENO: checking for getaudit in -lbsm" >&5 | 13111 | { echo "$as_me:$LINENO: checking for getaudit in -lbsm" >&5 |
11067 | echo $ECHO_N "checking for getaudit in -lbsm... $ECHO_C" >&6 | 13112 | echo $ECHO_N "checking for getaudit in -lbsm... $ECHO_C" >&6; } |
11068 | if test "${ac_cv_lib_bsm_getaudit+set}" = set; then | 13113 | if test "${ac_cv_lib_bsm_getaudit+set}" = set; then |
11069 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13114 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11070 | else | 13115 | else |
@@ -11077,39 +13122,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
11077 | cat >>conftest.$ac_ext <<_ACEOF | 13122 | cat >>conftest.$ac_ext <<_ACEOF |
11078 | /* end confdefs.h. */ | 13123 | /* end confdefs.h. */ |
11079 | 13124 | ||
11080 | /* Override any gcc2 internal prototype to avoid an error. */ | 13125 | /* Override any GCC internal prototype to avoid an error. |
13126 | Use char because int might match the return type of a GCC | ||
13127 | builtin and then its argument prototype would still apply. */ | ||
11081 | #ifdef __cplusplus | 13128 | #ifdef __cplusplus |
11082 | extern "C" | 13129 | extern "C" |
11083 | #endif | 13130 | #endif |
11084 | /* We use char because int might match the return type of a gcc2 | ||
11085 | builtin and then its argument prototype would still apply. */ | ||
11086 | char getaudit (); | 13131 | char getaudit (); |
11087 | int | 13132 | int |
11088 | main () | 13133 | main () |
11089 | { | 13134 | { |
11090 | getaudit (); | 13135 | return getaudit (); |
11091 | ; | 13136 | ; |
11092 | return 0; | 13137 | return 0; |
11093 | } | 13138 | } |
11094 | _ACEOF | 13139 | _ACEOF |
11095 | rm -f conftest.$ac_objext conftest$ac_exeext | 13140 | rm -f conftest.$ac_objext conftest$ac_exeext |
11096 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 13141 | if { (ac_try="$ac_link" |
11097 | (eval $ac_link) 2>conftest.er1 | 13142 | case "(($ac_try" in |
13143 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13144 | *) ac_try_echo=$ac_try;; | ||
13145 | esac | ||
13146 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13147 | (eval "$ac_link") 2>conftest.er1 | ||
11098 | ac_status=$? | 13148 | ac_status=$? |
11099 | grep -v '^ *+' conftest.er1 >conftest.err | 13149 | grep -v '^ *+' conftest.er1 >conftest.err |
11100 | rm -f conftest.er1 | 13150 | rm -f conftest.er1 |
11101 | cat conftest.err >&5 | 13151 | cat conftest.err >&5 |
11102 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13152 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11103 | (exit $ac_status); } && | 13153 | (exit $ac_status); } && |
11104 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13154 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11105 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13155 | { (case "(($ac_try" in |
11106 | (eval $ac_try) 2>&5 | 13156 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13157 | *) ac_try_echo=$ac_try;; | ||
13158 | esac | ||
13159 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13160 | (eval "$ac_try") 2>&5 | ||
11107 | ac_status=$? | 13161 | ac_status=$? |
11108 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13162 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11109 | (exit $ac_status); }; } && | 13163 | (exit $ac_status); }; } && |
11110 | { ac_try='test -s conftest$ac_exeext' | 13164 | { ac_try='test -s conftest$ac_exeext' |
11111 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13165 | { (case "(($ac_try" in |
11112 | (eval $ac_try) 2>&5 | 13166 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13167 | *) ac_try_echo=$ac_try;; | ||
13168 | esac | ||
13169 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13170 | (eval "$ac_try") 2>&5 | ||
11113 | ac_status=$? | 13171 | ac_status=$? |
11114 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13172 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11115 | (exit $ac_status); }; }; then | 13173 | (exit $ac_status); }; }; then |
@@ -11118,14 +13176,15 @@ else | |||
11118 | echo "$as_me: failed program was:" >&5 | 13176 | echo "$as_me: failed program was:" >&5 |
11119 | sed 's/^/| /' conftest.$ac_ext >&5 | 13177 | sed 's/^/| /' conftest.$ac_ext >&5 |
11120 | 13178 | ||
11121 | ac_cv_lib_bsm_getaudit=no | 13179 | ac_cv_lib_bsm_getaudit=no |
11122 | fi | 13180 | fi |
11123 | rm -f conftest.err conftest.$ac_objext \ | 13181 | |
13182 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
11124 | conftest$ac_exeext conftest.$ac_ext | 13183 | conftest$ac_exeext conftest.$ac_ext |
11125 | LIBS=$ac_check_lib_save_LIBS | 13184 | LIBS=$ac_check_lib_save_LIBS |
11126 | fi | 13185 | fi |
11127 | echo "$as_me:$LINENO: result: $ac_cv_lib_bsm_getaudit" >&5 | 13186 | { echo "$as_me:$LINENO: result: $ac_cv_lib_bsm_getaudit" >&5 |
11128 | echo "${ECHO_T}$ac_cv_lib_bsm_getaudit" >&6 | 13187 | echo "${ECHO_T}$ac_cv_lib_bsm_getaudit" >&6; } |
11129 | if test $ac_cv_lib_bsm_getaudit = yes; then | 13188 | if test $ac_cv_lib_bsm_getaudit = yes; then |
11130 | cat >>confdefs.h <<_ACEOF | 13189 | cat >>confdefs.h <<_ACEOF |
11131 | #define HAVE_LIBBSM 1 | 13190 | #define HAVE_LIBBSM 1 |
@@ -11143,9 +13202,9 @@ fi | |||
11143 | for ac_func in getaudit | 13202 | for ac_func in getaudit |
11144 | do | 13203 | do |
11145 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 13204 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
11146 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 13205 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
11147 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 13206 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
11148 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 13207 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
11149 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13208 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11150 | else | 13209 | else |
11151 | cat >conftest.$ac_ext <<_ACEOF | 13210 | cat >conftest.$ac_ext <<_ACEOF |
@@ -11171,52 +13230,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
11171 | 13230 | ||
11172 | #undef $ac_func | 13231 | #undef $ac_func |
11173 | 13232 | ||
11174 | /* Override any gcc2 internal prototype to avoid an error. */ | 13233 | /* Override any GCC internal prototype to avoid an error. |
13234 | Use char because int might match the return type of a GCC | ||
13235 | builtin and then its argument prototype would still apply. */ | ||
11175 | #ifdef __cplusplus | 13236 | #ifdef __cplusplus |
11176 | extern "C" | 13237 | extern "C" |
11177 | { | ||
11178 | #endif | 13238 | #endif |
11179 | /* We use char because int might match the return type of a gcc2 | ||
11180 | builtin and then its argument prototype would still apply. */ | ||
11181 | char $ac_func (); | 13239 | char $ac_func (); |
11182 | /* The GNU C library defines this for functions which it implements | 13240 | /* The GNU C library defines this for functions which it implements |
11183 | to always fail with ENOSYS. Some functions are actually named | 13241 | to always fail with ENOSYS. Some functions are actually named |
11184 | something starting with __ and the normal name is an alias. */ | 13242 | something starting with __ and the normal name is an alias. */ |
11185 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 13243 | #if defined __stub_$ac_func || defined __stub___$ac_func |
11186 | choke me | 13244 | choke me |
11187 | #else | ||
11188 | char (*f) () = $ac_func; | ||
11189 | #endif | ||
11190 | #ifdef __cplusplus | ||
11191 | } | ||
11192 | #endif | 13245 | #endif |
11193 | 13246 | ||
11194 | int | 13247 | int |
11195 | main () | 13248 | main () |
11196 | { | 13249 | { |
11197 | return f != $ac_func; | 13250 | return $ac_func (); |
11198 | ; | 13251 | ; |
11199 | return 0; | 13252 | return 0; |
11200 | } | 13253 | } |
11201 | _ACEOF | 13254 | _ACEOF |
11202 | rm -f conftest.$ac_objext conftest$ac_exeext | 13255 | rm -f conftest.$ac_objext conftest$ac_exeext |
11203 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 13256 | if { (ac_try="$ac_link" |
11204 | (eval $ac_link) 2>conftest.er1 | 13257 | case "(($ac_try" in |
13258 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13259 | *) ac_try_echo=$ac_try;; | ||
13260 | esac | ||
13261 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13262 | (eval "$ac_link") 2>conftest.er1 | ||
11205 | ac_status=$? | 13263 | ac_status=$? |
11206 | grep -v '^ *+' conftest.er1 >conftest.err | 13264 | grep -v '^ *+' conftest.er1 >conftest.err |
11207 | rm -f conftest.er1 | 13265 | rm -f conftest.er1 |
11208 | cat conftest.err >&5 | 13266 | cat conftest.err >&5 |
11209 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13267 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11210 | (exit $ac_status); } && | 13268 | (exit $ac_status); } && |
11211 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13269 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11212 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13270 | { (case "(($ac_try" in |
11213 | (eval $ac_try) 2>&5 | 13271 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13272 | *) ac_try_echo=$ac_try;; | ||
13273 | esac | ||
13274 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13275 | (eval "$ac_try") 2>&5 | ||
11214 | ac_status=$? | 13276 | ac_status=$? |
11215 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13277 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11216 | (exit $ac_status); }; } && | 13278 | (exit $ac_status); }; } && |
11217 | { ac_try='test -s conftest$ac_exeext' | 13279 | { ac_try='test -s conftest$ac_exeext' |
11218 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13280 | { (case "(($ac_try" in |
11219 | (eval $ac_try) 2>&5 | 13281 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13282 | *) ac_try_echo=$ac_try;; | ||
13283 | esac | ||
13284 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13285 | (eval "$ac_try") 2>&5 | ||
11220 | ac_status=$? | 13286 | ac_status=$? |
11221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13287 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11222 | (exit $ac_status); }; }; then | 13288 | (exit $ac_status); }; }; then |
@@ -11225,13 +13291,15 @@ else | |||
11225 | echo "$as_me: failed program was:" >&5 | 13291 | echo "$as_me: failed program was:" >&5 |
11226 | sed 's/^/| /' conftest.$ac_ext >&5 | 13292 | sed 's/^/| /' conftest.$ac_ext >&5 |
11227 | 13293 | ||
11228 | eval "$as_ac_var=no" | 13294 | eval "$as_ac_var=no" |
11229 | fi | 13295 | fi |
11230 | rm -f conftest.err conftest.$ac_objext \ | 13296 | |
13297 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
11231 | conftest$ac_exeext conftest.$ac_ext | 13298 | conftest$ac_exeext conftest.$ac_ext |
11232 | fi | 13299 | fi |
11233 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 13300 | ac_res=`eval echo '${'$as_ac_var'}'` |
11234 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 13301 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
13302 | echo "${ECHO_T}$ac_res" >&6; } | ||
11235 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 13303 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
11236 | cat >>confdefs.h <<_ACEOF | 13304 | cat >>confdefs.h <<_ACEOF |
11237 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 13305 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -11249,9 +13317,9 @@ done | |||
11249 | for ac_func in getaudit_addr | 13317 | for ac_func in getaudit_addr |
11250 | do | 13318 | do |
11251 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 13319 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
11252 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 13320 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
11253 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 13321 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
11254 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 13322 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
11255 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13323 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11256 | else | 13324 | else |
11257 | cat >conftest.$ac_ext <<_ACEOF | 13325 | cat >conftest.$ac_ext <<_ACEOF |
@@ -11277,52 +13345,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
11277 | 13345 | ||
11278 | #undef $ac_func | 13346 | #undef $ac_func |
11279 | 13347 | ||
11280 | /* Override any gcc2 internal prototype to avoid an error. */ | 13348 | /* Override any GCC internal prototype to avoid an error. |
13349 | Use char because int might match the return type of a GCC | ||
13350 | builtin and then its argument prototype would still apply. */ | ||
11281 | #ifdef __cplusplus | 13351 | #ifdef __cplusplus |
11282 | extern "C" | 13352 | extern "C" |
11283 | { | ||
11284 | #endif | 13353 | #endif |
11285 | /* We use char because int might match the return type of a gcc2 | ||
11286 | builtin and then its argument prototype would still apply. */ | ||
11287 | char $ac_func (); | 13354 | char $ac_func (); |
11288 | /* The GNU C library defines this for functions which it implements | 13355 | /* The GNU C library defines this for functions which it implements |
11289 | to always fail with ENOSYS. Some functions are actually named | 13356 | to always fail with ENOSYS. Some functions are actually named |
11290 | something starting with __ and the normal name is an alias. */ | 13357 | something starting with __ and the normal name is an alias. */ |
11291 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 13358 | #if defined __stub_$ac_func || defined __stub___$ac_func |
11292 | choke me | 13359 | choke me |
11293 | #else | ||
11294 | char (*f) () = $ac_func; | ||
11295 | #endif | ||
11296 | #ifdef __cplusplus | ||
11297 | } | ||
11298 | #endif | 13360 | #endif |
11299 | 13361 | ||
11300 | int | 13362 | int |
11301 | main () | 13363 | main () |
11302 | { | 13364 | { |
11303 | return f != $ac_func; | 13365 | return $ac_func (); |
11304 | ; | 13366 | ; |
11305 | return 0; | 13367 | return 0; |
11306 | } | 13368 | } |
11307 | _ACEOF | 13369 | _ACEOF |
11308 | rm -f conftest.$ac_objext conftest$ac_exeext | 13370 | rm -f conftest.$ac_objext conftest$ac_exeext |
11309 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 13371 | if { (ac_try="$ac_link" |
11310 | (eval $ac_link) 2>conftest.er1 | 13372 | case "(($ac_try" in |
13373 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13374 | *) ac_try_echo=$ac_try;; | ||
13375 | esac | ||
13376 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13377 | (eval "$ac_link") 2>conftest.er1 | ||
11311 | ac_status=$? | 13378 | ac_status=$? |
11312 | grep -v '^ *+' conftest.er1 >conftest.err | 13379 | grep -v '^ *+' conftest.er1 >conftest.err |
11313 | rm -f conftest.er1 | 13380 | rm -f conftest.er1 |
11314 | cat conftest.err >&5 | 13381 | cat conftest.err >&5 |
11315 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13382 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11316 | (exit $ac_status); } && | 13383 | (exit $ac_status); } && |
11317 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13384 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11318 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13385 | { (case "(($ac_try" in |
11319 | (eval $ac_try) 2>&5 | 13386 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13387 | *) ac_try_echo=$ac_try;; | ||
13388 | esac | ||
13389 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13390 | (eval "$ac_try") 2>&5 | ||
11320 | ac_status=$? | 13391 | ac_status=$? |
11321 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13392 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11322 | (exit $ac_status); }; } && | 13393 | (exit $ac_status); }; } && |
11323 | { ac_try='test -s conftest$ac_exeext' | 13394 | { ac_try='test -s conftest$ac_exeext' |
11324 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13395 | { (case "(($ac_try" in |
11325 | (eval $ac_try) 2>&5 | 13396 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13397 | *) ac_try_echo=$ac_try;; | ||
13398 | esac | ||
13399 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13400 | (eval "$ac_try") 2>&5 | ||
11326 | ac_status=$? | 13401 | ac_status=$? |
11327 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13402 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11328 | (exit $ac_status); }; }; then | 13403 | (exit $ac_status); }; }; then |
@@ -11331,13 +13406,15 @@ else | |||
11331 | echo "$as_me: failed program was:" >&5 | 13406 | echo "$as_me: failed program was:" >&5 |
11332 | sed 's/^/| /' conftest.$ac_ext >&5 | 13407 | sed 's/^/| /' conftest.$ac_ext >&5 |
11333 | 13408 | ||
11334 | eval "$as_ac_var=no" | 13409 | eval "$as_ac_var=no" |
11335 | fi | 13410 | fi |
11336 | rm -f conftest.err conftest.$ac_objext \ | 13411 | |
13412 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
11337 | conftest$ac_exeext conftest.$ac_ext | 13413 | conftest$ac_exeext conftest.$ac_ext |
11338 | fi | 13414 | fi |
11339 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 13415 | ac_res=`eval echo '${'$as_ac_var'}'` |
11340 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 13416 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
13417 | echo "${ECHO_T}$ac_res" >&6; } | ||
11341 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 13418 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
11342 | cat >>confdefs.h <<_ACEOF | 13419 | cat >>confdefs.h <<_ACEOF |
11343 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 13420 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -11354,8 +13431,8 @@ _ACEOF | |||
11354 | ;; | 13431 | ;; |
11355 | debug) | 13432 | debug) |
11356 | AUDIT_MODULE=debug | 13433 | AUDIT_MODULE=debug |
11357 | echo "$as_me:$LINENO: result: debug" >&5 | 13434 | { echo "$as_me:$LINENO: result: debug" >&5 |
11358 | echo "${ECHO_T}debug" >&6 | 13435 | echo "${ECHO_T}debug" >&6; } |
11359 | 13436 | ||
11360 | cat >>confdefs.h <<\_ACEOF | 13437 | cat >>confdefs.h <<\_ACEOF |
11361 | #define SSH_AUDIT_EVENTS 1 | 13438 | #define SSH_AUDIT_EVENTS 1 |
@@ -11363,8 +13440,8 @@ _ACEOF | |||
11363 | 13440 | ||
11364 | ;; | 13441 | ;; |
11365 | no) | 13442 | no) |
11366 | echo "$as_me:$LINENO: result: no" >&5 | 13443 | { echo "$as_me:$LINENO: result: no" >&5 |
11367 | echo "${ECHO_T}no" >&6 | 13444 | echo "${ECHO_T}no" >&6; } |
11368 | ;; | 13445 | ;; |
11369 | *) | 13446 | *) |
11370 | { { echo "$as_me:$LINENO: error: Unknown audit module $withval" >&5 | 13447 | { { echo "$as_me:$LINENO: error: Unknown audit module $withval" >&5 |
@@ -11373,7 +13450,8 @@ echo "$as_me: error: Unknown audit module $withval" >&2;} | |||
11373 | ;; | 13450 | ;; |
11374 | esac | 13451 | esac |
11375 | 13452 | ||
11376 | fi; | 13453 | fi |
13454 | |||
11377 | 13455 | ||
11378 | 13456 | ||
11379 | 13457 | ||
@@ -11541,9 +13619,9 @@ for ac_func in \ | |||
11541 | 13619 | ||
11542 | do | 13620 | do |
11543 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 13621 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
11544 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 13622 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
11545 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 13623 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
11546 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 13624 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
11547 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13625 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11548 | else | 13626 | else |
11549 | cat >conftest.$ac_ext <<_ACEOF | 13627 | cat >conftest.$ac_ext <<_ACEOF |
@@ -11569,52 +13647,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
11569 | 13647 | ||
11570 | #undef $ac_func | 13648 | #undef $ac_func |
11571 | 13649 | ||
11572 | /* Override any gcc2 internal prototype to avoid an error. */ | 13650 | /* Override any GCC internal prototype to avoid an error. |
13651 | Use char because int might match the return type of a GCC | ||
13652 | builtin and then its argument prototype would still apply. */ | ||
11573 | #ifdef __cplusplus | 13653 | #ifdef __cplusplus |
11574 | extern "C" | 13654 | extern "C" |
11575 | { | ||
11576 | #endif | 13655 | #endif |
11577 | /* We use char because int might match the return type of a gcc2 | ||
11578 | builtin and then its argument prototype would still apply. */ | ||
11579 | char $ac_func (); | 13656 | char $ac_func (); |
11580 | /* The GNU C library defines this for functions which it implements | 13657 | /* The GNU C library defines this for functions which it implements |
11581 | to always fail with ENOSYS. Some functions are actually named | 13658 | to always fail with ENOSYS. Some functions are actually named |
11582 | something starting with __ and the normal name is an alias. */ | 13659 | something starting with __ and the normal name is an alias. */ |
11583 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 13660 | #if defined __stub_$ac_func || defined __stub___$ac_func |
11584 | choke me | 13661 | choke me |
11585 | #else | ||
11586 | char (*f) () = $ac_func; | ||
11587 | #endif | ||
11588 | #ifdef __cplusplus | ||
11589 | } | ||
11590 | #endif | 13662 | #endif |
11591 | 13663 | ||
11592 | int | 13664 | int |
11593 | main () | 13665 | main () |
11594 | { | 13666 | { |
11595 | return f != $ac_func; | 13667 | return $ac_func (); |
11596 | ; | 13668 | ; |
11597 | return 0; | 13669 | return 0; |
11598 | } | 13670 | } |
11599 | _ACEOF | 13671 | _ACEOF |
11600 | rm -f conftest.$ac_objext conftest$ac_exeext | 13672 | rm -f conftest.$ac_objext conftest$ac_exeext |
11601 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 13673 | if { (ac_try="$ac_link" |
11602 | (eval $ac_link) 2>conftest.er1 | 13674 | case "(($ac_try" in |
13675 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13676 | *) ac_try_echo=$ac_try;; | ||
13677 | esac | ||
13678 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13679 | (eval "$ac_link") 2>conftest.er1 | ||
11603 | ac_status=$? | 13680 | ac_status=$? |
11604 | grep -v '^ *+' conftest.er1 >conftest.err | 13681 | grep -v '^ *+' conftest.er1 >conftest.err |
11605 | rm -f conftest.er1 | 13682 | rm -f conftest.er1 |
11606 | cat conftest.err >&5 | 13683 | cat conftest.err >&5 |
11607 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13684 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11608 | (exit $ac_status); } && | 13685 | (exit $ac_status); } && |
11609 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13686 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11610 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13687 | { (case "(($ac_try" in |
11611 | (eval $ac_try) 2>&5 | 13688 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13689 | *) ac_try_echo=$ac_try;; | ||
13690 | esac | ||
13691 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13692 | (eval "$ac_try") 2>&5 | ||
11612 | ac_status=$? | 13693 | ac_status=$? |
11613 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13694 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11614 | (exit $ac_status); }; } && | 13695 | (exit $ac_status); }; } && |
11615 | { ac_try='test -s conftest$ac_exeext' | 13696 | { ac_try='test -s conftest$ac_exeext' |
11616 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13697 | { (case "(($ac_try" in |
11617 | (eval $ac_try) 2>&5 | 13698 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13699 | *) ac_try_echo=$ac_try;; | ||
13700 | esac | ||
13701 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13702 | (eval "$ac_try") 2>&5 | ||
11618 | ac_status=$? | 13703 | ac_status=$? |
11619 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13704 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11620 | (exit $ac_status); }; }; then | 13705 | (exit $ac_status); }; }; then |
@@ -11623,13 +13708,15 @@ else | |||
11623 | echo "$as_me: failed program was:" >&5 | 13708 | echo "$as_me: failed program was:" >&5 |
11624 | sed 's/^/| /' conftest.$ac_ext >&5 | 13709 | sed 's/^/| /' conftest.$ac_ext >&5 |
11625 | 13710 | ||
11626 | eval "$as_ac_var=no" | 13711 | eval "$as_ac_var=no" |
11627 | fi | 13712 | fi |
11628 | rm -f conftest.err conftest.$ac_objext \ | 13713 | |
13714 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
11629 | conftest$ac_exeext conftest.$ac_ext | 13715 | conftest$ac_exeext conftest.$ac_ext |
11630 | fi | 13716 | fi |
11631 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 13717 | ac_res=`eval echo '${'$as_ac_var'}'` |
11632 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 13718 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
13719 | echo "${ECHO_T}$ac_res" >&6; } | ||
11633 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 13720 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
11634 | cat >>confdefs.h <<_ACEOF | 13721 | cat >>confdefs.h <<_ACEOF |
11635 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 13722 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -11644,9 +13731,9 @@ done | |||
11644 | for ac_func in gai_strerror | 13731 | for ac_func in gai_strerror |
11645 | do | 13732 | do |
11646 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 13733 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
11647 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 13734 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
11648 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 13735 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
11649 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 13736 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
11650 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13737 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11651 | else | 13738 | else |
11652 | cat >conftest.$ac_ext <<_ACEOF | 13739 | cat >conftest.$ac_ext <<_ACEOF |
@@ -11672,52 +13759,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
11672 | 13759 | ||
11673 | #undef $ac_func | 13760 | #undef $ac_func |
11674 | 13761 | ||
11675 | /* Override any gcc2 internal prototype to avoid an error. */ | 13762 | /* Override any GCC internal prototype to avoid an error. |
13763 | Use char because int might match the return type of a GCC | ||
13764 | builtin and then its argument prototype would still apply. */ | ||
11676 | #ifdef __cplusplus | 13765 | #ifdef __cplusplus |
11677 | extern "C" | 13766 | extern "C" |
11678 | { | ||
11679 | #endif | 13767 | #endif |
11680 | /* We use char because int might match the return type of a gcc2 | ||
11681 | builtin and then its argument prototype would still apply. */ | ||
11682 | char $ac_func (); | 13768 | char $ac_func (); |
11683 | /* The GNU C library defines this for functions which it implements | 13769 | /* The GNU C library defines this for functions which it implements |
11684 | to always fail with ENOSYS. Some functions are actually named | 13770 | to always fail with ENOSYS. Some functions are actually named |
11685 | something starting with __ and the normal name is an alias. */ | 13771 | something starting with __ and the normal name is an alias. */ |
11686 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 13772 | #if defined __stub_$ac_func || defined __stub___$ac_func |
11687 | choke me | 13773 | choke me |
11688 | #else | ||
11689 | char (*f) () = $ac_func; | ||
11690 | #endif | ||
11691 | #ifdef __cplusplus | ||
11692 | } | ||
11693 | #endif | 13774 | #endif |
11694 | 13775 | ||
11695 | int | 13776 | int |
11696 | main () | 13777 | main () |
11697 | { | 13778 | { |
11698 | return f != $ac_func; | 13779 | return $ac_func (); |
11699 | ; | 13780 | ; |
11700 | return 0; | 13781 | return 0; |
11701 | } | 13782 | } |
11702 | _ACEOF | 13783 | _ACEOF |
11703 | rm -f conftest.$ac_objext conftest$ac_exeext | 13784 | rm -f conftest.$ac_objext conftest$ac_exeext |
11704 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 13785 | if { (ac_try="$ac_link" |
11705 | (eval $ac_link) 2>conftest.er1 | 13786 | case "(($ac_try" in |
13787 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13788 | *) ac_try_echo=$ac_try;; | ||
13789 | esac | ||
13790 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13791 | (eval "$ac_link") 2>conftest.er1 | ||
11706 | ac_status=$? | 13792 | ac_status=$? |
11707 | grep -v '^ *+' conftest.er1 >conftest.err | 13793 | grep -v '^ *+' conftest.er1 >conftest.err |
11708 | rm -f conftest.er1 | 13794 | rm -f conftest.er1 |
11709 | cat conftest.err >&5 | 13795 | cat conftest.err >&5 |
11710 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13796 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11711 | (exit $ac_status); } && | 13797 | (exit $ac_status); } && |
11712 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13798 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11713 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13799 | { (case "(($ac_try" in |
11714 | (eval $ac_try) 2>&5 | 13800 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13801 | *) ac_try_echo=$ac_try;; | ||
13802 | esac | ||
13803 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13804 | (eval "$ac_try") 2>&5 | ||
11715 | ac_status=$? | 13805 | ac_status=$? |
11716 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13806 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11717 | (exit $ac_status); }; } && | 13807 | (exit $ac_status); }; } && |
11718 | { ac_try='test -s conftest$ac_exeext' | 13808 | { ac_try='test -s conftest$ac_exeext' |
11719 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13809 | { (case "(($ac_try" in |
11720 | (eval $ac_try) 2>&5 | 13810 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13811 | *) ac_try_echo=$ac_try;; | ||
13812 | esac | ||
13813 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13814 | (eval "$ac_try") 2>&5 | ||
11721 | ac_status=$? | 13815 | ac_status=$? |
11722 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13816 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11723 | (exit $ac_status); }; }; then | 13817 | (exit $ac_status); }; }; then |
@@ -11726,13 +13820,15 @@ else | |||
11726 | echo "$as_me: failed program was:" >&5 | 13820 | echo "$as_me: failed program was:" >&5 |
11727 | sed 's/^/| /' conftest.$ac_ext >&5 | 13821 | sed 's/^/| /' conftest.$ac_ext >&5 |
11728 | 13822 | ||
11729 | eval "$as_ac_var=no" | 13823 | eval "$as_ac_var=no" |
11730 | fi | 13824 | fi |
11731 | rm -f conftest.err conftest.$ac_objext \ | 13825 | |
13826 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
11732 | conftest$ac_exeext conftest.$ac_ext | 13827 | conftest$ac_exeext conftest.$ac_ext |
11733 | fi | 13828 | fi |
11734 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 13829 | ac_res=`eval echo '${'$as_ac_var'}'` |
11735 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 13830 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
13831 | echo "${ECHO_T}$ac_res" >&6; } | ||
11736 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 13832 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
11737 | cat >>confdefs.h <<_ACEOF | 13833 | cat >>confdefs.h <<_ACEOF |
11738 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 13834 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -11766,23 +13862,36 @@ str = gai_strerror(0); | |||
11766 | } | 13862 | } |
11767 | _ACEOF | 13863 | _ACEOF |
11768 | rm -f conftest.$ac_objext | 13864 | rm -f conftest.$ac_objext |
11769 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 13865 | if { (ac_try="$ac_compile" |
11770 | (eval $ac_compile) 2>conftest.er1 | 13866 | case "(($ac_try" in |
13867 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13868 | *) ac_try_echo=$ac_try;; | ||
13869 | esac | ||
13870 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13871 | (eval "$ac_compile") 2>conftest.er1 | ||
11771 | ac_status=$? | 13872 | ac_status=$? |
11772 | grep -v '^ *+' conftest.er1 >conftest.err | 13873 | grep -v '^ *+' conftest.er1 >conftest.err |
11773 | rm -f conftest.er1 | 13874 | rm -f conftest.er1 |
11774 | cat conftest.err >&5 | 13875 | cat conftest.err >&5 |
11775 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13876 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11776 | (exit $ac_status); } && | 13877 | (exit $ac_status); } && |
11777 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13878 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11778 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13879 | { (case "(($ac_try" in |
11779 | (eval $ac_try) 2>&5 | 13880 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13881 | *) ac_try_echo=$ac_try;; | ||
13882 | esac | ||
13883 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13884 | (eval "$ac_try") 2>&5 | ||
11780 | ac_status=$? | 13885 | ac_status=$? |
11781 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13886 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11782 | (exit $ac_status); }; } && | 13887 | (exit $ac_status); }; } && |
11783 | { ac_try='test -s conftest.$ac_objext' | 13888 | { ac_try='test -s conftest.$ac_objext' |
11784 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13889 | { (case "(($ac_try" in |
11785 | (eval $ac_try) 2>&5 | 13890 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13891 | *) ac_try_echo=$ac_try;; | ||
13892 | esac | ||
13893 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13894 | (eval "$ac_try") 2>&5 | ||
11786 | ac_status=$? | 13895 | ac_status=$? |
11787 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13896 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11788 | (exit $ac_status); }; }; then | 13897 | (exit $ac_status); }; }; then |
@@ -11796,19 +13905,20 @@ else | |||
11796 | echo "$as_me: failed program was:" >&5 | 13905 | echo "$as_me: failed program was:" >&5 |
11797 | sed 's/^/| /' conftest.$ac_ext >&5 | 13906 | sed 's/^/| /' conftest.$ac_ext >&5 |
11798 | 13907 | ||
13908 | |||
11799 | fi | 13909 | fi |
11800 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 13910 | |
13911 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
11801 | fi | 13912 | fi |
11802 | done | 13913 | done |
11803 | 13914 | ||
11804 | 13915 | ||
11805 | echo "$as_me:$LINENO: checking for library containing nanosleep" >&5 | 13916 | { echo "$as_me:$LINENO: checking for library containing nanosleep" >&5 |
11806 | echo $ECHO_N "checking for library containing nanosleep... $ECHO_C" >&6 | 13917 | echo $ECHO_N "checking for library containing nanosleep... $ECHO_C" >&6; } |
11807 | if test "${ac_cv_search_nanosleep+set}" = set; then | 13918 | if test "${ac_cv_search_nanosleep+set}" = set; then |
11808 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 13919 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11809 | else | 13920 | else |
11810 | ac_func_search_save_LIBS=$LIBS | 13921 | ac_func_search_save_LIBS=$LIBS |
11811 | ac_cv_search_nanosleep=no | ||
11812 | cat >conftest.$ac_ext <<_ACEOF | 13922 | cat >conftest.$ac_ext <<_ACEOF |
11813 | /* confdefs.h. */ | 13923 | /* confdefs.h. */ |
11814 | _ACEOF | 13924 | _ACEOF |
@@ -11816,113 +13926,89 @@ cat confdefs.h >>conftest.$ac_ext | |||
11816 | cat >>conftest.$ac_ext <<_ACEOF | 13926 | cat >>conftest.$ac_ext <<_ACEOF |
11817 | /* end confdefs.h. */ | 13927 | /* end confdefs.h. */ |
11818 | 13928 | ||
11819 | /* Override any gcc2 internal prototype to avoid an error. */ | 13929 | /* Override any GCC internal prototype to avoid an error. |
13930 | Use char because int might match the return type of a GCC | ||
13931 | builtin and then its argument prototype would still apply. */ | ||
11820 | #ifdef __cplusplus | 13932 | #ifdef __cplusplus |
11821 | extern "C" | 13933 | extern "C" |
11822 | #endif | 13934 | #endif |
11823 | /* We use char because int might match the return type of a gcc2 | ||
11824 | builtin and then its argument prototype would still apply. */ | ||
11825 | char nanosleep (); | 13935 | char nanosleep (); |
11826 | int | 13936 | int |
11827 | main () | 13937 | main () |
11828 | { | 13938 | { |
11829 | nanosleep (); | 13939 | return nanosleep (); |
11830 | ; | 13940 | ; |
11831 | return 0; | 13941 | return 0; |
11832 | } | 13942 | } |
11833 | _ACEOF | 13943 | _ACEOF |
11834 | rm -f conftest.$ac_objext conftest$ac_exeext | 13944 | for ac_lib in '' rt posix4; do |
11835 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 13945 | if test -z "$ac_lib"; then |
11836 | (eval $ac_link) 2>conftest.er1 | 13946 | ac_res="none required" |
13947 | else | ||
13948 | ac_res=-l$ac_lib | ||
13949 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
13950 | fi | ||
13951 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
13952 | if { (ac_try="$ac_link" | ||
13953 | case "(($ac_try" in | ||
13954 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
13955 | *) ac_try_echo=$ac_try;; | ||
13956 | esac | ||
13957 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13958 | (eval "$ac_link") 2>conftest.er1 | ||
11837 | ac_status=$? | 13959 | ac_status=$? |
11838 | grep -v '^ *+' conftest.er1 >conftest.err | 13960 | grep -v '^ *+' conftest.er1 >conftest.err |
11839 | rm -f conftest.er1 | 13961 | rm -f conftest.er1 |
11840 | cat conftest.err >&5 | 13962 | cat conftest.err >&5 |
11841 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13963 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11842 | (exit $ac_status); } && | 13964 | (exit $ac_status); } && |
11843 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 13965 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11844 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13966 | { (case "(($ac_try" in |
11845 | (eval $ac_try) 2>&5 | 13967 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13968 | *) ac_try_echo=$ac_try;; | ||
13969 | esac | ||
13970 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13971 | (eval "$ac_try") 2>&5 | ||
11846 | ac_status=$? | 13972 | ac_status=$? |
11847 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13973 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11848 | (exit $ac_status); }; } && | 13974 | (exit $ac_status); }; } && |
11849 | { ac_try='test -s conftest$ac_exeext' | 13975 | { ac_try='test -s conftest$ac_exeext' |
11850 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13976 | { (case "(($ac_try" in |
11851 | (eval $ac_try) 2>&5 | 13977 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
13978 | *) ac_try_echo=$ac_try;; | ||
13979 | esac | ||
13980 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
13981 | (eval "$ac_try") 2>&5 | ||
11852 | ac_status=$? | 13982 | ac_status=$? |
11853 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13983 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11854 | (exit $ac_status); }; }; then | 13984 | (exit $ac_status); }; }; then |
11855 | ac_cv_search_nanosleep="none required" | 13985 | ac_cv_search_nanosleep=$ac_res |
11856 | else | 13986 | else |
11857 | echo "$as_me: failed program was:" >&5 | 13987 | echo "$as_me: failed program was:" >&5 |
11858 | sed 's/^/| /' conftest.$ac_ext >&5 | 13988 | sed 's/^/| /' conftest.$ac_ext >&5 |
11859 | 13989 | ||
11860 | fi | ||
11861 | rm -f conftest.err conftest.$ac_objext \ | ||
11862 | conftest$ac_exeext conftest.$ac_ext | ||
11863 | if test "$ac_cv_search_nanosleep" = no; then | ||
11864 | for ac_lib in rt posix4; do | ||
11865 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
11866 | cat >conftest.$ac_ext <<_ACEOF | ||
11867 | /* confdefs.h. */ | ||
11868 | _ACEOF | ||
11869 | cat confdefs.h >>conftest.$ac_ext | ||
11870 | cat >>conftest.$ac_ext <<_ACEOF | ||
11871 | /* end confdefs.h. */ | ||
11872 | 13990 | ||
11873 | /* Override any gcc2 internal prototype to avoid an error. */ | 13991 | fi |
11874 | #ifdef __cplusplus | ||
11875 | extern "C" | ||
11876 | #endif | ||
11877 | /* We use char because int might match the return type of a gcc2 | ||
11878 | builtin and then its argument prototype would still apply. */ | ||
11879 | char nanosleep (); | ||
11880 | int | ||
11881 | main () | ||
11882 | { | ||
11883 | nanosleep (); | ||
11884 | ; | ||
11885 | return 0; | ||
11886 | } | ||
11887 | _ACEOF | ||
11888 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
11889 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
11890 | (eval $ac_link) 2>conftest.er1 | ||
11891 | ac_status=$? | ||
11892 | grep -v '^ *+' conftest.er1 >conftest.err | ||
11893 | rm -f conftest.er1 | ||
11894 | cat conftest.err >&5 | ||
11895 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
11896 | (exit $ac_status); } && | ||
11897 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
11898 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
11899 | (eval $ac_try) 2>&5 | ||
11900 | ac_status=$? | ||
11901 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
11902 | (exit $ac_status); }; } && | ||
11903 | { ac_try='test -s conftest$ac_exeext' | ||
11904 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
11905 | (eval $ac_try) 2>&5 | ||
11906 | ac_status=$? | ||
11907 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
11908 | (exit $ac_status); }; }; then | ||
11909 | ac_cv_search_nanosleep="-l$ac_lib" | ||
11910 | break | ||
11911 | else | ||
11912 | echo "$as_me: failed program was:" >&5 | ||
11913 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
11914 | 13992 | ||
13993 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13994 | conftest$ac_exeext | ||
13995 | if test "${ac_cv_search_nanosleep+set}" = set; then | ||
13996 | break | ||
11915 | fi | 13997 | fi |
11916 | rm -f conftest.err conftest.$ac_objext \ | 13998 | done |
11917 | conftest$ac_exeext conftest.$ac_ext | 13999 | if test "${ac_cv_search_nanosleep+set}" = set; then |
11918 | done | 14000 | : |
14001 | else | ||
14002 | ac_cv_search_nanosleep=no | ||
11919 | fi | 14003 | fi |
14004 | rm conftest.$ac_ext | ||
11920 | LIBS=$ac_func_search_save_LIBS | 14005 | LIBS=$ac_func_search_save_LIBS |
11921 | fi | 14006 | fi |
11922 | echo "$as_me:$LINENO: result: $ac_cv_search_nanosleep" >&5 | 14007 | { echo "$as_me:$LINENO: result: $ac_cv_search_nanosleep" >&5 |
11923 | echo "${ECHO_T}$ac_cv_search_nanosleep" >&6 | 14008 | echo "${ECHO_T}$ac_cv_search_nanosleep" >&6; } |
11924 | if test "$ac_cv_search_nanosleep" != no; then | 14009 | ac_res=$ac_cv_search_nanosleep |
11925 | test "$ac_cv_search_nanosleep" = "none required" || LIBS="$ac_cv_search_nanosleep $LIBS" | 14010 | if test "$ac_res" != no; then |
14011 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
11926 | 14012 | ||
11927 | cat >>confdefs.h <<\_ACEOF | 14013 | cat >>confdefs.h <<\_ACEOF |
11928 | #define HAVE_NANOSLEEP 1 | 14014 | #define HAVE_NANOSLEEP 1 |
@@ -11931,8 +14017,8 @@ _ACEOF | |||
11931 | fi | 14017 | fi |
11932 | 14018 | ||
11933 | 14019 | ||
11934 | echo "$as_me:$LINENO: checking whether getrusage is declared" >&5 | 14020 | { echo "$as_me:$LINENO: checking whether getrusage is declared" >&5 |
11935 | echo $ECHO_N "checking whether getrusage is declared... $ECHO_C" >&6 | 14021 | echo $ECHO_N "checking whether getrusage is declared... $ECHO_C" >&6; } |
11936 | if test "${ac_cv_have_decl_getrusage+set}" = set; then | 14022 | if test "${ac_cv_have_decl_getrusage+set}" = set; then |
11937 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14023 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11938 | else | 14024 | else |
@@ -11948,6 +14034,7 @@ main () | |||
11948 | { | 14034 | { |
11949 | #ifndef getrusage | 14035 | #ifndef getrusage |
11950 | char *p = (char *) getrusage; | 14036 | char *p = (char *) getrusage; |
14037 | return !p; | ||
11951 | #endif | 14038 | #endif |
11952 | 14039 | ||
11953 | ; | 14040 | ; |
@@ -11955,23 +14042,36 @@ main () | |||
11955 | } | 14042 | } |
11956 | _ACEOF | 14043 | _ACEOF |
11957 | rm -f conftest.$ac_objext | 14044 | rm -f conftest.$ac_objext |
11958 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 14045 | if { (ac_try="$ac_compile" |
11959 | (eval $ac_compile) 2>conftest.er1 | 14046 | case "(($ac_try" in |
14047 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14048 | *) ac_try_echo=$ac_try;; | ||
14049 | esac | ||
14050 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14051 | (eval "$ac_compile") 2>conftest.er1 | ||
11960 | ac_status=$? | 14052 | ac_status=$? |
11961 | grep -v '^ *+' conftest.er1 >conftest.err | 14053 | grep -v '^ *+' conftest.er1 >conftest.err |
11962 | rm -f conftest.er1 | 14054 | rm -f conftest.er1 |
11963 | cat conftest.err >&5 | 14055 | cat conftest.err >&5 |
11964 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14056 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11965 | (exit $ac_status); } && | 14057 | (exit $ac_status); } && |
11966 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14058 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11967 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14059 | { (case "(($ac_try" in |
11968 | (eval $ac_try) 2>&5 | 14060 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14061 | *) ac_try_echo=$ac_try;; | ||
14062 | esac | ||
14063 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14064 | (eval "$ac_try") 2>&5 | ||
11969 | ac_status=$? | 14065 | ac_status=$? |
11970 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14066 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11971 | (exit $ac_status); }; } && | 14067 | (exit $ac_status); }; } && |
11972 | { ac_try='test -s conftest.$ac_objext' | 14068 | { ac_try='test -s conftest.$ac_objext' |
11973 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14069 | { (case "(($ac_try" in |
11974 | (eval $ac_try) 2>&5 | 14070 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14071 | *) ac_try_echo=$ac_try;; | ||
14072 | esac | ||
14073 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14074 | (eval "$ac_try") 2>&5 | ||
11975 | ac_status=$? | 14075 | ac_status=$? |
11976 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14076 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11977 | (exit $ac_status); }; }; then | 14077 | (exit $ac_status); }; }; then |
@@ -11980,20 +14080,21 @@ else | |||
11980 | echo "$as_me: failed program was:" >&5 | 14080 | echo "$as_me: failed program was:" >&5 |
11981 | sed 's/^/| /' conftest.$ac_ext >&5 | 14081 | sed 's/^/| /' conftest.$ac_ext >&5 |
11982 | 14082 | ||
11983 | ac_cv_have_decl_getrusage=no | 14083 | ac_cv_have_decl_getrusage=no |
11984 | fi | 14084 | fi |
11985 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 14085 | |
14086 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
11986 | fi | 14087 | fi |
11987 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_getrusage" >&5 | 14088 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_getrusage" >&5 |
11988 | echo "${ECHO_T}$ac_cv_have_decl_getrusage" >&6 | 14089 | echo "${ECHO_T}$ac_cv_have_decl_getrusage" >&6; } |
11989 | if test $ac_cv_have_decl_getrusage = yes; then | 14090 | if test $ac_cv_have_decl_getrusage = yes; then |
11990 | 14091 | ||
11991 | for ac_func in getrusage | 14092 | for ac_func in getrusage |
11992 | do | 14093 | do |
11993 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14094 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
11994 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 14095 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
11995 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 14096 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
11996 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 14097 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
11997 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14098 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
11998 | else | 14099 | else |
11999 | cat >conftest.$ac_ext <<_ACEOF | 14100 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12019,52 +14120,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12019 | 14120 | ||
12020 | #undef $ac_func | 14121 | #undef $ac_func |
12021 | 14122 | ||
12022 | /* Override any gcc2 internal prototype to avoid an error. */ | 14123 | /* Override any GCC internal prototype to avoid an error. |
14124 | Use char because int might match the return type of a GCC | ||
14125 | builtin and then its argument prototype would still apply. */ | ||
12023 | #ifdef __cplusplus | 14126 | #ifdef __cplusplus |
12024 | extern "C" | 14127 | extern "C" |
12025 | { | ||
12026 | #endif | 14128 | #endif |
12027 | /* We use char because int might match the return type of a gcc2 | ||
12028 | builtin and then its argument prototype would still apply. */ | ||
12029 | char $ac_func (); | 14129 | char $ac_func (); |
12030 | /* The GNU C library defines this for functions which it implements | 14130 | /* The GNU C library defines this for functions which it implements |
12031 | to always fail with ENOSYS. Some functions are actually named | 14131 | to always fail with ENOSYS. Some functions are actually named |
12032 | something starting with __ and the normal name is an alias. */ | 14132 | something starting with __ and the normal name is an alias. */ |
12033 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 14133 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12034 | choke me | 14134 | choke me |
12035 | #else | ||
12036 | char (*f) () = $ac_func; | ||
12037 | #endif | ||
12038 | #ifdef __cplusplus | ||
12039 | } | ||
12040 | #endif | 14135 | #endif |
12041 | 14136 | ||
12042 | int | 14137 | int |
12043 | main () | 14138 | main () |
12044 | { | 14139 | { |
12045 | return f != $ac_func; | 14140 | return $ac_func (); |
12046 | ; | 14141 | ; |
12047 | return 0; | 14142 | return 0; |
12048 | } | 14143 | } |
12049 | _ACEOF | 14144 | _ACEOF |
12050 | rm -f conftest.$ac_objext conftest$ac_exeext | 14145 | rm -f conftest.$ac_objext conftest$ac_exeext |
12051 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14146 | if { (ac_try="$ac_link" |
12052 | (eval $ac_link) 2>conftest.er1 | 14147 | case "(($ac_try" in |
14148 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14149 | *) ac_try_echo=$ac_try;; | ||
14150 | esac | ||
14151 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14152 | (eval "$ac_link") 2>conftest.er1 | ||
12053 | ac_status=$? | 14153 | ac_status=$? |
12054 | grep -v '^ *+' conftest.er1 >conftest.err | 14154 | grep -v '^ *+' conftest.er1 >conftest.err |
12055 | rm -f conftest.er1 | 14155 | rm -f conftest.er1 |
12056 | cat conftest.err >&5 | 14156 | cat conftest.err >&5 |
12057 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14157 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12058 | (exit $ac_status); } && | 14158 | (exit $ac_status); } && |
12059 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14159 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12060 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14160 | { (case "(($ac_try" in |
12061 | (eval $ac_try) 2>&5 | 14161 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14162 | *) ac_try_echo=$ac_try;; | ||
14163 | esac | ||
14164 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14165 | (eval "$ac_try") 2>&5 | ||
12062 | ac_status=$? | 14166 | ac_status=$? |
12063 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14167 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12064 | (exit $ac_status); }; } && | 14168 | (exit $ac_status); }; } && |
12065 | { ac_try='test -s conftest$ac_exeext' | 14169 | { ac_try='test -s conftest$ac_exeext' |
12066 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14170 | { (case "(($ac_try" in |
12067 | (eval $ac_try) 2>&5 | 14171 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14172 | *) ac_try_echo=$ac_try;; | ||
14173 | esac | ||
14174 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14175 | (eval "$ac_try") 2>&5 | ||
12068 | ac_status=$? | 14176 | ac_status=$? |
12069 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14177 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12070 | (exit $ac_status); }; }; then | 14178 | (exit $ac_status); }; }; then |
@@ -12073,13 +14181,15 @@ else | |||
12073 | echo "$as_me: failed program was:" >&5 | 14181 | echo "$as_me: failed program was:" >&5 |
12074 | sed 's/^/| /' conftest.$ac_ext >&5 | 14182 | sed 's/^/| /' conftest.$ac_ext >&5 |
12075 | 14183 | ||
12076 | eval "$as_ac_var=no" | 14184 | eval "$as_ac_var=no" |
12077 | fi | 14185 | fi |
12078 | rm -f conftest.err conftest.$ac_objext \ | 14186 | |
14187 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12079 | conftest$ac_exeext conftest.$ac_ext | 14188 | conftest$ac_exeext conftest.$ac_ext |
12080 | fi | 14189 | fi |
12081 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 14190 | ac_res=`eval echo '${'$as_ac_var'}'` |
12082 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 14191 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
14192 | echo "${ECHO_T}$ac_res" >&6; } | ||
12083 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 14193 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
12084 | cat >>confdefs.h <<_ACEOF | 14194 | cat >>confdefs.h <<_ACEOF |
12085 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 14195 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -12090,8 +14200,8 @@ done | |||
12090 | 14200 | ||
12091 | fi | 14201 | fi |
12092 | 14202 | ||
12093 | echo "$as_me:$LINENO: checking whether strsep is declared" >&5 | 14203 | { echo "$as_me:$LINENO: checking whether strsep is declared" >&5 |
12094 | echo $ECHO_N "checking whether strsep is declared... $ECHO_C" >&6 | 14204 | echo $ECHO_N "checking whether strsep is declared... $ECHO_C" >&6; } |
12095 | if test "${ac_cv_have_decl_strsep+set}" = set; then | 14205 | if test "${ac_cv_have_decl_strsep+set}" = set; then |
12096 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14206 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12097 | else | 14207 | else |
@@ -12112,6 +14222,7 @@ main () | |||
12112 | { | 14222 | { |
12113 | #ifndef strsep | 14223 | #ifndef strsep |
12114 | char *p = (char *) strsep; | 14224 | char *p = (char *) strsep; |
14225 | return !p; | ||
12115 | #endif | 14226 | #endif |
12116 | 14227 | ||
12117 | ; | 14228 | ; |
@@ -12119,23 +14230,36 @@ main () | |||
12119 | } | 14230 | } |
12120 | _ACEOF | 14231 | _ACEOF |
12121 | rm -f conftest.$ac_objext | 14232 | rm -f conftest.$ac_objext |
12122 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 14233 | if { (ac_try="$ac_compile" |
12123 | (eval $ac_compile) 2>conftest.er1 | 14234 | case "(($ac_try" in |
14235 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14236 | *) ac_try_echo=$ac_try;; | ||
14237 | esac | ||
14238 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14239 | (eval "$ac_compile") 2>conftest.er1 | ||
12124 | ac_status=$? | 14240 | ac_status=$? |
12125 | grep -v '^ *+' conftest.er1 >conftest.err | 14241 | grep -v '^ *+' conftest.er1 >conftest.err |
12126 | rm -f conftest.er1 | 14242 | rm -f conftest.er1 |
12127 | cat conftest.err >&5 | 14243 | cat conftest.err >&5 |
12128 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14244 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12129 | (exit $ac_status); } && | 14245 | (exit $ac_status); } && |
12130 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14246 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12131 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14247 | { (case "(($ac_try" in |
12132 | (eval $ac_try) 2>&5 | 14248 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14249 | *) ac_try_echo=$ac_try;; | ||
14250 | esac | ||
14251 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14252 | (eval "$ac_try") 2>&5 | ||
12133 | ac_status=$? | 14253 | ac_status=$? |
12134 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14254 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12135 | (exit $ac_status); }; } && | 14255 | (exit $ac_status); }; } && |
12136 | { ac_try='test -s conftest.$ac_objext' | 14256 | { ac_try='test -s conftest.$ac_objext' |
12137 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14257 | { (case "(($ac_try" in |
12138 | (eval $ac_try) 2>&5 | 14258 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14259 | *) ac_try_echo=$ac_try;; | ||
14260 | esac | ||
14261 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14262 | (eval "$ac_try") 2>&5 | ||
12139 | ac_status=$? | 14263 | ac_status=$? |
12140 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14264 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12141 | (exit $ac_status); }; }; then | 14265 | (exit $ac_status); }; }; then |
@@ -12144,20 +14268,21 @@ else | |||
12144 | echo "$as_me: failed program was:" >&5 | 14268 | echo "$as_me: failed program was:" >&5 |
12145 | sed 's/^/| /' conftest.$ac_ext >&5 | 14269 | sed 's/^/| /' conftest.$ac_ext >&5 |
12146 | 14270 | ||
12147 | ac_cv_have_decl_strsep=no | 14271 | ac_cv_have_decl_strsep=no |
12148 | fi | 14272 | fi |
12149 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 14273 | |
14274 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
12150 | fi | 14275 | fi |
12151 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_strsep" >&5 | 14276 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_strsep" >&5 |
12152 | echo "${ECHO_T}$ac_cv_have_decl_strsep" >&6 | 14277 | echo "${ECHO_T}$ac_cv_have_decl_strsep" >&6; } |
12153 | if test $ac_cv_have_decl_strsep = yes; then | 14278 | if test $ac_cv_have_decl_strsep = yes; then |
12154 | 14279 | ||
12155 | for ac_func in strsep | 14280 | for ac_func in strsep |
12156 | do | 14281 | do |
12157 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14282 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
12158 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 14283 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
12159 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 14284 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
12160 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 14285 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
12161 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14286 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12162 | else | 14287 | else |
12163 | cat >conftest.$ac_ext <<_ACEOF | 14288 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12183,52 +14308,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12183 | 14308 | ||
12184 | #undef $ac_func | 14309 | #undef $ac_func |
12185 | 14310 | ||
12186 | /* Override any gcc2 internal prototype to avoid an error. */ | 14311 | /* Override any GCC internal prototype to avoid an error. |
14312 | Use char because int might match the return type of a GCC | ||
14313 | builtin and then its argument prototype would still apply. */ | ||
12187 | #ifdef __cplusplus | 14314 | #ifdef __cplusplus |
12188 | extern "C" | 14315 | extern "C" |
12189 | { | ||
12190 | #endif | 14316 | #endif |
12191 | /* We use char because int might match the return type of a gcc2 | ||
12192 | builtin and then its argument prototype would still apply. */ | ||
12193 | char $ac_func (); | 14317 | char $ac_func (); |
12194 | /* The GNU C library defines this for functions which it implements | 14318 | /* The GNU C library defines this for functions which it implements |
12195 | to always fail with ENOSYS. Some functions are actually named | 14319 | to always fail with ENOSYS. Some functions are actually named |
12196 | something starting with __ and the normal name is an alias. */ | 14320 | something starting with __ and the normal name is an alias. */ |
12197 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 14321 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12198 | choke me | 14322 | choke me |
12199 | #else | ||
12200 | char (*f) () = $ac_func; | ||
12201 | #endif | ||
12202 | #ifdef __cplusplus | ||
12203 | } | ||
12204 | #endif | 14323 | #endif |
12205 | 14324 | ||
12206 | int | 14325 | int |
12207 | main () | 14326 | main () |
12208 | { | 14327 | { |
12209 | return f != $ac_func; | 14328 | return $ac_func (); |
12210 | ; | 14329 | ; |
12211 | return 0; | 14330 | return 0; |
12212 | } | 14331 | } |
12213 | _ACEOF | 14332 | _ACEOF |
12214 | rm -f conftest.$ac_objext conftest$ac_exeext | 14333 | rm -f conftest.$ac_objext conftest$ac_exeext |
12215 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14334 | if { (ac_try="$ac_link" |
12216 | (eval $ac_link) 2>conftest.er1 | 14335 | case "(($ac_try" in |
14336 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14337 | *) ac_try_echo=$ac_try;; | ||
14338 | esac | ||
14339 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14340 | (eval "$ac_link") 2>conftest.er1 | ||
12217 | ac_status=$? | 14341 | ac_status=$? |
12218 | grep -v '^ *+' conftest.er1 >conftest.err | 14342 | grep -v '^ *+' conftest.er1 >conftest.err |
12219 | rm -f conftest.er1 | 14343 | rm -f conftest.er1 |
12220 | cat conftest.err >&5 | 14344 | cat conftest.err >&5 |
12221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14345 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12222 | (exit $ac_status); } && | 14346 | (exit $ac_status); } && |
12223 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14347 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12224 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14348 | { (case "(($ac_try" in |
12225 | (eval $ac_try) 2>&5 | 14349 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14350 | *) ac_try_echo=$ac_try;; | ||
14351 | esac | ||
14352 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14353 | (eval "$ac_try") 2>&5 | ||
12226 | ac_status=$? | 14354 | ac_status=$? |
12227 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14355 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12228 | (exit $ac_status); }; } && | 14356 | (exit $ac_status); }; } && |
12229 | { ac_try='test -s conftest$ac_exeext' | 14357 | { ac_try='test -s conftest$ac_exeext' |
12230 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14358 | { (case "(($ac_try" in |
12231 | (eval $ac_try) 2>&5 | 14359 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14360 | *) ac_try_echo=$ac_try;; | ||
14361 | esac | ||
14362 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14363 | (eval "$ac_try") 2>&5 | ||
12232 | ac_status=$? | 14364 | ac_status=$? |
12233 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14365 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12234 | (exit $ac_status); }; }; then | 14366 | (exit $ac_status); }; }; then |
@@ -12237,13 +14369,15 @@ else | |||
12237 | echo "$as_me: failed program was:" >&5 | 14369 | echo "$as_me: failed program was:" >&5 |
12238 | sed 's/^/| /' conftest.$ac_ext >&5 | 14370 | sed 's/^/| /' conftest.$ac_ext >&5 |
12239 | 14371 | ||
12240 | eval "$as_ac_var=no" | 14372 | eval "$as_ac_var=no" |
12241 | fi | 14373 | fi |
12242 | rm -f conftest.err conftest.$ac_objext \ | 14374 | |
14375 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12243 | conftest$ac_exeext conftest.$ac_ext | 14376 | conftest$ac_exeext conftest.$ac_ext |
12244 | fi | 14377 | fi |
12245 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 14378 | ac_res=`eval echo '${'$as_ac_var'}'` |
12246 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 14379 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
14380 | echo "${ECHO_T}$ac_res" >&6; } | ||
12247 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 14381 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
12248 | cat >>confdefs.h <<_ACEOF | 14382 | cat >>confdefs.h <<_ACEOF |
12249 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 14383 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -12255,8 +14389,8 @@ done | |||
12255 | fi | 14389 | fi |
12256 | 14390 | ||
12257 | 14391 | ||
12258 | echo "$as_me:$LINENO: checking whether tcsendbreak is declared" >&5 | 14392 | { echo "$as_me:$LINENO: checking whether tcsendbreak is declared" >&5 |
12259 | echo $ECHO_N "checking whether tcsendbreak is declared... $ECHO_C" >&6 | 14393 | echo $ECHO_N "checking whether tcsendbreak is declared... $ECHO_C" >&6; } |
12260 | if test "${ac_cv_have_decl_tcsendbreak+set}" = set; then | 14394 | if test "${ac_cv_have_decl_tcsendbreak+set}" = set; then |
12261 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14395 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12262 | else | 14396 | else |
@@ -12274,6 +14408,7 @@ main () | |||
12274 | { | 14408 | { |
12275 | #ifndef tcsendbreak | 14409 | #ifndef tcsendbreak |
12276 | char *p = (char *) tcsendbreak; | 14410 | char *p = (char *) tcsendbreak; |
14411 | return !p; | ||
12277 | #endif | 14412 | #endif |
12278 | 14413 | ||
12279 | ; | 14414 | ; |
@@ -12281,23 +14416,36 @@ main () | |||
12281 | } | 14416 | } |
12282 | _ACEOF | 14417 | _ACEOF |
12283 | rm -f conftest.$ac_objext | 14418 | rm -f conftest.$ac_objext |
12284 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 14419 | if { (ac_try="$ac_compile" |
12285 | (eval $ac_compile) 2>conftest.er1 | 14420 | case "(($ac_try" in |
14421 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14422 | *) ac_try_echo=$ac_try;; | ||
14423 | esac | ||
14424 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14425 | (eval "$ac_compile") 2>conftest.er1 | ||
12286 | ac_status=$? | 14426 | ac_status=$? |
12287 | grep -v '^ *+' conftest.er1 >conftest.err | 14427 | grep -v '^ *+' conftest.er1 >conftest.err |
12288 | rm -f conftest.er1 | 14428 | rm -f conftest.er1 |
12289 | cat conftest.err >&5 | 14429 | cat conftest.err >&5 |
12290 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14430 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12291 | (exit $ac_status); } && | 14431 | (exit $ac_status); } && |
12292 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14432 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12293 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14433 | { (case "(($ac_try" in |
12294 | (eval $ac_try) 2>&5 | 14434 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14435 | *) ac_try_echo=$ac_try;; | ||
14436 | esac | ||
14437 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14438 | (eval "$ac_try") 2>&5 | ||
12295 | ac_status=$? | 14439 | ac_status=$? |
12296 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14440 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12297 | (exit $ac_status); }; } && | 14441 | (exit $ac_status); }; } && |
12298 | { ac_try='test -s conftest.$ac_objext' | 14442 | { ac_try='test -s conftest.$ac_objext' |
12299 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14443 | { (case "(($ac_try" in |
12300 | (eval $ac_try) 2>&5 | 14444 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14445 | *) ac_try_echo=$ac_try;; | ||
14446 | esac | ||
14447 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14448 | (eval "$ac_try") 2>&5 | ||
12301 | ac_status=$? | 14449 | ac_status=$? |
12302 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14450 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12303 | (exit $ac_status); }; }; then | 14451 | (exit $ac_status); }; }; then |
@@ -12306,12 +14454,13 @@ else | |||
12306 | echo "$as_me: failed program was:" >&5 | 14454 | echo "$as_me: failed program was:" >&5 |
12307 | sed 's/^/| /' conftest.$ac_ext >&5 | 14455 | sed 's/^/| /' conftest.$ac_ext >&5 |
12308 | 14456 | ||
12309 | ac_cv_have_decl_tcsendbreak=no | 14457 | ac_cv_have_decl_tcsendbreak=no |
12310 | fi | 14458 | fi |
12311 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 14459 | |
14460 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
12312 | fi | 14461 | fi |
12313 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_tcsendbreak" >&5 | 14462 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_tcsendbreak" >&5 |
12314 | echo "${ECHO_T}$ac_cv_have_decl_tcsendbreak" >&6 | 14463 | echo "${ECHO_T}$ac_cv_have_decl_tcsendbreak" >&6; } |
12315 | if test $ac_cv_have_decl_tcsendbreak = yes; then | 14464 | if test $ac_cv_have_decl_tcsendbreak = yes; then |
12316 | cat >>confdefs.h <<\_ACEOF | 14465 | cat >>confdefs.h <<\_ACEOF |
12317 | #define HAVE_TCSENDBREAK 1 | 14466 | #define HAVE_TCSENDBREAK 1 |
@@ -12322,9 +14471,9 @@ else | |||
12322 | for ac_func in tcsendbreak | 14471 | for ac_func in tcsendbreak |
12323 | do | 14472 | do |
12324 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14473 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
12325 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 14474 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
12326 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 14475 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
12327 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 14476 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
12328 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14477 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12329 | else | 14478 | else |
12330 | cat >conftest.$ac_ext <<_ACEOF | 14479 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12350,52 +14499,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12350 | 14499 | ||
12351 | #undef $ac_func | 14500 | #undef $ac_func |
12352 | 14501 | ||
12353 | /* Override any gcc2 internal prototype to avoid an error. */ | 14502 | /* Override any GCC internal prototype to avoid an error. |
14503 | Use char because int might match the return type of a GCC | ||
14504 | builtin and then its argument prototype would still apply. */ | ||
12354 | #ifdef __cplusplus | 14505 | #ifdef __cplusplus |
12355 | extern "C" | 14506 | extern "C" |
12356 | { | ||
12357 | #endif | 14507 | #endif |
12358 | /* We use char because int might match the return type of a gcc2 | ||
12359 | builtin and then its argument prototype would still apply. */ | ||
12360 | char $ac_func (); | 14508 | char $ac_func (); |
12361 | /* The GNU C library defines this for functions which it implements | 14509 | /* The GNU C library defines this for functions which it implements |
12362 | to always fail with ENOSYS. Some functions are actually named | 14510 | to always fail with ENOSYS. Some functions are actually named |
12363 | something starting with __ and the normal name is an alias. */ | 14511 | something starting with __ and the normal name is an alias. */ |
12364 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 14512 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12365 | choke me | 14513 | choke me |
12366 | #else | ||
12367 | char (*f) () = $ac_func; | ||
12368 | #endif | ||
12369 | #ifdef __cplusplus | ||
12370 | } | ||
12371 | #endif | 14514 | #endif |
12372 | 14515 | ||
12373 | int | 14516 | int |
12374 | main () | 14517 | main () |
12375 | { | 14518 | { |
12376 | return f != $ac_func; | 14519 | return $ac_func (); |
12377 | ; | 14520 | ; |
12378 | return 0; | 14521 | return 0; |
12379 | } | 14522 | } |
12380 | _ACEOF | 14523 | _ACEOF |
12381 | rm -f conftest.$ac_objext conftest$ac_exeext | 14524 | rm -f conftest.$ac_objext conftest$ac_exeext |
12382 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14525 | if { (ac_try="$ac_link" |
12383 | (eval $ac_link) 2>conftest.er1 | 14526 | case "(($ac_try" in |
14527 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14528 | *) ac_try_echo=$ac_try;; | ||
14529 | esac | ||
14530 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14531 | (eval "$ac_link") 2>conftest.er1 | ||
12384 | ac_status=$? | 14532 | ac_status=$? |
12385 | grep -v '^ *+' conftest.er1 >conftest.err | 14533 | grep -v '^ *+' conftest.er1 >conftest.err |
12386 | rm -f conftest.er1 | 14534 | rm -f conftest.er1 |
12387 | cat conftest.err >&5 | 14535 | cat conftest.err >&5 |
12388 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14536 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12389 | (exit $ac_status); } && | 14537 | (exit $ac_status); } && |
12390 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14538 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12391 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14539 | { (case "(($ac_try" in |
12392 | (eval $ac_try) 2>&5 | 14540 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14541 | *) ac_try_echo=$ac_try;; | ||
14542 | esac | ||
14543 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14544 | (eval "$ac_try") 2>&5 | ||
12393 | ac_status=$? | 14545 | ac_status=$? |
12394 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14546 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12395 | (exit $ac_status); }; } && | 14547 | (exit $ac_status); }; } && |
12396 | { ac_try='test -s conftest$ac_exeext' | 14548 | { ac_try='test -s conftest$ac_exeext' |
12397 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14549 | { (case "(($ac_try" in |
12398 | (eval $ac_try) 2>&5 | 14550 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14551 | *) ac_try_echo=$ac_try;; | ||
14552 | esac | ||
14553 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14554 | (eval "$ac_try") 2>&5 | ||
12399 | ac_status=$? | 14555 | ac_status=$? |
12400 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14556 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12401 | (exit $ac_status); }; }; then | 14557 | (exit $ac_status); }; }; then |
@@ -12404,13 +14560,15 @@ else | |||
12404 | echo "$as_me: failed program was:" >&5 | 14560 | echo "$as_me: failed program was:" >&5 |
12405 | sed 's/^/| /' conftest.$ac_ext >&5 | 14561 | sed 's/^/| /' conftest.$ac_ext >&5 |
12406 | 14562 | ||
12407 | eval "$as_ac_var=no" | 14563 | eval "$as_ac_var=no" |
12408 | fi | 14564 | fi |
12409 | rm -f conftest.err conftest.$ac_objext \ | 14565 | |
14566 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12410 | conftest$ac_exeext conftest.$ac_ext | 14567 | conftest$ac_exeext conftest.$ac_ext |
12411 | fi | 14568 | fi |
12412 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 14569 | ac_res=`eval echo '${'$as_ac_var'}'` |
12413 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 14570 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
14571 | echo "${ECHO_T}$ac_res" >&6; } | ||
12414 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 14572 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
12415 | cat >>confdefs.h <<_ACEOF | 14573 | cat >>confdefs.h <<_ACEOF |
12416 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 14574 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -12422,8 +14580,8 @@ done | |||
12422 | fi | 14580 | fi |
12423 | 14581 | ||
12424 | 14582 | ||
12425 | echo "$as_me:$LINENO: checking whether h_errno is declared" >&5 | 14583 | { echo "$as_me:$LINENO: checking whether h_errno is declared" >&5 |
12426 | echo $ECHO_N "checking whether h_errno is declared... $ECHO_C" >&6 | 14584 | echo $ECHO_N "checking whether h_errno is declared... $ECHO_C" >&6; } |
12427 | if test "${ac_cv_have_decl_h_errno+set}" = set; then | 14585 | if test "${ac_cv_have_decl_h_errno+set}" = set; then |
12428 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14586 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12429 | else | 14587 | else |
@@ -12440,6 +14598,7 @@ main () | |||
12440 | { | 14598 | { |
12441 | #ifndef h_errno | 14599 | #ifndef h_errno |
12442 | char *p = (char *) h_errno; | 14600 | char *p = (char *) h_errno; |
14601 | return !p; | ||
12443 | #endif | 14602 | #endif |
12444 | 14603 | ||
12445 | ; | 14604 | ; |
@@ -12447,23 +14606,36 @@ main () | |||
12447 | } | 14606 | } |
12448 | _ACEOF | 14607 | _ACEOF |
12449 | rm -f conftest.$ac_objext | 14608 | rm -f conftest.$ac_objext |
12450 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 14609 | if { (ac_try="$ac_compile" |
12451 | (eval $ac_compile) 2>conftest.er1 | 14610 | case "(($ac_try" in |
14611 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14612 | *) ac_try_echo=$ac_try;; | ||
14613 | esac | ||
14614 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14615 | (eval "$ac_compile") 2>conftest.er1 | ||
12452 | ac_status=$? | 14616 | ac_status=$? |
12453 | grep -v '^ *+' conftest.er1 >conftest.err | 14617 | grep -v '^ *+' conftest.er1 >conftest.err |
12454 | rm -f conftest.er1 | 14618 | rm -f conftest.er1 |
12455 | cat conftest.err >&5 | 14619 | cat conftest.err >&5 |
12456 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14620 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12457 | (exit $ac_status); } && | 14621 | (exit $ac_status); } && |
12458 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14622 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12459 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14623 | { (case "(($ac_try" in |
12460 | (eval $ac_try) 2>&5 | 14624 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14625 | *) ac_try_echo=$ac_try;; | ||
14626 | esac | ||
14627 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14628 | (eval "$ac_try") 2>&5 | ||
12461 | ac_status=$? | 14629 | ac_status=$? |
12462 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14630 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12463 | (exit $ac_status); }; } && | 14631 | (exit $ac_status); }; } && |
12464 | { ac_try='test -s conftest.$ac_objext' | 14632 | { ac_try='test -s conftest.$ac_objext' |
12465 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14633 | { (case "(($ac_try" in |
12466 | (eval $ac_try) 2>&5 | 14634 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14635 | *) ac_try_echo=$ac_try;; | ||
14636 | esac | ||
14637 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14638 | (eval "$ac_try") 2>&5 | ||
12467 | ac_status=$? | 14639 | ac_status=$? |
12468 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14640 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12469 | (exit $ac_status); }; }; then | 14641 | (exit $ac_status); }; }; then |
@@ -12472,12 +14644,13 @@ else | |||
12472 | echo "$as_me: failed program was:" >&5 | 14644 | echo "$as_me: failed program was:" >&5 |
12473 | sed 's/^/| /' conftest.$ac_ext >&5 | 14645 | sed 's/^/| /' conftest.$ac_ext >&5 |
12474 | 14646 | ||
12475 | ac_cv_have_decl_h_errno=no | 14647 | ac_cv_have_decl_h_errno=no |
12476 | fi | 14648 | fi |
12477 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 14649 | |
14650 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
12478 | fi | 14651 | fi |
12479 | echo "$as_me:$LINENO: result: $ac_cv_have_decl_h_errno" >&5 | 14652 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl_h_errno" >&5 |
12480 | echo "${ECHO_T}$ac_cv_have_decl_h_errno" >&6 | 14653 | echo "${ECHO_T}$ac_cv_have_decl_h_errno" >&6; } |
12481 | if test $ac_cv_have_decl_h_errno = yes; then | 14654 | if test $ac_cv_have_decl_h_errno = yes; then |
12482 | 14655 | ||
12483 | cat >>confdefs.h <<_ACEOF | 14656 | cat >>confdefs.h <<_ACEOF |
@@ -12499,9 +14672,9 @@ fi | |||
12499 | for ac_func in setresuid | 14672 | for ac_func in setresuid |
12500 | do | 14673 | do |
12501 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14674 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
12502 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 14675 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
12503 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 14676 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
12504 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 14677 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
12505 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14678 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12506 | else | 14679 | else |
12507 | cat >conftest.$ac_ext <<_ACEOF | 14680 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12527,52 +14700,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12527 | 14700 | ||
12528 | #undef $ac_func | 14701 | #undef $ac_func |
12529 | 14702 | ||
12530 | /* Override any gcc2 internal prototype to avoid an error. */ | 14703 | /* Override any GCC internal prototype to avoid an error. |
14704 | Use char because int might match the return type of a GCC | ||
14705 | builtin and then its argument prototype would still apply. */ | ||
12531 | #ifdef __cplusplus | 14706 | #ifdef __cplusplus |
12532 | extern "C" | 14707 | extern "C" |
12533 | { | ||
12534 | #endif | 14708 | #endif |
12535 | /* We use char because int might match the return type of a gcc2 | ||
12536 | builtin and then its argument prototype would still apply. */ | ||
12537 | char $ac_func (); | 14709 | char $ac_func (); |
12538 | /* The GNU C library defines this for functions which it implements | 14710 | /* The GNU C library defines this for functions which it implements |
12539 | to always fail with ENOSYS. Some functions are actually named | 14711 | to always fail with ENOSYS. Some functions are actually named |
12540 | something starting with __ and the normal name is an alias. */ | 14712 | something starting with __ and the normal name is an alias. */ |
12541 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 14713 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12542 | choke me | 14714 | choke me |
12543 | #else | ||
12544 | char (*f) () = $ac_func; | ||
12545 | #endif | ||
12546 | #ifdef __cplusplus | ||
12547 | } | ||
12548 | #endif | 14715 | #endif |
12549 | 14716 | ||
12550 | int | 14717 | int |
12551 | main () | 14718 | main () |
12552 | { | 14719 | { |
12553 | return f != $ac_func; | 14720 | return $ac_func (); |
12554 | ; | 14721 | ; |
12555 | return 0; | 14722 | return 0; |
12556 | } | 14723 | } |
12557 | _ACEOF | 14724 | _ACEOF |
12558 | rm -f conftest.$ac_objext conftest$ac_exeext | 14725 | rm -f conftest.$ac_objext conftest$ac_exeext |
12559 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14726 | if { (ac_try="$ac_link" |
12560 | (eval $ac_link) 2>conftest.er1 | 14727 | case "(($ac_try" in |
14728 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14729 | *) ac_try_echo=$ac_try;; | ||
14730 | esac | ||
14731 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14732 | (eval "$ac_link") 2>conftest.er1 | ||
12561 | ac_status=$? | 14733 | ac_status=$? |
12562 | grep -v '^ *+' conftest.er1 >conftest.err | 14734 | grep -v '^ *+' conftest.er1 >conftest.err |
12563 | rm -f conftest.er1 | 14735 | rm -f conftest.er1 |
12564 | cat conftest.err >&5 | 14736 | cat conftest.err >&5 |
12565 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14737 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12566 | (exit $ac_status); } && | 14738 | (exit $ac_status); } && |
12567 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14739 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12568 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14740 | { (case "(($ac_try" in |
12569 | (eval $ac_try) 2>&5 | 14741 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14742 | *) ac_try_echo=$ac_try;; | ||
14743 | esac | ||
14744 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14745 | (eval "$ac_try") 2>&5 | ||
12570 | ac_status=$? | 14746 | ac_status=$? |
12571 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14747 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12572 | (exit $ac_status); }; } && | 14748 | (exit $ac_status); }; } && |
12573 | { ac_try='test -s conftest$ac_exeext' | 14749 | { ac_try='test -s conftest$ac_exeext' |
12574 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14750 | { (case "(($ac_try" in |
12575 | (eval $ac_try) 2>&5 | 14751 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14752 | *) ac_try_echo=$ac_try;; | ||
14753 | esac | ||
14754 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14755 | (eval "$ac_try") 2>&5 | ||
12576 | ac_status=$? | 14756 | ac_status=$? |
12577 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14757 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12578 | (exit $ac_status); }; }; then | 14758 | (exit $ac_status); }; }; then |
@@ -12581,20 +14761,22 @@ else | |||
12581 | echo "$as_me: failed program was:" >&5 | 14761 | echo "$as_me: failed program was:" >&5 |
12582 | sed 's/^/| /' conftest.$ac_ext >&5 | 14762 | sed 's/^/| /' conftest.$ac_ext >&5 |
12583 | 14763 | ||
12584 | eval "$as_ac_var=no" | 14764 | eval "$as_ac_var=no" |
12585 | fi | 14765 | fi |
12586 | rm -f conftest.err conftest.$ac_objext \ | 14766 | |
14767 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12587 | conftest$ac_exeext conftest.$ac_ext | 14768 | conftest$ac_exeext conftest.$ac_ext |
12588 | fi | 14769 | fi |
12589 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 14770 | ac_res=`eval echo '${'$as_ac_var'}'` |
12590 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 14771 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
14772 | echo "${ECHO_T}$ac_res" >&6; } | ||
12591 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 14773 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
12592 | cat >>confdefs.h <<_ACEOF | 14774 | cat >>confdefs.h <<_ACEOF |
12593 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 14775 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
12594 | _ACEOF | 14776 | _ACEOF |
12595 | 14777 | ||
12596 | echo "$as_me:$LINENO: checking if setresuid seems to work" >&5 | 14778 | { echo "$as_me:$LINENO: checking if setresuid seems to work" >&5 |
12597 | echo $ECHO_N "checking if setresuid seems to work... $ECHO_C" >&6 | 14779 | echo $ECHO_N "checking if setresuid seems to work... $ECHO_C" >&6; } |
12598 | if test "$cross_compiling" = yes; then | 14780 | if test "$cross_compiling" = yes; then |
12599 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking setresuid" >&5 | 14781 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking setresuid" >&5 |
12600 | echo "$as_me: WARNING: cross compiling: not checking setresuid" >&2;} | 14782 | echo "$as_me: WARNING: cross compiling: not checking setresuid" >&2;} |
@@ -12613,18 +14795,27 @@ int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);} | |||
12613 | 14795 | ||
12614 | _ACEOF | 14796 | _ACEOF |
12615 | rm -f conftest$ac_exeext | 14797 | rm -f conftest$ac_exeext |
12616 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14798 | if { (ac_try="$ac_link" |
12617 | (eval $ac_link) 2>&5 | 14799 | case "(($ac_try" in |
14800 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14801 | *) ac_try_echo=$ac_try;; | ||
14802 | esac | ||
14803 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14804 | (eval "$ac_link") 2>&5 | ||
12618 | ac_status=$? | 14805 | ac_status=$? |
12619 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14806 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12620 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 14807 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
12621 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14808 | { (case "(($ac_try" in |
12622 | (eval $ac_try) 2>&5 | 14809 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14810 | *) ac_try_echo=$ac_try;; | ||
14811 | esac | ||
14812 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14813 | (eval "$ac_try") 2>&5 | ||
12623 | ac_status=$? | 14814 | ac_status=$? |
12624 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14815 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12625 | (exit $ac_status); }; }; then | 14816 | (exit $ac_status); }; }; then |
12626 | echo "$as_me:$LINENO: result: yes" >&5 | 14817 | { echo "$as_me:$LINENO: result: yes" >&5 |
12627 | echo "${ECHO_T}yes" >&6 | 14818 | echo "${ECHO_T}yes" >&6; } |
12628 | else | 14819 | else |
12629 | echo "$as_me: program exited with status $ac_status" >&5 | 14820 | echo "$as_me: program exited with status $ac_status" >&5 |
12630 | echo "$as_me: failed program was:" >&5 | 14821 | echo "$as_me: failed program was:" >&5 |
@@ -12636,12 +14827,14 @@ cat >>confdefs.h <<\_ACEOF | |||
12636 | #define BROKEN_SETRESUID 1 | 14827 | #define BROKEN_SETRESUID 1 |
12637 | _ACEOF | 14828 | _ACEOF |
12638 | 14829 | ||
12639 | echo "$as_me:$LINENO: result: not implemented" >&5 | 14830 | { echo "$as_me:$LINENO: result: not implemented" >&5 |
12640 | echo "${ECHO_T}not implemented" >&6 | 14831 | echo "${ECHO_T}not implemented" >&6; } |
12641 | fi | 14832 | fi |
12642 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 14833 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
12643 | fi | 14834 | fi |
12644 | 14835 | ||
14836 | |||
14837 | |||
12645 | fi | 14838 | fi |
12646 | done | 14839 | done |
12647 | 14840 | ||
@@ -12650,9 +14843,9 @@ done | |||
12650 | for ac_func in setresgid | 14843 | for ac_func in setresgid |
12651 | do | 14844 | do |
12652 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14845 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
12653 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 14846 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
12654 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 14847 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
12655 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 14848 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
12656 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 14849 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12657 | else | 14850 | else |
12658 | cat >conftest.$ac_ext <<_ACEOF | 14851 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12678,52 +14871,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12678 | 14871 | ||
12679 | #undef $ac_func | 14872 | #undef $ac_func |
12680 | 14873 | ||
12681 | /* Override any gcc2 internal prototype to avoid an error. */ | 14874 | /* Override any GCC internal prototype to avoid an error. |
14875 | Use char because int might match the return type of a GCC | ||
14876 | builtin and then its argument prototype would still apply. */ | ||
12682 | #ifdef __cplusplus | 14877 | #ifdef __cplusplus |
12683 | extern "C" | 14878 | extern "C" |
12684 | { | ||
12685 | #endif | 14879 | #endif |
12686 | /* We use char because int might match the return type of a gcc2 | ||
12687 | builtin and then its argument prototype would still apply. */ | ||
12688 | char $ac_func (); | 14880 | char $ac_func (); |
12689 | /* The GNU C library defines this for functions which it implements | 14881 | /* The GNU C library defines this for functions which it implements |
12690 | to always fail with ENOSYS. Some functions are actually named | 14882 | to always fail with ENOSYS. Some functions are actually named |
12691 | something starting with __ and the normal name is an alias. */ | 14883 | something starting with __ and the normal name is an alias. */ |
12692 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 14884 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12693 | choke me | 14885 | choke me |
12694 | #else | ||
12695 | char (*f) () = $ac_func; | ||
12696 | #endif | ||
12697 | #ifdef __cplusplus | ||
12698 | } | ||
12699 | #endif | 14886 | #endif |
12700 | 14887 | ||
12701 | int | 14888 | int |
12702 | main () | 14889 | main () |
12703 | { | 14890 | { |
12704 | return f != $ac_func; | 14891 | return $ac_func (); |
12705 | ; | 14892 | ; |
12706 | return 0; | 14893 | return 0; |
12707 | } | 14894 | } |
12708 | _ACEOF | 14895 | _ACEOF |
12709 | rm -f conftest.$ac_objext conftest$ac_exeext | 14896 | rm -f conftest.$ac_objext conftest$ac_exeext |
12710 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14897 | if { (ac_try="$ac_link" |
12711 | (eval $ac_link) 2>conftest.er1 | 14898 | case "(($ac_try" in |
14899 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14900 | *) ac_try_echo=$ac_try;; | ||
14901 | esac | ||
14902 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14903 | (eval "$ac_link") 2>conftest.er1 | ||
12712 | ac_status=$? | 14904 | ac_status=$? |
12713 | grep -v '^ *+' conftest.er1 >conftest.err | 14905 | grep -v '^ *+' conftest.er1 >conftest.err |
12714 | rm -f conftest.er1 | 14906 | rm -f conftest.er1 |
12715 | cat conftest.err >&5 | 14907 | cat conftest.err >&5 |
12716 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14908 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12717 | (exit $ac_status); } && | 14909 | (exit $ac_status); } && |
12718 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 14910 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12719 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14911 | { (case "(($ac_try" in |
12720 | (eval $ac_try) 2>&5 | 14912 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14913 | *) ac_try_echo=$ac_try;; | ||
14914 | esac | ||
14915 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14916 | (eval "$ac_try") 2>&5 | ||
12721 | ac_status=$? | 14917 | ac_status=$? |
12722 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14918 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12723 | (exit $ac_status); }; } && | 14919 | (exit $ac_status); }; } && |
12724 | { ac_try='test -s conftest$ac_exeext' | 14920 | { ac_try='test -s conftest$ac_exeext' |
12725 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14921 | { (case "(($ac_try" in |
12726 | (eval $ac_try) 2>&5 | 14922 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14923 | *) ac_try_echo=$ac_try;; | ||
14924 | esac | ||
14925 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14926 | (eval "$ac_try") 2>&5 | ||
12727 | ac_status=$? | 14927 | ac_status=$? |
12728 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14928 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12729 | (exit $ac_status); }; }; then | 14929 | (exit $ac_status); }; }; then |
@@ -12732,20 +14932,22 @@ else | |||
12732 | echo "$as_me: failed program was:" >&5 | 14932 | echo "$as_me: failed program was:" >&5 |
12733 | sed 's/^/| /' conftest.$ac_ext >&5 | 14933 | sed 's/^/| /' conftest.$ac_ext >&5 |
12734 | 14934 | ||
12735 | eval "$as_ac_var=no" | 14935 | eval "$as_ac_var=no" |
12736 | fi | 14936 | fi |
12737 | rm -f conftest.err conftest.$ac_objext \ | 14937 | |
14938 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12738 | conftest$ac_exeext conftest.$ac_ext | 14939 | conftest$ac_exeext conftest.$ac_ext |
12739 | fi | 14940 | fi |
12740 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 14941 | ac_res=`eval echo '${'$as_ac_var'}'` |
12741 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 14942 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
14943 | echo "${ECHO_T}$ac_res" >&6; } | ||
12742 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 14944 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
12743 | cat >>confdefs.h <<_ACEOF | 14945 | cat >>confdefs.h <<_ACEOF |
12744 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 14946 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
12745 | _ACEOF | 14947 | _ACEOF |
12746 | 14948 | ||
12747 | echo "$as_me:$LINENO: checking if setresgid seems to work" >&5 | 14949 | { echo "$as_me:$LINENO: checking if setresgid seems to work" >&5 |
12748 | echo $ECHO_N "checking if setresgid seems to work... $ECHO_C" >&6 | 14950 | echo $ECHO_N "checking if setresgid seems to work... $ECHO_C" >&6; } |
12749 | if test "$cross_compiling" = yes; then | 14951 | if test "$cross_compiling" = yes; then |
12750 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking setresuid" >&5 | 14952 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking setresuid" >&5 |
12751 | echo "$as_me: WARNING: cross compiling: not checking setresuid" >&2;} | 14953 | echo "$as_me: WARNING: cross compiling: not checking setresuid" >&2;} |
@@ -12764,18 +14966,27 @@ int main(){errno=0; setresgid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);} | |||
12764 | 14966 | ||
12765 | _ACEOF | 14967 | _ACEOF |
12766 | rm -f conftest$ac_exeext | 14968 | rm -f conftest$ac_exeext |
12767 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 14969 | if { (ac_try="$ac_link" |
12768 | (eval $ac_link) 2>&5 | 14970 | case "(($ac_try" in |
14971 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
14972 | *) ac_try_echo=$ac_try;; | ||
14973 | esac | ||
14974 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14975 | (eval "$ac_link") 2>&5 | ||
12769 | ac_status=$? | 14976 | ac_status=$? |
12770 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14977 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12771 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 14978 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
12772 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14979 | { (case "(($ac_try" in |
12773 | (eval $ac_try) 2>&5 | 14980 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
14981 | *) ac_try_echo=$ac_try;; | ||
14982 | esac | ||
14983 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
14984 | (eval "$ac_try") 2>&5 | ||
12774 | ac_status=$? | 14985 | ac_status=$? |
12775 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14986 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12776 | (exit $ac_status); }; }; then | 14987 | (exit $ac_status); }; }; then |
12777 | echo "$as_me:$LINENO: result: yes" >&5 | 14988 | { echo "$as_me:$LINENO: result: yes" >&5 |
12778 | echo "${ECHO_T}yes" >&6 | 14989 | echo "${ECHO_T}yes" >&6; } |
12779 | else | 14990 | else |
12780 | echo "$as_me: program exited with status $ac_status" >&5 | 14991 | echo "$as_me: program exited with status $ac_status" >&5 |
12781 | echo "$as_me: failed program was:" >&5 | 14992 | echo "$as_me: failed program was:" >&5 |
@@ -12787,12 +14998,14 @@ cat >>confdefs.h <<\_ACEOF | |||
12787 | #define BROKEN_SETRESGID 1 | 14998 | #define BROKEN_SETRESGID 1 |
12788 | _ACEOF | 14999 | _ACEOF |
12789 | 15000 | ||
12790 | echo "$as_me:$LINENO: result: not implemented" >&5 | 15001 | { echo "$as_me:$LINENO: result: not implemented" >&5 |
12791 | echo "${ECHO_T}not implemented" >&6 | 15002 | echo "${ECHO_T}not implemented" >&6; } |
12792 | fi | 15003 | fi |
12793 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 15004 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
12794 | fi | 15005 | fi |
12795 | 15006 | ||
15007 | |||
15008 | |||
12796 | fi | 15009 | fi |
12797 | done | 15010 | done |
12798 | 15011 | ||
@@ -12802,9 +15015,9 @@ done | |||
12802 | for ac_func in gettimeofday time | 15015 | for ac_func in gettimeofday time |
12803 | do | 15016 | do |
12804 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 15017 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
12805 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 15018 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
12806 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 15019 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
12807 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 15020 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
12808 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15021 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12809 | else | 15022 | else |
12810 | cat >conftest.$ac_ext <<_ACEOF | 15023 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12830,52 +15043,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12830 | 15043 | ||
12831 | #undef $ac_func | 15044 | #undef $ac_func |
12832 | 15045 | ||
12833 | /* Override any gcc2 internal prototype to avoid an error. */ | 15046 | /* Override any GCC internal prototype to avoid an error. |
15047 | Use char because int might match the return type of a GCC | ||
15048 | builtin and then its argument prototype would still apply. */ | ||
12834 | #ifdef __cplusplus | 15049 | #ifdef __cplusplus |
12835 | extern "C" | 15050 | extern "C" |
12836 | { | ||
12837 | #endif | 15051 | #endif |
12838 | /* We use char because int might match the return type of a gcc2 | ||
12839 | builtin and then its argument prototype would still apply. */ | ||
12840 | char $ac_func (); | 15052 | char $ac_func (); |
12841 | /* The GNU C library defines this for functions which it implements | 15053 | /* The GNU C library defines this for functions which it implements |
12842 | to always fail with ENOSYS. Some functions are actually named | 15054 | to always fail with ENOSYS. Some functions are actually named |
12843 | something starting with __ and the normal name is an alias. */ | 15055 | something starting with __ and the normal name is an alias. */ |
12844 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 15056 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12845 | choke me | 15057 | choke me |
12846 | #else | ||
12847 | char (*f) () = $ac_func; | ||
12848 | #endif | ||
12849 | #ifdef __cplusplus | ||
12850 | } | ||
12851 | #endif | 15058 | #endif |
12852 | 15059 | ||
12853 | int | 15060 | int |
12854 | main () | 15061 | main () |
12855 | { | 15062 | { |
12856 | return f != $ac_func; | 15063 | return $ac_func (); |
12857 | ; | 15064 | ; |
12858 | return 0; | 15065 | return 0; |
12859 | } | 15066 | } |
12860 | _ACEOF | 15067 | _ACEOF |
12861 | rm -f conftest.$ac_objext conftest$ac_exeext | 15068 | rm -f conftest.$ac_objext conftest$ac_exeext |
12862 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15069 | if { (ac_try="$ac_link" |
12863 | (eval $ac_link) 2>conftest.er1 | 15070 | case "(($ac_try" in |
15071 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15072 | *) ac_try_echo=$ac_try;; | ||
15073 | esac | ||
15074 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15075 | (eval "$ac_link") 2>conftest.er1 | ||
12864 | ac_status=$? | 15076 | ac_status=$? |
12865 | grep -v '^ *+' conftest.er1 >conftest.err | 15077 | grep -v '^ *+' conftest.er1 >conftest.err |
12866 | rm -f conftest.er1 | 15078 | rm -f conftest.er1 |
12867 | cat conftest.err >&5 | 15079 | cat conftest.err >&5 |
12868 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15080 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12869 | (exit $ac_status); } && | 15081 | (exit $ac_status); } && |
12870 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15082 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12871 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15083 | { (case "(($ac_try" in |
12872 | (eval $ac_try) 2>&5 | 15084 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15085 | *) ac_try_echo=$ac_try;; | ||
15086 | esac | ||
15087 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15088 | (eval "$ac_try") 2>&5 | ||
12873 | ac_status=$? | 15089 | ac_status=$? |
12874 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15090 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12875 | (exit $ac_status); }; } && | 15091 | (exit $ac_status); }; } && |
12876 | { ac_try='test -s conftest$ac_exeext' | 15092 | { ac_try='test -s conftest$ac_exeext' |
12877 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15093 | { (case "(($ac_try" in |
12878 | (eval $ac_try) 2>&5 | 15094 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15095 | *) ac_try_echo=$ac_try;; | ||
15096 | esac | ||
15097 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15098 | (eval "$ac_try") 2>&5 | ||
12879 | ac_status=$? | 15099 | ac_status=$? |
12880 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15100 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12881 | (exit $ac_status); }; }; then | 15101 | (exit $ac_status); }; }; then |
@@ -12884,13 +15104,15 @@ else | |||
12884 | echo "$as_me: failed program was:" >&5 | 15104 | echo "$as_me: failed program was:" >&5 |
12885 | sed 's/^/| /' conftest.$ac_ext >&5 | 15105 | sed 's/^/| /' conftest.$ac_ext >&5 |
12886 | 15106 | ||
12887 | eval "$as_ac_var=no" | 15107 | eval "$as_ac_var=no" |
12888 | fi | 15108 | fi |
12889 | rm -f conftest.err conftest.$ac_objext \ | 15109 | |
15110 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12890 | conftest$ac_exeext conftest.$ac_ext | 15111 | conftest$ac_exeext conftest.$ac_ext |
12891 | fi | 15112 | fi |
12892 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 15113 | ac_res=`eval echo '${'$as_ac_var'}'` |
12893 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 15114 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
15115 | echo "${ECHO_T}$ac_res" >&6; } | ||
12894 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 15116 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
12895 | cat >>confdefs.h <<_ACEOF | 15117 | cat >>confdefs.h <<_ACEOF |
12896 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 15118 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -12908,9 +15130,9 @@ done | |||
12908 | for ac_func in endutent getutent getutid getutline pututline setutent | 15130 | for ac_func in endutent getutent getutid getutline pututline setutent |
12909 | do | 15131 | do |
12910 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 15132 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
12911 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 15133 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
12912 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 15134 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
12913 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 15135 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
12914 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15136 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
12915 | else | 15137 | else |
12916 | cat >conftest.$ac_ext <<_ACEOF | 15138 | cat >conftest.$ac_ext <<_ACEOF |
@@ -12936,52 +15158,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
12936 | 15158 | ||
12937 | #undef $ac_func | 15159 | #undef $ac_func |
12938 | 15160 | ||
12939 | /* Override any gcc2 internal prototype to avoid an error. */ | 15161 | /* Override any GCC internal prototype to avoid an error. |
15162 | Use char because int might match the return type of a GCC | ||
15163 | builtin and then its argument prototype would still apply. */ | ||
12940 | #ifdef __cplusplus | 15164 | #ifdef __cplusplus |
12941 | extern "C" | 15165 | extern "C" |
12942 | { | ||
12943 | #endif | 15166 | #endif |
12944 | /* We use char because int might match the return type of a gcc2 | ||
12945 | builtin and then its argument prototype would still apply. */ | ||
12946 | char $ac_func (); | 15167 | char $ac_func (); |
12947 | /* The GNU C library defines this for functions which it implements | 15168 | /* The GNU C library defines this for functions which it implements |
12948 | to always fail with ENOSYS. Some functions are actually named | 15169 | to always fail with ENOSYS. Some functions are actually named |
12949 | something starting with __ and the normal name is an alias. */ | 15170 | something starting with __ and the normal name is an alias. */ |
12950 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 15171 | #if defined __stub_$ac_func || defined __stub___$ac_func |
12951 | choke me | 15172 | choke me |
12952 | #else | ||
12953 | char (*f) () = $ac_func; | ||
12954 | #endif | ||
12955 | #ifdef __cplusplus | ||
12956 | } | ||
12957 | #endif | 15173 | #endif |
12958 | 15174 | ||
12959 | int | 15175 | int |
12960 | main () | 15176 | main () |
12961 | { | 15177 | { |
12962 | return f != $ac_func; | 15178 | return $ac_func (); |
12963 | ; | 15179 | ; |
12964 | return 0; | 15180 | return 0; |
12965 | } | 15181 | } |
12966 | _ACEOF | 15182 | _ACEOF |
12967 | rm -f conftest.$ac_objext conftest$ac_exeext | 15183 | rm -f conftest.$ac_objext conftest$ac_exeext |
12968 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15184 | if { (ac_try="$ac_link" |
12969 | (eval $ac_link) 2>conftest.er1 | 15185 | case "(($ac_try" in |
15186 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15187 | *) ac_try_echo=$ac_try;; | ||
15188 | esac | ||
15189 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15190 | (eval "$ac_link") 2>conftest.er1 | ||
12970 | ac_status=$? | 15191 | ac_status=$? |
12971 | grep -v '^ *+' conftest.er1 >conftest.err | 15192 | grep -v '^ *+' conftest.er1 >conftest.err |
12972 | rm -f conftest.er1 | 15193 | rm -f conftest.er1 |
12973 | cat conftest.err >&5 | 15194 | cat conftest.err >&5 |
12974 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15195 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12975 | (exit $ac_status); } && | 15196 | (exit $ac_status); } && |
12976 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15197 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12977 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15198 | { (case "(($ac_try" in |
12978 | (eval $ac_try) 2>&5 | 15199 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15200 | *) ac_try_echo=$ac_try;; | ||
15201 | esac | ||
15202 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15203 | (eval "$ac_try") 2>&5 | ||
12979 | ac_status=$? | 15204 | ac_status=$? |
12980 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15205 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12981 | (exit $ac_status); }; } && | 15206 | (exit $ac_status); }; } && |
12982 | { ac_try='test -s conftest$ac_exeext' | 15207 | { ac_try='test -s conftest$ac_exeext' |
12983 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15208 | { (case "(($ac_try" in |
12984 | (eval $ac_try) 2>&5 | 15209 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15210 | *) ac_try_echo=$ac_try;; | ||
15211 | esac | ||
15212 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15213 | (eval "$ac_try") 2>&5 | ||
12985 | ac_status=$? | 15214 | ac_status=$? |
12986 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15215 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12987 | (exit $ac_status); }; }; then | 15216 | (exit $ac_status); }; }; then |
@@ -12990,13 +15219,15 @@ else | |||
12990 | echo "$as_me: failed program was:" >&5 | 15219 | echo "$as_me: failed program was:" >&5 |
12991 | sed 's/^/| /' conftest.$ac_ext >&5 | 15220 | sed 's/^/| /' conftest.$ac_ext >&5 |
12992 | 15221 | ||
12993 | eval "$as_ac_var=no" | 15222 | eval "$as_ac_var=no" |
12994 | fi | 15223 | fi |
12995 | rm -f conftest.err conftest.$ac_objext \ | 15224 | |
15225 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
12996 | conftest$ac_exeext conftest.$ac_ext | 15226 | conftest$ac_exeext conftest.$ac_ext |
12997 | fi | 15227 | fi |
12998 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 15228 | ac_res=`eval echo '${'$as_ac_var'}'` |
12999 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 15229 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
15230 | echo "${ECHO_T}$ac_res" >&6; } | ||
13000 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 15231 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
13001 | cat >>confdefs.h <<_ACEOF | 15232 | cat >>confdefs.h <<_ACEOF |
13002 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 15233 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -13009,9 +15240,9 @@ done | |||
13009 | for ac_func in utmpname | 15240 | for ac_func in utmpname |
13010 | do | 15241 | do |
13011 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 15242 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
13012 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 15243 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
13013 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 15244 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
13014 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 15245 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
13015 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15246 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13016 | else | 15247 | else |
13017 | cat >conftest.$ac_ext <<_ACEOF | 15248 | cat >conftest.$ac_ext <<_ACEOF |
@@ -13037,52 +15268,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
13037 | 15268 | ||
13038 | #undef $ac_func | 15269 | #undef $ac_func |
13039 | 15270 | ||
13040 | /* Override any gcc2 internal prototype to avoid an error. */ | 15271 | /* Override any GCC internal prototype to avoid an error. |
15272 | Use char because int might match the return type of a GCC | ||
15273 | builtin and then its argument prototype would still apply. */ | ||
13041 | #ifdef __cplusplus | 15274 | #ifdef __cplusplus |
13042 | extern "C" | 15275 | extern "C" |
13043 | { | ||
13044 | #endif | 15276 | #endif |
13045 | /* We use char because int might match the return type of a gcc2 | ||
13046 | builtin and then its argument prototype would still apply. */ | ||
13047 | char $ac_func (); | 15277 | char $ac_func (); |
13048 | /* The GNU C library defines this for functions which it implements | 15278 | /* The GNU C library defines this for functions which it implements |
13049 | to always fail with ENOSYS. Some functions are actually named | 15279 | to always fail with ENOSYS. Some functions are actually named |
13050 | something starting with __ and the normal name is an alias. */ | 15280 | something starting with __ and the normal name is an alias. */ |
13051 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 15281 | #if defined __stub_$ac_func || defined __stub___$ac_func |
13052 | choke me | 15282 | choke me |
13053 | #else | ||
13054 | char (*f) () = $ac_func; | ||
13055 | #endif | ||
13056 | #ifdef __cplusplus | ||
13057 | } | ||
13058 | #endif | 15283 | #endif |
13059 | 15284 | ||
13060 | int | 15285 | int |
13061 | main () | 15286 | main () |
13062 | { | 15287 | { |
13063 | return f != $ac_func; | 15288 | return $ac_func (); |
13064 | ; | 15289 | ; |
13065 | return 0; | 15290 | return 0; |
13066 | } | 15291 | } |
13067 | _ACEOF | 15292 | _ACEOF |
13068 | rm -f conftest.$ac_objext conftest$ac_exeext | 15293 | rm -f conftest.$ac_objext conftest$ac_exeext |
13069 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15294 | if { (ac_try="$ac_link" |
13070 | (eval $ac_link) 2>conftest.er1 | 15295 | case "(($ac_try" in |
15296 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15297 | *) ac_try_echo=$ac_try;; | ||
15298 | esac | ||
15299 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15300 | (eval "$ac_link") 2>conftest.er1 | ||
13071 | ac_status=$? | 15301 | ac_status=$? |
13072 | grep -v '^ *+' conftest.er1 >conftest.err | 15302 | grep -v '^ *+' conftest.er1 >conftest.err |
13073 | rm -f conftest.er1 | 15303 | rm -f conftest.er1 |
13074 | cat conftest.err >&5 | 15304 | cat conftest.err >&5 |
13075 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15305 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13076 | (exit $ac_status); } && | 15306 | (exit $ac_status); } && |
13077 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15307 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13078 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15308 | { (case "(($ac_try" in |
13079 | (eval $ac_try) 2>&5 | 15309 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15310 | *) ac_try_echo=$ac_try;; | ||
15311 | esac | ||
15312 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15313 | (eval "$ac_try") 2>&5 | ||
13080 | ac_status=$? | 15314 | ac_status=$? |
13081 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15315 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13082 | (exit $ac_status); }; } && | 15316 | (exit $ac_status); }; } && |
13083 | { ac_try='test -s conftest$ac_exeext' | 15317 | { ac_try='test -s conftest$ac_exeext' |
13084 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15318 | { (case "(($ac_try" in |
13085 | (eval $ac_try) 2>&5 | 15319 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15320 | *) ac_try_echo=$ac_try;; | ||
15321 | esac | ||
15322 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15323 | (eval "$ac_try") 2>&5 | ||
13086 | ac_status=$? | 15324 | ac_status=$? |
13087 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15325 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13088 | (exit $ac_status); }; }; then | 15326 | (exit $ac_status); }; }; then |
@@ -13091,13 +15329,15 @@ else | |||
13091 | echo "$as_me: failed program was:" >&5 | 15329 | echo "$as_me: failed program was:" >&5 |
13092 | sed 's/^/| /' conftest.$ac_ext >&5 | 15330 | sed 's/^/| /' conftest.$ac_ext >&5 |
13093 | 15331 | ||
13094 | eval "$as_ac_var=no" | 15332 | eval "$as_ac_var=no" |
13095 | fi | 15333 | fi |
13096 | rm -f conftest.err conftest.$ac_objext \ | 15334 | |
15335 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13097 | conftest$ac_exeext conftest.$ac_ext | 15336 | conftest$ac_exeext conftest.$ac_ext |
13098 | fi | 15337 | fi |
13099 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 15338 | ac_res=`eval echo '${'$as_ac_var'}'` |
13100 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 15339 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
15340 | echo "${ECHO_T}$ac_res" >&6; } | ||
13101 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 15341 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
13102 | cat >>confdefs.h <<_ACEOF | 15342 | cat >>confdefs.h <<_ACEOF |
13103 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 15343 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -13114,9 +15354,9 @@ done | |||
13114 | for ac_func in endutxent getutxent getutxid getutxline pututxline | 15354 | for ac_func in endutxent getutxent getutxid getutxline pututxline |
13115 | do | 15355 | do |
13116 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 15356 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
13117 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 15357 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
13118 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 15358 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
13119 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 15359 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
13120 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15360 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13121 | else | 15361 | else |
13122 | cat >conftest.$ac_ext <<_ACEOF | 15362 | cat >conftest.$ac_ext <<_ACEOF |
@@ -13142,52 +15382,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
13142 | 15382 | ||
13143 | #undef $ac_func | 15383 | #undef $ac_func |
13144 | 15384 | ||
13145 | /* Override any gcc2 internal prototype to avoid an error. */ | 15385 | /* Override any GCC internal prototype to avoid an error. |
15386 | Use char because int might match the return type of a GCC | ||
15387 | builtin and then its argument prototype would still apply. */ | ||
13146 | #ifdef __cplusplus | 15388 | #ifdef __cplusplus |
13147 | extern "C" | 15389 | extern "C" |
13148 | { | ||
13149 | #endif | 15390 | #endif |
13150 | /* We use char because int might match the return type of a gcc2 | ||
13151 | builtin and then its argument prototype would still apply. */ | ||
13152 | char $ac_func (); | 15391 | char $ac_func (); |
13153 | /* The GNU C library defines this for functions which it implements | 15392 | /* The GNU C library defines this for functions which it implements |
13154 | to always fail with ENOSYS. Some functions are actually named | 15393 | to always fail with ENOSYS. Some functions are actually named |
13155 | something starting with __ and the normal name is an alias. */ | 15394 | something starting with __ and the normal name is an alias. */ |
13156 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 15395 | #if defined __stub_$ac_func || defined __stub___$ac_func |
13157 | choke me | 15396 | choke me |
13158 | #else | ||
13159 | char (*f) () = $ac_func; | ||
13160 | #endif | ||
13161 | #ifdef __cplusplus | ||
13162 | } | ||
13163 | #endif | 15397 | #endif |
13164 | 15398 | ||
13165 | int | 15399 | int |
13166 | main () | 15400 | main () |
13167 | { | 15401 | { |
13168 | return f != $ac_func; | 15402 | return $ac_func (); |
13169 | ; | 15403 | ; |
13170 | return 0; | 15404 | return 0; |
13171 | } | 15405 | } |
13172 | _ACEOF | 15406 | _ACEOF |
13173 | rm -f conftest.$ac_objext conftest$ac_exeext | 15407 | rm -f conftest.$ac_objext conftest$ac_exeext |
13174 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15408 | if { (ac_try="$ac_link" |
13175 | (eval $ac_link) 2>conftest.er1 | 15409 | case "(($ac_try" in |
15410 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15411 | *) ac_try_echo=$ac_try;; | ||
15412 | esac | ||
15413 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15414 | (eval "$ac_link") 2>conftest.er1 | ||
13176 | ac_status=$? | 15415 | ac_status=$? |
13177 | grep -v '^ *+' conftest.er1 >conftest.err | 15416 | grep -v '^ *+' conftest.er1 >conftest.err |
13178 | rm -f conftest.er1 | 15417 | rm -f conftest.er1 |
13179 | cat conftest.err >&5 | 15418 | cat conftest.err >&5 |
13180 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15419 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13181 | (exit $ac_status); } && | 15420 | (exit $ac_status); } && |
13182 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15421 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13183 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15422 | { (case "(($ac_try" in |
13184 | (eval $ac_try) 2>&5 | 15423 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15424 | *) ac_try_echo=$ac_try;; | ||
15425 | esac | ||
15426 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15427 | (eval "$ac_try") 2>&5 | ||
13185 | ac_status=$? | 15428 | ac_status=$? |
13186 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15429 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13187 | (exit $ac_status); }; } && | 15430 | (exit $ac_status); }; } && |
13188 | { ac_try='test -s conftest$ac_exeext' | 15431 | { ac_try='test -s conftest$ac_exeext' |
13189 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15432 | { (case "(($ac_try" in |
13190 | (eval $ac_try) 2>&5 | 15433 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15434 | *) ac_try_echo=$ac_try;; | ||
15435 | esac | ||
15436 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15437 | (eval "$ac_try") 2>&5 | ||
13191 | ac_status=$? | 15438 | ac_status=$? |
13192 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15439 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13193 | (exit $ac_status); }; }; then | 15440 | (exit $ac_status); }; }; then |
@@ -13196,13 +15443,15 @@ else | |||
13196 | echo "$as_me: failed program was:" >&5 | 15443 | echo "$as_me: failed program was:" >&5 |
13197 | sed 's/^/| /' conftest.$ac_ext >&5 | 15444 | sed 's/^/| /' conftest.$ac_ext >&5 |
13198 | 15445 | ||
13199 | eval "$as_ac_var=no" | 15446 | eval "$as_ac_var=no" |
13200 | fi | 15447 | fi |
13201 | rm -f conftest.err conftest.$ac_objext \ | 15448 | |
15449 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13202 | conftest$ac_exeext conftest.$ac_ext | 15450 | conftest$ac_exeext conftest.$ac_ext |
13203 | fi | 15451 | fi |
13204 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 15452 | ac_res=`eval echo '${'$as_ac_var'}'` |
13205 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 15453 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
15454 | echo "${ECHO_T}$ac_res" >&6; } | ||
13206 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 15455 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
13207 | cat >>confdefs.h <<_ACEOF | 15456 | cat >>confdefs.h <<_ACEOF |
13208 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 15457 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -13216,9 +15465,9 @@ done | |||
13216 | for ac_func in setutxent utmpxname | 15465 | for ac_func in setutxent utmpxname |
13217 | do | 15466 | do |
13218 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 15467 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
13219 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 15468 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
13220 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 15469 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
13221 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 15470 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
13222 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15471 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13223 | else | 15472 | else |
13224 | cat >conftest.$ac_ext <<_ACEOF | 15473 | cat >conftest.$ac_ext <<_ACEOF |
@@ -13244,52 +15493,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
13244 | 15493 | ||
13245 | #undef $ac_func | 15494 | #undef $ac_func |
13246 | 15495 | ||
13247 | /* Override any gcc2 internal prototype to avoid an error. */ | 15496 | /* Override any GCC internal prototype to avoid an error. |
15497 | Use char because int might match the return type of a GCC | ||
15498 | builtin and then its argument prototype would still apply. */ | ||
13248 | #ifdef __cplusplus | 15499 | #ifdef __cplusplus |
13249 | extern "C" | 15500 | extern "C" |
13250 | { | ||
13251 | #endif | 15501 | #endif |
13252 | /* We use char because int might match the return type of a gcc2 | ||
13253 | builtin and then its argument prototype would still apply. */ | ||
13254 | char $ac_func (); | 15502 | char $ac_func (); |
13255 | /* The GNU C library defines this for functions which it implements | 15503 | /* The GNU C library defines this for functions which it implements |
13256 | to always fail with ENOSYS. Some functions are actually named | 15504 | to always fail with ENOSYS. Some functions are actually named |
13257 | something starting with __ and the normal name is an alias. */ | 15505 | something starting with __ and the normal name is an alias. */ |
13258 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 15506 | #if defined __stub_$ac_func || defined __stub___$ac_func |
13259 | choke me | 15507 | choke me |
13260 | #else | ||
13261 | char (*f) () = $ac_func; | ||
13262 | #endif | ||
13263 | #ifdef __cplusplus | ||
13264 | } | ||
13265 | #endif | 15508 | #endif |
13266 | 15509 | ||
13267 | int | 15510 | int |
13268 | main () | 15511 | main () |
13269 | { | 15512 | { |
13270 | return f != $ac_func; | 15513 | return $ac_func (); |
13271 | ; | 15514 | ; |
13272 | return 0; | 15515 | return 0; |
13273 | } | 15516 | } |
13274 | _ACEOF | 15517 | _ACEOF |
13275 | rm -f conftest.$ac_objext conftest$ac_exeext | 15518 | rm -f conftest.$ac_objext conftest$ac_exeext |
13276 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15519 | if { (ac_try="$ac_link" |
13277 | (eval $ac_link) 2>conftest.er1 | 15520 | case "(($ac_try" in |
15521 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15522 | *) ac_try_echo=$ac_try;; | ||
15523 | esac | ||
15524 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15525 | (eval "$ac_link") 2>conftest.er1 | ||
13278 | ac_status=$? | 15526 | ac_status=$? |
13279 | grep -v '^ *+' conftest.er1 >conftest.err | 15527 | grep -v '^ *+' conftest.er1 >conftest.err |
13280 | rm -f conftest.er1 | 15528 | rm -f conftest.er1 |
13281 | cat conftest.err >&5 | 15529 | cat conftest.err >&5 |
13282 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15530 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13283 | (exit $ac_status); } && | 15531 | (exit $ac_status); } && |
13284 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15532 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13285 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15533 | { (case "(($ac_try" in |
13286 | (eval $ac_try) 2>&5 | 15534 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15535 | *) ac_try_echo=$ac_try;; | ||
15536 | esac | ||
15537 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15538 | (eval "$ac_try") 2>&5 | ||
13287 | ac_status=$? | 15539 | ac_status=$? |
13288 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15540 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13289 | (exit $ac_status); }; } && | 15541 | (exit $ac_status); }; } && |
13290 | { ac_try='test -s conftest$ac_exeext' | 15542 | { ac_try='test -s conftest$ac_exeext' |
13291 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15543 | { (case "(($ac_try" in |
13292 | (eval $ac_try) 2>&5 | 15544 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15545 | *) ac_try_echo=$ac_try;; | ||
15546 | esac | ||
15547 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15548 | (eval "$ac_try") 2>&5 | ||
13293 | ac_status=$? | 15549 | ac_status=$? |
13294 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15550 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13295 | (exit $ac_status); }; }; then | 15551 | (exit $ac_status); }; }; then |
@@ -13298,13 +15554,15 @@ else | |||
13298 | echo "$as_me: failed program was:" >&5 | 15554 | echo "$as_me: failed program was:" >&5 |
13299 | sed 's/^/| /' conftest.$ac_ext >&5 | 15555 | sed 's/^/| /' conftest.$ac_ext >&5 |
13300 | 15556 | ||
13301 | eval "$as_ac_var=no" | 15557 | eval "$as_ac_var=no" |
13302 | fi | 15558 | fi |
13303 | rm -f conftest.err conftest.$ac_objext \ | 15559 | |
15560 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13304 | conftest$ac_exeext conftest.$ac_ext | 15561 | conftest$ac_exeext conftest.$ac_ext |
13305 | fi | 15562 | fi |
13306 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 15563 | ac_res=`eval echo '${'$as_ac_var'}'` |
13307 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 15564 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
15565 | echo "${ECHO_T}$ac_res" >&6; } | ||
13308 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 15566 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
13309 | cat >>confdefs.h <<_ACEOF | 15567 | cat >>confdefs.h <<_ACEOF |
13310 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 15568 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -13314,8 +15572,8 @@ fi | |||
13314 | done | 15572 | done |
13315 | 15573 | ||
13316 | 15574 | ||
13317 | echo "$as_me:$LINENO: checking for daemon" >&5 | 15575 | { echo "$as_me:$LINENO: checking for daemon" >&5 |
13318 | echo $ECHO_N "checking for daemon... $ECHO_C" >&6 | 15576 | echo $ECHO_N "checking for daemon... $ECHO_C" >&6; } |
13319 | if test "${ac_cv_func_daemon+set}" = set; then | 15577 | if test "${ac_cv_func_daemon+set}" = set; then |
13320 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15578 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13321 | else | 15579 | else |
@@ -13342,52 +15600,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
13342 | 15600 | ||
13343 | #undef daemon | 15601 | #undef daemon |
13344 | 15602 | ||
13345 | /* Override any gcc2 internal prototype to avoid an error. */ | 15603 | /* Override any GCC internal prototype to avoid an error. |
15604 | Use char because int might match the return type of a GCC | ||
15605 | builtin and then its argument prototype would still apply. */ | ||
13346 | #ifdef __cplusplus | 15606 | #ifdef __cplusplus |
13347 | extern "C" | 15607 | extern "C" |
13348 | { | ||
13349 | #endif | 15608 | #endif |
13350 | /* We use char because int might match the return type of a gcc2 | ||
13351 | builtin and then its argument prototype would still apply. */ | ||
13352 | char daemon (); | 15609 | char daemon (); |
13353 | /* The GNU C library defines this for functions which it implements | 15610 | /* The GNU C library defines this for functions which it implements |
13354 | to always fail with ENOSYS. Some functions are actually named | 15611 | to always fail with ENOSYS. Some functions are actually named |
13355 | something starting with __ and the normal name is an alias. */ | 15612 | something starting with __ and the normal name is an alias. */ |
13356 | #if defined (__stub_daemon) || defined (__stub___daemon) | 15613 | #if defined __stub_daemon || defined __stub___daemon |
13357 | choke me | 15614 | choke me |
13358 | #else | ||
13359 | char (*f) () = daemon; | ||
13360 | #endif | ||
13361 | #ifdef __cplusplus | ||
13362 | } | ||
13363 | #endif | 15615 | #endif |
13364 | 15616 | ||
13365 | int | 15617 | int |
13366 | main () | 15618 | main () |
13367 | { | 15619 | { |
13368 | return f != daemon; | 15620 | return daemon (); |
13369 | ; | 15621 | ; |
13370 | return 0; | 15622 | return 0; |
13371 | } | 15623 | } |
13372 | _ACEOF | 15624 | _ACEOF |
13373 | rm -f conftest.$ac_objext conftest$ac_exeext | 15625 | rm -f conftest.$ac_objext conftest$ac_exeext |
13374 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15626 | if { (ac_try="$ac_link" |
13375 | (eval $ac_link) 2>conftest.er1 | 15627 | case "(($ac_try" in |
15628 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15629 | *) ac_try_echo=$ac_try;; | ||
15630 | esac | ||
15631 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15632 | (eval "$ac_link") 2>conftest.er1 | ||
13376 | ac_status=$? | 15633 | ac_status=$? |
13377 | grep -v '^ *+' conftest.er1 >conftest.err | 15634 | grep -v '^ *+' conftest.er1 >conftest.err |
13378 | rm -f conftest.er1 | 15635 | rm -f conftest.er1 |
13379 | cat conftest.err >&5 | 15636 | cat conftest.err >&5 |
13380 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15637 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13381 | (exit $ac_status); } && | 15638 | (exit $ac_status); } && |
13382 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15639 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13383 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15640 | { (case "(($ac_try" in |
13384 | (eval $ac_try) 2>&5 | 15641 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15642 | *) ac_try_echo=$ac_try;; | ||
15643 | esac | ||
15644 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15645 | (eval "$ac_try") 2>&5 | ||
13385 | ac_status=$? | 15646 | ac_status=$? |
13386 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15647 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13387 | (exit $ac_status); }; } && | 15648 | (exit $ac_status); }; } && |
13388 | { ac_try='test -s conftest$ac_exeext' | 15649 | { ac_try='test -s conftest$ac_exeext' |
13389 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15650 | { (case "(($ac_try" in |
13390 | (eval $ac_try) 2>&5 | 15651 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15652 | *) ac_try_echo=$ac_try;; | ||
15653 | esac | ||
15654 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15655 | (eval "$ac_try") 2>&5 | ||
13391 | ac_status=$? | 15656 | ac_status=$? |
13392 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15657 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13393 | (exit $ac_status); }; }; then | 15658 | (exit $ac_status); }; }; then |
@@ -13396,13 +15661,14 @@ else | |||
13396 | echo "$as_me: failed program was:" >&5 | 15661 | echo "$as_me: failed program was:" >&5 |
13397 | sed 's/^/| /' conftest.$ac_ext >&5 | 15662 | sed 's/^/| /' conftest.$ac_ext >&5 |
13398 | 15663 | ||
13399 | ac_cv_func_daemon=no | 15664 | ac_cv_func_daemon=no |
13400 | fi | 15665 | fi |
13401 | rm -f conftest.err conftest.$ac_objext \ | 15666 | |
15667 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13402 | conftest$ac_exeext conftest.$ac_ext | 15668 | conftest$ac_exeext conftest.$ac_ext |
13403 | fi | 15669 | fi |
13404 | echo "$as_me:$LINENO: result: $ac_cv_func_daemon" >&5 | 15670 | { echo "$as_me:$LINENO: result: $ac_cv_func_daemon" >&5 |
13405 | echo "${ECHO_T}$ac_cv_func_daemon" >&6 | 15671 | echo "${ECHO_T}$ac_cv_func_daemon" >&6; } |
13406 | if test $ac_cv_func_daemon = yes; then | 15672 | if test $ac_cv_func_daemon = yes; then |
13407 | 15673 | ||
13408 | cat >>confdefs.h <<\_ACEOF | 15674 | cat >>confdefs.h <<\_ACEOF |
@@ -13410,8 +15676,8 @@ cat >>confdefs.h <<\_ACEOF | |||
13410 | _ACEOF | 15676 | _ACEOF |
13411 | 15677 | ||
13412 | else | 15678 | else |
13413 | echo "$as_me:$LINENO: checking for daemon in -lbsd" >&5 | 15679 | { echo "$as_me:$LINENO: checking for daemon in -lbsd" >&5 |
13414 | echo $ECHO_N "checking for daemon in -lbsd... $ECHO_C" >&6 | 15680 | echo $ECHO_N "checking for daemon in -lbsd... $ECHO_C" >&6; } |
13415 | if test "${ac_cv_lib_bsd_daemon+set}" = set; then | 15681 | if test "${ac_cv_lib_bsd_daemon+set}" = set; then |
13416 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15682 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13417 | else | 15683 | else |
@@ -13424,39 +15690,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
13424 | cat >>conftest.$ac_ext <<_ACEOF | 15690 | cat >>conftest.$ac_ext <<_ACEOF |
13425 | /* end confdefs.h. */ | 15691 | /* end confdefs.h. */ |
13426 | 15692 | ||
13427 | /* Override any gcc2 internal prototype to avoid an error. */ | 15693 | /* Override any GCC internal prototype to avoid an error. |
15694 | Use char because int might match the return type of a GCC | ||
15695 | builtin and then its argument prototype would still apply. */ | ||
13428 | #ifdef __cplusplus | 15696 | #ifdef __cplusplus |
13429 | extern "C" | 15697 | extern "C" |
13430 | #endif | 15698 | #endif |
13431 | /* We use char because int might match the return type of a gcc2 | ||
13432 | builtin and then its argument prototype would still apply. */ | ||
13433 | char daemon (); | 15699 | char daemon (); |
13434 | int | 15700 | int |
13435 | main () | 15701 | main () |
13436 | { | 15702 | { |
13437 | daemon (); | 15703 | return daemon (); |
13438 | ; | 15704 | ; |
13439 | return 0; | 15705 | return 0; |
13440 | } | 15706 | } |
13441 | _ACEOF | 15707 | _ACEOF |
13442 | rm -f conftest.$ac_objext conftest$ac_exeext | 15708 | rm -f conftest.$ac_objext conftest$ac_exeext |
13443 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15709 | if { (ac_try="$ac_link" |
13444 | (eval $ac_link) 2>conftest.er1 | 15710 | case "(($ac_try" in |
15711 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15712 | *) ac_try_echo=$ac_try;; | ||
15713 | esac | ||
15714 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15715 | (eval "$ac_link") 2>conftest.er1 | ||
13445 | ac_status=$? | 15716 | ac_status=$? |
13446 | grep -v '^ *+' conftest.er1 >conftest.err | 15717 | grep -v '^ *+' conftest.er1 >conftest.err |
13447 | rm -f conftest.er1 | 15718 | rm -f conftest.er1 |
13448 | cat conftest.err >&5 | 15719 | cat conftest.err >&5 |
13449 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15720 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13450 | (exit $ac_status); } && | 15721 | (exit $ac_status); } && |
13451 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15722 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13452 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15723 | { (case "(($ac_try" in |
13453 | (eval $ac_try) 2>&5 | 15724 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15725 | *) ac_try_echo=$ac_try;; | ||
15726 | esac | ||
15727 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15728 | (eval "$ac_try") 2>&5 | ||
13454 | ac_status=$? | 15729 | ac_status=$? |
13455 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15730 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13456 | (exit $ac_status); }; } && | 15731 | (exit $ac_status); }; } && |
13457 | { ac_try='test -s conftest$ac_exeext' | 15732 | { ac_try='test -s conftest$ac_exeext' |
13458 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15733 | { (case "(($ac_try" in |
13459 | (eval $ac_try) 2>&5 | 15734 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15735 | *) ac_try_echo=$ac_try;; | ||
15736 | esac | ||
15737 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15738 | (eval "$ac_try") 2>&5 | ||
13460 | ac_status=$? | 15739 | ac_status=$? |
13461 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15740 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13462 | (exit $ac_status); }; }; then | 15741 | (exit $ac_status); }; }; then |
@@ -13465,14 +15744,15 @@ else | |||
13465 | echo "$as_me: failed program was:" >&5 | 15744 | echo "$as_me: failed program was:" >&5 |
13466 | sed 's/^/| /' conftest.$ac_ext >&5 | 15745 | sed 's/^/| /' conftest.$ac_ext >&5 |
13467 | 15746 | ||
13468 | ac_cv_lib_bsd_daemon=no | 15747 | ac_cv_lib_bsd_daemon=no |
13469 | fi | 15748 | fi |
13470 | rm -f conftest.err conftest.$ac_objext \ | 15749 | |
15750 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13471 | conftest$ac_exeext conftest.$ac_ext | 15751 | conftest$ac_exeext conftest.$ac_ext |
13472 | LIBS=$ac_check_lib_save_LIBS | 15752 | LIBS=$ac_check_lib_save_LIBS |
13473 | fi | 15753 | fi |
13474 | echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_daemon" >&5 | 15754 | { echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_daemon" >&5 |
13475 | echo "${ECHO_T}$ac_cv_lib_bsd_daemon" >&6 | 15755 | echo "${ECHO_T}$ac_cv_lib_bsd_daemon" >&6; } |
13476 | if test $ac_cv_lib_bsd_daemon = yes; then | 15756 | if test $ac_cv_lib_bsd_daemon = yes; then |
13477 | LIBS="$LIBS -lbsd"; cat >>confdefs.h <<\_ACEOF | 15757 | LIBS="$LIBS -lbsd"; cat >>confdefs.h <<\_ACEOF |
13478 | #define HAVE_DAEMON 1 | 15758 | #define HAVE_DAEMON 1 |
@@ -13484,8 +15764,8 @@ fi | |||
13484 | fi | 15764 | fi |
13485 | 15765 | ||
13486 | 15766 | ||
13487 | echo "$as_me:$LINENO: checking for getpagesize" >&5 | 15767 | { echo "$as_me:$LINENO: checking for getpagesize" >&5 |
13488 | echo $ECHO_N "checking for getpagesize... $ECHO_C" >&6 | 15768 | echo $ECHO_N "checking for getpagesize... $ECHO_C" >&6; } |
13489 | if test "${ac_cv_func_getpagesize+set}" = set; then | 15769 | if test "${ac_cv_func_getpagesize+set}" = set; then |
13490 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15770 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13491 | else | 15771 | else |
@@ -13512,52 +15792,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
13512 | 15792 | ||
13513 | #undef getpagesize | 15793 | #undef getpagesize |
13514 | 15794 | ||
13515 | /* Override any gcc2 internal prototype to avoid an error. */ | 15795 | /* Override any GCC internal prototype to avoid an error. |
15796 | Use char because int might match the return type of a GCC | ||
15797 | builtin and then its argument prototype would still apply. */ | ||
13516 | #ifdef __cplusplus | 15798 | #ifdef __cplusplus |
13517 | extern "C" | 15799 | extern "C" |
13518 | { | ||
13519 | #endif | 15800 | #endif |
13520 | /* We use char because int might match the return type of a gcc2 | ||
13521 | builtin and then its argument prototype would still apply. */ | ||
13522 | char getpagesize (); | 15801 | char getpagesize (); |
13523 | /* The GNU C library defines this for functions which it implements | 15802 | /* The GNU C library defines this for functions which it implements |
13524 | to always fail with ENOSYS. Some functions are actually named | 15803 | to always fail with ENOSYS. Some functions are actually named |
13525 | something starting with __ and the normal name is an alias. */ | 15804 | something starting with __ and the normal name is an alias. */ |
13526 | #if defined (__stub_getpagesize) || defined (__stub___getpagesize) | 15805 | #if defined __stub_getpagesize || defined __stub___getpagesize |
13527 | choke me | 15806 | choke me |
13528 | #else | ||
13529 | char (*f) () = getpagesize; | ||
13530 | #endif | ||
13531 | #ifdef __cplusplus | ||
13532 | } | ||
13533 | #endif | 15807 | #endif |
13534 | 15808 | ||
13535 | int | 15809 | int |
13536 | main () | 15810 | main () |
13537 | { | 15811 | { |
13538 | return f != getpagesize; | 15812 | return getpagesize (); |
13539 | ; | 15813 | ; |
13540 | return 0; | 15814 | return 0; |
13541 | } | 15815 | } |
13542 | _ACEOF | 15816 | _ACEOF |
13543 | rm -f conftest.$ac_objext conftest$ac_exeext | 15817 | rm -f conftest.$ac_objext conftest$ac_exeext |
13544 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15818 | if { (ac_try="$ac_link" |
13545 | (eval $ac_link) 2>conftest.er1 | 15819 | case "(($ac_try" in |
15820 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15821 | *) ac_try_echo=$ac_try;; | ||
15822 | esac | ||
15823 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15824 | (eval "$ac_link") 2>conftest.er1 | ||
13546 | ac_status=$? | 15825 | ac_status=$? |
13547 | grep -v '^ *+' conftest.er1 >conftest.err | 15826 | grep -v '^ *+' conftest.er1 >conftest.err |
13548 | rm -f conftest.er1 | 15827 | rm -f conftest.er1 |
13549 | cat conftest.err >&5 | 15828 | cat conftest.err >&5 |
13550 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15829 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13551 | (exit $ac_status); } && | 15830 | (exit $ac_status); } && |
13552 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15831 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13553 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15832 | { (case "(($ac_try" in |
13554 | (eval $ac_try) 2>&5 | 15833 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15834 | *) ac_try_echo=$ac_try;; | ||
15835 | esac | ||
15836 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15837 | (eval "$ac_try") 2>&5 | ||
13555 | ac_status=$? | 15838 | ac_status=$? |
13556 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15839 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13557 | (exit $ac_status); }; } && | 15840 | (exit $ac_status); }; } && |
13558 | { ac_try='test -s conftest$ac_exeext' | 15841 | { ac_try='test -s conftest$ac_exeext' |
13559 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15842 | { (case "(($ac_try" in |
13560 | (eval $ac_try) 2>&5 | 15843 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15844 | *) ac_try_echo=$ac_try;; | ||
15845 | esac | ||
15846 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15847 | (eval "$ac_try") 2>&5 | ||
13561 | ac_status=$? | 15848 | ac_status=$? |
13562 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15849 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13563 | (exit $ac_status); }; }; then | 15850 | (exit $ac_status); }; }; then |
@@ -13566,13 +15853,14 @@ else | |||
13566 | echo "$as_me: failed program was:" >&5 | 15853 | echo "$as_me: failed program was:" >&5 |
13567 | sed 's/^/| /' conftest.$ac_ext >&5 | 15854 | sed 's/^/| /' conftest.$ac_ext >&5 |
13568 | 15855 | ||
13569 | ac_cv_func_getpagesize=no | 15856 | ac_cv_func_getpagesize=no |
13570 | fi | 15857 | fi |
13571 | rm -f conftest.err conftest.$ac_objext \ | 15858 | |
15859 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13572 | conftest$ac_exeext conftest.$ac_ext | 15860 | conftest$ac_exeext conftest.$ac_ext |
13573 | fi | 15861 | fi |
13574 | echo "$as_me:$LINENO: result: $ac_cv_func_getpagesize" >&5 | 15862 | { echo "$as_me:$LINENO: result: $ac_cv_func_getpagesize" >&5 |
13575 | echo "${ECHO_T}$ac_cv_func_getpagesize" >&6 | 15863 | echo "${ECHO_T}$ac_cv_func_getpagesize" >&6; } |
13576 | if test $ac_cv_func_getpagesize = yes; then | 15864 | if test $ac_cv_func_getpagesize = yes; then |
13577 | 15865 | ||
13578 | cat >>confdefs.h <<\_ACEOF | 15866 | cat >>confdefs.h <<\_ACEOF |
@@ -13580,8 +15868,8 @@ cat >>confdefs.h <<\_ACEOF | |||
13580 | _ACEOF | 15868 | _ACEOF |
13581 | 15869 | ||
13582 | else | 15870 | else |
13583 | echo "$as_me:$LINENO: checking for getpagesize in -lucb" >&5 | 15871 | { echo "$as_me:$LINENO: checking for getpagesize in -lucb" >&5 |
13584 | echo $ECHO_N "checking for getpagesize in -lucb... $ECHO_C" >&6 | 15872 | echo $ECHO_N "checking for getpagesize in -lucb... $ECHO_C" >&6; } |
13585 | if test "${ac_cv_lib_ucb_getpagesize+set}" = set; then | 15873 | if test "${ac_cv_lib_ucb_getpagesize+set}" = set; then |
13586 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 15874 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
13587 | else | 15875 | else |
@@ -13594,39 +15882,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
13594 | cat >>conftest.$ac_ext <<_ACEOF | 15882 | cat >>conftest.$ac_ext <<_ACEOF |
13595 | /* end confdefs.h. */ | 15883 | /* end confdefs.h. */ |
13596 | 15884 | ||
13597 | /* Override any gcc2 internal prototype to avoid an error. */ | 15885 | /* Override any GCC internal prototype to avoid an error. |
15886 | Use char because int might match the return type of a GCC | ||
15887 | builtin and then its argument prototype would still apply. */ | ||
13598 | #ifdef __cplusplus | 15888 | #ifdef __cplusplus |
13599 | extern "C" | 15889 | extern "C" |
13600 | #endif | 15890 | #endif |
13601 | /* We use char because int might match the return type of a gcc2 | ||
13602 | builtin and then its argument prototype would still apply. */ | ||
13603 | char getpagesize (); | 15891 | char getpagesize (); |
13604 | int | 15892 | int |
13605 | main () | 15893 | main () |
13606 | { | 15894 | { |
13607 | getpagesize (); | 15895 | return getpagesize (); |
13608 | ; | 15896 | ; |
13609 | return 0; | 15897 | return 0; |
13610 | } | 15898 | } |
13611 | _ACEOF | 15899 | _ACEOF |
13612 | rm -f conftest.$ac_objext conftest$ac_exeext | 15900 | rm -f conftest.$ac_objext conftest$ac_exeext |
13613 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15901 | if { (ac_try="$ac_link" |
13614 | (eval $ac_link) 2>conftest.er1 | 15902 | case "(($ac_try" in |
15903 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15904 | *) ac_try_echo=$ac_try;; | ||
15905 | esac | ||
15906 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15907 | (eval "$ac_link") 2>conftest.er1 | ||
13615 | ac_status=$? | 15908 | ac_status=$? |
13616 | grep -v '^ *+' conftest.er1 >conftest.err | 15909 | grep -v '^ *+' conftest.er1 >conftest.err |
13617 | rm -f conftest.er1 | 15910 | rm -f conftest.er1 |
13618 | cat conftest.err >&5 | 15911 | cat conftest.err >&5 |
13619 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15912 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13620 | (exit $ac_status); } && | 15913 | (exit $ac_status); } && |
13621 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 15914 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13622 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15915 | { (case "(($ac_try" in |
13623 | (eval $ac_try) 2>&5 | 15916 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15917 | *) ac_try_echo=$ac_try;; | ||
15918 | esac | ||
15919 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15920 | (eval "$ac_try") 2>&5 | ||
13624 | ac_status=$? | 15921 | ac_status=$? |
13625 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15922 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13626 | (exit $ac_status); }; } && | 15923 | (exit $ac_status); }; } && |
13627 | { ac_try='test -s conftest$ac_exeext' | 15924 | { ac_try='test -s conftest$ac_exeext' |
13628 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15925 | { (case "(($ac_try" in |
13629 | (eval $ac_try) 2>&5 | 15926 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15927 | *) ac_try_echo=$ac_try;; | ||
15928 | esac | ||
15929 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15930 | (eval "$ac_try") 2>&5 | ||
13630 | ac_status=$? | 15931 | ac_status=$? |
13631 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15932 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13632 | (exit $ac_status); }; }; then | 15933 | (exit $ac_status); }; }; then |
@@ -13635,14 +15936,15 @@ else | |||
13635 | echo "$as_me: failed program was:" >&5 | 15936 | echo "$as_me: failed program was:" >&5 |
13636 | sed 's/^/| /' conftest.$ac_ext >&5 | 15937 | sed 's/^/| /' conftest.$ac_ext >&5 |
13637 | 15938 | ||
13638 | ac_cv_lib_ucb_getpagesize=no | 15939 | ac_cv_lib_ucb_getpagesize=no |
13639 | fi | 15940 | fi |
13640 | rm -f conftest.err conftest.$ac_objext \ | 15941 | |
15942 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
13641 | conftest$ac_exeext conftest.$ac_ext | 15943 | conftest$ac_exeext conftest.$ac_ext |
13642 | LIBS=$ac_check_lib_save_LIBS | 15944 | LIBS=$ac_check_lib_save_LIBS |
13643 | fi | 15945 | fi |
13644 | echo "$as_me:$LINENO: result: $ac_cv_lib_ucb_getpagesize" >&5 | 15946 | { echo "$as_me:$LINENO: result: $ac_cv_lib_ucb_getpagesize" >&5 |
13645 | echo "${ECHO_T}$ac_cv_lib_ucb_getpagesize" >&6 | 15947 | echo "${ECHO_T}$ac_cv_lib_ucb_getpagesize" >&6; } |
13646 | if test $ac_cv_lib_ucb_getpagesize = yes; then | 15948 | if test $ac_cv_lib_ucb_getpagesize = yes; then |
13647 | LIBS="$LIBS -lucb"; cat >>confdefs.h <<\_ACEOF | 15949 | LIBS="$LIBS -lucb"; cat >>confdefs.h <<\_ACEOF |
13648 | #define HAVE_GETPAGESIZE 1 | 15950 | #define HAVE_GETPAGESIZE 1 |
@@ -13656,8 +15958,8 @@ fi | |||
13656 | 15958 | ||
13657 | # Check for broken snprintf | 15959 | # Check for broken snprintf |
13658 | if test "x$ac_cv_func_snprintf" = "xyes" ; then | 15960 | if test "x$ac_cv_func_snprintf" = "xyes" ; then |
13659 | echo "$as_me:$LINENO: checking whether snprintf correctly terminates long strings" >&5 | 15961 | { echo "$as_me:$LINENO: checking whether snprintf correctly terminates long strings" >&5 |
13660 | echo $ECHO_N "checking whether snprintf correctly terminates long strings... $ECHO_C" >&6 | 15962 | echo $ECHO_N "checking whether snprintf correctly terminates long strings... $ECHO_C" >&6; } |
13661 | if test "$cross_compiling" = yes; then | 15963 | if test "$cross_compiling" = yes; then |
13662 | { echo "$as_me:$LINENO: WARNING: cross compiling: Assuming working snprintf()" >&5 | 15964 | { echo "$as_me:$LINENO: WARNING: cross compiling: Assuming working snprintf()" >&5 |
13663 | echo "$as_me: WARNING: cross compiling: Assuming working snprintf()" >&2;} | 15965 | echo "$as_me: WARNING: cross compiling: Assuming working snprintf()" >&2;} |
@@ -13675,18 +15977,27 @@ int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');} | |||
13675 | 15977 | ||
13676 | _ACEOF | 15978 | _ACEOF |
13677 | rm -f conftest$ac_exeext | 15979 | rm -f conftest$ac_exeext |
13678 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 15980 | if { (ac_try="$ac_link" |
13679 | (eval $ac_link) 2>&5 | 15981 | case "(($ac_try" in |
15982 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
15983 | *) ac_try_echo=$ac_try;; | ||
15984 | esac | ||
15985 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15986 | (eval "$ac_link") 2>&5 | ||
13680 | ac_status=$? | 15987 | ac_status=$? |
13681 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15988 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13682 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 15989 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
13683 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15990 | { (case "(($ac_try" in |
13684 | (eval $ac_try) 2>&5 | 15991 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
15992 | *) ac_try_echo=$ac_try;; | ||
15993 | esac | ||
15994 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
15995 | (eval "$ac_try") 2>&5 | ||
13685 | ac_status=$? | 15996 | ac_status=$? |
13686 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15997 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13687 | (exit $ac_status); }; }; then | 15998 | (exit $ac_status); }; }; then |
13688 | echo "$as_me:$LINENO: result: yes" >&5 | 15999 | { echo "$as_me:$LINENO: result: yes" >&5 |
13689 | echo "${ECHO_T}yes" >&6 | 16000 | echo "${ECHO_T}yes" >&6; } |
13690 | else | 16001 | else |
13691 | echo "$as_me: program exited with status $ac_status" >&5 | 16002 | echo "$as_me: program exited with status $ac_status" >&5 |
13692 | echo "$as_me: failed program was:" >&5 | 16003 | echo "$as_me: failed program was:" >&5 |
@@ -13694,8 +16005,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
13694 | 16005 | ||
13695 | ( exit $ac_status ) | 16006 | ( exit $ac_status ) |
13696 | 16007 | ||
13697 | echo "$as_me:$LINENO: result: no" >&5 | 16008 | { echo "$as_me:$LINENO: result: no" >&5 |
13698 | echo "${ECHO_T}no" >&6 | 16009 | echo "${ECHO_T}no" >&6; } |
13699 | 16010 | ||
13700 | cat >>confdefs.h <<\_ACEOF | 16011 | cat >>confdefs.h <<\_ACEOF |
13701 | #define BROKEN_SNPRINTF 1 | 16012 | #define BROKEN_SNPRINTF 1 |
@@ -13705,8 +16016,10 @@ _ACEOF | |||
13705 | echo "$as_me: WARNING: ****** Your snprintf() function is broken, complain to your vendor" >&2;} | 16016 | echo "$as_me: WARNING: ****** Your snprintf() function is broken, complain to your vendor" >&2;} |
13706 | 16017 | ||
13707 | fi | 16018 | fi |
13708 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 16019 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
13709 | fi | 16020 | fi |
16021 | |||
16022 | |||
13710 | fi | 16023 | fi |
13711 | 16024 | ||
13712 | # If we don't have a working asprintf, then we strongly depend on vsnprintf | 16025 | # If we don't have a working asprintf, then we strongly depend on vsnprintf |
@@ -13714,8 +16027,8 @@ fi | |||
13714 | # create (as per SUSv3) | 16027 | # create (as per SUSv3) |
13715 | if test "x$ac_cv_func_asprintf" != "xyes" && \ | 16028 | if test "x$ac_cv_func_asprintf" != "xyes" && \ |
13716 | test "x$ac_cv_func_vsnprintf" = "xyes" ; then | 16029 | test "x$ac_cv_func_vsnprintf" = "xyes" ; then |
13717 | echo "$as_me:$LINENO: checking whether vsnprintf returns correct values on overflow" >&5 | 16030 | { echo "$as_me:$LINENO: checking whether vsnprintf returns correct values on overflow" >&5 |
13718 | echo $ECHO_N "checking whether vsnprintf returns correct values on overflow... $ECHO_C" >&6 | 16031 | echo $ECHO_N "checking whether vsnprintf returns correct values on overflow... $ECHO_C" >&6; } |
13719 | if test "$cross_compiling" = yes; then | 16032 | if test "$cross_compiling" = yes; then |
13720 | { echo "$as_me:$LINENO: WARNING: cross compiling: Assuming working vsnprintf()" >&5 | 16033 | { echo "$as_me:$LINENO: WARNING: cross compiling: Assuming working vsnprintf()" >&5 |
13721 | echo "$as_me: WARNING: cross compiling: Assuming working vsnprintf()" >&2;} | 16034 | echo "$as_me: WARNING: cross compiling: Assuming working vsnprintf()" >&2;} |
@@ -13745,18 +16058,27 @@ int main(void) | |||
13745 | } | 16058 | } |
13746 | _ACEOF | 16059 | _ACEOF |
13747 | rm -f conftest$ac_exeext | 16060 | rm -f conftest$ac_exeext |
13748 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16061 | if { (ac_try="$ac_link" |
13749 | (eval $ac_link) 2>&5 | 16062 | case "(($ac_try" in |
16063 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16064 | *) ac_try_echo=$ac_try;; | ||
16065 | esac | ||
16066 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16067 | (eval "$ac_link") 2>&5 | ||
13750 | ac_status=$? | 16068 | ac_status=$? |
13751 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16069 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13752 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 16070 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
13753 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16071 | { (case "(($ac_try" in |
13754 | (eval $ac_try) 2>&5 | 16072 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16073 | *) ac_try_echo=$ac_try;; | ||
16074 | esac | ||
16075 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16076 | (eval "$ac_try") 2>&5 | ||
13755 | ac_status=$? | 16077 | ac_status=$? |
13756 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16078 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13757 | (exit $ac_status); }; }; then | 16079 | (exit $ac_status); }; }; then |
13758 | echo "$as_me:$LINENO: result: yes" >&5 | 16080 | { echo "$as_me:$LINENO: result: yes" >&5 |
13759 | echo "${ECHO_T}yes" >&6 | 16081 | echo "${ECHO_T}yes" >&6; } |
13760 | else | 16082 | else |
13761 | echo "$as_me: program exited with status $ac_status" >&5 | 16083 | echo "$as_me: program exited with status $ac_status" >&5 |
13762 | echo "$as_me: failed program was:" >&5 | 16084 | echo "$as_me: failed program was:" >&5 |
@@ -13764,8 +16086,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
13764 | 16086 | ||
13765 | ( exit $ac_status ) | 16087 | ( exit $ac_status ) |
13766 | 16088 | ||
13767 | echo "$as_me:$LINENO: result: no" >&5 | 16089 | { echo "$as_me:$LINENO: result: no" >&5 |
13768 | echo "${ECHO_T}no" >&6 | 16090 | echo "${ECHO_T}no" >&6; } |
13769 | 16091 | ||
13770 | cat >>confdefs.h <<\_ACEOF | 16092 | cat >>confdefs.h <<\_ACEOF |
13771 | #define BROKEN_SNPRINTF 1 | 16093 | #define BROKEN_SNPRINTF 1 |
@@ -13775,15 +16097,17 @@ _ACEOF | |||
13775 | echo "$as_me: WARNING: ****** Your vsnprintf() function is broken, complain to your vendor" >&2;} | 16097 | echo "$as_me: WARNING: ****** Your vsnprintf() function is broken, complain to your vendor" >&2;} |
13776 | 16098 | ||
13777 | fi | 16099 | fi |
13778 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 16100 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
13779 | fi | 16101 | fi |
16102 | |||
16103 | |||
13780 | fi | 16104 | fi |
13781 | 16105 | ||
13782 | # On systems where [v]snprintf is broken, but is declared in stdio, | 16106 | # On systems where [v]snprintf is broken, but is declared in stdio, |
13783 | # check that the fmt argument is const char * or just char *. | 16107 | # check that the fmt argument is const char * or just char *. |
13784 | # This is only useful for when BROKEN_SNPRINTF | 16108 | # This is only useful for when BROKEN_SNPRINTF |
13785 | echo "$as_me:$LINENO: checking whether snprintf can declare const char *fmt" >&5 | 16109 | { echo "$as_me:$LINENO: checking whether snprintf can declare const char *fmt" >&5 |
13786 | echo $ECHO_N "checking whether snprintf can declare const char *fmt... $ECHO_C" >&6 | 16110 | echo $ECHO_N "checking whether snprintf can declare const char *fmt... $ECHO_C" >&6; } |
13787 | cat >conftest.$ac_ext <<_ACEOF | 16111 | cat >conftest.$ac_ext <<_ACEOF |
13788 | /* confdefs.h. */ | 16112 | /* confdefs.h. */ |
13789 | _ACEOF | 16113 | _ACEOF |
@@ -13796,28 +16120,41 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
13796 | 16120 | ||
13797 | _ACEOF | 16121 | _ACEOF |
13798 | rm -f conftest.$ac_objext | 16122 | rm -f conftest.$ac_objext |
13799 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 16123 | if { (ac_try="$ac_compile" |
13800 | (eval $ac_compile) 2>conftest.er1 | 16124 | case "(($ac_try" in |
16125 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16126 | *) ac_try_echo=$ac_try;; | ||
16127 | esac | ||
16128 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16129 | (eval "$ac_compile") 2>conftest.er1 | ||
13801 | ac_status=$? | 16130 | ac_status=$? |
13802 | grep -v '^ *+' conftest.er1 >conftest.err | 16131 | grep -v '^ *+' conftest.er1 >conftest.err |
13803 | rm -f conftest.er1 | 16132 | rm -f conftest.er1 |
13804 | cat conftest.err >&5 | 16133 | cat conftest.err >&5 |
13805 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16134 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13806 | (exit $ac_status); } && | 16135 | (exit $ac_status); } && |
13807 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16136 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13808 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16137 | { (case "(($ac_try" in |
13809 | (eval $ac_try) 2>&5 | 16138 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16139 | *) ac_try_echo=$ac_try;; | ||
16140 | esac | ||
16141 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16142 | (eval "$ac_try") 2>&5 | ||
13810 | ac_status=$? | 16143 | ac_status=$? |
13811 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16144 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13812 | (exit $ac_status); }; } && | 16145 | (exit $ac_status); }; } && |
13813 | { ac_try='test -s conftest.$ac_objext' | 16146 | { ac_try='test -s conftest.$ac_objext' |
13814 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16147 | { (case "(($ac_try" in |
13815 | (eval $ac_try) 2>&5 | 16148 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16149 | *) ac_try_echo=$ac_try;; | ||
16150 | esac | ||
16151 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16152 | (eval "$ac_try") 2>&5 | ||
13816 | ac_status=$? | 16153 | ac_status=$? |
13817 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16154 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13818 | (exit $ac_status); }; }; then | 16155 | (exit $ac_status); }; }; then |
13819 | echo "$as_me:$LINENO: result: yes" >&5 | 16156 | { echo "$as_me:$LINENO: result: yes" >&5 |
13820 | echo "${ECHO_T}yes" >&6 | 16157 | echo "${ECHO_T}yes" >&6; } |
13821 | 16158 | ||
13822 | cat >>confdefs.h <<\_ACEOF | 16159 | cat >>confdefs.h <<\_ACEOF |
13823 | #define SNPRINTF_CONST const | 16160 | #define SNPRINTF_CONST const |
@@ -13827,20 +16164,21 @@ else | |||
13827 | echo "$as_me: failed program was:" >&5 | 16164 | echo "$as_me: failed program was:" >&5 |
13828 | sed 's/^/| /' conftest.$ac_ext >&5 | 16165 | sed 's/^/| /' conftest.$ac_ext >&5 |
13829 | 16166 | ||
13830 | echo "$as_me:$LINENO: result: no" >&5 | 16167 | { echo "$as_me:$LINENO: result: no" >&5 |
13831 | echo "${ECHO_T}no" >&6 | 16168 | echo "${ECHO_T}no" >&6; } |
13832 | cat >>confdefs.h <<\_ACEOF | 16169 | cat >>confdefs.h <<\_ACEOF |
13833 | #define SNPRINTF_CONST /* not const */ | 16170 | #define SNPRINTF_CONST /* not const */ |
13834 | _ACEOF | 16171 | _ACEOF |
13835 | 16172 | ||
13836 | fi | 16173 | fi |
13837 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 16174 | |
16175 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
13838 | 16176 | ||
13839 | # Check for missing getpeereid (or equiv) support | 16177 | # Check for missing getpeereid (or equiv) support |
13840 | NO_PEERCHECK="" | 16178 | NO_PEERCHECK="" |
13841 | if test "x$ac_cv_func_getpeereid" != "xyes" ; then | 16179 | if test "x$ac_cv_func_getpeereid" != "xyes" ; then |
13842 | echo "$as_me:$LINENO: checking whether system supports SO_PEERCRED getsockopt" >&5 | 16180 | { echo "$as_me:$LINENO: checking whether system supports SO_PEERCRED getsockopt" >&5 |
13843 | echo $ECHO_N "checking whether system supports SO_PEERCRED getsockopt... $ECHO_C" >&6 | 16181 | echo $ECHO_N "checking whether system supports SO_PEERCRED getsockopt... $ECHO_C" >&6; } |
13844 | cat >conftest.$ac_ext <<_ACEOF | 16182 | cat >conftest.$ac_ext <<_ACEOF |
13845 | /* confdefs.h. */ | 16183 | /* confdefs.h. */ |
13846 | _ACEOF | 16184 | _ACEOF |
@@ -13858,28 +16196,41 @@ int i = SO_PEERCRED; | |||
13858 | } | 16196 | } |
13859 | _ACEOF | 16197 | _ACEOF |
13860 | rm -f conftest.$ac_objext | 16198 | rm -f conftest.$ac_objext |
13861 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 16199 | if { (ac_try="$ac_compile" |
13862 | (eval $ac_compile) 2>conftest.er1 | 16200 | case "(($ac_try" in |
16201 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16202 | *) ac_try_echo=$ac_try;; | ||
16203 | esac | ||
16204 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16205 | (eval "$ac_compile") 2>conftest.er1 | ||
13863 | ac_status=$? | 16206 | ac_status=$? |
13864 | grep -v '^ *+' conftest.er1 >conftest.err | 16207 | grep -v '^ *+' conftest.er1 >conftest.err |
13865 | rm -f conftest.er1 | 16208 | rm -f conftest.er1 |
13866 | cat conftest.err >&5 | 16209 | cat conftest.err >&5 |
13867 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16210 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13868 | (exit $ac_status); } && | 16211 | (exit $ac_status); } && |
13869 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16212 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13870 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16213 | { (case "(($ac_try" in |
13871 | (eval $ac_try) 2>&5 | 16214 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16215 | *) ac_try_echo=$ac_try;; | ||
16216 | esac | ||
16217 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16218 | (eval "$ac_try") 2>&5 | ||
13872 | ac_status=$? | 16219 | ac_status=$? |
13873 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16220 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13874 | (exit $ac_status); }; } && | 16221 | (exit $ac_status); }; } && |
13875 | { ac_try='test -s conftest.$ac_objext' | 16222 | { ac_try='test -s conftest.$ac_objext' |
13876 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16223 | { (case "(($ac_try" in |
13877 | (eval $ac_try) 2>&5 | 16224 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16225 | *) ac_try_echo=$ac_try;; | ||
16226 | esac | ||
16227 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16228 | (eval "$ac_try") 2>&5 | ||
13878 | ac_status=$? | 16229 | ac_status=$? |
13879 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16230 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13880 | (exit $ac_status); }; }; then | 16231 | (exit $ac_status); }; }; then |
13881 | echo "$as_me:$LINENO: result: yes" >&5 | 16232 | { echo "$as_me:$LINENO: result: yes" >&5 |
13882 | echo "${ECHO_T}yes" >&6 | 16233 | echo "${ECHO_T}yes" >&6; } |
13883 | 16234 | ||
13884 | cat >>confdefs.h <<\_ACEOF | 16235 | cat >>confdefs.h <<\_ACEOF |
13885 | #define HAVE_SO_PEERCRED 1 | 16236 | #define HAVE_SO_PEERCRED 1 |
@@ -13890,21 +16241,22 @@ else | |||
13890 | echo "$as_me: failed program was:" >&5 | 16241 | echo "$as_me: failed program was:" >&5 |
13891 | sed 's/^/| /' conftest.$ac_ext >&5 | 16242 | sed 's/^/| /' conftest.$ac_ext >&5 |
13892 | 16243 | ||
13893 | echo "$as_me:$LINENO: result: no" >&5 | 16244 | { echo "$as_me:$LINENO: result: no" >&5 |
13894 | echo "${ECHO_T}no" >&6 | 16245 | echo "${ECHO_T}no" >&6; } |
13895 | NO_PEERCHECK=1 | 16246 | NO_PEERCHECK=1 |
13896 | 16247 | ||
13897 | fi | 16248 | fi |
13898 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 16249 | |
16250 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
13899 | fi | 16251 | fi |
13900 | 16252 | ||
13901 | if test "x$ac_cv_func_mkdtemp" = "xyes" ; then | 16253 | if test "x$ac_cv_func_mkdtemp" = "xyes" ; then |
13902 | echo "$as_me:$LINENO: checking for (overly) strict mkstemp" >&5 | 16254 | { echo "$as_me:$LINENO: checking for (overly) strict mkstemp" >&5 |
13903 | echo $ECHO_N "checking for (overly) strict mkstemp... $ECHO_C" >&6 | 16255 | echo $ECHO_N "checking for (overly) strict mkstemp... $ECHO_C" >&6; } |
13904 | if test "$cross_compiling" = yes; then | 16256 | if test "$cross_compiling" = yes; then |
13905 | 16257 | ||
13906 | echo "$as_me:$LINENO: result: yes" >&5 | 16258 | { echo "$as_me:$LINENO: result: yes" >&5 |
13907 | echo "${ECHO_T}yes" >&6 | 16259 | echo "${ECHO_T}yes" >&6; } |
13908 | cat >>confdefs.h <<\_ACEOF | 16260 | cat >>confdefs.h <<\_ACEOF |
13909 | #define HAVE_STRICT_MKSTEMP 1 | 16261 | #define HAVE_STRICT_MKSTEMP 1 |
13910 | _ACEOF | 16262 | _ACEOF |
@@ -13928,19 +16280,28 @@ unlink(template); exit(0); | |||
13928 | 16280 | ||
13929 | _ACEOF | 16281 | _ACEOF |
13930 | rm -f conftest$ac_exeext | 16282 | rm -f conftest$ac_exeext |
13931 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16283 | if { (ac_try="$ac_link" |
13932 | (eval $ac_link) 2>&5 | 16284 | case "(($ac_try" in |
16285 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16286 | *) ac_try_echo=$ac_try;; | ||
16287 | esac | ||
16288 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16289 | (eval "$ac_link") 2>&5 | ||
13933 | ac_status=$? | 16290 | ac_status=$? |
13934 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16291 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13935 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 16292 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
13936 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16293 | { (case "(($ac_try" in |
13937 | (eval $ac_try) 2>&5 | 16294 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16295 | *) ac_try_echo=$ac_try;; | ||
16296 | esac | ||
16297 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16298 | (eval "$ac_try") 2>&5 | ||
13938 | ac_status=$? | 16299 | ac_status=$? |
13939 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16300 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13940 | (exit $ac_status); }; }; then | 16301 | (exit $ac_status); }; }; then |
13941 | 16302 | ||
13942 | echo "$as_me:$LINENO: result: no" >&5 | 16303 | { echo "$as_me:$LINENO: result: no" >&5 |
13943 | echo "${ECHO_T}no" >&6 | 16304 | echo "${ECHO_T}no" >&6; } |
13944 | 16305 | ||
13945 | else | 16306 | else |
13946 | echo "$as_me: program exited with status $ac_status" >&5 | 16307 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -13949,8 +16310,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
13949 | 16310 | ||
13950 | ( exit $ac_status ) | 16311 | ( exit $ac_status ) |
13951 | 16312 | ||
13952 | echo "$as_me:$LINENO: result: yes" >&5 | 16313 | { echo "$as_me:$LINENO: result: yes" >&5 |
13953 | echo "${ECHO_T}yes" >&6 | 16314 | echo "${ECHO_T}yes" >&6; } |
13954 | 16315 | ||
13955 | cat >>confdefs.h <<\_ACEOF | 16316 | cat >>confdefs.h <<\_ACEOF |
13956 | #define HAVE_STRICT_MKSTEMP 1 | 16317 | #define HAVE_STRICT_MKSTEMP 1 |
@@ -13958,17 +16319,19 @@ _ACEOF | |||
13958 | 16319 | ||
13959 | 16320 | ||
13960 | fi | 16321 | fi |
13961 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 16322 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
13962 | fi | 16323 | fi |
16324 | |||
16325 | |||
13963 | fi | 16326 | fi |
13964 | 16327 | ||
13965 | if test ! -z "$check_for_openpty_ctty_bug"; then | 16328 | if test ! -z "$check_for_openpty_ctty_bug"; then |
13966 | echo "$as_me:$LINENO: checking if openpty correctly handles controlling tty" >&5 | 16329 | { echo "$as_me:$LINENO: checking if openpty correctly handles controlling tty" >&5 |
13967 | echo $ECHO_N "checking if openpty correctly handles controlling tty... $ECHO_C" >&6 | 16330 | echo $ECHO_N "checking if openpty correctly handles controlling tty... $ECHO_C" >&6; } |
13968 | if test "$cross_compiling" = yes; then | 16331 | if test "$cross_compiling" = yes; then |
13969 | 16332 | ||
13970 | echo "$as_me:$LINENO: result: cross-compiling" >&5 | 16333 | { echo "$as_me:$LINENO: result: cross-compiling" >&5 |
13971 | echo "${ECHO_T}cross-compiling" >&6 | 16334 | echo "${ECHO_T}cross-compiling" >&6; } |
13972 | 16335 | ||
13973 | 16336 | ||
13974 | else | 16337 | else |
@@ -14013,19 +16376,28 @@ main() | |||
14013 | 16376 | ||
14014 | _ACEOF | 16377 | _ACEOF |
14015 | rm -f conftest$ac_exeext | 16378 | rm -f conftest$ac_exeext |
14016 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16379 | if { (ac_try="$ac_link" |
14017 | (eval $ac_link) 2>&5 | 16380 | case "(($ac_try" in |
16381 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16382 | *) ac_try_echo=$ac_try;; | ||
16383 | esac | ||
16384 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16385 | (eval "$ac_link") 2>&5 | ||
14018 | ac_status=$? | 16386 | ac_status=$? |
14019 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16387 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14020 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 16388 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
14021 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16389 | { (case "(($ac_try" in |
14022 | (eval $ac_try) 2>&5 | 16390 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16391 | *) ac_try_echo=$ac_try;; | ||
16392 | esac | ||
16393 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16394 | (eval "$ac_try") 2>&5 | ||
14023 | ac_status=$? | 16395 | ac_status=$? |
14024 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16396 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14025 | (exit $ac_status); }; }; then | 16397 | (exit $ac_status); }; }; then |
14026 | 16398 | ||
14027 | echo "$as_me:$LINENO: result: yes" >&5 | 16399 | { echo "$as_me:$LINENO: result: yes" >&5 |
14028 | echo "${ECHO_T}yes" >&6 | 16400 | echo "${ECHO_T}yes" >&6; } |
14029 | 16401 | ||
14030 | else | 16402 | else |
14031 | echo "$as_me: program exited with status $ac_status" >&5 | 16403 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -14034,26 +16406,28 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
14034 | 16406 | ||
14035 | ( exit $ac_status ) | 16407 | ( exit $ac_status ) |
14036 | 16408 | ||
14037 | echo "$as_me:$LINENO: result: no" >&5 | 16409 | { echo "$as_me:$LINENO: result: no" >&5 |
14038 | echo "${ECHO_T}no" >&6 | 16410 | echo "${ECHO_T}no" >&6; } |
14039 | cat >>confdefs.h <<\_ACEOF | 16411 | cat >>confdefs.h <<\_ACEOF |
14040 | #define SSHD_ACQUIRES_CTTY 1 | 16412 | #define SSHD_ACQUIRES_CTTY 1 |
14041 | _ACEOF | 16413 | _ACEOF |
14042 | 16414 | ||
14043 | 16415 | ||
14044 | fi | 16416 | fi |
14045 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 16417 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
14046 | fi | 16418 | fi |
16419 | |||
16420 | |||
14047 | fi | 16421 | fi |
14048 | 16422 | ||
14049 | if test "x$ac_cv_func_getaddrinfo" = "xyes" && \ | 16423 | if test "x$ac_cv_func_getaddrinfo" = "xyes" && \ |
14050 | test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then | 16424 | test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then |
14051 | echo "$as_me:$LINENO: checking if getaddrinfo seems to work" >&5 | 16425 | { echo "$as_me:$LINENO: checking if getaddrinfo seems to work" >&5 |
14052 | echo $ECHO_N "checking if getaddrinfo seems to work... $ECHO_C" >&6 | 16426 | echo $ECHO_N "checking if getaddrinfo seems to work... $ECHO_C" >&6; } |
14053 | if test "$cross_compiling" = yes; then | 16427 | if test "$cross_compiling" = yes; then |
14054 | 16428 | ||
14055 | echo "$as_me:$LINENO: result: cross-compiling" >&5 | 16429 | { echo "$as_me:$LINENO: result: cross-compiling" >&5 |
14056 | echo "${ECHO_T}cross-compiling" >&6 | 16430 | echo "${ECHO_T}cross-compiling" >&6; } |
14057 | 16431 | ||
14058 | 16432 | ||
14059 | else | 16433 | else |
@@ -14120,19 +16494,28 @@ main(void) | |||
14120 | 16494 | ||
14121 | _ACEOF | 16495 | _ACEOF |
14122 | rm -f conftest$ac_exeext | 16496 | rm -f conftest$ac_exeext |
14123 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16497 | if { (ac_try="$ac_link" |
14124 | (eval $ac_link) 2>&5 | 16498 | case "(($ac_try" in |
16499 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16500 | *) ac_try_echo=$ac_try;; | ||
16501 | esac | ||
16502 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16503 | (eval "$ac_link") 2>&5 | ||
14125 | ac_status=$? | 16504 | ac_status=$? |
14126 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16505 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14127 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 16506 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
14128 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16507 | { (case "(($ac_try" in |
14129 | (eval $ac_try) 2>&5 | 16508 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16509 | *) ac_try_echo=$ac_try;; | ||
16510 | esac | ||
16511 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16512 | (eval "$ac_try") 2>&5 | ||
14130 | ac_status=$? | 16513 | ac_status=$? |
14131 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14132 | (exit $ac_status); }; }; then | 16515 | (exit $ac_status); }; }; then |
14133 | 16516 | ||
14134 | echo "$as_me:$LINENO: result: yes" >&5 | 16517 | { echo "$as_me:$LINENO: result: yes" >&5 |
14135 | echo "${ECHO_T}yes" >&6 | 16518 | echo "${ECHO_T}yes" >&6; } |
14136 | 16519 | ||
14137 | else | 16520 | else |
14138 | echo "$as_me: program exited with status $ac_status" >&5 | 16521 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -14141,120 +16524,42 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
14141 | 16524 | ||
14142 | ( exit $ac_status ) | 16525 | ( exit $ac_status ) |
14143 | 16526 | ||
14144 | echo "$as_me:$LINENO: result: no" >&5 | 16527 | { echo "$as_me:$LINENO: result: no" >&5 |
14145 | echo "${ECHO_T}no" >&6 | 16528 | echo "${ECHO_T}no" >&6; } |
14146 | cat >>confdefs.h <<\_ACEOF | 16529 | cat >>confdefs.h <<\_ACEOF |
14147 | #define BROKEN_GETADDRINFO 1 | 16530 | #define BROKEN_GETADDRINFO 1 |
14148 | _ACEOF | 16531 | _ACEOF |
14149 | 16532 | ||
14150 | 16533 | ||
14151 | fi | 16534 | fi |
14152 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 16535 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
14153 | fi | 16536 | fi |
16537 | |||
16538 | |||
14154 | fi | 16539 | fi |
14155 | 16540 | ||
14156 | if test "x$ac_cv_func_getaddrinfo" = "xyes" && \ | 16541 | if test "x$ac_cv_func_getaddrinfo" = "xyes" && \ |
14157 | test "x$check_for_aix_broken_getaddrinfo" = "x1"; then | 16542 | test "x$check_for_aix_broken_getaddrinfo" = "x1"; then |
14158 | echo "$as_me:$LINENO: checking if getaddrinfo seems to work" >&5 | 16543 | { echo "$as_me:$LINENO: checking if getaddrinfo seems to work" >&5 |
14159 | echo $ECHO_N "checking if getaddrinfo seems to work... $ECHO_C" >&6 | 16544 | echo $ECHO_N "checking if getaddrinfo seems to work... $ECHO_C" >&6; } |
14160 | if test "$cross_compiling" = yes; then | 16545 | if test "$cross_compiling" = yes; then |
14161 | echo "$as_me:$LINENO: result: cross-compiling" >&5 | 16546 | { echo "$as_me:$LINENO: result: cross-compiling" >&5 |
14162 | echo "${ECHO_T}cross-compiling" >&6 | 16547 | echo "${ECHO_T}cross-compiling" >&6; } |
14163 | |||
14164 | ] | ||
14165 | else | ||
14166 | cat >conftest.$ac_ext <<_ACEOF | ||
14167 | /* confdefs.h. */ | ||
14168 | _ACEOF | ||
14169 | cat confdefs.h >>conftest.$ac_ext | ||
14170 | cat >>conftest.$ac_ext <<_ACEOF | ||
14171 | /* end confdefs.h. */ | ||
14172 | |||
14173 | #include <stdio.h> | ||
14174 | #include <sys/socket.h> | ||
14175 | #include <netdb.h> | ||
14176 | #include <errno.h> | ||
14177 | #include <netinet/in.h> | ||
14178 | |||
14179 | #define TEST_PORT "2222" | ||
14180 | |||
14181 | int | ||
14182 | main(void) | ||
14183 | { | ||
14184 | int err, sock; | ||
14185 | struct addrinfo *gai_ai, *ai, hints; | ||
14186 | char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL; | ||
14187 | |||
14188 | memset(&hints, 0, sizeof(hints)); | ||
14189 | hints.ai_family = PF_UNSPEC; | ||
14190 | hints.ai_socktype = SOCK_STREAM; | ||
14191 | hints.ai_flags = AI_PASSIVE; | ||
14192 | |||
14193 | err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai); | ||
14194 | if (err != 0) { | ||
14195 | fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err)); | ||
14196 | exit(1); | ||
14197 | } | ||
14198 | |||
14199 | for (ai = gai_ai; ai != NULL; ai = ai->ai_next) { | ||
14200 | if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) | ||
14201 | continue; | ||
14202 | |||
14203 | err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, | ||
14204 | sizeof(ntop), strport, sizeof(strport), | ||
14205 | NI_NUMERICHOST|NI_NUMERICSERV); | ||
14206 | |||
14207 | if (ai->ai_family == AF_INET && err != 0) { | ||
14208 | perror("getnameinfo"); | ||
14209 | exit(2); | ||
14210 | } | ||
14211 | } | ||
14212 | exit(0); | ||
14213 | } | ||
14214 | |||
14215 | _ACEOF | ||
14216 | rm -f conftest$ac_exeext | ||
14217 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
14218 | (eval $ac_link) 2>&5 | ||
14219 | ac_status=$? | ||
14220 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
14221 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | ||
14222 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
14223 | (eval $ac_try) 2>&5 | ||
14224 | ac_status=$? | ||
14225 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
14226 | (exit $ac_status); }; }; then | ||
14227 | |||
14228 | echo "$as_me:$LINENO: result: yes" >&5 | ||
14229 | echo "${ECHO_T}yes" >&6 | ||
14230 | |||
14231 | cat >>confdefs.h <<\_ACEOF | ||
14232 | #define AIX_GETNAMEINFO_HACK 1 | ||
14233 | _ACEOF | ||
14234 | 16548 | ||
14235 | 16549 | ||
14236 | else | 16550 | else |
14237 | echo "$as_me: program exited with status $ac_status" >&5 | 16551 | { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling |
14238 | echo "$as_me: failed program was:" >&5 | 16552 | See \`config.log' for more details." >&5 |
14239 | sed 's/^/| /' conftest.$ac_ext >&5 | 16553 | echo "$as_me: error: cannot run test program while cross compiling |
14240 | 16554 | See \`config.log' for more details." >&2;} | |
14241 | ( exit $ac_status ) | 16555 | { (exit 1); exit 1; }; } |
14242 | |||
14243 | echo "$as_me:$LINENO: result: no" >&5 | ||
14244 | echo "${ECHO_T}no" >&6 | ||
14245 | cat >>confdefs.h <<\_ACEOF | ||
14246 | #define BROKEN_GETADDRINFO 1 | ||
14247 | _ACEOF | ||
14248 | |||
14249 | |||
14250 | fi | ||
14251 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
14252 | fi | 16556 | fi |
16557 | |||
14253 | fi | 16558 | fi |
14254 | 16559 | ||
14255 | if test "x$check_for_conflicting_getspnam" = "x1"; then | 16560 | if test "x$check_for_conflicting_getspnam" = "x1"; then |
14256 | echo "$as_me:$LINENO: checking for conflicting getspnam in shadow.h" >&5 | 16561 | { echo "$as_me:$LINENO: checking for conflicting getspnam in shadow.h" >&5 |
14257 | echo $ECHO_N "checking for conflicting getspnam in shadow.h... $ECHO_C" >&6 | 16562 | echo $ECHO_N "checking for conflicting getspnam in shadow.h... $ECHO_C" >&6; } |
14258 | cat >conftest.$ac_ext <<_ACEOF | 16563 | cat >conftest.$ac_ext <<_ACEOF |
14259 | 16564 | ||
14260 | #include <shadow.h> | 16565 | #include <shadow.h> |
@@ -14262,37 +16567,50 @@ int main(void) {exit(0);} | |||
14262 | 16567 | ||
14263 | _ACEOF | 16568 | _ACEOF |
14264 | rm -f conftest.$ac_objext | 16569 | rm -f conftest.$ac_objext |
14265 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 16570 | if { (ac_try="$ac_compile" |
14266 | (eval $ac_compile) 2>conftest.er1 | 16571 | case "(($ac_try" in |
16572 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16573 | *) ac_try_echo=$ac_try;; | ||
16574 | esac | ||
16575 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16576 | (eval "$ac_compile") 2>conftest.er1 | ||
14267 | ac_status=$? | 16577 | ac_status=$? |
14268 | grep -v '^ *+' conftest.er1 >conftest.err | 16578 | grep -v '^ *+' conftest.er1 >conftest.err |
14269 | rm -f conftest.er1 | 16579 | rm -f conftest.er1 |
14270 | cat conftest.err >&5 | 16580 | cat conftest.err >&5 |
14271 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16581 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14272 | (exit $ac_status); } && | 16582 | (exit $ac_status); } && |
14273 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16583 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14274 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16584 | { (case "(($ac_try" in |
14275 | (eval $ac_try) 2>&5 | 16585 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16586 | *) ac_try_echo=$ac_try;; | ||
16587 | esac | ||
16588 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16589 | (eval "$ac_try") 2>&5 | ||
14276 | ac_status=$? | 16590 | ac_status=$? |
14277 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16591 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14278 | (exit $ac_status); }; } && | 16592 | (exit $ac_status); }; } && |
14279 | { ac_try='test -s conftest.$ac_objext' | 16593 | { ac_try='test -s conftest.$ac_objext' |
14280 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16594 | { (case "(($ac_try" in |
14281 | (eval $ac_try) 2>&5 | 16595 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16596 | *) ac_try_echo=$ac_try;; | ||
16597 | esac | ||
16598 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16599 | (eval "$ac_try") 2>&5 | ||
14282 | ac_status=$? | 16600 | ac_status=$? |
14283 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16601 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14284 | (exit $ac_status); }; }; then | 16602 | (exit $ac_status); }; }; then |
14285 | 16603 | ||
14286 | echo "$as_me:$LINENO: result: no" >&5 | 16604 | { echo "$as_me:$LINENO: result: no" >&5 |
14287 | echo "${ECHO_T}no" >&6 | 16605 | echo "${ECHO_T}no" >&6; } |
14288 | 16606 | ||
14289 | else | 16607 | else |
14290 | echo "$as_me: failed program was:" >&5 | 16608 | echo "$as_me: failed program was:" >&5 |
14291 | sed 's/^/| /' conftest.$ac_ext >&5 | 16609 | sed 's/^/| /' conftest.$ac_ext >&5 |
14292 | 16610 | ||
14293 | 16611 | ||
14294 | echo "$as_me:$LINENO: result: yes" >&5 | 16612 | { echo "$as_me:$LINENO: result: yes" >&5 |
14295 | echo "${ECHO_T}yes" >&6 | 16613 | echo "${ECHO_T}yes" >&6; } |
14296 | 16614 | ||
14297 | cat >>confdefs.h <<\_ACEOF | 16615 | cat >>confdefs.h <<\_ACEOF |
14298 | #define GETSPNAM_CONFLICTING_DEFS 1 | 16616 | #define GETSPNAM_CONFLICTING_DEFS 1 |
@@ -14301,11 +16619,12 @@ _ACEOF | |||
14301 | 16619 | ||
14302 | 16620 | ||
14303 | fi | 16621 | fi |
14304 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 16622 | |
16623 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
14305 | fi | 16624 | fi |
14306 | 16625 | ||
14307 | echo "$as_me:$LINENO: checking whether getpgrp requires zero arguments" >&5 | 16626 | { echo "$as_me:$LINENO: checking whether getpgrp requires zero arguments" >&5 |
14308 | echo $ECHO_N "checking whether getpgrp requires zero arguments... $ECHO_C" >&6 | 16627 | echo $ECHO_N "checking whether getpgrp requires zero arguments... $ECHO_C" >&6; } |
14309 | if test "${ac_cv_func_getpgrp_void+set}" = set; then | 16628 | if test "${ac_cv_func_getpgrp_void+set}" = set; then |
14310 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 16629 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
14311 | else | 16630 | else |
@@ -14326,23 +16645,36 @@ getpgrp (0); | |||
14326 | } | 16645 | } |
14327 | _ACEOF | 16646 | _ACEOF |
14328 | rm -f conftest.$ac_objext | 16647 | rm -f conftest.$ac_objext |
14329 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 16648 | if { (ac_try="$ac_compile" |
14330 | (eval $ac_compile) 2>conftest.er1 | 16649 | case "(($ac_try" in |
16650 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16651 | *) ac_try_echo=$ac_try;; | ||
16652 | esac | ||
16653 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16654 | (eval "$ac_compile") 2>conftest.er1 | ||
14331 | ac_status=$? | 16655 | ac_status=$? |
14332 | grep -v '^ *+' conftest.er1 >conftest.err | 16656 | grep -v '^ *+' conftest.er1 >conftest.err |
14333 | rm -f conftest.er1 | 16657 | rm -f conftest.er1 |
14334 | cat conftest.err >&5 | 16658 | cat conftest.err >&5 |
14335 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16659 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14336 | (exit $ac_status); } && | 16660 | (exit $ac_status); } && |
14337 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16661 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14338 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16662 | { (case "(($ac_try" in |
14339 | (eval $ac_try) 2>&5 | 16663 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16664 | *) ac_try_echo=$ac_try;; | ||
16665 | esac | ||
16666 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16667 | (eval "$ac_try") 2>&5 | ||
14340 | ac_status=$? | 16668 | ac_status=$? |
14341 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16669 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14342 | (exit $ac_status); }; } && | 16670 | (exit $ac_status); }; } && |
14343 | { ac_try='test -s conftest.$ac_objext' | 16671 | { ac_try='test -s conftest.$ac_objext' |
14344 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16672 | { (case "(($ac_try" in |
14345 | (eval $ac_try) 2>&5 | 16673 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16674 | *) ac_try_echo=$ac_try;; | ||
16675 | esac | ||
16676 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16677 | (eval "$ac_try") 2>&5 | ||
14346 | ac_status=$? | 16678 | ac_status=$? |
14347 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16679 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14348 | (exit $ac_status); }; }; then | 16680 | (exit $ac_status); }; }; then |
@@ -14351,13 +16683,14 @@ else | |||
14351 | echo "$as_me: failed program was:" >&5 | 16683 | echo "$as_me: failed program was:" >&5 |
14352 | sed 's/^/| /' conftest.$ac_ext >&5 | 16684 | sed 's/^/| /' conftest.$ac_ext >&5 |
14353 | 16685 | ||
14354 | ac_cv_func_getpgrp_void=yes | 16686 | ac_cv_func_getpgrp_void=yes |
14355 | fi | 16687 | fi |
14356 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 16688 | |
16689 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
14357 | 16690 | ||
14358 | fi | 16691 | fi |
14359 | echo "$as_me:$LINENO: result: $ac_cv_func_getpgrp_void" >&5 | 16692 | { echo "$as_me:$LINENO: result: $ac_cv_func_getpgrp_void" >&5 |
14360 | echo "${ECHO_T}$ac_cv_func_getpgrp_void" >&6 | 16693 | echo "${ECHO_T}$ac_cv_func_getpgrp_void" >&6; } |
14361 | if test $ac_cv_func_getpgrp_void = yes; then | 16694 | if test $ac_cv_func_getpgrp_void = yes; then |
14362 | 16695 | ||
14363 | cat >>confdefs.h <<\_ACEOF | 16696 | cat >>confdefs.h <<\_ACEOF |
@@ -14370,10 +16703,9 @@ fi | |||
14370 | # Check for PAM libs | 16703 | # Check for PAM libs |
14371 | PAM_MSG="no" | 16704 | PAM_MSG="no" |
14372 | 16705 | ||
14373 | # Check whether --with-pam or --without-pam was given. | 16706 | # Check whether --with-pam was given. |
14374 | if test "${with_pam+set}" = set; then | 16707 | if test "${with_pam+set}" = set; then |
14375 | withval="$with_pam" | 16708 | withval=$with_pam; |
14376 | |||
14377 | if test "x$withval" != "xno" ; then | 16709 | if test "x$withval" != "xno" ; then |
14378 | if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \ | 16710 | if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \ |
14379 | test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then | 16711 | test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then |
@@ -14383,8 +16715,8 @@ echo "$as_me: error: PAM headers not found" >&2;} | |||
14383 | fi | 16715 | fi |
14384 | 16716 | ||
14385 | 16717 | ||
14386 | echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 | 16718 | { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 |
14387 | echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 | 16719 | echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } |
14388 | if test "${ac_cv_lib_dl_dlopen+set}" = set; then | 16720 | if test "${ac_cv_lib_dl_dlopen+set}" = set; then |
14389 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 16721 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
14390 | else | 16722 | else |
@@ -14397,39 +16729,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
14397 | cat >>conftest.$ac_ext <<_ACEOF | 16729 | cat >>conftest.$ac_ext <<_ACEOF |
14398 | /* end confdefs.h. */ | 16730 | /* end confdefs.h. */ |
14399 | 16731 | ||
14400 | /* Override any gcc2 internal prototype to avoid an error. */ | 16732 | /* Override any GCC internal prototype to avoid an error. |
16733 | Use char because int might match the return type of a GCC | ||
16734 | builtin and then its argument prototype would still apply. */ | ||
14401 | #ifdef __cplusplus | 16735 | #ifdef __cplusplus |
14402 | extern "C" | 16736 | extern "C" |
14403 | #endif | 16737 | #endif |
14404 | /* We use char because int might match the return type of a gcc2 | ||
14405 | builtin and then its argument prototype would still apply. */ | ||
14406 | char dlopen (); | 16738 | char dlopen (); |
14407 | int | 16739 | int |
14408 | main () | 16740 | main () |
14409 | { | 16741 | { |
14410 | dlopen (); | 16742 | return dlopen (); |
14411 | ; | 16743 | ; |
14412 | return 0; | 16744 | return 0; |
14413 | } | 16745 | } |
14414 | _ACEOF | 16746 | _ACEOF |
14415 | rm -f conftest.$ac_objext conftest$ac_exeext | 16747 | rm -f conftest.$ac_objext conftest$ac_exeext |
14416 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16748 | if { (ac_try="$ac_link" |
14417 | (eval $ac_link) 2>conftest.er1 | 16749 | case "(($ac_try" in |
16750 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16751 | *) ac_try_echo=$ac_try;; | ||
16752 | esac | ||
16753 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16754 | (eval "$ac_link") 2>conftest.er1 | ||
14418 | ac_status=$? | 16755 | ac_status=$? |
14419 | grep -v '^ *+' conftest.er1 >conftest.err | 16756 | grep -v '^ *+' conftest.er1 >conftest.err |
14420 | rm -f conftest.er1 | 16757 | rm -f conftest.er1 |
14421 | cat conftest.err >&5 | 16758 | cat conftest.err >&5 |
14422 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16759 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14423 | (exit $ac_status); } && | 16760 | (exit $ac_status); } && |
14424 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16761 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14425 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16762 | { (case "(($ac_try" in |
14426 | (eval $ac_try) 2>&5 | 16763 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16764 | *) ac_try_echo=$ac_try;; | ||
16765 | esac | ||
16766 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16767 | (eval "$ac_try") 2>&5 | ||
14427 | ac_status=$? | 16768 | ac_status=$? |
14428 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16769 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14429 | (exit $ac_status); }; } && | 16770 | (exit $ac_status); }; } && |
14430 | { ac_try='test -s conftest$ac_exeext' | 16771 | { ac_try='test -s conftest$ac_exeext' |
14431 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16772 | { (case "(($ac_try" in |
14432 | (eval $ac_try) 2>&5 | 16773 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16774 | *) ac_try_echo=$ac_try;; | ||
16775 | esac | ||
16776 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16777 | (eval "$ac_try") 2>&5 | ||
14433 | ac_status=$? | 16778 | ac_status=$? |
14434 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16779 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14435 | (exit $ac_status); }; }; then | 16780 | (exit $ac_status); }; }; then |
@@ -14438,14 +16783,15 @@ else | |||
14438 | echo "$as_me: failed program was:" >&5 | 16783 | echo "$as_me: failed program was:" >&5 |
14439 | sed 's/^/| /' conftest.$ac_ext >&5 | 16784 | sed 's/^/| /' conftest.$ac_ext >&5 |
14440 | 16785 | ||
14441 | ac_cv_lib_dl_dlopen=no | 16786 | ac_cv_lib_dl_dlopen=no |
14442 | fi | 16787 | fi |
14443 | rm -f conftest.err conftest.$ac_objext \ | 16788 | |
16789 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
14444 | conftest$ac_exeext conftest.$ac_ext | 16790 | conftest$ac_exeext conftest.$ac_ext |
14445 | LIBS=$ac_check_lib_save_LIBS | 16791 | LIBS=$ac_check_lib_save_LIBS |
14446 | fi | 16792 | fi |
14447 | echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 | 16793 | { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 |
14448 | echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 | 16794 | echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } |
14449 | if test $ac_cv_lib_dl_dlopen = yes; then | 16795 | if test $ac_cv_lib_dl_dlopen = yes; then |
14450 | cat >>confdefs.h <<_ACEOF | 16796 | cat >>confdefs.h <<_ACEOF |
14451 | #define HAVE_LIBDL 1 | 16797 | #define HAVE_LIBDL 1 |
@@ -14456,8 +16802,8 @@ _ACEOF | |||
14456 | fi | 16802 | fi |
14457 | 16803 | ||
14458 | 16804 | ||
14459 | echo "$as_me:$LINENO: checking for pam_set_item in -lpam" >&5 | 16805 | { echo "$as_me:$LINENO: checking for pam_set_item in -lpam" >&5 |
14460 | echo $ECHO_N "checking for pam_set_item in -lpam... $ECHO_C" >&6 | 16806 | echo $ECHO_N "checking for pam_set_item in -lpam... $ECHO_C" >&6; } |
14461 | if test "${ac_cv_lib_pam_pam_set_item+set}" = set; then | 16807 | if test "${ac_cv_lib_pam_pam_set_item+set}" = set; then |
14462 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 16808 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
14463 | else | 16809 | else |
@@ -14470,39 +16816,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
14470 | cat >>conftest.$ac_ext <<_ACEOF | 16816 | cat >>conftest.$ac_ext <<_ACEOF |
14471 | /* end confdefs.h. */ | 16817 | /* end confdefs.h. */ |
14472 | 16818 | ||
14473 | /* Override any gcc2 internal prototype to avoid an error. */ | 16819 | /* Override any GCC internal prototype to avoid an error. |
16820 | Use char because int might match the return type of a GCC | ||
16821 | builtin and then its argument prototype would still apply. */ | ||
14474 | #ifdef __cplusplus | 16822 | #ifdef __cplusplus |
14475 | extern "C" | 16823 | extern "C" |
14476 | #endif | 16824 | #endif |
14477 | /* We use char because int might match the return type of a gcc2 | ||
14478 | builtin and then its argument prototype would still apply. */ | ||
14479 | char pam_set_item (); | 16825 | char pam_set_item (); |
14480 | int | 16826 | int |
14481 | main () | 16827 | main () |
14482 | { | 16828 | { |
14483 | pam_set_item (); | 16829 | return pam_set_item (); |
14484 | ; | 16830 | ; |
14485 | return 0; | 16831 | return 0; |
14486 | } | 16832 | } |
14487 | _ACEOF | 16833 | _ACEOF |
14488 | rm -f conftest.$ac_objext conftest$ac_exeext | 16834 | rm -f conftest.$ac_objext conftest$ac_exeext |
14489 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16835 | if { (ac_try="$ac_link" |
14490 | (eval $ac_link) 2>conftest.er1 | 16836 | case "(($ac_try" in |
16837 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16838 | *) ac_try_echo=$ac_try;; | ||
16839 | esac | ||
16840 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16841 | (eval "$ac_link") 2>conftest.er1 | ||
14491 | ac_status=$? | 16842 | ac_status=$? |
14492 | grep -v '^ *+' conftest.er1 >conftest.err | 16843 | grep -v '^ *+' conftest.er1 >conftest.err |
14493 | rm -f conftest.er1 | 16844 | rm -f conftest.er1 |
14494 | cat conftest.err >&5 | 16845 | cat conftest.err >&5 |
14495 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16846 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14496 | (exit $ac_status); } && | 16847 | (exit $ac_status); } && |
14497 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16848 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14498 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16849 | { (case "(($ac_try" in |
14499 | (eval $ac_try) 2>&5 | 16850 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16851 | *) ac_try_echo=$ac_try;; | ||
16852 | esac | ||
16853 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16854 | (eval "$ac_try") 2>&5 | ||
14500 | ac_status=$? | 16855 | ac_status=$? |
14501 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16856 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14502 | (exit $ac_status); }; } && | 16857 | (exit $ac_status); }; } && |
14503 | { ac_try='test -s conftest$ac_exeext' | 16858 | { ac_try='test -s conftest$ac_exeext' |
14504 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16859 | { (case "(($ac_try" in |
14505 | (eval $ac_try) 2>&5 | 16860 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16861 | *) ac_try_echo=$ac_try;; | ||
16862 | esac | ||
16863 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16864 | (eval "$ac_try") 2>&5 | ||
14506 | ac_status=$? | 16865 | ac_status=$? |
14507 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16866 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14508 | (exit $ac_status); }; }; then | 16867 | (exit $ac_status); }; }; then |
@@ -14511,14 +16870,15 @@ else | |||
14511 | echo "$as_me: failed program was:" >&5 | 16870 | echo "$as_me: failed program was:" >&5 |
14512 | sed 's/^/| /' conftest.$ac_ext >&5 | 16871 | sed 's/^/| /' conftest.$ac_ext >&5 |
14513 | 16872 | ||
14514 | ac_cv_lib_pam_pam_set_item=no | 16873 | ac_cv_lib_pam_pam_set_item=no |
14515 | fi | 16874 | fi |
14516 | rm -f conftest.err conftest.$ac_objext \ | 16875 | |
16876 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
14517 | conftest$ac_exeext conftest.$ac_ext | 16877 | conftest$ac_exeext conftest.$ac_ext |
14518 | LIBS=$ac_check_lib_save_LIBS | 16878 | LIBS=$ac_check_lib_save_LIBS |
14519 | fi | 16879 | fi |
14520 | echo "$as_me:$LINENO: result: $ac_cv_lib_pam_pam_set_item" >&5 | 16880 | { echo "$as_me:$LINENO: result: $ac_cv_lib_pam_pam_set_item" >&5 |
14521 | echo "${ECHO_T}$ac_cv_lib_pam_pam_set_item" >&6 | 16881 | echo "${ECHO_T}$ac_cv_lib_pam_pam_set_item" >&6; } |
14522 | if test $ac_cv_lib_pam_pam_set_item = yes; then | 16882 | if test $ac_cv_lib_pam_pam_set_item = yes; then |
14523 | cat >>confdefs.h <<_ACEOF | 16883 | cat >>confdefs.h <<_ACEOF |
14524 | #define HAVE_LIBPAM 1 | 16884 | #define HAVE_LIBPAM 1 |
@@ -14536,9 +16896,9 @@ fi | |||
14536 | for ac_func in pam_getenvlist | 16896 | for ac_func in pam_getenvlist |
14537 | do | 16897 | do |
14538 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 16898 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
14539 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 16899 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
14540 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 16900 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
14541 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 16901 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
14542 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 16902 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
14543 | else | 16903 | else |
14544 | cat >conftest.$ac_ext <<_ACEOF | 16904 | cat >conftest.$ac_ext <<_ACEOF |
@@ -14564,52 +16924,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
14564 | 16924 | ||
14565 | #undef $ac_func | 16925 | #undef $ac_func |
14566 | 16926 | ||
14567 | /* Override any gcc2 internal prototype to avoid an error. */ | 16927 | /* Override any GCC internal prototype to avoid an error. |
16928 | Use char because int might match the return type of a GCC | ||
16929 | builtin and then its argument prototype would still apply. */ | ||
14568 | #ifdef __cplusplus | 16930 | #ifdef __cplusplus |
14569 | extern "C" | 16931 | extern "C" |
14570 | { | ||
14571 | #endif | 16932 | #endif |
14572 | /* We use char because int might match the return type of a gcc2 | ||
14573 | builtin and then its argument prototype would still apply. */ | ||
14574 | char $ac_func (); | 16933 | char $ac_func (); |
14575 | /* The GNU C library defines this for functions which it implements | 16934 | /* The GNU C library defines this for functions which it implements |
14576 | to always fail with ENOSYS. Some functions are actually named | 16935 | to always fail with ENOSYS. Some functions are actually named |
14577 | something starting with __ and the normal name is an alias. */ | 16936 | something starting with __ and the normal name is an alias. */ |
14578 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 16937 | #if defined __stub_$ac_func || defined __stub___$ac_func |
14579 | choke me | 16938 | choke me |
14580 | #else | ||
14581 | char (*f) () = $ac_func; | ||
14582 | #endif | ||
14583 | #ifdef __cplusplus | ||
14584 | } | ||
14585 | #endif | 16939 | #endif |
14586 | 16940 | ||
14587 | int | 16941 | int |
14588 | main () | 16942 | main () |
14589 | { | 16943 | { |
14590 | return f != $ac_func; | 16944 | return $ac_func (); |
14591 | ; | 16945 | ; |
14592 | return 0; | 16946 | return 0; |
14593 | } | 16947 | } |
14594 | _ACEOF | 16948 | _ACEOF |
14595 | rm -f conftest.$ac_objext conftest$ac_exeext | 16949 | rm -f conftest.$ac_objext conftest$ac_exeext |
14596 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 16950 | if { (ac_try="$ac_link" |
14597 | (eval $ac_link) 2>conftest.er1 | 16951 | case "(($ac_try" in |
16952 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
16953 | *) ac_try_echo=$ac_try;; | ||
16954 | esac | ||
16955 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16956 | (eval "$ac_link") 2>conftest.er1 | ||
14598 | ac_status=$? | 16957 | ac_status=$? |
14599 | grep -v '^ *+' conftest.er1 >conftest.err | 16958 | grep -v '^ *+' conftest.er1 >conftest.err |
14600 | rm -f conftest.er1 | 16959 | rm -f conftest.er1 |
14601 | cat conftest.err >&5 | 16960 | cat conftest.err >&5 |
14602 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16961 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14603 | (exit $ac_status); } && | 16962 | (exit $ac_status); } && |
14604 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 16963 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14605 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16964 | { (case "(($ac_try" in |
14606 | (eval $ac_try) 2>&5 | 16965 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16966 | *) ac_try_echo=$ac_try;; | ||
16967 | esac | ||
16968 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16969 | (eval "$ac_try") 2>&5 | ||
14607 | ac_status=$? | 16970 | ac_status=$? |
14608 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16971 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14609 | (exit $ac_status); }; } && | 16972 | (exit $ac_status); }; } && |
14610 | { ac_try='test -s conftest$ac_exeext' | 16973 | { ac_try='test -s conftest$ac_exeext' |
14611 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16974 | { (case "(($ac_try" in |
14612 | (eval $ac_try) 2>&5 | 16975 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
16976 | *) ac_try_echo=$ac_try;; | ||
16977 | esac | ||
16978 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
16979 | (eval "$ac_try") 2>&5 | ||
14613 | ac_status=$? | 16980 | ac_status=$? |
14614 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16981 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14615 | (exit $ac_status); }; }; then | 16982 | (exit $ac_status); }; }; then |
@@ -14618,13 +16985,15 @@ else | |||
14618 | echo "$as_me: failed program was:" >&5 | 16985 | echo "$as_me: failed program was:" >&5 |
14619 | sed 's/^/| /' conftest.$ac_ext >&5 | 16986 | sed 's/^/| /' conftest.$ac_ext >&5 |
14620 | 16987 | ||
14621 | eval "$as_ac_var=no" | 16988 | eval "$as_ac_var=no" |
14622 | fi | 16989 | fi |
14623 | rm -f conftest.err conftest.$ac_objext \ | 16990 | |
16991 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
14624 | conftest$ac_exeext conftest.$ac_ext | 16992 | conftest$ac_exeext conftest.$ac_ext |
14625 | fi | 16993 | fi |
14626 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 16994 | ac_res=`eval echo '${'$as_ac_var'}'` |
14627 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 16995 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
16996 | echo "${ECHO_T}$ac_res" >&6; } | ||
14628 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 16997 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
14629 | cat >>confdefs.h <<_ACEOF | 16998 | cat >>confdefs.h <<_ACEOF |
14630 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 16999 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -14637,9 +17006,9 @@ done | |||
14637 | for ac_func in pam_putenv | 17006 | for ac_func in pam_putenv |
14638 | do | 17007 | do |
14639 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 17008 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
14640 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 17009 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
14641 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 17010 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
14642 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 17011 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
14643 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 17012 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
14644 | else | 17013 | else |
14645 | cat >conftest.$ac_ext <<_ACEOF | 17014 | cat >conftest.$ac_ext <<_ACEOF |
@@ -14665,52 +17034,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
14665 | 17034 | ||
14666 | #undef $ac_func | 17035 | #undef $ac_func |
14667 | 17036 | ||
14668 | /* Override any gcc2 internal prototype to avoid an error. */ | 17037 | /* Override any GCC internal prototype to avoid an error. |
17038 | Use char because int might match the return type of a GCC | ||
17039 | builtin and then its argument prototype would still apply. */ | ||
14669 | #ifdef __cplusplus | 17040 | #ifdef __cplusplus |
14670 | extern "C" | 17041 | extern "C" |
14671 | { | ||
14672 | #endif | 17042 | #endif |
14673 | /* We use char because int might match the return type of a gcc2 | ||
14674 | builtin and then its argument prototype would still apply. */ | ||
14675 | char $ac_func (); | 17043 | char $ac_func (); |
14676 | /* The GNU C library defines this for functions which it implements | 17044 | /* The GNU C library defines this for functions which it implements |
14677 | to always fail with ENOSYS. Some functions are actually named | 17045 | to always fail with ENOSYS. Some functions are actually named |
14678 | something starting with __ and the normal name is an alias. */ | 17046 | something starting with __ and the normal name is an alias. */ |
14679 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 17047 | #if defined __stub_$ac_func || defined __stub___$ac_func |
14680 | choke me | 17048 | choke me |
14681 | #else | ||
14682 | char (*f) () = $ac_func; | ||
14683 | #endif | ||
14684 | #ifdef __cplusplus | ||
14685 | } | ||
14686 | #endif | 17049 | #endif |
14687 | 17050 | ||
14688 | int | 17051 | int |
14689 | main () | 17052 | main () |
14690 | { | 17053 | { |
14691 | return f != $ac_func; | 17054 | return $ac_func (); |
14692 | ; | 17055 | ; |
14693 | return 0; | 17056 | return 0; |
14694 | } | 17057 | } |
14695 | _ACEOF | 17058 | _ACEOF |
14696 | rm -f conftest.$ac_objext conftest$ac_exeext | 17059 | rm -f conftest.$ac_objext conftest$ac_exeext |
14697 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17060 | if { (ac_try="$ac_link" |
14698 | (eval $ac_link) 2>conftest.er1 | 17061 | case "(($ac_try" in |
17062 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17063 | *) ac_try_echo=$ac_try;; | ||
17064 | esac | ||
17065 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17066 | (eval "$ac_link") 2>conftest.er1 | ||
14699 | ac_status=$? | 17067 | ac_status=$? |
14700 | grep -v '^ *+' conftest.er1 >conftest.err | 17068 | grep -v '^ *+' conftest.er1 >conftest.err |
14701 | rm -f conftest.er1 | 17069 | rm -f conftest.er1 |
14702 | cat conftest.err >&5 | 17070 | cat conftest.err >&5 |
14703 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17071 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14704 | (exit $ac_status); } && | 17072 | (exit $ac_status); } && |
14705 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17073 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14706 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17074 | { (case "(($ac_try" in |
14707 | (eval $ac_try) 2>&5 | 17075 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17076 | *) ac_try_echo=$ac_try;; | ||
17077 | esac | ||
17078 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17079 | (eval "$ac_try") 2>&5 | ||
14708 | ac_status=$? | 17080 | ac_status=$? |
14709 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17081 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14710 | (exit $ac_status); }; } && | 17082 | (exit $ac_status); }; } && |
14711 | { ac_try='test -s conftest$ac_exeext' | 17083 | { ac_try='test -s conftest$ac_exeext' |
14712 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17084 | { (case "(($ac_try" in |
14713 | (eval $ac_try) 2>&5 | 17085 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17086 | *) ac_try_echo=$ac_try;; | ||
17087 | esac | ||
17088 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17089 | (eval "$ac_try") 2>&5 | ||
14714 | ac_status=$? | 17090 | ac_status=$? |
14715 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17091 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14716 | (exit $ac_status); }; }; then | 17092 | (exit $ac_status); }; }; then |
@@ -14719,13 +17095,15 @@ else | |||
14719 | echo "$as_me: failed program was:" >&5 | 17095 | echo "$as_me: failed program was:" >&5 |
14720 | sed 's/^/| /' conftest.$ac_ext >&5 | 17096 | sed 's/^/| /' conftest.$ac_ext >&5 |
14721 | 17097 | ||
14722 | eval "$as_ac_var=no" | 17098 | eval "$as_ac_var=no" |
14723 | fi | 17099 | fi |
14724 | rm -f conftest.err conftest.$ac_objext \ | 17100 | |
17101 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
14725 | conftest$ac_exeext conftest.$ac_ext | 17102 | conftest$ac_exeext conftest.$ac_ext |
14726 | fi | 17103 | fi |
14727 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 17104 | ac_res=`eval echo '${'$as_ac_var'}'` |
14728 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 17105 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
17106 | echo "${ECHO_T}$ac_res" >&6; } | ||
14729 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 17107 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
14730 | cat >>confdefs.h <<_ACEOF | 17108 | cat >>confdefs.h <<_ACEOF |
14731 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 17109 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -14751,13 +17129,14 @@ _ACEOF | |||
14751 | fi | 17129 | fi |
14752 | 17130 | ||
14753 | 17131 | ||
14754 | fi; | 17132 | fi |
17133 | |||
14755 | 17134 | ||
14756 | # Check for older PAM | 17135 | # Check for older PAM |
14757 | if test "x$PAM_MSG" = "xyes" ; then | 17136 | if test "x$PAM_MSG" = "xyes" ; then |
14758 | # Check PAM strerror arguments (old PAM) | 17137 | # Check PAM strerror arguments (old PAM) |
14759 | echo "$as_me:$LINENO: checking whether pam_strerror takes only one argument" >&5 | 17138 | { echo "$as_me:$LINENO: checking whether pam_strerror takes only one argument" >&5 |
14760 | echo $ECHO_N "checking whether pam_strerror takes only one argument... $ECHO_C" >&6 | 17139 | echo $ECHO_N "checking whether pam_strerror takes only one argument... $ECHO_C" >&6; } |
14761 | cat >conftest.$ac_ext <<_ACEOF | 17140 | cat >conftest.$ac_ext <<_ACEOF |
14762 | /* confdefs.h. */ | 17141 | /* confdefs.h. */ |
14763 | _ACEOF | 17142 | _ACEOF |
@@ -14781,28 +17160,41 @@ main () | |||
14781 | } | 17160 | } |
14782 | _ACEOF | 17161 | _ACEOF |
14783 | rm -f conftest.$ac_objext | 17162 | rm -f conftest.$ac_objext |
14784 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 17163 | if { (ac_try="$ac_compile" |
14785 | (eval $ac_compile) 2>conftest.er1 | 17164 | case "(($ac_try" in |
17165 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17166 | *) ac_try_echo=$ac_try;; | ||
17167 | esac | ||
17168 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17169 | (eval "$ac_compile") 2>conftest.er1 | ||
14786 | ac_status=$? | 17170 | ac_status=$? |
14787 | grep -v '^ *+' conftest.er1 >conftest.err | 17171 | grep -v '^ *+' conftest.er1 >conftest.err |
14788 | rm -f conftest.er1 | 17172 | rm -f conftest.er1 |
14789 | cat conftest.err >&5 | 17173 | cat conftest.err >&5 |
14790 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17174 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14791 | (exit $ac_status); } && | 17175 | (exit $ac_status); } && |
14792 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17176 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14793 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17177 | { (case "(($ac_try" in |
14794 | (eval $ac_try) 2>&5 | 17178 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17179 | *) ac_try_echo=$ac_try;; | ||
17180 | esac | ||
17181 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17182 | (eval "$ac_try") 2>&5 | ||
14795 | ac_status=$? | 17183 | ac_status=$? |
14796 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17184 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14797 | (exit $ac_status); }; } && | 17185 | (exit $ac_status); }; } && |
14798 | { ac_try='test -s conftest.$ac_objext' | 17186 | { ac_try='test -s conftest.$ac_objext' |
14799 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17187 | { (case "(($ac_try" in |
14800 | (eval $ac_try) 2>&5 | 17188 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17189 | *) ac_try_echo=$ac_try;; | ||
17190 | esac | ||
17191 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17192 | (eval "$ac_try") 2>&5 | ||
14801 | ac_status=$? | 17193 | ac_status=$? |
14802 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17194 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14803 | (exit $ac_status); }; }; then | 17195 | (exit $ac_status); }; }; then |
14804 | echo "$as_me:$LINENO: result: no" >&5 | 17196 | { echo "$as_me:$LINENO: result: no" >&5 |
14805 | echo "${ECHO_T}no" >&6 | 17197 | echo "${ECHO_T}no" >&6; } |
14806 | else | 17198 | else |
14807 | echo "$as_me: failed program was:" >&5 | 17199 | echo "$as_me: failed program was:" >&5 |
14808 | sed 's/^/| /' conftest.$ac_ext >&5 | 17200 | sed 's/^/| /' conftest.$ac_ext >&5 |
@@ -14813,23 +17205,23 @@ cat >>confdefs.h <<\_ACEOF | |||
14813 | #define HAVE_OLD_PAM 1 | 17205 | #define HAVE_OLD_PAM 1 |
14814 | _ACEOF | 17206 | _ACEOF |
14815 | 17207 | ||
14816 | echo "$as_me:$LINENO: result: yes" >&5 | 17208 | { echo "$as_me:$LINENO: result: yes" >&5 |
14817 | echo "${ECHO_T}yes" >&6 | 17209 | echo "${ECHO_T}yes" >&6; } |
14818 | PAM_MSG="yes (old library)" | 17210 | PAM_MSG="yes (old library)" |
14819 | 17211 | ||
14820 | 17212 | ||
14821 | fi | 17213 | fi |
14822 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 17214 | |
17215 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
14823 | fi | 17216 | fi |
14824 | 17217 | ||
14825 | # Search for OpenSSL | 17218 | # Search for OpenSSL |
14826 | saved_CPPFLAGS="$CPPFLAGS" | 17219 | saved_CPPFLAGS="$CPPFLAGS" |
14827 | saved_LDFLAGS="$LDFLAGS" | 17220 | saved_LDFLAGS="$LDFLAGS" |
14828 | 17221 | ||
14829 | # Check whether --with-ssl-dir or --without-ssl-dir was given. | 17222 | # Check whether --with-ssl-dir was given. |
14830 | if test "${with_ssl_dir+set}" = set; then | 17223 | if test "${with_ssl_dir+set}" = set; then |
14831 | withval="$with_ssl_dir" | 17224 | withval=$with_ssl_dir; |
14832 | |||
14833 | if test "x$withval" != "xno" ; then | 17225 | if test "x$withval" != "xno" ; then |
14834 | case "$withval" in | 17226 | case "$withval" in |
14835 | # Relative paths | 17227 | # Relative paths |
@@ -14856,7 +17248,8 @@ if test "${with_ssl_dir+set}" = set; then | |||
14856 | fi | 17248 | fi |
14857 | 17249 | ||
14858 | 17250 | ||
14859 | fi; | 17251 | fi |
17252 | |||
14860 | LIBS="-lcrypto $LIBS" | 17253 | LIBS="-lcrypto $LIBS" |
14861 | cat >conftest.$ac_ext <<_ACEOF | 17254 | cat >conftest.$ac_ext <<_ACEOF |
14862 | /* confdefs.h. */ | 17255 | /* confdefs.h. */ |
@@ -14865,39 +17258,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
14865 | cat >>conftest.$ac_ext <<_ACEOF | 17258 | cat >>conftest.$ac_ext <<_ACEOF |
14866 | /* end confdefs.h. */ | 17259 | /* end confdefs.h. */ |
14867 | 17260 | ||
14868 | /* Override any gcc2 internal prototype to avoid an error. */ | 17261 | /* Override any GCC internal prototype to avoid an error. |
17262 | Use char because int might match the return type of a GCC | ||
17263 | builtin and then its argument prototype would still apply. */ | ||
14869 | #ifdef __cplusplus | 17264 | #ifdef __cplusplus |
14870 | extern "C" | 17265 | extern "C" |
14871 | #endif | 17266 | #endif |
14872 | /* We use char because int might match the return type of a gcc2 | ||
14873 | builtin and then its argument prototype would still apply. */ | ||
14874 | char RAND_add (); | 17267 | char RAND_add (); |
14875 | int | 17268 | int |
14876 | main () | 17269 | main () |
14877 | { | 17270 | { |
14878 | RAND_add (); | 17271 | return RAND_add (); |
14879 | ; | 17272 | ; |
14880 | return 0; | 17273 | return 0; |
14881 | } | 17274 | } |
14882 | _ACEOF | 17275 | _ACEOF |
14883 | rm -f conftest.$ac_objext conftest$ac_exeext | 17276 | rm -f conftest.$ac_objext conftest$ac_exeext |
14884 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17277 | if { (ac_try="$ac_link" |
14885 | (eval $ac_link) 2>conftest.er1 | 17278 | case "(($ac_try" in |
17279 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17280 | *) ac_try_echo=$ac_try;; | ||
17281 | esac | ||
17282 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17283 | (eval "$ac_link") 2>conftest.er1 | ||
14886 | ac_status=$? | 17284 | ac_status=$? |
14887 | grep -v '^ *+' conftest.er1 >conftest.err | 17285 | grep -v '^ *+' conftest.er1 >conftest.err |
14888 | rm -f conftest.er1 | 17286 | rm -f conftest.er1 |
14889 | cat conftest.err >&5 | 17287 | cat conftest.err >&5 |
14890 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17288 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14891 | (exit $ac_status); } && | 17289 | (exit $ac_status); } && |
14892 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17290 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14893 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17291 | { (case "(($ac_try" in |
14894 | (eval $ac_try) 2>&5 | 17292 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17293 | *) ac_try_echo=$ac_try;; | ||
17294 | esac | ||
17295 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17296 | (eval "$ac_try") 2>&5 | ||
14895 | ac_status=$? | 17297 | ac_status=$? |
14896 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17298 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14897 | (exit $ac_status); }; } && | 17299 | (exit $ac_status); }; } && |
14898 | { ac_try='test -s conftest$ac_exeext' | 17300 | { ac_try='test -s conftest$ac_exeext' |
14899 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17301 | { (case "(($ac_try" in |
14900 | (eval $ac_try) 2>&5 | 17302 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17303 | *) ac_try_echo=$ac_try;; | ||
17304 | esac | ||
17305 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17306 | (eval "$ac_try") 2>&5 | ||
14901 | ac_status=$? | 17307 | ac_status=$? |
14902 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17308 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14903 | (exit $ac_status); }; }; then | 17309 | (exit $ac_status); }; }; then |
@@ -14924,39 +17330,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
14924 | cat >>conftest.$ac_ext <<_ACEOF | 17330 | cat >>conftest.$ac_ext <<_ACEOF |
14925 | /* end confdefs.h. */ | 17331 | /* end confdefs.h. */ |
14926 | 17332 | ||
14927 | /* Override any gcc2 internal prototype to avoid an error. */ | 17333 | /* Override any GCC internal prototype to avoid an error. |
17334 | Use char because int might match the return type of a GCC | ||
17335 | builtin and then its argument prototype would still apply. */ | ||
14928 | #ifdef __cplusplus | 17336 | #ifdef __cplusplus |
14929 | extern "C" | 17337 | extern "C" |
14930 | #endif | 17338 | #endif |
14931 | /* We use char because int might match the return type of a gcc2 | ||
14932 | builtin and then its argument prototype would still apply. */ | ||
14933 | char RAND_add (); | 17339 | char RAND_add (); |
14934 | int | 17340 | int |
14935 | main () | 17341 | main () |
14936 | { | 17342 | { |
14937 | RAND_add (); | 17343 | return RAND_add (); |
14938 | ; | 17344 | ; |
14939 | return 0; | 17345 | return 0; |
14940 | } | 17346 | } |
14941 | _ACEOF | 17347 | _ACEOF |
14942 | rm -f conftest.$ac_objext conftest$ac_exeext | 17348 | rm -f conftest.$ac_objext conftest$ac_exeext |
14943 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17349 | if { (ac_try="$ac_link" |
14944 | (eval $ac_link) 2>conftest.er1 | 17350 | case "(($ac_try" in |
17351 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17352 | *) ac_try_echo=$ac_try;; | ||
17353 | esac | ||
17354 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17355 | (eval "$ac_link") 2>conftest.er1 | ||
14945 | ac_status=$? | 17356 | ac_status=$? |
14946 | grep -v '^ *+' conftest.er1 >conftest.err | 17357 | grep -v '^ *+' conftest.er1 >conftest.err |
14947 | rm -f conftest.er1 | 17358 | rm -f conftest.er1 |
14948 | cat conftest.err >&5 | 17359 | cat conftest.err >&5 |
14949 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17360 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14950 | (exit $ac_status); } && | 17361 | (exit $ac_status); } && |
14951 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17362 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14952 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17363 | { (case "(($ac_try" in |
14953 | (eval $ac_try) 2>&5 | 17364 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17365 | *) ac_try_echo=$ac_try;; | ||
17366 | esac | ||
17367 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17368 | (eval "$ac_try") 2>&5 | ||
14954 | ac_status=$? | 17369 | ac_status=$? |
14955 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17370 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14956 | (exit $ac_status); }; } && | 17371 | (exit $ac_status); }; } && |
14957 | { ac_try='test -s conftest$ac_exeext' | 17372 | { ac_try='test -s conftest$ac_exeext' |
14958 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17373 | { (case "(($ac_try" in |
14959 | (eval $ac_try) 2>&5 | 17374 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17375 | *) ac_try_echo=$ac_try;; | ||
17376 | esac | ||
17377 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17378 | (eval "$ac_try") 2>&5 | ||
14960 | ac_status=$? | 17379 | ac_status=$? |
14961 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17380 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14962 | (exit $ac_status); }; }; then | 17381 | (exit $ac_status); }; }; then |
@@ -14975,17 +17394,19 @@ echo "$as_me: error: *** Can't find recent OpenSSL libcrypto (see config.log for | |||
14975 | 17394 | ||
14976 | 17395 | ||
14977 | fi | 17396 | fi |
14978 | rm -f conftest.err conftest.$ac_objext \ | 17397 | |
17398 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
14979 | conftest$ac_exeext conftest.$ac_ext | 17399 | conftest$ac_exeext conftest.$ac_ext |
14980 | 17400 | ||
14981 | 17401 | ||
14982 | fi | 17402 | fi |
14983 | rm -f conftest.err conftest.$ac_objext \ | 17403 | |
17404 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
14984 | conftest$ac_exeext conftest.$ac_ext | 17405 | conftest$ac_exeext conftest.$ac_ext |
14985 | 17406 | ||
14986 | # Determine OpenSSL header version | 17407 | # Determine OpenSSL header version |
14987 | echo "$as_me:$LINENO: checking OpenSSL header version" >&5 | 17408 | { echo "$as_me:$LINENO: checking OpenSSL header version" >&5 |
14988 | echo $ECHO_N "checking OpenSSL header version... $ECHO_C" >&6 | 17409 | echo $ECHO_N "checking OpenSSL header version... $ECHO_C" >&6; } |
14989 | if test "$cross_compiling" = yes; then | 17410 | if test "$cross_compiling" = yes; then |
14990 | 17411 | ||
14991 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 | 17412 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 |
@@ -15020,20 +17441,29 @@ int main(void) { | |||
15020 | 17441 | ||
15021 | _ACEOF | 17442 | _ACEOF |
15022 | rm -f conftest$ac_exeext | 17443 | rm -f conftest$ac_exeext |
15023 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17444 | if { (ac_try="$ac_link" |
15024 | (eval $ac_link) 2>&5 | 17445 | case "(($ac_try" in |
17446 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17447 | *) ac_try_echo=$ac_try;; | ||
17448 | esac | ||
17449 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17450 | (eval "$ac_link") 2>&5 | ||
15025 | ac_status=$? | 17451 | ac_status=$? |
15026 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17452 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15027 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 17453 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
15028 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17454 | { (case "(($ac_try" in |
15029 | (eval $ac_try) 2>&5 | 17455 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17456 | *) ac_try_echo=$ac_try;; | ||
17457 | esac | ||
17458 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17459 | (eval "$ac_try") 2>&5 | ||
15030 | ac_status=$? | 17460 | ac_status=$? |
15031 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17461 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15032 | (exit $ac_status); }; }; then | 17462 | (exit $ac_status); }; }; then |
15033 | 17463 | ||
15034 | ssl_header_ver=`cat conftest.sslincver` | 17464 | ssl_header_ver=`cat conftest.sslincver` |
15035 | echo "$as_me:$LINENO: result: $ssl_header_ver" >&5 | 17465 | { echo "$as_me:$LINENO: result: $ssl_header_ver" >&5 |
15036 | echo "${ECHO_T}$ssl_header_ver" >&6 | 17466 | echo "${ECHO_T}$ssl_header_ver" >&6; } |
15037 | 17467 | ||
15038 | else | 17468 | else |
15039 | echo "$as_me: program exited with status $ac_status" >&5 | 17469 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -15042,19 +17472,21 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
15042 | 17472 | ||
15043 | ( exit $ac_status ) | 17473 | ( exit $ac_status ) |
15044 | 17474 | ||
15045 | echo "$as_me:$LINENO: result: not found" >&5 | 17475 | { echo "$as_me:$LINENO: result: not found" >&5 |
15046 | echo "${ECHO_T}not found" >&6 | 17476 | echo "${ECHO_T}not found" >&6; } |
15047 | { { echo "$as_me:$LINENO: error: OpenSSL version header not found." >&5 | 17477 | { { echo "$as_me:$LINENO: error: OpenSSL version header not found." >&5 |
15048 | echo "$as_me: error: OpenSSL version header not found." >&2;} | 17478 | echo "$as_me: error: OpenSSL version header not found." >&2;} |
15049 | { (exit 1); exit 1; }; } | 17479 | { (exit 1); exit 1; }; } |
15050 | 17480 | ||
15051 | fi | 17481 | fi |
15052 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 17482 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
15053 | fi | 17483 | fi |
15054 | 17484 | ||
17485 | |||
17486 | |||
15055 | # Determine OpenSSL library version | 17487 | # Determine OpenSSL library version |
15056 | echo "$as_me:$LINENO: checking OpenSSL library version" >&5 | 17488 | { echo "$as_me:$LINENO: checking OpenSSL library version" >&5 |
15057 | echo $ECHO_N "checking OpenSSL library version... $ECHO_C" >&6 | 17489 | echo $ECHO_N "checking OpenSSL library version... $ECHO_C" >&6; } |
15058 | if test "$cross_compiling" = yes; then | 17490 | if test "$cross_compiling" = yes; then |
15059 | 17491 | ||
15060 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 | 17492 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 |
@@ -15090,20 +17522,29 @@ int main(void) { | |||
15090 | 17522 | ||
15091 | _ACEOF | 17523 | _ACEOF |
15092 | rm -f conftest$ac_exeext | 17524 | rm -f conftest$ac_exeext |
15093 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17525 | if { (ac_try="$ac_link" |
15094 | (eval $ac_link) 2>&5 | 17526 | case "(($ac_try" in |
17527 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17528 | *) ac_try_echo=$ac_try;; | ||
17529 | esac | ||
17530 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17531 | (eval "$ac_link") 2>&5 | ||
15095 | ac_status=$? | 17532 | ac_status=$? |
15096 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17533 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15097 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 17534 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
15098 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17535 | { (case "(($ac_try" in |
15099 | (eval $ac_try) 2>&5 | 17536 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17537 | *) ac_try_echo=$ac_try;; | ||
17538 | esac | ||
17539 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17540 | (eval "$ac_try") 2>&5 | ||
15100 | ac_status=$? | 17541 | ac_status=$? |
15101 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17542 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15102 | (exit $ac_status); }; }; then | 17543 | (exit $ac_status); }; }; then |
15103 | 17544 | ||
15104 | ssl_library_ver=`cat conftest.ssllibver` | 17545 | ssl_library_ver=`cat conftest.ssllibver` |
15105 | echo "$as_me:$LINENO: result: $ssl_library_ver" >&5 | 17546 | { echo "$as_me:$LINENO: result: $ssl_library_ver" >&5 |
15106 | echo "${ECHO_T}$ssl_library_ver" >&6 | 17547 | echo "${ECHO_T}$ssl_library_ver" >&6; } |
15107 | 17548 | ||
15108 | else | 17549 | else |
15109 | echo "$as_me: program exited with status $ac_status" >&5 | 17550 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -15112,19 +17553,21 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
15112 | 17553 | ||
15113 | ( exit $ac_status ) | 17554 | ( exit $ac_status ) |
15114 | 17555 | ||
15115 | echo "$as_me:$LINENO: result: not found" >&5 | 17556 | { echo "$as_me:$LINENO: result: not found" >&5 |
15116 | echo "${ECHO_T}not found" >&6 | 17557 | echo "${ECHO_T}not found" >&6; } |
15117 | { { echo "$as_me:$LINENO: error: OpenSSL library not found." >&5 | 17558 | { { echo "$as_me:$LINENO: error: OpenSSL library not found." >&5 |
15118 | echo "$as_me: error: OpenSSL library not found." >&2;} | 17559 | echo "$as_me: error: OpenSSL library not found." >&2;} |
15119 | { (exit 1); exit 1; }; } | 17560 | { (exit 1); exit 1; }; } |
15120 | 17561 | ||
15121 | fi | 17562 | fi |
15122 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 17563 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
15123 | fi | 17564 | fi |
15124 | 17565 | ||
17566 | |||
17567 | |||
15125 | # Sanity check OpenSSL headers | 17568 | # Sanity check OpenSSL headers |
15126 | echo "$as_me:$LINENO: checking whether OpenSSL's headers match the library" >&5 | 17569 | { echo "$as_me:$LINENO: checking whether OpenSSL's headers match the library" >&5 |
15127 | echo $ECHO_N "checking whether OpenSSL's headers match the library... $ECHO_C" >&6 | 17570 | echo $ECHO_N "checking whether OpenSSL's headers match the library... $ECHO_C" >&6; } |
15128 | if test "$cross_compiling" = yes; then | 17571 | if test "$cross_compiling" = yes; then |
15129 | 17572 | ||
15130 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 | 17573 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 |
@@ -15145,19 +17588,28 @@ int main(void) { exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1); } | |||
15145 | 17588 | ||
15146 | _ACEOF | 17589 | _ACEOF |
15147 | rm -f conftest$ac_exeext | 17590 | rm -f conftest$ac_exeext |
15148 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17591 | if { (ac_try="$ac_link" |
15149 | (eval $ac_link) 2>&5 | 17592 | case "(($ac_try" in |
17593 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17594 | *) ac_try_echo=$ac_try;; | ||
17595 | esac | ||
17596 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17597 | (eval "$ac_link") 2>&5 | ||
15150 | ac_status=$? | 17598 | ac_status=$? |
15151 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17599 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15152 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 17600 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
15153 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17601 | { (case "(($ac_try" in |
15154 | (eval $ac_try) 2>&5 | 17602 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17603 | *) ac_try_echo=$ac_try;; | ||
17604 | esac | ||
17605 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17606 | (eval "$ac_try") 2>&5 | ||
15155 | ac_status=$? | 17607 | ac_status=$? |
15156 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17608 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15157 | (exit $ac_status); }; }; then | 17609 | (exit $ac_status); }; }; then |
15158 | 17610 | ||
15159 | echo "$as_me:$LINENO: result: yes" >&5 | 17611 | { echo "$as_me:$LINENO: result: yes" >&5 |
15160 | echo "${ECHO_T}yes" >&6 | 17612 | echo "${ECHO_T}yes" >&6; } |
15161 | 17613 | ||
15162 | else | 17614 | else |
15163 | echo "$as_me: program exited with status $ac_status" >&5 | 17615 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -15166,8 +17618,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
15166 | 17618 | ||
15167 | ( exit $ac_status ) | 17619 | ( exit $ac_status ) |
15168 | 17620 | ||
15169 | echo "$as_me:$LINENO: result: no" >&5 | 17621 | { echo "$as_me:$LINENO: result: no" >&5 |
15170 | echo "${ECHO_T}no" >&6 | 17622 | echo "${ECHO_T}no" >&6; } |
15171 | { { echo "$as_me:$LINENO: error: Your OpenSSL headers do not match your library. | 17623 | { { echo "$as_me:$LINENO: error: Your OpenSSL headers do not match your library. |
15172 | Check config.log for details. | 17624 | Check config.log for details. |
15173 | Also see contrib/findssl.sh for help identifying header/library mismatches." >&5 | 17625 | Also see contrib/findssl.sh for help identifying header/library mismatches." >&5 |
@@ -15177,12 +17629,14 @@ Also see contrib/findssl.sh for help identifying header/library mismatches." >&2 | |||
15177 | { (exit 1); exit 1; }; } | 17629 | { (exit 1); exit 1; }; } |
15178 | 17630 | ||
15179 | fi | 17631 | fi |
15180 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 17632 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
15181 | fi | 17633 | fi |
15182 | 17634 | ||
17635 | |||
17636 | |||
15183 | # Check for OpenSSL without EVP_aes_{192,256}_cbc | 17637 | # Check for OpenSSL without EVP_aes_{192,256}_cbc |
15184 | echo "$as_me:$LINENO: checking whether OpenSSL has crippled AES support" >&5 | 17638 | { echo "$as_me:$LINENO: checking whether OpenSSL has crippled AES support" >&5 |
15185 | echo $ECHO_N "checking whether OpenSSL has crippled AES support... $ECHO_C" >&6 | 17639 | echo $ECHO_N "checking whether OpenSSL has crippled AES support... $ECHO_C" >&6; } |
15186 | cat >conftest.$ac_ext <<_ACEOF | 17640 | cat >conftest.$ac_ext <<_ACEOF |
15187 | /* confdefs.h. */ | 17641 | /* confdefs.h. */ |
15188 | _ACEOF | 17642 | _ACEOF |
@@ -15196,37 +17650,50 @@ int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);} | |||
15196 | 17650 | ||
15197 | _ACEOF | 17651 | _ACEOF |
15198 | rm -f conftest.$ac_objext | 17652 | rm -f conftest.$ac_objext |
15199 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 17653 | if { (ac_try="$ac_compile" |
15200 | (eval $ac_compile) 2>conftest.er1 | 17654 | case "(($ac_try" in |
17655 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17656 | *) ac_try_echo=$ac_try;; | ||
17657 | esac | ||
17658 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17659 | (eval "$ac_compile") 2>conftest.er1 | ||
15201 | ac_status=$? | 17660 | ac_status=$? |
15202 | grep -v '^ *+' conftest.er1 >conftest.err | 17661 | grep -v '^ *+' conftest.er1 >conftest.err |
15203 | rm -f conftest.er1 | 17662 | rm -f conftest.er1 |
15204 | cat conftest.err >&5 | 17663 | cat conftest.err >&5 |
15205 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17664 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15206 | (exit $ac_status); } && | 17665 | (exit $ac_status); } && |
15207 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17666 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15208 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17667 | { (case "(($ac_try" in |
15209 | (eval $ac_try) 2>&5 | 17668 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17669 | *) ac_try_echo=$ac_try;; | ||
17670 | esac | ||
17671 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17672 | (eval "$ac_try") 2>&5 | ||
15210 | ac_status=$? | 17673 | ac_status=$? |
15211 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17674 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15212 | (exit $ac_status); }; } && | 17675 | (exit $ac_status); }; } && |
15213 | { ac_try='test -s conftest.$ac_objext' | 17676 | { ac_try='test -s conftest.$ac_objext' |
15214 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17677 | { (case "(($ac_try" in |
15215 | (eval $ac_try) 2>&5 | 17678 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17679 | *) ac_try_echo=$ac_try;; | ||
17680 | esac | ||
17681 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17682 | (eval "$ac_try") 2>&5 | ||
15216 | ac_status=$? | 17683 | ac_status=$? |
15217 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17684 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15218 | (exit $ac_status); }; }; then | 17685 | (exit $ac_status); }; }; then |
15219 | 17686 | ||
15220 | echo "$as_me:$LINENO: result: no" >&5 | 17687 | { echo "$as_me:$LINENO: result: no" >&5 |
15221 | echo "${ECHO_T}no" >&6 | 17688 | echo "${ECHO_T}no" >&6; } |
15222 | 17689 | ||
15223 | else | 17690 | else |
15224 | echo "$as_me: failed program was:" >&5 | 17691 | echo "$as_me: failed program was:" >&5 |
15225 | sed 's/^/| /' conftest.$ac_ext >&5 | 17692 | sed 's/^/| /' conftest.$ac_ext >&5 |
15226 | 17693 | ||
15227 | 17694 | ||
15228 | echo "$as_me:$LINENO: result: yes" >&5 | 17695 | { echo "$as_me:$LINENO: result: yes" >&5 |
15229 | echo "${ECHO_T}yes" >&6 | 17696 | echo "${ECHO_T}yes" >&6; } |
15230 | 17697 | ||
15231 | cat >>confdefs.h <<\_ACEOF | 17698 | cat >>confdefs.h <<\_ACEOF |
15232 | #define OPENSSL_LOBOTOMISED_AES 1 | 17699 | #define OPENSSL_LOBOTOMISED_AES 1 |
@@ -15235,14 +17702,15 @@ _ACEOF | |||
15235 | 17702 | ||
15236 | 17703 | ||
15237 | fi | 17704 | fi |
15238 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 17705 | |
17706 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
15239 | 17707 | ||
15240 | # Some systems want crypt() from libcrypt, *not* the version in OpenSSL, | 17708 | # Some systems want crypt() from libcrypt, *not* the version in OpenSSL, |
15241 | # because the system crypt() is more featureful. | 17709 | # because the system crypt() is more featureful. |
15242 | if test "x$check_for_libcrypt_before" = "x1"; then | 17710 | if test "x$check_for_libcrypt_before" = "x1"; then |
15243 | 17711 | ||
15244 | echo "$as_me:$LINENO: checking for crypt in -lcrypt" >&5 | 17712 | { echo "$as_me:$LINENO: checking for crypt in -lcrypt" >&5 |
15245 | echo $ECHO_N "checking for crypt in -lcrypt... $ECHO_C" >&6 | 17713 | echo $ECHO_N "checking for crypt in -lcrypt... $ECHO_C" >&6; } |
15246 | if test "${ac_cv_lib_crypt_crypt+set}" = set; then | 17714 | if test "${ac_cv_lib_crypt_crypt+set}" = set; then |
15247 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 17715 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15248 | else | 17716 | else |
@@ -15255,39 +17723,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
15255 | cat >>conftest.$ac_ext <<_ACEOF | 17723 | cat >>conftest.$ac_ext <<_ACEOF |
15256 | /* end confdefs.h. */ | 17724 | /* end confdefs.h. */ |
15257 | 17725 | ||
15258 | /* Override any gcc2 internal prototype to avoid an error. */ | 17726 | /* Override any GCC internal prototype to avoid an error. |
17727 | Use char because int might match the return type of a GCC | ||
17728 | builtin and then its argument prototype would still apply. */ | ||
15259 | #ifdef __cplusplus | 17729 | #ifdef __cplusplus |
15260 | extern "C" | 17730 | extern "C" |
15261 | #endif | 17731 | #endif |
15262 | /* We use char because int might match the return type of a gcc2 | ||
15263 | builtin and then its argument prototype would still apply. */ | ||
15264 | char crypt (); | 17732 | char crypt (); |
15265 | int | 17733 | int |
15266 | main () | 17734 | main () |
15267 | { | 17735 | { |
15268 | crypt (); | 17736 | return crypt (); |
15269 | ; | 17737 | ; |
15270 | return 0; | 17738 | return 0; |
15271 | } | 17739 | } |
15272 | _ACEOF | 17740 | _ACEOF |
15273 | rm -f conftest.$ac_objext conftest$ac_exeext | 17741 | rm -f conftest.$ac_objext conftest$ac_exeext |
15274 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17742 | if { (ac_try="$ac_link" |
15275 | (eval $ac_link) 2>conftest.er1 | 17743 | case "(($ac_try" in |
17744 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17745 | *) ac_try_echo=$ac_try;; | ||
17746 | esac | ||
17747 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17748 | (eval "$ac_link") 2>conftest.er1 | ||
15276 | ac_status=$? | 17749 | ac_status=$? |
15277 | grep -v '^ *+' conftest.er1 >conftest.err | 17750 | grep -v '^ *+' conftest.er1 >conftest.err |
15278 | rm -f conftest.er1 | 17751 | rm -f conftest.er1 |
15279 | cat conftest.err >&5 | 17752 | cat conftest.err >&5 |
15280 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17753 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15281 | (exit $ac_status); } && | 17754 | (exit $ac_status); } && |
15282 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17755 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15283 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17756 | { (case "(($ac_try" in |
15284 | (eval $ac_try) 2>&5 | 17757 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17758 | *) ac_try_echo=$ac_try;; | ||
17759 | esac | ||
17760 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17761 | (eval "$ac_try") 2>&5 | ||
15285 | ac_status=$? | 17762 | ac_status=$? |
15286 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17763 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15287 | (exit $ac_status); }; } && | 17764 | (exit $ac_status); }; } && |
15288 | { ac_try='test -s conftest$ac_exeext' | 17765 | { ac_try='test -s conftest$ac_exeext' |
15289 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17766 | { (case "(($ac_try" in |
15290 | (eval $ac_try) 2>&5 | 17767 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17768 | *) ac_try_echo=$ac_try;; | ||
17769 | esac | ||
17770 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17771 | (eval "$ac_try") 2>&5 | ||
15291 | ac_status=$? | 17772 | ac_status=$? |
15292 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17773 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15293 | (exit $ac_status); }; }; then | 17774 | (exit $ac_status); }; }; then |
@@ -15296,14 +17777,15 @@ else | |||
15296 | echo "$as_me: failed program was:" >&5 | 17777 | echo "$as_me: failed program was:" >&5 |
15297 | sed 's/^/| /' conftest.$ac_ext >&5 | 17778 | sed 's/^/| /' conftest.$ac_ext >&5 |
15298 | 17779 | ||
15299 | ac_cv_lib_crypt_crypt=no | 17780 | ac_cv_lib_crypt_crypt=no |
15300 | fi | 17781 | fi |
15301 | rm -f conftest.err conftest.$ac_objext \ | 17782 | |
17783 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
15302 | conftest$ac_exeext conftest.$ac_ext | 17784 | conftest$ac_exeext conftest.$ac_ext |
15303 | LIBS=$ac_check_lib_save_LIBS | 17785 | LIBS=$ac_check_lib_save_LIBS |
15304 | fi | 17786 | fi |
15305 | echo "$as_me:$LINENO: result: $ac_cv_lib_crypt_crypt" >&5 | 17787 | { echo "$as_me:$LINENO: result: $ac_cv_lib_crypt_crypt" >&5 |
15306 | echo "${ECHO_T}$ac_cv_lib_crypt_crypt" >&6 | 17788 | echo "${ECHO_T}$ac_cv_lib_crypt_crypt" >&6; } |
15307 | if test $ac_cv_lib_crypt_crypt = yes; then | 17789 | if test $ac_cv_lib_crypt_crypt = yes; then |
15308 | cat >>confdefs.h <<_ACEOF | 17790 | cat >>confdefs.h <<_ACEOF |
15309 | #define HAVE_LIBCRYPT 1 | 17791 | #define HAVE_LIBCRYPT 1 |
@@ -15318,8 +17800,8 @@ fi | |||
15318 | # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the | 17800 | # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the |
15319 | # version in OpenSSL. | 17801 | # version in OpenSSL. |
15320 | if test "x$check_for_libcrypt_later" = "x1"; then | 17802 | if test "x$check_for_libcrypt_later" = "x1"; then |
15321 | echo "$as_me:$LINENO: checking for crypt in -lcrypt" >&5 | 17803 | { echo "$as_me:$LINENO: checking for crypt in -lcrypt" >&5 |
15322 | echo $ECHO_N "checking for crypt in -lcrypt... $ECHO_C" >&6 | 17804 | echo $ECHO_N "checking for crypt in -lcrypt... $ECHO_C" >&6; } |
15323 | if test "${ac_cv_lib_crypt_crypt+set}" = set; then | 17805 | if test "${ac_cv_lib_crypt_crypt+set}" = set; then |
15324 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 17806 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15325 | else | 17807 | else |
@@ -15332,39 +17814,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
15332 | cat >>conftest.$ac_ext <<_ACEOF | 17814 | cat >>conftest.$ac_ext <<_ACEOF |
15333 | /* end confdefs.h. */ | 17815 | /* end confdefs.h. */ |
15334 | 17816 | ||
15335 | /* Override any gcc2 internal prototype to avoid an error. */ | 17817 | /* Override any GCC internal prototype to avoid an error. |
17818 | Use char because int might match the return type of a GCC | ||
17819 | builtin and then its argument prototype would still apply. */ | ||
15336 | #ifdef __cplusplus | 17820 | #ifdef __cplusplus |
15337 | extern "C" | 17821 | extern "C" |
15338 | #endif | 17822 | #endif |
15339 | /* We use char because int might match the return type of a gcc2 | ||
15340 | builtin and then its argument prototype would still apply. */ | ||
15341 | char crypt (); | 17823 | char crypt (); |
15342 | int | 17824 | int |
15343 | main () | 17825 | main () |
15344 | { | 17826 | { |
15345 | crypt (); | 17827 | return crypt (); |
15346 | ; | 17828 | ; |
15347 | return 0; | 17829 | return 0; |
15348 | } | 17830 | } |
15349 | _ACEOF | 17831 | _ACEOF |
15350 | rm -f conftest.$ac_objext conftest$ac_exeext | 17832 | rm -f conftest.$ac_objext conftest$ac_exeext |
15351 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17833 | if { (ac_try="$ac_link" |
15352 | (eval $ac_link) 2>conftest.er1 | 17834 | case "(($ac_try" in |
17835 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17836 | *) ac_try_echo=$ac_try;; | ||
17837 | esac | ||
17838 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17839 | (eval "$ac_link") 2>conftest.er1 | ||
15353 | ac_status=$? | 17840 | ac_status=$? |
15354 | grep -v '^ *+' conftest.er1 >conftest.err | 17841 | grep -v '^ *+' conftest.er1 >conftest.err |
15355 | rm -f conftest.er1 | 17842 | rm -f conftest.er1 |
15356 | cat conftest.err >&5 | 17843 | cat conftest.err >&5 |
15357 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17844 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15358 | (exit $ac_status); } && | 17845 | (exit $ac_status); } && |
15359 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17846 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15360 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17847 | { (case "(($ac_try" in |
15361 | (eval $ac_try) 2>&5 | 17848 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17849 | *) ac_try_echo=$ac_try;; | ||
17850 | esac | ||
17851 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17852 | (eval "$ac_try") 2>&5 | ||
15362 | ac_status=$? | 17853 | ac_status=$? |
15363 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17854 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15364 | (exit $ac_status); }; } && | 17855 | (exit $ac_status); }; } && |
15365 | { ac_try='test -s conftest$ac_exeext' | 17856 | { ac_try='test -s conftest$ac_exeext' |
15366 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17857 | { (case "(($ac_try" in |
15367 | (eval $ac_try) 2>&5 | 17858 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17859 | *) ac_try_echo=$ac_try;; | ||
17860 | esac | ||
17861 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17862 | (eval "$ac_try") 2>&5 | ||
15368 | ac_status=$? | 17863 | ac_status=$? |
15369 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17864 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15370 | (exit $ac_status); }; }; then | 17865 | (exit $ac_status); }; }; then |
@@ -15373,14 +17868,15 @@ else | |||
15373 | echo "$as_me: failed program was:" >&5 | 17868 | echo "$as_me: failed program was:" >&5 |
15374 | sed 's/^/| /' conftest.$ac_ext >&5 | 17869 | sed 's/^/| /' conftest.$ac_ext >&5 |
15375 | 17870 | ||
15376 | ac_cv_lib_crypt_crypt=no | 17871 | ac_cv_lib_crypt_crypt=no |
15377 | fi | 17872 | fi |
15378 | rm -f conftest.err conftest.$ac_objext \ | 17873 | |
17874 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
15379 | conftest$ac_exeext conftest.$ac_ext | 17875 | conftest$ac_exeext conftest.$ac_ext |
15380 | LIBS=$ac_check_lib_save_LIBS | 17876 | LIBS=$ac_check_lib_save_LIBS |
15381 | fi | 17877 | fi |
15382 | echo "$as_me:$LINENO: result: $ac_cv_lib_crypt_crypt" >&5 | 17878 | { echo "$as_me:$LINENO: result: $ac_cv_lib_crypt_crypt" >&5 |
15383 | echo "${ECHO_T}$ac_cv_lib_crypt_crypt" >&6 | 17879 | echo "${ECHO_T}$ac_cv_lib_crypt_crypt" >&6; } |
15384 | if test $ac_cv_lib_crypt_crypt = yes; then | 17880 | if test $ac_cv_lib_crypt_crypt = yes; then |
15385 | LIBS="$LIBS -lcrypt" | 17881 | LIBS="$LIBS -lcrypt" |
15386 | fi | 17882 | fi |
@@ -15388,8 +17884,8 @@ fi | |||
15388 | fi | 17884 | fi |
15389 | 17885 | ||
15390 | 17886 | ||
15391 | echo "$as_me:$LINENO: checking for ia_openinfo in -liaf" >&5 | 17887 | { echo "$as_me:$LINENO: checking for ia_openinfo in -liaf" >&5 |
15392 | echo $ECHO_N "checking for ia_openinfo in -liaf... $ECHO_C" >&6 | 17888 | echo $ECHO_N "checking for ia_openinfo in -liaf... $ECHO_C" >&6; } |
15393 | if test "${ac_cv_lib_iaf_ia_openinfo+set}" = set; then | 17889 | if test "${ac_cv_lib_iaf_ia_openinfo+set}" = set; then |
15394 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 17890 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15395 | else | 17891 | else |
@@ -15402,39 +17898,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
15402 | cat >>conftest.$ac_ext <<_ACEOF | 17898 | cat >>conftest.$ac_ext <<_ACEOF |
15403 | /* end confdefs.h. */ | 17899 | /* end confdefs.h. */ |
15404 | 17900 | ||
15405 | /* Override any gcc2 internal prototype to avoid an error. */ | 17901 | /* Override any GCC internal prototype to avoid an error. |
17902 | Use char because int might match the return type of a GCC | ||
17903 | builtin and then its argument prototype would still apply. */ | ||
15406 | #ifdef __cplusplus | 17904 | #ifdef __cplusplus |
15407 | extern "C" | 17905 | extern "C" |
15408 | #endif | 17906 | #endif |
15409 | /* We use char because int might match the return type of a gcc2 | ||
15410 | builtin and then its argument prototype would still apply. */ | ||
15411 | char ia_openinfo (); | 17907 | char ia_openinfo (); |
15412 | int | 17908 | int |
15413 | main () | 17909 | main () |
15414 | { | 17910 | { |
15415 | ia_openinfo (); | 17911 | return ia_openinfo (); |
15416 | ; | 17912 | ; |
15417 | return 0; | 17913 | return 0; |
15418 | } | 17914 | } |
15419 | _ACEOF | 17915 | _ACEOF |
15420 | rm -f conftest.$ac_objext conftest$ac_exeext | 17916 | rm -f conftest.$ac_objext conftest$ac_exeext |
15421 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 17917 | if { (ac_try="$ac_link" |
15422 | (eval $ac_link) 2>conftest.er1 | 17918 | case "(($ac_try" in |
17919 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
17920 | *) ac_try_echo=$ac_try;; | ||
17921 | esac | ||
17922 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17923 | (eval "$ac_link") 2>conftest.er1 | ||
15423 | ac_status=$? | 17924 | ac_status=$? |
15424 | grep -v '^ *+' conftest.er1 >conftest.err | 17925 | grep -v '^ *+' conftest.er1 >conftest.err |
15425 | rm -f conftest.er1 | 17926 | rm -f conftest.er1 |
15426 | cat conftest.err >&5 | 17927 | cat conftest.err >&5 |
15427 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17928 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15428 | (exit $ac_status); } && | 17929 | (exit $ac_status); } && |
15429 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 17930 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15430 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17931 | { (case "(($ac_try" in |
15431 | (eval $ac_try) 2>&5 | 17932 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17933 | *) ac_try_echo=$ac_try;; | ||
17934 | esac | ||
17935 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17936 | (eval "$ac_try") 2>&5 | ||
15432 | ac_status=$? | 17937 | ac_status=$? |
15433 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17938 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15434 | (exit $ac_status); }; } && | 17939 | (exit $ac_status); }; } && |
15435 | { ac_try='test -s conftest$ac_exeext' | 17940 | { ac_try='test -s conftest$ac_exeext' |
15436 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17941 | { (case "(($ac_try" in |
15437 | (eval $ac_try) 2>&5 | 17942 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
17943 | *) ac_try_echo=$ac_try;; | ||
17944 | esac | ||
17945 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
17946 | (eval "$ac_try") 2>&5 | ||
15438 | ac_status=$? | 17947 | ac_status=$? |
15439 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17948 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15440 | (exit $ac_status); }; }; then | 17949 | (exit $ac_status); }; }; then |
@@ -15443,14 +17952,15 @@ else | |||
15443 | echo "$as_me: failed program was:" >&5 | 17952 | echo "$as_me: failed program was:" >&5 |
15444 | sed 's/^/| /' conftest.$ac_ext >&5 | 17953 | sed 's/^/| /' conftest.$ac_ext >&5 |
15445 | 17954 | ||
15446 | ac_cv_lib_iaf_ia_openinfo=no | 17955 | ac_cv_lib_iaf_ia_openinfo=no |
15447 | fi | 17956 | fi |
15448 | rm -f conftest.err conftest.$ac_objext \ | 17957 | |
17958 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
15449 | conftest$ac_exeext conftest.$ac_ext | 17959 | conftest$ac_exeext conftest.$ac_ext |
15450 | LIBS=$ac_check_lib_save_LIBS | 17960 | LIBS=$ac_check_lib_save_LIBS |
15451 | fi | 17961 | fi |
15452 | echo "$as_me:$LINENO: result: $ac_cv_lib_iaf_ia_openinfo" >&5 | 17962 | { echo "$as_me:$LINENO: result: $ac_cv_lib_iaf_ia_openinfo" >&5 |
15453 | echo "${ECHO_T}$ac_cv_lib_iaf_ia_openinfo" >&6 | 17963 | echo "${ECHO_T}$ac_cv_lib_iaf_ia_openinfo" >&6; } |
15454 | if test $ac_cv_lib_iaf_ia_openinfo = yes; then | 17964 | if test $ac_cv_lib_iaf_ia_openinfo = yes; then |
15455 | cat >>confdefs.h <<_ACEOF | 17965 | cat >>confdefs.h <<_ACEOF |
15456 | #define HAVE_LIBIAF 1 | 17966 | #define HAVE_LIBIAF 1 |
@@ -15464,8 +17974,8 @@ fi | |||
15464 | ### Configure cryptographic random number support | 17974 | ### Configure cryptographic random number support |
15465 | 17975 | ||
15466 | # Check wheter OpenSSL seeds itself | 17976 | # Check wheter OpenSSL seeds itself |
15467 | echo "$as_me:$LINENO: checking whether OpenSSL's PRNG is internally seeded" >&5 | 17977 | { echo "$as_me:$LINENO: checking whether OpenSSL's PRNG is internally seeded" >&5 |
15468 | echo $ECHO_N "checking whether OpenSSL's PRNG is internally seeded... $ECHO_C" >&6 | 17978 | echo $ECHO_N "checking whether OpenSSL's PRNG is internally seeded... $ECHO_C" >&6; } |
15469 | if test "$cross_compiling" = yes; then | 17979 | if test "$cross_compiling" = yes; then |
15470 | 17980 | ||
15471 | { echo "$as_me:$LINENO: WARNING: cross compiling: assuming yes" >&5 | 17981 | { echo "$as_me:$LINENO: WARNING: cross compiling: assuming yes" >&5 |
@@ -15489,20 +17999,29 @@ int main(void) { exit(RAND_status() == 1 ? 0 : 1); } | |||
15489 | 17999 | ||
15490 | _ACEOF | 18000 | _ACEOF |
15491 | rm -f conftest$ac_exeext | 18001 | rm -f conftest$ac_exeext |
15492 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 18002 | if { (ac_try="$ac_link" |
15493 | (eval $ac_link) 2>&5 | 18003 | case "(($ac_try" in |
18004 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
18005 | *) ac_try_echo=$ac_try;; | ||
18006 | esac | ||
18007 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
18008 | (eval "$ac_link") 2>&5 | ||
15494 | ac_status=$? | 18009 | ac_status=$? |
15495 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18010 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15496 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 18011 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
15497 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18012 | { (case "(($ac_try" in |
15498 | (eval $ac_try) 2>&5 | 18013 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
18014 | *) ac_try_echo=$ac_try;; | ||
18015 | esac | ||
18016 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
18017 | (eval "$ac_try") 2>&5 | ||
15499 | ac_status=$? | 18018 | ac_status=$? |
15500 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18019 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15501 | (exit $ac_status); }; }; then | 18020 | (exit $ac_status); }; }; then |
15502 | 18021 | ||
15503 | OPENSSL_SEEDS_ITSELF=yes | 18022 | OPENSSL_SEEDS_ITSELF=yes |
15504 | echo "$as_me:$LINENO: result: yes" >&5 | 18023 | { echo "$as_me:$LINENO: result: yes" >&5 |
15505 | echo "${ECHO_T}yes" >&6 | 18024 | echo "${ECHO_T}yes" >&6; } |
15506 | 18025 | ||
15507 | else | 18026 | else |
15508 | echo "$as_me: program exited with status $ac_status" >&5 | 18027 | echo "$as_me: program exited with status $ac_status" >&5 |
@@ -15511,23 +18030,24 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
15511 | 18030 | ||
15512 | ( exit $ac_status ) | 18031 | ( exit $ac_status ) |
15513 | 18032 | ||
15514 | echo "$as_me:$LINENO: result: no" >&5 | 18033 | { echo "$as_me:$LINENO: result: no" >&5 |
15515 | echo "${ECHO_T}no" >&6 | 18034 | echo "${ECHO_T}no" >&6; } |
15516 | # Default to use of the rand helper if OpenSSL doesn't | 18035 | # Default to use of the rand helper if OpenSSL doesn't |
15517 | # seed itself | 18036 | # seed itself |
15518 | USE_RAND_HELPER=yes | 18037 | USE_RAND_HELPER=yes |
15519 | 18038 | ||
15520 | fi | 18039 | fi |
15521 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 18040 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
15522 | fi | 18041 | fi |
15523 | 18042 | ||
15524 | 18043 | ||
18044 | |||
18045 | |||
15525 | # Do we want to force the use of the rand helper? | 18046 | # Do we want to force the use of the rand helper? |
15526 | 18047 | ||
15527 | # Check whether --with-rand-helper or --without-rand-helper was given. | 18048 | # Check whether --with-rand-helper was given. |
15528 | if test "${with_rand_helper+set}" = set; then | 18049 | if test "${with_rand_helper+set}" = set; then |
15529 | withval="$with_rand_helper" | 18050 | withval=$with_rand_helper; |
15530 | |||
15531 | if test "x$withval" = "xno" ; then | 18051 | if test "x$withval" = "xno" ; then |
15532 | # Force use of OpenSSL's internal RNG, even if | 18052 | # Force use of OpenSSL's internal RNG, even if |
15533 | # the previous test showed it to be unseeded. | 18053 | # the previous test showed it to be unseeded. |
@@ -15541,7 +18061,8 @@ echo "$as_me: WARNING: *** Forcing use of OpenSSL's non-self-seeding PRNG" >&2;} | |||
15541 | USE_RAND_HELPER=yes | 18061 | USE_RAND_HELPER=yes |
15542 | fi | 18062 | fi |
15543 | 18063 | ||
15544 | fi; | 18064 | fi |
18065 | |||
15545 | 18066 | ||
15546 | # Which randomness source do we use? | 18067 | # Which randomness source do we use? |
15547 | if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then | 18068 | if test ! -z "$OPENSSL_SEEDS_ITSELF" && test -z "$USE_RAND_HELPER" ; then |
@@ -15564,10 +18085,9 @@ fi | |||
15564 | 18085 | ||
15565 | # PRNGD TCP socket | 18086 | # PRNGD TCP socket |
15566 | 18087 | ||
15567 | # Check whether --with-prngd-port or --without-prngd-port was given. | 18088 | # Check whether --with-prngd-port was given. |
15568 | if test "${with_prngd_port+set}" = set; then | 18089 | if test "${with_prngd_port+set}" = set; then |
15569 | withval="$with_prngd_port" | 18090 | withval=$with_prngd_port; |
15570 | |||
15571 | case "$withval" in | 18091 | case "$withval" in |
15572 | no) | 18092 | no) |
15573 | withval="" | 18093 | withval="" |
@@ -15590,14 +18110,14 @@ _ACEOF | |||
15590 | fi | 18110 | fi |
15591 | 18111 | ||
15592 | 18112 | ||
15593 | fi; | 18113 | fi |
18114 | |||
15594 | 18115 | ||
15595 | # PRNGD Unix domain socket | 18116 | # PRNGD Unix domain socket |
15596 | 18117 | ||
15597 | # Check whether --with-prngd-socket or --without-prngd-socket was given. | 18118 | # Check whether --with-prngd-socket was given. |
15598 | if test "${with_prngd_socket+set}" = set; then | 18119 | if test "${with_prngd_socket+set}" = set; then |
15599 | withval="$with_prngd_socket" | 18120 | withval=$with_prngd_socket; |
15600 | |||
15601 | case "$withval" in | 18121 | case "$withval" in |
15602 | yes) | 18122 | yes) |
15603 | withval="/var/run/egd-pool" | 18123 | withval="/var/run/egd-pool" |
@@ -15636,8 +18156,8 @@ else | |||
15636 | 18156 | ||
15637 | # Check for existing socket only if we don't have a random device already | 18157 | # Check for existing socket only if we don't have a random device already |
15638 | if test "$USE_RAND_HELPER" = yes ; then | 18158 | if test "$USE_RAND_HELPER" = yes ; then |
15639 | echo "$as_me:$LINENO: checking for PRNGD/EGD socket" >&5 | 18159 | { echo "$as_me:$LINENO: checking for PRNGD/EGD socket" >&5 |
15640 | echo $ECHO_N "checking for PRNGD/EGD socket... $ECHO_C" >&6 | 18160 | echo $ECHO_N "checking for PRNGD/EGD socket... $ECHO_C" >&6; } |
15641 | # Insert other locations here | 18161 | # Insert other locations here |
15642 | for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do | 18162 | for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do |
15643 | if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then | 18163 | if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then |
@@ -15650,31 +18170,32 @@ _ACEOF | |||
15650 | fi | 18170 | fi |
15651 | done | 18171 | done |
15652 | if test ! -z "$PRNGD_SOCKET" ; then | 18172 | if test ! -z "$PRNGD_SOCKET" ; then |
15653 | echo "$as_me:$LINENO: result: $PRNGD_SOCKET" >&5 | 18173 | { echo "$as_me:$LINENO: result: $PRNGD_SOCKET" >&5 |
15654 | echo "${ECHO_T}$PRNGD_SOCKET" >&6 | 18174 | echo "${ECHO_T}$PRNGD_SOCKET" >&6; } |
15655 | else | 18175 | else |
15656 | echo "$as_me:$LINENO: result: not found" >&5 | 18176 | { echo "$as_me:$LINENO: result: not found" >&5 |
15657 | echo "${ECHO_T}not found" >&6 | 18177 | echo "${ECHO_T}not found" >&6; } |
15658 | fi | 18178 | fi |
15659 | fi | 18179 | fi |
15660 | 18180 | ||
15661 | 18181 | ||
15662 | fi; | 18182 | fi |
18183 | |||
15663 | 18184 | ||
15664 | # Change default command timeout for hashing entropy source | 18185 | # Change default command timeout for hashing entropy source |
15665 | entropy_timeout=200 | 18186 | entropy_timeout=200 |
15666 | 18187 | ||
15667 | # Check whether --with-entropy-timeout or --without-entropy-timeout was given. | 18188 | # Check whether --with-entropy-timeout was given. |
15668 | if test "${with_entropy_timeout+set}" = set; then | 18189 | if test "${with_entropy_timeout+set}" = set; then |
15669 | withval="$with_entropy_timeout" | 18190 | withval=$with_entropy_timeout; |
15670 | |||
15671 | if test -n "$withval" && test "x$withval" != "xno" && \ | 18191 | if test -n "$withval" && test "x$withval" != "xno" && \ |
15672 | test "x${withval}" != "xyes"; then | 18192 | test "x${withval}" != "xyes"; then |
15673 | entropy_timeout=$withval | 18193 | entropy_timeout=$withval |
15674 | fi | 18194 | fi |
15675 | 18195 | ||
15676 | 18196 | ||
15677 | fi; | 18197 | fi |
18198 | |||
15678 | 18199 | ||
15679 | cat >>confdefs.h <<_ACEOF | 18200 | cat >>confdefs.h <<_ACEOF |
15680 | #define ENTROPY_TIMEOUT_MSEC $entropy_timeout | 18201 | #define ENTROPY_TIMEOUT_MSEC $entropy_timeout |
@@ -15683,17 +18204,17 @@ _ACEOF | |||
15683 | 18204 | ||
15684 | SSH_PRIVSEP_USER=sshd | 18205 | SSH_PRIVSEP_USER=sshd |
15685 | 18206 | ||
15686 | # Check whether --with-privsep-user or --without-privsep-user was given. | 18207 | # Check whether --with-privsep-user was given. |
15687 | if test "${with_privsep_user+set}" = set; then | 18208 | if test "${with_privsep_user+set}" = set; then |
15688 | withval="$with_privsep_user" | 18209 | withval=$with_privsep_user; |
15689 | |||
15690 | if test -n "$withval" && test "x$withval" != "xno" && \ | 18210 | if test -n "$withval" && test "x$withval" != "xno" && \ |
15691 | test "x${withval}" != "xyes"; then | 18211 | test "x${withval}" != "xyes"; then |
15692 | SSH_PRIVSEP_USER=$withval | 18212 | SSH_PRIVSEP_USER=$withval |
15693 | fi | 18213 | fi |
15694 | 18214 | ||
15695 | 18215 | ||
15696 | fi; | 18216 | fi |
18217 | |||
15697 | 18218 | ||
15698 | cat >>confdefs.h <<_ACEOF | 18219 | cat >>confdefs.h <<_ACEOF |
15699 | #define SSH_PRIVSEP_USER "$SSH_PRIVSEP_USER" | 18220 | #define SSH_PRIVSEP_USER "$SSH_PRIVSEP_USER" |
@@ -15719,8 +18240,8 @@ PATH=$PATH:/etc:$OPATH | |||
15719 | 18240 | ||
15720 | # Extract the first word of "ls", so it can be a program name with args. | 18241 | # Extract the first word of "ls", so it can be a program name with args. |
15721 | set dummy ls; ac_word=$2 | 18242 | set dummy ls; ac_word=$2 |
15722 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18243 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15723 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18244 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15724 | if test "${ac_cv_path_PROG_LS+set}" = set; then | 18245 | if test "${ac_cv_path_PROG_LS+set}" = set; then |
15725 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18246 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15726 | else | 18247 | else |
@@ -15735,27 +18256,28 @@ do | |||
15735 | IFS=$as_save_IFS | 18256 | IFS=$as_save_IFS |
15736 | test -z "$as_dir" && as_dir=. | 18257 | test -z "$as_dir" && as_dir=. |
15737 | for ac_exec_ext in '' $ac_executable_extensions; do | 18258 | for ac_exec_ext in '' $ac_executable_extensions; do |
15738 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18259 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
15739 | ac_cv_path_PROG_LS="$as_dir/$ac_word$ac_exec_ext" | 18260 | ac_cv_path_PROG_LS="$as_dir/$ac_word$ac_exec_ext" |
15740 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18261 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
15741 | break 2 | 18262 | break 2 |
15742 | fi | 18263 | fi |
15743 | done | 18264 | done |
15744 | done | 18265 | done |
18266 | IFS=$as_save_IFS | ||
15745 | 18267 | ||
15746 | ;; | 18268 | ;; |
15747 | esac | 18269 | esac |
15748 | fi | 18270 | fi |
15749 | PROG_LS=$ac_cv_path_PROG_LS | 18271 | PROG_LS=$ac_cv_path_PROG_LS |
15750 | |||
15751 | if test -n "$PROG_LS"; then | 18272 | if test -n "$PROG_LS"; then |
15752 | echo "$as_me:$LINENO: result: $PROG_LS" >&5 | 18273 | { echo "$as_me:$LINENO: result: $PROG_LS" >&5 |
15753 | echo "${ECHO_T}$PROG_LS" >&6 | 18274 | echo "${ECHO_T}$PROG_LS" >&6; } |
15754 | else | 18275 | else |
15755 | echo "$as_me:$LINENO: result: no" >&5 | 18276 | { echo "$as_me:$LINENO: result: no" >&5 |
15756 | echo "${ECHO_T}no" >&6 | 18277 | echo "${ECHO_T}no" >&6; } |
15757 | fi | 18278 | fi |
15758 | 18279 | ||
18280 | |||
15759 | if test -z "$PROG_LS" ; then | 18281 | if test -z "$PROG_LS" ; then |
15760 | PROG_LS="undef" | 18282 | PROG_LS="undef" |
15761 | fi | 18283 | fi |
@@ -15764,8 +18286,8 @@ fi | |||
15764 | 18286 | ||
15765 | # Extract the first word of "netstat", so it can be a program name with args. | 18287 | # Extract the first word of "netstat", so it can be a program name with args. |
15766 | set dummy netstat; ac_word=$2 | 18288 | set dummy netstat; ac_word=$2 |
15767 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18289 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15768 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18290 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15769 | if test "${ac_cv_path_PROG_NETSTAT+set}" = set; then | 18291 | if test "${ac_cv_path_PROG_NETSTAT+set}" = set; then |
15770 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18292 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15771 | else | 18293 | else |
@@ -15780,27 +18302,28 @@ do | |||
15780 | IFS=$as_save_IFS | 18302 | IFS=$as_save_IFS |
15781 | test -z "$as_dir" && as_dir=. | 18303 | test -z "$as_dir" && as_dir=. |
15782 | for ac_exec_ext in '' $ac_executable_extensions; do | 18304 | for ac_exec_ext in '' $ac_executable_extensions; do |
15783 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18305 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
15784 | ac_cv_path_PROG_NETSTAT="$as_dir/$ac_word$ac_exec_ext" | 18306 | ac_cv_path_PROG_NETSTAT="$as_dir/$ac_word$ac_exec_ext" |
15785 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18307 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
15786 | break 2 | 18308 | break 2 |
15787 | fi | 18309 | fi |
15788 | done | 18310 | done |
15789 | done | 18311 | done |
18312 | IFS=$as_save_IFS | ||
15790 | 18313 | ||
15791 | ;; | 18314 | ;; |
15792 | esac | 18315 | esac |
15793 | fi | 18316 | fi |
15794 | PROG_NETSTAT=$ac_cv_path_PROG_NETSTAT | 18317 | PROG_NETSTAT=$ac_cv_path_PROG_NETSTAT |
15795 | |||
15796 | if test -n "$PROG_NETSTAT"; then | 18318 | if test -n "$PROG_NETSTAT"; then |
15797 | echo "$as_me:$LINENO: result: $PROG_NETSTAT" >&5 | 18319 | { echo "$as_me:$LINENO: result: $PROG_NETSTAT" >&5 |
15798 | echo "${ECHO_T}$PROG_NETSTAT" >&6 | 18320 | echo "${ECHO_T}$PROG_NETSTAT" >&6; } |
15799 | else | 18321 | else |
15800 | echo "$as_me:$LINENO: result: no" >&5 | 18322 | { echo "$as_me:$LINENO: result: no" >&5 |
15801 | echo "${ECHO_T}no" >&6 | 18323 | echo "${ECHO_T}no" >&6; } |
15802 | fi | 18324 | fi |
15803 | 18325 | ||
18326 | |||
15804 | if test -z "$PROG_NETSTAT" ; then | 18327 | if test -z "$PROG_NETSTAT" ; then |
15805 | PROG_NETSTAT="undef" | 18328 | PROG_NETSTAT="undef" |
15806 | fi | 18329 | fi |
@@ -15809,8 +18332,8 @@ fi | |||
15809 | 18332 | ||
15810 | # Extract the first word of "arp", so it can be a program name with args. | 18333 | # Extract the first word of "arp", so it can be a program name with args. |
15811 | set dummy arp; ac_word=$2 | 18334 | set dummy arp; ac_word=$2 |
15812 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18335 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15813 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18336 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15814 | if test "${ac_cv_path_PROG_ARP+set}" = set; then | 18337 | if test "${ac_cv_path_PROG_ARP+set}" = set; then |
15815 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18338 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15816 | else | 18339 | else |
@@ -15825,27 +18348,28 @@ do | |||
15825 | IFS=$as_save_IFS | 18348 | IFS=$as_save_IFS |
15826 | test -z "$as_dir" && as_dir=. | 18349 | test -z "$as_dir" && as_dir=. |
15827 | for ac_exec_ext in '' $ac_executable_extensions; do | 18350 | for ac_exec_ext in '' $ac_executable_extensions; do |
15828 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18351 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
15829 | ac_cv_path_PROG_ARP="$as_dir/$ac_word$ac_exec_ext" | 18352 | ac_cv_path_PROG_ARP="$as_dir/$ac_word$ac_exec_ext" |
15830 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18353 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
15831 | break 2 | 18354 | break 2 |
15832 | fi | 18355 | fi |
15833 | done | 18356 | done |
15834 | done | 18357 | done |
18358 | IFS=$as_save_IFS | ||
15835 | 18359 | ||
15836 | ;; | 18360 | ;; |
15837 | esac | 18361 | esac |
15838 | fi | 18362 | fi |
15839 | PROG_ARP=$ac_cv_path_PROG_ARP | 18363 | PROG_ARP=$ac_cv_path_PROG_ARP |
15840 | |||
15841 | if test -n "$PROG_ARP"; then | 18364 | if test -n "$PROG_ARP"; then |
15842 | echo "$as_me:$LINENO: result: $PROG_ARP" >&5 | 18365 | { echo "$as_me:$LINENO: result: $PROG_ARP" >&5 |
15843 | echo "${ECHO_T}$PROG_ARP" >&6 | 18366 | echo "${ECHO_T}$PROG_ARP" >&6; } |
15844 | else | 18367 | else |
15845 | echo "$as_me:$LINENO: result: no" >&5 | 18368 | { echo "$as_me:$LINENO: result: no" >&5 |
15846 | echo "${ECHO_T}no" >&6 | 18369 | echo "${ECHO_T}no" >&6; } |
15847 | fi | 18370 | fi |
15848 | 18371 | ||
18372 | |||
15849 | if test -z "$PROG_ARP" ; then | 18373 | if test -z "$PROG_ARP" ; then |
15850 | PROG_ARP="undef" | 18374 | PROG_ARP="undef" |
15851 | fi | 18375 | fi |
@@ -15854,8 +18378,8 @@ fi | |||
15854 | 18378 | ||
15855 | # Extract the first word of "ifconfig", so it can be a program name with args. | 18379 | # Extract the first word of "ifconfig", so it can be a program name with args. |
15856 | set dummy ifconfig; ac_word=$2 | 18380 | set dummy ifconfig; ac_word=$2 |
15857 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18381 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15858 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18382 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15859 | if test "${ac_cv_path_PROG_IFCONFIG+set}" = set; then | 18383 | if test "${ac_cv_path_PROG_IFCONFIG+set}" = set; then |
15860 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18384 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15861 | else | 18385 | else |
@@ -15870,27 +18394,28 @@ do | |||
15870 | IFS=$as_save_IFS | 18394 | IFS=$as_save_IFS |
15871 | test -z "$as_dir" && as_dir=. | 18395 | test -z "$as_dir" && as_dir=. |
15872 | for ac_exec_ext in '' $ac_executable_extensions; do | 18396 | for ac_exec_ext in '' $ac_executable_extensions; do |
15873 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18397 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
15874 | ac_cv_path_PROG_IFCONFIG="$as_dir/$ac_word$ac_exec_ext" | 18398 | ac_cv_path_PROG_IFCONFIG="$as_dir/$ac_word$ac_exec_ext" |
15875 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18399 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
15876 | break 2 | 18400 | break 2 |
15877 | fi | 18401 | fi |
15878 | done | 18402 | done |
15879 | done | 18403 | done |
18404 | IFS=$as_save_IFS | ||
15880 | 18405 | ||
15881 | ;; | 18406 | ;; |
15882 | esac | 18407 | esac |
15883 | fi | 18408 | fi |
15884 | PROG_IFCONFIG=$ac_cv_path_PROG_IFCONFIG | 18409 | PROG_IFCONFIG=$ac_cv_path_PROG_IFCONFIG |
15885 | |||
15886 | if test -n "$PROG_IFCONFIG"; then | 18410 | if test -n "$PROG_IFCONFIG"; then |
15887 | echo "$as_me:$LINENO: result: $PROG_IFCONFIG" >&5 | 18411 | { echo "$as_me:$LINENO: result: $PROG_IFCONFIG" >&5 |
15888 | echo "${ECHO_T}$PROG_IFCONFIG" >&6 | 18412 | echo "${ECHO_T}$PROG_IFCONFIG" >&6; } |
15889 | else | 18413 | else |
15890 | echo "$as_me:$LINENO: result: no" >&5 | 18414 | { echo "$as_me:$LINENO: result: no" >&5 |
15891 | echo "${ECHO_T}no" >&6 | 18415 | echo "${ECHO_T}no" >&6; } |
15892 | fi | 18416 | fi |
15893 | 18417 | ||
18418 | |||
15894 | if test -z "$PROG_IFCONFIG" ; then | 18419 | if test -z "$PROG_IFCONFIG" ; then |
15895 | PROG_IFCONFIG="undef" | 18420 | PROG_IFCONFIG="undef" |
15896 | fi | 18421 | fi |
@@ -15899,8 +18424,8 @@ fi | |||
15899 | 18424 | ||
15900 | # Extract the first word of "jstat", so it can be a program name with args. | 18425 | # Extract the first word of "jstat", so it can be a program name with args. |
15901 | set dummy jstat; ac_word=$2 | 18426 | set dummy jstat; ac_word=$2 |
15902 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18427 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15903 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18428 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15904 | if test "${ac_cv_path_PROG_JSTAT+set}" = set; then | 18429 | if test "${ac_cv_path_PROG_JSTAT+set}" = set; then |
15905 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18430 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15906 | else | 18431 | else |
@@ -15915,27 +18440,28 @@ do | |||
15915 | IFS=$as_save_IFS | 18440 | IFS=$as_save_IFS |
15916 | test -z "$as_dir" && as_dir=. | 18441 | test -z "$as_dir" && as_dir=. |
15917 | for ac_exec_ext in '' $ac_executable_extensions; do | 18442 | for ac_exec_ext in '' $ac_executable_extensions; do |
15918 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18443 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
15919 | ac_cv_path_PROG_JSTAT="$as_dir/$ac_word$ac_exec_ext" | 18444 | ac_cv_path_PROG_JSTAT="$as_dir/$ac_word$ac_exec_ext" |
15920 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18445 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
15921 | break 2 | 18446 | break 2 |
15922 | fi | 18447 | fi |
15923 | done | 18448 | done |
15924 | done | 18449 | done |
18450 | IFS=$as_save_IFS | ||
15925 | 18451 | ||
15926 | ;; | 18452 | ;; |
15927 | esac | 18453 | esac |
15928 | fi | 18454 | fi |
15929 | PROG_JSTAT=$ac_cv_path_PROG_JSTAT | 18455 | PROG_JSTAT=$ac_cv_path_PROG_JSTAT |
15930 | |||
15931 | if test -n "$PROG_JSTAT"; then | 18456 | if test -n "$PROG_JSTAT"; then |
15932 | echo "$as_me:$LINENO: result: $PROG_JSTAT" >&5 | 18457 | { echo "$as_me:$LINENO: result: $PROG_JSTAT" >&5 |
15933 | echo "${ECHO_T}$PROG_JSTAT" >&6 | 18458 | echo "${ECHO_T}$PROG_JSTAT" >&6; } |
15934 | else | 18459 | else |
15935 | echo "$as_me:$LINENO: result: no" >&5 | 18460 | { echo "$as_me:$LINENO: result: no" >&5 |
15936 | echo "${ECHO_T}no" >&6 | 18461 | echo "${ECHO_T}no" >&6; } |
15937 | fi | 18462 | fi |
15938 | 18463 | ||
18464 | |||
15939 | if test -z "$PROG_JSTAT" ; then | 18465 | if test -z "$PROG_JSTAT" ; then |
15940 | PROG_JSTAT="undef" | 18466 | PROG_JSTAT="undef" |
15941 | fi | 18467 | fi |
@@ -15944,8 +18470,8 @@ fi | |||
15944 | 18470 | ||
15945 | # Extract the first word of "ps", so it can be a program name with args. | 18471 | # Extract the first word of "ps", so it can be a program name with args. |
15946 | set dummy ps; ac_word=$2 | 18472 | set dummy ps; ac_word=$2 |
15947 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18473 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15948 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18474 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15949 | if test "${ac_cv_path_PROG_PS+set}" = set; then | 18475 | if test "${ac_cv_path_PROG_PS+set}" = set; then |
15950 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18476 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15951 | else | 18477 | else |
@@ -15960,27 +18486,28 @@ do | |||
15960 | IFS=$as_save_IFS | 18486 | IFS=$as_save_IFS |
15961 | test -z "$as_dir" && as_dir=. | 18487 | test -z "$as_dir" && as_dir=. |
15962 | for ac_exec_ext in '' $ac_executable_extensions; do | 18488 | for ac_exec_ext in '' $ac_executable_extensions; do |
15963 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18489 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
15964 | ac_cv_path_PROG_PS="$as_dir/$ac_word$ac_exec_ext" | 18490 | ac_cv_path_PROG_PS="$as_dir/$ac_word$ac_exec_ext" |
15965 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18491 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
15966 | break 2 | 18492 | break 2 |
15967 | fi | 18493 | fi |
15968 | done | 18494 | done |
15969 | done | 18495 | done |
18496 | IFS=$as_save_IFS | ||
15970 | 18497 | ||
15971 | ;; | 18498 | ;; |
15972 | esac | 18499 | esac |
15973 | fi | 18500 | fi |
15974 | PROG_PS=$ac_cv_path_PROG_PS | 18501 | PROG_PS=$ac_cv_path_PROG_PS |
15975 | |||
15976 | if test -n "$PROG_PS"; then | 18502 | if test -n "$PROG_PS"; then |
15977 | echo "$as_me:$LINENO: result: $PROG_PS" >&5 | 18503 | { echo "$as_me:$LINENO: result: $PROG_PS" >&5 |
15978 | echo "${ECHO_T}$PROG_PS" >&6 | 18504 | echo "${ECHO_T}$PROG_PS" >&6; } |
15979 | else | 18505 | else |
15980 | echo "$as_me:$LINENO: result: no" >&5 | 18506 | { echo "$as_me:$LINENO: result: no" >&5 |
15981 | echo "${ECHO_T}no" >&6 | 18507 | echo "${ECHO_T}no" >&6; } |
15982 | fi | 18508 | fi |
15983 | 18509 | ||
18510 | |||
15984 | if test -z "$PROG_PS" ; then | 18511 | if test -z "$PROG_PS" ; then |
15985 | PROG_PS="undef" | 18512 | PROG_PS="undef" |
15986 | fi | 18513 | fi |
@@ -15989,8 +18516,8 @@ fi | |||
15989 | 18516 | ||
15990 | # Extract the first word of "sar", so it can be a program name with args. | 18517 | # Extract the first word of "sar", so it can be a program name with args. |
15991 | set dummy sar; ac_word=$2 | 18518 | set dummy sar; ac_word=$2 |
15992 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18519 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
15993 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18520 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
15994 | if test "${ac_cv_path_PROG_SAR+set}" = set; then | 18521 | if test "${ac_cv_path_PROG_SAR+set}" = set; then |
15995 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18522 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
15996 | else | 18523 | else |
@@ -16005,27 +18532,28 @@ do | |||
16005 | IFS=$as_save_IFS | 18532 | IFS=$as_save_IFS |
16006 | test -z "$as_dir" && as_dir=. | 18533 | test -z "$as_dir" && as_dir=. |
16007 | for ac_exec_ext in '' $ac_executable_extensions; do | 18534 | for ac_exec_ext in '' $ac_executable_extensions; do |
16008 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18535 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16009 | ac_cv_path_PROG_SAR="$as_dir/$ac_word$ac_exec_ext" | 18536 | ac_cv_path_PROG_SAR="$as_dir/$ac_word$ac_exec_ext" |
16010 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18537 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16011 | break 2 | 18538 | break 2 |
16012 | fi | 18539 | fi |
16013 | done | 18540 | done |
16014 | done | 18541 | done |
18542 | IFS=$as_save_IFS | ||
16015 | 18543 | ||
16016 | ;; | 18544 | ;; |
16017 | esac | 18545 | esac |
16018 | fi | 18546 | fi |
16019 | PROG_SAR=$ac_cv_path_PROG_SAR | 18547 | PROG_SAR=$ac_cv_path_PROG_SAR |
16020 | |||
16021 | if test -n "$PROG_SAR"; then | 18548 | if test -n "$PROG_SAR"; then |
16022 | echo "$as_me:$LINENO: result: $PROG_SAR" >&5 | 18549 | { echo "$as_me:$LINENO: result: $PROG_SAR" >&5 |
16023 | echo "${ECHO_T}$PROG_SAR" >&6 | 18550 | echo "${ECHO_T}$PROG_SAR" >&6; } |
16024 | else | 18551 | else |
16025 | echo "$as_me:$LINENO: result: no" >&5 | 18552 | { echo "$as_me:$LINENO: result: no" >&5 |
16026 | echo "${ECHO_T}no" >&6 | 18553 | echo "${ECHO_T}no" >&6; } |
16027 | fi | 18554 | fi |
16028 | 18555 | ||
18556 | |||
16029 | if test -z "$PROG_SAR" ; then | 18557 | if test -z "$PROG_SAR" ; then |
16030 | PROG_SAR="undef" | 18558 | PROG_SAR="undef" |
16031 | fi | 18559 | fi |
@@ -16034,8 +18562,8 @@ fi | |||
16034 | 18562 | ||
16035 | # Extract the first word of "w", so it can be a program name with args. | 18563 | # Extract the first word of "w", so it can be a program name with args. |
16036 | set dummy w; ac_word=$2 | 18564 | set dummy w; ac_word=$2 |
16037 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18565 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16038 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18566 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16039 | if test "${ac_cv_path_PROG_W+set}" = set; then | 18567 | if test "${ac_cv_path_PROG_W+set}" = set; then |
16040 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18568 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16041 | else | 18569 | else |
@@ -16050,27 +18578,28 @@ do | |||
16050 | IFS=$as_save_IFS | 18578 | IFS=$as_save_IFS |
16051 | test -z "$as_dir" && as_dir=. | 18579 | test -z "$as_dir" && as_dir=. |
16052 | for ac_exec_ext in '' $ac_executable_extensions; do | 18580 | for ac_exec_ext in '' $ac_executable_extensions; do |
16053 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18581 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16054 | ac_cv_path_PROG_W="$as_dir/$ac_word$ac_exec_ext" | 18582 | ac_cv_path_PROG_W="$as_dir/$ac_word$ac_exec_ext" |
16055 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18583 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16056 | break 2 | 18584 | break 2 |
16057 | fi | 18585 | fi |
16058 | done | 18586 | done |
16059 | done | 18587 | done |
18588 | IFS=$as_save_IFS | ||
16060 | 18589 | ||
16061 | ;; | 18590 | ;; |
16062 | esac | 18591 | esac |
16063 | fi | 18592 | fi |
16064 | PROG_W=$ac_cv_path_PROG_W | 18593 | PROG_W=$ac_cv_path_PROG_W |
16065 | |||
16066 | if test -n "$PROG_W"; then | 18594 | if test -n "$PROG_W"; then |
16067 | echo "$as_me:$LINENO: result: $PROG_W" >&5 | 18595 | { echo "$as_me:$LINENO: result: $PROG_W" >&5 |
16068 | echo "${ECHO_T}$PROG_W" >&6 | 18596 | echo "${ECHO_T}$PROG_W" >&6; } |
16069 | else | 18597 | else |
16070 | echo "$as_me:$LINENO: result: no" >&5 | 18598 | { echo "$as_me:$LINENO: result: no" >&5 |
16071 | echo "${ECHO_T}no" >&6 | 18599 | echo "${ECHO_T}no" >&6; } |
16072 | fi | 18600 | fi |
16073 | 18601 | ||
18602 | |||
16074 | if test -z "$PROG_W" ; then | 18603 | if test -z "$PROG_W" ; then |
16075 | PROG_W="undef" | 18604 | PROG_W="undef" |
16076 | fi | 18605 | fi |
@@ -16079,8 +18608,8 @@ fi | |||
16079 | 18608 | ||
16080 | # Extract the first word of "who", so it can be a program name with args. | 18609 | # Extract the first word of "who", so it can be a program name with args. |
16081 | set dummy who; ac_word=$2 | 18610 | set dummy who; ac_word=$2 |
16082 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18611 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16083 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18612 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16084 | if test "${ac_cv_path_PROG_WHO+set}" = set; then | 18613 | if test "${ac_cv_path_PROG_WHO+set}" = set; then |
16085 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18614 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16086 | else | 18615 | else |
@@ -16095,27 +18624,28 @@ do | |||
16095 | IFS=$as_save_IFS | 18624 | IFS=$as_save_IFS |
16096 | test -z "$as_dir" && as_dir=. | 18625 | test -z "$as_dir" && as_dir=. |
16097 | for ac_exec_ext in '' $ac_executable_extensions; do | 18626 | for ac_exec_ext in '' $ac_executable_extensions; do |
16098 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18627 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16099 | ac_cv_path_PROG_WHO="$as_dir/$ac_word$ac_exec_ext" | 18628 | ac_cv_path_PROG_WHO="$as_dir/$ac_word$ac_exec_ext" |
16100 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18629 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16101 | break 2 | 18630 | break 2 |
16102 | fi | 18631 | fi |
16103 | done | 18632 | done |
16104 | done | 18633 | done |
18634 | IFS=$as_save_IFS | ||
16105 | 18635 | ||
16106 | ;; | 18636 | ;; |
16107 | esac | 18637 | esac |
16108 | fi | 18638 | fi |
16109 | PROG_WHO=$ac_cv_path_PROG_WHO | 18639 | PROG_WHO=$ac_cv_path_PROG_WHO |
16110 | |||
16111 | if test -n "$PROG_WHO"; then | 18640 | if test -n "$PROG_WHO"; then |
16112 | echo "$as_me:$LINENO: result: $PROG_WHO" >&5 | 18641 | { echo "$as_me:$LINENO: result: $PROG_WHO" >&5 |
16113 | echo "${ECHO_T}$PROG_WHO" >&6 | 18642 | echo "${ECHO_T}$PROG_WHO" >&6; } |
16114 | else | 18643 | else |
16115 | echo "$as_me:$LINENO: result: no" >&5 | 18644 | { echo "$as_me:$LINENO: result: no" >&5 |
16116 | echo "${ECHO_T}no" >&6 | 18645 | echo "${ECHO_T}no" >&6; } |
16117 | fi | 18646 | fi |
16118 | 18647 | ||
18648 | |||
16119 | if test -z "$PROG_WHO" ; then | 18649 | if test -z "$PROG_WHO" ; then |
16120 | PROG_WHO="undef" | 18650 | PROG_WHO="undef" |
16121 | fi | 18651 | fi |
@@ -16124,8 +18654,8 @@ fi | |||
16124 | 18654 | ||
16125 | # Extract the first word of "last", so it can be a program name with args. | 18655 | # Extract the first word of "last", so it can be a program name with args. |
16126 | set dummy last; ac_word=$2 | 18656 | set dummy last; ac_word=$2 |
16127 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18657 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16128 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18658 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16129 | if test "${ac_cv_path_PROG_LAST+set}" = set; then | 18659 | if test "${ac_cv_path_PROG_LAST+set}" = set; then |
16130 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18660 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16131 | else | 18661 | else |
@@ -16140,27 +18670,28 @@ do | |||
16140 | IFS=$as_save_IFS | 18670 | IFS=$as_save_IFS |
16141 | test -z "$as_dir" && as_dir=. | 18671 | test -z "$as_dir" && as_dir=. |
16142 | for ac_exec_ext in '' $ac_executable_extensions; do | 18672 | for ac_exec_ext in '' $ac_executable_extensions; do |
16143 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18673 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16144 | ac_cv_path_PROG_LAST="$as_dir/$ac_word$ac_exec_ext" | 18674 | ac_cv_path_PROG_LAST="$as_dir/$ac_word$ac_exec_ext" |
16145 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18675 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16146 | break 2 | 18676 | break 2 |
16147 | fi | 18677 | fi |
16148 | done | 18678 | done |
16149 | done | 18679 | done |
18680 | IFS=$as_save_IFS | ||
16150 | 18681 | ||
16151 | ;; | 18682 | ;; |
16152 | esac | 18683 | esac |
16153 | fi | 18684 | fi |
16154 | PROG_LAST=$ac_cv_path_PROG_LAST | 18685 | PROG_LAST=$ac_cv_path_PROG_LAST |
16155 | |||
16156 | if test -n "$PROG_LAST"; then | 18686 | if test -n "$PROG_LAST"; then |
16157 | echo "$as_me:$LINENO: result: $PROG_LAST" >&5 | 18687 | { echo "$as_me:$LINENO: result: $PROG_LAST" >&5 |
16158 | echo "${ECHO_T}$PROG_LAST" >&6 | 18688 | echo "${ECHO_T}$PROG_LAST" >&6; } |
16159 | else | 18689 | else |
16160 | echo "$as_me:$LINENO: result: no" >&5 | 18690 | { echo "$as_me:$LINENO: result: no" >&5 |
16161 | echo "${ECHO_T}no" >&6 | 18691 | echo "${ECHO_T}no" >&6; } |
16162 | fi | 18692 | fi |
16163 | 18693 | ||
18694 | |||
16164 | if test -z "$PROG_LAST" ; then | 18695 | if test -z "$PROG_LAST" ; then |
16165 | PROG_LAST="undef" | 18696 | PROG_LAST="undef" |
16166 | fi | 18697 | fi |
@@ -16169,8 +18700,8 @@ fi | |||
16169 | 18700 | ||
16170 | # Extract the first word of "lastlog", so it can be a program name with args. | 18701 | # Extract the first word of "lastlog", so it can be a program name with args. |
16171 | set dummy lastlog; ac_word=$2 | 18702 | set dummy lastlog; ac_word=$2 |
16172 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18703 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16173 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18704 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16174 | if test "${ac_cv_path_PROG_LASTLOG+set}" = set; then | 18705 | if test "${ac_cv_path_PROG_LASTLOG+set}" = set; then |
16175 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18706 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16176 | else | 18707 | else |
@@ -16185,27 +18716,28 @@ do | |||
16185 | IFS=$as_save_IFS | 18716 | IFS=$as_save_IFS |
16186 | test -z "$as_dir" && as_dir=. | 18717 | test -z "$as_dir" && as_dir=. |
16187 | for ac_exec_ext in '' $ac_executable_extensions; do | 18718 | for ac_exec_ext in '' $ac_executable_extensions; do |
16188 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18719 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16189 | ac_cv_path_PROG_LASTLOG="$as_dir/$ac_word$ac_exec_ext" | 18720 | ac_cv_path_PROG_LASTLOG="$as_dir/$ac_word$ac_exec_ext" |
16190 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18721 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16191 | break 2 | 18722 | break 2 |
16192 | fi | 18723 | fi |
16193 | done | 18724 | done |
16194 | done | 18725 | done |
18726 | IFS=$as_save_IFS | ||
16195 | 18727 | ||
16196 | ;; | 18728 | ;; |
16197 | esac | 18729 | esac |
16198 | fi | 18730 | fi |
16199 | PROG_LASTLOG=$ac_cv_path_PROG_LASTLOG | 18731 | PROG_LASTLOG=$ac_cv_path_PROG_LASTLOG |
16200 | |||
16201 | if test -n "$PROG_LASTLOG"; then | 18732 | if test -n "$PROG_LASTLOG"; then |
16202 | echo "$as_me:$LINENO: result: $PROG_LASTLOG" >&5 | 18733 | { echo "$as_me:$LINENO: result: $PROG_LASTLOG" >&5 |
16203 | echo "${ECHO_T}$PROG_LASTLOG" >&6 | 18734 | echo "${ECHO_T}$PROG_LASTLOG" >&6; } |
16204 | else | 18735 | else |
16205 | echo "$as_me:$LINENO: result: no" >&5 | 18736 | { echo "$as_me:$LINENO: result: no" >&5 |
16206 | echo "${ECHO_T}no" >&6 | 18737 | echo "${ECHO_T}no" >&6; } |
16207 | fi | 18738 | fi |
16208 | 18739 | ||
18740 | |||
16209 | if test -z "$PROG_LASTLOG" ; then | 18741 | if test -z "$PROG_LASTLOG" ; then |
16210 | PROG_LASTLOG="undef" | 18742 | PROG_LASTLOG="undef" |
16211 | fi | 18743 | fi |
@@ -16214,8 +18746,8 @@ fi | |||
16214 | 18746 | ||
16215 | # Extract the first word of "df", so it can be a program name with args. | 18747 | # Extract the first word of "df", so it can be a program name with args. |
16216 | set dummy df; ac_word=$2 | 18748 | set dummy df; ac_word=$2 |
16217 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18749 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16218 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18750 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16219 | if test "${ac_cv_path_PROG_DF+set}" = set; then | 18751 | if test "${ac_cv_path_PROG_DF+set}" = set; then |
16220 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18752 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16221 | else | 18753 | else |
@@ -16230,27 +18762,28 @@ do | |||
16230 | IFS=$as_save_IFS | 18762 | IFS=$as_save_IFS |
16231 | test -z "$as_dir" && as_dir=. | 18763 | test -z "$as_dir" && as_dir=. |
16232 | for ac_exec_ext in '' $ac_executable_extensions; do | 18764 | for ac_exec_ext in '' $ac_executable_extensions; do |
16233 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18765 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16234 | ac_cv_path_PROG_DF="$as_dir/$ac_word$ac_exec_ext" | 18766 | ac_cv_path_PROG_DF="$as_dir/$ac_word$ac_exec_ext" |
16235 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18767 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16236 | break 2 | 18768 | break 2 |
16237 | fi | 18769 | fi |
16238 | done | 18770 | done |
16239 | done | 18771 | done |
18772 | IFS=$as_save_IFS | ||
16240 | 18773 | ||
16241 | ;; | 18774 | ;; |
16242 | esac | 18775 | esac |
16243 | fi | 18776 | fi |
16244 | PROG_DF=$ac_cv_path_PROG_DF | 18777 | PROG_DF=$ac_cv_path_PROG_DF |
16245 | |||
16246 | if test -n "$PROG_DF"; then | 18778 | if test -n "$PROG_DF"; then |
16247 | echo "$as_me:$LINENO: result: $PROG_DF" >&5 | 18779 | { echo "$as_me:$LINENO: result: $PROG_DF" >&5 |
16248 | echo "${ECHO_T}$PROG_DF" >&6 | 18780 | echo "${ECHO_T}$PROG_DF" >&6; } |
16249 | else | 18781 | else |
16250 | echo "$as_me:$LINENO: result: no" >&5 | 18782 | { echo "$as_me:$LINENO: result: no" >&5 |
16251 | echo "${ECHO_T}no" >&6 | 18783 | echo "${ECHO_T}no" >&6; } |
16252 | fi | 18784 | fi |
16253 | 18785 | ||
18786 | |||
16254 | if test -z "$PROG_DF" ; then | 18787 | if test -z "$PROG_DF" ; then |
16255 | PROG_DF="undef" | 18788 | PROG_DF="undef" |
16256 | fi | 18789 | fi |
@@ -16259,8 +18792,8 @@ fi | |||
16259 | 18792 | ||
16260 | # Extract the first word of "vmstat", so it can be a program name with args. | 18793 | # Extract the first word of "vmstat", so it can be a program name with args. |
16261 | set dummy vmstat; ac_word=$2 | 18794 | set dummy vmstat; ac_word=$2 |
16262 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18795 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16263 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18796 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16264 | if test "${ac_cv_path_PROG_VMSTAT+set}" = set; then | 18797 | if test "${ac_cv_path_PROG_VMSTAT+set}" = set; then |
16265 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18798 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16266 | else | 18799 | else |
@@ -16275,27 +18808,28 @@ do | |||
16275 | IFS=$as_save_IFS | 18808 | IFS=$as_save_IFS |
16276 | test -z "$as_dir" && as_dir=. | 18809 | test -z "$as_dir" && as_dir=. |
16277 | for ac_exec_ext in '' $ac_executable_extensions; do | 18810 | for ac_exec_ext in '' $ac_executable_extensions; do |
16278 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18811 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16279 | ac_cv_path_PROG_VMSTAT="$as_dir/$ac_word$ac_exec_ext" | 18812 | ac_cv_path_PROG_VMSTAT="$as_dir/$ac_word$ac_exec_ext" |
16280 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18813 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16281 | break 2 | 18814 | break 2 |
16282 | fi | 18815 | fi |
16283 | done | 18816 | done |
16284 | done | 18817 | done |
18818 | IFS=$as_save_IFS | ||
16285 | 18819 | ||
16286 | ;; | 18820 | ;; |
16287 | esac | 18821 | esac |
16288 | fi | 18822 | fi |
16289 | PROG_VMSTAT=$ac_cv_path_PROG_VMSTAT | 18823 | PROG_VMSTAT=$ac_cv_path_PROG_VMSTAT |
16290 | |||
16291 | if test -n "$PROG_VMSTAT"; then | 18824 | if test -n "$PROG_VMSTAT"; then |
16292 | echo "$as_me:$LINENO: result: $PROG_VMSTAT" >&5 | 18825 | { echo "$as_me:$LINENO: result: $PROG_VMSTAT" >&5 |
16293 | echo "${ECHO_T}$PROG_VMSTAT" >&6 | 18826 | echo "${ECHO_T}$PROG_VMSTAT" >&6; } |
16294 | else | 18827 | else |
16295 | echo "$as_me:$LINENO: result: no" >&5 | 18828 | { echo "$as_me:$LINENO: result: no" >&5 |
16296 | echo "${ECHO_T}no" >&6 | 18829 | echo "${ECHO_T}no" >&6; } |
16297 | fi | 18830 | fi |
16298 | 18831 | ||
18832 | |||
16299 | if test -z "$PROG_VMSTAT" ; then | 18833 | if test -z "$PROG_VMSTAT" ; then |
16300 | PROG_VMSTAT="undef" | 18834 | PROG_VMSTAT="undef" |
16301 | fi | 18835 | fi |
@@ -16304,8 +18838,8 @@ fi | |||
16304 | 18838 | ||
16305 | # Extract the first word of "uptime", so it can be a program name with args. | 18839 | # Extract the first word of "uptime", so it can be a program name with args. |
16306 | set dummy uptime; ac_word=$2 | 18840 | set dummy uptime; ac_word=$2 |
16307 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18841 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16308 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18842 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16309 | if test "${ac_cv_path_PROG_UPTIME+set}" = set; then | 18843 | if test "${ac_cv_path_PROG_UPTIME+set}" = set; then |
16310 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18844 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16311 | else | 18845 | else |
@@ -16320,27 +18854,28 @@ do | |||
16320 | IFS=$as_save_IFS | 18854 | IFS=$as_save_IFS |
16321 | test -z "$as_dir" && as_dir=. | 18855 | test -z "$as_dir" && as_dir=. |
16322 | for ac_exec_ext in '' $ac_executable_extensions; do | 18856 | for ac_exec_ext in '' $ac_executable_extensions; do |
16323 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18857 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16324 | ac_cv_path_PROG_UPTIME="$as_dir/$ac_word$ac_exec_ext" | 18858 | ac_cv_path_PROG_UPTIME="$as_dir/$ac_word$ac_exec_ext" |
16325 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18859 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16326 | break 2 | 18860 | break 2 |
16327 | fi | 18861 | fi |
16328 | done | 18862 | done |
16329 | done | 18863 | done |
18864 | IFS=$as_save_IFS | ||
16330 | 18865 | ||
16331 | ;; | 18866 | ;; |
16332 | esac | 18867 | esac |
16333 | fi | 18868 | fi |
16334 | PROG_UPTIME=$ac_cv_path_PROG_UPTIME | 18869 | PROG_UPTIME=$ac_cv_path_PROG_UPTIME |
16335 | |||
16336 | if test -n "$PROG_UPTIME"; then | 18870 | if test -n "$PROG_UPTIME"; then |
16337 | echo "$as_me:$LINENO: result: $PROG_UPTIME" >&5 | 18871 | { echo "$as_me:$LINENO: result: $PROG_UPTIME" >&5 |
16338 | echo "${ECHO_T}$PROG_UPTIME" >&6 | 18872 | echo "${ECHO_T}$PROG_UPTIME" >&6; } |
16339 | else | 18873 | else |
16340 | echo "$as_me:$LINENO: result: no" >&5 | 18874 | { echo "$as_me:$LINENO: result: no" >&5 |
16341 | echo "${ECHO_T}no" >&6 | 18875 | echo "${ECHO_T}no" >&6; } |
16342 | fi | 18876 | fi |
16343 | 18877 | ||
18878 | |||
16344 | if test -z "$PROG_UPTIME" ; then | 18879 | if test -z "$PROG_UPTIME" ; then |
16345 | PROG_UPTIME="undef" | 18880 | PROG_UPTIME="undef" |
16346 | fi | 18881 | fi |
@@ -16349,8 +18884,8 @@ fi | |||
16349 | 18884 | ||
16350 | # Extract the first word of "ipcs", so it can be a program name with args. | 18885 | # Extract the first word of "ipcs", so it can be a program name with args. |
16351 | set dummy ipcs; ac_word=$2 | 18886 | set dummy ipcs; ac_word=$2 |
16352 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18887 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16353 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18888 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16354 | if test "${ac_cv_path_PROG_IPCS+set}" = set; then | 18889 | if test "${ac_cv_path_PROG_IPCS+set}" = set; then |
16355 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18890 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16356 | else | 18891 | else |
@@ -16365,27 +18900,28 @@ do | |||
16365 | IFS=$as_save_IFS | 18900 | IFS=$as_save_IFS |
16366 | test -z "$as_dir" && as_dir=. | 18901 | test -z "$as_dir" && as_dir=. |
16367 | for ac_exec_ext in '' $ac_executable_extensions; do | 18902 | for ac_exec_ext in '' $ac_executable_extensions; do |
16368 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18903 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16369 | ac_cv_path_PROG_IPCS="$as_dir/$ac_word$ac_exec_ext" | 18904 | ac_cv_path_PROG_IPCS="$as_dir/$ac_word$ac_exec_ext" |
16370 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18905 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16371 | break 2 | 18906 | break 2 |
16372 | fi | 18907 | fi |
16373 | done | 18908 | done |
16374 | done | 18909 | done |
18910 | IFS=$as_save_IFS | ||
16375 | 18911 | ||
16376 | ;; | 18912 | ;; |
16377 | esac | 18913 | esac |
16378 | fi | 18914 | fi |
16379 | PROG_IPCS=$ac_cv_path_PROG_IPCS | 18915 | PROG_IPCS=$ac_cv_path_PROG_IPCS |
16380 | |||
16381 | if test -n "$PROG_IPCS"; then | 18916 | if test -n "$PROG_IPCS"; then |
16382 | echo "$as_me:$LINENO: result: $PROG_IPCS" >&5 | 18917 | { echo "$as_me:$LINENO: result: $PROG_IPCS" >&5 |
16383 | echo "${ECHO_T}$PROG_IPCS" >&6 | 18918 | echo "${ECHO_T}$PROG_IPCS" >&6; } |
16384 | else | 18919 | else |
16385 | echo "$as_me:$LINENO: result: no" >&5 | 18920 | { echo "$as_me:$LINENO: result: no" >&5 |
16386 | echo "${ECHO_T}no" >&6 | 18921 | echo "${ECHO_T}no" >&6; } |
16387 | fi | 18922 | fi |
16388 | 18923 | ||
18924 | |||
16389 | if test -z "$PROG_IPCS" ; then | 18925 | if test -z "$PROG_IPCS" ; then |
16390 | PROG_IPCS="undef" | 18926 | PROG_IPCS="undef" |
16391 | fi | 18927 | fi |
@@ -16394,8 +18930,8 @@ fi | |||
16394 | 18930 | ||
16395 | # Extract the first word of "tail", so it can be a program name with args. | 18931 | # Extract the first word of "tail", so it can be a program name with args. |
16396 | set dummy tail; ac_word=$2 | 18932 | set dummy tail; ac_word=$2 |
16397 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 18933 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
16398 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 18934 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
16399 | if test "${ac_cv_path_PROG_TAIL+set}" = set; then | 18935 | if test "${ac_cv_path_PROG_TAIL+set}" = set; then |
16400 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 18936 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16401 | else | 18937 | else |
@@ -16410,27 +18946,28 @@ do | |||
16410 | IFS=$as_save_IFS | 18946 | IFS=$as_save_IFS |
16411 | test -z "$as_dir" && as_dir=. | 18947 | test -z "$as_dir" && as_dir=. |
16412 | for ac_exec_ext in '' $ac_executable_extensions; do | 18948 | for ac_exec_ext in '' $ac_executable_extensions; do |
16413 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 18949 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
16414 | ac_cv_path_PROG_TAIL="$as_dir/$ac_word$ac_exec_ext" | 18950 | ac_cv_path_PROG_TAIL="$as_dir/$ac_word$ac_exec_ext" |
16415 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 18951 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
16416 | break 2 | 18952 | break 2 |
16417 | fi | 18953 | fi |
16418 | done | 18954 | done |
16419 | done | 18955 | done |
18956 | IFS=$as_save_IFS | ||
16420 | 18957 | ||
16421 | ;; | 18958 | ;; |
16422 | esac | 18959 | esac |
16423 | fi | 18960 | fi |
16424 | PROG_TAIL=$ac_cv_path_PROG_TAIL | 18961 | PROG_TAIL=$ac_cv_path_PROG_TAIL |
16425 | |||
16426 | if test -n "$PROG_TAIL"; then | 18962 | if test -n "$PROG_TAIL"; then |
16427 | echo "$as_me:$LINENO: result: $PROG_TAIL" >&5 | 18963 | { echo "$as_me:$LINENO: result: $PROG_TAIL" >&5 |
16428 | echo "${ECHO_T}$PROG_TAIL" >&6 | 18964 | echo "${ECHO_T}$PROG_TAIL" >&6; } |
16429 | else | 18965 | else |
16430 | echo "$as_me:$LINENO: result: no" >&5 | 18966 | { echo "$as_me:$LINENO: result: no" >&5 |
16431 | echo "${ECHO_T}no" >&6 | 18967 | echo "${ECHO_T}no" >&6; } |
16432 | fi | 18968 | fi |
16433 | 18969 | ||
18970 | |||
16434 | if test -z "$PROG_TAIL" ; then | 18971 | if test -z "$PROG_TAIL" ; then |
16435 | PROG_TAIL="undef" | 18972 | PROG_TAIL="undef" |
16436 | fi | 18973 | fi |
@@ -16461,8 +18998,8 @@ if test ! -z "$SONY" ; then | |||
16461 | fi | 18998 | fi |
16462 | 18999 | ||
16463 | # Check for long long datatypes | 19000 | # Check for long long datatypes |
16464 | echo "$as_me:$LINENO: checking for long long" >&5 | 19001 | { echo "$as_me:$LINENO: checking for long long" >&5 |
16465 | echo $ECHO_N "checking for long long... $ECHO_C" >&6 | 19002 | echo $ECHO_N "checking for long long... $ECHO_C" >&6; } |
16466 | if test "${ac_cv_type_long_long+set}" = set; then | 19003 | if test "${ac_cv_type_long_long+set}" = set; then |
16467 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19004 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16468 | else | 19005 | else |
@@ -16473,35 +19010,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
16473 | cat >>conftest.$ac_ext <<_ACEOF | 19010 | cat >>conftest.$ac_ext <<_ACEOF |
16474 | /* end confdefs.h. */ | 19011 | /* end confdefs.h. */ |
16475 | $ac_includes_default | 19012 | $ac_includes_default |
19013 | typedef long long ac__type_new_; | ||
16476 | int | 19014 | int |
16477 | main () | 19015 | main () |
16478 | { | 19016 | { |
16479 | if ((long long *) 0) | 19017 | if ((ac__type_new_ *) 0) |
16480 | return 0; | 19018 | return 0; |
16481 | if (sizeof (long long)) | 19019 | if (sizeof (ac__type_new_)) |
16482 | return 0; | 19020 | return 0; |
16483 | ; | 19021 | ; |
16484 | return 0; | 19022 | return 0; |
16485 | } | 19023 | } |
16486 | _ACEOF | 19024 | _ACEOF |
16487 | rm -f conftest.$ac_objext | 19025 | rm -f conftest.$ac_objext |
16488 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19026 | if { (ac_try="$ac_compile" |
16489 | (eval $ac_compile) 2>conftest.er1 | 19027 | case "(($ac_try" in |
19028 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19029 | *) ac_try_echo=$ac_try;; | ||
19030 | esac | ||
19031 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19032 | (eval "$ac_compile") 2>conftest.er1 | ||
16490 | ac_status=$? | 19033 | ac_status=$? |
16491 | grep -v '^ *+' conftest.er1 >conftest.err | 19034 | grep -v '^ *+' conftest.er1 >conftest.err |
16492 | rm -f conftest.er1 | 19035 | rm -f conftest.er1 |
16493 | cat conftest.err >&5 | 19036 | cat conftest.err >&5 |
16494 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19037 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16495 | (exit $ac_status); } && | 19038 | (exit $ac_status); } && |
16496 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19039 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16497 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19040 | { (case "(($ac_try" in |
16498 | (eval $ac_try) 2>&5 | 19041 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19042 | *) ac_try_echo=$ac_try;; | ||
19043 | esac | ||
19044 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19045 | (eval "$ac_try") 2>&5 | ||
16499 | ac_status=$? | 19046 | ac_status=$? |
16500 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19047 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16501 | (exit $ac_status); }; } && | 19048 | (exit $ac_status); }; } && |
16502 | { ac_try='test -s conftest.$ac_objext' | 19049 | { ac_try='test -s conftest.$ac_objext' |
16503 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19050 | { (case "(($ac_try" in |
16504 | (eval $ac_try) 2>&5 | 19051 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19052 | *) ac_try_echo=$ac_try;; | ||
19053 | esac | ||
19054 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19055 | (eval "$ac_try") 2>&5 | ||
16505 | ac_status=$? | 19056 | ac_status=$? |
16506 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19057 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16507 | (exit $ac_status); }; }; then | 19058 | (exit $ac_status); }; }; then |
@@ -16510,12 +19061,13 @@ else | |||
16510 | echo "$as_me: failed program was:" >&5 | 19061 | echo "$as_me: failed program was:" >&5 |
16511 | sed 's/^/| /' conftest.$ac_ext >&5 | 19062 | sed 's/^/| /' conftest.$ac_ext >&5 |
16512 | 19063 | ||
16513 | ac_cv_type_long_long=no | 19064 | ac_cv_type_long_long=no |
16514 | fi | 19065 | fi |
16515 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19066 | |
19067 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16516 | fi | 19068 | fi |
16517 | echo "$as_me:$LINENO: result: $ac_cv_type_long_long" >&5 | 19069 | { echo "$as_me:$LINENO: result: $ac_cv_type_long_long" >&5 |
16518 | echo "${ECHO_T}$ac_cv_type_long_long" >&6 | 19070 | echo "${ECHO_T}$ac_cv_type_long_long" >&6; } |
16519 | if test $ac_cv_type_long_long = yes; then | 19071 | if test $ac_cv_type_long_long = yes; then |
16520 | 19072 | ||
16521 | cat >>confdefs.h <<_ACEOF | 19073 | cat >>confdefs.h <<_ACEOF |
@@ -16524,8 +19076,8 @@ _ACEOF | |||
16524 | 19076 | ||
16525 | 19077 | ||
16526 | fi | 19078 | fi |
16527 | echo "$as_me:$LINENO: checking for unsigned long long" >&5 | 19079 | { echo "$as_me:$LINENO: checking for unsigned long long" >&5 |
16528 | echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6 | 19080 | echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6; } |
16529 | if test "${ac_cv_type_unsigned_long_long+set}" = set; then | 19081 | if test "${ac_cv_type_unsigned_long_long+set}" = set; then |
16530 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19082 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16531 | else | 19083 | else |
@@ -16536,35 +19088,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
16536 | cat >>conftest.$ac_ext <<_ACEOF | 19088 | cat >>conftest.$ac_ext <<_ACEOF |
16537 | /* end confdefs.h. */ | 19089 | /* end confdefs.h. */ |
16538 | $ac_includes_default | 19090 | $ac_includes_default |
19091 | typedef unsigned long long ac__type_new_; | ||
16539 | int | 19092 | int |
16540 | main () | 19093 | main () |
16541 | { | 19094 | { |
16542 | if ((unsigned long long *) 0) | 19095 | if ((ac__type_new_ *) 0) |
16543 | return 0; | 19096 | return 0; |
16544 | if (sizeof (unsigned long long)) | 19097 | if (sizeof (ac__type_new_)) |
16545 | return 0; | 19098 | return 0; |
16546 | ; | 19099 | ; |
16547 | return 0; | 19100 | return 0; |
16548 | } | 19101 | } |
16549 | _ACEOF | 19102 | _ACEOF |
16550 | rm -f conftest.$ac_objext | 19103 | rm -f conftest.$ac_objext |
16551 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19104 | if { (ac_try="$ac_compile" |
16552 | (eval $ac_compile) 2>conftest.er1 | 19105 | case "(($ac_try" in |
19106 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19107 | *) ac_try_echo=$ac_try;; | ||
19108 | esac | ||
19109 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19110 | (eval "$ac_compile") 2>conftest.er1 | ||
16553 | ac_status=$? | 19111 | ac_status=$? |
16554 | grep -v '^ *+' conftest.er1 >conftest.err | 19112 | grep -v '^ *+' conftest.er1 >conftest.err |
16555 | rm -f conftest.er1 | 19113 | rm -f conftest.er1 |
16556 | cat conftest.err >&5 | 19114 | cat conftest.err >&5 |
16557 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19115 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16558 | (exit $ac_status); } && | 19116 | (exit $ac_status); } && |
16559 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19117 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16560 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19118 | { (case "(($ac_try" in |
16561 | (eval $ac_try) 2>&5 | 19119 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19120 | *) ac_try_echo=$ac_try;; | ||
19121 | esac | ||
19122 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19123 | (eval "$ac_try") 2>&5 | ||
16562 | ac_status=$? | 19124 | ac_status=$? |
16563 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19125 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16564 | (exit $ac_status); }; } && | 19126 | (exit $ac_status); }; } && |
16565 | { ac_try='test -s conftest.$ac_objext' | 19127 | { ac_try='test -s conftest.$ac_objext' |
16566 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19128 | { (case "(($ac_try" in |
16567 | (eval $ac_try) 2>&5 | 19129 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19130 | *) ac_try_echo=$ac_try;; | ||
19131 | esac | ||
19132 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19133 | (eval "$ac_try") 2>&5 | ||
16568 | ac_status=$? | 19134 | ac_status=$? |
16569 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19135 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16570 | (exit $ac_status); }; }; then | 19136 | (exit $ac_status); }; }; then |
@@ -16573,12 +19139,13 @@ else | |||
16573 | echo "$as_me: failed program was:" >&5 | 19139 | echo "$as_me: failed program was:" >&5 |
16574 | sed 's/^/| /' conftest.$ac_ext >&5 | 19140 | sed 's/^/| /' conftest.$ac_ext >&5 |
16575 | 19141 | ||
16576 | ac_cv_type_unsigned_long_long=no | 19142 | ac_cv_type_unsigned_long_long=no |
16577 | fi | 19143 | fi |
16578 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19144 | |
19145 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16579 | fi | 19146 | fi |
16580 | echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5 | 19147 | { echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5 |
16581 | echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6 | 19148 | echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6; } |
16582 | if test $ac_cv_type_unsigned_long_long = yes; then | 19149 | if test $ac_cv_type_unsigned_long_long = yes; then |
16583 | 19150 | ||
16584 | cat >>confdefs.h <<_ACEOF | 19151 | cat >>confdefs.h <<_ACEOF |
@@ -16587,8 +19154,8 @@ _ACEOF | |||
16587 | 19154 | ||
16588 | 19155 | ||
16589 | fi | 19156 | fi |
16590 | echo "$as_me:$LINENO: checking for long double" >&5 | 19157 | { echo "$as_me:$LINENO: checking for long double" >&5 |
16591 | echo $ECHO_N "checking for long double... $ECHO_C" >&6 | 19158 | echo $ECHO_N "checking for long double... $ECHO_C" >&6; } |
16592 | if test "${ac_cv_type_long_double+set}" = set; then | 19159 | if test "${ac_cv_type_long_double+set}" = set; then |
16593 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19160 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16594 | else | 19161 | else |
@@ -16599,35 +19166,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
16599 | cat >>conftest.$ac_ext <<_ACEOF | 19166 | cat >>conftest.$ac_ext <<_ACEOF |
16600 | /* end confdefs.h. */ | 19167 | /* end confdefs.h. */ |
16601 | $ac_includes_default | 19168 | $ac_includes_default |
19169 | typedef long double ac__type_new_; | ||
16602 | int | 19170 | int |
16603 | main () | 19171 | main () |
16604 | { | 19172 | { |
16605 | if ((long double *) 0) | 19173 | if ((ac__type_new_ *) 0) |
16606 | return 0; | 19174 | return 0; |
16607 | if (sizeof (long double)) | 19175 | if (sizeof (ac__type_new_)) |
16608 | return 0; | 19176 | return 0; |
16609 | ; | 19177 | ; |
16610 | return 0; | 19178 | return 0; |
16611 | } | 19179 | } |
16612 | _ACEOF | 19180 | _ACEOF |
16613 | rm -f conftest.$ac_objext | 19181 | rm -f conftest.$ac_objext |
16614 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19182 | if { (ac_try="$ac_compile" |
16615 | (eval $ac_compile) 2>conftest.er1 | 19183 | case "(($ac_try" in |
19184 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19185 | *) ac_try_echo=$ac_try;; | ||
19186 | esac | ||
19187 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19188 | (eval "$ac_compile") 2>conftest.er1 | ||
16616 | ac_status=$? | 19189 | ac_status=$? |
16617 | grep -v '^ *+' conftest.er1 >conftest.err | 19190 | grep -v '^ *+' conftest.er1 >conftest.err |
16618 | rm -f conftest.er1 | 19191 | rm -f conftest.er1 |
16619 | cat conftest.err >&5 | 19192 | cat conftest.err >&5 |
16620 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19193 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16621 | (exit $ac_status); } && | 19194 | (exit $ac_status); } && |
16622 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19195 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16623 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19196 | { (case "(($ac_try" in |
16624 | (eval $ac_try) 2>&5 | 19197 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19198 | *) ac_try_echo=$ac_try;; | ||
19199 | esac | ||
19200 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19201 | (eval "$ac_try") 2>&5 | ||
16625 | ac_status=$? | 19202 | ac_status=$? |
16626 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19203 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16627 | (exit $ac_status); }; } && | 19204 | (exit $ac_status); }; } && |
16628 | { ac_try='test -s conftest.$ac_objext' | 19205 | { ac_try='test -s conftest.$ac_objext' |
16629 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19206 | { (case "(($ac_try" in |
16630 | (eval $ac_try) 2>&5 | 19207 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19208 | *) ac_try_echo=$ac_try;; | ||
19209 | esac | ||
19210 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19211 | (eval "$ac_try") 2>&5 | ||
16631 | ac_status=$? | 19212 | ac_status=$? |
16632 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19213 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16633 | (exit $ac_status); }; }; then | 19214 | (exit $ac_status); }; }; then |
@@ -16636,12 +19217,13 @@ else | |||
16636 | echo "$as_me: failed program was:" >&5 | 19217 | echo "$as_me: failed program was:" >&5 |
16637 | sed 's/^/| /' conftest.$ac_ext >&5 | 19218 | sed 's/^/| /' conftest.$ac_ext >&5 |
16638 | 19219 | ||
16639 | ac_cv_type_long_double=no | 19220 | ac_cv_type_long_double=no |
16640 | fi | 19221 | fi |
16641 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19222 | |
19223 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16642 | fi | 19224 | fi |
16643 | echo "$as_me:$LINENO: result: $ac_cv_type_long_double" >&5 | 19225 | { echo "$as_me:$LINENO: result: $ac_cv_type_long_double" >&5 |
16644 | echo "${ECHO_T}$ac_cv_type_long_double" >&6 | 19226 | echo "${ECHO_T}$ac_cv_type_long_double" >&6; } |
16645 | if test $ac_cv_type_long_double = yes; then | 19227 | if test $ac_cv_type_long_double = yes; then |
16646 | 19228 | ||
16647 | cat >>confdefs.h <<_ACEOF | 19229 | cat >>confdefs.h <<_ACEOF |
@@ -16653,8 +19235,8 @@ fi | |||
16653 | 19235 | ||
16654 | 19236 | ||
16655 | # Check datatype sizes | 19237 | # Check datatype sizes |
16656 | echo "$as_me:$LINENO: checking for char" >&5 | 19238 | { echo "$as_me:$LINENO: checking for char" >&5 |
16657 | echo $ECHO_N "checking for char... $ECHO_C" >&6 | 19239 | echo $ECHO_N "checking for char... $ECHO_C" >&6; } |
16658 | if test "${ac_cv_type_char+set}" = set; then | 19240 | if test "${ac_cv_type_char+set}" = set; then |
16659 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19241 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16660 | else | 19242 | else |
@@ -16665,35 +19247,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
16665 | cat >>conftest.$ac_ext <<_ACEOF | 19247 | cat >>conftest.$ac_ext <<_ACEOF |
16666 | /* end confdefs.h. */ | 19248 | /* end confdefs.h. */ |
16667 | $ac_includes_default | 19249 | $ac_includes_default |
19250 | typedef char ac__type_new_; | ||
16668 | int | 19251 | int |
16669 | main () | 19252 | main () |
16670 | { | 19253 | { |
16671 | if ((char *) 0) | 19254 | if ((ac__type_new_ *) 0) |
16672 | return 0; | 19255 | return 0; |
16673 | if (sizeof (char)) | 19256 | if (sizeof (ac__type_new_)) |
16674 | return 0; | 19257 | return 0; |
16675 | ; | 19258 | ; |
16676 | return 0; | 19259 | return 0; |
16677 | } | 19260 | } |
16678 | _ACEOF | 19261 | _ACEOF |
16679 | rm -f conftest.$ac_objext | 19262 | rm -f conftest.$ac_objext |
16680 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19263 | if { (ac_try="$ac_compile" |
16681 | (eval $ac_compile) 2>conftest.er1 | 19264 | case "(($ac_try" in |
19265 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19266 | *) ac_try_echo=$ac_try;; | ||
19267 | esac | ||
19268 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19269 | (eval "$ac_compile") 2>conftest.er1 | ||
16682 | ac_status=$? | 19270 | ac_status=$? |
16683 | grep -v '^ *+' conftest.er1 >conftest.err | 19271 | grep -v '^ *+' conftest.er1 >conftest.err |
16684 | rm -f conftest.er1 | 19272 | rm -f conftest.er1 |
16685 | cat conftest.err >&5 | 19273 | cat conftest.err >&5 |
16686 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19274 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16687 | (exit $ac_status); } && | 19275 | (exit $ac_status); } && |
16688 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19276 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16689 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19277 | { (case "(($ac_try" in |
16690 | (eval $ac_try) 2>&5 | 19278 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19279 | *) ac_try_echo=$ac_try;; | ||
19280 | esac | ||
19281 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19282 | (eval "$ac_try") 2>&5 | ||
16691 | ac_status=$? | 19283 | ac_status=$? |
16692 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19284 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16693 | (exit $ac_status); }; } && | 19285 | (exit $ac_status); }; } && |
16694 | { ac_try='test -s conftest.$ac_objext' | 19286 | { ac_try='test -s conftest.$ac_objext' |
16695 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19287 | { (case "(($ac_try" in |
16696 | (eval $ac_try) 2>&5 | 19288 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19289 | *) ac_try_echo=$ac_try;; | ||
19290 | esac | ||
19291 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19292 | (eval "$ac_try") 2>&5 | ||
16697 | ac_status=$? | 19293 | ac_status=$? |
16698 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19294 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16699 | (exit $ac_status); }; }; then | 19295 | (exit $ac_status); }; }; then |
@@ -16702,23 +19298,23 @@ else | |||
16702 | echo "$as_me: failed program was:" >&5 | 19298 | echo "$as_me: failed program was:" >&5 |
16703 | sed 's/^/| /' conftest.$ac_ext >&5 | 19299 | sed 's/^/| /' conftest.$ac_ext >&5 |
16704 | 19300 | ||
16705 | ac_cv_type_char=no | 19301 | ac_cv_type_char=no |
16706 | fi | 19302 | fi |
16707 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19303 | |
19304 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16708 | fi | 19305 | fi |
16709 | echo "$as_me:$LINENO: result: $ac_cv_type_char" >&5 | 19306 | { echo "$as_me:$LINENO: result: $ac_cv_type_char" >&5 |
16710 | echo "${ECHO_T}$ac_cv_type_char" >&6 | 19307 | echo "${ECHO_T}$ac_cv_type_char" >&6; } |
16711 | 19308 | ||
16712 | echo "$as_me:$LINENO: checking size of char" >&5 | 19309 | # The cast to long int works around a bug in the HP C Compiler |
16713 | echo $ECHO_N "checking size of char... $ECHO_C" >&6 | 19310 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects |
19311 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
19312 | # This bug is HP SR number 8606223364. | ||
19313 | { echo "$as_me:$LINENO: checking size of char" >&5 | ||
19314 | echo $ECHO_N "checking size of char... $ECHO_C" >&6; } | ||
16714 | if test "${ac_cv_sizeof_char+set}" = set; then | 19315 | if test "${ac_cv_sizeof_char+set}" = set; then |
16715 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19316 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
16716 | else | 19317 | else |
16717 | if test "$ac_cv_type_char" = yes; then | ||
16718 | # The cast to unsigned long works around a bug in the HP C Compiler | ||
16719 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects | ||
16720 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
16721 | # This bug is HP SR number 8606223364. | ||
16722 | if test "$cross_compiling" = yes; then | 19318 | if test "$cross_compiling" = yes; then |
16723 | # Depending upon the size, compute the lo and hi bounds. | 19319 | # Depending upon the size, compute the lo and hi bounds. |
16724 | cat >conftest.$ac_ext <<_ACEOF | 19320 | cat >conftest.$ac_ext <<_ACEOF |
@@ -16728,10 +19324,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
16728 | cat >>conftest.$ac_ext <<_ACEOF | 19324 | cat >>conftest.$ac_ext <<_ACEOF |
16729 | /* end confdefs.h. */ | 19325 | /* end confdefs.h. */ |
16730 | $ac_includes_default | 19326 | $ac_includes_default |
19327 | typedef char ac__type_sizeof_; | ||
19328 | |||
16731 | int | 19329 | int |
16732 | main () | 19330 | main () |
16733 | { | 19331 | { |
16734 | static int test_array [1 - 2 * !(((long) (sizeof (char))) >= 0)]; | 19332 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; |
16735 | test_array [0] = 0 | 19333 | test_array [0] = 0 |
16736 | 19334 | ||
16737 | ; | 19335 | ; |
@@ -16739,23 +19337,36 @@ test_array [0] = 0 | |||
16739 | } | 19337 | } |
16740 | _ACEOF | 19338 | _ACEOF |
16741 | rm -f conftest.$ac_objext | 19339 | rm -f conftest.$ac_objext |
16742 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19340 | if { (ac_try="$ac_compile" |
16743 | (eval $ac_compile) 2>conftest.er1 | 19341 | case "(($ac_try" in |
19342 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19343 | *) ac_try_echo=$ac_try;; | ||
19344 | esac | ||
19345 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19346 | (eval "$ac_compile") 2>conftest.er1 | ||
16744 | ac_status=$? | 19347 | ac_status=$? |
16745 | grep -v '^ *+' conftest.er1 >conftest.err | 19348 | grep -v '^ *+' conftest.er1 >conftest.err |
16746 | rm -f conftest.er1 | 19349 | rm -f conftest.er1 |
16747 | cat conftest.err >&5 | 19350 | cat conftest.err >&5 |
16748 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19351 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16749 | (exit $ac_status); } && | 19352 | (exit $ac_status); } && |
16750 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19353 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16751 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19354 | { (case "(($ac_try" in |
16752 | (eval $ac_try) 2>&5 | 19355 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19356 | *) ac_try_echo=$ac_try;; | ||
19357 | esac | ||
19358 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19359 | (eval "$ac_try") 2>&5 | ||
16753 | ac_status=$? | 19360 | ac_status=$? |
16754 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19361 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16755 | (exit $ac_status); }; } && | 19362 | (exit $ac_status); }; } && |
16756 | { ac_try='test -s conftest.$ac_objext' | 19363 | { ac_try='test -s conftest.$ac_objext' |
16757 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19364 | { (case "(($ac_try" in |
16758 | (eval $ac_try) 2>&5 | 19365 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19366 | *) ac_try_echo=$ac_try;; | ||
19367 | esac | ||
19368 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19369 | (eval "$ac_try") 2>&5 | ||
16759 | ac_status=$? | 19370 | ac_status=$? |
16760 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19371 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16761 | (exit $ac_status); }; }; then | 19372 | (exit $ac_status); }; }; then |
@@ -16768,10 +19379,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
16768 | cat >>conftest.$ac_ext <<_ACEOF | 19379 | cat >>conftest.$ac_ext <<_ACEOF |
16769 | /* end confdefs.h. */ | 19380 | /* end confdefs.h. */ |
16770 | $ac_includes_default | 19381 | $ac_includes_default |
19382 | typedef char ac__type_sizeof_; | ||
19383 | |||
16771 | int | 19384 | int |
16772 | main () | 19385 | main () |
16773 | { | 19386 | { |
16774 | static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; | 19387 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
16775 | test_array [0] = 0 | 19388 | test_array [0] = 0 |
16776 | 19389 | ||
16777 | ; | 19390 | ; |
@@ -16779,23 +19392,36 @@ test_array [0] = 0 | |||
16779 | } | 19392 | } |
16780 | _ACEOF | 19393 | _ACEOF |
16781 | rm -f conftest.$ac_objext | 19394 | rm -f conftest.$ac_objext |
16782 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19395 | if { (ac_try="$ac_compile" |
16783 | (eval $ac_compile) 2>conftest.er1 | 19396 | case "(($ac_try" in |
19397 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19398 | *) ac_try_echo=$ac_try;; | ||
19399 | esac | ||
19400 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19401 | (eval "$ac_compile") 2>conftest.er1 | ||
16784 | ac_status=$? | 19402 | ac_status=$? |
16785 | grep -v '^ *+' conftest.er1 >conftest.err | 19403 | grep -v '^ *+' conftest.er1 >conftest.err |
16786 | rm -f conftest.er1 | 19404 | rm -f conftest.er1 |
16787 | cat conftest.err >&5 | 19405 | cat conftest.err >&5 |
16788 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19406 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16789 | (exit $ac_status); } && | 19407 | (exit $ac_status); } && |
16790 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19408 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16791 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19409 | { (case "(($ac_try" in |
16792 | (eval $ac_try) 2>&5 | 19410 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19411 | *) ac_try_echo=$ac_try;; | ||
19412 | esac | ||
19413 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19414 | (eval "$ac_try") 2>&5 | ||
16793 | ac_status=$? | 19415 | ac_status=$? |
16794 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19416 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16795 | (exit $ac_status); }; } && | 19417 | (exit $ac_status); }; } && |
16796 | { ac_try='test -s conftest.$ac_objext' | 19418 | { ac_try='test -s conftest.$ac_objext' |
16797 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19419 | { (case "(($ac_try" in |
16798 | (eval $ac_try) 2>&5 | 19420 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19421 | *) ac_try_echo=$ac_try;; | ||
19422 | esac | ||
19423 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19424 | (eval "$ac_try") 2>&5 | ||
16799 | ac_status=$? | 19425 | ac_status=$? |
16800 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19426 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16801 | (exit $ac_status); }; }; then | 19427 | (exit $ac_status); }; }; then |
@@ -16804,30 +19430,33 @@ else | |||
16804 | echo "$as_me: failed program was:" >&5 | 19430 | echo "$as_me: failed program was:" >&5 |
16805 | sed 's/^/| /' conftest.$ac_ext >&5 | 19431 | sed 's/^/| /' conftest.$ac_ext >&5 |
16806 | 19432 | ||
16807 | ac_lo=`expr $ac_mid + 1` | 19433 | ac_lo=`expr $ac_mid + 1` |
16808 | if test $ac_lo -le $ac_mid; then | 19434 | if test $ac_lo -le $ac_mid; then |
16809 | ac_lo= ac_hi= | 19435 | ac_lo= ac_hi= |
16810 | break | 19436 | break |
16811 | fi | 19437 | fi |
16812 | ac_mid=`expr 2 '*' $ac_mid + 1` | 19438 | ac_mid=`expr 2 '*' $ac_mid + 1` |
16813 | fi | 19439 | fi |
16814 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19440 | |
19441 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16815 | done | 19442 | done |
16816 | else | 19443 | else |
16817 | echo "$as_me: failed program was:" >&5 | 19444 | echo "$as_me: failed program was:" >&5 |
16818 | sed 's/^/| /' conftest.$ac_ext >&5 | 19445 | sed 's/^/| /' conftest.$ac_ext >&5 |
16819 | 19446 | ||
16820 | cat >conftest.$ac_ext <<_ACEOF | 19447 | cat >conftest.$ac_ext <<_ACEOF |
16821 | /* confdefs.h. */ | 19448 | /* confdefs.h. */ |
16822 | _ACEOF | 19449 | _ACEOF |
16823 | cat confdefs.h >>conftest.$ac_ext | 19450 | cat confdefs.h >>conftest.$ac_ext |
16824 | cat >>conftest.$ac_ext <<_ACEOF | 19451 | cat >>conftest.$ac_ext <<_ACEOF |
16825 | /* end confdefs.h. */ | 19452 | /* end confdefs.h. */ |
16826 | $ac_includes_default | 19453 | $ac_includes_default |
19454 | typedef char ac__type_sizeof_; | ||
19455 | |||
16827 | int | 19456 | int |
16828 | main () | 19457 | main () |
16829 | { | 19458 | { |
16830 | static int test_array [1 - 2 * !(((long) (sizeof (char))) < 0)]; | 19459 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; |
16831 | test_array [0] = 0 | 19460 | test_array [0] = 0 |
16832 | 19461 | ||
16833 | ; | 19462 | ; |
@@ -16835,23 +19464,36 @@ test_array [0] = 0 | |||
16835 | } | 19464 | } |
16836 | _ACEOF | 19465 | _ACEOF |
16837 | rm -f conftest.$ac_objext | 19466 | rm -f conftest.$ac_objext |
16838 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19467 | if { (ac_try="$ac_compile" |
16839 | (eval $ac_compile) 2>conftest.er1 | 19468 | case "(($ac_try" in |
19469 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19470 | *) ac_try_echo=$ac_try;; | ||
19471 | esac | ||
19472 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19473 | (eval "$ac_compile") 2>conftest.er1 | ||
16840 | ac_status=$? | 19474 | ac_status=$? |
16841 | grep -v '^ *+' conftest.er1 >conftest.err | 19475 | grep -v '^ *+' conftest.er1 >conftest.err |
16842 | rm -f conftest.er1 | 19476 | rm -f conftest.er1 |
16843 | cat conftest.err >&5 | 19477 | cat conftest.err >&5 |
16844 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19478 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16845 | (exit $ac_status); } && | 19479 | (exit $ac_status); } && |
16846 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19480 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16847 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19481 | { (case "(($ac_try" in |
16848 | (eval $ac_try) 2>&5 | 19482 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19483 | *) ac_try_echo=$ac_try;; | ||
19484 | esac | ||
19485 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19486 | (eval "$ac_try") 2>&5 | ||
16849 | ac_status=$? | 19487 | ac_status=$? |
16850 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19488 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16851 | (exit $ac_status); }; } && | 19489 | (exit $ac_status); }; } && |
16852 | { ac_try='test -s conftest.$ac_objext' | 19490 | { ac_try='test -s conftest.$ac_objext' |
16853 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19491 | { (case "(($ac_try" in |
16854 | (eval $ac_try) 2>&5 | 19492 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19493 | *) ac_try_echo=$ac_try;; | ||
19494 | esac | ||
19495 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19496 | (eval "$ac_try") 2>&5 | ||
16855 | ac_status=$? | 19497 | ac_status=$? |
16856 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19498 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16857 | (exit $ac_status); }; }; then | 19499 | (exit $ac_status); }; }; then |
@@ -16864,10 +19506,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
16864 | cat >>conftest.$ac_ext <<_ACEOF | 19506 | cat >>conftest.$ac_ext <<_ACEOF |
16865 | /* end confdefs.h. */ | 19507 | /* end confdefs.h. */ |
16866 | $ac_includes_default | 19508 | $ac_includes_default |
19509 | typedef char ac__type_sizeof_; | ||
19510 | |||
16867 | int | 19511 | int |
16868 | main () | 19512 | main () |
16869 | { | 19513 | { |
16870 | static int test_array [1 - 2 * !(((long) (sizeof (char))) >= $ac_mid)]; | 19514 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; |
16871 | test_array [0] = 0 | 19515 | test_array [0] = 0 |
16872 | 19516 | ||
16873 | ; | 19517 | ; |
@@ -16875,23 +19519,36 @@ test_array [0] = 0 | |||
16875 | } | 19519 | } |
16876 | _ACEOF | 19520 | _ACEOF |
16877 | rm -f conftest.$ac_objext | 19521 | rm -f conftest.$ac_objext |
16878 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19522 | if { (ac_try="$ac_compile" |
16879 | (eval $ac_compile) 2>conftest.er1 | 19523 | case "(($ac_try" in |
19524 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19525 | *) ac_try_echo=$ac_try;; | ||
19526 | esac | ||
19527 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19528 | (eval "$ac_compile") 2>conftest.er1 | ||
16880 | ac_status=$? | 19529 | ac_status=$? |
16881 | grep -v '^ *+' conftest.er1 >conftest.err | 19530 | grep -v '^ *+' conftest.er1 >conftest.err |
16882 | rm -f conftest.er1 | 19531 | rm -f conftest.er1 |
16883 | cat conftest.err >&5 | 19532 | cat conftest.err >&5 |
16884 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19533 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16885 | (exit $ac_status); } && | 19534 | (exit $ac_status); } && |
16886 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19535 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16887 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19536 | { (case "(($ac_try" in |
16888 | (eval $ac_try) 2>&5 | 19537 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19538 | *) ac_try_echo=$ac_try;; | ||
19539 | esac | ||
19540 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19541 | (eval "$ac_try") 2>&5 | ||
16889 | ac_status=$? | 19542 | ac_status=$? |
16890 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19543 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16891 | (exit $ac_status); }; } && | 19544 | (exit $ac_status); }; } && |
16892 | { ac_try='test -s conftest.$ac_objext' | 19545 | { ac_try='test -s conftest.$ac_objext' |
16893 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19546 | { (case "(($ac_try" in |
16894 | (eval $ac_try) 2>&5 | 19547 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19548 | *) ac_try_echo=$ac_try;; | ||
19549 | esac | ||
19550 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19551 | (eval "$ac_try") 2>&5 | ||
16895 | ac_status=$? | 19552 | ac_status=$? |
16896 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19553 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16897 | (exit $ac_status); }; }; then | 19554 | (exit $ac_status); }; }; then |
@@ -16900,24 +19557,27 @@ else | |||
16900 | echo "$as_me: failed program was:" >&5 | 19557 | echo "$as_me: failed program was:" >&5 |
16901 | sed 's/^/| /' conftest.$ac_ext >&5 | 19558 | sed 's/^/| /' conftest.$ac_ext >&5 |
16902 | 19559 | ||
16903 | ac_hi=`expr '(' $ac_mid ')' - 1` | 19560 | ac_hi=`expr '(' $ac_mid ')' - 1` |
16904 | if test $ac_mid -le $ac_hi; then | 19561 | if test $ac_mid -le $ac_hi; then |
16905 | ac_lo= ac_hi= | 19562 | ac_lo= ac_hi= |
16906 | break | 19563 | break |
16907 | fi | 19564 | fi |
16908 | ac_mid=`expr 2 '*' $ac_mid` | 19565 | ac_mid=`expr 2 '*' $ac_mid` |
16909 | fi | 19566 | fi |
16910 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19567 | |
19568 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16911 | done | 19569 | done |
16912 | else | 19570 | else |
16913 | echo "$as_me: failed program was:" >&5 | 19571 | echo "$as_me: failed program was:" >&5 |
16914 | sed 's/^/| /' conftest.$ac_ext >&5 | 19572 | sed 's/^/| /' conftest.$ac_ext >&5 |
16915 | 19573 | ||
16916 | ac_lo= ac_hi= | 19574 | ac_lo= ac_hi= |
16917 | fi | 19575 | fi |
16918 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19576 | |
19577 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16919 | fi | 19578 | fi |
16920 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19579 | |
19580 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16921 | # Binary search between lo and hi bounds. | 19581 | # Binary search between lo and hi bounds. |
16922 | while test "x$ac_lo" != "x$ac_hi"; do | 19582 | while test "x$ac_lo" != "x$ac_hi"; do |
16923 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` | 19583 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` |
@@ -16928,10 +19588,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
16928 | cat >>conftest.$ac_ext <<_ACEOF | 19588 | cat >>conftest.$ac_ext <<_ACEOF |
16929 | /* end confdefs.h. */ | 19589 | /* end confdefs.h. */ |
16930 | $ac_includes_default | 19590 | $ac_includes_default |
19591 | typedef char ac__type_sizeof_; | ||
19592 | |||
16931 | int | 19593 | int |
16932 | main () | 19594 | main () |
16933 | { | 19595 | { |
16934 | static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; | 19596 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
16935 | test_array [0] = 0 | 19597 | test_array [0] = 0 |
16936 | 19598 | ||
16937 | ; | 19599 | ; |
@@ -16939,23 +19601,36 @@ test_array [0] = 0 | |||
16939 | } | 19601 | } |
16940 | _ACEOF | 19602 | _ACEOF |
16941 | rm -f conftest.$ac_objext | 19603 | rm -f conftest.$ac_objext |
16942 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19604 | if { (ac_try="$ac_compile" |
16943 | (eval $ac_compile) 2>conftest.er1 | 19605 | case "(($ac_try" in |
19606 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19607 | *) ac_try_echo=$ac_try;; | ||
19608 | esac | ||
19609 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19610 | (eval "$ac_compile") 2>conftest.er1 | ||
16944 | ac_status=$? | 19611 | ac_status=$? |
16945 | grep -v '^ *+' conftest.er1 >conftest.err | 19612 | grep -v '^ *+' conftest.er1 >conftest.err |
16946 | rm -f conftest.er1 | 19613 | rm -f conftest.er1 |
16947 | cat conftest.err >&5 | 19614 | cat conftest.err >&5 |
16948 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19615 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16949 | (exit $ac_status); } && | 19616 | (exit $ac_status); } && |
16950 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19617 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16951 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19618 | { (case "(($ac_try" in |
16952 | (eval $ac_try) 2>&5 | 19619 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19620 | *) ac_try_echo=$ac_try;; | ||
19621 | esac | ||
19622 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19623 | (eval "$ac_try") 2>&5 | ||
16953 | ac_status=$? | 19624 | ac_status=$? |
16954 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19625 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16955 | (exit $ac_status); }; } && | 19626 | (exit $ac_status); }; } && |
16956 | { ac_try='test -s conftest.$ac_objext' | 19627 | { ac_try='test -s conftest.$ac_objext' |
16957 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19628 | { (case "(($ac_try" in |
16958 | (eval $ac_try) 2>&5 | 19629 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19630 | *) ac_try_echo=$ac_try;; | ||
19631 | esac | ||
19632 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19633 | (eval "$ac_try") 2>&5 | ||
16959 | ac_status=$? | 19634 | ac_status=$? |
16960 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19635 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16961 | (exit $ac_status); }; }; then | 19636 | (exit $ac_status); }; }; then |
@@ -16964,24 +19639,24 @@ else | |||
16964 | echo "$as_me: failed program was:" >&5 | 19639 | echo "$as_me: failed program was:" >&5 |
16965 | sed 's/^/| /' conftest.$ac_ext >&5 | 19640 | sed 's/^/| /' conftest.$ac_ext >&5 |
16966 | 19641 | ||
16967 | ac_lo=`expr '(' $ac_mid ')' + 1` | 19642 | ac_lo=`expr '(' $ac_mid ')' + 1` |
16968 | fi | 19643 | fi |
16969 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19644 | |
19645 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
16970 | done | 19646 | done |
16971 | case $ac_lo in | 19647 | case $ac_lo in |
16972 | ?*) ac_cv_sizeof_char=$ac_lo;; | 19648 | ?*) ac_cv_sizeof_char=$ac_lo;; |
16973 | '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 | 19649 | '') if test "$ac_cv_type_char" = yes; then |
19650 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (char) | ||
16974 | See \`config.log' for more details." >&5 | 19651 | See \`config.log' for more details." >&5 |
16975 | echo "$as_me: error: cannot compute sizeof (char), 77 | 19652 | echo "$as_me: error: cannot compute sizeof (char) |
16976 | See \`config.log' for more details." >&2;} | 19653 | See \`config.log' for more details." >&2;} |
16977 | { (exit 1); exit 1; }; } ;; | 19654 | { (exit 77); exit 77; }; } |
19655 | else | ||
19656 | ac_cv_sizeof_char=0 | ||
19657 | fi ;; | ||
16978 | esac | 19658 | esac |
16979 | else | 19659 | else |
16980 | if test "$cross_compiling" = yes; then | ||
16981 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 | ||
16982 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} | ||
16983 | { (exit 1); exit 1; }; } | ||
16984 | else | ||
16985 | cat >conftest.$ac_ext <<_ACEOF | 19660 | cat >conftest.$ac_ext <<_ACEOF |
16986 | /* confdefs.h. */ | 19661 | /* confdefs.h. */ |
16987 | _ACEOF | 19662 | _ACEOF |
@@ -16989,8 +19664,10 @@ cat confdefs.h >>conftest.$ac_ext | |||
16989 | cat >>conftest.$ac_ext <<_ACEOF | 19664 | cat >>conftest.$ac_ext <<_ACEOF |
16990 | /* end confdefs.h. */ | 19665 | /* end confdefs.h. */ |
16991 | $ac_includes_default | 19666 | $ac_includes_default |
16992 | long longval () { return (long) (sizeof (char)); } | 19667 | typedef char ac__type_sizeof_; |
16993 | unsigned long ulongval () { return (long) (sizeof (char)); } | 19668 | |
19669 | static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
19670 | static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
16994 | #include <stdio.h> | 19671 | #include <stdio.h> |
16995 | #include <stdlib.h> | 19672 | #include <stdlib.h> |
16996 | int | 19673 | int |
@@ -16999,35 +19676,44 @@ main () | |||
16999 | 19676 | ||
17000 | FILE *f = fopen ("conftest.val", "w"); | 19677 | FILE *f = fopen ("conftest.val", "w"); |
17001 | if (! f) | 19678 | if (! f) |
17002 | exit (1); | 19679 | return 1; |
17003 | if (((long) (sizeof (char))) < 0) | 19680 | if (((long int) (sizeof (ac__type_sizeof_))) < 0) |
17004 | { | 19681 | { |
17005 | long i = longval (); | 19682 | long int i = longval (); |
17006 | if (i != ((long) (sizeof (char)))) | 19683 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
17007 | exit (1); | 19684 | return 1; |
17008 | fprintf (f, "%ld\n", i); | 19685 | fprintf (f, "%ld\n", i); |
17009 | } | 19686 | } |
17010 | else | 19687 | else |
17011 | { | 19688 | { |
17012 | unsigned long i = ulongval (); | 19689 | unsigned long int i = ulongval (); |
17013 | if (i != ((long) (sizeof (char)))) | 19690 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
17014 | exit (1); | 19691 | return 1; |
17015 | fprintf (f, "%lu\n", i); | 19692 | fprintf (f, "%lu\n", i); |
17016 | } | 19693 | } |
17017 | exit (ferror (f) || fclose (f) != 0); | 19694 | return ferror (f) || fclose (f) != 0; |
17018 | 19695 | ||
17019 | ; | 19696 | ; |
17020 | return 0; | 19697 | return 0; |
17021 | } | 19698 | } |
17022 | _ACEOF | 19699 | _ACEOF |
17023 | rm -f conftest$ac_exeext | 19700 | rm -f conftest$ac_exeext |
17024 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 19701 | if { (ac_try="$ac_link" |
17025 | (eval $ac_link) 2>&5 | 19702 | case "(($ac_try" in |
19703 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19704 | *) ac_try_echo=$ac_try;; | ||
19705 | esac | ||
19706 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19707 | (eval "$ac_link") 2>&5 | ||
17026 | ac_status=$? | 19708 | ac_status=$? |
17027 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19709 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17028 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 19710 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
17029 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19711 | { (case "(($ac_try" in |
17030 | (eval $ac_try) 2>&5 | 19712 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19713 | *) ac_try_echo=$ac_try;; | ||
19714 | esac | ||
19715 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19716 | (eval "$ac_try") 2>&5 | ||
17031 | ac_status=$? | 19717 | ac_status=$? |
17032 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19718 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17033 | (exit $ac_status); }; }; then | 19719 | (exit $ac_status); }; }; then |
@@ -17038,29 +19724,32 @@ echo "$as_me: failed program was:" >&5 | |||
17038 | sed 's/^/| /' conftest.$ac_ext >&5 | 19724 | sed 's/^/| /' conftest.$ac_ext >&5 |
17039 | 19725 | ||
17040 | ( exit $ac_status ) | 19726 | ( exit $ac_status ) |
17041 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 | 19727 | if test "$ac_cv_type_char" = yes; then |
19728 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (char) | ||
17042 | See \`config.log' for more details." >&5 | 19729 | See \`config.log' for more details." >&5 |
17043 | echo "$as_me: error: cannot compute sizeof (char), 77 | 19730 | echo "$as_me: error: cannot compute sizeof (char) |
17044 | See \`config.log' for more details." >&2;} | 19731 | See \`config.log' for more details." >&2;} |
17045 | { (exit 1); exit 1; }; } | 19732 | { (exit 77); exit 77; }; } |
17046 | fi | 19733 | else |
17047 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 19734 | ac_cv_sizeof_char=0 |
19735 | fi | ||
17048 | fi | 19736 | fi |
19737 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
17049 | fi | 19738 | fi |
17050 | rm -f conftest.val | 19739 | rm -f conftest.val |
17051 | else | ||
17052 | ac_cv_sizeof_char=0 | ||
17053 | fi | 19740 | fi |
17054 | fi | 19741 | { echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 |
17055 | echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 | 19742 | echo "${ECHO_T}$ac_cv_sizeof_char" >&6; } |
17056 | echo "${ECHO_T}$ac_cv_sizeof_char" >&6 | 19743 | |
19744 | |||
19745 | |||
17057 | cat >>confdefs.h <<_ACEOF | 19746 | cat >>confdefs.h <<_ACEOF |
17058 | #define SIZEOF_CHAR $ac_cv_sizeof_char | 19747 | #define SIZEOF_CHAR $ac_cv_sizeof_char |
17059 | _ACEOF | 19748 | _ACEOF |
17060 | 19749 | ||
17061 | 19750 | ||
17062 | echo "$as_me:$LINENO: checking for short int" >&5 | 19751 | { echo "$as_me:$LINENO: checking for short int" >&5 |
17063 | echo $ECHO_N "checking for short int... $ECHO_C" >&6 | 19752 | echo $ECHO_N "checking for short int... $ECHO_C" >&6; } |
17064 | if test "${ac_cv_type_short_int+set}" = set; then | 19753 | if test "${ac_cv_type_short_int+set}" = set; then |
17065 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19754 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
17066 | else | 19755 | else |
@@ -17071,35 +19760,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
17071 | cat >>conftest.$ac_ext <<_ACEOF | 19760 | cat >>conftest.$ac_ext <<_ACEOF |
17072 | /* end confdefs.h. */ | 19761 | /* end confdefs.h. */ |
17073 | $ac_includes_default | 19762 | $ac_includes_default |
19763 | typedef short int ac__type_new_; | ||
17074 | int | 19764 | int |
17075 | main () | 19765 | main () |
17076 | { | 19766 | { |
17077 | if ((short int *) 0) | 19767 | if ((ac__type_new_ *) 0) |
17078 | return 0; | 19768 | return 0; |
17079 | if (sizeof (short int)) | 19769 | if (sizeof (ac__type_new_)) |
17080 | return 0; | 19770 | return 0; |
17081 | ; | 19771 | ; |
17082 | return 0; | 19772 | return 0; |
17083 | } | 19773 | } |
17084 | _ACEOF | 19774 | _ACEOF |
17085 | rm -f conftest.$ac_objext | 19775 | rm -f conftest.$ac_objext |
17086 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19776 | if { (ac_try="$ac_compile" |
17087 | (eval $ac_compile) 2>conftest.er1 | 19777 | case "(($ac_try" in |
19778 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19779 | *) ac_try_echo=$ac_try;; | ||
19780 | esac | ||
19781 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19782 | (eval "$ac_compile") 2>conftest.er1 | ||
17088 | ac_status=$? | 19783 | ac_status=$? |
17089 | grep -v '^ *+' conftest.er1 >conftest.err | 19784 | grep -v '^ *+' conftest.er1 >conftest.err |
17090 | rm -f conftest.er1 | 19785 | rm -f conftest.er1 |
17091 | cat conftest.err >&5 | 19786 | cat conftest.err >&5 |
17092 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19787 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17093 | (exit $ac_status); } && | 19788 | (exit $ac_status); } && |
17094 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19789 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17095 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19790 | { (case "(($ac_try" in |
17096 | (eval $ac_try) 2>&5 | 19791 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19792 | *) ac_try_echo=$ac_try;; | ||
19793 | esac | ||
19794 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19795 | (eval "$ac_try") 2>&5 | ||
17097 | ac_status=$? | 19796 | ac_status=$? |
17098 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19797 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17099 | (exit $ac_status); }; } && | 19798 | (exit $ac_status); }; } && |
17100 | { ac_try='test -s conftest.$ac_objext' | 19799 | { ac_try='test -s conftest.$ac_objext' |
17101 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19800 | { (case "(($ac_try" in |
17102 | (eval $ac_try) 2>&5 | 19801 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19802 | *) ac_try_echo=$ac_try;; | ||
19803 | esac | ||
19804 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19805 | (eval "$ac_try") 2>&5 | ||
17103 | ac_status=$? | 19806 | ac_status=$? |
17104 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19807 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17105 | (exit $ac_status); }; }; then | 19808 | (exit $ac_status); }; }; then |
@@ -17108,23 +19811,23 @@ else | |||
17108 | echo "$as_me: failed program was:" >&5 | 19811 | echo "$as_me: failed program was:" >&5 |
17109 | sed 's/^/| /' conftest.$ac_ext >&5 | 19812 | sed 's/^/| /' conftest.$ac_ext >&5 |
17110 | 19813 | ||
17111 | ac_cv_type_short_int=no | 19814 | ac_cv_type_short_int=no |
17112 | fi | 19815 | fi |
17113 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19816 | |
19817 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17114 | fi | 19818 | fi |
17115 | echo "$as_me:$LINENO: result: $ac_cv_type_short_int" >&5 | 19819 | { echo "$as_me:$LINENO: result: $ac_cv_type_short_int" >&5 |
17116 | echo "${ECHO_T}$ac_cv_type_short_int" >&6 | 19820 | echo "${ECHO_T}$ac_cv_type_short_int" >&6; } |
17117 | 19821 | ||
17118 | echo "$as_me:$LINENO: checking size of short int" >&5 | 19822 | # The cast to long int works around a bug in the HP C Compiler |
17119 | echo $ECHO_N "checking size of short int... $ECHO_C" >&6 | 19823 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects |
19824 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
19825 | # This bug is HP SR number 8606223364. | ||
19826 | { echo "$as_me:$LINENO: checking size of short int" >&5 | ||
19827 | echo $ECHO_N "checking size of short int... $ECHO_C" >&6; } | ||
17120 | if test "${ac_cv_sizeof_short_int+set}" = set; then | 19828 | if test "${ac_cv_sizeof_short_int+set}" = set; then |
17121 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 19829 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
17122 | else | 19830 | else |
17123 | if test "$ac_cv_type_short_int" = yes; then | ||
17124 | # The cast to unsigned long works around a bug in the HP C Compiler | ||
17125 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects | ||
17126 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
17127 | # This bug is HP SR number 8606223364. | ||
17128 | if test "$cross_compiling" = yes; then | 19831 | if test "$cross_compiling" = yes; then |
17129 | # Depending upon the size, compute the lo and hi bounds. | 19832 | # Depending upon the size, compute the lo and hi bounds. |
17130 | cat >conftest.$ac_ext <<_ACEOF | 19833 | cat >conftest.$ac_ext <<_ACEOF |
@@ -17134,10 +19837,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17134 | cat >>conftest.$ac_ext <<_ACEOF | 19837 | cat >>conftest.$ac_ext <<_ACEOF |
17135 | /* end confdefs.h. */ | 19838 | /* end confdefs.h. */ |
17136 | $ac_includes_default | 19839 | $ac_includes_default |
19840 | typedef short int ac__type_sizeof_; | ||
19841 | |||
17137 | int | 19842 | int |
17138 | main () | 19843 | main () |
17139 | { | 19844 | { |
17140 | static int test_array [1 - 2 * !(((long) (sizeof (short int))) >= 0)]; | 19845 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; |
17141 | test_array [0] = 0 | 19846 | test_array [0] = 0 |
17142 | 19847 | ||
17143 | ; | 19848 | ; |
@@ -17145,23 +19850,36 @@ test_array [0] = 0 | |||
17145 | } | 19850 | } |
17146 | _ACEOF | 19851 | _ACEOF |
17147 | rm -f conftest.$ac_objext | 19852 | rm -f conftest.$ac_objext |
17148 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19853 | if { (ac_try="$ac_compile" |
17149 | (eval $ac_compile) 2>conftest.er1 | 19854 | case "(($ac_try" in |
19855 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19856 | *) ac_try_echo=$ac_try;; | ||
19857 | esac | ||
19858 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19859 | (eval "$ac_compile") 2>conftest.er1 | ||
17150 | ac_status=$? | 19860 | ac_status=$? |
17151 | grep -v '^ *+' conftest.er1 >conftest.err | 19861 | grep -v '^ *+' conftest.er1 >conftest.err |
17152 | rm -f conftest.er1 | 19862 | rm -f conftest.er1 |
17153 | cat conftest.err >&5 | 19863 | cat conftest.err >&5 |
17154 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19864 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17155 | (exit $ac_status); } && | 19865 | (exit $ac_status); } && |
17156 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19866 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17157 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19867 | { (case "(($ac_try" in |
17158 | (eval $ac_try) 2>&5 | 19868 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19869 | *) ac_try_echo=$ac_try;; | ||
19870 | esac | ||
19871 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19872 | (eval "$ac_try") 2>&5 | ||
17159 | ac_status=$? | 19873 | ac_status=$? |
17160 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19874 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17161 | (exit $ac_status); }; } && | 19875 | (exit $ac_status); }; } && |
17162 | { ac_try='test -s conftest.$ac_objext' | 19876 | { ac_try='test -s conftest.$ac_objext' |
17163 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19877 | { (case "(($ac_try" in |
17164 | (eval $ac_try) 2>&5 | 19878 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19879 | *) ac_try_echo=$ac_try;; | ||
19880 | esac | ||
19881 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19882 | (eval "$ac_try") 2>&5 | ||
17165 | ac_status=$? | 19883 | ac_status=$? |
17166 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19884 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17167 | (exit $ac_status); }; }; then | 19885 | (exit $ac_status); }; }; then |
@@ -17174,10 +19892,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17174 | cat >>conftest.$ac_ext <<_ACEOF | 19892 | cat >>conftest.$ac_ext <<_ACEOF |
17175 | /* end confdefs.h. */ | 19893 | /* end confdefs.h. */ |
17176 | $ac_includes_default | 19894 | $ac_includes_default |
19895 | typedef short int ac__type_sizeof_; | ||
19896 | |||
17177 | int | 19897 | int |
17178 | main () | 19898 | main () |
17179 | { | 19899 | { |
17180 | static int test_array [1 - 2 * !(((long) (sizeof (short int))) <= $ac_mid)]; | 19900 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
17181 | test_array [0] = 0 | 19901 | test_array [0] = 0 |
17182 | 19902 | ||
17183 | ; | 19903 | ; |
@@ -17185,23 +19905,36 @@ test_array [0] = 0 | |||
17185 | } | 19905 | } |
17186 | _ACEOF | 19906 | _ACEOF |
17187 | rm -f conftest.$ac_objext | 19907 | rm -f conftest.$ac_objext |
17188 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19908 | if { (ac_try="$ac_compile" |
17189 | (eval $ac_compile) 2>conftest.er1 | 19909 | case "(($ac_try" in |
19910 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19911 | *) ac_try_echo=$ac_try;; | ||
19912 | esac | ||
19913 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19914 | (eval "$ac_compile") 2>conftest.er1 | ||
17190 | ac_status=$? | 19915 | ac_status=$? |
17191 | grep -v '^ *+' conftest.er1 >conftest.err | 19916 | grep -v '^ *+' conftest.er1 >conftest.err |
17192 | rm -f conftest.er1 | 19917 | rm -f conftest.er1 |
17193 | cat conftest.err >&5 | 19918 | cat conftest.err >&5 |
17194 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19919 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17195 | (exit $ac_status); } && | 19920 | (exit $ac_status); } && |
17196 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19921 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17197 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19922 | { (case "(($ac_try" in |
17198 | (eval $ac_try) 2>&5 | 19923 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19924 | *) ac_try_echo=$ac_try;; | ||
19925 | esac | ||
19926 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19927 | (eval "$ac_try") 2>&5 | ||
17199 | ac_status=$? | 19928 | ac_status=$? |
17200 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19929 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17201 | (exit $ac_status); }; } && | 19930 | (exit $ac_status); }; } && |
17202 | { ac_try='test -s conftest.$ac_objext' | 19931 | { ac_try='test -s conftest.$ac_objext' |
17203 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19932 | { (case "(($ac_try" in |
17204 | (eval $ac_try) 2>&5 | 19933 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19934 | *) ac_try_echo=$ac_try;; | ||
19935 | esac | ||
19936 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19937 | (eval "$ac_try") 2>&5 | ||
17205 | ac_status=$? | 19938 | ac_status=$? |
17206 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19939 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17207 | (exit $ac_status); }; }; then | 19940 | (exit $ac_status); }; }; then |
@@ -17210,30 +19943,33 @@ else | |||
17210 | echo "$as_me: failed program was:" >&5 | 19943 | echo "$as_me: failed program was:" >&5 |
17211 | sed 's/^/| /' conftest.$ac_ext >&5 | 19944 | sed 's/^/| /' conftest.$ac_ext >&5 |
17212 | 19945 | ||
17213 | ac_lo=`expr $ac_mid + 1` | 19946 | ac_lo=`expr $ac_mid + 1` |
17214 | if test $ac_lo -le $ac_mid; then | 19947 | if test $ac_lo -le $ac_mid; then |
17215 | ac_lo= ac_hi= | 19948 | ac_lo= ac_hi= |
17216 | break | 19949 | break |
17217 | fi | 19950 | fi |
17218 | ac_mid=`expr 2 '*' $ac_mid + 1` | 19951 | ac_mid=`expr 2 '*' $ac_mid + 1` |
17219 | fi | 19952 | fi |
17220 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 19953 | |
19954 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17221 | done | 19955 | done |
17222 | else | 19956 | else |
17223 | echo "$as_me: failed program was:" >&5 | 19957 | echo "$as_me: failed program was:" >&5 |
17224 | sed 's/^/| /' conftest.$ac_ext >&5 | 19958 | sed 's/^/| /' conftest.$ac_ext >&5 |
17225 | 19959 | ||
17226 | cat >conftest.$ac_ext <<_ACEOF | 19960 | cat >conftest.$ac_ext <<_ACEOF |
17227 | /* confdefs.h. */ | 19961 | /* confdefs.h. */ |
17228 | _ACEOF | 19962 | _ACEOF |
17229 | cat confdefs.h >>conftest.$ac_ext | 19963 | cat confdefs.h >>conftest.$ac_ext |
17230 | cat >>conftest.$ac_ext <<_ACEOF | 19964 | cat >>conftest.$ac_ext <<_ACEOF |
17231 | /* end confdefs.h. */ | 19965 | /* end confdefs.h. */ |
17232 | $ac_includes_default | 19966 | $ac_includes_default |
19967 | typedef short int ac__type_sizeof_; | ||
19968 | |||
17233 | int | 19969 | int |
17234 | main () | 19970 | main () |
17235 | { | 19971 | { |
17236 | static int test_array [1 - 2 * !(((long) (sizeof (short int))) < 0)]; | 19972 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; |
17237 | test_array [0] = 0 | 19973 | test_array [0] = 0 |
17238 | 19974 | ||
17239 | ; | 19975 | ; |
@@ -17241,23 +19977,36 @@ test_array [0] = 0 | |||
17241 | } | 19977 | } |
17242 | _ACEOF | 19978 | _ACEOF |
17243 | rm -f conftest.$ac_objext | 19979 | rm -f conftest.$ac_objext |
17244 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 19980 | if { (ac_try="$ac_compile" |
17245 | (eval $ac_compile) 2>conftest.er1 | 19981 | case "(($ac_try" in |
19982 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
19983 | *) ac_try_echo=$ac_try;; | ||
19984 | esac | ||
19985 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19986 | (eval "$ac_compile") 2>conftest.er1 | ||
17246 | ac_status=$? | 19987 | ac_status=$? |
17247 | grep -v '^ *+' conftest.er1 >conftest.err | 19988 | grep -v '^ *+' conftest.er1 >conftest.err |
17248 | rm -f conftest.er1 | 19989 | rm -f conftest.er1 |
17249 | cat conftest.err >&5 | 19990 | cat conftest.err >&5 |
17250 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19991 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17251 | (exit $ac_status); } && | 19992 | (exit $ac_status); } && |
17252 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 19993 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17253 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19994 | { (case "(($ac_try" in |
17254 | (eval $ac_try) 2>&5 | 19995 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
19996 | *) ac_try_echo=$ac_try;; | ||
19997 | esac | ||
19998 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
19999 | (eval "$ac_try") 2>&5 | ||
17255 | ac_status=$? | 20000 | ac_status=$? |
17256 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20001 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17257 | (exit $ac_status); }; } && | 20002 | (exit $ac_status); }; } && |
17258 | { ac_try='test -s conftest.$ac_objext' | 20003 | { ac_try='test -s conftest.$ac_objext' |
17259 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20004 | { (case "(($ac_try" in |
17260 | (eval $ac_try) 2>&5 | 20005 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20006 | *) ac_try_echo=$ac_try;; | ||
20007 | esac | ||
20008 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20009 | (eval "$ac_try") 2>&5 | ||
17261 | ac_status=$? | 20010 | ac_status=$? |
17262 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20011 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17263 | (exit $ac_status); }; }; then | 20012 | (exit $ac_status); }; }; then |
@@ -17270,10 +20019,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17270 | cat >>conftest.$ac_ext <<_ACEOF | 20019 | cat >>conftest.$ac_ext <<_ACEOF |
17271 | /* end confdefs.h. */ | 20020 | /* end confdefs.h. */ |
17272 | $ac_includes_default | 20021 | $ac_includes_default |
20022 | typedef short int ac__type_sizeof_; | ||
20023 | |||
17273 | int | 20024 | int |
17274 | main () | 20025 | main () |
17275 | { | 20026 | { |
17276 | static int test_array [1 - 2 * !(((long) (sizeof (short int))) >= $ac_mid)]; | 20027 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; |
17277 | test_array [0] = 0 | 20028 | test_array [0] = 0 |
17278 | 20029 | ||
17279 | ; | 20030 | ; |
@@ -17281,23 +20032,36 @@ test_array [0] = 0 | |||
17281 | } | 20032 | } |
17282 | _ACEOF | 20033 | _ACEOF |
17283 | rm -f conftest.$ac_objext | 20034 | rm -f conftest.$ac_objext |
17284 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20035 | if { (ac_try="$ac_compile" |
17285 | (eval $ac_compile) 2>conftest.er1 | 20036 | case "(($ac_try" in |
20037 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20038 | *) ac_try_echo=$ac_try;; | ||
20039 | esac | ||
20040 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20041 | (eval "$ac_compile") 2>conftest.er1 | ||
17286 | ac_status=$? | 20042 | ac_status=$? |
17287 | grep -v '^ *+' conftest.er1 >conftest.err | 20043 | grep -v '^ *+' conftest.er1 >conftest.err |
17288 | rm -f conftest.er1 | 20044 | rm -f conftest.er1 |
17289 | cat conftest.err >&5 | 20045 | cat conftest.err >&5 |
17290 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20046 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17291 | (exit $ac_status); } && | 20047 | (exit $ac_status); } && |
17292 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20048 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17293 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20049 | { (case "(($ac_try" in |
17294 | (eval $ac_try) 2>&5 | 20050 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20051 | *) ac_try_echo=$ac_try;; | ||
20052 | esac | ||
20053 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20054 | (eval "$ac_try") 2>&5 | ||
17295 | ac_status=$? | 20055 | ac_status=$? |
17296 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20056 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17297 | (exit $ac_status); }; } && | 20057 | (exit $ac_status); }; } && |
17298 | { ac_try='test -s conftest.$ac_objext' | 20058 | { ac_try='test -s conftest.$ac_objext' |
17299 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20059 | { (case "(($ac_try" in |
17300 | (eval $ac_try) 2>&5 | 20060 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20061 | *) ac_try_echo=$ac_try;; | ||
20062 | esac | ||
20063 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20064 | (eval "$ac_try") 2>&5 | ||
17301 | ac_status=$? | 20065 | ac_status=$? |
17302 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20066 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17303 | (exit $ac_status); }; }; then | 20067 | (exit $ac_status); }; }; then |
@@ -17306,24 +20070,27 @@ else | |||
17306 | echo "$as_me: failed program was:" >&5 | 20070 | echo "$as_me: failed program was:" >&5 |
17307 | sed 's/^/| /' conftest.$ac_ext >&5 | 20071 | sed 's/^/| /' conftest.$ac_ext >&5 |
17308 | 20072 | ||
17309 | ac_hi=`expr '(' $ac_mid ')' - 1` | 20073 | ac_hi=`expr '(' $ac_mid ')' - 1` |
17310 | if test $ac_mid -le $ac_hi; then | 20074 | if test $ac_mid -le $ac_hi; then |
17311 | ac_lo= ac_hi= | 20075 | ac_lo= ac_hi= |
17312 | break | 20076 | break |
17313 | fi | 20077 | fi |
17314 | ac_mid=`expr 2 '*' $ac_mid` | 20078 | ac_mid=`expr 2 '*' $ac_mid` |
17315 | fi | 20079 | fi |
17316 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20080 | |
20081 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17317 | done | 20082 | done |
17318 | else | 20083 | else |
17319 | echo "$as_me: failed program was:" >&5 | 20084 | echo "$as_me: failed program was:" >&5 |
17320 | sed 's/^/| /' conftest.$ac_ext >&5 | 20085 | sed 's/^/| /' conftest.$ac_ext >&5 |
17321 | 20086 | ||
17322 | ac_lo= ac_hi= | 20087 | ac_lo= ac_hi= |
17323 | fi | 20088 | fi |
17324 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20089 | |
20090 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17325 | fi | 20091 | fi |
17326 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20092 | |
20093 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17327 | # Binary search between lo and hi bounds. | 20094 | # Binary search between lo and hi bounds. |
17328 | while test "x$ac_lo" != "x$ac_hi"; do | 20095 | while test "x$ac_lo" != "x$ac_hi"; do |
17329 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` | 20096 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` |
@@ -17334,10 +20101,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17334 | cat >>conftest.$ac_ext <<_ACEOF | 20101 | cat >>conftest.$ac_ext <<_ACEOF |
17335 | /* end confdefs.h. */ | 20102 | /* end confdefs.h. */ |
17336 | $ac_includes_default | 20103 | $ac_includes_default |
20104 | typedef short int ac__type_sizeof_; | ||
20105 | |||
17337 | int | 20106 | int |
17338 | main () | 20107 | main () |
17339 | { | 20108 | { |
17340 | static int test_array [1 - 2 * !(((long) (sizeof (short int))) <= $ac_mid)]; | 20109 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
17341 | test_array [0] = 0 | 20110 | test_array [0] = 0 |
17342 | 20111 | ||
17343 | ; | 20112 | ; |
@@ -17345,23 +20114,36 @@ test_array [0] = 0 | |||
17345 | } | 20114 | } |
17346 | _ACEOF | 20115 | _ACEOF |
17347 | rm -f conftest.$ac_objext | 20116 | rm -f conftest.$ac_objext |
17348 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20117 | if { (ac_try="$ac_compile" |
17349 | (eval $ac_compile) 2>conftest.er1 | 20118 | case "(($ac_try" in |
20119 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20120 | *) ac_try_echo=$ac_try;; | ||
20121 | esac | ||
20122 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20123 | (eval "$ac_compile") 2>conftest.er1 | ||
17350 | ac_status=$? | 20124 | ac_status=$? |
17351 | grep -v '^ *+' conftest.er1 >conftest.err | 20125 | grep -v '^ *+' conftest.er1 >conftest.err |
17352 | rm -f conftest.er1 | 20126 | rm -f conftest.er1 |
17353 | cat conftest.err >&5 | 20127 | cat conftest.err >&5 |
17354 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20128 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17355 | (exit $ac_status); } && | 20129 | (exit $ac_status); } && |
17356 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20130 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17357 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20131 | { (case "(($ac_try" in |
17358 | (eval $ac_try) 2>&5 | 20132 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20133 | *) ac_try_echo=$ac_try;; | ||
20134 | esac | ||
20135 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20136 | (eval "$ac_try") 2>&5 | ||
17359 | ac_status=$? | 20137 | ac_status=$? |
17360 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20138 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17361 | (exit $ac_status); }; } && | 20139 | (exit $ac_status); }; } && |
17362 | { ac_try='test -s conftest.$ac_objext' | 20140 | { ac_try='test -s conftest.$ac_objext' |
17363 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20141 | { (case "(($ac_try" in |
17364 | (eval $ac_try) 2>&5 | 20142 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20143 | *) ac_try_echo=$ac_try;; | ||
20144 | esac | ||
20145 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20146 | (eval "$ac_try") 2>&5 | ||
17365 | ac_status=$? | 20147 | ac_status=$? |
17366 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20148 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17367 | (exit $ac_status); }; }; then | 20149 | (exit $ac_status); }; }; then |
@@ -17370,24 +20152,24 @@ else | |||
17370 | echo "$as_me: failed program was:" >&5 | 20152 | echo "$as_me: failed program was:" >&5 |
17371 | sed 's/^/| /' conftest.$ac_ext >&5 | 20153 | sed 's/^/| /' conftest.$ac_ext >&5 |
17372 | 20154 | ||
17373 | ac_lo=`expr '(' $ac_mid ')' + 1` | 20155 | ac_lo=`expr '(' $ac_mid ')' + 1` |
17374 | fi | 20156 | fi |
17375 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20157 | |
20158 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17376 | done | 20159 | done |
17377 | case $ac_lo in | 20160 | case $ac_lo in |
17378 | ?*) ac_cv_sizeof_short_int=$ac_lo;; | 20161 | ?*) ac_cv_sizeof_short_int=$ac_lo;; |
17379 | '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short int), 77 | 20162 | '') if test "$ac_cv_type_short_int" = yes; then |
20163 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (short int) | ||
17380 | See \`config.log' for more details." >&5 | 20164 | See \`config.log' for more details." >&5 |
17381 | echo "$as_me: error: cannot compute sizeof (short int), 77 | 20165 | echo "$as_me: error: cannot compute sizeof (short int) |
17382 | See \`config.log' for more details." >&2;} | 20166 | See \`config.log' for more details." >&2;} |
17383 | { (exit 1); exit 1; }; } ;; | 20167 | { (exit 77); exit 77; }; } |
20168 | else | ||
20169 | ac_cv_sizeof_short_int=0 | ||
20170 | fi ;; | ||
17384 | esac | 20171 | esac |
17385 | else | 20172 | else |
17386 | if test "$cross_compiling" = yes; then | ||
17387 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 | ||
17388 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} | ||
17389 | { (exit 1); exit 1; }; } | ||
17390 | else | ||
17391 | cat >conftest.$ac_ext <<_ACEOF | 20173 | cat >conftest.$ac_ext <<_ACEOF |
17392 | /* confdefs.h. */ | 20174 | /* confdefs.h. */ |
17393 | _ACEOF | 20175 | _ACEOF |
@@ -17395,8 +20177,10 @@ cat confdefs.h >>conftest.$ac_ext | |||
17395 | cat >>conftest.$ac_ext <<_ACEOF | 20177 | cat >>conftest.$ac_ext <<_ACEOF |
17396 | /* end confdefs.h. */ | 20178 | /* end confdefs.h. */ |
17397 | $ac_includes_default | 20179 | $ac_includes_default |
17398 | long longval () { return (long) (sizeof (short int)); } | 20180 | typedef short int ac__type_sizeof_; |
17399 | unsigned long ulongval () { return (long) (sizeof (short int)); } | 20181 | |
20182 | static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
20183 | static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
17400 | #include <stdio.h> | 20184 | #include <stdio.h> |
17401 | #include <stdlib.h> | 20185 | #include <stdlib.h> |
17402 | int | 20186 | int |
@@ -17405,35 +20189,44 @@ main () | |||
17405 | 20189 | ||
17406 | FILE *f = fopen ("conftest.val", "w"); | 20190 | FILE *f = fopen ("conftest.val", "w"); |
17407 | if (! f) | 20191 | if (! f) |
17408 | exit (1); | 20192 | return 1; |
17409 | if (((long) (sizeof (short int))) < 0) | 20193 | if (((long int) (sizeof (ac__type_sizeof_))) < 0) |
17410 | { | 20194 | { |
17411 | long i = longval (); | 20195 | long int i = longval (); |
17412 | if (i != ((long) (sizeof (short int)))) | 20196 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
17413 | exit (1); | 20197 | return 1; |
17414 | fprintf (f, "%ld\n", i); | 20198 | fprintf (f, "%ld\n", i); |
17415 | } | 20199 | } |
17416 | else | 20200 | else |
17417 | { | 20201 | { |
17418 | unsigned long i = ulongval (); | 20202 | unsigned long int i = ulongval (); |
17419 | if (i != ((long) (sizeof (short int)))) | 20203 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
17420 | exit (1); | 20204 | return 1; |
17421 | fprintf (f, "%lu\n", i); | 20205 | fprintf (f, "%lu\n", i); |
17422 | } | 20206 | } |
17423 | exit (ferror (f) || fclose (f) != 0); | 20207 | return ferror (f) || fclose (f) != 0; |
17424 | 20208 | ||
17425 | ; | 20209 | ; |
17426 | return 0; | 20210 | return 0; |
17427 | } | 20211 | } |
17428 | _ACEOF | 20212 | _ACEOF |
17429 | rm -f conftest$ac_exeext | 20213 | rm -f conftest$ac_exeext |
17430 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 20214 | if { (ac_try="$ac_link" |
17431 | (eval $ac_link) 2>&5 | 20215 | case "(($ac_try" in |
20216 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20217 | *) ac_try_echo=$ac_try;; | ||
20218 | esac | ||
20219 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20220 | (eval "$ac_link") 2>&5 | ||
17432 | ac_status=$? | 20221 | ac_status=$? |
17433 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20222 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17434 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 20223 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
17435 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20224 | { (case "(($ac_try" in |
17436 | (eval $ac_try) 2>&5 | 20225 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20226 | *) ac_try_echo=$ac_try;; | ||
20227 | esac | ||
20228 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20229 | (eval "$ac_try") 2>&5 | ||
17437 | ac_status=$? | 20230 | ac_status=$? |
17438 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20231 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17439 | (exit $ac_status); }; }; then | 20232 | (exit $ac_status); }; }; then |
@@ -17444,29 +20237,32 @@ echo "$as_me: failed program was:" >&5 | |||
17444 | sed 's/^/| /' conftest.$ac_ext >&5 | 20237 | sed 's/^/| /' conftest.$ac_ext >&5 |
17445 | 20238 | ||
17446 | ( exit $ac_status ) | 20239 | ( exit $ac_status ) |
17447 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (short int), 77 | 20240 | if test "$ac_cv_type_short_int" = yes; then |
20241 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (short int) | ||
17448 | See \`config.log' for more details." >&5 | 20242 | See \`config.log' for more details." >&5 |
17449 | echo "$as_me: error: cannot compute sizeof (short int), 77 | 20243 | echo "$as_me: error: cannot compute sizeof (short int) |
17450 | See \`config.log' for more details." >&2;} | 20244 | See \`config.log' for more details." >&2;} |
17451 | { (exit 1); exit 1; }; } | 20245 | { (exit 77); exit 77; }; } |
17452 | fi | 20246 | else |
17453 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 20247 | ac_cv_sizeof_short_int=0 |
20248 | fi | ||
17454 | fi | 20249 | fi |
20250 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
17455 | fi | 20251 | fi |
17456 | rm -f conftest.val | 20252 | rm -f conftest.val |
17457 | else | ||
17458 | ac_cv_sizeof_short_int=0 | ||
17459 | fi | 20253 | fi |
17460 | fi | 20254 | { echo "$as_me:$LINENO: result: $ac_cv_sizeof_short_int" >&5 |
17461 | echo "$as_me:$LINENO: result: $ac_cv_sizeof_short_int" >&5 | 20255 | echo "${ECHO_T}$ac_cv_sizeof_short_int" >&6; } |
17462 | echo "${ECHO_T}$ac_cv_sizeof_short_int" >&6 | 20256 | |
20257 | |||
20258 | |||
17463 | cat >>confdefs.h <<_ACEOF | 20259 | cat >>confdefs.h <<_ACEOF |
17464 | #define SIZEOF_SHORT_INT $ac_cv_sizeof_short_int | 20260 | #define SIZEOF_SHORT_INT $ac_cv_sizeof_short_int |
17465 | _ACEOF | 20261 | _ACEOF |
17466 | 20262 | ||
17467 | 20263 | ||
17468 | echo "$as_me:$LINENO: checking for int" >&5 | 20264 | { echo "$as_me:$LINENO: checking for int" >&5 |
17469 | echo $ECHO_N "checking for int... $ECHO_C" >&6 | 20265 | echo $ECHO_N "checking for int... $ECHO_C" >&6; } |
17470 | if test "${ac_cv_type_int+set}" = set; then | 20266 | if test "${ac_cv_type_int+set}" = set; then |
17471 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 20267 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
17472 | else | 20268 | else |
@@ -17477,35 +20273,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
17477 | cat >>conftest.$ac_ext <<_ACEOF | 20273 | cat >>conftest.$ac_ext <<_ACEOF |
17478 | /* end confdefs.h. */ | 20274 | /* end confdefs.h. */ |
17479 | $ac_includes_default | 20275 | $ac_includes_default |
20276 | typedef int ac__type_new_; | ||
17480 | int | 20277 | int |
17481 | main () | 20278 | main () |
17482 | { | 20279 | { |
17483 | if ((int *) 0) | 20280 | if ((ac__type_new_ *) 0) |
17484 | return 0; | 20281 | return 0; |
17485 | if (sizeof (int)) | 20282 | if (sizeof (ac__type_new_)) |
17486 | return 0; | 20283 | return 0; |
17487 | ; | 20284 | ; |
17488 | return 0; | 20285 | return 0; |
17489 | } | 20286 | } |
17490 | _ACEOF | 20287 | _ACEOF |
17491 | rm -f conftest.$ac_objext | 20288 | rm -f conftest.$ac_objext |
17492 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20289 | if { (ac_try="$ac_compile" |
17493 | (eval $ac_compile) 2>conftest.er1 | 20290 | case "(($ac_try" in |
20291 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20292 | *) ac_try_echo=$ac_try;; | ||
20293 | esac | ||
20294 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20295 | (eval "$ac_compile") 2>conftest.er1 | ||
17494 | ac_status=$? | 20296 | ac_status=$? |
17495 | grep -v '^ *+' conftest.er1 >conftest.err | 20297 | grep -v '^ *+' conftest.er1 >conftest.err |
17496 | rm -f conftest.er1 | 20298 | rm -f conftest.er1 |
17497 | cat conftest.err >&5 | 20299 | cat conftest.err >&5 |
17498 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20300 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17499 | (exit $ac_status); } && | 20301 | (exit $ac_status); } && |
17500 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20302 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17501 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20303 | { (case "(($ac_try" in |
17502 | (eval $ac_try) 2>&5 | 20304 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20305 | *) ac_try_echo=$ac_try;; | ||
20306 | esac | ||
20307 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20308 | (eval "$ac_try") 2>&5 | ||
17503 | ac_status=$? | 20309 | ac_status=$? |
17504 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20310 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17505 | (exit $ac_status); }; } && | 20311 | (exit $ac_status); }; } && |
17506 | { ac_try='test -s conftest.$ac_objext' | 20312 | { ac_try='test -s conftest.$ac_objext' |
17507 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20313 | { (case "(($ac_try" in |
17508 | (eval $ac_try) 2>&5 | 20314 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20315 | *) ac_try_echo=$ac_try;; | ||
20316 | esac | ||
20317 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20318 | (eval "$ac_try") 2>&5 | ||
17509 | ac_status=$? | 20319 | ac_status=$? |
17510 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20320 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17511 | (exit $ac_status); }; }; then | 20321 | (exit $ac_status); }; }; then |
@@ -17514,23 +20324,23 @@ else | |||
17514 | echo "$as_me: failed program was:" >&5 | 20324 | echo "$as_me: failed program was:" >&5 |
17515 | sed 's/^/| /' conftest.$ac_ext >&5 | 20325 | sed 's/^/| /' conftest.$ac_ext >&5 |
17516 | 20326 | ||
17517 | ac_cv_type_int=no | 20327 | ac_cv_type_int=no |
17518 | fi | 20328 | fi |
17519 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20329 | |
20330 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17520 | fi | 20331 | fi |
17521 | echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 | 20332 | { echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 |
17522 | echo "${ECHO_T}$ac_cv_type_int" >&6 | 20333 | echo "${ECHO_T}$ac_cv_type_int" >&6; } |
17523 | 20334 | ||
17524 | echo "$as_me:$LINENO: checking size of int" >&5 | 20335 | # The cast to long int works around a bug in the HP C Compiler |
17525 | echo $ECHO_N "checking size of int... $ECHO_C" >&6 | 20336 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects |
20337 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
20338 | # This bug is HP SR number 8606223364. | ||
20339 | { echo "$as_me:$LINENO: checking size of int" >&5 | ||
20340 | echo $ECHO_N "checking size of int... $ECHO_C" >&6; } | ||
17526 | if test "${ac_cv_sizeof_int+set}" = set; then | 20341 | if test "${ac_cv_sizeof_int+set}" = set; then |
17527 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 20342 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
17528 | else | 20343 | else |
17529 | if test "$ac_cv_type_int" = yes; then | ||
17530 | # The cast to unsigned long works around a bug in the HP C Compiler | ||
17531 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects | ||
17532 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
17533 | # This bug is HP SR number 8606223364. | ||
17534 | if test "$cross_compiling" = yes; then | 20344 | if test "$cross_compiling" = yes; then |
17535 | # Depending upon the size, compute the lo and hi bounds. | 20345 | # Depending upon the size, compute the lo and hi bounds. |
17536 | cat >conftest.$ac_ext <<_ACEOF | 20346 | cat >conftest.$ac_ext <<_ACEOF |
@@ -17540,10 +20350,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17540 | cat >>conftest.$ac_ext <<_ACEOF | 20350 | cat >>conftest.$ac_ext <<_ACEOF |
17541 | /* end confdefs.h. */ | 20351 | /* end confdefs.h. */ |
17542 | $ac_includes_default | 20352 | $ac_includes_default |
20353 | typedef int ac__type_sizeof_; | ||
20354 | |||
17543 | int | 20355 | int |
17544 | main () | 20356 | main () |
17545 | { | 20357 | { |
17546 | static int test_array [1 - 2 * !(((long) (sizeof (int))) >= 0)]; | 20358 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; |
17547 | test_array [0] = 0 | 20359 | test_array [0] = 0 |
17548 | 20360 | ||
17549 | ; | 20361 | ; |
@@ -17551,23 +20363,36 @@ test_array [0] = 0 | |||
17551 | } | 20363 | } |
17552 | _ACEOF | 20364 | _ACEOF |
17553 | rm -f conftest.$ac_objext | 20365 | rm -f conftest.$ac_objext |
17554 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20366 | if { (ac_try="$ac_compile" |
17555 | (eval $ac_compile) 2>conftest.er1 | 20367 | case "(($ac_try" in |
20368 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20369 | *) ac_try_echo=$ac_try;; | ||
20370 | esac | ||
20371 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20372 | (eval "$ac_compile") 2>conftest.er1 | ||
17556 | ac_status=$? | 20373 | ac_status=$? |
17557 | grep -v '^ *+' conftest.er1 >conftest.err | 20374 | grep -v '^ *+' conftest.er1 >conftest.err |
17558 | rm -f conftest.er1 | 20375 | rm -f conftest.er1 |
17559 | cat conftest.err >&5 | 20376 | cat conftest.err >&5 |
17560 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20377 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17561 | (exit $ac_status); } && | 20378 | (exit $ac_status); } && |
17562 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20379 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17563 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20380 | { (case "(($ac_try" in |
17564 | (eval $ac_try) 2>&5 | 20381 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20382 | *) ac_try_echo=$ac_try;; | ||
20383 | esac | ||
20384 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20385 | (eval "$ac_try") 2>&5 | ||
17565 | ac_status=$? | 20386 | ac_status=$? |
17566 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20387 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17567 | (exit $ac_status); }; } && | 20388 | (exit $ac_status); }; } && |
17568 | { ac_try='test -s conftest.$ac_objext' | 20389 | { ac_try='test -s conftest.$ac_objext' |
17569 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20390 | { (case "(($ac_try" in |
17570 | (eval $ac_try) 2>&5 | 20391 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20392 | *) ac_try_echo=$ac_try;; | ||
20393 | esac | ||
20394 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20395 | (eval "$ac_try") 2>&5 | ||
17571 | ac_status=$? | 20396 | ac_status=$? |
17572 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20397 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17573 | (exit $ac_status); }; }; then | 20398 | (exit $ac_status); }; }; then |
@@ -17580,10 +20405,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17580 | cat >>conftest.$ac_ext <<_ACEOF | 20405 | cat >>conftest.$ac_ext <<_ACEOF |
17581 | /* end confdefs.h. */ | 20406 | /* end confdefs.h. */ |
17582 | $ac_includes_default | 20407 | $ac_includes_default |
20408 | typedef int ac__type_sizeof_; | ||
20409 | |||
17583 | int | 20410 | int |
17584 | main () | 20411 | main () |
17585 | { | 20412 | { |
17586 | static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; | 20413 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
17587 | test_array [0] = 0 | 20414 | test_array [0] = 0 |
17588 | 20415 | ||
17589 | ; | 20416 | ; |
@@ -17591,23 +20418,36 @@ test_array [0] = 0 | |||
17591 | } | 20418 | } |
17592 | _ACEOF | 20419 | _ACEOF |
17593 | rm -f conftest.$ac_objext | 20420 | rm -f conftest.$ac_objext |
17594 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20421 | if { (ac_try="$ac_compile" |
17595 | (eval $ac_compile) 2>conftest.er1 | 20422 | case "(($ac_try" in |
20423 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20424 | *) ac_try_echo=$ac_try;; | ||
20425 | esac | ||
20426 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20427 | (eval "$ac_compile") 2>conftest.er1 | ||
17596 | ac_status=$? | 20428 | ac_status=$? |
17597 | grep -v '^ *+' conftest.er1 >conftest.err | 20429 | grep -v '^ *+' conftest.er1 >conftest.err |
17598 | rm -f conftest.er1 | 20430 | rm -f conftest.er1 |
17599 | cat conftest.err >&5 | 20431 | cat conftest.err >&5 |
17600 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20432 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17601 | (exit $ac_status); } && | 20433 | (exit $ac_status); } && |
17602 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20434 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17603 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20435 | { (case "(($ac_try" in |
17604 | (eval $ac_try) 2>&5 | 20436 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20437 | *) ac_try_echo=$ac_try;; | ||
20438 | esac | ||
20439 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20440 | (eval "$ac_try") 2>&5 | ||
17605 | ac_status=$? | 20441 | ac_status=$? |
17606 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20442 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17607 | (exit $ac_status); }; } && | 20443 | (exit $ac_status); }; } && |
17608 | { ac_try='test -s conftest.$ac_objext' | 20444 | { ac_try='test -s conftest.$ac_objext' |
17609 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20445 | { (case "(($ac_try" in |
17610 | (eval $ac_try) 2>&5 | 20446 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20447 | *) ac_try_echo=$ac_try;; | ||
20448 | esac | ||
20449 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20450 | (eval "$ac_try") 2>&5 | ||
17611 | ac_status=$? | 20451 | ac_status=$? |
17612 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20452 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17613 | (exit $ac_status); }; }; then | 20453 | (exit $ac_status); }; }; then |
@@ -17616,30 +20456,33 @@ else | |||
17616 | echo "$as_me: failed program was:" >&5 | 20456 | echo "$as_me: failed program was:" >&5 |
17617 | sed 's/^/| /' conftest.$ac_ext >&5 | 20457 | sed 's/^/| /' conftest.$ac_ext >&5 |
17618 | 20458 | ||
17619 | ac_lo=`expr $ac_mid + 1` | 20459 | ac_lo=`expr $ac_mid + 1` |
17620 | if test $ac_lo -le $ac_mid; then | 20460 | if test $ac_lo -le $ac_mid; then |
17621 | ac_lo= ac_hi= | 20461 | ac_lo= ac_hi= |
17622 | break | 20462 | break |
17623 | fi | 20463 | fi |
17624 | ac_mid=`expr 2 '*' $ac_mid + 1` | 20464 | ac_mid=`expr 2 '*' $ac_mid + 1` |
17625 | fi | 20465 | fi |
17626 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20466 | |
20467 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17627 | done | 20468 | done |
17628 | else | 20469 | else |
17629 | echo "$as_me: failed program was:" >&5 | 20470 | echo "$as_me: failed program was:" >&5 |
17630 | sed 's/^/| /' conftest.$ac_ext >&5 | 20471 | sed 's/^/| /' conftest.$ac_ext >&5 |
17631 | 20472 | ||
17632 | cat >conftest.$ac_ext <<_ACEOF | 20473 | cat >conftest.$ac_ext <<_ACEOF |
17633 | /* confdefs.h. */ | 20474 | /* confdefs.h. */ |
17634 | _ACEOF | 20475 | _ACEOF |
17635 | cat confdefs.h >>conftest.$ac_ext | 20476 | cat confdefs.h >>conftest.$ac_ext |
17636 | cat >>conftest.$ac_ext <<_ACEOF | 20477 | cat >>conftest.$ac_ext <<_ACEOF |
17637 | /* end confdefs.h. */ | 20478 | /* end confdefs.h. */ |
17638 | $ac_includes_default | 20479 | $ac_includes_default |
20480 | typedef int ac__type_sizeof_; | ||
20481 | |||
17639 | int | 20482 | int |
17640 | main () | 20483 | main () |
17641 | { | 20484 | { |
17642 | static int test_array [1 - 2 * !(((long) (sizeof (int))) < 0)]; | 20485 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; |
17643 | test_array [0] = 0 | 20486 | test_array [0] = 0 |
17644 | 20487 | ||
17645 | ; | 20488 | ; |
@@ -17647,23 +20490,36 @@ test_array [0] = 0 | |||
17647 | } | 20490 | } |
17648 | _ACEOF | 20491 | _ACEOF |
17649 | rm -f conftest.$ac_objext | 20492 | rm -f conftest.$ac_objext |
17650 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20493 | if { (ac_try="$ac_compile" |
17651 | (eval $ac_compile) 2>conftest.er1 | 20494 | case "(($ac_try" in |
20495 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20496 | *) ac_try_echo=$ac_try;; | ||
20497 | esac | ||
20498 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20499 | (eval "$ac_compile") 2>conftest.er1 | ||
17652 | ac_status=$? | 20500 | ac_status=$? |
17653 | grep -v '^ *+' conftest.er1 >conftest.err | 20501 | grep -v '^ *+' conftest.er1 >conftest.err |
17654 | rm -f conftest.er1 | 20502 | rm -f conftest.er1 |
17655 | cat conftest.err >&5 | 20503 | cat conftest.err >&5 |
17656 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20504 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17657 | (exit $ac_status); } && | 20505 | (exit $ac_status); } && |
17658 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20506 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17659 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20507 | { (case "(($ac_try" in |
17660 | (eval $ac_try) 2>&5 | 20508 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20509 | *) ac_try_echo=$ac_try;; | ||
20510 | esac | ||
20511 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20512 | (eval "$ac_try") 2>&5 | ||
17661 | ac_status=$? | 20513 | ac_status=$? |
17662 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17663 | (exit $ac_status); }; } && | 20515 | (exit $ac_status); }; } && |
17664 | { ac_try='test -s conftest.$ac_objext' | 20516 | { ac_try='test -s conftest.$ac_objext' |
17665 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20517 | { (case "(($ac_try" in |
17666 | (eval $ac_try) 2>&5 | 20518 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20519 | *) ac_try_echo=$ac_try;; | ||
20520 | esac | ||
20521 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20522 | (eval "$ac_try") 2>&5 | ||
17667 | ac_status=$? | 20523 | ac_status=$? |
17668 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20524 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17669 | (exit $ac_status); }; }; then | 20525 | (exit $ac_status); }; }; then |
@@ -17676,10 +20532,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17676 | cat >>conftest.$ac_ext <<_ACEOF | 20532 | cat >>conftest.$ac_ext <<_ACEOF |
17677 | /* end confdefs.h. */ | 20533 | /* end confdefs.h. */ |
17678 | $ac_includes_default | 20534 | $ac_includes_default |
20535 | typedef int ac__type_sizeof_; | ||
20536 | |||
17679 | int | 20537 | int |
17680 | main () | 20538 | main () |
17681 | { | 20539 | { |
17682 | static int test_array [1 - 2 * !(((long) (sizeof (int))) >= $ac_mid)]; | 20540 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; |
17683 | test_array [0] = 0 | 20541 | test_array [0] = 0 |
17684 | 20542 | ||
17685 | ; | 20543 | ; |
@@ -17687,23 +20545,36 @@ test_array [0] = 0 | |||
17687 | } | 20545 | } |
17688 | _ACEOF | 20546 | _ACEOF |
17689 | rm -f conftest.$ac_objext | 20547 | rm -f conftest.$ac_objext |
17690 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20548 | if { (ac_try="$ac_compile" |
17691 | (eval $ac_compile) 2>conftest.er1 | 20549 | case "(($ac_try" in |
20550 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20551 | *) ac_try_echo=$ac_try;; | ||
20552 | esac | ||
20553 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20554 | (eval "$ac_compile") 2>conftest.er1 | ||
17692 | ac_status=$? | 20555 | ac_status=$? |
17693 | grep -v '^ *+' conftest.er1 >conftest.err | 20556 | grep -v '^ *+' conftest.er1 >conftest.err |
17694 | rm -f conftest.er1 | 20557 | rm -f conftest.er1 |
17695 | cat conftest.err >&5 | 20558 | cat conftest.err >&5 |
17696 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20559 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17697 | (exit $ac_status); } && | 20560 | (exit $ac_status); } && |
17698 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20561 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17699 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20562 | { (case "(($ac_try" in |
17700 | (eval $ac_try) 2>&5 | 20563 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20564 | *) ac_try_echo=$ac_try;; | ||
20565 | esac | ||
20566 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20567 | (eval "$ac_try") 2>&5 | ||
17701 | ac_status=$? | 20568 | ac_status=$? |
17702 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20569 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17703 | (exit $ac_status); }; } && | 20570 | (exit $ac_status); }; } && |
17704 | { ac_try='test -s conftest.$ac_objext' | 20571 | { ac_try='test -s conftest.$ac_objext' |
17705 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20572 | { (case "(($ac_try" in |
17706 | (eval $ac_try) 2>&5 | 20573 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20574 | *) ac_try_echo=$ac_try;; | ||
20575 | esac | ||
20576 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20577 | (eval "$ac_try") 2>&5 | ||
17707 | ac_status=$? | 20578 | ac_status=$? |
17708 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20579 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17709 | (exit $ac_status); }; }; then | 20580 | (exit $ac_status); }; }; then |
@@ -17712,24 +20583,27 @@ else | |||
17712 | echo "$as_me: failed program was:" >&5 | 20583 | echo "$as_me: failed program was:" >&5 |
17713 | sed 's/^/| /' conftest.$ac_ext >&5 | 20584 | sed 's/^/| /' conftest.$ac_ext >&5 |
17714 | 20585 | ||
17715 | ac_hi=`expr '(' $ac_mid ')' - 1` | 20586 | ac_hi=`expr '(' $ac_mid ')' - 1` |
17716 | if test $ac_mid -le $ac_hi; then | 20587 | if test $ac_mid -le $ac_hi; then |
17717 | ac_lo= ac_hi= | 20588 | ac_lo= ac_hi= |
17718 | break | 20589 | break |
17719 | fi | 20590 | fi |
17720 | ac_mid=`expr 2 '*' $ac_mid` | 20591 | ac_mid=`expr 2 '*' $ac_mid` |
17721 | fi | 20592 | fi |
17722 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20593 | |
20594 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17723 | done | 20595 | done |
17724 | else | 20596 | else |
17725 | echo "$as_me: failed program was:" >&5 | 20597 | echo "$as_me: failed program was:" >&5 |
17726 | sed 's/^/| /' conftest.$ac_ext >&5 | 20598 | sed 's/^/| /' conftest.$ac_ext >&5 |
17727 | 20599 | ||
17728 | ac_lo= ac_hi= | 20600 | ac_lo= ac_hi= |
17729 | fi | 20601 | fi |
17730 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20602 | |
20603 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17731 | fi | 20604 | fi |
17732 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20605 | |
20606 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17733 | # Binary search between lo and hi bounds. | 20607 | # Binary search between lo and hi bounds. |
17734 | while test "x$ac_lo" != "x$ac_hi"; do | 20608 | while test "x$ac_lo" != "x$ac_hi"; do |
17735 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` | 20609 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` |
@@ -17740,10 +20614,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17740 | cat >>conftest.$ac_ext <<_ACEOF | 20614 | cat >>conftest.$ac_ext <<_ACEOF |
17741 | /* end confdefs.h. */ | 20615 | /* end confdefs.h. */ |
17742 | $ac_includes_default | 20616 | $ac_includes_default |
20617 | typedef int ac__type_sizeof_; | ||
20618 | |||
17743 | int | 20619 | int |
17744 | main () | 20620 | main () |
17745 | { | 20621 | { |
17746 | static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; | 20622 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
17747 | test_array [0] = 0 | 20623 | test_array [0] = 0 |
17748 | 20624 | ||
17749 | ; | 20625 | ; |
@@ -17751,23 +20627,36 @@ test_array [0] = 0 | |||
17751 | } | 20627 | } |
17752 | _ACEOF | 20628 | _ACEOF |
17753 | rm -f conftest.$ac_objext | 20629 | rm -f conftest.$ac_objext |
17754 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20630 | if { (ac_try="$ac_compile" |
17755 | (eval $ac_compile) 2>conftest.er1 | 20631 | case "(($ac_try" in |
20632 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20633 | *) ac_try_echo=$ac_try;; | ||
20634 | esac | ||
20635 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20636 | (eval "$ac_compile") 2>conftest.er1 | ||
17756 | ac_status=$? | 20637 | ac_status=$? |
17757 | grep -v '^ *+' conftest.er1 >conftest.err | 20638 | grep -v '^ *+' conftest.er1 >conftest.err |
17758 | rm -f conftest.er1 | 20639 | rm -f conftest.er1 |
17759 | cat conftest.err >&5 | 20640 | cat conftest.err >&5 |
17760 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20641 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17761 | (exit $ac_status); } && | 20642 | (exit $ac_status); } && |
17762 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20643 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17763 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20644 | { (case "(($ac_try" in |
17764 | (eval $ac_try) 2>&5 | 20645 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20646 | *) ac_try_echo=$ac_try;; | ||
20647 | esac | ||
20648 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20649 | (eval "$ac_try") 2>&5 | ||
17765 | ac_status=$? | 20650 | ac_status=$? |
17766 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20651 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17767 | (exit $ac_status); }; } && | 20652 | (exit $ac_status); }; } && |
17768 | { ac_try='test -s conftest.$ac_objext' | 20653 | { ac_try='test -s conftest.$ac_objext' |
17769 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20654 | { (case "(($ac_try" in |
17770 | (eval $ac_try) 2>&5 | 20655 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20656 | *) ac_try_echo=$ac_try;; | ||
20657 | esac | ||
20658 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20659 | (eval "$ac_try") 2>&5 | ||
17771 | ac_status=$? | 20660 | ac_status=$? |
17772 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20661 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17773 | (exit $ac_status); }; }; then | 20662 | (exit $ac_status); }; }; then |
@@ -17776,24 +20665,24 @@ else | |||
17776 | echo "$as_me: failed program was:" >&5 | 20665 | echo "$as_me: failed program was:" >&5 |
17777 | sed 's/^/| /' conftest.$ac_ext >&5 | 20666 | sed 's/^/| /' conftest.$ac_ext >&5 |
17778 | 20667 | ||
17779 | ac_lo=`expr '(' $ac_mid ')' + 1` | 20668 | ac_lo=`expr '(' $ac_mid ')' + 1` |
17780 | fi | 20669 | fi |
17781 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20670 | |
20671 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17782 | done | 20672 | done |
17783 | case $ac_lo in | 20673 | case $ac_lo in |
17784 | ?*) ac_cv_sizeof_int=$ac_lo;; | 20674 | ?*) ac_cv_sizeof_int=$ac_lo;; |
17785 | '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 | 20675 | '') if test "$ac_cv_type_int" = yes; then |
20676 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) | ||
17786 | See \`config.log' for more details." >&5 | 20677 | See \`config.log' for more details." >&5 |
17787 | echo "$as_me: error: cannot compute sizeof (int), 77 | 20678 | echo "$as_me: error: cannot compute sizeof (int) |
17788 | See \`config.log' for more details." >&2;} | 20679 | See \`config.log' for more details." >&2;} |
17789 | { (exit 1); exit 1; }; } ;; | 20680 | { (exit 77); exit 77; }; } |
20681 | else | ||
20682 | ac_cv_sizeof_int=0 | ||
20683 | fi ;; | ||
17790 | esac | 20684 | esac |
17791 | else | 20685 | else |
17792 | if test "$cross_compiling" = yes; then | ||
17793 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 | ||
17794 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} | ||
17795 | { (exit 1); exit 1; }; } | ||
17796 | else | ||
17797 | cat >conftest.$ac_ext <<_ACEOF | 20686 | cat >conftest.$ac_ext <<_ACEOF |
17798 | /* confdefs.h. */ | 20687 | /* confdefs.h. */ |
17799 | _ACEOF | 20688 | _ACEOF |
@@ -17801,8 +20690,10 @@ cat confdefs.h >>conftest.$ac_ext | |||
17801 | cat >>conftest.$ac_ext <<_ACEOF | 20690 | cat >>conftest.$ac_ext <<_ACEOF |
17802 | /* end confdefs.h. */ | 20691 | /* end confdefs.h. */ |
17803 | $ac_includes_default | 20692 | $ac_includes_default |
17804 | long longval () { return (long) (sizeof (int)); } | 20693 | typedef int ac__type_sizeof_; |
17805 | unsigned long ulongval () { return (long) (sizeof (int)); } | 20694 | |
20695 | static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
20696 | static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
17806 | #include <stdio.h> | 20697 | #include <stdio.h> |
17807 | #include <stdlib.h> | 20698 | #include <stdlib.h> |
17808 | int | 20699 | int |
@@ -17811,35 +20702,44 @@ main () | |||
17811 | 20702 | ||
17812 | FILE *f = fopen ("conftest.val", "w"); | 20703 | FILE *f = fopen ("conftest.val", "w"); |
17813 | if (! f) | 20704 | if (! f) |
17814 | exit (1); | 20705 | return 1; |
17815 | if (((long) (sizeof (int))) < 0) | 20706 | if (((long int) (sizeof (ac__type_sizeof_))) < 0) |
17816 | { | 20707 | { |
17817 | long i = longval (); | 20708 | long int i = longval (); |
17818 | if (i != ((long) (sizeof (int)))) | 20709 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
17819 | exit (1); | 20710 | return 1; |
17820 | fprintf (f, "%ld\n", i); | 20711 | fprintf (f, "%ld\n", i); |
17821 | } | 20712 | } |
17822 | else | 20713 | else |
17823 | { | 20714 | { |
17824 | unsigned long i = ulongval (); | 20715 | unsigned long int i = ulongval (); |
17825 | if (i != ((long) (sizeof (int)))) | 20716 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
17826 | exit (1); | 20717 | return 1; |
17827 | fprintf (f, "%lu\n", i); | 20718 | fprintf (f, "%lu\n", i); |
17828 | } | 20719 | } |
17829 | exit (ferror (f) || fclose (f) != 0); | 20720 | return ferror (f) || fclose (f) != 0; |
17830 | 20721 | ||
17831 | ; | 20722 | ; |
17832 | return 0; | 20723 | return 0; |
17833 | } | 20724 | } |
17834 | _ACEOF | 20725 | _ACEOF |
17835 | rm -f conftest$ac_exeext | 20726 | rm -f conftest$ac_exeext |
17836 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 20727 | if { (ac_try="$ac_link" |
17837 | (eval $ac_link) 2>&5 | 20728 | case "(($ac_try" in |
20729 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20730 | *) ac_try_echo=$ac_try;; | ||
20731 | esac | ||
20732 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20733 | (eval "$ac_link") 2>&5 | ||
17838 | ac_status=$? | 20734 | ac_status=$? |
17839 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20735 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17840 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 20736 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
17841 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20737 | { (case "(($ac_try" in |
17842 | (eval $ac_try) 2>&5 | 20738 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20739 | *) ac_try_echo=$ac_try;; | ||
20740 | esac | ||
20741 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20742 | (eval "$ac_try") 2>&5 | ||
17843 | ac_status=$? | 20743 | ac_status=$? |
17844 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20744 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17845 | (exit $ac_status); }; }; then | 20745 | (exit $ac_status); }; }; then |
@@ -17850,29 +20750,32 @@ echo "$as_me: failed program was:" >&5 | |||
17850 | sed 's/^/| /' conftest.$ac_ext >&5 | 20750 | sed 's/^/| /' conftest.$ac_ext >&5 |
17851 | 20751 | ||
17852 | ( exit $ac_status ) | 20752 | ( exit $ac_status ) |
17853 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 | 20753 | if test "$ac_cv_type_int" = yes; then |
20754 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) | ||
17854 | See \`config.log' for more details." >&5 | 20755 | See \`config.log' for more details." >&5 |
17855 | echo "$as_me: error: cannot compute sizeof (int), 77 | 20756 | echo "$as_me: error: cannot compute sizeof (int) |
17856 | See \`config.log' for more details." >&2;} | 20757 | See \`config.log' for more details." >&2;} |
17857 | { (exit 1); exit 1; }; } | 20758 | { (exit 77); exit 77; }; } |
17858 | fi | 20759 | else |
17859 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 20760 | ac_cv_sizeof_int=0 |
20761 | fi | ||
17860 | fi | 20762 | fi |
20763 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
17861 | fi | 20764 | fi |
17862 | rm -f conftest.val | 20765 | rm -f conftest.val |
17863 | else | ||
17864 | ac_cv_sizeof_int=0 | ||
17865 | fi | 20766 | fi |
17866 | fi | 20767 | { echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 |
17867 | echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 | 20768 | echo "${ECHO_T}$ac_cv_sizeof_int" >&6; } |
17868 | echo "${ECHO_T}$ac_cv_sizeof_int" >&6 | 20769 | |
20770 | |||
20771 | |||
17869 | cat >>confdefs.h <<_ACEOF | 20772 | cat >>confdefs.h <<_ACEOF |
17870 | #define SIZEOF_INT $ac_cv_sizeof_int | 20773 | #define SIZEOF_INT $ac_cv_sizeof_int |
17871 | _ACEOF | 20774 | _ACEOF |
17872 | 20775 | ||
17873 | 20776 | ||
17874 | echo "$as_me:$LINENO: checking for long int" >&5 | 20777 | { echo "$as_me:$LINENO: checking for long int" >&5 |
17875 | echo $ECHO_N "checking for long int... $ECHO_C" >&6 | 20778 | echo $ECHO_N "checking for long int... $ECHO_C" >&6; } |
17876 | if test "${ac_cv_type_long_int+set}" = set; then | 20779 | if test "${ac_cv_type_long_int+set}" = set; then |
17877 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 20780 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
17878 | else | 20781 | else |
@@ -17883,35 +20786,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
17883 | cat >>conftest.$ac_ext <<_ACEOF | 20786 | cat >>conftest.$ac_ext <<_ACEOF |
17884 | /* end confdefs.h. */ | 20787 | /* end confdefs.h. */ |
17885 | $ac_includes_default | 20788 | $ac_includes_default |
20789 | typedef long int ac__type_new_; | ||
17886 | int | 20790 | int |
17887 | main () | 20791 | main () |
17888 | { | 20792 | { |
17889 | if ((long int *) 0) | 20793 | if ((ac__type_new_ *) 0) |
17890 | return 0; | 20794 | return 0; |
17891 | if (sizeof (long int)) | 20795 | if (sizeof (ac__type_new_)) |
17892 | return 0; | 20796 | return 0; |
17893 | ; | 20797 | ; |
17894 | return 0; | 20798 | return 0; |
17895 | } | 20799 | } |
17896 | _ACEOF | 20800 | _ACEOF |
17897 | rm -f conftest.$ac_objext | 20801 | rm -f conftest.$ac_objext |
17898 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20802 | if { (ac_try="$ac_compile" |
17899 | (eval $ac_compile) 2>conftest.er1 | 20803 | case "(($ac_try" in |
20804 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20805 | *) ac_try_echo=$ac_try;; | ||
20806 | esac | ||
20807 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20808 | (eval "$ac_compile") 2>conftest.er1 | ||
17900 | ac_status=$? | 20809 | ac_status=$? |
17901 | grep -v '^ *+' conftest.er1 >conftest.err | 20810 | grep -v '^ *+' conftest.er1 >conftest.err |
17902 | rm -f conftest.er1 | 20811 | rm -f conftest.er1 |
17903 | cat conftest.err >&5 | 20812 | cat conftest.err >&5 |
17904 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20813 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17905 | (exit $ac_status); } && | 20814 | (exit $ac_status); } && |
17906 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20815 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17907 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20816 | { (case "(($ac_try" in |
17908 | (eval $ac_try) 2>&5 | 20817 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20818 | *) ac_try_echo=$ac_try;; | ||
20819 | esac | ||
20820 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20821 | (eval "$ac_try") 2>&5 | ||
17909 | ac_status=$? | 20822 | ac_status=$? |
17910 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20823 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17911 | (exit $ac_status); }; } && | 20824 | (exit $ac_status); }; } && |
17912 | { ac_try='test -s conftest.$ac_objext' | 20825 | { ac_try='test -s conftest.$ac_objext' |
17913 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20826 | { (case "(($ac_try" in |
17914 | (eval $ac_try) 2>&5 | 20827 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20828 | *) ac_try_echo=$ac_try;; | ||
20829 | esac | ||
20830 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20831 | (eval "$ac_try") 2>&5 | ||
17915 | ac_status=$? | 20832 | ac_status=$? |
17916 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20833 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17917 | (exit $ac_status); }; }; then | 20834 | (exit $ac_status); }; }; then |
@@ -17920,23 +20837,23 @@ else | |||
17920 | echo "$as_me: failed program was:" >&5 | 20837 | echo "$as_me: failed program was:" >&5 |
17921 | sed 's/^/| /' conftest.$ac_ext >&5 | 20838 | sed 's/^/| /' conftest.$ac_ext >&5 |
17922 | 20839 | ||
17923 | ac_cv_type_long_int=no | 20840 | ac_cv_type_long_int=no |
17924 | fi | 20841 | fi |
17925 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20842 | |
20843 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
17926 | fi | 20844 | fi |
17927 | echo "$as_me:$LINENO: result: $ac_cv_type_long_int" >&5 | 20845 | { echo "$as_me:$LINENO: result: $ac_cv_type_long_int" >&5 |
17928 | echo "${ECHO_T}$ac_cv_type_long_int" >&6 | 20846 | echo "${ECHO_T}$ac_cv_type_long_int" >&6; } |
17929 | 20847 | ||
17930 | echo "$as_me:$LINENO: checking size of long int" >&5 | 20848 | # The cast to long int works around a bug in the HP C Compiler |
17931 | echo $ECHO_N "checking size of long int... $ECHO_C" >&6 | 20849 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects |
20850 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
20851 | # This bug is HP SR number 8606223364. | ||
20852 | { echo "$as_me:$LINENO: checking size of long int" >&5 | ||
20853 | echo $ECHO_N "checking size of long int... $ECHO_C" >&6; } | ||
17932 | if test "${ac_cv_sizeof_long_int+set}" = set; then | 20854 | if test "${ac_cv_sizeof_long_int+set}" = set; then |
17933 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 20855 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
17934 | else | 20856 | else |
17935 | if test "$ac_cv_type_long_int" = yes; then | ||
17936 | # The cast to unsigned long works around a bug in the HP C Compiler | ||
17937 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects | ||
17938 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
17939 | # This bug is HP SR number 8606223364. | ||
17940 | if test "$cross_compiling" = yes; then | 20857 | if test "$cross_compiling" = yes; then |
17941 | # Depending upon the size, compute the lo and hi bounds. | 20858 | # Depending upon the size, compute the lo and hi bounds. |
17942 | cat >conftest.$ac_ext <<_ACEOF | 20859 | cat >conftest.$ac_ext <<_ACEOF |
@@ -17946,10 +20863,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17946 | cat >>conftest.$ac_ext <<_ACEOF | 20863 | cat >>conftest.$ac_ext <<_ACEOF |
17947 | /* end confdefs.h. */ | 20864 | /* end confdefs.h. */ |
17948 | $ac_includes_default | 20865 | $ac_includes_default |
20866 | typedef long int ac__type_sizeof_; | ||
20867 | |||
17949 | int | 20868 | int |
17950 | main () | 20869 | main () |
17951 | { | 20870 | { |
17952 | static int test_array [1 - 2 * !(((long) (sizeof (long int))) >= 0)]; | 20871 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; |
17953 | test_array [0] = 0 | 20872 | test_array [0] = 0 |
17954 | 20873 | ||
17955 | ; | 20874 | ; |
@@ -17957,23 +20876,36 @@ test_array [0] = 0 | |||
17957 | } | 20876 | } |
17958 | _ACEOF | 20877 | _ACEOF |
17959 | rm -f conftest.$ac_objext | 20878 | rm -f conftest.$ac_objext |
17960 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20879 | if { (ac_try="$ac_compile" |
17961 | (eval $ac_compile) 2>conftest.er1 | 20880 | case "(($ac_try" in |
20881 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20882 | *) ac_try_echo=$ac_try;; | ||
20883 | esac | ||
20884 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20885 | (eval "$ac_compile") 2>conftest.er1 | ||
17962 | ac_status=$? | 20886 | ac_status=$? |
17963 | grep -v '^ *+' conftest.er1 >conftest.err | 20887 | grep -v '^ *+' conftest.er1 >conftest.err |
17964 | rm -f conftest.er1 | 20888 | rm -f conftest.er1 |
17965 | cat conftest.err >&5 | 20889 | cat conftest.err >&5 |
17966 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20890 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17967 | (exit $ac_status); } && | 20891 | (exit $ac_status); } && |
17968 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20892 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17969 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20893 | { (case "(($ac_try" in |
17970 | (eval $ac_try) 2>&5 | 20894 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20895 | *) ac_try_echo=$ac_try;; | ||
20896 | esac | ||
20897 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20898 | (eval "$ac_try") 2>&5 | ||
17971 | ac_status=$? | 20899 | ac_status=$? |
17972 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20900 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17973 | (exit $ac_status); }; } && | 20901 | (exit $ac_status); }; } && |
17974 | { ac_try='test -s conftest.$ac_objext' | 20902 | { ac_try='test -s conftest.$ac_objext' |
17975 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20903 | { (case "(($ac_try" in |
17976 | (eval $ac_try) 2>&5 | 20904 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20905 | *) ac_try_echo=$ac_try;; | ||
20906 | esac | ||
20907 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20908 | (eval "$ac_try") 2>&5 | ||
17977 | ac_status=$? | 20909 | ac_status=$? |
17978 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20910 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17979 | (exit $ac_status); }; }; then | 20911 | (exit $ac_status); }; }; then |
@@ -17986,10 +20918,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
17986 | cat >>conftest.$ac_ext <<_ACEOF | 20918 | cat >>conftest.$ac_ext <<_ACEOF |
17987 | /* end confdefs.h. */ | 20919 | /* end confdefs.h. */ |
17988 | $ac_includes_default | 20920 | $ac_includes_default |
20921 | typedef long int ac__type_sizeof_; | ||
20922 | |||
17989 | int | 20923 | int |
17990 | main () | 20924 | main () |
17991 | { | 20925 | { |
17992 | static int test_array [1 - 2 * !(((long) (sizeof (long int))) <= $ac_mid)]; | 20926 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
17993 | test_array [0] = 0 | 20927 | test_array [0] = 0 |
17994 | 20928 | ||
17995 | ; | 20929 | ; |
@@ -17997,23 +20931,36 @@ test_array [0] = 0 | |||
17997 | } | 20931 | } |
17998 | _ACEOF | 20932 | _ACEOF |
17999 | rm -f conftest.$ac_objext | 20933 | rm -f conftest.$ac_objext |
18000 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 20934 | if { (ac_try="$ac_compile" |
18001 | (eval $ac_compile) 2>conftest.er1 | 20935 | case "(($ac_try" in |
20936 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
20937 | *) ac_try_echo=$ac_try;; | ||
20938 | esac | ||
20939 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20940 | (eval "$ac_compile") 2>conftest.er1 | ||
18002 | ac_status=$? | 20941 | ac_status=$? |
18003 | grep -v '^ *+' conftest.er1 >conftest.err | 20942 | grep -v '^ *+' conftest.er1 >conftest.err |
18004 | rm -f conftest.er1 | 20943 | rm -f conftest.er1 |
18005 | cat conftest.err >&5 | 20944 | cat conftest.err >&5 |
18006 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20945 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18007 | (exit $ac_status); } && | 20946 | (exit $ac_status); } && |
18008 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 20947 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18009 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20948 | { (case "(($ac_try" in |
18010 | (eval $ac_try) 2>&5 | 20949 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20950 | *) ac_try_echo=$ac_try;; | ||
20951 | esac | ||
20952 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20953 | (eval "$ac_try") 2>&5 | ||
18011 | ac_status=$? | 20954 | ac_status=$? |
18012 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20955 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18013 | (exit $ac_status); }; } && | 20956 | (exit $ac_status); }; } && |
18014 | { ac_try='test -s conftest.$ac_objext' | 20957 | { ac_try='test -s conftest.$ac_objext' |
18015 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20958 | { (case "(($ac_try" in |
18016 | (eval $ac_try) 2>&5 | 20959 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
20960 | *) ac_try_echo=$ac_try;; | ||
20961 | esac | ||
20962 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
20963 | (eval "$ac_try") 2>&5 | ||
18017 | ac_status=$? | 20964 | ac_status=$? |
18018 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20965 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18019 | (exit $ac_status); }; }; then | 20966 | (exit $ac_status); }; }; then |
@@ -18022,30 +20969,33 @@ else | |||
18022 | echo "$as_me: failed program was:" >&5 | 20969 | echo "$as_me: failed program was:" >&5 |
18023 | sed 's/^/| /' conftest.$ac_ext >&5 | 20970 | sed 's/^/| /' conftest.$ac_ext >&5 |
18024 | 20971 | ||
18025 | ac_lo=`expr $ac_mid + 1` | 20972 | ac_lo=`expr $ac_mid + 1` |
18026 | if test $ac_lo -le $ac_mid; then | 20973 | if test $ac_lo -le $ac_mid; then |
18027 | ac_lo= ac_hi= | 20974 | ac_lo= ac_hi= |
18028 | break | 20975 | break |
18029 | fi | 20976 | fi |
18030 | ac_mid=`expr 2 '*' $ac_mid + 1` | 20977 | ac_mid=`expr 2 '*' $ac_mid + 1` |
18031 | fi | 20978 | fi |
18032 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 20979 | |
20980 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18033 | done | 20981 | done |
18034 | else | 20982 | else |
18035 | echo "$as_me: failed program was:" >&5 | 20983 | echo "$as_me: failed program was:" >&5 |
18036 | sed 's/^/| /' conftest.$ac_ext >&5 | 20984 | sed 's/^/| /' conftest.$ac_ext >&5 |
18037 | 20985 | ||
18038 | cat >conftest.$ac_ext <<_ACEOF | 20986 | cat >conftest.$ac_ext <<_ACEOF |
18039 | /* confdefs.h. */ | 20987 | /* confdefs.h. */ |
18040 | _ACEOF | 20988 | _ACEOF |
18041 | cat confdefs.h >>conftest.$ac_ext | 20989 | cat confdefs.h >>conftest.$ac_ext |
18042 | cat >>conftest.$ac_ext <<_ACEOF | 20990 | cat >>conftest.$ac_ext <<_ACEOF |
18043 | /* end confdefs.h. */ | 20991 | /* end confdefs.h. */ |
18044 | $ac_includes_default | 20992 | $ac_includes_default |
20993 | typedef long int ac__type_sizeof_; | ||
20994 | |||
18045 | int | 20995 | int |
18046 | main () | 20996 | main () |
18047 | { | 20997 | { |
18048 | static int test_array [1 - 2 * !(((long) (sizeof (long int))) < 0)]; | 20998 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; |
18049 | test_array [0] = 0 | 20999 | test_array [0] = 0 |
18050 | 21000 | ||
18051 | ; | 21001 | ; |
@@ -18053,23 +21003,36 @@ test_array [0] = 0 | |||
18053 | } | 21003 | } |
18054 | _ACEOF | 21004 | _ACEOF |
18055 | rm -f conftest.$ac_objext | 21005 | rm -f conftest.$ac_objext |
18056 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21006 | if { (ac_try="$ac_compile" |
18057 | (eval $ac_compile) 2>conftest.er1 | 21007 | case "(($ac_try" in |
21008 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21009 | *) ac_try_echo=$ac_try;; | ||
21010 | esac | ||
21011 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21012 | (eval "$ac_compile") 2>conftest.er1 | ||
18058 | ac_status=$? | 21013 | ac_status=$? |
18059 | grep -v '^ *+' conftest.er1 >conftest.err | 21014 | grep -v '^ *+' conftest.er1 >conftest.err |
18060 | rm -f conftest.er1 | 21015 | rm -f conftest.er1 |
18061 | cat conftest.err >&5 | 21016 | cat conftest.err >&5 |
18062 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21017 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18063 | (exit $ac_status); } && | 21018 | (exit $ac_status); } && |
18064 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21019 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18065 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21020 | { (case "(($ac_try" in |
18066 | (eval $ac_try) 2>&5 | 21021 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21022 | *) ac_try_echo=$ac_try;; | ||
21023 | esac | ||
21024 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21025 | (eval "$ac_try") 2>&5 | ||
18067 | ac_status=$? | 21026 | ac_status=$? |
18068 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21027 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18069 | (exit $ac_status); }; } && | 21028 | (exit $ac_status); }; } && |
18070 | { ac_try='test -s conftest.$ac_objext' | 21029 | { ac_try='test -s conftest.$ac_objext' |
18071 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21030 | { (case "(($ac_try" in |
18072 | (eval $ac_try) 2>&5 | 21031 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21032 | *) ac_try_echo=$ac_try;; | ||
21033 | esac | ||
21034 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21035 | (eval "$ac_try") 2>&5 | ||
18073 | ac_status=$? | 21036 | ac_status=$? |
18074 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21037 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18075 | (exit $ac_status); }; }; then | 21038 | (exit $ac_status); }; }; then |
@@ -18082,10 +21045,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
18082 | cat >>conftest.$ac_ext <<_ACEOF | 21045 | cat >>conftest.$ac_ext <<_ACEOF |
18083 | /* end confdefs.h. */ | 21046 | /* end confdefs.h. */ |
18084 | $ac_includes_default | 21047 | $ac_includes_default |
21048 | typedef long int ac__type_sizeof_; | ||
21049 | |||
18085 | int | 21050 | int |
18086 | main () | 21051 | main () |
18087 | { | 21052 | { |
18088 | static int test_array [1 - 2 * !(((long) (sizeof (long int))) >= $ac_mid)]; | 21053 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; |
18089 | test_array [0] = 0 | 21054 | test_array [0] = 0 |
18090 | 21055 | ||
18091 | ; | 21056 | ; |
@@ -18093,23 +21058,36 @@ test_array [0] = 0 | |||
18093 | } | 21058 | } |
18094 | _ACEOF | 21059 | _ACEOF |
18095 | rm -f conftest.$ac_objext | 21060 | rm -f conftest.$ac_objext |
18096 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21061 | if { (ac_try="$ac_compile" |
18097 | (eval $ac_compile) 2>conftest.er1 | 21062 | case "(($ac_try" in |
21063 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21064 | *) ac_try_echo=$ac_try;; | ||
21065 | esac | ||
21066 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21067 | (eval "$ac_compile") 2>conftest.er1 | ||
18098 | ac_status=$? | 21068 | ac_status=$? |
18099 | grep -v '^ *+' conftest.er1 >conftest.err | 21069 | grep -v '^ *+' conftest.er1 >conftest.err |
18100 | rm -f conftest.er1 | 21070 | rm -f conftest.er1 |
18101 | cat conftest.err >&5 | 21071 | cat conftest.err >&5 |
18102 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21072 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18103 | (exit $ac_status); } && | 21073 | (exit $ac_status); } && |
18104 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21074 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18105 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21075 | { (case "(($ac_try" in |
18106 | (eval $ac_try) 2>&5 | 21076 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21077 | *) ac_try_echo=$ac_try;; | ||
21078 | esac | ||
21079 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21080 | (eval "$ac_try") 2>&5 | ||
18107 | ac_status=$? | 21081 | ac_status=$? |
18108 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21082 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18109 | (exit $ac_status); }; } && | 21083 | (exit $ac_status); }; } && |
18110 | { ac_try='test -s conftest.$ac_objext' | 21084 | { ac_try='test -s conftest.$ac_objext' |
18111 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21085 | { (case "(($ac_try" in |
18112 | (eval $ac_try) 2>&5 | 21086 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21087 | *) ac_try_echo=$ac_try;; | ||
21088 | esac | ||
21089 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21090 | (eval "$ac_try") 2>&5 | ||
18113 | ac_status=$? | 21091 | ac_status=$? |
18114 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21092 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18115 | (exit $ac_status); }; }; then | 21093 | (exit $ac_status); }; }; then |
@@ -18118,24 +21096,27 @@ else | |||
18118 | echo "$as_me: failed program was:" >&5 | 21096 | echo "$as_me: failed program was:" >&5 |
18119 | sed 's/^/| /' conftest.$ac_ext >&5 | 21097 | sed 's/^/| /' conftest.$ac_ext >&5 |
18120 | 21098 | ||
18121 | ac_hi=`expr '(' $ac_mid ')' - 1` | 21099 | ac_hi=`expr '(' $ac_mid ')' - 1` |
18122 | if test $ac_mid -le $ac_hi; then | 21100 | if test $ac_mid -le $ac_hi; then |
18123 | ac_lo= ac_hi= | 21101 | ac_lo= ac_hi= |
18124 | break | 21102 | break |
18125 | fi | 21103 | fi |
18126 | ac_mid=`expr 2 '*' $ac_mid` | 21104 | ac_mid=`expr 2 '*' $ac_mid` |
18127 | fi | 21105 | fi |
18128 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21106 | |
21107 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18129 | done | 21108 | done |
18130 | else | 21109 | else |
18131 | echo "$as_me: failed program was:" >&5 | 21110 | echo "$as_me: failed program was:" >&5 |
18132 | sed 's/^/| /' conftest.$ac_ext >&5 | 21111 | sed 's/^/| /' conftest.$ac_ext >&5 |
18133 | 21112 | ||
18134 | ac_lo= ac_hi= | 21113 | ac_lo= ac_hi= |
18135 | fi | 21114 | fi |
18136 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21115 | |
21116 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18137 | fi | 21117 | fi |
18138 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21118 | |
21119 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18139 | # Binary search between lo and hi bounds. | 21120 | # Binary search between lo and hi bounds. |
18140 | while test "x$ac_lo" != "x$ac_hi"; do | 21121 | while test "x$ac_lo" != "x$ac_hi"; do |
18141 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` | 21122 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` |
@@ -18146,10 +21127,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
18146 | cat >>conftest.$ac_ext <<_ACEOF | 21127 | cat >>conftest.$ac_ext <<_ACEOF |
18147 | /* end confdefs.h. */ | 21128 | /* end confdefs.h. */ |
18148 | $ac_includes_default | 21129 | $ac_includes_default |
21130 | typedef long int ac__type_sizeof_; | ||
21131 | |||
18149 | int | 21132 | int |
18150 | main () | 21133 | main () |
18151 | { | 21134 | { |
18152 | static int test_array [1 - 2 * !(((long) (sizeof (long int))) <= $ac_mid)]; | 21135 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
18153 | test_array [0] = 0 | 21136 | test_array [0] = 0 |
18154 | 21137 | ||
18155 | ; | 21138 | ; |
@@ -18157,23 +21140,36 @@ test_array [0] = 0 | |||
18157 | } | 21140 | } |
18158 | _ACEOF | 21141 | _ACEOF |
18159 | rm -f conftest.$ac_objext | 21142 | rm -f conftest.$ac_objext |
18160 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21143 | if { (ac_try="$ac_compile" |
18161 | (eval $ac_compile) 2>conftest.er1 | 21144 | case "(($ac_try" in |
21145 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21146 | *) ac_try_echo=$ac_try;; | ||
21147 | esac | ||
21148 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21149 | (eval "$ac_compile") 2>conftest.er1 | ||
18162 | ac_status=$? | 21150 | ac_status=$? |
18163 | grep -v '^ *+' conftest.er1 >conftest.err | 21151 | grep -v '^ *+' conftest.er1 >conftest.err |
18164 | rm -f conftest.er1 | 21152 | rm -f conftest.er1 |
18165 | cat conftest.err >&5 | 21153 | cat conftest.err >&5 |
18166 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21154 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18167 | (exit $ac_status); } && | 21155 | (exit $ac_status); } && |
18168 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21156 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18169 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21157 | { (case "(($ac_try" in |
18170 | (eval $ac_try) 2>&5 | 21158 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21159 | *) ac_try_echo=$ac_try;; | ||
21160 | esac | ||
21161 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21162 | (eval "$ac_try") 2>&5 | ||
18171 | ac_status=$? | 21163 | ac_status=$? |
18172 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21164 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18173 | (exit $ac_status); }; } && | 21165 | (exit $ac_status); }; } && |
18174 | { ac_try='test -s conftest.$ac_objext' | 21166 | { ac_try='test -s conftest.$ac_objext' |
18175 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21167 | { (case "(($ac_try" in |
18176 | (eval $ac_try) 2>&5 | 21168 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21169 | *) ac_try_echo=$ac_try;; | ||
21170 | esac | ||
21171 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21172 | (eval "$ac_try") 2>&5 | ||
18177 | ac_status=$? | 21173 | ac_status=$? |
18178 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21174 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18179 | (exit $ac_status); }; }; then | 21175 | (exit $ac_status); }; }; then |
@@ -18182,24 +21178,24 @@ else | |||
18182 | echo "$as_me: failed program was:" >&5 | 21178 | echo "$as_me: failed program was:" >&5 |
18183 | sed 's/^/| /' conftest.$ac_ext >&5 | 21179 | sed 's/^/| /' conftest.$ac_ext >&5 |
18184 | 21180 | ||
18185 | ac_lo=`expr '(' $ac_mid ')' + 1` | 21181 | ac_lo=`expr '(' $ac_mid ')' + 1` |
18186 | fi | 21182 | fi |
18187 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21183 | |
21184 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18188 | done | 21185 | done |
18189 | case $ac_lo in | 21186 | case $ac_lo in |
18190 | ?*) ac_cv_sizeof_long_int=$ac_lo;; | 21187 | ?*) ac_cv_sizeof_long_int=$ac_lo;; |
18191 | '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long int), 77 | 21188 | '') if test "$ac_cv_type_long_int" = yes; then |
21189 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (long int) | ||
18192 | See \`config.log' for more details." >&5 | 21190 | See \`config.log' for more details." >&5 |
18193 | echo "$as_me: error: cannot compute sizeof (long int), 77 | 21191 | echo "$as_me: error: cannot compute sizeof (long int) |
18194 | See \`config.log' for more details." >&2;} | 21192 | See \`config.log' for more details." >&2;} |
18195 | { (exit 1); exit 1; }; } ;; | 21193 | { (exit 77); exit 77; }; } |
21194 | else | ||
21195 | ac_cv_sizeof_long_int=0 | ||
21196 | fi ;; | ||
18196 | esac | 21197 | esac |
18197 | else | 21198 | else |
18198 | if test "$cross_compiling" = yes; then | ||
18199 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 | ||
18200 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} | ||
18201 | { (exit 1); exit 1; }; } | ||
18202 | else | ||
18203 | cat >conftest.$ac_ext <<_ACEOF | 21199 | cat >conftest.$ac_ext <<_ACEOF |
18204 | /* confdefs.h. */ | 21200 | /* confdefs.h. */ |
18205 | _ACEOF | 21201 | _ACEOF |
@@ -18207,8 +21203,10 @@ cat confdefs.h >>conftest.$ac_ext | |||
18207 | cat >>conftest.$ac_ext <<_ACEOF | 21203 | cat >>conftest.$ac_ext <<_ACEOF |
18208 | /* end confdefs.h. */ | 21204 | /* end confdefs.h. */ |
18209 | $ac_includes_default | 21205 | $ac_includes_default |
18210 | long longval () { return (long) (sizeof (long int)); } | 21206 | typedef long int ac__type_sizeof_; |
18211 | unsigned long ulongval () { return (long) (sizeof (long int)); } | 21207 | |
21208 | static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
21209 | static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
18212 | #include <stdio.h> | 21210 | #include <stdio.h> |
18213 | #include <stdlib.h> | 21211 | #include <stdlib.h> |
18214 | int | 21212 | int |
@@ -18217,35 +21215,44 @@ main () | |||
18217 | 21215 | ||
18218 | FILE *f = fopen ("conftest.val", "w"); | 21216 | FILE *f = fopen ("conftest.val", "w"); |
18219 | if (! f) | 21217 | if (! f) |
18220 | exit (1); | 21218 | return 1; |
18221 | if (((long) (sizeof (long int))) < 0) | 21219 | if (((long int) (sizeof (ac__type_sizeof_))) < 0) |
18222 | { | 21220 | { |
18223 | long i = longval (); | 21221 | long int i = longval (); |
18224 | if (i != ((long) (sizeof (long int)))) | 21222 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
18225 | exit (1); | 21223 | return 1; |
18226 | fprintf (f, "%ld\n", i); | 21224 | fprintf (f, "%ld\n", i); |
18227 | } | 21225 | } |
18228 | else | 21226 | else |
18229 | { | 21227 | { |
18230 | unsigned long i = ulongval (); | 21228 | unsigned long int i = ulongval (); |
18231 | if (i != ((long) (sizeof (long int)))) | 21229 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
18232 | exit (1); | 21230 | return 1; |
18233 | fprintf (f, "%lu\n", i); | 21231 | fprintf (f, "%lu\n", i); |
18234 | } | 21232 | } |
18235 | exit (ferror (f) || fclose (f) != 0); | 21233 | return ferror (f) || fclose (f) != 0; |
18236 | 21234 | ||
18237 | ; | 21235 | ; |
18238 | return 0; | 21236 | return 0; |
18239 | } | 21237 | } |
18240 | _ACEOF | 21238 | _ACEOF |
18241 | rm -f conftest$ac_exeext | 21239 | rm -f conftest$ac_exeext |
18242 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 21240 | if { (ac_try="$ac_link" |
18243 | (eval $ac_link) 2>&5 | 21241 | case "(($ac_try" in |
21242 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21243 | *) ac_try_echo=$ac_try;; | ||
21244 | esac | ||
21245 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21246 | (eval "$ac_link") 2>&5 | ||
18244 | ac_status=$? | 21247 | ac_status=$? |
18245 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21248 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18246 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 21249 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
18247 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21250 | { (case "(($ac_try" in |
18248 | (eval $ac_try) 2>&5 | 21251 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21252 | *) ac_try_echo=$ac_try;; | ||
21253 | esac | ||
21254 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21255 | (eval "$ac_try") 2>&5 | ||
18249 | ac_status=$? | 21256 | ac_status=$? |
18250 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21257 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18251 | (exit $ac_status); }; }; then | 21258 | (exit $ac_status); }; }; then |
@@ -18256,29 +21263,32 @@ echo "$as_me: failed program was:" >&5 | |||
18256 | sed 's/^/| /' conftest.$ac_ext >&5 | 21263 | sed 's/^/| /' conftest.$ac_ext >&5 |
18257 | 21264 | ||
18258 | ( exit $ac_status ) | 21265 | ( exit $ac_status ) |
18259 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (long int), 77 | 21266 | if test "$ac_cv_type_long_int" = yes; then |
21267 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (long int) | ||
18260 | See \`config.log' for more details." >&5 | 21268 | See \`config.log' for more details." >&5 |
18261 | echo "$as_me: error: cannot compute sizeof (long int), 77 | 21269 | echo "$as_me: error: cannot compute sizeof (long int) |
18262 | See \`config.log' for more details." >&2;} | 21270 | See \`config.log' for more details." >&2;} |
18263 | { (exit 1); exit 1; }; } | 21271 | { (exit 77); exit 77; }; } |
18264 | fi | 21272 | else |
18265 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 21273 | ac_cv_sizeof_long_int=0 |
21274 | fi | ||
18266 | fi | 21275 | fi |
21276 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
18267 | fi | 21277 | fi |
18268 | rm -f conftest.val | 21278 | rm -f conftest.val |
18269 | else | ||
18270 | ac_cv_sizeof_long_int=0 | ||
18271 | fi | 21279 | fi |
18272 | fi | 21280 | { echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_int" >&5 |
18273 | echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_int" >&5 | 21281 | echo "${ECHO_T}$ac_cv_sizeof_long_int" >&6; } |
18274 | echo "${ECHO_T}$ac_cv_sizeof_long_int" >&6 | 21282 | |
21283 | |||
21284 | |||
18275 | cat >>confdefs.h <<_ACEOF | 21285 | cat >>confdefs.h <<_ACEOF |
18276 | #define SIZEOF_LONG_INT $ac_cv_sizeof_long_int | 21286 | #define SIZEOF_LONG_INT $ac_cv_sizeof_long_int |
18277 | _ACEOF | 21287 | _ACEOF |
18278 | 21288 | ||
18279 | 21289 | ||
18280 | echo "$as_me:$LINENO: checking for long long int" >&5 | 21290 | { echo "$as_me:$LINENO: checking for long long int" >&5 |
18281 | echo $ECHO_N "checking for long long int... $ECHO_C" >&6 | 21291 | echo $ECHO_N "checking for long long int... $ECHO_C" >&6; } |
18282 | if test "${ac_cv_type_long_long_int+set}" = set; then | 21292 | if test "${ac_cv_type_long_long_int+set}" = set; then |
18283 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 21293 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
18284 | else | 21294 | else |
@@ -18289,35 +21299,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
18289 | cat >>conftest.$ac_ext <<_ACEOF | 21299 | cat >>conftest.$ac_ext <<_ACEOF |
18290 | /* end confdefs.h. */ | 21300 | /* end confdefs.h. */ |
18291 | $ac_includes_default | 21301 | $ac_includes_default |
21302 | typedef long long int ac__type_new_; | ||
18292 | int | 21303 | int |
18293 | main () | 21304 | main () |
18294 | { | 21305 | { |
18295 | if ((long long int *) 0) | 21306 | if ((ac__type_new_ *) 0) |
18296 | return 0; | 21307 | return 0; |
18297 | if (sizeof (long long int)) | 21308 | if (sizeof (ac__type_new_)) |
18298 | return 0; | 21309 | return 0; |
18299 | ; | 21310 | ; |
18300 | return 0; | 21311 | return 0; |
18301 | } | 21312 | } |
18302 | _ACEOF | 21313 | _ACEOF |
18303 | rm -f conftest.$ac_objext | 21314 | rm -f conftest.$ac_objext |
18304 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21315 | if { (ac_try="$ac_compile" |
18305 | (eval $ac_compile) 2>conftest.er1 | 21316 | case "(($ac_try" in |
21317 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21318 | *) ac_try_echo=$ac_try;; | ||
21319 | esac | ||
21320 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21321 | (eval "$ac_compile") 2>conftest.er1 | ||
18306 | ac_status=$? | 21322 | ac_status=$? |
18307 | grep -v '^ *+' conftest.er1 >conftest.err | 21323 | grep -v '^ *+' conftest.er1 >conftest.err |
18308 | rm -f conftest.er1 | 21324 | rm -f conftest.er1 |
18309 | cat conftest.err >&5 | 21325 | cat conftest.err >&5 |
18310 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21326 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18311 | (exit $ac_status); } && | 21327 | (exit $ac_status); } && |
18312 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21328 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18313 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21329 | { (case "(($ac_try" in |
18314 | (eval $ac_try) 2>&5 | 21330 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21331 | *) ac_try_echo=$ac_try;; | ||
21332 | esac | ||
21333 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21334 | (eval "$ac_try") 2>&5 | ||
18315 | ac_status=$? | 21335 | ac_status=$? |
18316 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21336 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18317 | (exit $ac_status); }; } && | 21337 | (exit $ac_status); }; } && |
18318 | { ac_try='test -s conftest.$ac_objext' | 21338 | { ac_try='test -s conftest.$ac_objext' |
18319 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21339 | { (case "(($ac_try" in |
18320 | (eval $ac_try) 2>&5 | 21340 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21341 | *) ac_try_echo=$ac_try;; | ||
21342 | esac | ||
21343 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21344 | (eval "$ac_try") 2>&5 | ||
18321 | ac_status=$? | 21345 | ac_status=$? |
18322 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21346 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18323 | (exit $ac_status); }; }; then | 21347 | (exit $ac_status); }; }; then |
@@ -18326,23 +21350,23 @@ else | |||
18326 | echo "$as_me: failed program was:" >&5 | 21350 | echo "$as_me: failed program was:" >&5 |
18327 | sed 's/^/| /' conftest.$ac_ext >&5 | 21351 | sed 's/^/| /' conftest.$ac_ext >&5 |
18328 | 21352 | ||
18329 | ac_cv_type_long_long_int=no | 21353 | ac_cv_type_long_long_int=no |
18330 | fi | 21354 | fi |
18331 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21355 | |
21356 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18332 | fi | 21357 | fi |
18333 | echo "$as_me:$LINENO: result: $ac_cv_type_long_long_int" >&5 | 21358 | { echo "$as_me:$LINENO: result: $ac_cv_type_long_long_int" >&5 |
18334 | echo "${ECHO_T}$ac_cv_type_long_long_int" >&6 | 21359 | echo "${ECHO_T}$ac_cv_type_long_long_int" >&6; } |
18335 | 21360 | ||
18336 | echo "$as_me:$LINENO: checking size of long long int" >&5 | 21361 | # The cast to long int works around a bug in the HP C Compiler |
18337 | echo $ECHO_N "checking size of long long int... $ECHO_C" >&6 | 21362 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects |
21363 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
21364 | # This bug is HP SR number 8606223364. | ||
21365 | { echo "$as_me:$LINENO: checking size of long long int" >&5 | ||
21366 | echo $ECHO_N "checking size of long long int... $ECHO_C" >&6; } | ||
18338 | if test "${ac_cv_sizeof_long_long_int+set}" = set; then | 21367 | if test "${ac_cv_sizeof_long_long_int+set}" = set; then |
18339 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 21368 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
18340 | else | 21369 | else |
18341 | if test "$ac_cv_type_long_long_int" = yes; then | ||
18342 | # The cast to unsigned long works around a bug in the HP C Compiler | ||
18343 | # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects | ||
18344 | # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. | ||
18345 | # This bug is HP SR number 8606223364. | ||
18346 | if test "$cross_compiling" = yes; then | 21370 | if test "$cross_compiling" = yes; then |
18347 | # Depending upon the size, compute the lo and hi bounds. | 21371 | # Depending upon the size, compute the lo and hi bounds. |
18348 | cat >conftest.$ac_ext <<_ACEOF | 21372 | cat >conftest.$ac_ext <<_ACEOF |
@@ -18352,10 +21376,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
18352 | cat >>conftest.$ac_ext <<_ACEOF | 21376 | cat >>conftest.$ac_ext <<_ACEOF |
18353 | /* end confdefs.h. */ | 21377 | /* end confdefs.h. */ |
18354 | $ac_includes_default | 21378 | $ac_includes_default |
21379 | typedef long long int ac__type_sizeof_; | ||
21380 | |||
18355 | int | 21381 | int |
18356 | main () | 21382 | main () |
18357 | { | 21383 | { |
18358 | static int test_array [1 - 2 * !(((long) (sizeof (long long int))) >= 0)]; | 21384 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; |
18359 | test_array [0] = 0 | 21385 | test_array [0] = 0 |
18360 | 21386 | ||
18361 | ; | 21387 | ; |
@@ -18363,23 +21389,36 @@ test_array [0] = 0 | |||
18363 | } | 21389 | } |
18364 | _ACEOF | 21390 | _ACEOF |
18365 | rm -f conftest.$ac_objext | 21391 | rm -f conftest.$ac_objext |
18366 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21392 | if { (ac_try="$ac_compile" |
18367 | (eval $ac_compile) 2>conftest.er1 | 21393 | case "(($ac_try" in |
21394 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21395 | *) ac_try_echo=$ac_try;; | ||
21396 | esac | ||
21397 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21398 | (eval "$ac_compile") 2>conftest.er1 | ||
18368 | ac_status=$? | 21399 | ac_status=$? |
18369 | grep -v '^ *+' conftest.er1 >conftest.err | 21400 | grep -v '^ *+' conftest.er1 >conftest.err |
18370 | rm -f conftest.er1 | 21401 | rm -f conftest.er1 |
18371 | cat conftest.err >&5 | 21402 | cat conftest.err >&5 |
18372 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21403 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18373 | (exit $ac_status); } && | 21404 | (exit $ac_status); } && |
18374 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21405 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18375 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21406 | { (case "(($ac_try" in |
18376 | (eval $ac_try) 2>&5 | 21407 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21408 | *) ac_try_echo=$ac_try;; | ||
21409 | esac | ||
21410 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21411 | (eval "$ac_try") 2>&5 | ||
18377 | ac_status=$? | 21412 | ac_status=$? |
18378 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21413 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18379 | (exit $ac_status); }; } && | 21414 | (exit $ac_status); }; } && |
18380 | { ac_try='test -s conftest.$ac_objext' | 21415 | { ac_try='test -s conftest.$ac_objext' |
18381 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21416 | { (case "(($ac_try" in |
18382 | (eval $ac_try) 2>&5 | 21417 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21418 | *) ac_try_echo=$ac_try;; | ||
21419 | esac | ||
21420 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21421 | (eval "$ac_try") 2>&5 | ||
18383 | ac_status=$? | 21422 | ac_status=$? |
18384 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21423 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18385 | (exit $ac_status); }; }; then | 21424 | (exit $ac_status); }; }; then |
@@ -18392,10 +21431,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
18392 | cat >>conftest.$ac_ext <<_ACEOF | 21431 | cat >>conftest.$ac_ext <<_ACEOF |
18393 | /* end confdefs.h. */ | 21432 | /* end confdefs.h. */ |
18394 | $ac_includes_default | 21433 | $ac_includes_default |
21434 | typedef long long int ac__type_sizeof_; | ||
21435 | |||
18395 | int | 21436 | int |
18396 | main () | 21437 | main () |
18397 | { | 21438 | { |
18398 | static int test_array [1 - 2 * !(((long) (sizeof (long long int))) <= $ac_mid)]; | 21439 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
18399 | test_array [0] = 0 | 21440 | test_array [0] = 0 |
18400 | 21441 | ||
18401 | ; | 21442 | ; |
@@ -18403,23 +21444,36 @@ test_array [0] = 0 | |||
18403 | } | 21444 | } |
18404 | _ACEOF | 21445 | _ACEOF |
18405 | rm -f conftest.$ac_objext | 21446 | rm -f conftest.$ac_objext |
18406 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21447 | if { (ac_try="$ac_compile" |
18407 | (eval $ac_compile) 2>conftest.er1 | 21448 | case "(($ac_try" in |
21449 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21450 | *) ac_try_echo=$ac_try;; | ||
21451 | esac | ||
21452 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21453 | (eval "$ac_compile") 2>conftest.er1 | ||
18408 | ac_status=$? | 21454 | ac_status=$? |
18409 | grep -v '^ *+' conftest.er1 >conftest.err | 21455 | grep -v '^ *+' conftest.er1 >conftest.err |
18410 | rm -f conftest.er1 | 21456 | rm -f conftest.er1 |
18411 | cat conftest.err >&5 | 21457 | cat conftest.err >&5 |
18412 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21458 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18413 | (exit $ac_status); } && | 21459 | (exit $ac_status); } && |
18414 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21460 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18415 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21461 | { (case "(($ac_try" in |
18416 | (eval $ac_try) 2>&5 | 21462 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21463 | *) ac_try_echo=$ac_try;; | ||
21464 | esac | ||
21465 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21466 | (eval "$ac_try") 2>&5 | ||
18417 | ac_status=$? | 21467 | ac_status=$? |
18418 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21468 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18419 | (exit $ac_status); }; } && | 21469 | (exit $ac_status); }; } && |
18420 | { ac_try='test -s conftest.$ac_objext' | 21470 | { ac_try='test -s conftest.$ac_objext' |
18421 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21471 | { (case "(($ac_try" in |
18422 | (eval $ac_try) 2>&5 | 21472 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21473 | *) ac_try_echo=$ac_try;; | ||
21474 | esac | ||
21475 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21476 | (eval "$ac_try") 2>&5 | ||
18423 | ac_status=$? | 21477 | ac_status=$? |
18424 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21478 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18425 | (exit $ac_status); }; }; then | 21479 | (exit $ac_status); }; }; then |
@@ -18428,30 +21482,33 @@ else | |||
18428 | echo "$as_me: failed program was:" >&5 | 21482 | echo "$as_me: failed program was:" >&5 |
18429 | sed 's/^/| /' conftest.$ac_ext >&5 | 21483 | sed 's/^/| /' conftest.$ac_ext >&5 |
18430 | 21484 | ||
18431 | ac_lo=`expr $ac_mid + 1` | 21485 | ac_lo=`expr $ac_mid + 1` |
18432 | if test $ac_lo -le $ac_mid; then | 21486 | if test $ac_lo -le $ac_mid; then |
18433 | ac_lo= ac_hi= | 21487 | ac_lo= ac_hi= |
18434 | break | 21488 | break |
18435 | fi | 21489 | fi |
18436 | ac_mid=`expr 2 '*' $ac_mid + 1` | 21490 | ac_mid=`expr 2 '*' $ac_mid + 1` |
18437 | fi | 21491 | fi |
18438 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21492 | |
21493 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18439 | done | 21494 | done |
18440 | else | 21495 | else |
18441 | echo "$as_me: failed program was:" >&5 | 21496 | echo "$as_me: failed program was:" >&5 |
18442 | sed 's/^/| /' conftest.$ac_ext >&5 | 21497 | sed 's/^/| /' conftest.$ac_ext >&5 |
18443 | 21498 | ||
18444 | cat >conftest.$ac_ext <<_ACEOF | 21499 | cat >conftest.$ac_ext <<_ACEOF |
18445 | /* confdefs.h. */ | 21500 | /* confdefs.h. */ |
18446 | _ACEOF | 21501 | _ACEOF |
18447 | cat confdefs.h >>conftest.$ac_ext | 21502 | cat confdefs.h >>conftest.$ac_ext |
18448 | cat >>conftest.$ac_ext <<_ACEOF | 21503 | cat >>conftest.$ac_ext <<_ACEOF |
18449 | /* end confdefs.h. */ | 21504 | /* end confdefs.h. */ |
18450 | $ac_includes_default | 21505 | $ac_includes_default |
21506 | typedef long long int ac__type_sizeof_; | ||
21507 | |||
18451 | int | 21508 | int |
18452 | main () | 21509 | main () |
18453 | { | 21510 | { |
18454 | static int test_array [1 - 2 * !(((long) (sizeof (long long int))) < 0)]; | 21511 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; |
18455 | test_array [0] = 0 | 21512 | test_array [0] = 0 |
18456 | 21513 | ||
18457 | ; | 21514 | ; |
@@ -18459,23 +21516,36 @@ test_array [0] = 0 | |||
18459 | } | 21516 | } |
18460 | _ACEOF | 21517 | _ACEOF |
18461 | rm -f conftest.$ac_objext | 21518 | rm -f conftest.$ac_objext |
18462 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21519 | if { (ac_try="$ac_compile" |
18463 | (eval $ac_compile) 2>conftest.er1 | 21520 | case "(($ac_try" in |
21521 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21522 | *) ac_try_echo=$ac_try;; | ||
21523 | esac | ||
21524 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21525 | (eval "$ac_compile") 2>conftest.er1 | ||
18464 | ac_status=$? | 21526 | ac_status=$? |
18465 | grep -v '^ *+' conftest.er1 >conftest.err | 21527 | grep -v '^ *+' conftest.er1 >conftest.err |
18466 | rm -f conftest.er1 | 21528 | rm -f conftest.er1 |
18467 | cat conftest.err >&5 | 21529 | cat conftest.err >&5 |
18468 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21530 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18469 | (exit $ac_status); } && | 21531 | (exit $ac_status); } && |
18470 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21532 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18471 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21533 | { (case "(($ac_try" in |
18472 | (eval $ac_try) 2>&5 | 21534 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21535 | *) ac_try_echo=$ac_try;; | ||
21536 | esac | ||
21537 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21538 | (eval "$ac_try") 2>&5 | ||
18473 | ac_status=$? | 21539 | ac_status=$? |
18474 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21540 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18475 | (exit $ac_status); }; } && | 21541 | (exit $ac_status); }; } && |
18476 | { ac_try='test -s conftest.$ac_objext' | 21542 | { ac_try='test -s conftest.$ac_objext' |
18477 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21543 | { (case "(($ac_try" in |
18478 | (eval $ac_try) 2>&5 | 21544 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21545 | *) ac_try_echo=$ac_try;; | ||
21546 | esac | ||
21547 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21548 | (eval "$ac_try") 2>&5 | ||
18479 | ac_status=$? | 21549 | ac_status=$? |
18480 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21550 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18481 | (exit $ac_status); }; }; then | 21551 | (exit $ac_status); }; }; then |
@@ -18488,10 +21558,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
18488 | cat >>conftest.$ac_ext <<_ACEOF | 21558 | cat >>conftest.$ac_ext <<_ACEOF |
18489 | /* end confdefs.h. */ | 21559 | /* end confdefs.h. */ |
18490 | $ac_includes_default | 21560 | $ac_includes_default |
21561 | typedef long long int ac__type_sizeof_; | ||
21562 | |||
18491 | int | 21563 | int |
18492 | main () | 21564 | main () |
18493 | { | 21565 | { |
18494 | static int test_array [1 - 2 * !(((long) (sizeof (long long int))) >= $ac_mid)]; | 21566 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; |
18495 | test_array [0] = 0 | 21567 | test_array [0] = 0 |
18496 | 21568 | ||
18497 | ; | 21569 | ; |
@@ -18499,23 +21571,36 @@ test_array [0] = 0 | |||
18499 | } | 21571 | } |
18500 | _ACEOF | 21572 | _ACEOF |
18501 | rm -f conftest.$ac_objext | 21573 | rm -f conftest.$ac_objext |
18502 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21574 | if { (ac_try="$ac_compile" |
18503 | (eval $ac_compile) 2>conftest.er1 | 21575 | case "(($ac_try" in |
21576 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21577 | *) ac_try_echo=$ac_try;; | ||
21578 | esac | ||
21579 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21580 | (eval "$ac_compile") 2>conftest.er1 | ||
18504 | ac_status=$? | 21581 | ac_status=$? |
18505 | grep -v '^ *+' conftest.er1 >conftest.err | 21582 | grep -v '^ *+' conftest.er1 >conftest.err |
18506 | rm -f conftest.er1 | 21583 | rm -f conftest.er1 |
18507 | cat conftest.err >&5 | 21584 | cat conftest.err >&5 |
18508 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21585 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18509 | (exit $ac_status); } && | 21586 | (exit $ac_status); } && |
18510 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21587 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18511 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21588 | { (case "(($ac_try" in |
18512 | (eval $ac_try) 2>&5 | 21589 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21590 | *) ac_try_echo=$ac_try;; | ||
21591 | esac | ||
21592 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21593 | (eval "$ac_try") 2>&5 | ||
18513 | ac_status=$? | 21594 | ac_status=$? |
18514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21595 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18515 | (exit $ac_status); }; } && | 21596 | (exit $ac_status); }; } && |
18516 | { ac_try='test -s conftest.$ac_objext' | 21597 | { ac_try='test -s conftest.$ac_objext' |
18517 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21598 | { (case "(($ac_try" in |
18518 | (eval $ac_try) 2>&5 | 21599 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21600 | *) ac_try_echo=$ac_try;; | ||
21601 | esac | ||
21602 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21603 | (eval "$ac_try") 2>&5 | ||
18519 | ac_status=$? | 21604 | ac_status=$? |
18520 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21605 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18521 | (exit $ac_status); }; }; then | 21606 | (exit $ac_status); }; }; then |
@@ -18524,24 +21609,27 @@ else | |||
18524 | echo "$as_me: failed program was:" >&5 | 21609 | echo "$as_me: failed program was:" >&5 |
18525 | sed 's/^/| /' conftest.$ac_ext >&5 | 21610 | sed 's/^/| /' conftest.$ac_ext >&5 |
18526 | 21611 | ||
18527 | ac_hi=`expr '(' $ac_mid ')' - 1` | 21612 | ac_hi=`expr '(' $ac_mid ')' - 1` |
18528 | if test $ac_mid -le $ac_hi; then | 21613 | if test $ac_mid -le $ac_hi; then |
18529 | ac_lo= ac_hi= | 21614 | ac_lo= ac_hi= |
18530 | break | 21615 | break |
18531 | fi | 21616 | fi |
18532 | ac_mid=`expr 2 '*' $ac_mid` | 21617 | ac_mid=`expr 2 '*' $ac_mid` |
18533 | fi | 21618 | fi |
18534 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21619 | |
21620 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18535 | done | 21621 | done |
18536 | else | 21622 | else |
18537 | echo "$as_me: failed program was:" >&5 | 21623 | echo "$as_me: failed program was:" >&5 |
18538 | sed 's/^/| /' conftest.$ac_ext >&5 | 21624 | sed 's/^/| /' conftest.$ac_ext >&5 |
18539 | 21625 | ||
18540 | ac_lo= ac_hi= | 21626 | ac_lo= ac_hi= |
18541 | fi | 21627 | fi |
18542 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21628 | |
21629 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18543 | fi | 21630 | fi |
18544 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21631 | |
21632 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18545 | # Binary search between lo and hi bounds. | 21633 | # Binary search between lo and hi bounds. |
18546 | while test "x$ac_lo" != "x$ac_hi"; do | 21634 | while test "x$ac_lo" != "x$ac_hi"; do |
18547 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` | 21635 | ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` |
@@ -18552,10 +21640,12 @@ cat confdefs.h >>conftest.$ac_ext | |||
18552 | cat >>conftest.$ac_ext <<_ACEOF | 21640 | cat >>conftest.$ac_ext <<_ACEOF |
18553 | /* end confdefs.h. */ | 21641 | /* end confdefs.h. */ |
18554 | $ac_includes_default | 21642 | $ac_includes_default |
21643 | typedef long long int ac__type_sizeof_; | ||
21644 | |||
18555 | int | 21645 | int |
18556 | main () | 21646 | main () |
18557 | { | 21647 | { |
18558 | static int test_array [1 - 2 * !(((long) (sizeof (long long int))) <= $ac_mid)]; | 21648 | static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; |
18559 | test_array [0] = 0 | 21649 | test_array [0] = 0 |
18560 | 21650 | ||
18561 | ; | 21651 | ; |
@@ -18563,23 +21653,36 @@ test_array [0] = 0 | |||
18563 | } | 21653 | } |
18564 | _ACEOF | 21654 | _ACEOF |
18565 | rm -f conftest.$ac_objext | 21655 | rm -f conftest.$ac_objext |
18566 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21656 | if { (ac_try="$ac_compile" |
18567 | (eval $ac_compile) 2>conftest.er1 | 21657 | case "(($ac_try" in |
21658 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21659 | *) ac_try_echo=$ac_try;; | ||
21660 | esac | ||
21661 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21662 | (eval "$ac_compile") 2>conftest.er1 | ||
18568 | ac_status=$? | 21663 | ac_status=$? |
18569 | grep -v '^ *+' conftest.er1 >conftest.err | 21664 | grep -v '^ *+' conftest.er1 >conftest.err |
18570 | rm -f conftest.er1 | 21665 | rm -f conftest.er1 |
18571 | cat conftest.err >&5 | 21666 | cat conftest.err >&5 |
18572 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21667 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18573 | (exit $ac_status); } && | 21668 | (exit $ac_status); } && |
18574 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21669 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18575 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21670 | { (case "(($ac_try" in |
18576 | (eval $ac_try) 2>&5 | 21671 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21672 | *) ac_try_echo=$ac_try;; | ||
21673 | esac | ||
21674 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21675 | (eval "$ac_try") 2>&5 | ||
18577 | ac_status=$? | 21676 | ac_status=$? |
18578 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21677 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18579 | (exit $ac_status); }; } && | 21678 | (exit $ac_status); }; } && |
18580 | { ac_try='test -s conftest.$ac_objext' | 21679 | { ac_try='test -s conftest.$ac_objext' |
18581 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21680 | { (case "(($ac_try" in |
18582 | (eval $ac_try) 2>&5 | 21681 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21682 | *) ac_try_echo=$ac_try;; | ||
21683 | esac | ||
21684 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21685 | (eval "$ac_try") 2>&5 | ||
18583 | ac_status=$? | 21686 | ac_status=$? |
18584 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21687 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18585 | (exit $ac_status); }; }; then | 21688 | (exit $ac_status); }; }; then |
@@ -18588,24 +21691,24 @@ else | |||
18588 | echo "$as_me: failed program was:" >&5 | 21691 | echo "$as_me: failed program was:" >&5 |
18589 | sed 's/^/| /' conftest.$ac_ext >&5 | 21692 | sed 's/^/| /' conftest.$ac_ext >&5 |
18590 | 21693 | ||
18591 | ac_lo=`expr '(' $ac_mid ')' + 1` | 21694 | ac_lo=`expr '(' $ac_mid ')' + 1` |
18592 | fi | 21695 | fi |
18593 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 21696 | |
21697 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18594 | done | 21698 | done |
18595 | case $ac_lo in | 21699 | case $ac_lo in |
18596 | ?*) ac_cv_sizeof_long_long_int=$ac_lo;; | 21700 | ?*) ac_cv_sizeof_long_long_int=$ac_lo;; |
18597 | '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int), 77 | 21701 | '') if test "$ac_cv_type_long_long_int" = yes; then |
21702 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int) | ||
18598 | See \`config.log' for more details." >&5 | 21703 | See \`config.log' for more details." >&5 |
18599 | echo "$as_me: error: cannot compute sizeof (long long int), 77 | 21704 | echo "$as_me: error: cannot compute sizeof (long long int) |
18600 | See \`config.log' for more details." >&2;} | 21705 | See \`config.log' for more details." >&2;} |
18601 | { (exit 1); exit 1; }; } ;; | 21706 | { (exit 77); exit 77; }; } |
21707 | else | ||
21708 | ac_cv_sizeof_long_long_int=0 | ||
21709 | fi ;; | ||
18602 | esac | 21710 | esac |
18603 | else | 21711 | else |
18604 | if test "$cross_compiling" = yes; then | ||
18605 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 | ||
18606 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} | ||
18607 | { (exit 1); exit 1; }; } | ||
18608 | else | ||
18609 | cat >conftest.$ac_ext <<_ACEOF | 21712 | cat >conftest.$ac_ext <<_ACEOF |
18610 | /* confdefs.h. */ | 21713 | /* confdefs.h. */ |
18611 | _ACEOF | 21714 | _ACEOF |
@@ -18613,8 +21716,10 @@ cat confdefs.h >>conftest.$ac_ext | |||
18613 | cat >>conftest.$ac_ext <<_ACEOF | 21716 | cat >>conftest.$ac_ext <<_ACEOF |
18614 | /* end confdefs.h. */ | 21717 | /* end confdefs.h. */ |
18615 | $ac_includes_default | 21718 | $ac_includes_default |
18616 | long longval () { return (long) (sizeof (long long int)); } | 21719 | typedef long long int ac__type_sizeof_; |
18617 | unsigned long ulongval () { return (long) (sizeof (long long int)); } | 21720 | |
21721 | static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
21722 | static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } | ||
18618 | #include <stdio.h> | 21723 | #include <stdio.h> |
18619 | #include <stdlib.h> | 21724 | #include <stdlib.h> |
18620 | int | 21725 | int |
@@ -18623,35 +21728,44 @@ main () | |||
18623 | 21728 | ||
18624 | FILE *f = fopen ("conftest.val", "w"); | 21729 | FILE *f = fopen ("conftest.val", "w"); |
18625 | if (! f) | 21730 | if (! f) |
18626 | exit (1); | 21731 | return 1; |
18627 | if (((long) (sizeof (long long int))) < 0) | 21732 | if (((long int) (sizeof (ac__type_sizeof_))) < 0) |
18628 | { | 21733 | { |
18629 | long i = longval (); | 21734 | long int i = longval (); |
18630 | if (i != ((long) (sizeof (long long int)))) | 21735 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
18631 | exit (1); | 21736 | return 1; |
18632 | fprintf (f, "%ld\n", i); | 21737 | fprintf (f, "%ld\n", i); |
18633 | } | 21738 | } |
18634 | else | 21739 | else |
18635 | { | 21740 | { |
18636 | unsigned long i = ulongval (); | 21741 | unsigned long int i = ulongval (); |
18637 | if (i != ((long) (sizeof (long long int)))) | 21742 | if (i != ((long int) (sizeof (ac__type_sizeof_)))) |
18638 | exit (1); | 21743 | return 1; |
18639 | fprintf (f, "%lu\n", i); | 21744 | fprintf (f, "%lu\n", i); |
18640 | } | 21745 | } |
18641 | exit (ferror (f) || fclose (f) != 0); | 21746 | return ferror (f) || fclose (f) != 0; |
18642 | 21747 | ||
18643 | ; | 21748 | ; |
18644 | return 0; | 21749 | return 0; |
18645 | } | 21750 | } |
18646 | _ACEOF | 21751 | _ACEOF |
18647 | rm -f conftest$ac_exeext | 21752 | rm -f conftest$ac_exeext |
18648 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 21753 | if { (ac_try="$ac_link" |
18649 | (eval $ac_link) 2>&5 | 21754 | case "(($ac_try" in |
21755 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21756 | *) ac_try_echo=$ac_try;; | ||
21757 | esac | ||
21758 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21759 | (eval "$ac_link") 2>&5 | ||
18650 | ac_status=$? | 21760 | ac_status=$? |
18651 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21761 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18652 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 21762 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
18653 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21763 | { (case "(($ac_try" in |
18654 | (eval $ac_try) 2>&5 | 21764 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21765 | *) ac_try_echo=$ac_try;; | ||
21766 | esac | ||
21767 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21768 | (eval "$ac_try") 2>&5 | ||
18655 | ac_status=$? | 21769 | ac_status=$? |
18656 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21770 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18657 | (exit $ac_status); }; }; then | 21771 | (exit $ac_status); }; }; then |
@@ -18662,22 +21776,25 @@ echo "$as_me: failed program was:" >&5 | |||
18662 | sed 's/^/| /' conftest.$ac_ext >&5 | 21776 | sed 's/^/| /' conftest.$ac_ext >&5 |
18663 | 21777 | ||
18664 | ( exit $ac_status ) | 21778 | ( exit $ac_status ) |
18665 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int), 77 | 21779 | if test "$ac_cv_type_long_long_int" = yes; then |
21780 | { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int) | ||
18666 | See \`config.log' for more details." >&5 | 21781 | See \`config.log' for more details." >&5 |
18667 | echo "$as_me: error: cannot compute sizeof (long long int), 77 | 21782 | echo "$as_me: error: cannot compute sizeof (long long int) |
18668 | See \`config.log' for more details." >&2;} | 21783 | See \`config.log' for more details." >&2;} |
18669 | { (exit 1); exit 1; }; } | 21784 | { (exit 77); exit 77; }; } |
18670 | fi | 21785 | else |
18671 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 21786 | ac_cv_sizeof_long_long_int=0 |
21787 | fi | ||
18672 | fi | 21788 | fi |
21789 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | ||
18673 | fi | 21790 | fi |
18674 | rm -f conftest.val | 21791 | rm -f conftest.val |
18675 | else | ||
18676 | ac_cv_sizeof_long_long_int=0 | ||
18677 | fi | 21792 | fi |
18678 | fi | 21793 | { echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long_int" >&5 |
18679 | echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long_int" >&5 | 21794 | echo "${ECHO_T}$ac_cv_sizeof_long_long_int" >&6; } |
18680 | echo "${ECHO_T}$ac_cv_sizeof_long_long_int" >&6 | 21795 | |
21796 | |||
21797 | |||
18681 | cat >>confdefs.h <<_ACEOF | 21798 | cat >>confdefs.h <<_ACEOF |
18682 | #define SIZEOF_LONG_LONG_INT $ac_cv_sizeof_long_long_int | 21799 | #define SIZEOF_LONG_LONG_INT $ac_cv_sizeof_long_long_int |
18683 | _ACEOF | 21800 | _ACEOF |
@@ -18691,8 +21808,8 @@ fi | |||
18691 | 21808 | ||
18692 | # compute LLONG_MIN and LLONG_MAX if we don't know them. | 21809 | # compute LLONG_MIN and LLONG_MAX if we don't know them. |
18693 | if test -z "$have_llong_max"; then | 21810 | if test -z "$have_llong_max"; then |
18694 | echo "$as_me:$LINENO: checking for max value of long long" >&5 | 21811 | { echo "$as_me:$LINENO: checking for max value of long long" >&5 |
18695 | echo $ECHO_N "checking for max value of long long... $ECHO_C" >&6 | 21812 | echo $ECHO_N "checking for max value of long long... $ECHO_C" >&6; } |
18696 | if test "$cross_compiling" = yes; then | 21813 | if test "$cross_compiling" = yes; then |
18697 | 21814 | ||
18698 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 | 21815 | { echo "$as_me:$LINENO: WARNING: cross compiling: not checking" >&5 |
@@ -18749,13 +21866,22 @@ int main(void) { | |||
18749 | 21866 | ||
18750 | _ACEOF | 21867 | _ACEOF |
18751 | rm -f conftest$ac_exeext | 21868 | rm -f conftest$ac_exeext |
18752 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 21869 | if { (ac_try="$ac_link" |
18753 | (eval $ac_link) 2>&5 | 21870 | case "(($ac_try" in |
21871 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21872 | *) ac_try_echo=$ac_try;; | ||
21873 | esac | ||
21874 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21875 | (eval "$ac_link") 2>&5 | ||
18754 | ac_status=$? | 21876 | ac_status=$? |
18755 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21877 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18756 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 21878 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
18757 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21879 | { (case "(($ac_try" in |
18758 | (eval $ac_try) 2>&5 | 21880 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21881 | *) ac_try_echo=$ac_try;; | ||
21882 | esac | ||
21883 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21884 | (eval "$ac_try") 2>&5 | ||
18759 | ac_status=$? | 21885 | ac_status=$? |
18760 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21886 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18761 | (exit $ac_status); }; }; then | 21887 | (exit $ac_status); }; }; then |
@@ -18774,17 +21900,17 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
18774 | ;; | 21900 | ;; |
18775 | esac | 21901 | esac |
18776 | 21902 | ||
18777 | echo "$as_me:$LINENO: result: $llong_max" >&5 | 21903 | { echo "$as_me:$LINENO: result: $llong_max" >&5 |
18778 | echo "${ECHO_T}$llong_max" >&6 | 21904 | echo "${ECHO_T}$llong_max" >&6; } |
18779 | 21905 | ||
18780 | cat >>confdefs.h <<_ACEOF | 21906 | cat >>confdefs.h <<_ACEOF |
18781 | #define LLONG_MAX ${llong_max}LL | 21907 | #define LLONG_MAX ${llong_max}LL |
18782 | _ACEOF | 21908 | _ACEOF |
18783 | 21909 | ||
18784 | echo "$as_me:$LINENO: checking for min value of long long" >&5 | 21910 | { echo "$as_me:$LINENO: checking for min value of long long" >&5 |
18785 | echo $ECHO_N "checking for min value of long long... $ECHO_C" >&6 | 21911 | echo $ECHO_N "checking for min value of long long... $ECHO_C" >&6; } |
18786 | echo "$as_me:$LINENO: result: $llong_min" >&5 | 21912 | { echo "$as_me:$LINENO: result: $llong_min" >&5 |
18787 | echo "${ECHO_T}$llong_min" >&6 | 21913 | echo "${ECHO_T}$llong_min" >&6; } |
18788 | 21914 | ||
18789 | cat >>confdefs.h <<_ACEOF | 21915 | cat >>confdefs.h <<_ACEOF |
18790 | #define LLONG_MIN ${llong_min}LL | 21916 | #define LLONG_MIN ${llong_min}LL |
@@ -18798,18 +21924,20 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
18798 | 21924 | ||
18799 | ( exit $ac_status ) | 21925 | ( exit $ac_status ) |
18800 | 21926 | ||
18801 | echo "$as_me:$LINENO: result: not found" >&5 | 21927 | { echo "$as_me:$LINENO: result: not found" >&5 |
18802 | echo "${ECHO_T}not found" >&6 | 21928 | echo "${ECHO_T}not found" >&6; } |
18803 | 21929 | ||
18804 | fi | 21930 | fi |
18805 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 21931 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
18806 | fi | 21932 | fi |
21933 | |||
21934 | |||
18807 | fi | 21935 | fi |
18808 | 21936 | ||
18809 | 21937 | ||
18810 | # More checks for data types | 21938 | # More checks for data types |
18811 | echo "$as_me:$LINENO: checking for u_int type" >&5 | 21939 | { echo "$as_me:$LINENO: checking for u_int type" >&5 |
18812 | echo $ECHO_N "checking for u_int type... $ECHO_C" >&6 | 21940 | echo $ECHO_N "checking for u_int type... $ECHO_C" >&6; } |
18813 | if test "${ac_cv_have_u_int+set}" = set; then | 21941 | if test "${ac_cv_have_u_int+set}" = set; then |
18814 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 21942 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
18815 | else | 21943 | else |
@@ -18830,23 +21958,36 @@ main () | |||
18830 | } | 21958 | } |
18831 | _ACEOF | 21959 | _ACEOF |
18832 | rm -f conftest.$ac_objext | 21960 | rm -f conftest.$ac_objext |
18833 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 21961 | if { (ac_try="$ac_compile" |
18834 | (eval $ac_compile) 2>conftest.er1 | 21962 | case "(($ac_try" in |
21963 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
21964 | *) ac_try_echo=$ac_try;; | ||
21965 | esac | ||
21966 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21967 | (eval "$ac_compile") 2>conftest.er1 | ||
18835 | ac_status=$? | 21968 | ac_status=$? |
18836 | grep -v '^ *+' conftest.er1 >conftest.err | 21969 | grep -v '^ *+' conftest.er1 >conftest.err |
18837 | rm -f conftest.er1 | 21970 | rm -f conftest.er1 |
18838 | cat conftest.err >&5 | 21971 | cat conftest.err >&5 |
18839 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21972 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18840 | (exit $ac_status); } && | 21973 | (exit $ac_status); } && |
18841 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 21974 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18842 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21975 | { (case "(($ac_try" in |
18843 | (eval $ac_try) 2>&5 | 21976 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21977 | *) ac_try_echo=$ac_try;; | ||
21978 | esac | ||
21979 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21980 | (eval "$ac_try") 2>&5 | ||
18844 | ac_status=$? | 21981 | ac_status=$? |
18845 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21982 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18846 | (exit $ac_status); }; } && | 21983 | (exit $ac_status); }; } && |
18847 | { ac_try='test -s conftest.$ac_objext' | 21984 | { ac_try='test -s conftest.$ac_objext' |
18848 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21985 | { (case "(($ac_try" in |
18849 | (eval $ac_try) 2>&5 | 21986 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
21987 | *) ac_try_echo=$ac_try;; | ||
21988 | esac | ||
21989 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
21990 | (eval "$ac_try") 2>&5 | ||
18850 | ac_status=$? | 21991 | ac_status=$? |
18851 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21992 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18852 | (exit $ac_status); }; }; then | 21993 | (exit $ac_status); }; }; then |
@@ -18855,14 +21996,15 @@ else | |||
18855 | echo "$as_me: failed program was:" >&5 | 21996 | echo "$as_me: failed program was:" >&5 |
18856 | sed 's/^/| /' conftest.$ac_ext >&5 | 21997 | sed 's/^/| /' conftest.$ac_ext >&5 |
18857 | 21998 | ||
18858 | ac_cv_have_u_int="no" | 21999 | ac_cv_have_u_int="no" |
18859 | 22000 | ||
18860 | fi | 22001 | fi |
18861 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22002 | |
22003 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18862 | 22004 | ||
18863 | fi | 22005 | fi |
18864 | echo "$as_me:$LINENO: result: $ac_cv_have_u_int" >&5 | 22006 | { echo "$as_me:$LINENO: result: $ac_cv_have_u_int" >&5 |
18865 | echo "${ECHO_T}$ac_cv_have_u_int" >&6 | 22007 | echo "${ECHO_T}$ac_cv_have_u_int" >&6; } |
18866 | if test "x$ac_cv_have_u_int" = "xyes" ; then | 22008 | if test "x$ac_cv_have_u_int" = "xyes" ; then |
18867 | 22009 | ||
18868 | cat >>confdefs.h <<\_ACEOF | 22010 | cat >>confdefs.h <<\_ACEOF |
@@ -18872,8 +22014,8 @@ _ACEOF | |||
18872 | have_u_int=1 | 22014 | have_u_int=1 |
18873 | fi | 22015 | fi |
18874 | 22016 | ||
18875 | echo "$as_me:$LINENO: checking for intXX_t types" >&5 | 22017 | { echo "$as_me:$LINENO: checking for intXX_t types" >&5 |
18876 | echo $ECHO_N "checking for intXX_t types... $ECHO_C" >&6 | 22018 | echo $ECHO_N "checking for intXX_t types... $ECHO_C" >&6; } |
18877 | if test "${ac_cv_have_intxx_t+set}" = set; then | 22019 | if test "${ac_cv_have_intxx_t+set}" = set; then |
18878 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22020 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
18879 | else | 22021 | else |
@@ -18894,23 +22036,36 @@ main () | |||
18894 | } | 22036 | } |
18895 | _ACEOF | 22037 | _ACEOF |
18896 | rm -f conftest.$ac_objext | 22038 | rm -f conftest.$ac_objext |
18897 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22039 | if { (ac_try="$ac_compile" |
18898 | (eval $ac_compile) 2>conftest.er1 | 22040 | case "(($ac_try" in |
22041 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22042 | *) ac_try_echo=$ac_try;; | ||
22043 | esac | ||
22044 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22045 | (eval "$ac_compile") 2>conftest.er1 | ||
18899 | ac_status=$? | 22046 | ac_status=$? |
18900 | grep -v '^ *+' conftest.er1 >conftest.err | 22047 | grep -v '^ *+' conftest.er1 >conftest.err |
18901 | rm -f conftest.er1 | 22048 | rm -f conftest.er1 |
18902 | cat conftest.err >&5 | 22049 | cat conftest.err >&5 |
18903 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22050 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18904 | (exit $ac_status); } && | 22051 | (exit $ac_status); } && |
18905 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22052 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18906 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22053 | { (case "(($ac_try" in |
18907 | (eval $ac_try) 2>&5 | 22054 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22055 | *) ac_try_echo=$ac_try;; | ||
22056 | esac | ||
22057 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22058 | (eval "$ac_try") 2>&5 | ||
18908 | ac_status=$? | 22059 | ac_status=$? |
18909 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22060 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18910 | (exit $ac_status); }; } && | 22061 | (exit $ac_status); }; } && |
18911 | { ac_try='test -s conftest.$ac_objext' | 22062 | { ac_try='test -s conftest.$ac_objext' |
18912 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22063 | { (case "(($ac_try" in |
18913 | (eval $ac_try) 2>&5 | 22064 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22065 | *) ac_try_echo=$ac_try;; | ||
22066 | esac | ||
22067 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22068 | (eval "$ac_try") 2>&5 | ||
18914 | ac_status=$? | 22069 | ac_status=$? |
18915 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22070 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18916 | (exit $ac_status); }; }; then | 22071 | (exit $ac_status); }; }; then |
@@ -18919,14 +22074,15 @@ else | |||
18919 | echo "$as_me: failed program was:" >&5 | 22074 | echo "$as_me: failed program was:" >&5 |
18920 | sed 's/^/| /' conftest.$ac_ext >&5 | 22075 | sed 's/^/| /' conftest.$ac_ext >&5 |
18921 | 22076 | ||
18922 | ac_cv_have_intxx_t="no" | 22077 | ac_cv_have_intxx_t="no" |
18923 | 22078 | ||
18924 | fi | 22079 | fi |
18925 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22080 | |
22081 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18926 | 22082 | ||
18927 | fi | 22083 | fi |
18928 | echo "$as_me:$LINENO: result: $ac_cv_have_intxx_t" >&5 | 22084 | { echo "$as_me:$LINENO: result: $ac_cv_have_intxx_t" >&5 |
18929 | echo "${ECHO_T}$ac_cv_have_intxx_t" >&6 | 22085 | echo "${ECHO_T}$ac_cv_have_intxx_t" >&6; } |
18930 | if test "x$ac_cv_have_intxx_t" = "xyes" ; then | 22086 | if test "x$ac_cv_have_intxx_t" = "xyes" ; then |
18931 | 22087 | ||
18932 | cat >>confdefs.h <<\_ACEOF | 22088 | cat >>confdefs.h <<\_ACEOF |
@@ -18939,8 +22095,8 @@ fi | |||
18939 | if (test -z "$have_intxx_t" && \ | 22095 | if (test -z "$have_intxx_t" && \ |
18940 | test "x$ac_cv_header_stdint_h" = "xyes") | 22096 | test "x$ac_cv_header_stdint_h" = "xyes") |
18941 | then | 22097 | then |
18942 | echo "$as_me:$LINENO: checking for intXX_t types in stdint.h" >&5 | 22098 | { echo "$as_me:$LINENO: checking for intXX_t types in stdint.h" >&5 |
18943 | echo $ECHO_N "checking for intXX_t types in stdint.h... $ECHO_C" >&6 | 22099 | echo $ECHO_N "checking for intXX_t types in stdint.h... $ECHO_C" >&6; } |
18944 | cat >conftest.$ac_ext <<_ACEOF | 22100 | cat >conftest.$ac_ext <<_ACEOF |
18945 | /* confdefs.h. */ | 22101 | /* confdefs.h. */ |
18946 | _ACEOF | 22102 | _ACEOF |
@@ -18957,23 +22113,36 @@ main () | |||
18957 | } | 22113 | } |
18958 | _ACEOF | 22114 | _ACEOF |
18959 | rm -f conftest.$ac_objext | 22115 | rm -f conftest.$ac_objext |
18960 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22116 | if { (ac_try="$ac_compile" |
18961 | (eval $ac_compile) 2>conftest.er1 | 22117 | case "(($ac_try" in |
22118 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22119 | *) ac_try_echo=$ac_try;; | ||
22120 | esac | ||
22121 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22122 | (eval "$ac_compile") 2>conftest.er1 | ||
18962 | ac_status=$? | 22123 | ac_status=$? |
18963 | grep -v '^ *+' conftest.er1 >conftest.err | 22124 | grep -v '^ *+' conftest.er1 >conftest.err |
18964 | rm -f conftest.er1 | 22125 | rm -f conftest.er1 |
18965 | cat conftest.err >&5 | 22126 | cat conftest.err >&5 |
18966 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22127 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18967 | (exit $ac_status); } && | 22128 | (exit $ac_status); } && |
18968 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22129 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18969 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22130 | { (case "(($ac_try" in |
18970 | (eval $ac_try) 2>&5 | 22131 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22132 | *) ac_try_echo=$ac_try;; | ||
22133 | esac | ||
22134 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22135 | (eval "$ac_try") 2>&5 | ||
18971 | ac_status=$? | 22136 | ac_status=$? |
18972 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22137 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18973 | (exit $ac_status); }; } && | 22138 | (exit $ac_status); }; } && |
18974 | { ac_try='test -s conftest.$ac_objext' | 22139 | { ac_try='test -s conftest.$ac_objext' |
18975 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22140 | { (case "(($ac_try" in |
18976 | (eval $ac_try) 2>&5 | 22141 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22142 | *) ac_try_echo=$ac_try;; | ||
22143 | esac | ||
22144 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22145 | (eval "$ac_try") 2>&5 | ||
18977 | ac_status=$? | 22146 | ac_status=$? |
18978 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22147 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18979 | (exit $ac_status); }; }; then | 22148 | (exit $ac_status); }; }; then |
@@ -18982,22 +22151,23 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18982 | #define HAVE_INTXX_T 1 | 22151 | #define HAVE_INTXX_T 1 |
18983 | _ACEOF | 22152 | _ACEOF |
18984 | 22153 | ||
18985 | echo "$as_me:$LINENO: result: yes" >&5 | 22154 | { echo "$as_me:$LINENO: result: yes" >&5 |
18986 | echo "${ECHO_T}yes" >&6 | 22155 | echo "${ECHO_T}yes" >&6; } |
18987 | 22156 | ||
18988 | else | 22157 | else |
18989 | echo "$as_me: failed program was:" >&5 | 22158 | echo "$as_me: failed program was:" >&5 |
18990 | sed 's/^/| /' conftest.$ac_ext >&5 | 22159 | sed 's/^/| /' conftest.$ac_ext >&5 |
18991 | 22160 | ||
18992 | echo "$as_me:$LINENO: result: no" >&5 | 22161 | { echo "$as_me:$LINENO: result: no" >&5 |
18993 | echo "${ECHO_T}no" >&6 | 22162 | echo "${ECHO_T}no" >&6; } |
18994 | 22163 | ||
18995 | fi | 22164 | fi |
18996 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22165 | |
22166 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
18997 | fi | 22167 | fi |
18998 | 22168 | ||
18999 | echo "$as_me:$LINENO: checking for int64_t type" >&5 | 22169 | { echo "$as_me:$LINENO: checking for int64_t type" >&5 |
19000 | echo $ECHO_N "checking for int64_t type... $ECHO_C" >&6 | 22170 | echo $ECHO_N "checking for int64_t type... $ECHO_C" >&6; } |
19001 | if test "${ac_cv_have_int64_t+set}" = set; then | 22171 | if test "${ac_cv_have_int64_t+set}" = set; then |
19002 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22172 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19003 | else | 22173 | else |
@@ -19027,23 +22197,36 @@ main () | |||
19027 | } | 22197 | } |
19028 | _ACEOF | 22198 | _ACEOF |
19029 | rm -f conftest.$ac_objext | 22199 | rm -f conftest.$ac_objext |
19030 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22200 | if { (ac_try="$ac_compile" |
19031 | (eval $ac_compile) 2>conftest.er1 | 22201 | case "(($ac_try" in |
22202 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22203 | *) ac_try_echo=$ac_try;; | ||
22204 | esac | ||
22205 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22206 | (eval "$ac_compile") 2>conftest.er1 | ||
19032 | ac_status=$? | 22207 | ac_status=$? |
19033 | grep -v '^ *+' conftest.er1 >conftest.err | 22208 | grep -v '^ *+' conftest.er1 >conftest.err |
19034 | rm -f conftest.er1 | 22209 | rm -f conftest.er1 |
19035 | cat conftest.err >&5 | 22210 | cat conftest.err >&5 |
19036 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22211 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19037 | (exit $ac_status); } && | 22212 | (exit $ac_status); } && |
19038 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22213 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19039 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22214 | { (case "(($ac_try" in |
19040 | (eval $ac_try) 2>&5 | 22215 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22216 | *) ac_try_echo=$ac_try;; | ||
22217 | esac | ||
22218 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22219 | (eval "$ac_try") 2>&5 | ||
19041 | ac_status=$? | 22220 | ac_status=$? |
19042 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19043 | (exit $ac_status); }; } && | 22222 | (exit $ac_status); }; } && |
19044 | { ac_try='test -s conftest.$ac_objext' | 22223 | { ac_try='test -s conftest.$ac_objext' |
19045 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22224 | { (case "(($ac_try" in |
19046 | (eval $ac_try) 2>&5 | 22225 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22226 | *) ac_try_echo=$ac_try;; | ||
22227 | esac | ||
22228 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22229 | (eval "$ac_try") 2>&5 | ||
19047 | ac_status=$? | 22230 | ac_status=$? |
19048 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22231 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19049 | (exit $ac_status); }; }; then | 22232 | (exit $ac_status); }; }; then |
@@ -19052,14 +22235,15 @@ else | |||
19052 | echo "$as_me: failed program was:" >&5 | 22235 | echo "$as_me: failed program was:" >&5 |
19053 | sed 's/^/| /' conftest.$ac_ext >&5 | 22236 | sed 's/^/| /' conftest.$ac_ext >&5 |
19054 | 22237 | ||
19055 | ac_cv_have_int64_t="no" | 22238 | ac_cv_have_int64_t="no" |
19056 | 22239 | ||
19057 | fi | 22240 | fi |
19058 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22241 | |
22242 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19059 | 22243 | ||
19060 | fi | 22244 | fi |
19061 | echo "$as_me:$LINENO: result: $ac_cv_have_int64_t" >&5 | 22245 | { echo "$as_me:$LINENO: result: $ac_cv_have_int64_t" >&5 |
19062 | echo "${ECHO_T}$ac_cv_have_int64_t" >&6 | 22246 | echo "${ECHO_T}$ac_cv_have_int64_t" >&6; } |
19063 | if test "x$ac_cv_have_int64_t" = "xyes" ; then | 22247 | if test "x$ac_cv_have_int64_t" = "xyes" ; then |
19064 | 22248 | ||
19065 | cat >>confdefs.h <<\_ACEOF | 22249 | cat >>confdefs.h <<\_ACEOF |
@@ -19068,8 +22252,8 @@ _ACEOF | |||
19068 | 22252 | ||
19069 | fi | 22253 | fi |
19070 | 22254 | ||
19071 | echo "$as_me:$LINENO: checking for u_intXX_t types" >&5 | 22255 | { echo "$as_me:$LINENO: checking for u_intXX_t types" >&5 |
19072 | echo $ECHO_N "checking for u_intXX_t types... $ECHO_C" >&6 | 22256 | echo $ECHO_N "checking for u_intXX_t types... $ECHO_C" >&6; } |
19073 | if test "${ac_cv_have_u_intxx_t+set}" = set; then | 22257 | if test "${ac_cv_have_u_intxx_t+set}" = set; then |
19074 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22258 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19075 | else | 22259 | else |
@@ -19090,23 +22274,36 @@ main () | |||
19090 | } | 22274 | } |
19091 | _ACEOF | 22275 | _ACEOF |
19092 | rm -f conftest.$ac_objext | 22276 | rm -f conftest.$ac_objext |
19093 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22277 | if { (ac_try="$ac_compile" |
19094 | (eval $ac_compile) 2>conftest.er1 | 22278 | case "(($ac_try" in |
22279 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22280 | *) ac_try_echo=$ac_try;; | ||
22281 | esac | ||
22282 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22283 | (eval "$ac_compile") 2>conftest.er1 | ||
19095 | ac_status=$? | 22284 | ac_status=$? |
19096 | grep -v '^ *+' conftest.er1 >conftest.err | 22285 | grep -v '^ *+' conftest.er1 >conftest.err |
19097 | rm -f conftest.er1 | 22286 | rm -f conftest.er1 |
19098 | cat conftest.err >&5 | 22287 | cat conftest.err >&5 |
19099 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22288 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19100 | (exit $ac_status); } && | 22289 | (exit $ac_status); } && |
19101 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22290 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19102 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22291 | { (case "(($ac_try" in |
19103 | (eval $ac_try) 2>&5 | 22292 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22293 | *) ac_try_echo=$ac_try;; | ||
22294 | esac | ||
22295 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22296 | (eval "$ac_try") 2>&5 | ||
19104 | ac_status=$? | 22297 | ac_status=$? |
19105 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22298 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19106 | (exit $ac_status); }; } && | 22299 | (exit $ac_status); }; } && |
19107 | { ac_try='test -s conftest.$ac_objext' | 22300 | { ac_try='test -s conftest.$ac_objext' |
19108 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22301 | { (case "(($ac_try" in |
19109 | (eval $ac_try) 2>&5 | 22302 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22303 | *) ac_try_echo=$ac_try;; | ||
22304 | esac | ||
22305 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22306 | (eval "$ac_try") 2>&5 | ||
19110 | ac_status=$? | 22307 | ac_status=$? |
19111 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22308 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19112 | (exit $ac_status); }; }; then | 22309 | (exit $ac_status); }; }; then |
@@ -19115,14 +22312,15 @@ else | |||
19115 | echo "$as_me: failed program was:" >&5 | 22312 | echo "$as_me: failed program was:" >&5 |
19116 | sed 's/^/| /' conftest.$ac_ext >&5 | 22313 | sed 's/^/| /' conftest.$ac_ext >&5 |
19117 | 22314 | ||
19118 | ac_cv_have_u_intxx_t="no" | 22315 | ac_cv_have_u_intxx_t="no" |
19119 | 22316 | ||
19120 | fi | 22317 | fi |
19121 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22318 | |
22319 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19122 | 22320 | ||
19123 | fi | 22321 | fi |
19124 | echo "$as_me:$LINENO: result: $ac_cv_have_u_intxx_t" >&5 | 22322 | { echo "$as_me:$LINENO: result: $ac_cv_have_u_intxx_t" >&5 |
19125 | echo "${ECHO_T}$ac_cv_have_u_intxx_t" >&6 | 22323 | echo "${ECHO_T}$ac_cv_have_u_intxx_t" >&6; } |
19126 | if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then | 22324 | if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then |
19127 | 22325 | ||
19128 | cat >>confdefs.h <<\_ACEOF | 22326 | cat >>confdefs.h <<\_ACEOF |
@@ -19133,8 +22331,8 @@ _ACEOF | |||
19133 | fi | 22331 | fi |
19134 | 22332 | ||
19135 | if test -z "$have_u_intxx_t" ; then | 22333 | if test -z "$have_u_intxx_t" ; then |
19136 | echo "$as_me:$LINENO: checking for u_intXX_t types in sys/socket.h" >&5 | 22334 | { echo "$as_me:$LINENO: checking for u_intXX_t types in sys/socket.h" >&5 |
19137 | echo $ECHO_N "checking for u_intXX_t types in sys/socket.h... $ECHO_C" >&6 | 22335 | echo $ECHO_N "checking for u_intXX_t types in sys/socket.h... $ECHO_C" >&6; } |
19138 | cat >conftest.$ac_ext <<_ACEOF | 22336 | cat >conftest.$ac_ext <<_ACEOF |
19139 | /* confdefs.h. */ | 22337 | /* confdefs.h. */ |
19140 | _ACEOF | 22338 | _ACEOF |
@@ -19151,23 +22349,36 @@ main () | |||
19151 | } | 22349 | } |
19152 | _ACEOF | 22350 | _ACEOF |
19153 | rm -f conftest.$ac_objext | 22351 | rm -f conftest.$ac_objext |
19154 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22352 | if { (ac_try="$ac_compile" |
19155 | (eval $ac_compile) 2>conftest.er1 | 22353 | case "(($ac_try" in |
22354 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22355 | *) ac_try_echo=$ac_try;; | ||
22356 | esac | ||
22357 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22358 | (eval "$ac_compile") 2>conftest.er1 | ||
19156 | ac_status=$? | 22359 | ac_status=$? |
19157 | grep -v '^ *+' conftest.er1 >conftest.err | 22360 | grep -v '^ *+' conftest.er1 >conftest.err |
19158 | rm -f conftest.er1 | 22361 | rm -f conftest.er1 |
19159 | cat conftest.err >&5 | 22362 | cat conftest.err >&5 |
19160 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22363 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19161 | (exit $ac_status); } && | 22364 | (exit $ac_status); } && |
19162 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22365 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19163 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22366 | { (case "(($ac_try" in |
19164 | (eval $ac_try) 2>&5 | 22367 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22368 | *) ac_try_echo=$ac_try;; | ||
22369 | esac | ||
22370 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22371 | (eval "$ac_try") 2>&5 | ||
19165 | ac_status=$? | 22372 | ac_status=$? |
19166 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22373 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19167 | (exit $ac_status); }; } && | 22374 | (exit $ac_status); }; } && |
19168 | { ac_try='test -s conftest.$ac_objext' | 22375 | { ac_try='test -s conftest.$ac_objext' |
19169 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22376 | { (case "(($ac_try" in |
19170 | (eval $ac_try) 2>&5 | 22377 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22378 | *) ac_try_echo=$ac_try;; | ||
22379 | esac | ||
22380 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22381 | (eval "$ac_try") 2>&5 | ||
19171 | ac_status=$? | 22382 | ac_status=$? |
19172 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22383 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19173 | (exit $ac_status); }; }; then | 22384 | (exit $ac_status); }; }; then |
@@ -19176,22 +22387,23 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19176 | #define HAVE_U_INTXX_T 1 | 22387 | #define HAVE_U_INTXX_T 1 |
19177 | _ACEOF | 22388 | _ACEOF |
19178 | 22389 | ||
19179 | echo "$as_me:$LINENO: result: yes" >&5 | 22390 | { echo "$as_me:$LINENO: result: yes" >&5 |
19180 | echo "${ECHO_T}yes" >&6 | 22391 | echo "${ECHO_T}yes" >&6; } |
19181 | 22392 | ||
19182 | else | 22393 | else |
19183 | echo "$as_me: failed program was:" >&5 | 22394 | echo "$as_me: failed program was:" >&5 |
19184 | sed 's/^/| /' conftest.$ac_ext >&5 | 22395 | sed 's/^/| /' conftest.$ac_ext >&5 |
19185 | 22396 | ||
19186 | echo "$as_me:$LINENO: result: no" >&5 | 22397 | { echo "$as_me:$LINENO: result: no" >&5 |
19187 | echo "${ECHO_T}no" >&6 | 22398 | echo "${ECHO_T}no" >&6; } |
19188 | 22399 | ||
19189 | fi | 22400 | fi |
19190 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22401 | |
22402 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19191 | fi | 22403 | fi |
19192 | 22404 | ||
19193 | echo "$as_me:$LINENO: checking for u_int64_t types" >&5 | 22405 | { echo "$as_me:$LINENO: checking for u_int64_t types" >&5 |
19194 | echo $ECHO_N "checking for u_int64_t types... $ECHO_C" >&6 | 22406 | echo $ECHO_N "checking for u_int64_t types... $ECHO_C" >&6; } |
19195 | if test "${ac_cv_have_u_int64_t+set}" = set; then | 22407 | if test "${ac_cv_have_u_int64_t+set}" = set; then |
19196 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22408 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19197 | else | 22409 | else |
@@ -19212,23 +22424,36 @@ main () | |||
19212 | } | 22424 | } |
19213 | _ACEOF | 22425 | _ACEOF |
19214 | rm -f conftest.$ac_objext | 22426 | rm -f conftest.$ac_objext |
19215 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22427 | if { (ac_try="$ac_compile" |
19216 | (eval $ac_compile) 2>conftest.er1 | 22428 | case "(($ac_try" in |
22429 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22430 | *) ac_try_echo=$ac_try;; | ||
22431 | esac | ||
22432 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22433 | (eval "$ac_compile") 2>conftest.er1 | ||
19217 | ac_status=$? | 22434 | ac_status=$? |
19218 | grep -v '^ *+' conftest.er1 >conftest.err | 22435 | grep -v '^ *+' conftest.er1 >conftest.err |
19219 | rm -f conftest.er1 | 22436 | rm -f conftest.er1 |
19220 | cat conftest.err >&5 | 22437 | cat conftest.err >&5 |
19221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22438 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19222 | (exit $ac_status); } && | 22439 | (exit $ac_status); } && |
19223 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22440 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19224 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22441 | { (case "(($ac_try" in |
19225 | (eval $ac_try) 2>&5 | 22442 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22443 | *) ac_try_echo=$ac_try;; | ||
22444 | esac | ||
22445 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22446 | (eval "$ac_try") 2>&5 | ||
19226 | ac_status=$? | 22447 | ac_status=$? |
19227 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22448 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19228 | (exit $ac_status); }; } && | 22449 | (exit $ac_status); }; } && |
19229 | { ac_try='test -s conftest.$ac_objext' | 22450 | { ac_try='test -s conftest.$ac_objext' |
19230 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22451 | { (case "(($ac_try" in |
19231 | (eval $ac_try) 2>&5 | 22452 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22453 | *) ac_try_echo=$ac_try;; | ||
22454 | esac | ||
22455 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22456 | (eval "$ac_try") 2>&5 | ||
19232 | ac_status=$? | 22457 | ac_status=$? |
19233 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22458 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19234 | (exit $ac_status); }; }; then | 22459 | (exit $ac_status); }; }; then |
@@ -19237,14 +22462,15 @@ else | |||
19237 | echo "$as_me: failed program was:" >&5 | 22462 | echo "$as_me: failed program was:" >&5 |
19238 | sed 's/^/| /' conftest.$ac_ext >&5 | 22463 | sed 's/^/| /' conftest.$ac_ext >&5 |
19239 | 22464 | ||
19240 | ac_cv_have_u_int64_t="no" | 22465 | ac_cv_have_u_int64_t="no" |
19241 | 22466 | ||
19242 | fi | 22467 | fi |
19243 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22468 | |
22469 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19244 | 22470 | ||
19245 | fi | 22471 | fi |
19246 | echo "$as_me:$LINENO: result: $ac_cv_have_u_int64_t" >&5 | 22472 | { echo "$as_me:$LINENO: result: $ac_cv_have_u_int64_t" >&5 |
19247 | echo "${ECHO_T}$ac_cv_have_u_int64_t" >&6 | 22473 | echo "${ECHO_T}$ac_cv_have_u_int64_t" >&6; } |
19248 | if test "x$ac_cv_have_u_int64_t" = "xyes" ; then | 22474 | if test "x$ac_cv_have_u_int64_t" = "xyes" ; then |
19249 | 22475 | ||
19250 | cat >>confdefs.h <<\_ACEOF | 22476 | cat >>confdefs.h <<\_ACEOF |
@@ -19255,8 +22481,8 @@ _ACEOF | |||
19255 | fi | 22481 | fi |
19256 | 22482 | ||
19257 | if test -z "$have_u_int64_t" ; then | 22483 | if test -z "$have_u_int64_t" ; then |
19258 | echo "$as_me:$LINENO: checking for u_int64_t type in sys/bitypes.h" >&5 | 22484 | { echo "$as_me:$LINENO: checking for u_int64_t type in sys/bitypes.h" >&5 |
19259 | echo $ECHO_N "checking for u_int64_t type in sys/bitypes.h... $ECHO_C" >&6 | 22485 | echo $ECHO_N "checking for u_int64_t type in sys/bitypes.h... $ECHO_C" >&6; } |
19260 | cat >conftest.$ac_ext <<_ACEOF | 22486 | cat >conftest.$ac_ext <<_ACEOF |
19261 | /* confdefs.h. */ | 22487 | /* confdefs.h. */ |
19262 | _ACEOF | 22488 | _ACEOF |
@@ -19273,23 +22499,36 @@ main () | |||
19273 | } | 22499 | } |
19274 | _ACEOF | 22500 | _ACEOF |
19275 | rm -f conftest.$ac_objext | 22501 | rm -f conftest.$ac_objext |
19276 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22502 | if { (ac_try="$ac_compile" |
19277 | (eval $ac_compile) 2>conftest.er1 | 22503 | case "(($ac_try" in |
22504 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22505 | *) ac_try_echo=$ac_try;; | ||
22506 | esac | ||
22507 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22508 | (eval "$ac_compile") 2>conftest.er1 | ||
19278 | ac_status=$? | 22509 | ac_status=$? |
19279 | grep -v '^ *+' conftest.er1 >conftest.err | 22510 | grep -v '^ *+' conftest.er1 >conftest.err |
19280 | rm -f conftest.er1 | 22511 | rm -f conftest.er1 |
19281 | cat conftest.err >&5 | 22512 | cat conftest.err >&5 |
19282 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22513 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19283 | (exit $ac_status); } && | 22514 | (exit $ac_status); } && |
19284 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22515 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19285 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22516 | { (case "(($ac_try" in |
19286 | (eval $ac_try) 2>&5 | 22517 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22518 | *) ac_try_echo=$ac_try;; | ||
22519 | esac | ||
22520 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22521 | (eval "$ac_try") 2>&5 | ||
19287 | ac_status=$? | 22522 | ac_status=$? |
19288 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22523 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19289 | (exit $ac_status); }; } && | 22524 | (exit $ac_status); }; } && |
19290 | { ac_try='test -s conftest.$ac_objext' | 22525 | { ac_try='test -s conftest.$ac_objext' |
19291 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22526 | { (case "(($ac_try" in |
19292 | (eval $ac_try) 2>&5 | 22527 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22528 | *) ac_try_echo=$ac_try;; | ||
22529 | esac | ||
22530 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22531 | (eval "$ac_try") 2>&5 | ||
19293 | ac_status=$? | 22532 | ac_status=$? |
19294 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22533 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19295 | (exit $ac_status); }; }; then | 22534 | (exit $ac_status); }; }; then |
@@ -19298,23 +22537,24 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19298 | #define HAVE_U_INT64_T 1 | 22537 | #define HAVE_U_INT64_T 1 |
19299 | _ACEOF | 22538 | _ACEOF |
19300 | 22539 | ||
19301 | echo "$as_me:$LINENO: result: yes" >&5 | 22540 | { echo "$as_me:$LINENO: result: yes" >&5 |
19302 | echo "${ECHO_T}yes" >&6 | 22541 | echo "${ECHO_T}yes" >&6; } |
19303 | 22542 | ||
19304 | else | 22543 | else |
19305 | echo "$as_me: failed program was:" >&5 | 22544 | echo "$as_me: failed program was:" >&5 |
19306 | sed 's/^/| /' conftest.$ac_ext >&5 | 22545 | sed 's/^/| /' conftest.$ac_ext >&5 |
19307 | 22546 | ||
19308 | echo "$as_me:$LINENO: result: no" >&5 | 22547 | { echo "$as_me:$LINENO: result: no" >&5 |
19309 | echo "${ECHO_T}no" >&6 | 22548 | echo "${ECHO_T}no" >&6; } |
19310 | 22549 | ||
19311 | fi | 22550 | fi |
19312 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22551 | |
22552 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19313 | fi | 22553 | fi |
19314 | 22554 | ||
19315 | if test -z "$have_u_intxx_t" ; then | 22555 | if test -z "$have_u_intxx_t" ; then |
19316 | echo "$as_me:$LINENO: checking for uintXX_t types" >&5 | 22556 | { echo "$as_me:$LINENO: checking for uintXX_t types" >&5 |
19317 | echo $ECHO_N "checking for uintXX_t types... $ECHO_C" >&6 | 22557 | echo $ECHO_N "checking for uintXX_t types... $ECHO_C" >&6; } |
19318 | if test "${ac_cv_have_uintxx_t+set}" = set; then | 22558 | if test "${ac_cv_have_uintxx_t+set}" = set; then |
19319 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22559 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19320 | else | 22560 | else |
@@ -19337,23 +22577,36 @@ main () | |||
19337 | } | 22577 | } |
19338 | _ACEOF | 22578 | _ACEOF |
19339 | rm -f conftest.$ac_objext | 22579 | rm -f conftest.$ac_objext |
19340 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22580 | if { (ac_try="$ac_compile" |
19341 | (eval $ac_compile) 2>conftest.er1 | 22581 | case "(($ac_try" in |
22582 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22583 | *) ac_try_echo=$ac_try;; | ||
22584 | esac | ||
22585 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22586 | (eval "$ac_compile") 2>conftest.er1 | ||
19342 | ac_status=$? | 22587 | ac_status=$? |
19343 | grep -v '^ *+' conftest.er1 >conftest.err | 22588 | grep -v '^ *+' conftest.er1 >conftest.err |
19344 | rm -f conftest.er1 | 22589 | rm -f conftest.er1 |
19345 | cat conftest.err >&5 | 22590 | cat conftest.err >&5 |
19346 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22591 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19347 | (exit $ac_status); } && | 22592 | (exit $ac_status); } && |
19348 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22593 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19349 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22594 | { (case "(($ac_try" in |
19350 | (eval $ac_try) 2>&5 | 22595 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22596 | *) ac_try_echo=$ac_try;; | ||
22597 | esac | ||
22598 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22599 | (eval "$ac_try") 2>&5 | ||
19351 | ac_status=$? | 22600 | ac_status=$? |
19352 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22601 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19353 | (exit $ac_status); }; } && | 22602 | (exit $ac_status); }; } && |
19354 | { ac_try='test -s conftest.$ac_objext' | 22603 | { ac_try='test -s conftest.$ac_objext' |
19355 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22604 | { (case "(($ac_try" in |
19356 | (eval $ac_try) 2>&5 | 22605 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22606 | *) ac_try_echo=$ac_try;; | ||
22607 | esac | ||
22608 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22609 | (eval "$ac_try") 2>&5 | ||
19357 | ac_status=$? | 22610 | ac_status=$? |
19358 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22611 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19359 | (exit $ac_status); }; }; then | 22612 | (exit $ac_status); }; }; then |
@@ -19362,14 +22615,15 @@ else | |||
19362 | echo "$as_me: failed program was:" >&5 | 22615 | echo "$as_me: failed program was:" >&5 |
19363 | sed 's/^/| /' conftest.$ac_ext >&5 | 22616 | sed 's/^/| /' conftest.$ac_ext >&5 |
19364 | 22617 | ||
19365 | ac_cv_have_uintxx_t="no" | 22618 | ac_cv_have_uintxx_t="no" |
19366 | 22619 | ||
19367 | fi | 22620 | fi |
19368 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22621 | |
22622 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19369 | 22623 | ||
19370 | fi | 22624 | fi |
19371 | echo "$as_me:$LINENO: result: $ac_cv_have_uintxx_t" >&5 | 22625 | { echo "$as_me:$LINENO: result: $ac_cv_have_uintxx_t" >&5 |
19372 | echo "${ECHO_T}$ac_cv_have_uintxx_t" >&6 | 22626 | echo "${ECHO_T}$ac_cv_have_uintxx_t" >&6; } |
19373 | if test "x$ac_cv_have_uintxx_t" = "xyes" ; then | 22627 | if test "x$ac_cv_have_uintxx_t" = "xyes" ; then |
19374 | 22628 | ||
19375 | cat >>confdefs.h <<\_ACEOF | 22629 | cat >>confdefs.h <<\_ACEOF |
@@ -19380,8 +22634,8 @@ _ACEOF | |||
19380 | fi | 22634 | fi |
19381 | 22635 | ||
19382 | if test -z "$have_uintxx_t" ; then | 22636 | if test -z "$have_uintxx_t" ; then |
19383 | echo "$as_me:$LINENO: checking for uintXX_t types in stdint.h" >&5 | 22637 | { echo "$as_me:$LINENO: checking for uintXX_t types in stdint.h" >&5 |
19384 | echo $ECHO_N "checking for uintXX_t types in stdint.h... $ECHO_C" >&6 | 22638 | echo $ECHO_N "checking for uintXX_t types in stdint.h... $ECHO_C" >&6; } |
19385 | cat >conftest.$ac_ext <<_ACEOF | 22639 | cat >conftest.$ac_ext <<_ACEOF |
19386 | /* confdefs.h. */ | 22640 | /* confdefs.h. */ |
19387 | _ACEOF | 22641 | _ACEOF |
@@ -19398,23 +22652,36 @@ main () | |||
19398 | } | 22652 | } |
19399 | _ACEOF | 22653 | _ACEOF |
19400 | rm -f conftest.$ac_objext | 22654 | rm -f conftest.$ac_objext |
19401 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22655 | if { (ac_try="$ac_compile" |
19402 | (eval $ac_compile) 2>conftest.er1 | 22656 | case "(($ac_try" in |
22657 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22658 | *) ac_try_echo=$ac_try;; | ||
22659 | esac | ||
22660 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22661 | (eval "$ac_compile") 2>conftest.er1 | ||
19403 | ac_status=$? | 22662 | ac_status=$? |
19404 | grep -v '^ *+' conftest.er1 >conftest.err | 22663 | grep -v '^ *+' conftest.er1 >conftest.err |
19405 | rm -f conftest.er1 | 22664 | rm -f conftest.er1 |
19406 | cat conftest.err >&5 | 22665 | cat conftest.err >&5 |
19407 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22666 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19408 | (exit $ac_status); } && | 22667 | (exit $ac_status); } && |
19409 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22668 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19410 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22669 | { (case "(($ac_try" in |
19411 | (eval $ac_try) 2>&5 | 22670 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22671 | *) ac_try_echo=$ac_try;; | ||
22672 | esac | ||
22673 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22674 | (eval "$ac_try") 2>&5 | ||
19412 | ac_status=$? | 22675 | ac_status=$? |
19413 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22676 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19414 | (exit $ac_status); }; } && | 22677 | (exit $ac_status); }; } && |
19415 | { ac_try='test -s conftest.$ac_objext' | 22678 | { ac_try='test -s conftest.$ac_objext' |
19416 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22679 | { (case "(($ac_try" in |
19417 | (eval $ac_try) 2>&5 | 22680 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22681 | *) ac_try_echo=$ac_try;; | ||
22682 | esac | ||
22683 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22684 | (eval "$ac_try") 2>&5 | ||
19418 | ac_status=$? | 22685 | ac_status=$? |
19419 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22686 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19420 | (exit $ac_status); }; }; then | 22687 | (exit $ac_status); }; }; then |
@@ -19423,25 +22690,26 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19423 | #define HAVE_UINTXX_T 1 | 22690 | #define HAVE_UINTXX_T 1 |
19424 | _ACEOF | 22691 | _ACEOF |
19425 | 22692 | ||
19426 | echo "$as_me:$LINENO: result: yes" >&5 | 22693 | { echo "$as_me:$LINENO: result: yes" >&5 |
19427 | echo "${ECHO_T}yes" >&6 | 22694 | echo "${ECHO_T}yes" >&6; } |
19428 | 22695 | ||
19429 | else | 22696 | else |
19430 | echo "$as_me: failed program was:" >&5 | 22697 | echo "$as_me: failed program was:" >&5 |
19431 | sed 's/^/| /' conftest.$ac_ext >&5 | 22698 | sed 's/^/| /' conftest.$ac_ext >&5 |
19432 | 22699 | ||
19433 | echo "$as_me:$LINENO: result: no" >&5 | 22700 | { echo "$as_me:$LINENO: result: no" >&5 |
19434 | echo "${ECHO_T}no" >&6 | 22701 | echo "${ECHO_T}no" >&6; } |
19435 | 22702 | ||
19436 | fi | 22703 | fi |
19437 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22704 | |
22705 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19438 | fi | 22706 | fi |
19439 | 22707 | ||
19440 | if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \ | 22708 | if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \ |
19441 | test "x$ac_cv_header_sys_bitypes_h" = "xyes") | 22709 | test "x$ac_cv_header_sys_bitypes_h" = "xyes") |
19442 | then | 22710 | then |
19443 | echo "$as_me:$LINENO: checking for intXX_t and u_intXX_t types in sys/bitypes.h" >&5 | 22711 | { echo "$as_me:$LINENO: checking for intXX_t and u_intXX_t types in sys/bitypes.h" >&5 |
19444 | echo $ECHO_N "checking for intXX_t and u_intXX_t types in sys/bitypes.h... $ECHO_C" >&6 | 22712 | echo $ECHO_N "checking for intXX_t and u_intXX_t types in sys/bitypes.h... $ECHO_C" >&6; } |
19445 | cat >conftest.$ac_ext <<_ACEOF | 22713 | cat >conftest.$ac_ext <<_ACEOF |
19446 | /* confdefs.h. */ | 22714 | /* confdefs.h. */ |
19447 | _ACEOF | 22715 | _ACEOF |
@@ -19464,23 +22732,36 @@ main () | |||
19464 | } | 22732 | } |
19465 | _ACEOF | 22733 | _ACEOF |
19466 | rm -f conftest.$ac_objext | 22734 | rm -f conftest.$ac_objext |
19467 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22735 | if { (ac_try="$ac_compile" |
19468 | (eval $ac_compile) 2>conftest.er1 | 22736 | case "(($ac_try" in |
22737 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22738 | *) ac_try_echo=$ac_try;; | ||
22739 | esac | ||
22740 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22741 | (eval "$ac_compile") 2>conftest.er1 | ||
19469 | ac_status=$? | 22742 | ac_status=$? |
19470 | grep -v '^ *+' conftest.er1 >conftest.err | 22743 | grep -v '^ *+' conftest.er1 >conftest.err |
19471 | rm -f conftest.er1 | 22744 | rm -f conftest.er1 |
19472 | cat conftest.err >&5 | 22745 | cat conftest.err >&5 |
19473 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22746 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19474 | (exit $ac_status); } && | 22747 | (exit $ac_status); } && |
19475 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22748 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19476 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22749 | { (case "(($ac_try" in |
19477 | (eval $ac_try) 2>&5 | 22750 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22751 | *) ac_try_echo=$ac_try;; | ||
22752 | esac | ||
22753 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22754 | (eval "$ac_try") 2>&5 | ||
19478 | ac_status=$? | 22755 | ac_status=$? |
19479 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22756 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19480 | (exit $ac_status); }; } && | 22757 | (exit $ac_status); }; } && |
19481 | { ac_try='test -s conftest.$ac_objext' | 22758 | { ac_try='test -s conftest.$ac_objext' |
19482 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22759 | { (case "(($ac_try" in |
19483 | (eval $ac_try) 2>&5 | 22760 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22761 | *) ac_try_echo=$ac_try;; | ||
22762 | esac | ||
22763 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22764 | (eval "$ac_try") 2>&5 | ||
19484 | ac_status=$? | 22765 | ac_status=$? |
19485 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22766 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19486 | (exit $ac_status); }; }; then | 22767 | (exit $ac_status); }; }; then |
@@ -19493,23 +22774,24 @@ _ACEOF | |||
19493 | #define HAVE_INTXX_T 1 | 22774 | #define HAVE_INTXX_T 1 |
19494 | _ACEOF | 22775 | _ACEOF |
19495 | 22776 | ||
19496 | echo "$as_me:$LINENO: result: yes" >&5 | 22777 | { echo "$as_me:$LINENO: result: yes" >&5 |
19497 | echo "${ECHO_T}yes" >&6 | 22778 | echo "${ECHO_T}yes" >&6; } |
19498 | 22779 | ||
19499 | else | 22780 | else |
19500 | echo "$as_me: failed program was:" >&5 | 22781 | echo "$as_me: failed program was:" >&5 |
19501 | sed 's/^/| /' conftest.$ac_ext >&5 | 22782 | sed 's/^/| /' conftest.$ac_ext >&5 |
19502 | 22783 | ||
19503 | echo "$as_me:$LINENO: result: no" >&5 | 22784 | { echo "$as_me:$LINENO: result: no" >&5 |
19504 | echo "${ECHO_T}no" >&6 | 22785 | echo "${ECHO_T}no" >&6; } |
19505 | 22786 | ||
19506 | fi | 22787 | fi |
19507 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22788 | |
22789 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19508 | fi | 22790 | fi |
19509 | 22791 | ||
19510 | 22792 | ||
19511 | echo "$as_me:$LINENO: checking for u_char" >&5 | 22793 | { echo "$as_me:$LINENO: checking for u_char" >&5 |
19512 | echo $ECHO_N "checking for u_char... $ECHO_C" >&6 | 22794 | echo $ECHO_N "checking for u_char... $ECHO_C" >&6; } |
19513 | if test "${ac_cv_have_u_char+set}" = set; then | 22795 | if test "${ac_cv_have_u_char+set}" = set; then |
19514 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22796 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19515 | else | 22797 | else |
@@ -19532,23 +22814,36 @@ main () | |||
19532 | } | 22814 | } |
19533 | _ACEOF | 22815 | _ACEOF |
19534 | rm -f conftest.$ac_objext | 22816 | rm -f conftest.$ac_objext |
19535 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22817 | if { (ac_try="$ac_compile" |
19536 | (eval $ac_compile) 2>conftest.er1 | 22818 | case "(($ac_try" in |
22819 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22820 | *) ac_try_echo=$ac_try;; | ||
22821 | esac | ||
22822 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22823 | (eval "$ac_compile") 2>conftest.er1 | ||
19537 | ac_status=$? | 22824 | ac_status=$? |
19538 | grep -v '^ *+' conftest.er1 >conftest.err | 22825 | grep -v '^ *+' conftest.er1 >conftest.err |
19539 | rm -f conftest.er1 | 22826 | rm -f conftest.er1 |
19540 | cat conftest.err >&5 | 22827 | cat conftest.err >&5 |
19541 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22828 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19542 | (exit $ac_status); } && | 22829 | (exit $ac_status); } && |
19543 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22830 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19544 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22831 | { (case "(($ac_try" in |
19545 | (eval $ac_try) 2>&5 | 22832 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22833 | *) ac_try_echo=$ac_try;; | ||
22834 | esac | ||
22835 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22836 | (eval "$ac_try") 2>&5 | ||
19546 | ac_status=$? | 22837 | ac_status=$? |
19547 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22838 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19548 | (exit $ac_status); }; } && | 22839 | (exit $ac_status); }; } && |
19549 | { ac_try='test -s conftest.$ac_objext' | 22840 | { ac_try='test -s conftest.$ac_objext' |
19550 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22841 | { (case "(($ac_try" in |
19551 | (eval $ac_try) 2>&5 | 22842 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22843 | *) ac_try_echo=$ac_try;; | ||
22844 | esac | ||
22845 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22846 | (eval "$ac_try") 2>&5 | ||
19552 | ac_status=$? | 22847 | ac_status=$? |
19553 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22848 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19554 | (exit $ac_status); }; }; then | 22849 | (exit $ac_status); }; }; then |
@@ -19557,14 +22852,15 @@ else | |||
19557 | echo "$as_me: failed program was:" >&5 | 22852 | echo "$as_me: failed program was:" >&5 |
19558 | sed 's/^/| /' conftest.$ac_ext >&5 | 22853 | sed 's/^/| /' conftest.$ac_ext >&5 |
19559 | 22854 | ||
19560 | ac_cv_have_u_char="no" | 22855 | ac_cv_have_u_char="no" |
19561 | 22856 | ||
19562 | fi | 22857 | fi |
19563 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22858 | |
22859 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19564 | 22860 | ||
19565 | fi | 22861 | fi |
19566 | echo "$as_me:$LINENO: result: $ac_cv_have_u_char" >&5 | 22862 | { echo "$as_me:$LINENO: result: $ac_cv_have_u_char" >&5 |
19567 | echo "${ECHO_T}$ac_cv_have_u_char" >&6 | 22863 | echo "${ECHO_T}$ac_cv_have_u_char" >&6; } |
19568 | if test "x$ac_cv_have_u_char" = "xyes" ; then | 22864 | if test "x$ac_cv_have_u_char" = "xyes" ; then |
19569 | 22865 | ||
19570 | cat >>confdefs.h <<\_ACEOF | 22866 | cat >>confdefs.h <<\_ACEOF |
@@ -19574,8 +22870,8 @@ _ACEOF | |||
19574 | fi | 22870 | fi |
19575 | 22871 | ||
19576 | 22872 | ||
19577 | echo "$as_me:$LINENO: checking for socklen_t" >&5 | 22873 | { echo "$as_me:$LINENO: checking for socklen_t" >&5 |
19578 | echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6 | 22874 | echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6; } |
19579 | if test "${ac_cv_type_socklen_t+set}" = set; then | 22875 | if test "${ac_cv_type_socklen_t+set}" = set; then |
19580 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22876 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19581 | else | 22877 | else |
@@ -19588,35 +22884,49 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
19588 | #include <sys/types.h> | 22884 | #include <sys/types.h> |
19589 | #include <sys/socket.h> | 22885 | #include <sys/socket.h> |
19590 | 22886 | ||
22887 | typedef socklen_t ac__type_new_; | ||
19591 | int | 22888 | int |
19592 | main () | 22889 | main () |
19593 | { | 22890 | { |
19594 | if ((socklen_t *) 0) | 22891 | if ((ac__type_new_ *) 0) |
19595 | return 0; | 22892 | return 0; |
19596 | if (sizeof (socklen_t)) | 22893 | if (sizeof (ac__type_new_)) |
19597 | return 0; | 22894 | return 0; |
19598 | ; | 22895 | ; |
19599 | return 0; | 22896 | return 0; |
19600 | } | 22897 | } |
19601 | _ACEOF | 22898 | _ACEOF |
19602 | rm -f conftest.$ac_objext | 22899 | rm -f conftest.$ac_objext |
19603 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22900 | if { (ac_try="$ac_compile" |
19604 | (eval $ac_compile) 2>conftest.er1 | 22901 | case "(($ac_try" in |
22902 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22903 | *) ac_try_echo=$ac_try;; | ||
22904 | esac | ||
22905 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22906 | (eval "$ac_compile") 2>conftest.er1 | ||
19605 | ac_status=$? | 22907 | ac_status=$? |
19606 | grep -v '^ *+' conftest.er1 >conftest.err | 22908 | grep -v '^ *+' conftest.er1 >conftest.err |
19607 | rm -f conftest.er1 | 22909 | rm -f conftest.er1 |
19608 | cat conftest.err >&5 | 22910 | cat conftest.err >&5 |
19609 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22911 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19610 | (exit $ac_status); } && | 22912 | (exit $ac_status); } && |
19611 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22913 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19612 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22914 | { (case "(($ac_try" in |
19613 | (eval $ac_try) 2>&5 | 22915 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22916 | *) ac_try_echo=$ac_try;; | ||
22917 | esac | ||
22918 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22919 | (eval "$ac_try") 2>&5 | ||
19614 | ac_status=$? | 22920 | ac_status=$? |
19615 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22921 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19616 | (exit $ac_status); }; } && | 22922 | (exit $ac_status); }; } && |
19617 | { ac_try='test -s conftest.$ac_objext' | 22923 | { ac_try='test -s conftest.$ac_objext' |
19618 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22924 | { (case "(($ac_try" in |
19619 | (eval $ac_try) 2>&5 | 22925 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
22926 | *) ac_try_echo=$ac_try;; | ||
22927 | esac | ||
22928 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22929 | (eval "$ac_try") 2>&5 | ||
19620 | ac_status=$? | 22930 | ac_status=$? |
19621 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22931 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19622 | (exit $ac_status); }; }; then | 22932 | (exit $ac_status); }; }; then |
@@ -19625,18 +22935,19 @@ else | |||
19625 | echo "$as_me: failed program was:" >&5 | 22935 | echo "$as_me: failed program was:" >&5 |
19626 | sed 's/^/| /' conftest.$ac_ext >&5 | 22936 | sed 's/^/| /' conftest.$ac_ext >&5 |
19627 | 22937 | ||
19628 | ac_cv_type_socklen_t=no | 22938 | ac_cv_type_socklen_t=no |
19629 | fi | 22939 | fi |
19630 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 22940 | |
22941 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19631 | fi | 22942 | fi |
19632 | echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5 | 22943 | { echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5 |
19633 | echo "${ECHO_T}$ac_cv_type_socklen_t" >&6 | 22944 | echo "${ECHO_T}$ac_cv_type_socklen_t" >&6; } |
19634 | if test $ac_cv_type_socklen_t = yes; then | 22945 | if test $ac_cv_type_socklen_t = yes; then |
19635 | : | 22946 | : |
19636 | else | 22947 | else |
19637 | 22948 | ||
19638 | echo "$as_me:$LINENO: checking for socklen_t equivalent" >&5 | 22949 | { echo "$as_me:$LINENO: checking for socklen_t equivalent" >&5 |
19639 | echo $ECHO_N "checking for socklen_t equivalent... $ECHO_C" >&6 | 22950 | echo $ECHO_N "checking for socklen_t equivalent... $ECHO_C" >&6; } |
19640 | if test "${curl_cv_socklen_t_equiv+set}" = set; then | 22951 | if test "${curl_cv_socklen_t_equiv+set}" = set; then |
19641 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 22952 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19642 | else | 22953 | else |
@@ -19670,23 +22981,36 @@ main () | |||
19670 | } | 22981 | } |
19671 | _ACEOF | 22982 | _ACEOF |
19672 | rm -f conftest.$ac_objext | 22983 | rm -f conftest.$ac_objext |
19673 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 22984 | if { (ac_try="$ac_compile" |
19674 | (eval $ac_compile) 2>conftest.er1 | 22985 | case "(($ac_try" in |
22986 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
22987 | *) ac_try_echo=$ac_try;; | ||
22988 | esac | ||
22989 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
22990 | (eval "$ac_compile") 2>conftest.er1 | ||
19675 | ac_status=$? | 22991 | ac_status=$? |
19676 | grep -v '^ *+' conftest.er1 >conftest.err | 22992 | grep -v '^ *+' conftest.er1 >conftest.err |
19677 | rm -f conftest.er1 | 22993 | rm -f conftest.er1 |
19678 | cat conftest.err >&5 | 22994 | cat conftest.err >&5 |
19679 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22995 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19680 | (exit $ac_status); } && | 22996 | (exit $ac_status); } && |
19681 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 22997 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19682 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22998 | { (case "(($ac_try" in |
19683 | (eval $ac_try) 2>&5 | 22999 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23000 | *) ac_try_echo=$ac_try;; | ||
23001 | esac | ||
23002 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23003 | (eval "$ac_try") 2>&5 | ||
19684 | ac_status=$? | 23004 | ac_status=$? |
19685 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23005 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19686 | (exit $ac_status); }; } && | 23006 | (exit $ac_status); }; } && |
19687 | { ac_try='test -s conftest.$ac_objext' | 23007 | { ac_try='test -s conftest.$ac_objext' |
19688 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23008 | { (case "(($ac_try" in |
19689 | (eval $ac_try) 2>&5 | 23009 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23010 | *) ac_try_echo=$ac_try;; | ||
23011 | esac | ||
23012 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23013 | (eval "$ac_try") 2>&5 | ||
19690 | ac_status=$? | 23014 | ac_status=$? |
19691 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23015 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19692 | (exit $ac_status); }; }; then | 23016 | (exit $ac_status); }; }; then |
@@ -19698,8 +23022,10 @@ else | |||
19698 | echo "$as_me: failed program was:" >&5 | 23022 | echo "$as_me: failed program was:" >&5 |
19699 | sed 's/^/| /' conftest.$ac_ext >&5 | 23023 | sed 's/^/| /' conftest.$ac_ext >&5 |
19700 | 23024 | ||
23025 | |||
19701 | fi | 23026 | fi |
19702 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23027 | |
23028 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19703 | done | 23029 | done |
19704 | done | 23030 | done |
19705 | 23031 | ||
@@ -19711,8 +23037,8 @@ echo "$as_me: error: Cannot find a type to use in place of socklen_t" >&2;} | |||
19711 | 23037 | ||
19712 | fi | 23038 | fi |
19713 | 23039 | ||
19714 | echo "$as_me:$LINENO: result: $curl_cv_socklen_t_equiv" >&5 | 23040 | { echo "$as_me:$LINENO: result: $curl_cv_socklen_t_equiv" >&5 |
19715 | echo "${ECHO_T}$curl_cv_socklen_t_equiv" >&6 | 23041 | echo "${ECHO_T}$curl_cv_socklen_t_equiv" >&6; } |
19716 | 23042 | ||
19717 | cat >>confdefs.h <<_ACEOF | 23043 | cat >>confdefs.h <<_ACEOF |
19718 | #define socklen_t $curl_cv_socklen_t_equiv | 23044 | #define socklen_t $curl_cv_socklen_t_equiv |
@@ -19722,8 +23048,8 @@ fi | |||
19722 | 23048 | ||
19723 | 23049 | ||
19724 | 23050 | ||
19725 | echo "$as_me:$LINENO: checking for sig_atomic_t" >&5 | 23051 | { echo "$as_me:$LINENO: checking for sig_atomic_t" >&5 |
19726 | echo $ECHO_N "checking for sig_atomic_t... $ECHO_C" >&6 | 23052 | echo $ECHO_N "checking for sig_atomic_t... $ECHO_C" >&6; } |
19727 | if test "${ac_cv_type_sig_atomic_t+set}" = set; then | 23053 | if test "${ac_cv_type_sig_atomic_t+set}" = set; then |
19728 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23054 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19729 | else | 23055 | else |
@@ -19735,35 +23061,49 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
19735 | /* end confdefs.h. */ | 23061 | /* end confdefs.h. */ |
19736 | #include <signal.h> | 23062 | #include <signal.h> |
19737 | 23063 | ||
23064 | typedef sig_atomic_t ac__type_new_; | ||
19738 | int | 23065 | int |
19739 | main () | 23066 | main () |
19740 | { | 23067 | { |
19741 | if ((sig_atomic_t *) 0) | 23068 | if ((ac__type_new_ *) 0) |
19742 | return 0; | 23069 | return 0; |
19743 | if (sizeof (sig_atomic_t)) | 23070 | if (sizeof (ac__type_new_)) |
19744 | return 0; | 23071 | return 0; |
19745 | ; | 23072 | ; |
19746 | return 0; | 23073 | return 0; |
19747 | } | 23074 | } |
19748 | _ACEOF | 23075 | _ACEOF |
19749 | rm -f conftest.$ac_objext | 23076 | rm -f conftest.$ac_objext |
19750 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23077 | if { (ac_try="$ac_compile" |
19751 | (eval $ac_compile) 2>conftest.er1 | 23078 | case "(($ac_try" in |
23079 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23080 | *) ac_try_echo=$ac_try;; | ||
23081 | esac | ||
23082 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23083 | (eval "$ac_compile") 2>conftest.er1 | ||
19752 | ac_status=$? | 23084 | ac_status=$? |
19753 | grep -v '^ *+' conftest.er1 >conftest.err | 23085 | grep -v '^ *+' conftest.er1 >conftest.err |
19754 | rm -f conftest.er1 | 23086 | rm -f conftest.er1 |
19755 | cat conftest.err >&5 | 23087 | cat conftest.err >&5 |
19756 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23088 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19757 | (exit $ac_status); } && | 23089 | (exit $ac_status); } && |
19758 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23090 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19759 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23091 | { (case "(($ac_try" in |
19760 | (eval $ac_try) 2>&5 | 23092 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23093 | *) ac_try_echo=$ac_try;; | ||
23094 | esac | ||
23095 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23096 | (eval "$ac_try") 2>&5 | ||
19761 | ac_status=$? | 23097 | ac_status=$? |
19762 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23098 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19763 | (exit $ac_status); }; } && | 23099 | (exit $ac_status); }; } && |
19764 | { ac_try='test -s conftest.$ac_objext' | 23100 | { ac_try='test -s conftest.$ac_objext' |
19765 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23101 | { (case "(($ac_try" in |
19766 | (eval $ac_try) 2>&5 | 23102 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23103 | *) ac_try_echo=$ac_try;; | ||
23104 | esac | ||
23105 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23106 | (eval "$ac_try") 2>&5 | ||
19767 | ac_status=$? | 23107 | ac_status=$? |
19768 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23108 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19769 | (exit $ac_status); }; }; then | 23109 | (exit $ac_status); }; }; then |
@@ -19772,12 +23112,13 @@ else | |||
19772 | echo "$as_me: failed program was:" >&5 | 23112 | echo "$as_me: failed program was:" >&5 |
19773 | sed 's/^/| /' conftest.$ac_ext >&5 | 23113 | sed 's/^/| /' conftest.$ac_ext >&5 |
19774 | 23114 | ||
19775 | ac_cv_type_sig_atomic_t=no | 23115 | ac_cv_type_sig_atomic_t=no |
19776 | fi | 23116 | fi |
19777 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23117 | |
23118 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19778 | fi | 23119 | fi |
19779 | echo "$as_me:$LINENO: result: $ac_cv_type_sig_atomic_t" >&5 | 23120 | { echo "$as_me:$LINENO: result: $ac_cv_type_sig_atomic_t" >&5 |
19780 | echo "${ECHO_T}$ac_cv_type_sig_atomic_t" >&6 | 23121 | echo "${ECHO_T}$ac_cv_type_sig_atomic_t" >&6; } |
19781 | if test $ac_cv_type_sig_atomic_t = yes; then | 23122 | if test $ac_cv_type_sig_atomic_t = yes; then |
19782 | 23123 | ||
19783 | cat >>confdefs.h <<_ACEOF | 23124 | cat >>confdefs.h <<_ACEOF |
@@ -19788,8 +23129,8 @@ _ACEOF | |||
19788 | fi | 23129 | fi |
19789 | 23130 | ||
19790 | 23131 | ||
19791 | echo "$as_me:$LINENO: checking for in_addr_t" >&5 | 23132 | { echo "$as_me:$LINENO: checking for in_addr_t" >&5 |
19792 | echo $ECHO_N "checking for in_addr_t... $ECHO_C" >&6 | 23133 | echo $ECHO_N "checking for in_addr_t... $ECHO_C" >&6; } |
19793 | if test "${ac_cv_type_in_addr_t+set}" = set; then | 23134 | if test "${ac_cv_type_in_addr_t+set}" = set; then |
19794 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23135 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19795 | else | 23136 | else |
@@ -19802,35 +23143,49 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
19802 | #include <sys/types.h> | 23143 | #include <sys/types.h> |
19803 | #include <netinet/in.h> | 23144 | #include <netinet/in.h> |
19804 | 23145 | ||
23146 | typedef in_addr_t ac__type_new_; | ||
19805 | int | 23147 | int |
19806 | main () | 23148 | main () |
19807 | { | 23149 | { |
19808 | if ((in_addr_t *) 0) | 23150 | if ((ac__type_new_ *) 0) |
19809 | return 0; | 23151 | return 0; |
19810 | if (sizeof (in_addr_t)) | 23152 | if (sizeof (ac__type_new_)) |
19811 | return 0; | 23153 | return 0; |
19812 | ; | 23154 | ; |
19813 | return 0; | 23155 | return 0; |
19814 | } | 23156 | } |
19815 | _ACEOF | 23157 | _ACEOF |
19816 | rm -f conftest.$ac_objext | 23158 | rm -f conftest.$ac_objext |
19817 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23159 | if { (ac_try="$ac_compile" |
19818 | (eval $ac_compile) 2>conftest.er1 | 23160 | case "(($ac_try" in |
23161 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23162 | *) ac_try_echo=$ac_try;; | ||
23163 | esac | ||
23164 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23165 | (eval "$ac_compile") 2>conftest.er1 | ||
19819 | ac_status=$? | 23166 | ac_status=$? |
19820 | grep -v '^ *+' conftest.er1 >conftest.err | 23167 | grep -v '^ *+' conftest.er1 >conftest.err |
19821 | rm -f conftest.er1 | 23168 | rm -f conftest.er1 |
19822 | cat conftest.err >&5 | 23169 | cat conftest.err >&5 |
19823 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23170 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19824 | (exit $ac_status); } && | 23171 | (exit $ac_status); } && |
19825 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23172 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19826 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23173 | { (case "(($ac_try" in |
19827 | (eval $ac_try) 2>&5 | 23174 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23175 | *) ac_try_echo=$ac_try;; | ||
23176 | esac | ||
23177 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23178 | (eval "$ac_try") 2>&5 | ||
19828 | ac_status=$? | 23179 | ac_status=$? |
19829 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23180 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19830 | (exit $ac_status); }; } && | 23181 | (exit $ac_status); }; } && |
19831 | { ac_try='test -s conftest.$ac_objext' | 23182 | { ac_try='test -s conftest.$ac_objext' |
19832 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23183 | { (case "(($ac_try" in |
19833 | (eval $ac_try) 2>&5 | 23184 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23185 | *) ac_try_echo=$ac_try;; | ||
23186 | esac | ||
23187 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23188 | (eval "$ac_try") 2>&5 | ||
19834 | ac_status=$? | 23189 | ac_status=$? |
19835 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23190 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19836 | (exit $ac_status); }; }; then | 23191 | (exit $ac_status); }; }; then |
@@ -19839,12 +23194,13 @@ else | |||
19839 | echo "$as_me: failed program was:" >&5 | 23194 | echo "$as_me: failed program was:" >&5 |
19840 | sed 's/^/| /' conftest.$ac_ext >&5 | 23195 | sed 's/^/| /' conftest.$ac_ext >&5 |
19841 | 23196 | ||
19842 | ac_cv_type_in_addr_t=no | 23197 | ac_cv_type_in_addr_t=no |
19843 | fi | 23198 | fi |
19844 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23199 | |
23200 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19845 | fi | 23201 | fi |
19846 | echo "$as_me:$LINENO: result: $ac_cv_type_in_addr_t" >&5 | 23202 | { echo "$as_me:$LINENO: result: $ac_cv_type_in_addr_t" >&5 |
19847 | echo "${ECHO_T}$ac_cv_type_in_addr_t" >&6 | 23203 | echo "${ECHO_T}$ac_cv_type_in_addr_t" >&6; } |
19848 | if test $ac_cv_type_in_addr_t = yes; then | 23204 | if test $ac_cv_type_in_addr_t = yes; then |
19849 | 23205 | ||
19850 | cat >>confdefs.h <<_ACEOF | 23206 | cat >>confdefs.h <<_ACEOF |
@@ -19855,8 +23211,8 @@ _ACEOF | |||
19855 | fi | 23211 | fi |
19856 | 23212 | ||
19857 | 23213 | ||
19858 | echo "$as_me:$LINENO: checking for size_t" >&5 | 23214 | { echo "$as_me:$LINENO: checking for size_t" >&5 |
19859 | echo $ECHO_N "checking for size_t... $ECHO_C" >&6 | 23215 | echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } |
19860 | if test "${ac_cv_have_size_t+set}" = set; then | 23216 | if test "${ac_cv_have_size_t+set}" = set; then |
19861 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23217 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19862 | else | 23218 | else |
@@ -19879,23 +23235,36 @@ main () | |||
19879 | } | 23235 | } |
19880 | _ACEOF | 23236 | _ACEOF |
19881 | rm -f conftest.$ac_objext | 23237 | rm -f conftest.$ac_objext |
19882 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23238 | if { (ac_try="$ac_compile" |
19883 | (eval $ac_compile) 2>conftest.er1 | 23239 | case "(($ac_try" in |
23240 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23241 | *) ac_try_echo=$ac_try;; | ||
23242 | esac | ||
23243 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23244 | (eval "$ac_compile") 2>conftest.er1 | ||
19884 | ac_status=$? | 23245 | ac_status=$? |
19885 | grep -v '^ *+' conftest.er1 >conftest.err | 23246 | grep -v '^ *+' conftest.er1 >conftest.err |
19886 | rm -f conftest.er1 | 23247 | rm -f conftest.er1 |
19887 | cat conftest.err >&5 | 23248 | cat conftest.err >&5 |
19888 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23249 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19889 | (exit $ac_status); } && | 23250 | (exit $ac_status); } && |
19890 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23251 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19891 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23252 | { (case "(($ac_try" in |
19892 | (eval $ac_try) 2>&5 | 23253 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23254 | *) ac_try_echo=$ac_try;; | ||
23255 | esac | ||
23256 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23257 | (eval "$ac_try") 2>&5 | ||
19893 | ac_status=$? | 23258 | ac_status=$? |
19894 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23259 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19895 | (exit $ac_status); }; } && | 23260 | (exit $ac_status); }; } && |
19896 | { ac_try='test -s conftest.$ac_objext' | 23261 | { ac_try='test -s conftest.$ac_objext' |
19897 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23262 | { (case "(($ac_try" in |
19898 | (eval $ac_try) 2>&5 | 23263 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23264 | *) ac_try_echo=$ac_try;; | ||
23265 | esac | ||
23266 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23267 | (eval "$ac_try") 2>&5 | ||
19899 | ac_status=$? | 23268 | ac_status=$? |
19900 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23269 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19901 | (exit $ac_status); }; }; then | 23270 | (exit $ac_status); }; }; then |
@@ -19904,14 +23273,15 @@ else | |||
19904 | echo "$as_me: failed program was:" >&5 | 23273 | echo "$as_me: failed program was:" >&5 |
19905 | sed 's/^/| /' conftest.$ac_ext >&5 | 23274 | sed 's/^/| /' conftest.$ac_ext >&5 |
19906 | 23275 | ||
19907 | ac_cv_have_size_t="no" | 23276 | ac_cv_have_size_t="no" |
19908 | 23277 | ||
19909 | fi | 23278 | fi |
19910 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23279 | |
23280 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19911 | 23281 | ||
19912 | fi | 23282 | fi |
19913 | echo "$as_me:$LINENO: result: $ac_cv_have_size_t" >&5 | 23283 | { echo "$as_me:$LINENO: result: $ac_cv_have_size_t" >&5 |
19914 | echo "${ECHO_T}$ac_cv_have_size_t" >&6 | 23284 | echo "${ECHO_T}$ac_cv_have_size_t" >&6; } |
19915 | if test "x$ac_cv_have_size_t" = "xyes" ; then | 23285 | if test "x$ac_cv_have_size_t" = "xyes" ; then |
19916 | 23286 | ||
19917 | cat >>confdefs.h <<\_ACEOF | 23287 | cat >>confdefs.h <<\_ACEOF |
@@ -19920,8 +23290,8 @@ _ACEOF | |||
19920 | 23290 | ||
19921 | fi | 23291 | fi |
19922 | 23292 | ||
19923 | echo "$as_me:$LINENO: checking for ssize_t" >&5 | 23293 | { echo "$as_me:$LINENO: checking for ssize_t" >&5 |
19924 | echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6 | 23294 | echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6; } |
19925 | if test "${ac_cv_have_ssize_t+set}" = set; then | 23295 | if test "${ac_cv_have_ssize_t+set}" = set; then |
19926 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23296 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19927 | else | 23297 | else |
@@ -19944,23 +23314,36 @@ main () | |||
19944 | } | 23314 | } |
19945 | _ACEOF | 23315 | _ACEOF |
19946 | rm -f conftest.$ac_objext | 23316 | rm -f conftest.$ac_objext |
19947 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23317 | if { (ac_try="$ac_compile" |
19948 | (eval $ac_compile) 2>conftest.er1 | 23318 | case "(($ac_try" in |
23319 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23320 | *) ac_try_echo=$ac_try;; | ||
23321 | esac | ||
23322 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23323 | (eval "$ac_compile") 2>conftest.er1 | ||
19949 | ac_status=$? | 23324 | ac_status=$? |
19950 | grep -v '^ *+' conftest.er1 >conftest.err | 23325 | grep -v '^ *+' conftest.er1 >conftest.err |
19951 | rm -f conftest.er1 | 23326 | rm -f conftest.er1 |
19952 | cat conftest.err >&5 | 23327 | cat conftest.err >&5 |
19953 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23328 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19954 | (exit $ac_status); } && | 23329 | (exit $ac_status); } && |
19955 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23330 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19956 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23331 | { (case "(($ac_try" in |
19957 | (eval $ac_try) 2>&5 | 23332 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23333 | *) ac_try_echo=$ac_try;; | ||
23334 | esac | ||
23335 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23336 | (eval "$ac_try") 2>&5 | ||
19958 | ac_status=$? | 23337 | ac_status=$? |
19959 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23338 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19960 | (exit $ac_status); }; } && | 23339 | (exit $ac_status); }; } && |
19961 | { ac_try='test -s conftest.$ac_objext' | 23340 | { ac_try='test -s conftest.$ac_objext' |
19962 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23341 | { (case "(($ac_try" in |
19963 | (eval $ac_try) 2>&5 | 23342 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23343 | *) ac_try_echo=$ac_try;; | ||
23344 | esac | ||
23345 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23346 | (eval "$ac_try") 2>&5 | ||
19964 | ac_status=$? | 23347 | ac_status=$? |
19965 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23348 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19966 | (exit $ac_status); }; }; then | 23349 | (exit $ac_status); }; }; then |
@@ -19969,14 +23352,15 @@ else | |||
19969 | echo "$as_me: failed program was:" >&5 | 23352 | echo "$as_me: failed program was:" >&5 |
19970 | sed 's/^/| /' conftest.$ac_ext >&5 | 23353 | sed 's/^/| /' conftest.$ac_ext >&5 |
19971 | 23354 | ||
19972 | ac_cv_have_ssize_t="no" | 23355 | ac_cv_have_ssize_t="no" |
19973 | 23356 | ||
19974 | fi | 23357 | fi |
19975 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23358 | |
23359 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
19976 | 23360 | ||
19977 | fi | 23361 | fi |
19978 | echo "$as_me:$LINENO: result: $ac_cv_have_ssize_t" >&5 | 23362 | { echo "$as_me:$LINENO: result: $ac_cv_have_ssize_t" >&5 |
19979 | echo "${ECHO_T}$ac_cv_have_ssize_t" >&6 | 23363 | echo "${ECHO_T}$ac_cv_have_ssize_t" >&6; } |
19980 | if test "x$ac_cv_have_ssize_t" = "xyes" ; then | 23364 | if test "x$ac_cv_have_ssize_t" = "xyes" ; then |
19981 | 23365 | ||
19982 | cat >>confdefs.h <<\_ACEOF | 23366 | cat >>confdefs.h <<\_ACEOF |
@@ -19985,8 +23369,8 @@ _ACEOF | |||
19985 | 23369 | ||
19986 | fi | 23370 | fi |
19987 | 23371 | ||
19988 | echo "$as_me:$LINENO: checking for clock_t" >&5 | 23372 | { echo "$as_me:$LINENO: checking for clock_t" >&5 |
19989 | echo $ECHO_N "checking for clock_t... $ECHO_C" >&6 | 23373 | echo $ECHO_N "checking for clock_t... $ECHO_C" >&6; } |
19990 | if test "${ac_cv_have_clock_t+set}" = set; then | 23374 | if test "${ac_cv_have_clock_t+set}" = set; then |
19991 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23375 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
19992 | else | 23376 | else |
@@ -20009,23 +23393,36 @@ main () | |||
20009 | } | 23393 | } |
20010 | _ACEOF | 23394 | _ACEOF |
20011 | rm -f conftest.$ac_objext | 23395 | rm -f conftest.$ac_objext |
20012 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23396 | if { (ac_try="$ac_compile" |
20013 | (eval $ac_compile) 2>conftest.er1 | 23397 | case "(($ac_try" in |
23398 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23399 | *) ac_try_echo=$ac_try;; | ||
23400 | esac | ||
23401 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23402 | (eval "$ac_compile") 2>conftest.er1 | ||
20014 | ac_status=$? | 23403 | ac_status=$? |
20015 | grep -v '^ *+' conftest.er1 >conftest.err | 23404 | grep -v '^ *+' conftest.er1 >conftest.err |
20016 | rm -f conftest.er1 | 23405 | rm -f conftest.er1 |
20017 | cat conftest.err >&5 | 23406 | cat conftest.err >&5 |
20018 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23407 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20019 | (exit $ac_status); } && | 23408 | (exit $ac_status); } && |
20020 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23409 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20021 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23410 | { (case "(($ac_try" in |
20022 | (eval $ac_try) 2>&5 | 23411 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23412 | *) ac_try_echo=$ac_try;; | ||
23413 | esac | ||
23414 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23415 | (eval "$ac_try") 2>&5 | ||
20023 | ac_status=$? | 23416 | ac_status=$? |
20024 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23417 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20025 | (exit $ac_status); }; } && | 23418 | (exit $ac_status); }; } && |
20026 | { ac_try='test -s conftest.$ac_objext' | 23419 | { ac_try='test -s conftest.$ac_objext' |
20027 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23420 | { (case "(($ac_try" in |
20028 | (eval $ac_try) 2>&5 | 23421 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23422 | *) ac_try_echo=$ac_try;; | ||
23423 | esac | ||
23424 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23425 | (eval "$ac_try") 2>&5 | ||
20029 | ac_status=$? | 23426 | ac_status=$? |
20030 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23427 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20031 | (exit $ac_status); }; }; then | 23428 | (exit $ac_status); }; }; then |
@@ -20034,14 +23431,15 @@ else | |||
20034 | echo "$as_me: failed program was:" >&5 | 23431 | echo "$as_me: failed program was:" >&5 |
20035 | sed 's/^/| /' conftest.$ac_ext >&5 | 23432 | sed 's/^/| /' conftest.$ac_ext >&5 |
20036 | 23433 | ||
20037 | ac_cv_have_clock_t="no" | 23434 | ac_cv_have_clock_t="no" |
20038 | 23435 | ||
20039 | fi | 23436 | fi |
20040 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23437 | |
23438 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20041 | 23439 | ||
20042 | fi | 23440 | fi |
20043 | echo "$as_me:$LINENO: result: $ac_cv_have_clock_t" >&5 | 23441 | { echo "$as_me:$LINENO: result: $ac_cv_have_clock_t" >&5 |
20044 | echo "${ECHO_T}$ac_cv_have_clock_t" >&6 | 23442 | echo "${ECHO_T}$ac_cv_have_clock_t" >&6; } |
20045 | if test "x$ac_cv_have_clock_t" = "xyes" ; then | 23443 | if test "x$ac_cv_have_clock_t" = "xyes" ; then |
20046 | 23444 | ||
20047 | cat >>confdefs.h <<\_ACEOF | 23445 | cat >>confdefs.h <<\_ACEOF |
@@ -20050,8 +23448,8 @@ _ACEOF | |||
20050 | 23448 | ||
20051 | fi | 23449 | fi |
20052 | 23450 | ||
20053 | echo "$as_me:$LINENO: checking for sa_family_t" >&5 | 23451 | { echo "$as_me:$LINENO: checking for sa_family_t" >&5 |
20054 | echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6 | 23452 | echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6; } |
20055 | if test "${ac_cv_have_sa_family_t+set}" = set; then | 23453 | if test "${ac_cv_have_sa_family_t+set}" = set; then |
20056 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23454 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20057 | else | 23455 | else |
@@ -20075,23 +23473,36 @@ main () | |||
20075 | } | 23473 | } |
20076 | _ACEOF | 23474 | _ACEOF |
20077 | rm -f conftest.$ac_objext | 23475 | rm -f conftest.$ac_objext |
20078 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23476 | if { (ac_try="$ac_compile" |
20079 | (eval $ac_compile) 2>conftest.er1 | 23477 | case "(($ac_try" in |
23478 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23479 | *) ac_try_echo=$ac_try;; | ||
23480 | esac | ||
23481 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23482 | (eval "$ac_compile") 2>conftest.er1 | ||
20080 | ac_status=$? | 23483 | ac_status=$? |
20081 | grep -v '^ *+' conftest.er1 >conftest.err | 23484 | grep -v '^ *+' conftest.er1 >conftest.err |
20082 | rm -f conftest.er1 | 23485 | rm -f conftest.er1 |
20083 | cat conftest.err >&5 | 23486 | cat conftest.err >&5 |
20084 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23487 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20085 | (exit $ac_status); } && | 23488 | (exit $ac_status); } && |
20086 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23489 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20087 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23490 | { (case "(($ac_try" in |
20088 | (eval $ac_try) 2>&5 | 23491 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23492 | *) ac_try_echo=$ac_try;; | ||
23493 | esac | ||
23494 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23495 | (eval "$ac_try") 2>&5 | ||
20089 | ac_status=$? | 23496 | ac_status=$? |
20090 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23497 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20091 | (exit $ac_status); }; } && | 23498 | (exit $ac_status); }; } && |
20092 | { ac_try='test -s conftest.$ac_objext' | 23499 | { ac_try='test -s conftest.$ac_objext' |
20093 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23500 | { (case "(($ac_try" in |
20094 | (eval $ac_try) 2>&5 | 23501 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23502 | *) ac_try_echo=$ac_try;; | ||
23503 | esac | ||
23504 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23505 | (eval "$ac_try") 2>&5 | ||
20095 | ac_status=$? | 23506 | ac_status=$? |
20096 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23507 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20097 | (exit $ac_status); }; }; then | 23508 | (exit $ac_status); }; }; then |
@@ -20100,7 +23511,7 @@ else | |||
20100 | echo "$as_me: failed program was:" >&5 | 23511 | echo "$as_me: failed program was:" >&5 |
20101 | sed 's/^/| /' conftest.$ac_ext >&5 | 23512 | sed 's/^/| /' conftest.$ac_ext >&5 |
20102 | 23513 | ||
20103 | cat >conftest.$ac_ext <<_ACEOF | 23514 | cat >conftest.$ac_ext <<_ACEOF |
20104 | /* confdefs.h. */ | 23515 | /* confdefs.h. */ |
20105 | _ACEOF | 23516 | _ACEOF |
20106 | cat confdefs.h >>conftest.$ac_ext | 23517 | cat confdefs.h >>conftest.$ac_ext |
@@ -20120,23 +23531,36 @@ main () | |||
20120 | } | 23531 | } |
20121 | _ACEOF | 23532 | _ACEOF |
20122 | rm -f conftest.$ac_objext | 23533 | rm -f conftest.$ac_objext |
20123 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23534 | if { (ac_try="$ac_compile" |
20124 | (eval $ac_compile) 2>conftest.er1 | 23535 | case "(($ac_try" in |
23536 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23537 | *) ac_try_echo=$ac_try;; | ||
23538 | esac | ||
23539 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23540 | (eval "$ac_compile") 2>conftest.er1 | ||
20125 | ac_status=$? | 23541 | ac_status=$? |
20126 | grep -v '^ *+' conftest.er1 >conftest.err | 23542 | grep -v '^ *+' conftest.er1 >conftest.err |
20127 | rm -f conftest.er1 | 23543 | rm -f conftest.er1 |
20128 | cat conftest.err >&5 | 23544 | cat conftest.err >&5 |
20129 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23545 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20130 | (exit $ac_status); } && | 23546 | (exit $ac_status); } && |
20131 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23547 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20132 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23548 | { (case "(($ac_try" in |
20133 | (eval $ac_try) 2>&5 | 23549 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23550 | *) ac_try_echo=$ac_try;; | ||
23551 | esac | ||
23552 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23553 | (eval "$ac_try") 2>&5 | ||
20134 | ac_status=$? | 23554 | ac_status=$? |
20135 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23555 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20136 | (exit $ac_status); }; } && | 23556 | (exit $ac_status); }; } && |
20137 | { ac_try='test -s conftest.$ac_objext' | 23557 | { ac_try='test -s conftest.$ac_objext' |
20138 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23558 | { (case "(($ac_try" in |
20139 | (eval $ac_try) 2>&5 | 23559 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23560 | *) ac_try_echo=$ac_try;; | ||
23561 | esac | ||
23562 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23563 | (eval "$ac_try") 2>&5 | ||
20140 | ac_status=$? | 23564 | ac_status=$? |
20141 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23565 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20142 | (exit $ac_status); }; }; then | 23566 | (exit $ac_status); }; }; then |
@@ -20145,17 +23569,19 @@ else | |||
20145 | echo "$as_me: failed program was:" >&5 | 23569 | echo "$as_me: failed program was:" >&5 |
20146 | sed 's/^/| /' conftest.$ac_ext >&5 | 23570 | sed 's/^/| /' conftest.$ac_ext >&5 |
20147 | 23571 | ||
20148 | ac_cv_have_sa_family_t="no" | 23572 | ac_cv_have_sa_family_t="no" |
20149 | 23573 | ||
20150 | fi | 23574 | fi |
20151 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23575 | |
23576 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20152 | 23577 | ||
20153 | fi | 23578 | fi |
20154 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23579 | |
23580 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20155 | 23581 | ||
20156 | fi | 23582 | fi |
20157 | echo "$as_me:$LINENO: result: $ac_cv_have_sa_family_t" >&5 | 23583 | { echo "$as_me:$LINENO: result: $ac_cv_have_sa_family_t" >&5 |
20158 | echo "${ECHO_T}$ac_cv_have_sa_family_t" >&6 | 23584 | echo "${ECHO_T}$ac_cv_have_sa_family_t" >&6; } |
20159 | if test "x$ac_cv_have_sa_family_t" = "xyes" ; then | 23585 | if test "x$ac_cv_have_sa_family_t" = "xyes" ; then |
20160 | 23586 | ||
20161 | cat >>confdefs.h <<\_ACEOF | 23587 | cat >>confdefs.h <<\_ACEOF |
@@ -20164,8 +23590,8 @@ _ACEOF | |||
20164 | 23590 | ||
20165 | fi | 23591 | fi |
20166 | 23592 | ||
20167 | echo "$as_me:$LINENO: checking for pid_t" >&5 | 23593 | { echo "$as_me:$LINENO: checking for pid_t" >&5 |
20168 | echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 | 23594 | echo $ECHO_N "checking for pid_t... $ECHO_C" >&6; } |
20169 | if test "${ac_cv_have_pid_t+set}" = set; then | 23595 | if test "${ac_cv_have_pid_t+set}" = set; then |
20170 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23596 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20171 | else | 23597 | else |
@@ -20188,23 +23614,36 @@ main () | |||
20188 | } | 23614 | } |
20189 | _ACEOF | 23615 | _ACEOF |
20190 | rm -f conftest.$ac_objext | 23616 | rm -f conftest.$ac_objext |
20191 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23617 | if { (ac_try="$ac_compile" |
20192 | (eval $ac_compile) 2>conftest.er1 | 23618 | case "(($ac_try" in |
23619 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23620 | *) ac_try_echo=$ac_try;; | ||
23621 | esac | ||
23622 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23623 | (eval "$ac_compile") 2>conftest.er1 | ||
20193 | ac_status=$? | 23624 | ac_status=$? |
20194 | grep -v '^ *+' conftest.er1 >conftest.err | 23625 | grep -v '^ *+' conftest.er1 >conftest.err |
20195 | rm -f conftest.er1 | 23626 | rm -f conftest.er1 |
20196 | cat conftest.err >&5 | 23627 | cat conftest.err >&5 |
20197 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23628 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20198 | (exit $ac_status); } && | 23629 | (exit $ac_status); } && |
20199 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23630 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20200 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23631 | { (case "(($ac_try" in |
20201 | (eval $ac_try) 2>&5 | 23632 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23633 | *) ac_try_echo=$ac_try;; | ||
23634 | esac | ||
23635 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23636 | (eval "$ac_try") 2>&5 | ||
20202 | ac_status=$? | 23637 | ac_status=$? |
20203 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23638 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20204 | (exit $ac_status); }; } && | 23639 | (exit $ac_status); }; } && |
20205 | { ac_try='test -s conftest.$ac_objext' | 23640 | { ac_try='test -s conftest.$ac_objext' |
20206 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23641 | { (case "(($ac_try" in |
20207 | (eval $ac_try) 2>&5 | 23642 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23643 | *) ac_try_echo=$ac_try;; | ||
23644 | esac | ||
23645 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23646 | (eval "$ac_try") 2>&5 | ||
20208 | ac_status=$? | 23647 | ac_status=$? |
20209 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23648 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20210 | (exit $ac_status); }; }; then | 23649 | (exit $ac_status); }; }; then |
@@ -20213,14 +23652,15 @@ else | |||
20213 | echo "$as_me: failed program was:" >&5 | 23652 | echo "$as_me: failed program was:" >&5 |
20214 | sed 's/^/| /' conftest.$ac_ext >&5 | 23653 | sed 's/^/| /' conftest.$ac_ext >&5 |
20215 | 23654 | ||
20216 | ac_cv_have_pid_t="no" | 23655 | ac_cv_have_pid_t="no" |
20217 | 23656 | ||
20218 | fi | 23657 | fi |
20219 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23658 | |
23659 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20220 | 23660 | ||
20221 | fi | 23661 | fi |
20222 | echo "$as_me:$LINENO: result: $ac_cv_have_pid_t" >&5 | 23662 | { echo "$as_me:$LINENO: result: $ac_cv_have_pid_t" >&5 |
20223 | echo "${ECHO_T}$ac_cv_have_pid_t" >&6 | 23663 | echo "${ECHO_T}$ac_cv_have_pid_t" >&6; } |
20224 | if test "x$ac_cv_have_pid_t" = "xyes" ; then | 23664 | if test "x$ac_cv_have_pid_t" = "xyes" ; then |
20225 | 23665 | ||
20226 | cat >>confdefs.h <<\_ACEOF | 23666 | cat >>confdefs.h <<\_ACEOF |
@@ -20229,8 +23669,8 @@ _ACEOF | |||
20229 | 23669 | ||
20230 | fi | 23670 | fi |
20231 | 23671 | ||
20232 | echo "$as_me:$LINENO: checking for mode_t" >&5 | 23672 | { echo "$as_me:$LINENO: checking for mode_t" >&5 |
20233 | echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 | 23673 | echo $ECHO_N "checking for mode_t... $ECHO_C" >&6; } |
20234 | if test "${ac_cv_have_mode_t+set}" = set; then | 23674 | if test "${ac_cv_have_mode_t+set}" = set; then |
20235 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23675 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20236 | else | 23676 | else |
@@ -20253,23 +23693,36 @@ main () | |||
20253 | } | 23693 | } |
20254 | _ACEOF | 23694 | _ACEOF |
20255 | rm -f conftest.$ac_objext | 23695 | rm -f conftest.$ac_objext |
20256 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23696 | if { (ac_try="$ac_compile" |
20257 | (eval $ac_compile) 2>conftest.er1 | 23697 | case "(($ac_try" in |
23698 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23699 | *) ac_try_echo=$ac_try;; | ||
23700 | esac | ||
23701 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23702 | (eval "$ac_compile") 2>conftest.er1 | ||
20258 | ac_status=$? | 23703 | ac_status=$? |
20259 | grep -v '^ *+' conftest.er1 >conftest.err | 23704 | grep -v '^ *+' conftest.er1 >conftest.err |
20260 | rm -f conftest.er1 | 23705 | rm -f conftest.er1 |
20261 | cat conftest.err >&5 | 23706 | cat conftest.err >&5 |
20262 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23707 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20263 | (exit $ac_status); } && | 23708 | (exit $ac_status); } && |
20264 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23709 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20265 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23710 | { (case "(($ac_try" in |
20266 | (eval $ac_try) 2>&5 | 23711 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23712 | *) ac_try_echo=$ac_try;; | ||
23713 | esac | ||
23714 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23715 | (eval "$ac_try") 2>&5 | ||
20267 | ac_status=$? | 23716 | ac_status=$? |
20268 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23717 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20269 | (exit $ac_status); }; } && | 23718 | (exit $ac_status); }; } && |
20270 | { ac_try='test -s conftest.$ac_objext' | 23719 | { ac_try='test -s conftest.$ac_objext' |
20271 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23720 | { (case "(($ac_try" in |
20272 | (eval $ac_try) 2>&5 | 23721 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23722 | *) ac_try_echo=$ac_try;; | ||
23723 | esac | ||
23724 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23725 | (eval "$ac_try") 2>&5 | ||
20273 | ac_status=$? | 23726 | ac_status=$? |
20274 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23727 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20275 | (exit $ac_status); }; }; then | 23728 | (exit $ac_status); }; }; then |
@@ -20278,14 +23731,15 @@ else | |||
20278 | echo "$as_me: failed program was:" >&5 | 23731 | echo "$as_me: failed program was:" >&5 |
20279 | sed 's/^/| /' conftest.$ac_ext >&5 | 23732 | sed 's/^/| /' conftest.$ac_ext >&5 |
20280 | 23733 | ||
20281 | ac_cv_have_mode_t="no" | 23734 | ac_cv_have_mode_t="no" |
20282 | 23735 | ||
20283 | fi | 23736 | fi |
20284 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23737 | |
23738 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20285 | 23739 | ||
20286 | fi | 23740 | fi |
20287 | echo "$as_me:$LINENO: result: $ac_cv_have_mode_t" >&5 | 23741 | { echo "$as_me:$LINENO: result: $ac_cv_have_mode_t" >&5 |
20288 | echo "${ECHO_T}$ac_cv_have_mode_t" >&6 | 23742 | echo "${ECHO_T}$ac_cv_have_mode_t" >&6; } |
20289 | if test "x$ac_cv_have_mode_t" = "xyes" ; then | 23743 | if test "x$ac_cv_have_mode_t" = "xyes" ; then |
20290 | 23744 | ||
20291 | cat >>confdefs.h <<\_ACEOF | 23745 | cat >>confdefs.h <<\_ACEOF |
@@ -20295,8 +23749,8 @@ _ACEOF | |||
20295 | fi | 23749 | fi |
20296 | 23750 | ||
20297 | 23751 | ||
20298 | echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 | 23752 | { echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 |
20299 | echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6 | 23753 | echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6; } |
20300 | if test "${ac_cv_have_struct_sockaddr_storage+set}" = set; then | 23754 | if test "${ac_cv_have_struct_sockaddr_storage+set}" = set; then |
20301 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23755 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20302 | else | 23756 | else |
@@ -20320,23 +23774,36 @@ main () | |||
20320 | } | 23774 | } |
20321 | _ACEOF | 23775 | _ACEOF |
20322 | rm -f conftest.$ac_objext | 23776 | rm -f conftest.$ac_objext |
20323 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23777 | if { (ac_try="$ac_compile" |
20324 | (eval $ac_compile) 2>conftest.er1 | 23778 | case "(($ac_try" in |
23779 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23780 | *) ac_try_echo=$ac_try;; | ||
23781 | esac | ||
23782 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23783 | (eval "$ac_compile") 2>conftest.er1 | ||
20325 | ac_status=$? | 23784 | ac_status=$? |
20326 | grep -v '^ *+' conftest.er1 >conftest.err | 23785 | grep -v '^ *+' conftest.er1 >conftest.err |
20327 | rm -f conftest.er1 | 23786 | rm -f conftest.er1 |
20328 | cat conftest.err >&5 | 23787 | cat conftest.err >&5 |
20329 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23788 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20330 | (exit $ac_status); } && | 23789 | (exit $ac_status); } && |
20331 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23790 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20332 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23791 | { (case "(($ac_try" in |
20333 | (eval $ac_try) 2>&5 | 23792 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23793 | *) ac_try_echo=$ac_try;; | ||
23794 | esac | ||
23795 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23796 | (eval "$ac_try") 2>&5 | ||
20334 | ac_status=$? | 23797 | ac_status=$? |
20335 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23798 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20336 | (exit $ac_status); }; } && | 23799 | (exit $ac_status); }; } && |
20337 | { ac_try='test -s conftest.$ac_objext' | 23800 | { ac_try='test -s conftest.$ac_objext' |
20338 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23801 | { (case "(($ac_try" in |
20339 | (eval $ac_try) 2>&5 | 23802 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23803 | *) ac_try_echo=$ac_try;; | ||
23804 | esac | ||
23805 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23806 | (eval "$ac_try") 2>&5 | ||
20340 | ac_status=$? | 23807 | ac_status=$? |
20341 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23808 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20342 | (exit $ac_status); }; }; then | 23809 | (exit $ac_status); }; }; then |
@@ -20345,14 +23812,15 @@ else | |||
20345 | echo "$as_me: failed program was:" >&5 | 23812 | echo "$as_me: failed program was:" >&5 |
20346 | sed 's/^/| /' conftest.$ac_ext >&5 | 23813 | sed 's/^/| /' conftest.$ac_ext >&5 |
20347 | 23814 | ||
20348 | ac_cv_have_struct_sockaddr_storage="no" | 23815 | ac_cv_have_struct_sockaddr_storage="no" |
20349 | 23816 | ||
20350 | fi | 23817 | fi |
20351 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23818 | |
23819 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20352 | 23820 | ||
20353 | fi | 23821 | fi |
20354 | echo "$as_me:$LINENO: result: $ac_cv_have_struct_sockaddr_storage" >&5 | 23822 | { echo "$as_me:$LINENO: result: $ac_cv_have_struct_sockaddr_storage" >&5 |
20355 | echo "${ECHO_T}$ac_cv_have_struct_sockaddr_storage" >&6 | 23823 | echo "${ECHO_T}$ac_cv_have_struct_sockaddr_storage" >&6; } |
20356 | if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then | 23824 | if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then |
20357 | 23825 | ||
20358 | cat >>confdefs.h <<\_ACEOF | 23826 | cat >>confdefs.h <<\_ACEOF |
@@ -20361,8 +23829,8 @@ _ACEOF | |||
20361 | 23829 | ||
20362 | fi | 23830 | fi |
20363 | 23831 | ||
20364 | echo "$as_me:$LINENO: checking for struct sockaddr_in6" >&5 | 23832 | { echo "$as_me:$LINENO: checking for struct sockaddr_in6" >&5 |
20365 | echo $ECHO_N "checking for struct sockaddr_in6... $ECHO_C" >&6 | 23833 | echo $ECHO_N "checking for struct sockaddr_in6... $ECHO_C" >&6; } |
20366 | if test "${ac_cv_have_struct_sockaddr_in6+set}" = set; then | 23834 | if test "${ac_cv_have_struct_sockaddr_in6+set}" = set; then |
20367 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23835 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20368 | else | 23836 | else |
@@ -20386,23 +23854,36 @@ main () | |||
20386 | } | 23854 | } |
20387 | _ACEOF | 23855 | _ACEOF |
20388 | rm -f conftest.$ac_objext | 23856 | rm -f conftest.$ac_objext |
20389 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23857 | if { (ac_try="$ac_compile" |
20390 | (eval $ac_compile) 2>conftest.er1 | 23858 | case "(($ac_try" in |
23859 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23860 | *) ac_try_echo=$ac_try;; | ||
23861 | esac | ||
23862 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23863 | (eval "$ac_compile") 2>conftest.er1 | ||
20391 | ac_status=$? | 23864 | ac_status=$? |
20392 | grep -v '^ *+' conftest.er1 >conftest.err | 23865 | grep -v '^ *+' conftest.er1 >conftest.err |
20393 | rm -f conftest.er1 | 23866 | rm -f conftest.er1 |
20394 | cat conftest.err >&5 | 23867 | cat conftest.err >&5 |
20395 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23868 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20396 | (exit $ac_status); } && | 23869 | (exit $ac_status); } && |
20397 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23870 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20398 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23871 | { (case "(($ac_try" in |
20399 | (eval $ac_try) 2>&5 | 23872 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23873 | *) ac_try_echo=$ac_try;; | ||
23874 | esac | ||
23875 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23876 | (eval "$ac_try") 2>&5 | ||
20400 | ac_status=$? | 23877 | ac_status=$? |
20401 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23878 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20402 | (exit $ac_status); }; } && | 23879 | (exit $ac_status); }; } && |
20403 | { ac_try='test -s conftest.$ac_objext' | 23880 | { ac_try='test -s conftest.$ac_objext' |
20404 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23881 | { (case "(($ac_try" in |
20405 | (eval $ac_try) 2>&5 | 23882 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23883 | *) ac_try_echo=$ac_try;; | ||
23884 | esac | ||
23885 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23886 | (eval "$ac_try") 2>&5 | ||
20406 | ac_status=$? | 23887 | ac_status=$? |
20407 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23888 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20408 | (exit $ac_status); }; }; then | 23889 | (exit $ac_status); }; }; then |
@@ -20411,14 +23892,15 @@ else | |||
20411 | echo "$as_me: failed program was:" >&5 | 23892 | echo "$as_me: failed program was:" >&5 |
20412 | sed 's/^/| /' conftest.$ac_ext >&5 | 23893 | sed 's/^/| /' conftest.$ac_ext >&5 |
20413 | 23894 | ||
20414 | ac_cv_have_struct_sockaddr_in6="no" | 23895 | ac_cv_have_struct_sockaddr_in6="no" |
20415 | 23896 | ||
20416 | fi | 23897 | fi |
20417 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23898 | |
23899 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20418 | 23900 | ||
20419 | fi | 23901 | fi |
20420 | echo "$as_me:$LINENO: result: $ac_cv_have_struct_sockaddr_in6" >&5 | 23902 | { echo "$as_me:$LINENO: result: $ac_cv_have_struct_sockaddr_in6" >&5 |
20421 | echo "${ECHO_T}$ac_cv_have_struct_sockaddr_in6" >&6 | 23903 | echo "${ECHO_T}$ac_cv_have_struct_sockaddr_in6" >&6; } |
20422 | if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then | 23904 | if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then |
20423 | 23905 | ||
20424 | cat >>confdefs.h <<\_ACEOF | 23906 | cat >>confdefs.h <<\_ACEOF |
@@ -20427,8 +23909,8 @@ _ACEOF | |||
20427 | 23909 | ||
20428 | fi | 23910 | fi |
20429 | 23911 | ||
20430 | echo "$as_me:$LINENO: checking for struct in6_addr" >&5 | 23912 | { echo "$as_me:$LINENO: checking for struct in6_addr" >&5 |
20431 | echo $ECHO_N "checking for struct in6_addr... $ECHO_C" >&6 | 23913 | echo $ECHO_N "checking for struct in6_addr... $ECHO_C" >&6; } |
20432 | if test "${ac_cv_have_struct_in6_addr+set}" = set; then | 23914 | if test "${ac_cv_have_struct_in6_addr+set}" = set; then |
20433 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23915 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20434 | else | 23916 | else |
@@ -20452,23 +23934,36 @@ main () | |||
20452 | } | 23934 | } |
20453 | _ACEOF | 23935 | _ACEOF |
20454 | rm -f conftest.$ac_objext | 23936 | rm -f conftest.$ac_objext |
20455 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 23937 | if { (ac_try="$ac_compile" |
20456 | (eval $ac_compile) 2>conftest.er1 | 23938 | case "(($ac_try" in |
23939 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
23940 | *) ac_try_echo=$ac_try;; | ||
23941 | esac | ||
23942 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23943 | (eval "$ac_compile") 2>conftest.er1 | ||
20457 | ac_status=$? | 23944 | ac_status=$? |
20458 | grep -v '^ *+' conftest.er1 >conftest.err | 23945 | grep -v '^ *+' conftest.er1 >conftest.err |
20459 | rm -f conftest.er1 | 23946 | rm -f conftest.er1 |
20460 | cat conftest.err >&5 | 23947 | cat conftest.err >&5 |
20461 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23948 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20462 | (exit $ac_status); } && | 23949 | (exit $ac_status); } && |
20463 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 23950 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20464 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23951 | { (case "(($ac_try" in |
20465 | (eval $ac_try) 2>&5 | 23952 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23953 | *) ac_try_echo=$ac_try;; | ||
23954 | esac | ||
23955 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23956 | (eval "$ac_try") 2>&5 | ||
20466 | ac_status=$? | 23957 | ac_status=$? |
20467 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23958 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20468 | (exit $ac_status); }; } && | 23959 | (exit $ac_status); }; } && |
20469 | { ac_try='test -s conftest.$ac_objext' | 23960 | { ac_try='test -s conftest.$ac_objext' |
20470 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23961 | { (case "(($ac_try" in |
20471 | (eval $ac_try) 2>&5 | 23962 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
23963 | *) ac_try_echo=$ac_try;; | ||
23964 | esac | ||
23965 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
23966 | (eval "$ac_try") 2>&5 | ||
20472 | ac_status=$? | 23967 | ac_status=$? |
20473 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23968 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20474 | (exit $ac_status); }; }; then | 23969 | (exit $ac_status); }; }; then |
@@ -20477,14 +23972,15 @@ else | |||
20477 | echo "$as_me: failed program was:" >&5 | 23972 | echo "$as_me: failed program was:" >&5 |
20478 | sed 's/^/| /' conftest.$ac_ext >&5 | 23973 | sed 's/^/| /' conftest.$ac_ext >&5 |
20479 | 23974 | ||
20480 | ac_cv_have_struct_in6_addr="no" | 23975 | ac_cv_have_struct_in6_addr="no" |
20481 | 23976 | ||
20482 | fi | 23977 | fi |
20483 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 23978 | |
23979 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20484 | 23980 | ||
20485 | fi | 23981 | fi |
20486 | echo "$as_me:$LINENO: result: $ac_cv_have_struct_in6_addr" >&5 | 23982 | { echo "$as_me:$LINENO: result: $ac_cv_have_struct_in6_addr" >&5 |
20487 | echo "${ECHO_T}$ac_cv_have_struct_in6_addr" >&6 | 23983 | echo "${ECHO_T}$ac_cv_have_struct_in6_addr" >&6; } |
20488 | if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then | 23984 | if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then |
20489 | 23985 | ||
20490 | cat >>confdefs.h <<\_ACEOF | 23986 | cat >>confdefs.h <<\_ACEOF |
@@ -20493,8 +23989,8 @@ _ACEOF | |||
20493 | 23989 | ||
20494 | fi | 23990 | fi |
20495 | 23991 | ||
20496 | echo "$as_me:$LINENO: checking for struct addrinfo" >&5 | 23992 | { echo "$as_me:$LINENO: checking for struct addrinfo" >&5 |
20497 | echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6 | 23993 | echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6; } |
20498 | if test "${ac_cv_have_struct_addrinfo+set}" = set; then | 23994 | if test "${ac_cv_have_struct_addrinfo+set}" = set; then |
20499 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 23995 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20500 | else | 23996 | else |
@@ -20519,23 +24015,36 @@ main () | |||
20519 | } | 24015 | } |
20520 | _ACEOF | 24016 | _ACEOF |
20521 | rm -f conftest.$ac_objext | 24017 | rm -f conftest.$ac_objext |
20522 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 24018 | if { (ac_try="$ac_compile" |
20523 | (eval $ac_compile) 2>conftest.er1 | 24019 | case "(($ac_try" in |
24020 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
24021 | *) ac_try_echo=$ac_try;; | ||
24022 | esac | ||
24023 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24024 | (eval "$ac_compile") 2>conftest.er1 | ||
20524 | ac_status=$? | 24025 | ac_status=$? |
20525 | grep -v '^ *+' conftest.er1 >conftest.err | 24026 | grep -v '^ *+' conftest.er1 >conftest.err |
20526 | rm -f conftest.er1 | 24027 | rm -f conftest.er1 |
20527 | cat conftest.err >&5 | 24028 | cat conftest.err >&5 |
20528 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24029 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20529 | (exit $ac_status); } && | 24030 | (exit $ac_status); } && |
20530 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 24031 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20531 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24032 | { (case "(($ac_try" in |
20532 | (eval $ac_try) 2>&5 | 24033 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24034 | *) ac_try_echo=$ac_try;; | ||
24035 | esac | ||
24036 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24037 | (eval "$ac_try") 2>&5 | ||
20533 | ac_status=$? | 24038 | ac_status=$? |
20534 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24039 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20535 | (exit $ac_status); }; } && | 24040 | (exit $ac_status); }; } && |
20536 | { ac_try='test -s conftest.$ac_objext' | 24041 | { ac_try='test -s conftest.$ac_objext' |
20537 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24042 | { (case "(($ac_try" in |
20538 | (eval $ac_try) 2>&5 | 24043 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24044 | *) ac_try_echo=$ac_try;; | ||
24045 | esac | ||
24046 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24047 | (eval "$ac_try") 2>&5 | ||
20539 | ac_status=$? | 24048 | ac_status=$? |
20540 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24049 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20541 | (exit $ac_status); }; }; then | 24050 | (exit $ac_status); }; }; then |
@@ -20544,14 +24053,15 @@ else | |||
20544 | echo "$as_me: failed program was:" >&5 | 24053 | echo "$as_me: failed program was:" >&5 |
20545 | sed 's/^/| /' conftest.$ac_ext >&5 | 24054 | sed 's/^/| /' conftest.$ac_ext >&5 |
20546 | 24055 | ||
20547 | ac_cv_have_struct_addrinfo="no" | 24056 | ac_cv_have_struct_addrinfo="no" |
20548 | 24057 | ||
20549 | fi | 24058 | fi |
20550 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 24059 | |
24060 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20551 | 24061 | ||
20552 | fi | 24062 | fi |
20553 | echo "$as_me:$LINENO: result: $ac_cv_have_struct_addrinfo" >&5 | 24063 | { echo "$as_me:$LINENO: result: $ac_cv_have_struct_addrinfo" >&5 |
20554 | echo "${ECHO_T}$ac_cv_have_struct_addrinfo" >&6 | 24064 | echo "${ECHO_T}$ac_cv_have_struct_addrinfo" >&6; } |
20555 | if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then | 24065 | if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then |
20556 | 24066 | ||
20557 | cat >>confdefs.h <<\_ACEOF | 24067 | cat >>confdefs.h <<\_ACEOF |
@@ -20560,8 +24070,8 @@ _ACEOF | |||
20560 | 24070 | ||
20561 | fi | 24071 | fi |
20562 | 24072 | ||
20563 | echo "$as_me:$LINENO: checking for struct timeval" >&5 | 24073 | { echo "$as_me:$LINENO: checking for struct timeval" >&5 |
20564 | echo $ECHO_N "checking for struct timeval... $ECHO_C" >&6 | 24074 | echo $ECHO_N "checking for struct timeval... $ECHO_C" >&6; } |
20565 | if test "${ac_cv_have_struct_timeval+set}" = set; then | 24075 | if test "${ac_cv_have_struct_timeval+set}" = set; then |
20566 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24076 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20567 | else | 24077 | else |
@@ -20582,23 +24092,36 @@ main () | |||
20582 | } | 24092 | } |
20583 | _ACEOF | 24093 | _ACEOF |
20584 | rm -f conftest.$ac_objext | 24094 | rm -f conftest.$ac_objext |
20585 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 24095 | if { (ac_try="$ac_compile" |
20586 | (eval $ac_compile) 2>conftest.er1 | 24096 | case "(($ac_try" in |
24097 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
24098 | *) ac_try_echo=$ac_try;; | ||
24099 | esac | ||
24100 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24101 | (eval "$ac_compile") 2>conftest.er1 | ||
20587 | ac_status=$? | 24102 | ac_status=$? |
20588 | grep -v '^ *+' conftest.er1 >conftest.err | 24103 | grep -v '^ *+' conftest.er1 >conftest.err |
20589 | rm -f conftest.er1 | 24104 | rm -f conftest.er1 |
20590 | cat conftest.err >&5 | 24105 | cat conftest.err >&5 |
20591 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24106 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20592 | (exit $ac_status); } && | 24107 | (exit $ac_status); } && |
20593 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 24108 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20594 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24109 | { (case "(($ac_try" in |
20595 | (eval $ac_try) 2>&5 | 24110 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24111 | *) ac_try_echo=$ac_try;; | ||
24112 | esac | ||
24113 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24114 | (eval "$ac_try") 2>&5 | ||
20596 | ac_status=$? | 24115 | ac_status=$? |
20597 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24116 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20598 | (exit $ac_status); }; } && | 24117 | (exit $ac_status); }; } && |
20599 | { ac_try='test -s conftest.$ac_objext' | 24118 | { ac_try='test -s conftest.$ac_objext' |
20600 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24119 | { (case "(($ac_try" in |
20601 | (eval $ac_try) 2>&5 | 24120 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24121 | *) ac_try_echo=$ac_try;; | ||
24122 | esac | ||
24123 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24124 | (eval "$ac_try") 2>&5 | ||
20602 | ac_status=$? | 24125 | ac_status=$? |
20603 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24126 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20604 | (exit $ac_status); }; }; then | 24127 | (exit $ac_status); }; }; then |
@@ -20607,14 +24130,15 @@ else | |||
20607 | echo "$as_me: failed program was:" >&5 | 24130 | echo "$as_me: failed program was:" >&5 |
20608 | sed 's/^/| /' conftest.$ac_ext >&5 | 24131 | sed 's/^/| /' conftest.$ac_ext >&5 |
20609 | 24132 | ||
20610 | ac_cv_have_struct_timeval="no" | 24133 | ac_cv_have_struct_timeval="no" |
20611 | 24134 | ||
20612 | fi | 24135 | fi |
20613 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 24136 | |
24137 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20614 | 24138 | ||
20615 | fi | 24139 | fi |
20616 | echo "$as_me:$LINENO: result: $ac_cv_have_struct_timeval" >&5 | 24140 | { echo "$as_me:$LINENO: result: $ac_cv_have_struct_timeval" >&5 |
20617 | echo "${ECHO_T}$ac_cv_have_struct_timeval" >&6 | 24141 | echo "${ECHO_T}$ac_cv_have_struct_timeval" >&6; } |
20618 | if test "x$ac_cv_have_struct_timeval" = "xyes" ; then | 24142 | if test "x$ac_cv_have_struct_timeval" = "xyes" ; then |
20619 | 24143 | ||
20620 | cat >>confdefs.h <<\_ACEOF | 24144 | cat >>confdefs.h <<\_ACEOF |
@@ -20624,8 +24148,8 @@ _ACEOF | |||
20624 | have_struct_timeval=1 | 24148 | have_struct_timeval=1 |
20625 | fi | 24149 | fi |
20626 | 24150 | ||
20627 | echo "$as_me:$LINENO: checking for struct timespec" >&5 | 24151 | { echo "$as_me:$LINENO: checking for struct timespec" >&5 |
20628 | echo $ECHO_N "checking for struct timespec... $ECHO_C" >&6 | 24152 | echo $ECHO_N "checking for struct timespec... $ECHO_C" >&6; } |
20629 | if test "${ac_cv_type_struct_timespec+set}" = set; then | 24153 | if test "${ac_cv_type_struct_timespec+set}" = set; then |
20630 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24154 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20631 | else | 24155 | else |
@@ -20636,35 +24160,49 @@ cat confdefs.h >>conftest.$ac_ext | |||
20636 | cat >>conftest.$ac_ext <<_ACEOF | 24160 | cat >>conftest.$ac_ext <<_ACEOF |
20637 | /* end confdefs.h. */ | 24161 | /* end confdefs.h. */ |
20638 | $ac_includes_default | 24162 | $ac_includes_default |
24163 | typedef struct timespec ac__type_new_; | ||
20639 | int | 24164 | int |
20640 | main () | 24165 | main () |
20641 | { | 24166 | { |
20642 | if ((struct timespec *) 0) | 24167 | if ((ac__type_new_ *) 0) |
20643 | return 0; | 24168 | return 0; |
20644 | if (sizeof (struct timespec)) | 24169 | if (sizeof (ac__type_new_)) |
20645 | return 0; | 24170 | return 0; |
20646 | ; | 24171 | ; |
20647 | return 0; | 24172 | return 0; |
20648 | } | 24173 | } |
20649 | _ACEOF | 24174 | _ACEOF |
20650 | rm -f conftest.$ac_objext | 24175 | rm -f conftest.$ac_objext |
20651 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 24176 | if { (ac_try="$ac_compile" |
20652 | (eval $ac_compile) 2>conftest.er1 | 24177 | case "(($ac_try" in |
24178 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
24179 | *) ac_try_echo=$ac_try;; | ||
24180 | esac | ||
24181 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24182 | (eval "$ac_compile") 2>conftest.er1 | ||
20653 | ac_status=$? | 24183 | ac_status=$? |
20654 | grep -v '^ *+' conftest.er1 >conftest.err | 24184 | grep -v '^ *+' conftest.er1 >conftest.err |
20655 | rm -f conftest.er1 | 24185 | rm -f conftest.er1 |
20656 | cat conftest.err >&5 | 24186 | cat conftest.err >&5 |
20657 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24187 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20658 | (exit $ac_status); } && | 24188 | (exit $ac_status); } && |
20659 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 24189 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20660 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24190 | { (case "(($ac_try" in |
20661 | (eval $ac_try) 2>&5 | 24191 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24192 | *) ac_try_echo=$ac_try;; | ||
24193 | esac | ||
24194 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24195 | (eval "$ac_try") 2>&5 | ||
20662 | ac_status=$? | 24196 | ac_status=$? |
20663 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24197 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20664 | (exit $ac_status); }; } && | 24198 | (exit $ac_status); }; } && |
20665 | { ac_try='test -s conftest.$ac_objext' | 24199 | { ac_try='test -s conftest.$ac_objext' |
20666 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24200 | { (case "(($ac_try" in |
20667 | (eval $ac_try) 2>&5 | 24201 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24202 | *) ac_try_echo=$ac_try;; | ||
24203 | esac | ||
24204 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24205 | (eval "$ac_try") 2>&5 | ||
20668 | ac_status=$? | 24206 | ac_status=$? |
20669 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24207 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20670 | (exit $ac_status); }; }; then | 24208 | (exit $ac_status); }; }; then |
@@ -20673,12 +24211,13 @@ else | |||
20673 | echo "$as_me: failed program was:" >&5 | 24211 | echo "$as_me: failed program was:" >&5 |
20674 | sed 's/^/| /' conftest.$ac_ext >&5 | 24212 | sed 's/^/| /' conftest.$ac_ext >&5 |
20675 | 24213 | ||
20676 | ac_cv_type_struct_timespec=no | 24214 | ac_cv_type_struct_timespec=no |
20677 | fi | 24215 | fi |
20678 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 24216 | |
24217 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
20679 | fi | 24218 | fi |
20680 | echo "$as_me:$LINENO: result: $ac_cv_type_struct_timespec" >&5 | 24219 | { echo "$as_me:$LINENO: result: $ac_cv_type_struct_timespec" >&5 |
20681 | echo "${ECHO_T}$ac_cv_type_struct_timespec" >&6 | 24220 | echo "${ECHO_T}$ac_cv_type_struct_timespec" >&6; } |
20682 | if test $ac_cv_type_struct_timespec = yes; then | 24221 | if test $ac_cv_type_struct_timespec = yes; then |
20683 | 24222 | ||
20684 | cat >>confdefs.h <<_ACEOF | 24223 | cat >>confdefs.h <<_ACEOF |
@@ -20735,13 +24274,22 @@ main() { exit(0); } | |||
20735 | 24274 | ||
20736 | _ACEOF | 24275 | _ACEOF |
20737 | rm -f conftest$ac_exeext | 24276 | rm -f conftest$ac_exeext |
20738 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 24277 | if { (ac_try="$ac_link" |
20739 | (eval $ac_link) 2>&5 | 24278 | case "(($ac_try" in |
24279 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
24280 | *) ac_try_echo=$ac_try;; | ||
24281 | esac | ||
24282 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24283 | (eval "$ac_link") 2>&5 | ||
20740 | ac_status=$? | 24284 | ac_status=$? |
20741 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24285 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20742 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 24286 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
20743 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24287 | { (case "(($ac_try" in |
20744 | (eval $ac_try) 2>&5 | 24288 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
24289 | *) ac_try_echo=$ac_try;; | ||
24290 | esac | ||
24291 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
24292 | (eval "$ac_try") 2>&5 | ||
20745 | ac_status=$? | 24293 | ac_status=$? |
20746 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24294 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20747 | (exit $ac_status); }; }; then | 24295 | (exit $ac_status); }; }; then |
@@ -20757,17 +24305,19 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
20757 | _ACEOF | 24305 | _ACEOF |
20758 | 24306 | ||
20759 | fi | 24307 | fi |
20760 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 24308 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
20761 | fi | 24309 | fi |
24310 | |||
24311 | |||
20762 | fi | 24312 | fi |
20763 | 24313 | ||
20764 | 24314 | ||
20765 | # look for field 'ut_host' in header 'utmp.h' | 24315 | # look for field 'ut_host' in header 'utmp.h' |
20766 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24316 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
20767 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_host | 24317 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_host |
20768 | echo "$as_me:$LINENO: checking for ut_host field in utmp.h" >&5 | 24318 | { echo "$as_me:$LINENO: checking for ut_host field in utmp.h" >&5 |
20769 | echo $ECHO_N "checking for ut_host field in utmp.h... $ECHO_C" >&6 | 24319 | echo $ECHO_N "checking for ut_host field in utmp.h... $ECHO_C" >&6; } |
20770 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24320 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
20771 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24321 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20772 | else | 24322 | else |
20773 | 24323 | ||
@@ -20792,8 +24342,8 @@ fi | |||
20792 | 24342 | ||
20793 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24343 | ossh_result=`eval 'echo $'"$ossh_varname"` |
20794 | if test -n "`echo $ossh_varname`"; then | 24344 | if test -n "`echo $ossh_varname`"; then |
20795 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24345 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
20796 | echo "${ECHO_T}$ossh_result" >&6 | 24346 | echo "${ECHO_T}$ossh_result" >&6; } |
20797 | if test "x$ossh_result" = "xyes"; then | 24347 | if test "x$ossh_result" = "xyes"; then |
20798 | 24348 | ||
20799 | cat >>confdefs.h <<\_ACEOF | 24349 | cat >>confdefs.h <<\_ACEOF |
@@ -20802,17 +24352,17 @@ _ACEOF | |||
20802 | 24352 | ||
20803 | fi | 24353 | fi |
20804 | else | 24354 | else |
20805 | echo "$as_me:$LINENO: result: no" >&5 | 24355 | { echo "$as_me:$LINENO: result: no" >&5 |
20806 | echo "${ECHO_T}no" >&6 | 24356 | echo "${ECHO_T}no" >&6; } |
20807 | fi | 24357 | fi |
20808 | 24358 | ||
20809 | 24359 | ||
20810 | # look for field 'ut_host' in header 'utmpx.h' | 24360 | # look for field 'ut_host' in header 'utmpx.h' |
20811 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24361 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
20812 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_host | 24362 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_host |
20813 | echo "$as_me:$LINENO: checking for ut_host field in utmpx.h" >&5 | 24363 | { echo "$as_me:$LINENO: checking for ut_host field in utmpx.h" >&5 |
20814 | echo $ECHO_N "checking for ut_host field in utmpx.h... $ECHO_C" >&6 | 24364 | echo $ECHO_N "checking for ut_host field in utmpx.h... $ECHO_C" >&6; } |
20815 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24365 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
20816 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24366 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20817 | else | 24367 | else |
20818 | 24368 | ||
@@ -20837,8 +24387,8 @@ fi | |||
20837 | 24387 | ||
20838 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24388 | ossh_result=`eval 'echo $'"$ossh_varname"` |
20839 | if test -n "`echo $ossh_varname`"; then | 24389 | if test -n "`echo $ossh_varname`"; then |
20840 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24390 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
20841 | echo "${ECHO_T}$ossh_result" >&6 | 24391 | echo "${ECHO_T}$ossh_result" >&6; } |
20842 | if test "x$ossh_result" = "xyes"; then | 24392 | if test "x$ossh_result" = "xyes"; then |
20843 | 24393 | ||
20844 | cat >>confdefs.h <<\_ACEOF | 24394 | cat >>confdefs.h <<\_ACEOF |
@@ -20847,17 +24397,17 @@ _ACEOF | |||
20847 | 24397 | ||
20848 | fi | 24398 | fi |
20849 | else | 24399 | else |
20850 | echo "$as_me:$LINENO: result: no" >&5 | 24400 | { echo "$as_me:$LINENO: result: no" >&5 |
20851 | echo "${ECHO_T}no" >&6 | 24401 | echo "${ECHO_T}no" >&6; } |
20852 | fi | 24402 | fi |
20853 | 24403 | ||
20854 | 24404 | ||
20855 | # look for field 'syslen' in header 'utmpx.h' | 24405 | # look for field 'syslen' in header 'utmpx.h' |
20856 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24406 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
20857 | ossh_varname="ossh_cv_$ossh_safe""_has_"syslen | 24407 | ossh_varname="ossh_cv_$ossh_safe""_has_"syslen |
20858 | echo "$as_me:$LINENO: checking for syslen field in utmpx.h" >&5 | 24408 | { echo "$as_me:$LINENO: checking for syslen field in utmpx.h" >&5 |
20859 | echo $ECHO_N "checking for syslen field in utmpx.h... $ECHO_C" >&6 | 24409 | echo $ECHO_N "checking for syslen field in utmpx.h... $ECHO_C" >&6; } |
20860 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24410 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
20861 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24411 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20862 | else | 24412 | else |
20863 | 24413 | ||
@@ -20882,8 +24432,8 @@ fi | |||
20882 | 24432 | ||
20883 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24433 | ossh_result=`eval 'echo $'"$ossh_varname"` |
20884 | if test -n "`echo $ossh_varname`"; then | 24434 | if test -n "`echo $ossh_varname`"; then |
20885 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24435 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
20886 | echo "${ECHO_T}$ossh_result" >&6 | 24436 | echo "${ECHO_T}$ossh_result" >&6; } |
20887 | if test "x$ossh_result" = "xyes"; then | 24437 | if test "x$ossh_result" = "xyes"; then |
20888 | 24438 | ||
20889 | cat >>confdefs.h <<\_ACEOF | 24439 | cat >>confdefs.h <<\_ACEOF |
@@ -20892,17 +24442,17 @@ _ACEOF | |||
20892 | 24442 | ||
20893 | fi | 24443 | fi |
20894 | else | 24444 | else |
20895 | echo "$as_me:$LINENO: result: no" >&5 | 24445 | { echo "$as_me:$LINENO: result: no" >&5 |
20896 | echo "${ECHO_T}no" >&6 | 24446 | echo "${ECHO_T}no" >&6; } |
20897 | fi | 24447 | fi |
20898 | 24448 | ||
20899 | 24449 | ||
20900 | # look for field 'ut_pid' in header 'utmp.h' | 24450 | # look for field 'ut_pid' in header 'utmp.h' |
20901 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24451 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
20902 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_pid | 24452 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_pid |
20903 | echo "$as_me:$LINENO: checking for ut_pid field in utmp.h" >&5 | 24453 | { echo "$as_me:$LINENO: checking for ut_pid field in utmp.h" >&5 |
20904 | echo $ECHO_N "checking for ut_pid field in utmp.h... $ECHO_C" >&6 | 24454 | echo $ECHO_N "checking for ut_pid field in utmp.h... $ECHO_C" >&6; } |
20905 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24455 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
20906 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24456 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20907 | else | 24457 | else |
20908 | 24458 | ||
@@ -20927,8 +24477,8 @@ fi | |||
20927 | 24477 | ||
20928 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24478 | ossh_result=`eval 'echo $'"$ossh_varname"` |
20929 | if test -n "`echo $ossh_varname`"; then | 24479 | if test -n "`echo $ossh_varname`"; then |
20930 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24480 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
20931 | echo "${ECHO_T}$ossh_result" >&6 | 24481 | echo "${ECHO_T}$ossh_result" >&6; } |
20932 | if test "x$ossh_result" = "xyes"; then | 24482 | if test "x$ossh_result" = "xyes"; then |
20933 | 24483 | ||
20934 | cat >>confdefs.h <<\_ACEOF | 24484 | cat >>confdefs.h <<\_ACEOF |
@@ -20937,17 +24487,17 @@ _ACEOF | |||
20937 | 24487 | ||
20938 | fi | 24488 | fi |
20939 | else | 24489 | else |
20940 | echo "$as_me:$LINENO: result: no" >&5 | 24490 | { echo "$as_me:$LINENO: result: no" >&5 |
20941 | echo "${ECHO_T}no" >&6 | 24491 | echo "${ECHO_T}no" >&6; } |
20942 | fi | 24492 | fi |
20943 | 24493 | ||
20944 | 24494 | ||
20945 | # look for field 'ut_type' in header 'utmp.h' | 24495 | # look for field 'ut_type' in header 'utmp.h' |
20946 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24496 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
20947 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_type | 24497 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_type |
20948 | echo "$as_me:$LINENO: checking for ut_type field in utmp.h" >&5 | 24498 | { echo "$as_me:$LINENO: checking for ut_type field in utmp.h" >&5 |
20949 | echo $ECHO_N "checking for ut_type field in utmp.h... $ECHO_C" >&6 | 24499 | echo $ECHO_N "checking for ut_type field in utmp.h... $ECHO_C" >&6; } |
20950 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24500 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
20951 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24501 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20952 | else | 24502 | else |
20953 | 24503 | ||
@@ -20972,8 +24522,8 @@ fi | |||
20972 | 24522 | ||
20973 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24523 | ossh_result=`eval 'echo $'"$ossh_varname"` |
20974 | if test -n "`echo $ossh_varname`"; then | 24524 | if test -n "`echo $ossh_varname`"; then |
20975 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24525 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
20976 | echo "${ECHO_T}$ossh_result" >&6 | 24526 | echo "${ECHO_T}$ossh_result" >&6; } |
20977 | if test "x$ossh_result" = "xyes"; then | 24527 | if test "x$ossh_result" = "xyes"; then |
20978 | 24528 | ||
20979 | cat >>confdefs.h <<\_ACEOF | 24529 | cat >>confdefs.h <<\_ACEOF |
@@ -20982,17 +24532,17 @@ _ACEOF | |||
20982 | 24532 | ||
20983 | fi | 24533 | fi |
20984 | else | 24534 | else |
20985 | echo "$as_me:$LINENO: result: no" >&5 | 24535 | { echo "$as_me:$LINENO: result: no" >&5 |
20986 | echo "${ECHO_T}no" >&6 | 24536 | echo "${ECHO_T}no" >&6; } |
20987 | fi | 24537 | fi |
20988 | 24538 | ||
20989 | 24539 | ||
20990 | # look for field 'ut_type' in header 'utmpx.h' | 24540 | # look for field 'ut_type' in header 'utmpx.h' |
20991 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24541 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
20992 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_type | 24542 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_type |
20993 | echo "$as_me:$LINENO: checking for ut_type field in utmpx.h" >&5 | 24543 | { echo "$as_me:$LINENO: checking for ut_type field in utmpx.h" >&5 |
20994 | echo $ECHO_N "checking for ut_type field in utmpx.h... $ECHO_C" >&6 | 24544 | echo $ECHO_N "checking for ut_type field in utmpx.h... $ECHO_C" >&6; } |
20995 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24545 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
20996 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24546 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
20997 | else | 24547 | else |
20998 | 24548 | ||
@@ -21017,8 +24567,8 @@ fi | |||
21017 | 24567 | ||
21018 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24568 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21019 | if test -n "`echo $ossh_varname`"; then | 24569 | if test -n "`echo $ossh_varname`"; then |
21020 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24570 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21021 | echo "${ECHO_T}$ossh_result" >&6 | 24571 | echo "${ECHO_T}$ossh_result" >&6; } |
21022 | if test "x$ossh_result" = "xyes"; then | 24572 | if test "x$ossh_result" = "xyes"; then |
21023 | 24573 | ||
21024 | cat >>confdefs.h <<\_ACEOF | 24574 | cat >>confdefs.h <<\_ACEOF |
@@ -21027,17 +24577,17 @@ _ACEOF | |||
21027 | 24577 | ||
21028 | fi | 24578 | fi |
21029 | else | 24579 | else |
21030 | echo "$as_me:$LINENO: result: no" >&5 | 24580 | { echo "$as_me:$LINENO: result: no" >&5 |
21031 | echo "${ECHO_T}no" >&6 | 24581 | echo "${ECHO_T}no" >&6; } |
21032 | fi | 24582 | fi |
21033 | 24583 | ||
21034 | 24584 | ||
21035 | # look for field 'ut_tv' in header 'utmp.h' | 24585 | # look for field 'ut_tv' in header 'utmp.h' |
21036 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24586 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
21037 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_tv | 24587 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_tv |
21038 | echo "$as_me:$LINENO: checking for ut_tv field in utmp.h" >&5 | 24588 | { echo "$as_me:$LINENO: checking for ut_tv field in utmp.h" >&5 |
21039 | echo $ECHO_N "checking for ut_tv field in utmp.h... $ECHO_C" >&6 | 24589 | echo $ECHO_N "checking for ut_tv field in utmp.h... $ECHO_C" >&6; } |
21040 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24590 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21041 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24591 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21042 | else | 24592 | else |
21043 | 24593 | ||
@@ -21062,8 +24612,8 @@ fi | |||
21062 | 24612 | ||
21063 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24613 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21064 | if test -n "`echo $ossh_varname`"; then | 24614 | if test -n "`echo $ossh_varname`"; then |
21065 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24615 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21066 | echo "${ECHO_T}$ossh_result" >&6 | 24616 | echo "${ECHO_T}$ossh_result" >&6; } |
21067 | if test "x$ossh_result" = "xyes"; then | 24617 | if test "x$ossh_result" = "xyes"; then |
21068 | 24618 | ||
21069 | cat >>confdefs.h <<\_ACEOF | 24619 | cat >>confdefs.h <<\_ACEOF |
@@ -21072,17 +24622,17 @@ _ACEOF | |||
21072 | 24622 | ||
21073 | fi | 24623 | fi |
21074 | else | 24624 | else |
21075 | echo "$as_me:$LINENO: result: no" >&5 | 24625 | { echo "$as_me:$LINENO: result: no" >&5 |
21076 | echo "${ECHO_T}no" >&6 | 24626 | echo "${ECHO_T}no" >&6; } |
21077 | fi | 24627 | fi |
21078 | 24628 | ||
21079 | 24629 | ||
21080 | # look for field 'ut_id' in header 'utmp.h' | 24630 | # look for field 'ut_id' in header 'utmp.h' |
21081 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24631 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
21082 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_id | 24632 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_id |
21083 | echo "$as_me:$LINENO: checking for ut_id field in utmp.h" >&5 | 24633 | { echo "$as_me:$LINENO: checking for ut_id field in utmp.h" >&5 |
21084 | echo $ECHO_N "checking for ut_id field in utmp.h... $ECHO_C" >&6 | 24634 | echo $ECHO_N "checking for ut_id field in utmp.h... $ECHO_C" >&6; } |
21085 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24635 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21086 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24636 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21087 | else | 24637 | else |
21088 | 24638 | ||
@@ -21107,8 +24657,8 @@ fi | |||
21107 | 24657 | ||
21108 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24658 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21109 | if test -n "`echo $ossh_varname`"; then | 24659 | if test -n "`echo $ossh_varname`"; then |
21110 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24660 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21111 | echo "${ECHO_T}$ossh_result" >&6 | 24661 | echo "${ECHO_T}$ossh_result" >&6; } |
21112 | if test "x$ossh_result" = "xyes"; then | 24662 | if test "x$ossh_result" = "xyes"; then |
21113 | 24663 | ||
21114 | cat >>confdefs.h <<\_ACEOF | 24664 | cat >>confdefs.h <<\_ACEOF |
@@ -21117,17 +24667,17 @@ _ACEOF | |||
21117 | 24667 | ||
21118 | fi | 24668 | fi |
21119 | else | 24669 | else |
21120 | echo "$as_me:$LINENO: result: no" >&5 | 24670 | { echo "$as_me:$LINENO: result: no" >&5 |
21121 | echo "${ECHO_T}no" >&6 | 24671 | echo "${ECHO_T}no" >&6; } |
21122 | fi | 24672 | fi |
21123 | 24673 | ||
21124 | 24674 | ||
21125 | # look for field 'ut_id' in header 'utmpx.h' | 24675 | # look for field 'ut_id' in header 'utmpx.h' |
21126 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24676 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
21127 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_id | 24677 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_id |
21128 | echo "$as_me:$LINENO: checking for ut_id field in utmpx.h" >&5 | 24678 | { echo "$as_me:$LINENO: checking for ut_id field in utmpx.h" >&5 |
21129 | echo $ECHO_N "checking for ut_id field in utmpx.h... $ECHO_C" >&6 | 24679 | echo $ECHO_N "checking for ut_id field in utmpx.h... $ECHO_C" >&6; } |
21130 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24680 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21131 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24681 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21132 | else | 24682 | else |
21133 | 24683 | ||
@@ -21152,8 +24702,8 @@ fi | |||
21152 | 24702 | ||
21153 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24703 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21154 | if test -n "`echo $ossh_varname`"; then | 24704 | if test -n "`echo $ossh_varname`"; then |
21155 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24705 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21156 | echo "${ECHO_T}$ossh_result" >&6 | 24706 | echo "${ECHO_T}$ossh_result" >&6; } |
21157 | if test "x$ossh_result" = "xyes"; then | 24707 | if test "x$ossh_result" = "xyes"; then |
21158 | 24708 | ||
21159 | cat >>confdefs.h <<\_ACEOF | 24709 | cat >>confdefs.h <<\_ACEOF |
@@ -21162,17 +24712,17 @@ _ACEOF | |||
21162 | 24712 | ||
21163 | fi | 24713 | fi |
21164 | else | 24714 | else |
21165 | echo "$as_me:$LINENO: result: no" >&5 | 24715 | { echo "$as_me:$LINENO: result: no" >&5 |
21166 | echo "${ECHO_T}no" >&6 | 24716 | echo "${ECHO_T}no" >&6; } |
21167 | fi | 24717 | fi |
21168 | 24718 | ||
21169 | 24719 | ||
21170 | # look for field 'ut_addr' in header 'utmp.h' | 24720 | # look for field 'ut_addr' in header 'utmp.h' |
21171 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24721 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
21172 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr | 24722 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr |
21173 | echo "$as_me:$LINENO: checking for ut_addr field in utmp.h" >&5 | 24723 | { echo "$as_me:$LINENO: checking for ut_addr field in utmp.h" >&5 |
21174 | echo $ECHO_N "checking for ut_addr field in utmp.h... $ECHO_C" >&6 | 24724 | echo $ECHO_N "checking for ut_addr field in utmp.h... $ECHO_C" >&6; } |
21175 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24725 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21176 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24726 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21177 | else | 24727 | else |
21178 | 24728 | ||
@@ -21197,8 +24747,8 @@ fi | |||
21197 | 24747 | ||
21198 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24748 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21199 | if test -n "`echo $ossh_varname`"; then | 24749 | if test -n "`echo $ossh_varname`"; then |
21200 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24750 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21201 | echo "${ECHO_T}$ossh_result" >&6 | 24751 | echo "${ECHO_T}$ossh_result" >&6; } |
21202 | if test "x$ossh_result" = "xyes"; then | 24752 | if test "x$ossh_result" = "xyes"; then |
21203 | 24753 | ||
21204 | cat >>confdefs.h <<\_ACEOF | 24754 | cat >>confdefs.h <<\_ACEOF |
@@ -21207,17 +24757,17 @@ _ACEOF | |||
21207 | 24757 | ||
21208 | fi | 24758 | fi |
21209 | else | 24759 | else |
21210 | echo "$as_me:$LINENO: result: no" >&5 | 24760 | { echo "$as_me:$LINENO: result: no" >&5 |
21211 | echo "${ECHO_T}no" >&6 | 24761 | echo "${ECHO_T}no" >&6; } |
21212 | fi | 24762 | fi |
21213 | 24763 | ||
21214 | 24764 | ||
21215 | # look for field 'ut_addr' in header 'utmpx.h' | 24765 | # look for field 'ut_addr' in header 'utmpx.h' |
21216 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24766 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
21217 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr | 24767 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr |
21218 | echo "$as_me:$LINENO: checking for ut_addr field in utmpx.h" >&5 | 24768 | { echo "$as_me:$LINENO: checking for ut_addr field in utmpx.h" >&5 |
21219 | echo $ECHO_N "checking for ut_addr field in utmpx.h... $ECHO_C" >&6 | 24769 | echo $ECHO_N "checking for ut_addr field in utmpx.h... $ECHO_C" >&6; } |
21220 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24770 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21221 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24771 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21222 | else | 24772 | else |
21223 | 24773 | ||
@@ -21242,8 +24792,8 @@ fi | |||
21242 | 24792 | ||
21243 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24793 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21244 | if test -n "`echo $ossh_varname`"; then | 24794 | if test -n "`echo $ossh_varname`"; then |
21245 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24795 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21246 | echo "${ECHO_T}$ossh_result" >&6 | 24796 | echo "${ECHO_T}$ossh_result" >&6; } |
21247 | if test "x$ossh_result" = "xyes"; then | 24797 | if test "x$ossh_result" = "xyes"; then |
21248 | 24798 | ||
21249 | cat >>confdefs.h <<\_ACEOF | 24799 | cat >>confdefs.h <<\_ACEOF |
@@ -21252,17 +24802,17 @@ _ACEOF | |||
21252 | 24802 | ||
21253 | fi | 24803 | fi |
21254 | else | 24804 | else |
21255 | echo "$as_me:$LINENO: result: no" >&5 | 24805 | { echo "$as_me:$LINENO: result: no" >&5 |
21256 | echo "${ECHO_T}no" >&6 | 24806 | echo "${ECHO_T}no" >&6; } |
21257 | fi | 24807 | fi |
21258 | 24808 | ||
21259 | 24809 | ||
21260 | # look for field 'ut_addr_v6' in header 'utmp.h' | 24810 | # look for field 'ut_addr_v6' in header 'utmp.h' |
21261 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24811 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
21262 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr_v6 | 24812 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr_v6 |
21263 | echo "$as_me:$LINENO: checking for ut_addr_v6 field in utmp.h" >&5 | 24813 | { echo "$as_me:$LINENO: checking for ut_addr_v6 field in utmp.h" >&5 |
21264 | echo $ECHO_N "checking for ut_addr_v6 field in utmp.h... $ECHO_C" >&6 | 24814 | echo $ECHO_N "checking for ut_addr_v6 field in utmp.h... $ECHO_C" >&6; } |
21265 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24815 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21266 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24816 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21267 | else | 24817 | else |
21268 | 24818 | ||
@@ -21287,8 +24837,8 @@ fi | |||
21287 | 24837 | ||
21288 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24838 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21289 | if test -n "`echo $ossh_varname`"; then | 24839 | if test -n "`echo $ossh_varname`"; then |
21290 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24840 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21291 | echo "${ECHO_T}$ossh_result" >&6 | 24841 | echo "${ECHO_T}$ossh_result" >&6; } |
21292 | if test "x$ossh_result" = "xyes"; then | 24842 | if test "x$ossh_result" = "xyes"; then |
21293 | 24843 | ||
21294 | cat >>confdefs.h <<\_ACEOF | 24844 | cat >>confdefs.h <<\_ACEOF |
@@ -21297,17 +24847,17 @@ _ACEOF | |||
21297 | 24847 | ||
21298 | fi | 24848 | fi |
21299 | else | 24849 | else |
21300 | echo "$as_me:$LINENO: result: no" >&5 | 24850 | { echo "$as_me:$LINENO: result: no" >&5 |
21301 | echo "${ECHO_T}no" >&6 | 24851 | echo "${ECHO_T}no" >&6; } |
21302 | fi | 24852 | fi |
21303 | 24853 | ||
21304 | 24854 | ||
21305 | # look for field 'ut_addr_v6' in header 'utmpx.h' | 24855 | # look for field 'ut_addr_v6' in header 'utmpx.h' |
21306 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24856 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
21307 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr_v6 | 24857 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr_v6 |
21308 | echo "$as_me:$LINENO: checking for ut_addr_v6 field in utmpx.h" >&5 | 24858 | { echo "$as_me:$LINENO: checking for ut_addr_v6 field in utmpx.h" >&5 |
21309 | echo $ECHO_N "checking for ut_addr_v6 field in utmpx.h... $ECHO_C" >&6 | 24859 | echo $ECHO_N "checking for ut_addr_v6 field in utmpx.h... $ECHO_C" >&6; } |
21310 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24860 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21311 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24861 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21312 | else | 24862 | else |
21313 | 24863 | ||
@@ -21332,8 +24882,8 @@ fi | |||
21332 | 24882 | ||
21333 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24883 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21334 | if test -n "`echo $ossh_varname`"; then | 24884 | if test -n "`echo $ossh_varname`"; then |
21335 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24885 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21336 | echo "${ECHO_T}$ossh_result" >&6 | 24886 | echo "${ECHO_T}$ossh_result" >&6; } |
21337 | if test "x$ossh_result" = "xyes"; then | 24887 | if test "x$ossh_result" = "xyes"; then |
21338 | 24888 | ||
21339 | cat >>confdefs.h <<\_ACEOF | 24889 | cat >>confdefs.h <<\_ACEOF |
@@ -21342,17 +24892,17 @@ _ACEOF | |||
21342 | 24892 | ||
21343 | fi | 24893 | fi |
21344 | else | 24894 | else |
21345 | echo "$as_me:$LINENO: result: no" >&5 | 24895 | { echo "$as_me:$LINENO: result: no" >&5 |
21346 | echo "${ECHO_T}no" >&6 | 24896 | echo "${ECHO_T}no" >&6; } |
21347 | fi | 24897 | fi |
21348 | 24898 | ||
21349 | 24899 | ||
21350 | # look for field 'ut_exit' in header 'utmp.h' | 24900 | # look for field 'ut_exit' in header 'utmp.h' |
21351 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24901 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
21352 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_exit | 24902 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_exit |
21353 | echo "$as_me:$LINENO: checking for ut_exit field in utmp.h" >&5 | 24903 | { echo "$as_me:$LINENO: checking for ut_exit field in utmp.h" >&5 |
21354 | echo $ECHO_N "checking for ut_exit field in utmp.h... $ECHO_C" >&6 | 24904 | echo $ECHO_N "checking for ut_exit field in utmp.h... $ECHO_C" >&6; } |
21355 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24905 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21356 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24906 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21357 | else | 24907 | else |
21358 | 24908 | ||
@@ -21377,8 +24927,8 @@ fi | |||
21377 | 24927 | ||
21378 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24928 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21379 | if test -n "`echo $ossh_varname`"; then | 24929 | if test -n "`echo $ossh_varname`"; then |
21380 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24930 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21381 | echo "${ECHO_T}$ossh_result" >&6 | 24931 | echo "${ECHO_T}$ossh_result" >&6; } |
21382 | if test "x$ossh_result" = "xyes"; then | 24932 | if test "x$ossh_result" = "xyes"; then |
21383 | 24933 | ||
21384 | cat >>confdefs.h <<\_ACEOF | 24934 | cat >>confdefs.h <<\_ACEOF |
@@ -21387,17 +24937,17 @@ _ACEOF | |||
21387 | 24937 | ||
21388 | fi | 24938 | fi |
21389 | else | 24939 | else |
21390 | echo "$as_me:$LINENO: result: no" >&5 | 24940 | { echo "$as_me:$LINENO: result: no" >&5 |
21391 | echo "${ECHO_T}no" >&6 | 24941 | echo "${ECHO_T}no" >&6; } |
21392 | fi | 24942 | fi |
21393 | 24943 | ||
21394 | 24944 | ||
21395 | # look for field 'ut_time' in header 'utmp.h' | 24945 | # look for field 'ut_time' in header 'utmp.h' |
21396 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` | 24946 | ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` |
21397 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time | 24947 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time |
21398 | echo "$as_me:$LINENO: checking for ut_time field in utmp.h" >&5 | 24948 | { echo "$as_me:$LINENO: checking for ut_time field in utmp.h" >&5 |
21399 | echo $ECHO_N "checking for ut_time field in utmp.h... $ECHO_C" >&6 | 24949 | echo $ECHO_N "checking for ut_time field in utmp.h... $ECHO_C" >&6; } |
21400 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24950 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21401 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24951 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21402 | else | 24952 | else |
21403 | 24953 | ||
@@ -21422,8 +24972,8 @@ fi | |||
21422 | 24972 | ||
21423 | ossh_result=`eval 'echo $'"$ossh_varname"` | 24973 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21424 | if test -n "`echo $ossh_varname`"; then | 24974 | if test -n "`echo $ossh_varname`"; then |
21425 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 24975 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21426 | echo "${ECHO_T}$ossh_result" >&6 | 24976 | echo "${ECHO_T}$ossh_result" >&6; } |
21427 | if test "x$ossh_result" = "xyes"; then | 24977 | if test "x$ossh_result" = "xyes"; then |
21428 | 24978 | ||
21429 | cat >>confdefs.h <<\_ACEOF | 24979 | cat >>confdefs.h <<\_ACEOF |
@@ -21432,17 +24982,17 @@ _ACEOF | |||
21432 | 24982 | ||
21433 | fi | 24983 | fi |
21434 | else | 24984 | else |
21435 | echo "$as_me:$LINENO: result: no" >&5 | 24985 | { echo "$as_me:$LINENO: result: no" >&5 |
21436 | echo "${ECHO_T}no" >&6 | 24986 | echo "${ECHO_T}no" >&6; } |
21437 | fi | 24987 | fi |
21438 | 24988 | ||
21439 | 24989 | ||
21440 | # look for field 'ut_time' in header 'utmpx.h' | 24990 | # look for field 'ut_time' in header 'utmpx.h' |
21441 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 24991 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
21442 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time | 24992 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time |
21443 | echo "$as_me:$LINENO: checking for ut_time field in utmpx.h" >&5 | 24993 | { echo "$as_me:$LINENO: checking for ut_time field in utmpx.h" >&5 |
21444 | echo $ECHO_N "checking for ut_time field in utmpx.h... $ECHO_C" >&6 | 24994 | echo $ECHO_N "checking for ut_time field in utmpx.h... $ECHO_C" >&6; } |
21445 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 24995 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21446 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 24996 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21447 | else | 24997 | else |
21448 | 24998 | ||
@@ -21467,8 +25017,8 @@ fi | |||
21467 | 25017 | ||
21468 | ossh_result=`eval 'echo $'"$ossh_varname"` | 25018 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21469 | if test -n "`echo $ossh_varname`"; then | 25019 | if test -n "`echo $ossh_varname`"; then |
21470 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 25020 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21471 | echo "${ECHO_T}$ossh_result" >&6 | 25021 | echo "${ECHO_T}$ossh_result" >&6; } |
21472 | if test "x$ossh_result" = "xyes"; then | 25022 | if test "x$ossh_result" = "xyes"; then |
21473 | 25023 | ||
21474 | cat >>confdefs.h <<\_ACEOF | 25024 | cat >>confdefs.h <<\_ACEOF |
@@ -21477,17 +25027,17 @@ _ACEOF | |||
21477 | 25027 | ||
21478 | fi | 25028 | fi |
21479 | else | 25029 | else |
21480 | echo "$as_me:$LINENO: result: no" >&5 | 25030 | { echo "$as_me:$LINENO: result: no" >&5 |
21481 | echo "${ECHO_T}no" >&6 | 25031 | echo "${ECHO_T}no" >&6; } |
21482 | fi | 25032 | fi |
21483 | 25033 | ||
21484 | 25034 | ||
21485 | # look for field 'ut_tv' in header 'utmpx.h' | 25035 | # look for field 'ut_tv' in header 'utmpx.h' |
21486 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` | 25036 | ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` |
21487 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_tv | 25037 | ossh_varname="ossh_cv_$ossh_safe""_has_"ut_tv |
21488 | echo "$as_me:$LINENO: checking for ut_tv field in utmpx.h" >&5 | 25038 | { echo "$as_me:$LINENO: checking for ut_tv field in utmpx.h" >&5 |
21489 | echo $ECHO_N "checking for ut_tv field in utmpx.h... $ECHO_C" >&6 | 25039 | echo $ECHO_N "checking for ut_tv field in utmpx.h... $ECHO_C" >&6; } |
21490 | if eval "test \"\${$ossh_varname+set}\" = set"; then | 25040 | if { as_var=$ossh_varname; eval "test \"\${$as_var+set}\" = set"; }; then |
21491 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25041 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21492 | else | 25042 | else |
21493 | 25043 | ||
@@ -21512,8 +25062,8 @@ fi | |||
21512 | 25062 | ||
21513 | ossh_result=`eval 'echo $'"$ossh_varname"` | 25063 | ossh_result=`eval 'echo $'"$ossh_varname"` |
21514 | if test -n "`echo $ossh_varname`"; then | 25064 | if test -n "`echo $ossh_varname`"; then |
21515 | echo "$as_me:$LINENO: result: $ossh_result" >&5 | 25065 | { echo "$as_me:$LINENO: result: $ossh_result" >&5 |
21516 | echo "${ECHO_T}$ossh_result" >&6 | 25066 | echo "${ECHO_T}$ossh_result" >&6; } |
21517 | if test "x$ossh_result" = "xyes"; then | 25067 | if test "x$ossh_result" = "xyes"; then |
21518 | 25068 | ||
21519 | cat >>confdefs.h <<\_ACEOF | 25069 | cat >>confdefs.h <<\_ACEOF |
@@ -21522,13 +25072,13 @@ _ACEOF | |||
21522 | 25072 | ||
21523 | fi | 25073 | fi |
21524 | else | 25074 | else |
21525 | echo "$as_me:$LINENO: result: no" >&5 | 25075 | { echo "$as_me:$LINENO: result: no" >&5 |
21526 | echo "${ECHO_T}no" >&6 | 25076 | echo "${ECHO_T}no" >&6; } |
21527 | fi | 25077 | fi |
21528 | 25078 | ||
21529 | 25079 | ||
21530 | echo "$as_me:$LINENO: checking for struct stat.st_blksize" >&5 | 25080 | { echo "$as_me:$LINENO: checking for struct stat.st_blksize" >&5 |
21531 | echo $ECHO_N "checking for struct stat.st_blksize... $ECHO_C" >&6 | 25081 | echo $ECHO_N "checking for struct stat.st_blksize... $ECHO_C" >&6; } |
21532 | if test "${ac_cv_member_struct_stat_st_blksize+set}" = set; then | 25082 | if test "${ac_cv_member_struct_stat_st_blksize+set}" = set; then |
21533 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25083 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21534 | else | 25084 | else |
@@ -21550,23 +25100,36 @@ return 0; | |||
21550 | } | 25100 | } |
21551 | _ACEOF | 25101 | _ACEOF |
21552 | rm -f conftest.$ac_objext | 25102 | rm -f conftest.$ac_objext |
21553 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25103 | if { (ac_try="$ac_compile" |
21554 | (eval $ac_compile) 2>conftest.er1 | 25104 | case "(($ac_try" in |
25105 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25106 | *) ac_try_echo=$ac_try;; | ||
25107 | esac | ||
25108 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25109 | (eval "$ac_compile") 2>conftest.er1 | ||
21555 | ac_status=$? | 25110 | ac_status=$? |
21556 | grep -v '^ *+' conftest.er1 >conftest.err | 25111 | grep -v '^ *+' conftest.er1 >conftest.err |
21557 | rm -f conftest.er1 | 25112 | rm -f conftest.er1 |
21558 | cat conftest.err >&5 | 25113 | cat conftest.err >&5 |
21559 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25114 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21560 | (exit $ac_status); } && | 25115 | (exit $ac_status); } && |
21561 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25116 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21562 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25117 | { (case "(($ac_try" in |
21563 | (eval $ac_try) 2>&5 | 25118 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25119 | *) ac_try_echo=$ac_try;; | ||
25120 | esac | ||
25121 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25122 | (eval "$ac_try") 2>&5 | ||
21564 | ac_status=$? | 25123 | ac_status=$? |
21565 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25124 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21566 | (exit $ac_status); }; } && | 25125 | (exit $ac_status); }; } && |
21567 | { ac_try='test -s conftest.$ac_objext' | 25126 | { ac_try='test -s conftest.$ac_objext' |
21568 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25127 | { (case "(($ac_try" in |
21569 | (eval $ac_try) 2>&5 | 25128 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25129 | *) ac_try_echo=$ac_try;; | ||
25130 | esac | ||
25131 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25132 | (eval "$ac_try") 2>&5 | ||
21570 | ac_status=$? | 25133 | ac_status=$? |
21571 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25134 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21572 | (exit $ac_status); }; }; then | 25135 | (exit $ac_status); }; }; then |
@@ -21575,7 +25138,7 @@ else | |||
21575 | echo "$as_me: failed program was:" >&5 | 25138 | echo "$as_me: failed program was:" >&5 |
21576 | sed 's/^/| /' conftest.$ac_ext >&5 | 25139 | sed 's/^/| /' conftest.$ac_ext >&5 |
21577 | 25140 | ||
21578 | cat >conftest.$ac_ext <<_ACEOF | 25141 | cat >conftest.$ac_ext <<_ACEOF |
21579 | /* confdefs.h. */ | 25142 | /* confdefs.h. */ |
21580 | _ACEOF | 25143 | _ACEOF |
21581 | cat confdefs.h >>conftest.$ac_ext | 25144 | cat confdefs.h >>conftest.$ac_ext |
@@ -21593,23 +25156,36 @@ return 0; | |||
21593 | } | 25156 | } |
21594 | _ACEOF | 25157 | _ACEOF |
21595 | rm -f conftest.$ac_objext | 25158 | rm -f conftest.$ac_objext |
21596 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25159 | if { (ac_try="$ac_compile" |
21597 | (eval $ac_compile) 2>conftest.er1 | 25160 | case "(($ac_try" in |
25161 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25162 | *) ac_try_echo=$ac_try;; | ||
25163 | esac | ||
25164 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25165 | (eval "$ac_compile") 2>conftest.er1 | ||
21598 | ac_status=$? | 25166 | ac_status=$? |
21599 | grep -v '^ *+' conftest.er1 >conftest.err | 25167 | grep -v '^ *+' conftest.er1 >conftest.err |
21600 | rm -f conftest.er1 | 25168 | rm -f conftest.er1 |
21601 | cat conftest.err >&5 | 25169 | cat conftest.err >&5 |
21602 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25170 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21603 | (exit $ac_status); } && | 25171 | (exit $ac_status); } && |
21604 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25172 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21605 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25173 | { (case "(($ac_try" in |
21606 | (eval $ac_try) 2>&5 | 25174 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25175 | *) ac_try_echo=$ac_try;; | ||
25176 | esac | ||
25177 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25178 | (eval "$ac_try") 2>&5 | ||
21607 | ac_status=$? | 25179 | ac_status=$? |
21608 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25180 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21609 | (exit $ac_status); }; } && | 25181 | (exit $ac_status); }; } && |
21610 | { ac_try='test -s conftest.$ac_objext' | 25182 | { ac_try='test -s conftest.$ac_objext' |
21611 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25183 | { (case "(($ac_try" in |
21612 | (eval $ac_try) 2>&5 | 25184 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25185 | *) ac_try_echo=$ac_try;; | ||
25186 | esac | ||
25187 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25188 | (eval "$ac_try") 2>&5 | ||
21613 | ac_status=$? | 25189 | ac_status=$? |
21614 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25190 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21615 | (exit $ac_status); }; }; then | 25191 | (exit $ac_status); }; }; then |
@@ -21618,14 +25194,16 @@ else | |||
21618 | echo "$as_me: failed program was:" >&5 | 25194 | echo "$as_me: failed program was:" >&5 |
21619 | sed 's/^/| /' conftest.$ac_ext >&5 | 25195 | sed 's/^/| /' conftest.$ac_ext >&5 |
21620 | 25196 | ||
21621 | ac_cv_member_struct_stat_st_blksize=no | 25197 | ac_cv_member_struct_stat_st_blksize=no |
21622 | fi | 25198 | fi |
21623 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25199 | |
25200 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21624 | fi | 25201 | fi |
21625 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25202 | |
25203 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21626 | fi | 25204 | fi |
21627 | echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_blksize" >&5 | 25205 | { echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_blksize" >&5 |
21628 | echo "${ECHO_T}$ac_cv_member_struct_stat_st_blksize" >&6 | 25206 | echo "${ECHO_T}$ac_cv_member_struct_stat_st_blksize" >&6; } |
21629 | if test $ac_cv_member_struct_stat_st_blksize = yes; then | 25207 | if test $ac_cv_member_struct_stat_st_blksize = yes; then |
21630 | 25208 | ||
21631 | cat >>confdefs.h <<_ACEOF | 25209 | cat >>confdefs.h <<_ACEOF |
@@ -21635,8 +25213,8 @@ _ACEOF | |||
21635 | 25213 | ||
21636 | fi | 25214 | fi |
21637 | 25215 | ||
21638 | echo "$as_me:$LINENO: checking for struct __res_state.retrans" >&5 | 25216 | { echo "$as_me:$LINENO: checking for struct __res_state.retrans" >&5 |
21639 | echo $ECHO_N "checking for struct __res_state.retrans... $ECHO_C" >&6 | 25217 | echo $ECHO_N "checking for struct __res_state.retrans... $ECHO_C" >&6; } |
21640 | if test "${ac_cv_member_struct___res_state_retrans+set}" = set; then | 25218 | if test "${ac_cv_member_struct___res_state_retrans+set}" = set; then |
21641 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25219 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21642 | else | 25220 | else |
@@ -21667,23 +25245,36 @@ return 0; | |||
21667 | } | 25245 | } |
21668 | _ACEOF | 25246 | _ACEOF |
21669 | rm -f conftest.$ac_objext | 25247 | rm -f conftest.$ac_objext |
21670 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25248 | if { (ac_try="$ac_compile" |
21671 | (eval $ac_compile) 2>conftest.er1 | 25249 | case "(($ac_try" in |
25250 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25251 | *) ac_try_echo=$ac_try;; | ||
25252 | esac | ||
25253 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25254 | (eval "$ac_compile") 2>conftest.er1 | ||
21672 | ac_status=$? | 25255 | ac_status=$? |
21673 | grep -v '^ *+' conftest.er1 >conftest.err | 25256 | grep -v '^ *+' conftest.er1 >conftest.err |
21674 | rm -f conftest.er1 | 25257 | rm -f conftest.er1 |
21675 | cat conftest.err >&5 | 25258 | cat conftest.err >&5 |
21676 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25259 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21677 | (exit $ac_status); } && | 25260 | (exit $ac_status); } && |
21678 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25261 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21679 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25262 | { (case "(($ac_try" in |
21680 | (eval $ac_try) 2>&5 | 25263 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25264 | *) ac_try_echo=$ac_try;; | ||
25265 | esac | ||
25266 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25267 | (eval "$ac_try") 2>&5 | ||
21681 | ac_status=$? | 25268 | ac_status=$? |
21682 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25269 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21683 | (exit $ac_status); }; } && | 25270 | (exit $ac_status); }; } && |
21684 | { ac_try='test -s conftest.$ac_objext' | 25271 | { ac_try='test -s conftest.$ac_objext' |
21685 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25272 | { (case "(($ac_try" in |
21686 | (eval $ac_try) 2>&5 | 25273 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25274 | *) ac_try_echo=$ac_try;; | ||
25275 | esac | ||
25276 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25277 | (eval "$ac_try") 2>&5 | ||
21687 | ac_status=$? | 25278 | ac_status=$? |
21688 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25279 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21689 | (exit $ac_status); }; }; then | 25280 | (exit $ac_status); }; }; then |
@@ -21692,7 +25283,7 @@ else | |||
21692 | echo "$as_me: failed program was:" >&5 | 25283 | echo "$as_me: failed program was:" >&5 |
21693 | sed 's/^/| /' conftest.$ac_ext >&5 | 25284 | sed 's/^/| /' conftest.$ac_ext >&5 |
21694 | 25285 | ||
21695 | cat >conftest.$ac_ext <<_ACEOF | 25286 | cat >conftest.$ac_ext <<_ACEOF |
21696 | /* confdefs.h. */ | 25287 | /* confdefs.h. */ |
21697 | _ACEOF | 25288 | _ACEOF |
21698 | cat confdefs.h >>conftest.$ac_ext | 25289 | cat confdefs.h >>conftest.$ac_ext |
@@ -21719,23 +25310,36 @@ return 0; | |||
21719 | } | 25310 | } |
21720 | _ACEOF | 25311 | _ACEOF |
21721 | rm -f conftest.$ac_objext | 25312 | rm -f conftest.$ac_objext |
21722 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25313 | if { (ac_try="$ac_compile" |
21723 | (eval $ac_compile) 2>conftest.er1 | 25314 | case "(($ac_try" in |
25315 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25316 | *) ac_try_echo=$ac_try;; | ||
25317 | esac | ||
25318 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25319 | (eval "$ac_compile") 2>conftest.er1 | ||
21724 | ac_status=$? | 25320 | ac_status=$? |
21725 | grep -v '^ *+' conftest.er1 >conftest.err | 25321 | grep -v '^ *+' conftest.er1 >conftest.err |
21726 | rm -f conftest.er1 | 25322 | rm -f conftest.er1 |
21727 | cat conftest.err >&5 | 25323 | cat conftest.err >&5 |
21728 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25324 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21729 | (exit $ac_status); } && | 25325 | (exit $ac_status); } && |
21730 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25326 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21731 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25327 | { (case "(($ac_try" in |
21732 | (eval $ac_try) 2>&5 | 25328 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25329 | *) ac_try_echo=$ac_try;; | ||
25330 | esac | ||
25331 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25332 | (eval "$ac_try") 2>&5 | ||
21733 | ac_status=$? | 25333 | ac_status=$? |
21734 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25334 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21735 | (exit $ac_status); }; } && | 25335 | (exit $ac_status); }; } && |
21736 | { ac_try='test -s conftest.$ac_objext' | 25336 | { ac_try='test -s conftest.$ac_objext' |
21737 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25337 | { (case "(($ac_try" in |
21738 | (eval $ac_try) 2>&5 | 25338 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25339 | *) ac_try_echo=$ac_try;; | ||
25340 | esac | ||
25341 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25342 | (eval "$ac_try") 2>&5 | ||
21739 | ac_status=$? | 25343 | ac_status=$? |
21740 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25344 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21741 | (exit $ac_status); }; }; then | 25345 | (exit $ac_status); }; }; then |
@@ -21744,14 +25348,16 @@ else | |||
21744 | echo "$as_me: failed program was:" >&5 | 25348 | echo "$as_me: failed program was:" >&5 |
21745 | sed 's/^/| /' conftest.$ac_ext >&5 | 25349 | sed 's/^/| /' conftest.$ac_ext >&5 |
21746 | 25350 | ||
21747 | ac_cv_member_struct___res_state_retrans=no | 25351 | ac_cv_member_struct___res_state_retrans=no |
21748 | fi | 25352 | fi |
21749 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25353 | |
25354 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21750 | fi | 25355 | fi |
21751 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25356 | |
25357 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21752 | fi | 25358 | fi |
21753 | echo "$as_me:$LINENO: result: $ac_cv_member_struct___res_state_retrans" >&5 | 25359 | { echo "$as_me:$LINENO: result: $ac_cv_member_struct___res_state_retrans" >&5 |
21754 | echo "${ECHO_T}$ac_cv_member_struct___res_state_retrans" >&6 | 25360 | echo "${ECHO_T}$ac_cv_member_struct___res_state_retrans" >&6; } |
21755 | if test $ac_cv_member_struct___res_state_retrans = yes; then | 25361 | if test $ac_cv_member_struct___res_state_retrans = yes; then |
21756 | : | 25362 | : |
21757 | else | 25363 | else |
@@ -21763,8 +25369,8 @@ _ACEOF | |||
21763 | fi | 25369 | fi |
21764 | 25370 | ||
21765 | 25371 | ||
21766 | echo "$as_me:$LINENO: checking for ss_family field in struct sockaddr_storage" >&5 | 25372 | { echo "$as_me:$LINENO: checking for ss_family field in struct sockaddr_storage" >&5 |
21767 | echo $ECHO_N "checking for ss_family field in struct sockaddr_storage... $ECHO_C" >&6 | 25373 | echo $ECHO_N "checking for ss_family field in struct sockaddr_storage... $ECHO_C" >&6; } |
21768 | if test "${ac_cv_have_ss_family_in_struct_ss+set}" = set; then | 25374 | if test "${ac_cv_have_ss_family_in_struct_ss+set}" = set; then |
21769 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25375 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21770 | else | 25376 | else |
@@ -21788,23 +25394,36 @@ main () | |||
21788 | } | 25394 | } |
21789 | _ACEOF | 25395 | _ACEOF |
21790 | rm -f conftest.$ac_objext | 25396 | rm -f conftest.$ac_objext |
21791 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25397 | if { (ac_try="$ac_compile" |
21792 | (eval $ac_compile) 2>conftest.er1 | 25398 | case "(($ac_try" in |
25399 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25400 | *) ac_try_echo=$ac_try;; | ||
25401 | esac | ||
25402 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25403 | (eval "$ac_compile") 2>conftest.er1 | ||
21793 | ac_status=$? | 25404 | ac_status=$? |
21794 | grep -v '^ *+' conftest.er1 >conftest.err | 25405 | grep -v '^ *+' conftest.er1 >conftest.err |
21795 | rm -f conftest.er1 | 25406 | rm -f conftest.er1 |
21796 | cat conftest.err >&5 | 25407 | cat conftest.err >&5 |
21797 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25408 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21798 | (exit $ac_status); } && | 25409 | (exit $ac_status); } && |
21799 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25410 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21800 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25411 | { (case "(($ac_try" in |
21801 | (eval $ac_try) 2>&5 | 25412 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25413 | *) ac_try_echo=$ac_try;; | ||
25414 | esac | ||
25415 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25416 | (eval "$ac_try") 2>&5 | ||
21802 | ac_status=$? | 25417 | ac_status=$? |
21803 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25418 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21804 | (exit $ac_status); }; } && | 25419 | (exit $ac_status); }; } && |
21805 | { ac_try='test -s conftest.$ac_objext' | 25420 | { ac_try='test -s conftest.$ac_objext' |
21806 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25421 | { (case "(($ac_try" in |
21807 | (eval $ac_try) 2>&5 | 25422 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25423 | *) ac_try_echo=$ac_try;; | ||
25424 | esac | ||
25425 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25426 | (eval "$ac_try") 2>&5 | ||
21808 | ac_status=$? | 25427 | ac_status=$? |
21809 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25428 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21810 | (exit $ac_status); }; }; then | 25429 | (exit $ac_status); }; }; then |
@@ -21813,13 +25432,14 @@ else | |||
21813 | echo "$as_me: failed program was:" >&5 | 25432 | echo "$as_me: failed program was:" >&5 |
21814 | sed 's/^/| /' conftest.$ac_ext >&5 | 25433 | sed 's/^/| /' conftest.$ac_ext >&5 |
21815 | 25434 | ||
21816 | ac_cv_have_ss_family_in_struct_ss="no" | 25435 | ac_cv_have_ss_family_in_struct_ss="no" |
21817 | fi | 25436 | fi |
21818 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25437 | |
25438 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21819 | 25439 | ||
21820 | fi | 25440 | fi |
21821 | echo "$as_me:$LINENO: result: $ac_cv_have_ss_family_in_struct_ss" >&5 | 25441 | { echo "$as_me:$LINENO: result: $ac_cv_have_ss_family_in_struct_ss" >&5 |
21822 | echo "${ECHO_T}$ac_cv_have_ss_family_in_struct_ss" >&6 | 25442 | echo "${ECHO_T}$ac_cv_have_ss_family_in_struct_ss" >&6; } |
21823 | if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then | 25443 | if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then |
21824 | 25444 | ||
21825 | cat >>confdefs.h <<\_ACEOF | 25445 | cat >>confdefs.h <<\_ACEOF |
@@ -21828,8 +25448,8 @@ _ACEOF | |||
21828 | 25448 | ||
21829 | fi | 25449 | fi |
21830 | 25450 | ||
21831 | echo "$as_me:$LINENO: checking for __ss_family field in struct sockaddr_storage" >&5 | 25451 | { echo "$as_me:$LINENO: checking for __ss_family field in struct sockaddr_storage" >&5 |
21832 | echo $ECHO_N "checking for __ss_family field in struct sockaddr_storage... $ECHO_C" >&6 | 25452 | echo $ECHO_N "checking for __ss_family field in struct sockaddr_storage... $ECHO_C" >&6; } |
21833 | if test "${ac_cv_have___ss_family_in_struct_ss+set}" = set; then | 25453 | if test "${ac_cv_have___ss_family_in_struct_ss+set}" = set; then |
21834 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25454 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21835 | else | 25455 | else |
@@ -21853,23 +25473,36 @@ main () | |||
21853 | } | 25473 | } |
21854 | _ACEOF | 25474 | _ACEOF |
21855 | rm -f conftest.$ac_objext | 25475 | rm -f conftest.$ac_objext |
21856 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25476 | if { (ac_try="$ac_compile" |
21857 | (eval $ac_compile) 2>conftest.er1 | 25477 | case "(($ac_try" in |
25478 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25479 | *) ac_try_echo=$ac_try;; | ||
25480 | esac | ||
25481 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25482 | (eval "$ac_compile") 2>conftest.er1 | ||
21858 | ac_status=$? | 25483 | ac_status=$? |
21859 | grep -v '^ *+' conftest.er1 >conftest.err | 25484 | grep -v '^ *+' conftest.er1 >conftest.err |
21860 | rm -f conftest.er1 | 25485 | rm -f conftest.er1 |
21861 | cat conftest.err >&5 | 25486 | cat conftest.err >&5 |
21862 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25487 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21863 | (exit $ac_status); } && | 25488 | (exit $ac_status); } && |
21864 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25489 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21865 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25490 | { (case "(($ac_try" in |
21866 | (eval $ac_try) 2>&5 | 25491 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25492 | *) ac_try_echo=$ac_try;; | ||
25493 | esac | ||
25494 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25495 | (eval "$ac_try") 2>&5 | ||
21867 | ac_status=$? | 25496 | ac_status=$? |
21868 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25497 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21869 | (exit $ac_status); }; } && | 25498 | (exit $ac_status); }; } && |
21870 | { ac_try='test -s conftest.$ac_objext' | 25499 | { ac_try='test -s conftest.$ac_objext' |
21871 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25500 | { (case "(($ac_try" in |
21872 | (eval $ac_try) 2>&5 | 25501 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25502 | *) ac_try_echo=$ac_try;; | ||
25503 | esac | ||
25504 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25505 | (eval "$ac_try") 2>&5 | ||
21873 | ac_status=$? | 25506 | ac_status=$? |
21874 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25507 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21875 | (exit $ac_status); }; }; then | 25508 | (exit $ac_status); }; }; then |
@@ -21878,14 +25511,15 @@ else | |||
21878 | echo "$as_me: failed program was:" >&5 | 25511 | echo "$as_me: failed program was:" >&5 |
21879 | sed 's/^/| /' conftest.$ac_ext >&5 | 25512 | sed 's/^/| /' conftest.$ac_ext >&5 |
21880 | 25513 | ||
21881 | ac_cv_have___ss_family_in_struct_ss="no" | 25514 | ac_cv_have___ss_family_in_struct_ss="no" |
21882 | 25515 | ||
21883 | fi | 25516 | fi |
21884 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25517 | |
25518 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21885 | 25519 | ||
21886 | fi | 25520 | fi |
21887 | echo "$as_me:$LINENO: result: $ac_cv_have___ss_family_in_struct_ss" >&5 | 25521 | { echo "$as_me:$LINENO: result: $ac_cv_have___ss_family_in_struct_ss" >&5 |
21888 | echo "${ECHO_T}$ac_cv_have___ss_family_in_struct_ss" >&6 | 25522 | echo "${ECHO_T}$ac_cv_have___ss_family_in_struct_ss" >&6; } |
21889 | if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then | 25523 | if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then |
21890 | 25524 | ||
21891 | cat >>confdefs.h <<\_ACEOF | 25525 | cat >>confdefs.h <<\_ACEOF |
@@ -21894,8 +25528,8 @@ _ACEOF | |||
21894 | 25528 | ||
21895 | fi | 25529 | fi |
21896 | 25530 | ||
21897 | echo "$as_me:$LINENO: checking for pw_class field in struct passwd" >&5 | 25531 | { echo "$as_me:$LINENO: checking for pw_class field in struct passwd" >&5 |
21898 | echo $ECHO_N "checking for pw_class field in struct passwd... $ECHO_C" >&6 | 25532 | echo $ECHO_N "checking for pw_class field in struct passwd... $ECHO_C" >&6; } |
21899 | if test "${ac_cv_have_pw_class_in_struct_passwd+set}" = set; then | 25533 | if test "${ac_cv_have_pw_class_in_struct_passwd+set}" = set; then |
21900 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25534 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21901 | else | 25535 | else |
@@ -21918,23 +25552,36 @@ main () | |||
21918 | } | 25552 | } |
21919 | _ACEOF | 25553 | _ACEOF |
21920 | rm -f conftest.$ac_objext | 25554 | rm -f conftest.$ac_objext |
21921 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25555 | if { (ac_try="$ac_compile" |
21922 | (eval $ac_compile) 2>conftest.er1 | 25556 | case "(($ac_try" in |
25557 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25558 | *) ac_try_echo=$ac_try;; | ||
25559 | esac | ||
25560 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25561 | (eval "$ac_compile") 2>conftest.er1 | ||
21923 | ac_status=$? | 25562 | ac_status=$? |
21924 | grep -v '^ *+' conftest.er1 >conftest.err | 25563 | grep -v '^ *+' conftest.er1 >conftest.err |
21925 | rm -f conftest.er1 | 25564 | rm -f conftest.er1 |
21926 | cat conftest.err >&5 | 25565 | cat conftest.err >&5 |
21927 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25566 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21928 | (exit $ac_status); } && | 25567 | (exit $ac_status); } && |
21929 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25568 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21930 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25569 | { (case "(($ac_try" in |
21931 | (eval $ac_try) 2>&5 | 25570 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25571 | *) ac_try_echo=$ac_try;; | ||
25572 | esac | ||
25573 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25574 | (eval "$ac_try") 2>&5 | ||
21932 | ac_status=$? | 25575 | ac_status=$? |
21933 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25576 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21934 | (exit $ac_status); }; } && | 25577 | (exit $ac_status); }; } && |
21935 | { ac_try='test -s conftest.$ac_objext' | 25578 | { ac_try='test -s conftest.$ac_objext' |
21936 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25579 | { (case "(($ac_try" in |
21937 | (eval $ac_try) 2>&5 | 25580 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25581 | *) ac_try_echo=$ac_try;; | ||
25582 | esac | ||
25583 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25584 | (eval "$ac_try") 2>&5 | ||
21938 | ac_status=$? | 25585 | ac_status=$? |
21939 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25586 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21940 | (exit $ac_status); }; }; then | 25587 | (exit $ac_status); }; }; then |
@@ -21943,14 +25590,15 @@ else | |||
21943 | echo "$as_me: failed program was:" >&5 | 25590 | echo "$as_me: failed program was:" >&5 |
21944 | sed 's/^/| /' conftest.$ac_ext >&5 | 25591 | sed 's/^/| /' conftest.$ac_ext >&5 |
21945 | 25592 | ||
21946 | ac_cv_have_pw_class_in_struct_passwd="no" | 25593 | ac_cv_have_pw_class_in_struct_passwd="no" |
21947 | 25594 | ||
21948 | fi | 25595 | fi |
21949 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25596 | |
25597 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21950 | 25598 | ||
21951 | fi | 25599 | fi |
21952 | echo "$as_me:$LINENO: result: $ac_cv_have_pw_class_in_struct_passwd" >&5 | 25600 | { echo "$as_me:$LINENO: result: $ac_cv_have_pw_class_in_struct_passwd" >&5 |
21953 | echo "${ECHO_T}$ac_cv_have_pw_class_in_struct_passwd" >&6 | 25601 | echo "${ECHO_T}$ac_cv_have_pw_class_in_struct_passwd" >&6; } |
21954 | if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then | 25602 | if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then |
21955 | 25603 | ||
21956 | cat >>confdefs.h <<\_ACEOF | 25604 | cat >>confdefs.h <<\_ACEOF |
@@ -21959,8 +25607,8 @@ _ACEOF | |||
21959 | 25607 | ||
21960 | fi | 25608 | fi |
21961 | 25609 | ||
21962 | echo "$as_me:$LINENO: checking for pw_expire field in struct passwd" >&5 | 25610 | { echo "$as_me:$LINENO: checking for pw_expire field in struct passwd" >&5 |
21963 | echo $ECHO_N "checking for pw_expire field in struct passwd... $ECHO_C" >&6 | 25611 | echo $ECHO_N "checking for pw_expire field in struct passwd... $ECHO_C" >&6; } |
21964 | if test "${ac_cv_have_pw_expire_in_struct_passwd+set}" = set; then | 25612 | if test "${ac_cv_have_pw_expire_in_struct_passwd+set}" = set; then |
21965 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25613 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
21966 | else | 25614 | else |
@@ -21983,23 +25631,36 @@ main () | |||
21983 | } | 25631 | } |
21984 | _ACEOF | 25632 | _ACEOF |
21985 | rm -f conftest.$ac_objext | 25633 | rm -f conftest.$ac_objext |
21986 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25634 | if { (ac_try="$ac_compile" |
21987 | (eval $ac_compile) 2>conftest.er1 | 25635 | case "(($ac_try" in |
25636 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25637 | *) ac_try_echo=$ac_try;; | ||
25638 | esac | ||
25639 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25640 | (eval "$ac_compile") 2>conftest.er1 | ||
21988 | ac_status=$? | 25641 | ac_status=$? |
21989 | grep -v '^ *+' conftest.er1 >conftest.err | 25642 | grep -v '^ *+' conftest.er1 >conftest.err |
21990 | rm -f conftest.er1 | 25643 | rm -f conftest.er1 |
21991 | cat conftest.err >&5 | 25644 | cat conftest.err >&5 |
21992 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25645 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21993 | (exit $ac_status); } && | 25646 | (exit $ac_status); } && |
21994 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25647 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21995 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25648 | { (case "(($ac_try" in |
21996 | (eval $ac_try) 2>&5 | 25649 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25650 | *) ac_try_echo=$ac_try;; | ||
25651 | esac | ||
25652 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25653 | (eval "$ac_try") 2>&5 | ||
21997 | ac_status=$? | 25654 | ac_status=$? |
21998 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25655 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21999 | (exit $ac_status); }; } && | 25656 | (exit $ac_status); }; } && |
22000 | { ac_try='test -s conftest.$ac_objext' | 25657 | { ac_try='test -s conftest.$ac_objext' |
22001 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25658 | { (case "(($ac_try" in |
22002 | (eval $ac_try) 2>&5 | 25659 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25660 | *) ac_try_echo=$ac_try;; | ||
25661 | esac | ||
25662 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25663 | (eval "$ac_try") 2>&5 | ||
22003 | ac_status=$? | 25664 | ac_status=$? |
22004 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25665 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22005 | (exit $ac_status); }; }; then | 25666 | (exit $ac_status); }; }; then |
@@ -22008,14 +25669,15 @@ else | |||
22008 | echo "$as_me: failed program was:" >&5 | 25669 | echo "$as_me: failed program was:" >&5 |
22009 | sed 's/^/| /' conftest.$ac_ext >&5 | 25670 | sed 's/^/| /' conftest.$ac_ext >&5 |
22010 | 25671 | ||
22011 | ac_cv_have_pw_expire_in_struct_passwd="no" | 25672 | ac_cv_have_pw_expire_in_struct_passwd="no" |
22012 | 25673 | ||
22013 | fi | 25674 | fi |
22014 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25675 | |
25676 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
22015 | 25677 | ||
22016 | fi | 25678 | fi |
22017 | echo "$as_me:$LINENO: result: $ac_cv_have_pw_expire_in_struct_passwd" >&5 | 25679 | { echo "$as_me:$LINENO: result: $ac_cv_have_pw_expire_in_struct_passwd" >&5 |
22018 | echo "${ECHO_T}$ac_cv_have_pw_expire_in_struct_passwd" >&6 | 25680 | echo "${ECHO_T}$ac_cv_have_pw_expire_in_struct_passwd" >&6; } |
22019 | if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then | 25681 | if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then |
22020 | 25682 | ||
22021 | cat >>confdefs.h <<\_ACEOF | 25683 | cat >>confdefs.h <<\_ACEOF |
@@ -22024,8 +25686,8 @@ _ACEOF | |||
22024 | 25686 | ||
22025 | fi | 25687 | fi |
22026 | 25688 | ||
22027 | echo "$as_me:$LINENO: checking for pw_change field in struct passwd" >&5 | 25689 | { echo "$as_me:$LINENO: checking for pw_change field in struct passwd" >&5 |
22028 | echo $ECHO_N "checking for pw_change field in struct passwd... $ECHO_C" >&6 | 25690 | echo $ECHO_N "checking for pw_change field in struct passwd... $ECHO_C" >&6; } |
22029 | if test "${ac_cv_have_pw_change_in_struct_passwd+set}" = set; then | 25691 | if test "${ac_cv_have_pw_change_in_struct_passwd+set}" = set; then |
22030 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25692 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22031 | else | 25693 | else |
@@ -22048,23 +25710,36 @@ main () | |||
22048 | } | 25710 | } |
22049 | _ACEOF | 25711 | _ACEOF |
22050 | rm -f conftest.$ac_objext | 25712 | rm -f conftest.$ac_objext |
22051 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25713 | if { (ac_try="$ac_compile" |
22052 | (eval $ac_compile) 2>conftest.er1 | 25714 | case "(($ac_try" in |
25715 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25716 | *) ac_try_echo=$ac_try;; | ||
25717 | esac | ||
25718 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25719 | (eval "$ac_compile") 2>conftest.er1 | ||
22053 | ac_status=$? | 25720 | ac_status=$? |
22054 | grep -v '^ *+' conftest.er1 >conftest.err | 25721 | grep -v '^ *+' conftest.er1 >conftest.err |
22055 | rm -f conftest.er1 | 25722 | rm -f conftest.er1 |
22056 | cat conftest.err >&5 | 25723 | cat conftest.err >&5 |
22057 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25724 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22058 | (exit $ac_status); } && | 25725 | (exit $ac_status); } && |
22059 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25726 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22060 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25727 | { (case "(($ac_try" in |
22061 | (eval $ac_try) 2>&5 | 25728 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25729 | *) ac_try_echo=$ac_try;; | ||
25730 | esac | ||
25731 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25732 | (eval "$ac_try") 2>&5 | ||
22062 | ac_status=$? | 25733 | ac_status=$? |
22063 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25734 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22064 | (exit $ac_status); }; } && | 25735 | (exit $ac_status); }; } && |
22065 | { ac_try='test -s conftest.$ac_objext' | 25736 | { ac_try='test -s conftest.$ac_objext' |
22066 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25737 | { (case "(($ac_try" in |
22067 | (eval $ac_try) 2>&5 | 25738 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25739 | *) ac_try_echo=$ac_try;; | ||
25740 | esac | ||
25741 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25742 | (eval "$ac_try") 2>&5 | ||
22068 | ac_status=$? | 25743 | ac_status=$? |
22069 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25744 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22070 | (exit $ac_status); }; }; then | 25745 | (exit $ac_status); }; }; then |
@@ -22073,14 +25748,15 @@ else | |||
22073 | echo "$as_me: failed program was:" >&5 | 25748 | echo "$as_me: failed program was:" >&5 |
22074 | sed 's/^/| /' conftest.$ac_ext >&5 | 25749 | sed 's/^/| /' conftest.$ac_ext >&5 |
22075 | 25750 | ||
22076 | ac_cv_have_pw_change_in_struct_passwd="no" | 25751 | ac_cv_have_pw_change_in_struct_passwd="no" |
22077 | 25752 | ||
22078 | fi | 25753 | fi |
22079 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25754 | |
25755 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
22080 | 25756 | ||
22081 | fi | 25757 | fi |
22082 | echo "$as_me:$LINENO: result: $ac_cv_have_pw_change_in_struct_passwd" >&5 | 25758 | { echo "$as_me:$LINENO: result: $ac_cv_have_pw_change_in_struct_passwd" >&5 |
22083 | echo "${ECHO_T}$ac_cv_have_pw_change_in_struct_passwd" >&6 | 25759 | echo "${ECHO_T}$ac_cv_have_pw_change_in_struct_passwd" >&6; } |
22084 | if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then | 25760 | if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then |
22085 | 25761 | ||
22086 | cat >>confdefs.h <<\_ACEOF | 25762 | cat >>confdefs.h <<\_ACEOF |
@@ -22089,8 +25765,8 @@ _ACEOF | |||
22089 | 25765 | ||
22090 | fi | 25766 | fi |
22091 | 25767 | ||
22092 | echo "$as_me:$LINENO: checking for msg_accrights field in struct msghdr" >&5 | 25768 | { echo "$as_me:$LINENO: checking for msg_accrights field in struct msghdr" >&5 |
22093 | echo $ECHO_N "checking for msg_accrights field in struct msghdr... $ECHO_C" >&6 | 25769 | echo $ECHO_N "checking for msg_accrights field in struct msghdr... $ECHO_C" >&6; } |
22094 | if test "${ac_cv_have_accrights_in_msghdr+set}" = set; then | 25770 | if test "${ac_cv_have_accrights_in_msghdr+set}" = set; then |
22095 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25771 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22096 | else | 25772 | else |
@@ -22112,23 +25788,36 @@ exit(0); | |||
22112 | 25788 | ||
22113 | _ACEOF | 25789 | _ACEOF |
22114 | rm -f conftest.$ac_objext | 25790 | rm -f conftest.$ac_objext |
22115 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25791 | if { (ac_try="$ac_compile" |
22116 | (eval $ac_compile) 2>conftest.er1 | 25792 | case "(($ac_try" in |
25793 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25794 | *) ac_try_echo=$ac_try;; | ||
25795 | esac | ||
25796 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25797 | (eval "$ac_compile") 2>conftest.er1 | ||
22117 | ac_status=$? | 25798 | ac_status=$? |
22118 | grep -v '^ *+' conftest.er1 >conftest.err | 25799 | grep -v '^ *+' conftest.er1 >conftest.err |
22119 | rm -f conftest.er1 | 25800 | rm -f conftest.er1 |
22120 | cat conftest.err >&5 | 25801 | cat conftest.err >&5 |
22121 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25802 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22122 | (exit $ac_status); } && | 25803 | (exit $ac_status); } && |
22123 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25804 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22124 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25805 | { (case "(($ac_try" in |
22125 | (eval $ac_try) 2>&5 | 25806 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25807 | *) ac_try_echo=$ac_try;; | ||
25808 | esac | ||
25809 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25810 | (eval "$ac_try") 2>&5 | ||
22126 | ac_status=$? | 25811 | ac_status=$? |
22127 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25812 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22128 | (exit $ac_status); }; } && | 25813 | (exit $ac_status); }; } && |
22129 | { ac_try='test -s conftest.$ac_objext' | 25814 | { ac_try='test -s conftest.$ac_objext' |
22130 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25815 | { (case "(($ac_try" in |
22131 | (eval $ac_try) 2>&5 | 25816 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25817 | *) ac_try_echo=$ac_try;; | ||
25818 | esac | ||
25819 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25820 | (eval "$ac_try") 2>&5 | ||
22132 | ac_status=$? | 25821 | ac_status=$? |
22133 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25822 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22134 | (exit $ac_status); }; }; then | 25823 | (exit $ac_status); }; }; then |
@@ -22137,14 +25826,15 @@ else | |||
22137 | echo "$as_me: failed program was:" >&5 | 25826 | echo "$as_me: failed program was:" >&5 |
22138 | sed 's/^/| /' conftest.$ac_ext >&5 | 25827 | sed 's/^/| /' conftest.$ac_ext >&5 |
22139 | 25828 | ||
22140 | ac_cv_have_accrights_in_msghdr="no" | 25829 | ac_cv_have_accrights_in_msghdr="no" |
22141 | 25830 | ||
22142 | fi | 25831 | fi |
22143 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25832 | |
25833 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
22144 | 25834 | ||
22145 | fi | 25835 | fi |
22146 | echo "$as_me:$LINENO: result: $ac_cv_have_accrights_in_msghdr" >&5 | 25836 | { echo "$as_me:$LINENO: result: $ac_cv_have_accrights_in_msghdr" >&5 |
22147 | echo "${ECHO_T}$ac_cv_have_accrights_in_msghdr" >&6 | 25837 | echo "${ECHO_T}$ac_cv_have_accrights_in_msghdr" >&6; } |
22148 | if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then | 25838 | if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then |
22149 | 25839 | ||
22150 | cat >>confdefs.h <<\_ACEOF | 25840 | cat >>confdefs.h <<\_ACEOF |
@@ -22153,8 +25843,8 @@ _ACEOF | |||
22153 | 25843 | ||
22154 | fi | 25844 | fi |
22155 | 25845 | ||
22156 | echo "$as_me:$LINENO: checking for msg_control field in struct msghdr" >&5 | 25846 | { echo "$as_me:$LINENO: checking for msg_control field in struct msghdr" >&5 |
22157 | echo $ECHO_N "checking for msg_control field in struct msghdr... $ECHO_C" >&6 | 25847 | echo $ECHO_N "checking for msg_control field in struct msghdr... $ECHO_C" >&6; } |
22158 | if test "${ac_cv_have_control_in_msghdr+set}" = set; then | 25848 | if test "${ac_cv_have_control_in_msghdr+set}" = set; then |
22159 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25849 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22160 | else | 25850 | else |
@@ -22176,23 +25866,36 @@ exit(0); | |||
22176 | 25866 | ||
22177 | _ACEOF | 25867 | _ACEOF |
22178 | rm -f conftest.$ac_objext | 25868 | rm -f conftest.$ac_objext |
22179 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 25869 | if { (ac_try="$ac_compile" |
22180 | (eval $ac_compile) 2>conftest.er1 | 25870 | case "(($ac_try" in |
25871 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25872 | *) ac_try_echo=$ac_try;; | ||
25873 | esac | ||
25874 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25875 | (eval "$ac_compile") 2>conftest.er1 | ||
22181 | ac_status=$? | 25876 | ac_status=$? |
22182 | grep -v '^ *+' conftest.er1 >conftest.err | 25877 | grep -v '^ *+' conftest.er1 >conftest.err |
22183 | rm -f conftest.er1 | 25878 | rm -f conftest.er1 |
22184 | cat conftest.err >&5 | 25879 | cat conftest.err >&5 |
22185 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25880 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22186 | (exit $ac_status); } && | 25881 | (exit $ac_status); } && |
22187 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25882 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22188 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25883 | { (case "(($ac_try" in |
22189 | (eval $ac_try) 2>&5 | 25884 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25885 | *) ac_try_echo=$ac_try;; | ||
25886 | esac | ||
25887 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25888 | (eval "$ac_try") 2>&5 | ||
22190 | ac_status=$? | 25889 | ac_status=$? |
22191 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25890 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22192 | (exit $ac_status); }; } && | 25891 | (exit $ac_status); }; } && |
22193 | { ac_try='test -s conftest.$ac_objext' | 25892 | { ac_try='test -s conftest.$ac_objext' |
22194 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25893 | { (case "(($ac_try" in |
22195 | (eval $ac_try) 2>&5 | 25894 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25895 | *) ac_try_echo=$ac_try;; | ||
25896 | esac | ||
25897 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25898 | (eval "$ac_try") 2>&5 | ||
22196 | ac_status=$? | 25899 | ac_status=$? |
22197 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25900 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22198 | (exit $ac_status); }; }; then | 25901 | (exit $ac_status); }; }; then |
@@ -22201,14 +25904,15 @@ else | |||
22201 | echo "$as_me: failed program was:" >&5 | 25904 | echo "$as_me: failed program was:" >&5 |
22202 | sed 's/^/| /' conftest.$ac_ext >&5 | 25905 | sed 's/^/| /' conftest.$ac_ext >&5 |
22203 | 25906 | ||
22204 | ac_cv_have_control_in_msghdr="no" | 25907 | ac_cv_have_control_in_msghdr="no" |
22205 | 25908 | ||
22206 | fi | 25909 | fi |
22207 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 25910 | |
25911 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
22208 | 25912 | ||
22209 | fi | 25913 | fi |
22210 | echo "$as_me:$LINENO: result: $ac_cv_have_control_in_msghdr" >&5 | 25914 | { echo "$as_me:$LINENO: result: $ac_cv_have_control_in_msghdr" >&5 |
22211 | echo "${ECHO_T}$ac_cv_have_control_in_msghdr" >&6 | 25915 | echo "${ECHO_T}$ac_cv_have_control_in_msghdr" >&6; } |
22212 | if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then | 25916 | if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then |
22213 | 25917 | ||
22214 | cat >>confdefs.h <<\_ACEOF | 25918 | cat >>confdefs.h <<\_ACEOF |
@@ -22217,8 +25921,8 @@ _ACEOF | |||
22217 | 25921 | ||
22218 | fi | 25922 | fi |
22219 | 25923 | ||
22220 | echo "$as_me:$LINENO: checking if libc defines __progname" >&5 | 25924 | { echo "$as_me:$LINENO: checking if libc defines __progname" >&5 |
22221 | echo $ECHO_N "checking if libc defines __progname... $ECHO_C" >&6 | 25925 | echo $ECHO_N "checking if libc defines __progname... $ECHO_C" >&6; } |
22222 | if test "${ac_cv_libc_defines___progname+set}" = set; then | 25926 | if test "${ac_cv_libc_defines___progname+set}" = set; then |
22223 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 25927 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22224 | else | 25928 | else |
@@ -22239,23 +25943,36 @@ main () | |||
22239 | } | 25943 | } |
22240 | _ACEOF | 25944 | _ACEOF |
22241 | rm -f conftest.$ac_objext conftest$ac_exeext | 25945 | rm -f conftest.$ac_objext conftest$ac_exeext |
22242 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 25946 | if { (ac_try="$ac_link" |
22243 | (eval $ac_link) 2>conftest.er1 | 25947 | case "(($ac_try" in |
25948 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
25949 | *) ac_try_echo=$ac_try;; | ||
25950 | esac | ||
25951 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25952 | (eval "$ac_link") 2>conftest.er1 | ||
22244 | ac_status=$? | 25953 | ac_status=$? |
22245 | grep -v '^ *+' conftest.er1 >conftest.err | 25954 | grep -v '^ *+' conftest.er1 >conftest.err |
22246 | rm -f conftest.er1 | 25955 | rm -f conftest.er1 |
22247 | cat conftest.err >&5 | 25956 | cat conftest.err >&5 |
22248 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25957 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22249 | (exit $ac_status); } && | 25958 | (exit $ac_status); } && |
22250 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 25959 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22251 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25960 | { (case "(($ac_try" in |
22252 | (eval $ac_try) 2>&5 | 25961 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25962 | *) ac_try_echo=$ac_try;; | ||
25963 | esac | ||
25964 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25965 | (eval "$ac_try") 2>&5 | ||
22253 | ac_status=$? | 25966 | ac_status=$? |
22254 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25967 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22255 | (exit $ac_status); }; } && | 25968 | (exit $ac_status); }; } && |
22256 | { ac_try='test -s conftest$ac_exeext' | 25969 | { ac_try='test -s conftest$ac_exeext' |
22257 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 25970 | { (case "(($ac_try" in |
22258 | (eval $ac_try) 2>&5 | 25971 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
25972 | *) ac_try_echo=$ac_try;; | ||
25973 | esac | ||
25974 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
25975 | (eval "$ac_try") 2>&5 | ||
22259 | ac_status=$? | 25976 | ac_status=$? |
22260 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 25977 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22261 | (exit $ac_status); }; }; then | 25978 | (exit $ac_status); }; }; then |
@@ -22264,15 +25981,16 @@ else | |||
22264 | echo "$as_me: failed program was:" >&5 | 25981 | echo "$as_me: failed program was:" >&5 |
22265 | sed 's/^/| /' conftest.$ac_ext >&5 | 25982 | sed 's/^/| /' conftest.$ac_ext >&5 |
22266 | 25983 | ||
22267 | ac_cv_libc_defines___progname="no" | 25984 | ac_cv_libc_defines___progname="no" |
22268 | 25985 | ||
22269 | fi | 25986 | fi |
22270 | rm -f conftest.err conftest.$ac_objext \ | 25987 | |
25988 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22271 | conftest$ac_exeext conftest.$ac_ext | 25989 | conftest$ac_exeext conftest.$ac_ext |
22272 | 25990 | ||
22273 | fi | 25991 | fi |
22274 | echo "$as_me:$LINENO: result: $ac_cv_libc_defines___progname" >&5 | 25992 | { echo "$as_me:$LINENO: result: $ac_cv_libc_defines___progname" >&5 |
22275 | echo "${ECHO_T}$ac_cv_libc_defines___progname" >&6 | 25993 | echo "${ECHO_T}$ac_cv_libc_defines___progname" >&6; } |
22276 | if test "x$ac_cv_libc_defines___progname" = "xyes" ; then | 25994 | if test "x$ac_cv_libc_defines___progname" = "xyes" ; then |
22277 | 25995 | ||
22278 | cat >>confdefs.h <<\_ACEOF | 25996 | cat >>confdefs.h <<\_ACEOF |
@@ -22281,8 +25999,8 @@ _ACEOF | |||
22281 | 25999 | ||
22282 | fi | 26000 | fi |
22283 | 26001 | ||
22284 | echo "$as_me:$LINENO: checking whether $CC implements __FUNCTION__" >&5 | 26002 | { echo "$as_me:$LINENO: checking whether $CC implements __FUNCTION__" >&5 |
22285 | echo $ECHO_N "checking whether $CC implements __FUNCTION__... $ECHO_C" >&6 | 26003 | echo $ECHO_N "checking whether $CC implements __FUNCTION__... $ECHO_C" >&6; } |
22286 | if test "${ac_cv_cc_implements___FUNCTION__+set}" = set; then | 26004 | if test "${ac_cv_cc_implements___FUNCTION__+set}" = set; then |
22287 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26005 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22288 | else | 26006 | else |
@@ -22305,23 +26023,36 @@ main () | |||
22305 | } | 26023 | } |
22306 | _ACEOF | 26024 | _ACEOF |
22307 | rm -f conftest.$ac_objext conftest$ac_exeext | 26025 | rm -f conftest.$ac_objext conftest$ac_exeext |
22308 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26026 | if { (ac_try="$ac_link" |
22309 | (eval $ac_link) 2>conftest.er1 | 26027 | case "(($ac_try" in |
26028 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26029 | *) ac_try_echo=$ac_try;; | ||
26030 | esac | ||
26031 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26032 | (eval "$ac_link") 2>conftest.er1 | ||
22310 | ac_status=$? | 26033 | ac_status=$? |
22311 | grep -v '^ *+' conftest.er1 >conftest.err | 26034 | grep -v '^ *+' conftest.er1 >conftest.err |
22312 | rm -f conftest.er1 | 26035 | rm -f conftest.er1 |
22313 | cat conftest.err >&5 | 26036 | cat conftest.err >&5 |
22314 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26037 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22315 | (exit $ac_status); } && | 26038 | (exit $ac_status); } && |
22316 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26039 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22317 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26040 | { (case "(($ac_try" in |
22318 | (eval $ac_try) 2>&5 | 26041 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26042 | *) ac_try_echo=$ac_try;; | ||
26043 | esac | ||
26044 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26045 | (eval "$ac_try") 2>&5 | ||
22319 | ac_status=$? | 26046 | ac_status=$? |
22320 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26047 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22321 | (exit $ac_status); }; } && | 26048 | (exit $ac_status); }; } && |
22322 | { ac_try='test -s conftest$ac_exeext' | 26049 | { ac_try='test -s conftest$ac_exeext' |
22323 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26050 | { (case "(($ac_try" in |
22324 | (eval $ac_try) 2>&5 | 26051 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26052 | *) ac_try_echo=$ac_try;; | ||
26053 | esac | ||
26054 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26055 | (eval "$ac_try") 2>&5 | ||
22325 | ac_status=$? | 26056 | ac_status=$? |
22326 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26057 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22327 | (exit $ac_status); }; }; then | 26058 | (exit $ac_status); }; }; then |
@@ -22330,15 +26061,16 @@ else | |||
22330 | echo "$as_me: failed program was:" >&5 | 26061 | echo "$as_me: failed program was:" >&5 |
22331 | sed 's/^/| /' conftest.$ac_ext >&5 | 26062 | sed 's/^/| /' conftest.$ac_ext >&5 |
22332 | 26063 | ||
22333 | ac_cv_cc_implements___FUNCTION__="no" | 26064 | ac_cv_cc_implements___FUNCTION__="no" |
22334 | 26065 | ||
22335 | fi | 26066 | fi |
22336 | rm -f conftest.err conftest.$ac_objext \ | 26067 | |
26068 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22337 | conftest$ac_exeext conftest.$ac_ext | 26069 | conftest$ac_exeext conftest.$ac_ext |
22338 | 26070 | ||
22339 | fi | 26071 | fi |
22340 | echo "$as_me:$LINENO: result: $ac_cv_cc_implements___FUNCTION__" >&5 | 26072 | { echo "$as_me:$LINENO: result: $ac_cv_cc_implements___FUNCTION__" >&5 |
22341 | echo "${ECHO_T}$ac_cv_cc_implements___FUNCTION__" >&6 | 26073 | echo "${ECHO_T}$ac_cv_cc_implements___FUNCTION__" >&6; } |
22342 | if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then | 26074 | if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then |
22343 | 26075 | ||
22344 | cat >>confdefs.h <<\_ACEOF | 26076 | cat >>confdefs.h <<\_ACEOF |
@@ -22347,8 +26079,8 @@ _ACEOF | |||
22347 | 26079 | ||
22348 | fi | 26080 | fi |
22349 | 26081 | ||
22350 | echo "$as_me:$LINENO: checking whether $CC implements __func__" >&5 | 26082 | { echo "$as_me:$LINENO: checking whether $CC implements __func__" >&5 |
22351 | echo $ECHO_N "checking whether $CC implements __func__... $ECHO_C" >&6 | 26083 | echo $ECHO_N "checking whether $CC implements __func__... $ECHO_C" >&6; } |
22352 | if test "${ac_cv_cc_implements___func__+set}" = set; then | 26084 | if test "${ac_cv_cc_implements___func__+set}" = set; then |
22353 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26085 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22354 | else | 26086 | else |
@@ -22371,23 +26103,36 @@ main () | |||
22371 | } | 26103 | } |
22372 | _ACEOF | 26104 | _ACEOF |
22373 | rm -f conftest.$ac_objext conftest$ac_exeext | 26105 | rm -f conftest.$ac_objext conftest$ac_exeext |
22374 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26106 | if { (ac_try="$ac_link" |
22375 | (eval $ac_link) 2>conftest.er1 | 26107 | case "(($ac_try" in |
26108 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26109 | *) ac_try_echo=$ac_try;; | ||
26110 | esac | ||
26111 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26112 | (eval "$ac_link") 2>conftest.er1 | ||
22376 | ac_status=$? | 26113 | ac_status=$? |
22377 | grep -v '^ *+' conftest.er1 >conftest.err | 26114 | grep -v '^ *+' conftest.er1 >conftest.err |
22378 | rm -f conftest.er1 | 26115 | rm -f conftest.er1 |
22379 | cat conftest.err >&5 | 26116 | cat conftest.err >&5 |
22380 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26117 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22381 | (exit $ac_status); } && | 26118 | (exit $ac_status); } && |
22382 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26119 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22383 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26120 | { (case "(($ac_try" in |
22384 | (eval $ac_try) 2>&5 | 26121 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26122 | *) ac_try_echo=$ac_try;; | ||
26123 | esac | ||
26124 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26125 | (eval "$ac_try") 2>&5 | ||
22385 | ac_status=$? | 26126 | ac_status=$? |
22386 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26127 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22387 | (exit $ac_status); }; } && | 26128 | (exit $ac_status); }; } && |
22388 | { ac_try='test -s conftest$ac_exeext' | 26129 | { ac_try='test -s conftest$ac_exeext' |
22389 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26130 | { (case "(($ac_try" in |
22390 | (eval $ac_try) 2>&5 | 26131 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26132 | *) ac_try_echo=$ac_try;; | ||
26133 | esac | ||
26134 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26135 | (eval "$ac_try") 2>&5 | ||
22391 | ac_status=$? | 26136 | ac_status=$? |
22392 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26137 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22393 | (exit $ac_status); }; }; then | 26138 | (exit $ac_status); }; }; then |
@@ -22396,15 +26141,16 @@ else | |||
22396 | echo "$as_me: failed program was:" >&5 | 26141 | echo "$as_me: failed program was:" >&5 |
22397 | sed 's/^/| /' conftest.$ac_ext >&5 | 26142 | sed 's/^/| /' conftest.$ac_ext >&5 |
22398 | 26143 | ||
22399 | ac_cv_cc_implements___func__="no" | 26144 | ac_cv_cc_implements___func__="no" |
22400 | 26145 | ||
22401 | fi | 26146 | fi |
22402 | rm -f conftest.err conftest.$ac_objext \ | 26147 | |
26148 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22403 | conftest$ac_exeext conftest.$ac_ext | 26149 | conftest$ac_exeext conftest.$ac_ext |
22404 | 26150 | ||
22405 | fi | 26151 | fi |
22406 | echo "$as_me:$LINENO: result: $ac_cv_cc_implements___func__" >&5 | 26152 | { echo "$as_me:$LINENO: result: $ac_cv_cc_implements___func__" >&5 |
22407 | echo "${ECHO_T}$ac_cv_cc_implements___func__" >&6 | 26153 | echo "${ECHO_T}$ac_cv_cc_implements___func__" >&6; } |
22408 | if test "x$ac_cv_cc_implements___func__" = "xyes" ; then | 26154 | if test "x$ac_cv_cc_implements___func__" = "xyes" ; then |
22409 | 26155 | ||
22410 | cat >>confdefs.h <<\_ACEOF | 26156 | cat >>confdefs.h <<\_ACEOF |
@@ -22413,8 +26159,8 @@ _ACEOF | |||
22413 | 26159 | ||
22414 | fi | 26160 | fi |
22415 | 26161 | ||
22416 | echo "$as_me:$LINENO: checking whether va_copy exists" >&5 | 26162 | { echo "$as_me:$LINENO: checking whether va_copy exists" >&5 |
22417 | echo $ECHO_N "checking whether va_copy exists... $ECHO_C" >&6 | 26163 | echo $ECHO_N "checking whether va_copy exists... $ECHO_C" >&6; } |
22418 | if test "${ac_cv_have_va_copy+set}" = set; then | 26164 | if test "${ac_cv_have_va_copy+set}" = set; then |
22419 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26165 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22420 | else | 26166 | else |
@@ -22436,23 +26182,36 @@ va_copy(x,y); | |||
22436 | } | 26182 | } |
22437 | _ACEOF | 26183 | _ACEOF |
22438 | rm -f conftest.$ac_objext conftest$ac_exeext | 26184 | rm -f conftest.$ac_objext conftest$ac_exeext |
22439 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26185 | if { (ac_try="$ac_link" |
22440 | (eval $ac_link) 2>conftest.er1 | 26186 | case "(($ac_try" in |
26187 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26188 | *) ac_try_echo=$ac_try;; | ||
26189 | esac | ||
26190 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26191 | (eval "$ac_link") 2>conftest.er1 | ||
22441 | ac_status=$? | 26192 | ac_status=$? |
22442 | grep -v '^ *+' conftest.er1 >conftest.err | 26193 | grep -v '^ *+' conftest.er1 >conftest.err |
22443 | rm -f conftest.er1 | 26194 | rm -f conftest.er1 |
22444 | cat conftest.err >&5 | 26195 | cat conftest.err >&5 |
22445 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26196 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22446 | (exit $ac_status); } && | 26197 | (exit $ac_status); } && |
22447 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26198 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22448 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26199 | { (case "(($ac_try" in |
22449 | (eval $ac_try) 2>&5 | 26200 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26201 | *) ac_try_echo=$ac_try;; | ||
26202 | esac | ||
26203 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26204 | (eval "$ac_try") 2>&5 | ||
22450 | ac_status=$? | 26205 | ac_status=$? |
22451 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26206 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22452 | (exit $ac_status); }; } && | 26207 | (exit $ac_status); }; } && |
22453 | { ac_try='test -s conftest$ac_exeext' | 26208 | { ac_try='test -s conftest$ac_exeext' |
22454 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26209 | { (case "(($ac_try" in |
22455 | (eval $ac_try) 2>&5 | 26210 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26211 | *) ac_try_echo=$ac_try;; | ||
26212 | esac | ||
26213 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26214 | (eval "$ac_try") 2>&5 | ||
22456 | ac_status=$? | 26215 | ac_status=$? |
22457 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26216 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22458 | (exit $ac_status); }; }; then | 26217 | (exit $ac_status); }; }; then |
@@ -22461,15 +26220,16 @@ else | |||
22461 | echo "$as_me: failed program was:" >&5 | 26220 | echo "$as_me: failed program was:" >&5 |
22462 | sed 's/^/| /' conftest.$ac_ext >&5 | 26221 | sed 's/^/| /' conftest.$ac_ext >&5 |
22463 | 26222 | ||
22464 | ac_cv_have_va_copy="no" | 26223 | ac_cv_have_va_copy="no" |
22465 | 26224 | ||
22466 | fi | 26225 | fi |
22467 | rm -f conftest.err conftest.$ac_objext \ | 26226 | |
26227 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22468 | conftest$ac_exeext conftest.$ac_ext | 26228 | conftest$ac_exeext conftest.$ac_ext |
22469 | 26229 | ||
22470 | fi | 26230 | fi |
22471 | echo "$as_me:$LINENO: result: $ac_cv_have_va_copy" >&5 | 26231 | { echo "$as_me:$LINENO: result: $ac_cv_have_va_copy" >&5 |
22472 | echo "${ECHO_T}$ac_cv_have_va_copy" >&6 | 26232 | echo "${ECHO_T}$ac_cv_have_va_copy" >&6; } |
22473 | if test "x$ac_cv_have_va_copy" = "xyes" ; then | 26233 | if test "x$ac_cv_have_va_copy" = "xyes" ; then |
22474 | 26234 | ||
22475 | cat >>confdefs.h <<\_ACEOF | 26235 | cat >>confdefs.h <<\_ACEOF |
@@ -22478,8 +26238,8 @@ _ACEOF | |||
22478 | 26238 | ||
22479 | fi | 26239 | fi |
22480 | 26240 | ||
22481 | echo "$as_me:$LINENO: checking whether __va_copy exists" >&5 | 26241 | { echo "$as_me:$LINENO: checking whether __va_copy exists" >&5 |
22482 | echo $ECHO_N "checking whether __va_copy exists... $ECHO_C" >&6 | 26242 | echo $ECHO_N "checking whether __va_copy exists... $ECHO_C" >&6; } |
22483 | if test "${ac_cv_have___va_copy+set}" = set; then | 26243 | if test "${ac_cv_have___va_copy+set}" = set; then |
22484 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26244 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22485 | else | 26245 | else |
@@ -22501,23 +26261,36 @@ __va_copy(x,y); | |||
22501 | } | 26261 | } |
22502 | _ACEOF | 26262 | _ACEOF |
22503 | rm -f conftest.$ac_objext conftest$ac_exeext | 26263 | rm -f conftest.$ac_objext conftest$ac_exeext |
22504 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26264 | if { (ac_try="$ac_link" |
22505 | (eval $ac_link) 2>conftest.er1 | 26265 | case "(($ac_try" in |
26266 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26267 | *) ac_try_echo=$ac_try;; | ||
26268 | esac | ||
26269 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26270 | (eval "$ac_link") 2>conftest.er1 | ||
22506 | ac_status=$? | 26271 | ac_status=$? |
22507 | grep -v '^ *+' conftest.er1 >conftest.err | 26272 | grep -v '^ *+' conftest.er1 >conftest.err |
22508 | rm -f conftest.er1 | 26273 | rm -f conftest.er1 |
22509 | cat conftest.err >&5 | 26274 | cat conftest.err >&5 |
22510 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26275 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22511 | (exit $ac_status); } && | 26276 | (exit $ac_status); } && |
22512 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26277 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22513 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26278 | { (case "(($ac_try" in |
22514 | (eval $ac_try) 2>&5 | 26279 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26280 | *) ac_try_echo=$ac_try;; | ||
26281 | esac | ||
26282 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26283 | (eval "$ac_try") 2>&5 | ||
22515 | ac_status=$? | 26284 | ac_status=$? |
22516 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26285 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22517 | (exit $ac_status); }; } && | 26286 | (exit $ac_status); }; } && |
22518 | { ac_try='test -s conftest$ac_exeext' | 26287 | { ac_try='test -s conftest$ac_exeext' |
22519 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26288 | { (case "(($ac_try" in |
22520 | (eval $ac_try) 2>&5 | 26289 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26290 | *) ac_try_echo=$ac_try;; | ||
26291 | esac | ||
26292 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26293 | (eval "$ac_try") 2>&5 | ||
22521 | ac_status=$? | 26294 | ac_status=$? |
22522 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26295 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22523 | (exit $ac_status); }; }; then | 26296 | (exit $ac_status); }; }; then |
@@ -22526,15 +26299,16 @@ else | |||
22526 | echo "$as_me: failed program was:" >&5 | 26299 | echo "$as_me: failed program was:" >&5 |
22527 | sed 's/^/| /' conftest.$ac_ext >&5 | 26300 | sed 's/^/| /' conftest.$ac_ext >&5 |
22528 | 26301 | ||
22529 | ac_cv_have___va_copy="no" | 26302 | ac_cv_have___va_copy="no" |
22530 | 26303 | ||
22531 | fi | 26304 | fi |
22532 | rm -f conftest.err conftest.$ac_objext \ | 26305 | |
26306 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22533 | conftest$ac_exeext conftest.$ac_ext | 26307 | conftest$ac_exeext conftest.$ac_ext |
22534 | 26308 | ||
22535 | fi | 26309 | fi |
22536 | echo "$as_me:$LINENO: result: $ac_cv_have___va_copy" >&5 | 26310 | { echo "$as_me:$LINENO: result: $ac_cv_have___va_copy" >&5 |
22537 | echo "${ECHO_T}$ac_cv_have___va_copy" >&6 | 26311 | echo "${ECHO_T}$ac_cv_have___va_copy" >&6; } |
22538 | if test "x$ac_cv_have___va_copy" = "xyes" ; then | 26312 | if test "x$ac_cv_have___va_copy" = "xyes" ; then |
22539 | 26313 | ||
22540 | cat >>confdefs.h <<\_ACEOF | 26314 | cat >>confdefs.h <<\_ACEOF |
@@ -22543,8 +26317,8 @@ _ACEOF | |||
22543 | 26317 | ||
22544 | fi | 26318 | fi |
22545 | 26319 | ||
22546 | echo "$as_me:$LINENO: checking whether getopt has optreset support" >&5 | 26320 | { echo "$as_me:$LINENO: checking whether getopt has optreset support" >&5 |
22547 | echo $ECHO_N "checking whether getopt has optreset support... $ECHO_C" >&6 | 26321 | echo $ECHO_N "checking whether getopt has optreset support... $ECHO_C" >&6; } |
22548 | if test "${ac_cv_have_getopt_optreset+set}" = set; then | 26322 | if test "${ac_cv_have_getopt_optreset+set}" = set; then |
22549 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26323 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22550 | else | 26324 | else |
@@ -22567,23 +26341,36 @@ main () | |||
22567 | } | 26341 | } |
22568 | _ACEOF | 26342 | _ACEOF |
22569 | rm -f conftest.$ac_objext conftest$ac_exeext | 26343 | rm -f conftest.$ac_objext conftest$ac_exeext |
22570 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26344 | if { (ac_try="$ac_link" |
22571 | (eval $ac_link) 2>conftest.er1 | 26345 | case "(($ac_try" in |
26346 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26347 | *) ac_try_echo=$ac_try;; | ||
26348 | esac | ||
26349 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26350 | (eval "$ac_link") 2>conftest.er1 | ||
22572 | ac_status=$? | 26351 | ac_status=$? |
22573 | grep -v '^ *+' conftest.er1 >conftest.err | 26352 | grep -v '^ *+' conftest.er1 >conftest.err |
22574 | rm -f conftest.er1 | 26353 | rm -f conftest.er1 |
22575 | cat conftest.err >&5 | 26354 | cat conftest.err >&5 |
22576 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26355 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22577 | (exit $ac_status); } && | 26356 | (exit $ac_status); } && |
22578 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26357 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22579 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26358 | { (case "(($ac_try" in |
22580 | (eval $ac_try) 2>&5 | 26359 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26360 | *) ac_try_echo=$ac_try;; | ||
26361 | esac | ||
26362 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26363 | (eval "$ac_try") 2>&5 | ||
22581 | ac_status=$? | 26364 | ac_status=$? |
22582 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26365 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22583 | (exit $ac_status); }; } && | 26366 | (exit $ac_status); }; } && |
22584 | { ac_try='test -s conftest$ac_exeext' | 26367 | { ac_try='test -s conftest$ac_exeext' |
22585 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26368 | { (case "(($ac_try" in |
22586 | (eval $ac_try) 2>&5 | 26369 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26370 | *) ac_try_echo=$ac_try;; | ||
26371 | esac | ||
26372 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26373 | (eval "$ac_try") 2>&5 | ||
22587 | ac_status=$? | 26374 | ac_status=$? |
22588 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26375 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22589 | (exit $ac_status); }; }; then | 26376 | (exit $ac_status); }; }; then |
@@ -22592,15 +26379,16 @@ else | |||
22592 | echo "$as_me: failed program was:" >&5 | 26379 | echo "$as_me: failed program was:" >&5 |
22593 | sed 's/^/| /' conftest.$ac_ext >&5 | 26380 | sed 's/^/| /' conftest.$ac_ext >&5 |
22594 | 26381 | ||
22595 | ac_cv_have_getopt_optreset="no" | 26382 | ac_cv_have_getopt_optreset="no" |
22596 | 26383 | ||
22597 | fi | 26384 | fi |
22598 | rm -f conftest.err conftest.$ac_objext \ | 26385 | |
26386 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22599 | conftest$ac_exeext conftest.$ac_ext | 26387 | conftest$ac_exeext conftest.$ac_ext |
22600 | 26388 | ||
22601 | fi | 26389 | fi |
22602 | echo "$as_me:$LINENO: result: $ac_cv_have_getopt_optreset" >&5 | 26390 | { echo "$as_me:$LINENO: result: $ac_cv_have_getopt_optreset" >&5 |
22603 | echo "${ECHO_T}$ac_cv_have_getopt_optreset" >&6 | 26391 | echo "${ECHO_T}$ac_cv_have_getopt_optreset" >&6; } |
22604 | if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then | 26392 | if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then |
22605 | 26393 | ||
22606 | cat >>confdefs.h <<\_ACEOF | 26394 | cat >>confdefs.h <<\_ACEOF |
@@ -22609,8 +26397,8 @@ _ACEOF | |||
22609 | 26397 | ||
22610 | fi | 26398 | fi |
22611 | 26399 | ||
22612 | echo "$as_me:$LINENO: checking if libc defines sys_errlist" >&5 | 26400 | { echo "$as_me:$LINENO: checking if libc defines sys_errlist" >&5 |
22613 | echo $ECHO_N "checking if libc defines sys_errlist... $ECHO_C" >&6 | 26401 | echo $ECHO_N "checking if libc defines sys_errlist... $ECHO_C" >&6; } |
22614 | if test "${ac_cv_libc_defines_sys_errlist+set}" = set; then | 26402 | if test "${ac_cv_libc_defines_sys_errlist+set}" = set; then |
22615 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26403 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22616 | else | 26404 | else |
@@ -22631,23 +26419,36 @@ main () | |||
22631 | } | 26419 | } |
22632 | _ACEOF | 26420 | _ACEOF |
22633 | rm -f conftest.$ac_objext conftest$ac_exeext | 26421 | rm -f conftest.$ac_objext conftest$ac_exeext |
22634 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26422 | if { (ac_try="$ac_link" |
22635 | (eval $ac_link) 2>conftest.er1 | 26423 | case "(($ac_try" in |
26424 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26425 | *) ac_try_echo=$ac_try;; | ||
26426 | esac | ||
26427 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26428 | (eval "$ac_link") 2>conftest.er1 | ||
22636 | ac_status=$? | 26429 | ac_status=$? |
22637 | grep -v '^ *+' conftest.er1 >conftest.err | 26430 | grep -v '^ *+' conftest.er1 >conftest.err |
22638 | rm -f conftest.er1 | 26431 | rm -f conftest.er1 |
22639 | cat conftest.err >&5 | 26432 | cat conftest.err >&5 |
22640 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26433 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22641 | (exit $ac_status); } && | 26434 | (exit $ac_status); } && |
22642 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26435 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22643 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26436 | { (case "(($ac_try" in |
22644 | (eval $ac_try) 2>&5 | 26437 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26438 | *) ac_try_echo=$ac_try;; | ||
26439 | esac | ||
26440 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26441 | (eval "$ac_try") 2>&5 | ||
22645 | ac_status=$? | 26442 | ac_status=$? |
22646 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26443 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22647 | (exit $ac_status); }; } && | 26444 | (exit $ac_status); }; } && |
22648 | { ac_try='test -s conftest$ac_exeext' | 26445 | { ac_try='test -s conftest$ac_exeext' |
22649 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26446 | { (case "(($ac_try" in |
22650 | (eval $ac_try) 2>&5 | 26447 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26448 | *) ac_try_echo=$ac_try;; | ||
26449 | esac | ||
26450 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26451 | (eval "$ac_try") 2>&5 | ||
22651 | ac_status=$? | 26452 | ac_status=$? |
22652 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26453 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22653 | (exit $ac_status); }; }; then | 26454 | (exit $ac_status); }; }; then |
@@ -22656,15 +26457,16 @@ else | |||
22656 | echo "$as_me: failed program was:" >&5 | 26457 | echo "$as_me: failed program was:" >&5 |
22657 | sed 's/^/| /' conftest.$ac_ext >&5 | 26458 | sed 's/^/| /' conftest.$ac_ext >&5 |
22658 | 26459 | ||
22659 | ac_cv_libc_defines_sys_errlist="no" | 26460 | ac_cv_libc_defines_sys_errlist="no" |
22660 | 26461 | ||
22661 | fi | 26462 | fi |
22662 | rm -f conftest.err conftest.$ac_objext \ | 26463 | |
26464 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22663 | conftest$ac_exeext conftest.$ac_ext | 26465 | conftest$ac_exeext conftest.$ac_ext |
22664 | 26466 | ||
22665 | fi | 26467 | fi |
22666 | echo "$as_me:$LINENO: result: $ac_cv_libc_defines_sys_errlist" >&5 | 26468 | { echo "$as_me:$LINENO: result: $ac_cv_libc_defines_sys_errlist" >&5 |
22667 | echo "${ECHO_T}$ac_cv_libc_defines_sys_errlist" >&6 | 26469 | echo "${ECHO_T}$ac_cv_libc_defines_sys_errlist" >&6; } |
22668 | if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then | 26470 | if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then |
22669 | 26471 | ||
22670 | cat >>confdefs.h <<\_ACEOF | 26472 | cat >>confdefs.h <<\_ACEOF |
@@ -22674,8 +26476,8 @@ _ACEOF | |||
22674 | fi | 26476 | fi |
22675 | 26477 | ||
22676 | 26478 | ||
22677 | echo "$as_me:$LINENO: checking if libc defines sys_nerr" >&5 | 26479 | { echo "$as_me:$LINENO: checking if libc defines sys_nerr" >&5 |
22678 | echo $ECHO_N "checking if libc defines sys_nerr... $ECHO_C" >&6 | 26480 | echo $ECHO_N "checking if libc defines sys_nerr... $ECHO_C" >&6; } |
22679 | if test "${ac_cv_libc_defines_sys_nerr+set}" = set; then | 26481 | if test "${ac_cv_libc_defines_sys_nerr+set}" = set; then |
22680 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26482 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22681 | else | 26483 | else |
@@ -22696,23 +26498,36 @@ main () | |||
22696 | } | 26498 | } |
22697 | _ACEOF | 26499 | _ACEOF |
22698 | rm -f conftest.$ac_objext conftest$ac_exeext | 26500 | rm -f conftest.$ac_objext conftest$ac_exeext |
22699 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26501 | if { (ac_try="$ac_link" |
22700 | (eval $ac_link) 2>conftest.er1 | 26502 | case "(($ac_try" in |
26503 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26504 | *) ac_try_echo=$ac_try;; | ||
26505 | esac | ||
26506 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26507 | (eval "$ac_link") 2>conftest.er1 | ||
22701 | ac_status=$? | 26508 | ac_status=$? |
22702 | grep -v '^ *+' conftest.er1 >conftest.err | 26509 | grep -v '^ *+' conftest.er1 >conftest.err |
22703 | rm -f conftest.er1 | 26510 | rm -f conftest.er1 |
22704 | cat conftest.err >&5 | 26511 | cat conftest.err >&5 |
22705 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26512 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22706 | (exit $ac_status); } && | 26513 | (exit $ac_status); } && |
22707 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26514 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22708 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26515 | { (case "(($ac_try" in |
22709 | (eval $ac_try) 2>&5 | 26516 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26517 | *) ac_try_echo=$ac_try;; | ||
26518 | esac | ||
26519 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26520 | (eval "$ac_try") 2>&5 | ||
22710 | ac_status=$? | 26521 | ac_status=$? |
22711 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26522 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22712 | (exit $ac_status); }; } && | 26523 | (exit $ac_status); }; } && |
22713 | { ac_try='test -s conftest$ac_exeext' | 26524 | { ac_try='test -s conftest$ac_exeext' |
22714 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26525 | { (case "(($ac_try" in |
22715 | (eval $ac_try) 2>&5 | 26526 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26527 | *) ac_try_echo=$ac_try;; | ||
26528 | esac | ||
26529 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26530 | (eval "$ac_try") 2>&5 | ||
22716 | ac_status=$? | 26531 | ac_status=$? |
22717 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26532 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22718 | (exit $ac_status); }; }; then | 26533 | (exit $ac_status); }; }; then |
@@ -22721,15 +26536,16 @@ else | |||
22721 | echo "$as_me: failed program was:" >&5 | 26536 | echo "$as_me: failed program was:" >&5 |
22722 | sed 's/^/| /' conftest.$ac_ext >&5 | 26537 | sed 's/^/| /' conftest.$ac_ext >&5 |
22723 | 26538 | ||
22724 | ac_cv_libc_defines_sys_nerr="no" | 26539 | ac_cv_libc_defines_sys_nerr="no" |
22725 | 26540 | ||
22726 | fi | 26541 | fi |
22727 | rm -f conftest.err conftest.$ac_objext \ | 26542 | |
26543 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22728 | conftest$ac_exeext conftest.$ac_ext | 26544 | conftest$ac_exeext conftest.$ac_ext |
22729 | 26545 | ||
22730 | fi | 26546 | fi |
22731 | echo "$as_me:$LINENO: result: $ac_cv_libc_defines_sys_nerr" >&5 | 26547 | { echo "$as_me:$LINENO: result: $ac_cv_libc_defines_sys_nerr" >&5 |
22732 | echo "${ECHO_T}$ac_cv_libc_defines_sys_nerr" >&6 | 26548 | echo "${ECHO_T}$ac_cv_libc_defines_sys_nerr" >&6; } |
22733 | if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then | 26549 | if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then |
22734 | 26550 | ||
22735 | cat >>confdefs.h <<\_ACEOF | 26551 | cat >>confdefs.h <<\_ACEOF |
@@ -22741,10 +26557,9 @@ fi | |||
22741 | SCARD_MSG="no" | 26557 | SCARD_MSG="no" |
22742 | # Check whether user wants sectok support | 26558 | # Check whether user wants sectok support |
22743 | 26559 | ||
22744 | # Check whether --with-sectok or --without-sectok was given. | 26560 | # Check whether --with-sectok was given. |
22745 | if test "${with_sectok+set}" = set; then | 26561 | if test "${with_sectok+set}" = set; then |
22746 | withval="$with_sectok" | 26562 | withval=$with_sectok; |
22747 | |||
22748 | if test "x$withval" != "xno" ; then | 26563 | if test "x$withval" != "xno" ; then |
22749 | if test "x$withval" != "xyes" ; then | 26564 | if test "x$withval" != "xyes" ; then |
22750 | CPPFLAGS="$CPPFLAGS -I${withval}" | 26565 | CPPFLAGS="$CPPFLAGS -I${withval}" |
@@ -22760,18 +26575,19 @@ if test "${with_sectok+set}" = set; then | |||
22760 | for ac_header in sectok.h | 26575 | for ac_header in sectok.h |
22761 | do | 26576 | do |
22762 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 26577 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
22763 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 26578 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
22764 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 26579 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
22765 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 26580 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
22766 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 26581 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
22767 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26582 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22768 | fi | 26583 | fi |
22769 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 26584 | ac_res=`eval echo '${'$as_ac_Header'}'` |
22770 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 26585 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
26586 | echo "${ECHO_T}$ac_res" >&6; } | ||
22771 | else | 26587 | else |
22772 | # Is the header compilable? | 26588 | # Is the header compilable? |
22773 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 26589 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
22774 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 26590 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
22775 | cat >conftest.$ac_ext <<_ACEOF | 26591 | cat >conftest.$ac_ext <<_ACEOF |
22776 | /* confdefs.h. */ | 26592 | /* confdefs.h. */ |
22777 | _ACEOF | 26593 | _ACEOF |
@@ -22782,23 +26598,36 @@ $ac_includes_default | |||
22782 | #include <$ac_header> | 26598 | #include <$ac_header> |
22783 | _ACEOF | 26599 | _ACEOF |
22784 | rm -f conftest.$ac_objext | 26600 | rm -f conftest.$ac_objext |
22785 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 26601 | if { (ac_try="$ac_compile" |
22786 | (eval $ac_compile) 2>conftest.er1 | 26602 | case "(($ac_try" in |
26603 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26604 | *) ac_try_echo=$ac_try;; | ||
26605 | esac | ||
26606 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26607 | (eval "$ac_compile") 2>conftest.er1 | ||
22787 | ac_status=$? | 26608 | ac_status=$? |
22788 | grep -v '^ *+' conftest.er1 >conftest.err | 26609 | grep -v '^ *+' conftest.er1 >conftest.err |
22789 | rm -f conftest.er1 | 26610 | rm -f conftest.er1 |
22790 | cat conftest.err >&5 | 26611 | cat conftest.err >&5 |
22791 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26612 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22792 | (exit $ac_status); } && | 26613 | (exit $ac_status); } && |
22793 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26614 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22794 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26615 | { (case "(($ac_try" in |
22795 | (eval $ac_try) 2>&5 | 26616 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26617 | *) ac_try_echo=$ac_try;; | ||
26618 | esac | ||
26619 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26620 | (eval "$ac_try") 2>&5 | ||
22796 | ac_status=$? | 26621 | ac_status=$? |
22797 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26622 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22798 | (exit $ac_status); }; } && | 26623 | (exit $ac_status); }; } && |
22799 | { ac_try='test -s conftest.$ac_objext' | 26624 | { ac_try='test -s conftest.$ac_objext' |
22800 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26625 | { (case "(($ac_try" in |
22801 | (eval $ac_try) 2>&5 | 26626 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26627 | *) ac_try_echo=$ac_try;; | ||
26628 | esac | ||
26629 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26630 | (eval "$ac_try") 2>&5 | ||
22802 | ac_status=$? | 26631 | ac_status=$? |
22803 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26632 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22804 | (exit $ac_status); }; }; then | 26633 | (exit $ac_status); }; }; then |
@@ -22807,15 +26636,16 @@ else | |||
22807 | echo "$as_me: failed program was:" >&5 | 26636 | echo "$as_me: failed program was:" >&5 |
22808 | sed 's/^/| /' conftest.$ac_ext >&5 | 26637 | sed 's/^/| /' conftest.$ac_ext >&5 |
22809 | 26638 | ||
22810 | ac_header_compiler=no | 26639 | ac_header_compiler=no |
22811 | fi | 26640 | fi |
22812 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 26641 | |
22813 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 26642 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
22814 | echo "${ECHO_T}$ac_header_compiler" >&6 | 26643 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
26644 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
22815 | 26645 | ||
22816 | # Is the header present? | 26646 | # Is the header present? |
22817 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 26647 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
22818 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 26648 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
22819 | cat >conftest.$ac_ext <<_ACEOF | 26649 | cat >conftest.$ac_ext <<_ACEOF |
22820 | /* confdefs.h. */ | 26650 | /* confdefs.h. */ |
22821 | _ACEOF | 26651 | _ACEOF |
@@ -22824,8 +26654,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
22824 | /* end confdefs.h. */ | 26654 | /* end confdefs.h. */ |
22825 | #include <$ac_header> | 26655 | #include <$ac_header> |
22826 | _ACEOF | 26656 | _ACEOF |
22827 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 26657 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
22828 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 26658 | case "(($ac_try" in |
26659 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26660 | *) ac_try_echo=$ac_try;; | ||
26661 | esac | ||
26662 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26663 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
22829 | ac_status=$? | 26664 | ac_status=$? |
22830 | grep -v '^ *+' conftest.er1 >conftest.err | 26665 | grep -v '^ *+' conftest.er1 >conftest.err |
22831 | rm -f conftest.er1 | 26666 | rm -f conftest.er1 |
@@ -22849,9 +26684,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
22849 | 26684 | ||
22850 | ac_header_preproc=no | 26685 | ac_header_preproc=no |
22851 | fi | 26686 | fi |
26687 | |||
22852 | rm -f conftest.err conftest.$ac_ext | 26688 | rm -f conftest.err conftest.$ac_ext |
22853 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 26689 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
22854 | echo "${ECHO_T}$ac_header_preproc" >&6 | 26690 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
22855 | 26691 | ||
22856 | # So? What about this header? | 26692 | # So? What about this header? |
22857 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 26693 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -22875,25 +26711,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
22875 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 26711 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
22876 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 26712 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
22877 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 26713 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
22878 | ( | 26714 | ( cat <<\_ASBOX |
22879 | cat <<\_ASBOX | ||
22880 | ## ------------------------------------------- ## | 26715 | ## ------------------------------------------- ## |
22881 | ## Report this to openssh-unix-dev@mindrot.org ## | 26716 | ## Report this to openssh-unix-dev@mindrot.org ## |
22882 | ## ------------------------------------------- ## | 26717 | ## ------------------------------------------- ## |
22883 | _ASBOX | 26718 | _ASBOX |
22884 | ) | | 26719 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
22885 | sed "s/^/$as_me: WARNING: /" >&2 | ||
22886 | ;; | 26720 | ;; |
22887 | esac | 26721 | esac |
22888 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 26722 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
22889 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 26723 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
22890 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 26724 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
22891 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26725 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22892 | else | 26726 | else |
22893 | eval "$as_ac_Header=\$ac_header_preproc" | 26727 | eval "$as_ac_Header=\$ac_header_preproc" |
22894 | fi | 26728 | fi |
22895 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 26729 | ac_res=`eval echo '${'$as_ac_Header'}'` |
22896 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 26730 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
26731 | echo "${ECHO_T}$ac_res" >&6; } | ||
22897 | 26732 | ||
22898 | fi | 26733 | fi |
22899 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 26734 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -22911,8 +26746,8 @@ echo "$as_me: error: Can't find sectok.h" >&2;} | |||
22911 | { (exit 1); exit 1; }; } | 26746 | { (exit 1); exit 1; }; } |
22912 | fi | 26747 | fi |
22913 | 26748 | ||
22914 | echo "$as_me:$LINENO: checking for sectok_open in -lsectok" >&5 | 26749 | { echo "$as_me:$LINENO: checking for sectok_open in -lsectok" >&5 |
22915 | echo $ECHO_N "checking for sectok_open in -lsectok... $ECHO_C" >&6 | 26750 | echo $ECHO_N "checking for sectok_open in -lsectok... $ECHO_C" >&6; } |
22916 | if test "${ac_cv_lib_sectok_sectok_open+set}" = set; then | 26751 | if test "${ac_cv_lib_sectok_sectok_open+set}" = set; then |
22917 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26752 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
22918 | else | 26753 | else |
@@ -22925,39 +26760,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
22925 | cat >>conftest.$ac_ext <<_ACEOF | 26760 | cat >>conftest.$ac_ext <<_ACEOF |
22926 | /* end confdefs.h. */ | 26761 | /* end confdefs.h. */ |
22927 | 26762 | ||
22928 | /* Override any gcc2 internal prototype to avoid an error. */ | 26763 | /* Override any GCC internal prototype to avoid an error. |
26764 | Use char because int might match the return type of a GCC | ||
26765 | builtin and then its argument prototype would still apply. */ | ||
22929 | #ifdef __cplusplus | 26766 | #ifdef __cplusplus |
22930 | extern "C" | 26767 | extern "C" |
22931 | #endif | 26768 | #endif |
22932 | /* We use char because int might match the return type of a gcc2 | ||
22933 | builtin and then its argument prototype would still apply. */ | ||
22934 | char sectok_open (); | 26769 | char sectok_open (); |
22935 | int | 26770 | int |
22936 | main () | 26771 | main () |
22937 | { | 26772 | { |
22938 | sectok_open (); | 26773 | return sectok_open (); |
22939 | ; | 26774 | ; |
22940 | return 0; | 26775 | return 0; |
22941 | } | 26776 | } |
22942 | _ACEOF | 26777 | _ACEOF |
22943 | rm -f conftest.$ac_objext conftest$ac_exeext | 26778 | rm -f conftest.$ac_objext conftest$ac_exeext |
22944 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26779 | if { (ac_try="$ac_link" |
22945 | (eval $ac_link) 2>conftest.er1 | 26780 | case "(($ac_try" in |
26781 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26782 | *) ac_try_echo=$ac_try;; | ||
26783 | esac | ||
26784 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26785 | (eval "$ac_link") 2>conftest.er1 | ||
22946 | ac_status=$? | 26786 | ac_status=$? |
22947 | grep -v '^ *+' conftest.er1 >conftest.err | 26787 | grep -v '^ *+' conftest.er1 >conftest.err |
22948 | rm -f conftest.er1 | 26788 | rm -f conftest.er1 |
22949 | cat conftest.err >&5 | 26789 | cat conftest.err >&5 |
22950 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26790 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22951 | (exit $ac_status); } && | 26791 | (exit $ac_status); } && |
22952 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26792 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22953 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26793 | { (case "(($ac_try" in |
22954 | (eval $ac_try) 2>&5 | 26794 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26795 | *) ac_try_echo=$ac_try;; | ||
26796 | esac | ||
26797 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26798 | (eval "$ac_try") 2>&5 | ||
22955 | ac_status=$? | 26799 | ac_status=$? |
22956 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26800 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22957 | (exit $ac_status); }; } && | 26801 | (exit $ac_status); }; } && |
22958 | { ac_try='test -s conftest$ac_exeext' | 26802 | { ac_try='test -s conftest$ac_exeext' |
22959 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26803 | { (case "(($ac_try" in |
22960 | (eval $ac_try) 2>&5 | 26804 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26805 | *) ac_try_echo=$ac_try;; | ||
26806 | esac | ||
26807 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26808 | (eval "$ac_try") 2>&5 | ||
22961 | ac_status=$? | 26809 | ac_status=$? |
22962 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26810 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22963 | (exit $ac_status); }; }; then | 26811 | (exit $ac_status); }; }; then |
@@ -22966,14 +26814,15 @@ else | |||
22966 | echo "$as_me: failed program was:" >&5 | 26814 | echo "$as_me: failed program was:" >&5 |
22967 | sed 's/^/| /' conftest.$ac_ext >&5 | 26815 | sed 's/^/| /' conftest.$ac_ext >&5 |
22968 | 26816 | ||
22969 | ac_cv_lib_sectok_sectok_open=no | 26817 | ac_cv_lib_sectok_sectok_open=no |
22970 | fi | 26818 | fi |
22971 | rm -f conftest.err conftest.$ac_objext \ | 26819 | |
26820 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
22972 | conftest$ac_exeext conftest.$ac_ext | 26821 | conftest$ac_exeext conftest.$ac_ext |
22973 | LIBS=$ac_check_lib_save_LIBS | 26822 | LIBS=$ac_check_lib_save_LIBS |
22974 | fi | 26823 | fi |
22975 | echo "$as_me:$LINENO: result: $ac_cv_lib_sectok_sectok_open" >&5 | 26824 | { echo "$as_me:$LINENO: result: $ac_cv_lib_sectok_sectok_open" >&5 |
22976 | echo "${ECHO_T}$ac_cv_lib_sectok_sectok_open" >&6 | 26825 | echo "${ECHO_T}$ac_cv_lib_sectok_sectok_open" >&6; } |
22977 | if test $ac_cv_lib_sectok_sectok_open = yes; then | 26826 | if test $ac_cv_lib_sectok_sectok_open = yes; then |
22978 | cat >>confdefs.h <<_ACEOF | 26827 | cat >>confdefs.h <<_ACEOF |
22979 | #define HAVE_LIBSECTOK 1 | 26828 | #define HAVE_LIBSECTOK 1 |
@@ -23002,23 +26851,23 @@ _ACEOF | |||
23002 | fi | 26851 | fi |
23003 | 26852 | ||
23004 | 26853 | ||
23005 | fi; | 26854 | fi |
26855 | |||
23006 | 26856 | ||
23007 | # Check whether user wants OpenSC support | 26857 | # Check whether user wants OpenSC support |
23008 | OPENSC_CONFIG="no" | 26858 | OPENSC_CONFIG="no" |
23009 | 26859 | ||
23010 | # Check whether --with-opensc or --without-opensc was given. | 26860 | # Check whether --with-opensc was given. |
23011 | if test "${with_opensc+set}" = set; then | 26861 | if test "${with_opensc+set}" = set; then |
23012 | withval="$with_opensc" | 26862 | withval=$with_opensc; |
23013 | |||
23014 | if test "x$withval" != "xno" ; then | 26863 | if test "x$withval" != "xno" ; then |
23015 | if test "x$withval" != "xyes" ; then | 26864 | if test "x$withval" != "xyes" ; then |
23016 | OPENSC_CONFIG=$withval/bin/opensc-config | 26865 | OPENSC_CONFIG=$withval/bin/opensc-config |
23017 | else | 26866 | else |
23018 | # Extract the first word of "opensc-config", so it can be a program name with args. | 26867 | # Extract the first word of "opensc-config", so it can be a program name with args. |
23019 | set dummy opensc-config; ac_word=$2 | 26868 | set dummy opensc-config; ac_word=$2 |
23020 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 26869 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
23021 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 26870 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
23022 | if test "${ac_cv_path_OPENSC_CONFIG+set}" = set; then | 26871 | if test "${ac_cv_path_OPENSC_CONFIG+set}" = set; then |
23023 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26872 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23024 | else | 26873 | else |
@@ -23033,28 +26882,29 @@ do | |||
23033 | IFS=$as_save_IFS | 26882 | IFS=$as_save_IFS |
23034 | test -z "$as_dir" && as_dir=. | 26883 | test -z "$as_dir" && as_dir=. |
23035 | for ac_exec_ext in '' $ac_executable_extensions; do | 26884 | for ac_exec_ext in '' $ac_executable_extensions; do |
23036 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 26885 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
23037 | ac_cv_path_OPENSC_CONFIG="$as_dir/$ac_word$ac_exec_ext" | 26886 | ac_cv_path_OPENSC_CONFIG="$as_dir/$ac_word$ac_exec_ext" |
23038 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 26887 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
23039 | break 2 | 26888 | break 2 |
23040 | fi | 26889 | fi |
23041 | done | 26890 | done |
23042 | done | 26891 | done |
26892 | IFS=$as_save_IFS | ||
23043 | 26893 | ||
23044 | test -z "$ac_cv_path_OPENSC_CONFIG" && ac_cv_path_OPENSC_CONFIG="no" | 26894 | test -z "$ac_cv_path_OPENSC_CONFIG" && ac_cv_path_OPENSC_CONFIG="no" |
23045 | ;; | 26895 | ;; |
23046 | esac | 26896 | esac |
23047 | fi | 26897 | fi |
23048 | OPENSC_CONFIG=$ac_cv_path_OPENSC_CONFIG | 26898 | OPENSC_CONFIG=$ac_cv_path_OPENSC_CONFIG |
23049 | |||
23050 | if test -n "$OPENSC_CONFIG"; then | 26899 | if test -n "$OPENSC_CONFIG"; then |
23051 | echo "$as_me:$LINENO: result: $OPENSC_CONFIG" >&5 | 26900 | { echo "$as_me:$LINENO: result: $OPENSC_CONFIG" >&5 |
23052 | echo "${ECHO_T}$OPENSC_CONFIG" >&6 | 26901 | echo "${ECHO_T}$OPENSC_CONFIG" >&6; } |
23053 | else | 26902 | else |
23054 | echo "$as_me:$LINENO: result: no" >&5 | 26903 | { echo "$as_me:$LINENO: result: no" >&5 |
23055 | echo "${ECHO_T}no" >&6 | 26904 | echo "${ECHO_T}no" >&6; } |
23056 | fi | 26905 | fi |
23057 | 26906 | ||
26907 | |||
23058 | fi | 26908 | fi |
23059 | if test "$OPENSC_CONFIG" != "no"; then | 26909 | if test "$OPENSC_CONFIG" != "no"; then |
23060 | LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags` | 26910 | LIBOPENSC_CFLAGS=`$OPENSC_CONFIG --cflags` |
@@ -23075,16 +26925,16 @@ _ACEOF | |||
23075 | fi | 26925 | fi |
23076 | 26926 | ||
23077 | 26927 | ||
23078 | fi; | 26928 | fi |
26929 | |||
23079 | 26930 | ||
23080 | # Check libraries needed by DNS fingerprint support | 26931 | # Check libraries needed by DNS fingerprint support |
23081 | echo "$as_me:$LINENO: checking for library containing getrrsetbyname" >&5 | 26932 | { echo "$as_me:$LINENO: checking for library containing getrrsetbyname" >&5 |
23082 | echo $ECHO_N "checking for library containing getrrsetbyname... $ECHO_C" >&6 | 26933 | echo $ECHO_N "checking for library containing getrrsetbyname... $ECHO_C" >&6; } |
23083 | if test "${ac_cv_search_getrrsetbyname+set}" = set; then | 26934 | if test "${ac_cv_search_getrrsetbyname+set}" = set; then |
23084 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 26935 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23085 | else | 26936 | else |
23086 | ac_func_search_save_LIBS=$LIBS | 26937 | ac_func_search_save_LIBS=$LIBS |
23087 | ac_cv_search_getrrsetbyname=no | ||
23088 | cat >conftest.$ac_ext <<_ACEOF | 26938 | cat >conftest.$ac_ext <<_ACEOF |
23089 | /* confdefs.h. */ | 26939 | /* confdefs.h. */ |
23090 | _ACEOF | 26940 | _ACEOF |
@@ -23092,113 +26942,89 @@ cat confdefs.h >>conftest.$ac_ext | |||
23092 | cat >>conftest.$ac_ext <<_ACEOF | 26942 | cat >>conftest.$ac_ext <<_ACEOF |
23093 | /* end confdefs.h. */ | 26943 | /* end confdefs.h. */ |
23094 | 26944 | ||
23095 | /* Override any gcc2 internal prototype to avoid an error. */ | 26945 | /* Override any GCC internal prototype to avoid an error. |
26946 | Use char because int might match the return type of a GCC | ||
26947 | builtin and then its argument prototype would still apply. */ | ||
23096 | #ifdef __cplusplus | 26948 | #ifdef __cplusplus |
23097 | extern "C" | 26949 | extern "C" |
23098 | #endif | 26950 | #endif |
23099 | /* We use char because int might match the return type of a gcc2 | ||
23100 | builtin and then its argument prototype would still apply. */ | ||
23101 | char getrrsetbyname (); | 26951 | char getrrsetbyname (); |
23102 | int | 26952 | int |
23103 | main () | 26953 | main () |
23104 | { | 26954 | { |
23105 | getrrsetbyname (); | 26955 | return getrrsetbyname (); |
23106 | ; | 26956 | ; |
23107 | return 0; | 26957 | return 0; |
23108 | } | 26958 | } |
23109 | _ACEOF | 26959 | _ACEOF |
23110 | rm -f conftest.$ac_objext conftest$ac_exeext | 26960 | for ac_lib in '' resolv; do |
23111 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 26961 | if test -z "$ac_lib"; then |
23112 | (eval $ac_link) 2>conftest.er1 | 26962 | ac_res="none required" |
26963 | else | ||
26964 | ac_res=-l$ac_lib | ||
26965 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
26966 | fi | ||
26967 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
26968 | if { (ac_try="$ac_link" | ||
26969 | case "(($ac_try" in | ||
26970 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
26971 | *) ac_try_echo=$ac_try;; | ||
26972 | esac | ||
26973 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26974 | (eval "$ac_link") 2>conftest.er1 | ||
23113 | ac_status=$? | 26975 | ac_status=$? |
23114 | grep -v '^ *+' conftest.er1 >conftest.err | 26976 | grep -v '^ *+' conftest.er1 >conftest.err |
23115 | rm -f conftest.er1 | 26977 | rm -f conftest.er1 |
23116 | cat conftest.err >&5 | 26978 | cat conftest.err >&5 |
23117 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26979 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23118 | (exit $ac_status); } && | 26980 | (exit $ac_status); } && |
23119 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 26981 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23120 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26982 | { (case "(($ac_try" in |
23121 | (eval $ac_try) 2>&5 | 26983 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26984 | *) ac_try_echo=$ac_try;; | ||
26985 | esac | ||
26986 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26987 | (eval "$ac_try") 2>&5 | ||
23122 | ac_status=$? | 26988 | ac_status=$? |
23123 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26989 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23124 | (exit $ac_status); }; } && | 26990 | (exit $ac_status); }; } && |
23125 | { ac_try='test -s conftest$ac_exeext' | 26991 | { ac_try='test -s conftest$ac_exeext' |
23126 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 26992 | { (case "(($ac_try" in |
23127 | (eval $ac_try) 2>&5 | 26993 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
26994 | *) ac_try_echo=$ac_try;; | ||
26995 | esac | ||
26996 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
26997 | (eval "$ac_try") 2>&5 | ||
23128 | ac_status=$? | 26998 | ac_status=$? |
23129 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 26999 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23130 | (exit $ac_status); }; }; then | 27000 | (exit $ac_status); }; }; then |
23131 | ac_cv_search_getrrsetbyname="none required" | 27001 | ac_cv_search_getrrsetbyname=$ac_res |
23132 | else | 27002 | else |
23133 | echo "$as_me: failed program was:" >&5 | 27003 | echo "$as_me: failed program was:" >&5 |
23134 | sed 's/^/| /' conftest.$ac_ext >&5 | 27004 | sed 's/^/| /' conftest.$ac_ext >&5 |
23135 | 27005 | ||
23136 | fi | ||
23137 | rm -f conftest.err conftest.$ac_objext \ | ||
23138 | conftest$ac_exeext conftest.$ac_ext | ||
23139 | if test "$ac_cv_search_getrrsetbyname" = no; then | ||
23140 | for ac_lib in resolv; do | ||
23141 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
23142 | cat >conftest.$ac_ext <<_ACEOF | ||
23143 | /* confdefs.h. */ | ||
23144 | _ACEOF | ||
23145 | cat confdefs.h >>conftest.$ac_ext | ||
23146 | cat >>conftest.$ac_ext <<_ACEOF | ||
23147 | /* end confdefs.h. */ | ||
23148 | 27006 | ||
23149 | /* Override any gcc2 internal prototype to avoid an error. */ | 27007 | fi |
23150 | #ifdef __cplusplus | ||
23151 | extern "C" | ||
23152 | #endif | ||
23153 | /* We use char because int might match the return type of a gcc2 | ||
23154 | builtin and then its argument prototype would still apply. */ | ||
23155 | char getrrsetbyname (); | ||
23156 | int | ||
23157 | main () | ||
23158 | { | ||
23159 | getrrsetbyname (); | ||
23160 | ; | ||
23161 | return 0; | ||
23162 | } | ||
23163 | _ACEOF | ||
23164 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
23165 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
23166 | (eval $ac_link) 2>conftest.er1 | ||
23167 | ac_status=$? | ||
23168 | grep -v '^ *+' conftest.er1 >conftest.err | ||
23169 | rm -f conftest.er1 | ||
23170 | cat conftest.err >&5 | ||
23171 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23172 | (exit $ac_status); } && | ||
23173 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
23174 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
23175 | (eval $ac_try) 2>&5 | ||
23176 | ac_status=$? | ||
23177 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23178 | (exit $ac_status); }; } && | ||
23179 | { ac_try='test -s conftest$ac_exeext' | ||
23180 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
23181 | (eval $ac_try) 2>&5 | ||
23182 | ac_status=$? | ||
23183 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23184 | (exit $ac_status); }; }; then | ||
23185 | ac_cv_search_getrrsetbyname="-l$ac_lib" | ||
23186 | break | ||
23187 | else | ||
23188 | echo "$as_me: failed program was:" >&5 | ||
23189 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
23190 | 27008 | ||
27009 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
27010 | conftest$ac_exeext | ||
27011 | if test "${ac_cv_search_getrrsetbyname+set}" = set; then | ||
27012 | break | ||
23191 | fi | 27013 | fi |
23192 | rm -f conftest.err conftest.$ac_objext \ | 27014 | done |
23193 | conftest$ac_exeext conftest.$ac_ext | 27015 | if test "${ac_cv_search_getrrsetbyname+set}" = set; then |
23194 | done | 27016 | : |
27017 | else | ||
27018 | ac_cv_search_getrrsetbyname=no | ||
23195 | fi | 27019 | fi |
27020 | rm conftest.$ac_ext | ||
23196 | LIBS=$ac_func_search_save_LIBS | 27021 | LIBS=$ac_func_search_save_LIBS |
23197 | fi | 27022 | fi |
23198 | echo "$as_me:$LINENO: result: $ac_cv_search_getrrsetbyname" >&5 | 27023 | { echo "$as_me:$LINENO: result: $ac_cv_search_getrrsetbyname" >&5 |
23199 | echo "${ECHO_T}$ac_cv_search_getrrsetbyname" >&6 | 27024 | echo "${ECHO_T}$ac_cv_search_getrrsetbyname" >&6; } |
23200 | if test "$ac_cv_search_getrrsetbyname" != no; then | 27025 | ac_res=$ac_cv_search_getrrsetbyname |
23201 | test "$ac_cv_search_getrrsetbyname" = "none required" || LIBS="$ac_cv_search_getrrsetbyname $LIBS" | 27026 | if test "$ac_res" != no; then |
27027 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
23202 | 27028 | ||
23203 | cat >>confdefs.h <<\_ACEOF | 27029 | cat >>confdefs.h <<\_ACEOF |
23204 | #define HAVE_GETRRSETBYNAME 1 | 27030 | #define HAVE_GETRRSETBYNAME 1 |
@@ -23207,13 +27033,12 @@ _ACEOF | |||
23207 | else | 27033 | else |
23208 | 27034 | ||
23209 | # Needed by our getrrsetbyname() | 27035 | # Needed by our getrrsetbyname() |
23210 | echo "$as_me:$LINENO: checking for library containing res_query" >&5 | 27036 | { echo "$as_me:$LINENO: checking for library containing res_query" >&5 |
23211 | echo $ECHO_N "checking for library containing res_query... $ECHO_C" >&6 | 27037 | echo $ECHO_N "checking for library containing res_query... $ECHO_C" >&6; } |
23212 | if test "${ac_cv_search_res_query+set}" = set; then | 27038 | if test "${ac_cv_search_res_query+set}" = set; then |
23213 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27039 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23214 | else | 27040 | else |
23215 | ac_func_search_save_LIBS=$LIBS | 27041 | ac_func_search_save_LIBS=$LIBS |
23216 | ac_cv_search_res_query=no | ||
23217 | cat >conftest.$ac_ext <<_ACEOF | 27042 | cat >conftest.$ac_ext <<_ACEOF |
23218 | /* confdefs.h. */ | 27043 | /* confdefs.h. */ |
23219 | _ACEOF | 27044 | _ACEOF |
@@ -23221,123 +27046,98 @@ cat confdefs.h >>conftest.$ac_ext | |||
23221 | cat >>conftest.$ac_ext <<_ACEOF | 27046 | cat >>conftest.$ac_ext <<_ACEOF |
23222 | /* end confdefs.h. */ | 27047 | /* end confdefs.h. */ |
23223 | 27048 | ||
23224 | /* Override any gcc2 internal prototype to avoid an error. */ | 27049 | /* Override any GCC internal prototype to avoid an error. |
27050 | Use char because int might match the return type of a GCC | ||
27051 | builtin and then its argument prototype would still apply. */ | ||
23225 | #ifdef __cplusplus | 27052 | #ifdef __cplusplus |
23226 | extern "C" | 27053 | extern "C" |
23227 | #endif | 27054 | #endif |
23228 | /* We use char because int might match the return type of a gcc2 | ||
23229 | builtin and then its argument prototype would still apply. */ | ||
23230 | char res_query (); | 27055 | char res_query (); |
23231 | int | 27056 | int |
23232 | main () | 27057 | main () |
23233 | { | 27058 | { |
23234 | res_query (); | 27059 | return res_query (); |
23235 | ; | 27060 | ; |
23236 | return 0; | 27061 | return 0; |
23237 | } | 27062 | } |
23238 | _ACEOF | 27063 | _ACEOF |
23239 | rm -f conftest.$ac_objext conftest$ac_exeext | 27064 | for ac_lib in '' resolv; do |
23240 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 27065 | if test -z "$ac_lib"; then |
23241 | (eval $ac_link) 2>conftest.er1 | 27066 | ac_res="none required" |
27067 | else | ||
27068 | ac_res=-l$ac_lib | ||
27069 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
27070 | fi | ||
27071 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
27072 | if { (ac_try="$ac_link" | ||
27073 | case "(($ac_try" in | ||
27074 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27075 | *) ac_try_echo=$ac_try;; | ||
27076 | esac | ||
27077 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27078 | (eval "$ac_link") 2>conftest.er1 | ||
23242 | ac_status=$? | 27079 | ac_status=$? |
23243 | grep -v '^ *+' conftest.er1 >conftest.err | 27080 | grep -v '^ *+' conftest.er1 >conftest.err |
23244 | rm -f conftest.er1 | 27081 | rm -f conftest.er1 |
23245 | cat conftest.err >&5 | 27082 | cat conftest.err >&5 |
23246 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27083 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23247 | (exit $ac_status); } && | 27084 | (exit $ac_status); } && |
23248 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27085 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23249 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27086 | { (case "(($ac_try" in |
23250 | (eval $ac_try) 2>&5 | 27087 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27088 | *) ac_try_echo=$ac_try;; | ||
27089 | esac | ||
27090 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27091 | (eval "$ac_try") 2>&5 | ||
23251 | ac_status=$? | 27092 | ac_status=$? |
23252 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27093 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23253 | (exit $ac_status); }; } && | 27094 | (exit $ac_status); }; } && |
23254 | { ac_try='test -s conftest$ac_exeext' | 27095 | { ac_try='test -s conftest$ac_exeext' |
23255 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27096 | { (case "(($ac_try" in |
23256 | (eval $ac_try) 2>&5 | 27097 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27098 | *) ac_try_echo=$ac_try;; | ||
27099 | esac | ||
27100 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27101 | (eval "$ac_try") 2>&5 | ||
23257 | ac_status=$? | 27102 | ac_status=$? |
23258 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27103 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23259 | (exit $ac_status); }; }; then | 27104 | (exit $ac_status); }; }; then |
23260 | ac_cv_search_res_query="none required" | 27105 | ac_cv_search_res_query=$ac_res |
23261 | else | 27106 | else |
23262 | echo "$as_me: failed program was:" >&5 | 27107 | echo "$as_me: failed program was:" >&5 |
23263 | sed 's/^/| /' conftest.$ac_ext >&5 | 27108 | sed 's/^/| /' conftest.$ac_ext >&5 |
23264 | 27109 | ||
23265 | fi | ||
23266 | rm -f conftest.err conftest.$ac_objext \ | ||
23267 | conftest$ac_exeext conftest.$ac_ext | ||
23268 | if test "$ac_cv_search_res_query" = no; then | ||
23269 | for ac_lib in resolv; do | ||
23270 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
23271 | cat >conftest.$ac_ext <<_ACEOF | ||
23272 | /* confdefs.h. */ | ||
23273 | _ACEOF | ||
23274 | cat confdefs.h >>conftest.$ac_ext | ||
23275 | cat >>conftest.$ac_ext <<_ACEOF | ||
23276 | /* end confdefs.h. */ | ||
23277 | 27110 | ||
23278 | /* Override any gcc2 internal prototype to avoid an error. */ | 27111 | fi |
23279 | #ifdef __cplusplus | ||
23280 | extern "C" | ||
23281 | #endif | ||
23282 | /* We use char because int might match the return type of a gcc2 | ||
23283 | builtin and then its argument prototype would still apply. */ | ||
23284 | char res_query (); | ||
23285 | int | ||
23286 | main () | ||
23287 | { | ||
23288 | res_query (); | ||
23289 | ; | ||
23290 | return 0; | ||
23291 | } | ||
23292 | _ACEOF | ||
23293 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
23294 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
23295 | (eval $ac_link) 2>conftest.er1 | ||
23296 | ac_status=$? | ||
23297 | grep -v '^ *+' conftest.er1 >conftest.err | ||
23298 | rm -f conftest.er1 | ||
23299 | cat conftest.err >&5 | ||
23300 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23301 | (exit $ac_status); } && | ||
23302 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
23303 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
23304 | (eval $ac_try) 2>&5 | ||
23305 | ac_status=$? | ||
23306 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23307 | (exit $ac_status); }; } && | ||
23308 | { ac_try='test -s conftest$ac_exeext' | ||
23309 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
23310 | (eval $ac_try) 2>&5 | ||
23311 | ac_status=$? | ||
23312 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23313 | (exit $ac_status); }; }; then | ||
23314 | ac_cv_search_res_query="-l$ac_lib" | ||
23315 | break | ||
23316 | else | ||
23317 | echo "$as_me: failed program was:" >&5 | ||
23318 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
23319 | 27112 | ||
27113 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
27114 | conftest$ac_exeext | ||
27115 | if test "${ac_cv_search_res_query+set}" = set; then | ||
27116 | break | ||
23320 | fi | 27117 | fi |
23321 | rm -f conftest.err conftest.$ac_objext \ | 27118 | done |
23322 | conftest$ac_exeext conftest.$ac_ext | 27119 | if test "${ac_cv_search_res_query+set}" = set; then |
23323 | done | 27120 | : |
27121 | else | ||
27122 | ac_cv_search_res_query=no | ||
23324 | fi | 27123 | fi |
27124 | rm conftest.$ac_ext | ||
23325 | LIBS=$ac_func_search_save_LIBS | 27125 | LIBS=$ac_func_search_save_LIBS |
23326 | fi | 27126 | fi |
23327 | echo "$as_me:$LINENO: result: $ac_cv_search_res_query" >&5 | 27127 | { echo "$as_me:$LINENO: result: $ac_cv_search_res_query" >&5 |
23328 | echo "${ECHO_T}$ac_cv_search_res_query" >&6 | 27128 | echo "${ECHO_T}$ac_cv_search_res_query" >&6; } |
23329 | if test "$ac_cv_search_res_query" != no; then | 27129 | ac_res=$ac_cv_search_res_query |
23330 | test "$ac_cv_search_res_query" = "none required" || LIBS="$ac_cv_search_res_query $LIBS" | 27130 | if test "$ac_res" != no; then |
27131 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
23331 | 27132 | ||
23332 | fi | 27133 | fi |
23333 | 27134 | ||
23334 | echo "$as_me:$LINENO: checking for library containing dn_expand" >&5 | 27135 | { echo "$as_me:$LINENO: checking for library containing dn_expand" >&5 |
23335 | echo $ECHO_N "checking for library containing dn_expand... $ECHO_C" >&6 | 27136 | echo $ECHO_N "checking for library containing dn_expand... $ECHO_C" >&6; } |
23336 | if test "${ac_cv_search_dn_expand+set}" = set; then | 27137 | if test "${ac_cv_search_dn_expand+set}" = set; then |
23337 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27138 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23338 | else | 27139 | else |
23339 | ac_func_search_save_LIBS=$LIBS | 27140 | ac_func_search_save_LIBS=$LIBS |
23340 | ac_cv_search_dn_expand=no | ||
23341 | cat >conftest.$ac_ext <<_ACEOF | 27141 | cat >conftest.$ac_ext <<_ACEOF |
23342 | /* confdefs.h. */ | 27142 | /* confdefs.h. */ |
23343 | _ACEOF | 27143 | _ACEOF |
@@ -23345,118 +27145,94 @@ cat confdefs.h >>conftest.$ac_ext | |||
23345 | cat >>conftest.$ac_ext <<_ACEOF | 27145 | cat >>conftest.$ac_ext <<_ACEOF |
23346 | /* end confdefs.h. */ | 27146 | /* end confdefs.h. */ |
23347 | 27147 | ||
23348 | /* Override any gcc2 internal prototype to avoid an error. */ | 27148 | /* Override any GCC internal prototype to avoid an error. |
27149 | Use char because int might match the return type of a GCC | ||
27150 | builtin and then its argument prototype would still apply. */ | ||
23349 | #ifdef __cplusplus | 27151 | #ifdef __cplusplus |
23350 | extern "C" | 27152 | extern "C" |
23351 | #endif | 27153 | #endif |
23352 | /* We use char because int might match the return type of a gcc2 | ||
23353 | builtin and then its argument prototype would still apply. */ | ||
23354 | char dn_expand (); | 27154 | char dn_expand (); |
23355 | int | 27155 | int |
23356 | main () | 27156 | main () |
23357 | { | 27157 | { |
23358 | dn_expand (); | 27158 | return dn_expand (); |
23359 | ; | 27159 | ; |
23360 | return 0; | 27160 | return 0; |
23361 | } | 27161 | } |
23362 | _ACEOF | 27162 | _ACEOF |
23363 | rm -f conftest.$ac_objext conftest$ac_exeext | 27163 | for ac_lib in '' resolv; do |
23364 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 27164 | if test -z "$ac_lib"; then |
23365 | (eval $ac_link) 2>conftest.er1 | 27165 | ac_res="none required" |
27166 | else | ||
27167 | ac_res=-l$ac_lib | ||
27168 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
27169 | fi | ||
27170 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
27171 | if { (ac_try="$ac_link" | ||
27172 | case "(($ac_try" in | ||
27173 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27174 | *) ac_try_echo=$ac_try;; | ||
27175 | esac | ||
27176 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27177 | (eval "$ac_link") 2>conftest.er1 | ||
23366 | ac_status=$? | 27178 | ac_status=$? |
23367 | grep -v '^ *+' conftest.er1 >conftest.err | 27179 | grep -v '^ *+' conftest.er1 >conftest.err |
23368 | rm -f conftest.er1 | 27180 | rm -f conftest.er1 |
23369 | cat conftest.err >&5 | 27181 | cat conftest.err >&5 |
23370 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27182 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23371 | (exit $ac_status); } && | 27183 | (exit $ac_status); } && |
23372 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27184 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23373 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27185 | { (case "(($ac_try" in |
23374 | (eval $ac_try) 2>&5 | 27186 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27187 | *) ac_try_echo=$ac_try;; | ||
27188 | esac | ||
27189 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27190 | (eval "$ac_try") 2>&5 | ||
23375 | ac_status=$? | 27191 | ac_status=$? |
23376 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27192 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23377 | (exit $ac_status); }; } && | 27193 | (exit $ac_status); }; } && |
23378 | { ac_try='test -s conftest$ac_exeext' | 27194 | { ac_try='test -s conftest$ac_exeext' |
23379 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27195 | { (case "(($ac_try" in |
23380 | (eval $ac_try) 2>&5 | 27196 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27197 | *) ac_try_echo=$ac_try;; | ||
27198 | esac | ||
27199 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27200 | (eval "$ac_try") 2>&5 | ||
23381 | ac_status=$? | 27201 | ac_status=$? |
23382 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27202 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23383 | (exit $ac_status); }; }; then | 27203 | (exit $ac_status); }; }; then |
23384 | ac_cv_search_dn_expand="none required" | 27204 | ac_cv_search_dn_expand=$ac_res |
23385 | else | 27205 | else |
23386 | echo "$as_me: failed program was:" >&5 | 27206 | echo "$as_me: failed program was:" >&5 |
23387 | sed 's/^/| /' conftest.$ac_ext >&5 | 27207 | sed 's/^/| /' conftest.$ac_ext >&5 |
23388 | 27208 | ||
23389 | fi | ||
23390 | rm -f conftest.err conftest.$ac_objext \ | ||
23391 | conftest$ac_exeext conftest.$ac_ext | ||
23392 | if test "$ac_cv_search_dn_expand" = no; then | ||
23393 | for ac_lib in resolv; do | ||
23394 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
23395 | cat >conftest.$ac_ext <<_ACEOF | ||
23396 | /* confdefs.h. */ | ||
23397 | _ACEOF | ||
23398 | cat confdefs.h >>conftest.$ac_ext | ||
23399 | cat >>conftest.$ac_ext <<_ACEOF | ||
23400 | /* end confdefs.h. */ | ||
23401 | 27209 | ||
23402 | /* Override any gcc2 internal prototype to avoid an error. */ | 27210 | fi |
23403 | #ifdef __cplusplus | ||
23404 | extern "C" | ||
23405 | #endif | ||
23406 | /* We use char because int might match the return type of a gcc2 | ||
23407 | builtin and then its argument prototype would still apply. */ | ||
23408 | char dn_expand (); | ||
23409 | int | ||
23410 | main () | ||
23411 | { | ||
23412 | dn_expand (); | ||
23413 | ; | ||
23414 | return 0; | ||
23415 | } | ||
23416 | _ACEOF | ||
23417 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
23418 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
23419 | (eval $ac_link) 2>conftest.er1 | ||
23420 | ac_status=$? | ||
23421 | grep -v '^ *+' conftest.er1 >conftest.err | ||
23422 | rm -f conftest.er1 | ||
23423 | cat conftest.err >&5 | ||
23424 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23425 | (exit $ac_status); } && | ||
23426 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
23427 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
23428 | (eval $ac_try) 2>&5 | ||
23429 | ac_status=$? | ||
23430 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23431 | (exit $ac_status); }; } && | ||
23432 | { ac_try='test -s conftest$ac_exeext' | ||
23433 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
23434 | (eval $ac_try) 2>&5 | ||
23435 | ac_status=$? | ||
23436 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
23437 | (exit $ac_status); }; }; then | ||
23438 | ac_cv_search_dn_expand="-l$ac_lib" | ||
23439 | break | ||
23440 | else | ||
23441 | echo "$as_me: failed program was:" >&5 | ||
23442 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
23443 | 27211 | ||
27212 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
27213 | conftest$ac_exeext | ||
27214 | if test "${ac_cv_search_dn_expand+set}" = set; then | ||
27215 | break | ||
23444 | fi | 27216 | fi |
23445 | rm -f conftest.err conftest.$ac_objext \ | 27217 | done |
23446 | conftest$ac_exeext conftest.$ac_ext | 27218 | if test "${ac_cv_search_dn_expand+set}" = set; then |
23447 | done | 27219 | : |
27220 | else | ||
27221 | ac_cv_search_dn_expand=no | ||
23448 | fi | 27222 | fi |
27223 | rm conftest.$ac_ext | ||
23449 | LIBS=$ac_func_search_save_LIBS | 27224 | LIBS=$ac_func_search_save_LIBS |
23450 | fi | 27225 | fi |
23451 | echo "$as_me:$LINENO: result: $ac_cv_search_dn_expand" >&5 | 27226 | { echo "$as_me:$LINENO: result: $ac_cv_search_dn_expand" >&5 |
23452 | echo "${ECHO_T}$ac_cv_search_dn_expand" >&6 | 27227 | echo "${ECHO_T}$ac_cv_search_dn_expand" >&6; } |
23453 | if test "$ac_cv_search_dn_expand" != no; then | 27228 | ac_res=$ac_cv_search_dn_expand |
23454 | test "$ac_cv_search_dn_expand" = "none required" || LIBS="$ac_cv_search_dn_expand $LIBS" | 27229 | if test "$ac_res" != no; then |
27230 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
23455 | 27231 | ||
23456 | fi | 27232 | fi |
23457 | 27233 | ||
23458 | echo "$as_me:$LINENO: checking if res_query will link" >&5 | 27234 | { echo "$as_me:$LINENO: checking if res_query will link" >&5 |
23459 | echo $ECHO_N "checking if res_query will link... $ECHO_C" >&6 | 27235 | echo $ECHO_N "checking if res_query will link... $ECHO_C" >&6; } |
23460 | cat >conftest.$ac_ext <<_ACEOF | 27236 | cat >conftest.$ac_ext <<_ACEOF |
23461 | /* confdefs.h. */ | 27237 | /* confdefs.h. */ |
23462 | _ACEOF | 27238 | _ACEOF |
@@ -23464,54 +27240,67 @@ cat confdefs.h >>conftest.$ac_ext | |||
23464 | cat >>conftest.$ac_ext <<_ACEOF | 27240 | cat >>conftest.$ac_ext <<_ACEOF |
23465 | /* end confdefs.h. */ | 27241 | /* end confdefs.h. */ |
23466 | 27242 | ||
23467 | /* Override any gcc2 internal prototype to avoid an error. */ | 27243 | /* Override any GCC internal prototype to avoid an error. |
27244 | Use char because int might match the return type of a GCC | ||
27245 | builtin and then its argument prototype would still apply. */ | ||
23468 | #ifdef __cplusplus | 27246 | #ifdef __cplusplus |
23469 | extern "C" | 27247 | extern "C" |
23470 | #endif | 27248 | #endif |
23471 | /* We use char because int might match the return type of a gcc2 | ||
23472 | builtin and then its argument prototype would still apply. */ | ||
23473 | char res_query (); | 27249 | char res_query (); |
23474 | int | 27250 | int |
23475 | main () | 27251 | main () |
23476 | { | 27252 | { |
23477 | res_query (); | 27253 | return res_query (); |
23478 | ; | 27254 | ; |
23479 | return 0; | 27255 | return 0; |
23480 | } | 27256 | } |
23481 | _ACEOF | 27257 | _ACEOF |
23482 | rm -f conftest.$ac_objext conftest$ac_exeext | 27258 | rm -f conftest.$ac_objext conftest$ac_exeext |
23483 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 27259 | if { (ac_try="$ac_link" |
23484 | (eval $ac_link) 2>conftest.er1 | 27260 | case "(($ac_try" in |
27261 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27262 | *) ac_try_echo=$ac_try;; | ||
27263 | esac | ||
27264 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27265 | (eval "$ac_link") 2>conftest.er1 | ||
23485 | ac_status=$? | 27266 | ac_status=$? |
23486 | grep -v '^ *+' conftest.er1 >conftest.err | 27267 | grep -v '^ *+' conftest.er1 >conftest.err |
23487 | rm -f conftest.er1 | 27268 | rm -f conftest.er1 |
23488 | cat conftest.err >&5 | 27269 | cat conftest.err >&5 |
23489 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27270 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23490 | (exit $ac_status); } && | 27271 | (exit $ac_status); } && |
23491 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27272 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23492 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27273 | { (case "(($ac_try" in |
23493 | (eval $ac_try) 2>&5 | 27274 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27275 | *) ac_try_echo=$ac_try;; | ||
27276 | esac | ||
27277 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27278 | (eval "$ac_try") 2>&5 | ||
23494 | ac_status=$? | 27279 | ac_status=$? |
23495 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27280 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23496 | (exit $ac_status); }; } && | 27281 | (exit $ac_status); }; } && |
23497 | { ac_try='test -s conftest$ac_exeext' | 27282 | { ac_try='test -s conftest$ac_exeext' |
23498 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27283 | { (case "(($ac_try" in |
23499 | (eval $ac_try) 2>&5 | 27284 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27285 | *) ac_try_echo=$ac_try;; | ||
27286 | esac | ||
27287 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27288 | (eval "$ac_try") 2>&5 | ||
23500 | ac_status=$? | 27289 | ac_status=$? |
23501 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27290 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23502 | (exit $ac_status); }; }; then | 27291 | (exit $ac_status); }; }; then |
23503 | echo "$as_me:$LINENO: result: yes" >&5 | 27292 | { echo "$as_me:$LINENO: result: yes" >&5 |
23504 | echo "${ECHO_T}yes" >&6 | 27293 | echo "${ECHO_T}yes" >&6; } |
23505 | else | 27294 | else |
23506 | echo "$as_me: failed program was:" >&5 | 27295 | echo "$as_me: failed program was:" >&5 |
23507 | sed 's/^/| /' conftest.$ac_ext >&5 | 27296 | sed 's/^/| /' conftest.$ac_ext >&5 |
23508 | 27297 | ||
23509 | echo "$as_me:$LINENO: result: no" >&5 | 27298 | { echo "$as_me:$LINENO: result: no" >&5 |
23510 | echo "${ECHO_T}no" >&6 | 27299 | echo "${ECHO_T}no" >&6; } |
23511 | saved_LIBS="$LIBS" | 27300 | saved_LIBS="$LIBS" |
23512 | LIBS="$LIBS -lresolv" | 27301 | LIBS="$LIBS -lresolv" |
23513 | echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5 | 27302 | { echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5 |
23514 | echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6 | 27303 | echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6; } |
23515 | cat >conftest.$ac_ext <<_ACEOF | 27304 | cat >conftest.$ac_ext <<_ACEOF |
23516 | 27305 | ||
23517 | #include <resolv.h> | 27306 | #include <resolv.h> |
@@ -23523,51 +27312,66 @@ int main() | |||
23523 | 27312 | ||
23524 | _ACEOF | 27313 | _ACEOF |
23525 | rm -f conftest.$ac_objext conftest$ac_exeext | 27314 | rm -f conftest.$ac_objext conftest$ac_exeext |
23526 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 27315 | if { (ac_try="$ac_link" |
23527 | (eval $ac_link) 2>conftest.er1 | 27316 | case "(($ac_try" in |
27317 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27318 | *) ac_try_echo=$ac_try;; | ||
27319 | esac | ||
27320 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27321 | (eval "$ac_link") 2>conftest.er1 | ||
23528 | ac_status=$? | 27322 | ac_status=$? |
23529 | grep -v '^ *+' conftest.er1 >conftest.err | 27323 | grep -v '^ *+' conftest.er1 >conftest.err |
23530 | rm -f conftest.er1 | 27324 | rm -f conftest.er1 |
23531 | cat conftest.err >&5 | 27325 | cat conftest.err >&5 |
23532 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27326 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23533 | (exit $ac_status); } && | 27327 | (exit $ac_status); } && |
23534 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27328 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23535 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27329 | { (case "(($ac_try" in |
23536 | (eval $ac_try) 2>&5 | 27330 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27331 | *) ac_try_echo=$ac_try;; | ||
27332 | esac | ||
27333 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27334 | (eval "$ac_try") 2>&5 | ||
23537 | ac_status=$? | 27335 | ac_status=$? |
23538 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27336 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23539 | (exit $ac_status); }; } && | 27337 | (exit $ac_status); }; } && |
23540 | { ac_try='test -s conftest$ac_exeext' | 27338 | { ac_try='test -s conftest$ac_exeext' |
23541 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27339 | { (case "(($ac_try" in |
23542 | (eval $ac_try) 2>&5 | 27340 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27341 | *) ac_try_echo=$ac_try;; | ||
27342 | esac | ||
27343 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27344 | (eval "$ac_try") 2>&5 | ||
23543 | ac_status=$? | 27345 | ac_status=$? |
23544 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27346 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23545 | (exit $ac_status); }; }; then | 27347 | (exit $ac_status); }; }; then |
23546 | LIBS="$LIBS -lresolv" | 27348 | LIBS="$LIBS -lresolv" |
23547 | echo "$as_me:$LINENO: result: yes" >&5 | 27349 | { echo "$as_me:$LINENO: result: yes" >&5 |
23548 | echo "${ECHO_T}yes" >&6 | 27350 | echo "${ECHO_T}yes" >&6; } |
23549 | else | 27351 | else |
23550 | echo "$as_me: failed program was:" >&5 | 27352 | echo "$as_me: failed program was:" >&5 |
23551 | sed 's/^/| /' conftest.$ac_ext >&5 | 27353 | sed 's/^/| /' conftest.$ac_ext >&5 |
23552 | 27354 | ||
23553 | LIBS="$saved_LIBS" | 27355 | LIBS="$saved_LIBS" |
23554 | echo "$as_me:$LINENO: result: no" >&5 | 27356 | { echo "$as_me:$LINENO: result: no" >&5 |
23555 | echo "${ECHO_T}no" >&6 | 27357 | echo "${ECHO_T}no" >&6; } |
23556 | fi | 27358 | fi |
23557 | rm -f conftest.err conftest.$ac_objext \ | 27359 | |
27360 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
23558 | conftest$ac_exeext conftest.$ac_ext | 27361 | conftest$ac_exeext conftest.$ac_ext |
23559 | 27362 | ||
23560 | fi | 27363 | fi |
23561 | rm -f conftest.err conftest.$ac_objext \ | 27364 | |
27365 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
23562 | conftest$ac_exeext conftest.$ac_ext | 27366 | conftest$ac_exeext conftest.$ac_ext |
23563 | 27367 | ||
23564 | 27368 | ||
23565 | for ac_func in _getshort _getlong | 27369 | for ac_func in _getshort _getlong |
23566 | do | 27370 | do |
23567 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` | 27371 | as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` |
23568 | echo "$as_me:$LINENO: checking for $ac_func" >&5 | 27372 | { echo "$as_me:$LINENO: checking for $ac_func" >&5 |
23569 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 | 27373 | echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } |
23570 | if eval "test \"\${$as_ac_var+set}\" = set"; then | 27374 | if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then |
23571 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27375 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23572 | else | 27376 | else |
23573 | cat >conftest.$ac_ext <<_ACEOF | 27377 | cat >conftest.$ac_ext <<_ACEOF |
@@ -23593,52 +27397,59 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
23593 | 27397 | ||
23594 | #undef $ac_func | 27398 | #undef $ac_func |
23595 | 27399 | ||
23596 | /* Override any gcc2 internal prototype to avoid an error. */ | 27400 | /* Override any GCC internal prototype to avoid an error. |
27401 | Use char because int might match the return type of a GCC | ||
27402 | builtin and then its argument prototype would still apply. */ | ||
23597 | #ifdef __cplusplus | 27403 | #ifdef __cplusplus |
23598 | extern "C" | 27404 | extern "C" |
23599 | { | ||
23600 | #endif | 27405 | #endif |
23601 | /* We use char because int might match the return type of a gcc2 | ||
23602 | builtin and then its argument prototype would still apply. */ | ||
23603 | char $ac_func (); | 27406 | char $ac_func (); |
23604 | /* The GNU C library defines this for functions which it implements | 27407 | /* The GNU C library defines this for functions which it implements |
23605 | to always fail with ENOSYS. Some functions are actually named | 27408 | to always fail with ENOSYS. Some functions are actually named |
23606 | something starting with __ and the normal name is an alias. */ | 27409 | something starting with __ and the normal name is an alias. */ |
23607 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | 27410 | #if defined __stub_$ac_func || defined __stub___$ac_func |
23608 | choke me | 27411 | choke me |
23609 | #else | ||
23610 | char (*f) () = $ac_func; | ||
23611 | #endif | ||
23612 | #ifdef __cplusplus | ||
23613 | } | ||
23614 | #endif | 27412 | #endif |
23615 | 27413 | ||
23616 | int | 27414 | int |
23617 | main () | 27415 | main () |
23618 | { | 27416 | { |
23619 | return f != $ac_func; | 27417 | return $ac_func (); |
23620 | ; | 27418 | ; |
23621 | return 0; | 27419 | return 0; |
23622 | } | 27420 | } |
23623 | _ACEOF | 27421 | _ACEOF |
23624 | rm -f conftest.$ac_objext conftest$ac_exeext | 27422 | rm -f conftest.$ac_objext conftest$ac_exeext |
23625 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 27423 | if { (ac_try="$ac_link" |
23626 | (eval $ac_link) 2>conftest.er1 | 27424 | case "(($ac_try" in |
27425 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27426 | *) ac_try_echo=$ac_try;; | ||
27427 | esac | ||
27428 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27429 | (eval "$ac_link") 2>conftest.er1 | ||
23627 | ac_status=$? | 27430 | ac_status=$? |
23628 | grep -v '^ *+' conftest.er1 >conftest.err | 27431 | grep -v '^ *+' conftest.er1 >conftest.err |
23629 | rm -f conftest.er1 | 27432 | rm -f conftest.er1 |
23630 | cat conftest.err >&5 | 27433 | cat conftest.err >&5 |
23631 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27434 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23632 | (exit $ac_status); } && | 27435 | (exit $ac_status); } && |
23633 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27436 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23634 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27437 | { (case "(($ac_try" in |
23635 | (eval $ac_try) 2>&5 | 27438 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27439 | *) ac_try_echo=$ac_try;; | ||
27440 | esac | ||
27441 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27442 | (eval "$ac_try") 2>&5 | ||
23636 | ac_status=$? | 27443 | ac_status=$? |
23637 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27444 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23638 | (exit $ac_status); }; } && | 27445 | (exit $ac_status); }; } && |
23639 | { ac_try='test -s conftest$ac_exeext' | 27446 | { ac_try='test -s conftest$ac_exeext' |
23640 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27447 | { (case "(($ac_try" in |
23641 | (eval $ac_try) 2>&5 | 27448 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27449 | *) ac_try_echo=$ac_try;; | ||
27450 | esac | ||
27451 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27452 | (eval "$ac_try") 2>&5 | ||
23642 | ac_status=$? | 27453 | ac_status=$? |
23643 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27454 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23644 | (exit $ac_status); }; }; then | 27455 | (exit $ac_status); }; }; then |
@@ -23647,13 +27458,15 @@ else | |||
23647 | echo "$as_me: failed program was:" >&5 | 27458 | echo "$as_me: failed program was:" >&5 |
23648 | sed 's/^/| /' conftest.$ac_ext >&5 | 27459 | sed 's/^/| /' conftest.$ac_ext >&5 |
23649 | 27460 | ||
23650 | eval "$as_ac_var=no" | 27461 | eval "$as_ac_var=no" |
23651 | fi | 27462 | fi |
23652 | rm -f conftest.err conftest.$ac_objext \ | 27463 | |
27464 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
23653 | conftest$ac_exeext conftest.$ac_ext | 27465 | conftest$ac_exeext conftest.$ac_ext |
23654 | fi | 27466 | fi |
23655 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 | 27467 | ac_res=`eval echo '${'$as_ac_var'}'` |
23656 | echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 | 27468 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
27469 | echo "${ECHO_T}$ac_res" >&6; } | ||
23657 | if test `eval echo '${'$as_ac_var'}'` = yes; then | 27470 | if test `eval echo '${'$as_ac_var'}'` = yes; then |
23658 | cat >>confdefs.h <<_ACEOF | 27471 | cat >>confdefs.h <<_ACEOF |
23659 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 27472 | #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
@@ -23662,8 +27475,8 @@ _ACEOF | |||
23662 | fi | 27475 | fi |
23663 | done | 27476 | done |
23664 | 27477 | ||
23665 | echo "$as_me:$LINENO: checking whether _getshort is declared" >&5 | 27478 | { echo "$as_me:$LINENO: checking whether _getshort is declared" >&5 |
23666 | echo $ECHO_N "checking whether _getshort is declared... $ECHO_C" >&6 | 27479 | echo $ECHO_N "checking whether _getshort is declared... $ECHO_C" >&6; } |
23667 | if test "${ac_cv_have_decl__getshort+set}" = set; then | 27480 | if test "${ac_cv_have_decl__getshort+set}" = set; then |
23668 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27481 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23669 | else | 27482 | else |
@@ -23681,6 +27494,7 @@ main () | |||
23681 | { | 27494 | { |
23682 | #ifndef _getshort | 27495 | #ifndef _getshort |
23683 | char *p = (char *) _getshort; | 27496 | char *p = (char *) _getshort; |
27497 | return !p; | ||
23684 | #endif | 27498 | #endif |
23685 | 27499 | ||
23686 | ; | 27500 | ; |
@@ -23688,23 +27502,36 @@ main () | |||
23688 | } | 27502 | } |
23689 | _ACEOF | 27503 | _ACEOF |
23690 | rm -f conftest.$ac_objext | 27504 | rm -f conftest.$ac_objext |
23691 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 27505 | if { (ac_try="$ac_compile" |
23692 | (eval $ac_compile) 2>conftest.er1 | 27506 | case "(($ac_try" in |
27507 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27508 | *) ac_try_echo=$ac_try;; | ||
27509 | esac | ||
27510 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27511 | (eval "$ac_compile") 2>conftest.er1 | ||
23693 | ac_status=$? | 27512 | ac_status=$? |
23694 | grep -v '^ *+' conftest.er1 >conftest.err | 27513 | grep -v '^ *+' conftest.er1 >conftest.err |
23695 | rm -f conftest.er1 | 27514 | rm -f conftest.er1 |
23696 | cat conftest.err >&5 | 27515 | cat conftest.err >&5 |
23697 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27516 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23698 | (exit $ac_status); } && | 27517 | (exit $ac_status); } && |
23699 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27518 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23700 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27519 | { (case "(($ac_try" in |
23701 | (eval $ac_try) 2>&5 | 27520 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27521 | *) ac_try_echo=$ac_try;; | ||
27522 | esac | ||
27523 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27524 | (eval "$ac_try") 2>&5 | ||
23702 | ac_status=$? | 27525 | ac_status=$? |
23703 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27526 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23704 | (exit $ac_status); }; } && | 27527 | (exit $ac_status); }; } && |
23705 | { ac_try='test -s conftest.$ac_objext' | 27528 | { ac_try='test -s conftest.$ac_objext' |
23706 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27529 | { (case "(($ac_try" in |
23707 | (eval $ac_try) 2>&5 | 27530 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27531 | *) ac_try_echo=$ac_try;; | ||
27532 | esac | ||
27533 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27534 | (eval "$ac_try") 2>&5 | ||
23708 | ac_status=$? | 27535 | ac_status=$? |
23709 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27536 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23710 | (exit $ac_status); }; }; then | 27537 | (exit $ac_status); }; }; then |
@@ -23713,12 +27540,13 @@ else | |||
23713 | echo "$as_me: failed program was:" >&5 | 27540 | echo "$as_me: failed program was:" >&5 |
23714 | sed 's/^/| /' conftest.$ac_ext >&5 | 27541 | sed 's/^/| /' conftest.$ac_ext >&5 |
23715 | 27542 | ||
23716 | ac_cv_have_decl__getshort=no | 27543 | ac_cv_have_decl__getshort=no |
23717 | fi | 27544 | fi |
23718 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 27545 | |
27546 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
23719 | fi | 27547 | fi |
23720 | echo "$as_me:$LINENO: result: $ac_cv_have_decl__getshort" >&5 | 27548 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl__getshort" >&5 |
23721 | echo "${ECHO_T}$ac_cv_have_decl__getshort" >&6 | 27549 | echo "${ECHO_T}$ac_cv_have_decl__getshort" >&6; } |
23722 | if test $ac_cv_have_decl__getshort = yes; then | 27550 | if test $ac_cv_have_decl__getshort = yes; then |
23723 | 27551 | ||
23724 | cat >>confdefs.h <<_ACEOF | 27552 | cat >>confdefs.h <<_ACEOF |
@@ -23733,8 +27561,8 @@ _ACEOF | |||
23733 | 27561 | ||
23734 | 27562 | ||
23735 | fi | 27563 | fi |
23736 | echo "$as_me:$LINENO: checking whether _getlong is declared" >&5 | 27564 | { echo "$as_me:$LINENO: checking whether _getlong is declared" >&5 |
23737 | echo $ECHO_N "checking whether _getlong is declared... $ECHO_C" >&6 | 27565 | echo $ECHO_N "checking whether _getlong is declared... $ECHO_C" >&6; } |
23738 | if test "${ac_cv_have_decl__getlong+set}" = set; then | 27566 | if test "${ac_cv_have_decl__getlong+set}" = set; then |
23739 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27567 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23740 | else | 27568 | else |
@@ -23752,6 +27580,7 @@ main () | |||
23752 | { | 27580 | { |
23753 | #ifndef _getlong | 27581 | #ifndef _getlong |
23754 | char *p = (char *) _getlong; | 27582 | char *p = (char *) _getlong; |
27583 | return !p; | ||
23755 | #endif | 27584 | #endif |
23756 | 27585 | ||
23757 | ; | 27586 | ; |
@@ -23759,23 +27588,36 @@ main () | |||
23759 | } | 27588 | } |
23760 | _ACEOF | 27589 | _ACEOF |
23761 | rm -f conftest.$ac_objext | 27590 | rm -f conftest.$ac_objext |
23762 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 27591 | if { (ac_try="$ac_compile" |
23763 | (eval $ac_compile) 2>conftest.er1 | 27592 | case "(($ac_try" in |
27593 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27594 | *) ac_try_echo=$ac_try;; | ||
27595 | esac | ||
27596 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27597 | (eval "$ac_compile") 2>conftest.er1 | ||
23764 | ac_status=$? | 27598 | ac_status=$? |
23765 | grep -v '^ *+' conftest.er1 >conftest.err | 27599 | grep -v '^ *+' conftest.er1 >conftest.err |
23766 | rm -f conftest.er1 | 27600 | rm -f conftest.er1 |
23767 | cat conftest.err >&5 | 27601 | cat conftest.err >&5 |
23768 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27602 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23769 | (exit $ac_status); } && | 27603 | (exit $ac_status); } && |
23770 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27604 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23771 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27605 | { (case "(($ac_try" in |
23772 | (eval $ac_try) 2>&5 | 27606 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27607 | *) ac_try_echo=$ac_try;; | ||
27608 | esac | ||
27609 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27610 | (eval "$ac_try") 2>&5 | ||
23773 | ac_status=$? | 27611 | ac_status=$? |
23774 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27612 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23775 | (exit $ac_status); }; } && | 27613 | (exit $ac_status); }; } && |
23776 | { ac_try='test -s conftest.$ac_objext' | 27614 | { ac_try='test -s conftest.$ac_objext' |
23777 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27615 | { (case "(($ac_try" in |
23778 | (eval $ac_try) 2>&5 | 27616 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27617 | *) ac_try_echo=$ac_try;; | ||
27618 | esac | ||
27619 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27620 | (eval "$ac_try") 2>&5 | ||
23779 | ac_status=$? | 27621 | ac_status=$? |
23780 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27622 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23781 | (exit $ac_status); }; }; then | 27623 | (exit $ac_status); }; }; then |
@@ -23784,12 +27626,13 @@ else | |||
23784 | echo "$as_me: failed program was:" >&5 | 27626 | echo "$as_me: failed program was:" >&5 |
23785 | sed 's/^/| /' conftest.$ac_ext >&5 | 27627 | sed 's/^/| /' conftest.$ac_ext >&5 |
23786 | 27628 | ||
23787 | ac_cv_have_decl__getlong=no | 27629 | ac_cv_have_decl__getlong=no |
23788 | fi | 27630 | fi |
23789 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 27631 | |
27632 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
23790 | fi | 27633 | fi |
23791 | echo "$as_me:$LINENO: result: $ac_cv_have_decl__getlong" >&5 | 27634 | { echo "$as_me:$LINENO: result: $ac_cv_have_decl__getlong" >&5 |
23792 | echo "${ECHO_T}$ac_cv_have_decl__getlong" >&6 | 27635 | echo "${ECHO_T}$ac_cv_have_decl__getlong" >&6; } |
23793 | if test $ac_cv_have_decl__getlong = yes; then | 27636 | if test $ac_cv_have_decl__getlong = yes; then |
23794 | 27637 | ||
23795 | cat >>confdefs.h <<_ACEOF | 27638 | cat >>confdefs.h <<_ACEOF |
@@ -23806,8 +27649,8 @@ _ACEOF | |||
23806 | fi | 27649 | fi |
23807 | 27650 | ||
23808 | 27651 | ||
23809 | echo "$as_me:$LINENO: checking for HEADER.ad" >&5 | 27652 | { echo "$as_me:$LINENO: checking for HEADER.ad" >&5 |
23810 | echo $ECHO_N "checking for HEADER.ad... $ECHO_C" >&6 | 27653 | echo $ECHO_N "checking for HEADER.ad... $ECHO_C" >&6; } |
23811 | if test "${ac_cv_member_HEADER_ad+set}" = set; then | 27654 | if test "${ac_cv_member_HEADER_ad+set}" = set; then |
23812 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27655 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23813 | else | 27656 | else |
@@ -23830,23 +27673,36 @@ return 0; | |||
23830 | } | 27673 | } |
23831 | _ACEOF | 27674 | _ACEOF |
23832 | rm -f conftest.$ac_objext | 27675 | rm -f conftest.$ac_objext |
23833 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 27676 | if { (ac_try="$ac_compile" |
23834 | (eval $ac_compile) 2>conftest.er1 | 27677 | case "(($ac_try" in |
27678 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27679 | *) ac_try_echo=$ac_try;; | ||
27680 | esac | ||
27681 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27682 | (eval "$ac_compile") 2>conftest.er1 | ||
23835 | ac_status=$? | 27683 | ac_status=$? |
23836 | grep -v '^ *+' conftest.er1 >conftest.err | 27684 | grep -v '^ *+' conftest.er1 >conftest.err |
23837 | rm -f conftest.er1 | 27685 | rm -f conftest.er1 |
23838 | cat conftest.err >&5 | 27686 | cat conftest.err >&5 |
23839 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27687 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23840 | (exit $ac_status); } && | 27688 | (exit $ac_status); } && |
23841 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27689 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23842 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27690 | { (case "(($ac_try" in |
23843 | (eval $ac_try) 2>&5 | 27691 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27692 | *) ac_try_echo=$ac_try;; | ||
27693 | esac | ||
27694 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27695 | (eval "$ac_try") 2>&5 | ||
23844 | ac_status=$? | 27696 | ac_status=$? |
23845 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27697 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23846 | (exit $ac_status); }; } && | 27698 | (exit $ac_status); }; } && |
23847 | { ac_try='test -s conftest.$ac_objext' | 27699 | { ac_try='test -s conftest.$ac_objext' |
23848 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27700 | { (case "(($ac_try" in |
23849 | (eval $ac_try) 2>&5 | 27701 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27702 | *) ac_try_echo=$ac_try;; | ||
27703 | esac | ||
27704 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27705 | (eval "$ac_try") 2>&5 | ||
23850 | ac_status=$? | 27706 | ac_status=$? |
23851 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27707 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23852 | (exit $ac_status); }; }; then | 27708 | (exit $ac_status); }; }; then |
@@ -23855,7 +27711,7 @@ else | |||
23855 | echo "$as_me: failed program was:" >&5 | 27711 | echo "$as_me: failed program was:" >&5 |
23856 | sed 's/^/| /' conftest.$ac_ext >&5 | 27712 | sed 's/^/| /' conftest.$ac_ext >&5 |
23857 | 27713 | ||
23858 | cat >conftest.$ac_ext <<_ACEOF | 27714 | cat >conftest.$ac_ext <<_ACEOF |
23859 | /* confdefs.h. */ | 27715 | /* confdefs.h. */ |
23860 | _ACEOF | 27716 | _ACEOF |
23861 | cat confdefs.h >>conftest.$ac_ext | 27717 | cat confdefs.h >>conftest.$ac_ext |
@@ -23874,23 +27730,36 @@ return 0; | |||
23874 | } | 27730 | } |
23875 | _ACEOF | 27731 | _ACEOF |
23876 | rm -f conftest.$ac_objext | 27732 | rm -f conftest.$ac_objext |
23877 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 27733 | if { (ac_try="$ac_compile" |
23878 | (eval $ac_compile) 2>conftest.er1 | 27734 | case "(($ac_try" in |
27735 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27736 | *) ac_try_echo=$ac_try;; | ||
27737 | esac | ||
27738 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27739 | (eval "$ac_compile") 2>conftest.er1 | ||
23879 | ac_status=$? | 27740 | ac_status=$? |
23880 | grep -v '^ *+' conftest.er1 >conftest.err | 27741 | grep -v '^ *+' conftest.er1 >conftest.err |
23881 | rm -f conftest.er1 | 27742 | rm -f conftest.er1 |
23882 | cat conftest.err >&5 | 27743 | cat conftest.err >&5 |
23883 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27744 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23884 | (exit $ac_status); } && | 27745 | (exit $ac_status); } && |
23885 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27746 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23886 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27747 | { (case "(($ac_try" in |
23887 | (eval $ac_try) 2>&5 | 27748 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27749 | *) ac_try_echo=$ac_try;; | ||
27750 | esac | ||
27751 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27752 | (eval "$ac_try") 2>&5 | ||
23888 | ac_status=$? | 27753 | ac_status=$? |
23889 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27754 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23890 | (exit $ac_status); }; } && | 27755 | (exit $ac_status); }; } && |
23891 | { ac_try='test -s conftest.$ac_objext' | 27756 | { ac_try='test -s conftest.$ac_objext' |
23892 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27757 | { (case "(($ac_try" in |
23893 | (eval $ac_try) 2>&5 | 27758 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27759 | *) ac_try_echo=$ac_try;; | ||
27760 | esac | ||
27761 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27762 | (eval "$ac_try") 2>&5 | ||
23894 | ac_status=$? | 27763 | ac_status=$? |
23895 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27764 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23896 | (exit $ac_status); }; }; then | 27765 | (exit $ac_status); }; }; then |
@@ -23899,14 +27768,16 @@ else | |||
23899 | echo "$as_me: failed program was:" >&5 | 27768 | echo "$as_me: failed program was:" >&5 |
23900 | sed 's/^/| /' conftest.$ac_ext >&5 | 27769 | sed 's/^/| /' conftest.$ac_ext >&5 |
23901 | 27770 | ||
23902 | ac_cv_member_HEADER_ad=no | 27771 | ac_cv_member_HEADER_ad=no |
23903 | fi | 27772 | fi |
23904 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 27773 | |
27774 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
23905 | fi | 27775 | fi |
23906 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 27776 | |
27777 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
23907 | fi | 27778 | fi |
23908 | echo "$as_me:$LINENO: result: $ac_cv_member_HEADER_ad" >&5 | 27779 | { echo "$as_me:$LINENO: result: $ac_cv_member_HEADER_ad" >&5 |
23909 | echo "${ECHO_T}$ac_cv_member_HEADER_ad" >&6 | 27780 | echo "${ECHO_T}$ac_cv_member_HEADER_ad" >&6; } |
23910 | if test $ac_cv_member_HEADER_ad = yes; then | 27781 | if test $ac_cv_member_HEADER_ad = yes; then |
23911 | 27782 | ||
23912 | cat >>confdefs.h <<\_ACEOF | 27783 | cat >>confdefs.h <<\_ACEOF |
@@ -23921,11 +27792,19 @@ fi | |||
23921 | 27792 | ||
23922 | # Check whether user wants SELinux support | 27793 | # Check whether user wants SELinux support |
23923 | SELINUX_MSG="no" | 27794 | SELINUX_MSG="no" |
27795 | LIBSELINUX="" | ||
23924 | 27796 | ||
23925 | # Check whether --with-selinux or --without-selinux was given. | 27797 | # Check whether --with-selinux was given. |
23926 | if test "${with_selinux+set}" = set; then | 27798 | if test "${with_selinux+set}" = set; then |
23927 | withval="$with_selinux" | 27799 | withval=$with_selinux; if test "x$withval" != "xno" ; then |
23928 | if test "x$withval" != "xno" ; then | 27800 | if test "x$withval" != "xyes"; then |
27801 | CPPFLAGS="$CPPFLAGS -I${withval}/include" | ||
27802 | if test -n "${need_dash_r}"; then | ||
27803 | LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}" | ||
27804 | else | ||
27805 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" | ||
27806 | fi | ||
27807 | fi | ||
23929 | 27808 | ||
23930 | cat >>confdefs.h <<\_ACEOF | 27809 | cat >>confdefs.h <<\_ACEOF |
23931 | #define WITH_SELINUX 1 | 27810 | #define WITH_SELINUX 1 |
@@ -23936,18 +27815,19 @@ _ACEOF | |||
23936 | for ac_header in selinux/selinux.h | 27815 | for ac_header in selinux/selinux.h |
23937 | do | 27816 | do |
23938 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 27817 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
23939 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 27818 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
23940 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 27819 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
23941 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 27820 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
23942 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 27821 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
23943 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27822 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
23944 | fi | 27823 | fi |
23945 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 27824 | ac_res=`eval echo '${'$as_ac_Header'}'` |
23946 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 27825 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
27826 | echo "${ECHO_T}$ac_res" >&6; } | ||
23947 | else | 27827 | else |
23948 | # Is the header compilable? | 27828 | # Is the header compilable? |
23949 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 27829 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
23950 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 27830 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
23951 | cat >conftest.$ac_ext <<_ACEOF | 27831 | cat >conftest.$ac_ext <<_ACEOF |
23952 | /* confdefs.h. */ | 27832 | /* confdefs.h. */ |
23953 | _ACEOF | 27833 | _ACEOF |
@@ -23958,23 +27838,36 @@ $ac_includes_default | |||
23958 | #include <$ac_header> | 27838 | #include <$ac_header> |
23959 | _ACEOF | 27839 | _ACEOF |
23960 | rm -f conftest.$ac_objext | 27840 | rm -f conftest.$ac_objext |
23961 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 27841 | if { (ac_try="$ac_compile" |
23962 | (eval $ac_compile) 2>conftest.er1 | 27842 | case "(($ac_try" in |
27843 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27844 | *) ac_try_echo=$ac_try;; | ||
27845 | esac | ||
27846 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27847 | (eval "$ac_compile") 2>conftest.er1 | ||
23963 | ac_status=$? | 27848 | ac_status=$? |
23964 | grep -v '^ *+' conftest.er1 >conftest.err | 27849 | grep -v '^ *+' conftest.er1 >conftest.err |
23965 | rm -f conftest.er1 | 27850 | rm -f conftest.er1 |
23966 | cat conftest.err >&5 | 27851 | cat conftest.err >&5 |
23967 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27852 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23968 | (exit $ac_status); } && | 27853 | (exit $ac_status); } && |
23969 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 27854 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23970 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27855 | { (case "(($ac_try" in |
23971 | (eval $ac_try) 2>&5 | 27856 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27857 | *) ac_try_echo=$ac_try;; | ||
27858 | esac | ||
27859 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27860 | (eval "$ac_try") 2>&5 | ||
23972 | ac_status=$? | 27861 | ac_status=$? |
23973 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27862 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23974 | (exit $ac_status); }; } && | 27863 | (exit $ac_status); }; } && |
23975 | { ac_try='test -s conftest.$ac_objext' | 27864 | { ac_try='test -s conftest.$ac_objext' |
23976 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 27865 | { (case "(($ac_try" in |
23977 | (eval $ac_try) 2>&5 | 27866 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
27867 | *) ac_try_echo=$ac_try;; | ||
27868 | esac | ||
27869 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27870 | (eval "$ac_try") 2>&5 | ||
23978 | ac_status=$? | 27871 | ac_status=$? |
23979 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 27872 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23980 | (exit $ac_status); }; }; then | 27873 | (exit $ac_status); }; }; then |
@@ -23983,15 +27876,16 @@ else | |||
23983 | echo "$as_me: failed program was:" >&5 | 27876 | echo "$as_me: failed program was:" >&5 |
23984 | sed 's/^/| /' conftest.$ac_ext >&5 | 27877 | sed 's/^/| /' conftest.$ac_ext >&5 |
23985 | 27878 | ||
23986 | ac_header_compiler=no | 27879 | ac_header_compiler=no |
23987 | fi | 27880 | fi |
23988 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 27881 | |
23989 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 27882 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
23990 | echo "${ECHO_T}$ac_header_compiler" >&6 | 27883 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
27884 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
23991 | 27885 | ||
23992 | # Is the header present? | 27886 | # Is the header present? |
23993 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 27887 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
23994 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 27888 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
23995 | cat >conftest.$ac_ext <<_ACEOF | 27889 | cat >conftest.$ac_ext <<_ACEOF |
23996 | /* confdefs.h. */ | 27890 | /* confdefs.h. */ |
23997 | _ACEOF | 27891 | _ACEOF |
@@ -24000,8 +27894,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
24000 | /* end confdefs.h. */ | 27894 | /* end confdefs.h. */ |
24001 | #include <$ac_header> | 27895 | #include <$ac_header> |
24002 | _ACEOF | 27896 | _ACEOF |
24003 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 27897 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
24004 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 27898 | case "(($ac_try" in |
27899 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
27900 | *) ac_try_echo=$ac_try;; | ||
27901 | esac | ||
27902 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
27903 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
24005 | ac_status=$? | 27904 | ac_status=$? |
24006 | grep -v '^ *+' conftest.er1 >conftest.err | 27905 | grep -v '^ *+' conftest.er1 >conftest.err |
24007 | rm -f conftest.er1 | 27906 | rm -f conftest.er1 |
@@ -24025,9 +27924,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
24025 | 27924 | ||
24026 | ac_header_preproc=no | 27925 | ac_header_preproc=no |
24027 | fi | 27926 | fi |
27927 | |||
24028 | rm -f conftest.err conftest.$ac_ext | 27928 | rm -f conftest.err conftest.$ac_ext |
24029 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 27929 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
24030 | echo "${ECHO_T}$ac_header_preproc" >&6 | 27930 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
24031 | 27931 | ||
24032 | # So? What about this header? | 27932 | # So? What about this header? |
24033 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 27933 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -24051,25 +27951,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
24051 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 27951 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
24052 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 27952 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
24053 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 27953 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
24054 | ( | 27954 | ( cat <<\_ASBOX |
24055 | cat <<\_ASBOX | ||
24056 | ## ------------------------------------------- ## | 27955 | ## ------------------------------------------- ## |
24057 | ## Report this to openssh-unix-dev@mindrot.org ## | 27956 | ## Report this to openssh-unix-dev@mindrot.org ## |
24058 | ## ------------------------------------------- ## | 27957 | ## ------------------------------------------- ## |
24059 | _ASBOX | 27958 | _ASBOX |
24060 | ) | | 27959 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
24061 | sed "s/^/$as_me: WARNING: /" >&2 | ||
24062 | ;; | 27960 | ;; |
24063 | esac | 27961 | esac |
24064 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 27962 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
24065 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 27963 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
24066 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 27964 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
24067 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 27965 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24068 | else | 27966 | else |
24069 | eval "$as_ac_Header=\$ac_header_preproc" | 27967 | eval "$as_ac_Header=\$ac_header_preproc" |
24070 | fi | 27968 | fi |
24071 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 27969 | ac_res=`eval echo '${'$as_ac_Header'}'` |
24072 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 27970 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
27971 | echo "${ECHO_T}$ac_res" >&6; } | ||
24073 | 27972 | ||
24074 | fi | 27973 | fi |
24075 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 27974 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -24081,18 +27980,19 @@ fi | |||
24081 | 27980 | ||
24082 | done | 27981 | done |
24083 | 27982 | ||
24084 | LIBS="$LIBS -lselinux" | 27983 | LIBSELINUX="-lselinux" |
24085 | fi | 27984 | fi |
24086 | 27985 | ||
24087 | fi; | 27986 | fi |
27987 | |||
27988 | |||
24088 | 27989 | ||
24089 | # Check whether user wants Kerberos 5 support | 27990 | # Check whether user wants Kerberos 5 support |
24090 | KRB5_MSG="no" | 27991 | KRB5_MSG="no" |
24091 | 27992 | ||
24092 | # Check whether --with-kerberos5 or --without-kerberos5 was given. | 27993 | # Check whether --with-kerberos5 was given. |
24093 | if test "${with_kerberos5+set}" = set; then | 27994 | if test "${with_kerberos5+set}" = set; then |
24094 | withval="$with_kerberos5" | 27995 | withval=$with_kerberos5; if test "x$withval" != "xno" ; then |
24095 | if test "x$withval" != "xno" ; then | ||
24096 | if test "x$withval" = "xyes" ; then | 27996 | if test "x$withval" = "xyes" ; then |
24097 | KRB5ROOT="/usr/local" | 27997 | KRB5ROOT="/usr/local" |
24098 | else | 27998 | else |
@@ -24106,18 +28006,18 @@ _ACEOF | |||
24106 | 28006 | ||
24107 | KRB5_MSG="yes" | 28007 | KRB5_MSG="yes" |
24108 | 28008 | ||
24109 | echo "$as_me:$LINENO: checking for krb5-config" >&5 | 28009 | { echo "$as_me:$LINENO: checking for krb5-config" >&5 |
24110 | echo $ECHO_N "checking for krb5-config... $ECHO_C" >&6 | 28010 | echo $ECHO_N "checking for krb5-config... $ECHO_C" >&6; } |
24111 | if test -x $KRB5ROOT/bin/krb5-config ; then | 28011 | if test -x $KRB5ROOT/bin/krb5-config ; then |
24112 | KRB5CONF=$KRB5ROOT/bin/krb5-config | 28012 | KRB5CONF=$KRB5ROOT/bin/krb5-config |
24113 | echo "$as_me:$LINENO: result: $KRB5CONF" >&5 | 28013 | { echo "$as_me:$LINENO: result: $KRB5CONF" >&5 |
24114 | echo "${ECHO_T}$KRB5CONF" >&6 | 28014 | echo "${ECHO_T}$KRB5CONF" >&6; } |
24115 | 28015 | ||
24116 | echo "$as_me:$LINENO: checking for gssapi support" >&5 | 28016 | { echo "$as_me:$LINENO: checking for gssapi support" >&5 |
24117 | echo $ECHO_N "checking for gssapi support... $ECHO_C" >&6 | 28017 | echo $ECHO_N "checking for gssapi support... $ECHO_C" >&6; } |
24118 | if $KRB5CONF | grep gssapi >/dev/null ; then | 28018 | if $KRB5CONF | grep gssapi >/dev/null ; then |
24119 | echo "$as_me:$LINENO: result: yes" >&5 | 28019 | { echo "$as_me:$LINENO: result: yes" >&5 |
24120 | echo "${ECHO_T}yes" >&6 | 28020 | echo "${ECHO_T}yes" >&6; } |
24121 | 28021 | ||
24122 | cat >>confdefs.h <<\_ACEOF | 28022 | cat >>confdefs.h <<\_ACEOF |
24123 | #define GSSAPI 1 | 28023 | #define GSSAPI 1 |
@@ -24125,15 +28025,15 @@ _ACEOF | |||
24125 | 28025 | ||
24126 | k5confopts=gssapi | 28026 | k5confopts=gssapi |
24127 | else | 28027 | else |
24128 | echo "$as_me:$LINENO: result: no" >&5 | 28028 | { echo "$as_me:$LINENO: result: no" >&5 |
24129 | echo "${ECHO_T}no" >&6 | 28029 | echo "${ECHO_T}no" >&6; } |
24130 | k5confopts="" | 28030 | k5confopts="" |
24131 | fi | 28031 | fi |
24132 | K5CFLAGS="`$KRB5CONF --cflags $k5confopts`" | 28032 | K5CFLAGS="`$KRB5CONF --cflags $k5confopts`" |
24133 | K5LIBS="`$KRB5CONF --libs $k5confopts`" | 28033 | K5LIBS="`$KRB5CONF --libs $k5confopts`" |
24134 | CPPFLAGS="$CPPFLAGS $K5CFLAGS" | 28034 | CPPFLAGS="$CPPFLAGS $K5CFLAGS" |
24135 | echo "$as_me:$LINENO: checking whether we are using Heimdal" >&5 | 28035 | { echo "$as_me:$LINENO: checking whether we are using Heimdal" >&5 |
24136 | echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6 | 28036 | echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6; } |
24137 | cat >conftest.$ac_ext <<_ACEOF | 28037 | cat >conftest.$ac_ext <<_ACEOF |
24138 | /* confdefs.h. */ | 28038 | /* confdefs.h. */ |
24139 | _ACEOF | 28039 | _ACEOF |
@@ -24150,28 +28050,41 @@ main () | |||
24150 | } | 28050 | } |
24151 | _ACEOF | 28051 | _ACEOF |
24152 | rm -f conftest.$ac_objext | 28052 | rm -f conftest.$ac_objext |
24153 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 28053 | if { (ac_try="$ac_compile" |
24154 | (eval $ac_compile) 2>conftest.er1 | 28054 | case "(($ac_try" in |
28055 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28056 | *) ac_try_echo=$ac_try;; | ||
28057 | esac | ||
28058 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28059 | (eval "$ac_compile") 2>conftest.er1 | ||
24155 | ac_status=$? | 28060 | ac_status=$? |
24156 | grep -v '^ *+' conftest.er1 >conftest.err | 28061 | grep -v '^ *+' conftest.er1 >conftest.err |
24157 | rm -f conftest.er1 | 28062 | rm -f conftest.er1 |
24158 | cat conftest.err >&5 | 28063 | cat conftest.err >&5 |
24159 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28064 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24160 | (exit $ac_status); } && | 28065 | (exit $ac_status); } && |
24161 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28066 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24162 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28067 | { (case "(($ac_try" in |
24163 | (eval $ac_try) 2>&5 | 28068 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28069 | *) ac_try_echo=$ac_try;; | ||
28070 | esac | ||
28071 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28072 | (eval "$ac_try") 2>&5 | ||
24164 | ac_status=$? | 28073 | ac_status=$? |
24165 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28074 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24166 | (exit $ac_status); }; } && | 28075 | (exit $ac_status); }; } && |
24167 | { ac_try='test -s conftest.$ac_objext' | 28076 | { ac_try='test -s conftest.$ac_objext' |
24168 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28077 | { (case "(($ac_try" in |
24169 | (eval $ac_try) 2>&5 | 28078 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28079 | *) ac_try_echo=$ac_try;; | ||
28080 | esac | ||
28081 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28082 | (eval "$ac_try") 2>&5 | ||
24170 | ac_status=$? | 28083 | ac_status=$? |
24171 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28084 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24172 | (exit $ac_status); }; }; then | 28085 | (exit $ac_status); }; }; then |
24173 | echo "$as_me:$LINENO: result: yes" >&5 | 28086 | { echo "$as_me:$LINENO: result: yes" >&5 |
24174 | echo "${ECHO_T}yes" >&6 | 28087 | echo "${ECHO_T}yes" >&6; } |
24175 | 28088 | ||
24176 | cat >>confdefs.h <<\_ACEOF | 28089 | cat >>confdefs.h <<\_ACEOF |
24177 | #define HEIMDAL 1 | 28090 | #define HEIMDAL 1 |
@@ -24181,18 +28094,19 @@ else | |||
24181 | echo "$as_me: failed program was:" >&5 | 28094 | echo "$as_me: failed program was:" >&5 |
24182 | sed 's/^/| /' conftest.$ac_ext >&5 | 28095 | sed 's/^/| /' conftest.$ac_ext >&5 |
24183 | 28096 | ||
24184 | echo "$as_me:$LINENO: result: no" >&5 | 28097 | { echo "$as_me:$LINENO: result: no" >&5 |
24185 | echo "${ECHO_T}no" >&6 | 28098 | echo "${ECHO_T}no" >&6; } |
24186 | 28099 | ||
24187 | fi | 28100 | fi |
24188 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 28101 | |
28102 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
24189 | else | 28103 | else |
24190 | echo "$as_me:$LINENO: result: no" >&5 | 28104 | { echo "$as_me:$LINENO: result: no" >&5 |
24191 | echo "${ECHO_T}no" >&6 | 28105 | echo "${ECHO_T}no" >&6; } |
24192 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include" | 28106 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include" |
24193 | LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib" | 28107 | LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib" |
24194 | echo "$as_me:$LINENO: checking whether we are using Heimdal" >&5 | 28108 | { echo "$as_me:$LINENO: checking whether we are using Heimdal" >&5 |
24195 | echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6 | 28109 | echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6; } |
24196 | cat >conftest.$ac_ext <<_ACEOF | 28110 | cat >conftest.$ac_ext <<_ACEOF |
24197 | /* confdefs.h. */ | 28111 | /* confdefs.h. */ |
24198 | _ACEOF | 28112 | _ACEOF |
@@ -24209,36 +28123,49 @@ main () | |||
24209 | } | 28123 | } |
24210 | _ACEOF | 28124 | _ACEOF |
24211 | rm -f conftest.$ac_objext | 28125 | rm -f conftest.$ac_objext |
24212 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 28126 | if { (ac_try="$ac_compile" |
24213 | (eval $ac_compile) 2>conftest.er1 | 28127 | case "(($ac_try" in |
28128 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28129 | *) ac_try_echo=$ac_try;; | ||
28130 | esac | ||
28131 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28132 | (eval "$ac_compile") 2>conftest.er1 | ||
24214 | ac_status=$? | 28133 | ac_status=$? |
24215 | grep -v '^ *+' conftest.er1 >conftest.err | 28134 | grep -v '^ *+' conftest.er1 >conftest.err |
24216 | rm -f conftest.er1 | 28135 | rm -f conftest.er1 |
24217 | cat conftest.err >&5 | 28136 | cat conftest.err >&5 |
24218 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28137 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24219 | (exit $ac_status); } && | 28138 | (exit $ac_status); } && |
24220 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28139 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24221 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28140 | { (case "(($ac_try" in |
24222 | (eval $ac_try) 2>&5 | 28141 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28142 | *) ac_try_echo=$ac_try;; | ||
28143 | esac | ||
28144 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28145 | (eval "$ac_try") 2>&5 | ||
24223 | ac_status=$? | 28146 | ac_status=$? |
24224 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28147 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24225 | (exit $ac_status); }; } && | 28148 | (exit $ac_status); }; } && |
24226 | { ac_try='test -s conftest.$ac_objext' | 28149 | { ac_try='test -s conftest.$ac_objext' |
24227 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28150 | { (case "(($ac_try" in |
24228 | (eval $ac_try) 2>&5 | 28151 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28152 | *) ac_try_echo=$ac_try;; | ||
28153 | esac | ||
28154 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28155 | (eval "$ac_try") 2>&5 | ||
24229 | ac_status=$? | 28156 | ac_status=$? |
24230 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28157 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24231 | (exit $ac_status); }; }; then | 28158 | (exit $ac_status); }; }; then |
24232 | echo "$as_me:$LINENO: result: yes" >&5 | 28159 | { echo "$as_me:$LINENO: result: yes" >&5 |
24233 | echo "${ECHO_T}yes" >&6 | 28160 | echo "${ECHO_T}yes" >&6; } |
24234 | cat >>confdefs.h <<\_ACEOF | 28161 | cat >>confdefs.h <<\_ACEOF |
24235 | #define HEIMDAL 1 | 28162 | #define HEIMDAL 1 |
24236 | _ACEOF | 28163 | _ACEOF |
24237 | 28164 | ||
24238 | K5LIBS="-lkrb5 -ldes" | 28165 | K5LIBS="-lkrb5 -ldes" |
24239 | K5LIBS="$K5LIBS -lcom_err -lasn1" | 28166 | K5LIBS="$K5LIBS -lcom_err -lasn1" |
24240 | echo "$as_me:$LINENO: checking for net_write in -lroken" >&5 | 28167 | { echo "$as_me:$LINENO: checking for net_write in -lroken" >&5 |
24241 | echo $ECHO_N "checking for net_write in -lroken... $ECHO_C" >&6 | 28168 | echo $ECHO_N "checking for net_write in -lroken... $ECHO_C" >&6; } |
24242 | if test "${ac_cv_lib_roken_net_write+set}" = set; then | 28169 | if test "${ac_cv_lib_roken_net_write+set}" = set; then |
24243 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28170 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24244 | else | 28171 | else |
@@ -24251,39 +28178,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
24251 | cat >>conftest.$ac_ext <<_ACEOF | 28178 | cat >>conftest.$ac_ext <<_ACEOF |
24252 | /* end confdefs.h. */ | 28179 | /* end confdefs.h. */ |
24253 | 28180 | ||
24254 | /* Override any gcc2 internal prototype to avoid an error. */ | 28181 | /* Override any GCC internal prototype to avoid an error. |
28182 | Use char because int might match the return type of a GCC | ||
28183 | builtin and then its argument prototype would still apply. */ | ||
24255 | #ifdef __cplusplus | 28184 | #ifdef __cplusplus |
24256 | extern "C" | 28185 | extern "C" |
24257 | #endif | 28186 | #endif |
24258 | /* We use char because int might match the return type of a gcc2 | ||
24259 | builtin and then its argument prototype would still apply. */ | ||
24260 | char net_write (); | 28187 | char net_write (); |
24261 | int | 28188 | int |
24262 | main () | 28189 | main () |
24263 | { | 28190 | { |
24264 | net_write (); | 28191 | return net_write (); |
24265 | ; | 28192 | ; |
24266 | return 0; | 28193 | return 0; |
24267 | } | 28194 | } |
24268 | _ACEOF | 28195 | _ACEOF |
24269 | rm -f conftest.$ac_objext conftest$ac_exeext | 28196 | rm -f conftest.$ac_objext conftest$ac_exeext |
24270 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 28197 | if { (ac_try="$ac_link" |
24271 | (eval $ac_link) 2>conftest.er1 | 28198 | case "(($ac_try" in |
28199 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28200 | *) ac_try_echo=$ac_try;; | ||
28201 | esac | ||
28202 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28203 | (eval "$ac_link") 2>conftest.er1 | ||
24272 | ac_status=$? | 28204 | ac_status=$? |
24273 | grep -v '^ *+' conftest.er1 >conftest.err | 28205 | grep -v '^ *+' conftest.er1 >conftest.err |
24274 | rm -f conftest.er1 | 28206 | rm -f conftest.er1 |
24275 | cat conftest.err >&5 | 28207 | cat conftest.err >&5 |
24276 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28208 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24277 | (exit $ac_status); } && | 28209 | (exit $ac_status); } && |
24278 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28210 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24279 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28211 | { (case "(($ac_try" in |
24280 | (eval $ac_try) 2>&5 | 28212 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28213 | *) ac_try_echo=$ac_try;; | ||
28214 | esac | ||
28215 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28216 | (eval "$ac_try") 2>&5 | ||
24281 | ac_status=$? | 28217 | ac_status=$? |
24282 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28218 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24283 | (exit $ac_status); }; } && | 28219 | (exit $ac_status); }; } && |
24284 | { ac_try='test -s conftest$ac_exeext' | 28220 | { ac_try='test -s conftest$ac_exeext' |
24285 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28221 | { (case "(($ac_try" in |
24286 | (eval $ac_try) 2>&5 | 28222 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28223 | *) ac_try_echo=$ac_try;; | ||
28224 | esac | ||
28225 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28226 | (eval "$ac_try") 2>&5 | ||
24287 | ac_status=$? | 28227 | ac_status=$? |
24288 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28228 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24289 | (exit $ac_status); }; }; then | 28229 | (exit $ac_status); }; }; then |
@@ -24292,14 +28232,15 @@ else | |||
24292 | echo "$as_me: failed program was:" >&5 | 28232 | echo "$as_me: failed program was:" >&5 |
24293 | sed 's/^/| /' conftest.$ac_ext >&5 | 28233 | sed 's/^/| /' conftest.$ac_ext >&5 |
24294 | 28234 | ||
24295 | ac_cv_lib_roken_net_write=no | 28235 | ac_cv_lib_roken_net_write=no |
24296 | fi | 28236 | fi |
24297 | rm -f conftest.err conftest.$ac_objext \ | 28237 | |
28238 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
24298 | conftest$ac_exeext conftest.$ac_ext | 28239 | conftest$ac_exeext conftest.$ac_ext |
24299 | LIBS=$ac_check_lib_save_LIBS | 28240 | LIBS=$ac_check_lib_save_LIBS |
24300 | fi | 28241 | fi |
24301 | echo "$as_me:$LINENO: result: $ac_cv_lib_roken_net_write" >&5 | 28242 | { echo "$as_me:$LINENO: result: $ac_cv_lib_roken_net_write" >&5 |
24302 | echo "${ECHO_T}$ac_cv_lib_roken_net_write" >&6 | 28243 | echo "${ECHO_T}$ac_cv_lib_roken_net_write" >&6; } |
24303 | if test $ac_cv_lib_roken_net_write = yes; then | 28244 | if test $ac_cv_lib_roken_net_write = yes; then |
24304 | K5LIBS="$K5LIBS -lroken" | 28245 | K5LIBS="$K5LIBS -lroken" |
24305 | fi | 28246 | fi |
@@ -24309,20 +28250,20 @@ else | |||
24309 | echo "$as_me: failed program was:" >&5 | 28250 | echo "$as_me: failed program was:" >&5 |
24310 | sed 's/^/| /' conftest.$ac_ext >&5 | 28251 | sed 's/^/| /' conftest.$ac_ext >&5 |
24311 | 28252 | ||
24312 | echo "$as_me:$LINENO: result: no" >&5 | 28253 | { echo "$as_me:$LINENO: result: no" >&5 |
24313 | echo "${ECHO_T}no" >&6 | 28254 | echo "${ECHO_T}no" >&6; } |
24314 | K5LIBS="-lkrb5 -lk5crypto -lcom_err" | 28255 | K5LIBS="-lkrb5 -lk5crypto -lcom_err" |
24315 | 28256 | ||
24316 | 28257 | ||
24317 | fi | 28258 | fi |
24318 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 28259 | |
24319 | echo "$as_me:$LINENO: checking for library containing dn_expand" >&5 | 28260 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
24320 | echo $ECHO_N "checking for library containing dn_expand... $ECHO_C" >&6 | 28261 | { echo "$as_me:$LINENO: checking for library containing dn_expand" >&5 |
28262 | echo $ECHO_N "checking for library containing dn_expand... $ECHO_C" >&6; } | ||
24321 | if test "${ac_cv_search_dn_expand+set}" = set; then | 28263 | if test "${ac_cv_search_dn_expand+set}" = set; then |
24322 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28264 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24323 | else | 28265 | else |
24324 | ac_func_search_save_LIBS=$LIBS | 28266 | ac_func_search_save_LIBS=$LIBS |
24325 | ac_cv_search_dn_expand=no | ||
24326 | cat >conftest.$ac_ext <<_ACEOF | 28267 | cat >conftest.$ac_ext <<_ACEOF |
24327 | /* confdefs.h. */ | 28268 | /* confdefs.h. */ |
24328 | _ACEOF | 28269 | _ACEOF |
@@ -24330,119 +28271,95 @@ cat confdefs.h >>conftest.$ac_ext | |||
24330 | cat >>conftest.$ac_ext <<_ACEOF | 28271 | cat >>conftest.$ac_ext <<_ACEOF |
24331 | /* end confdefs.h. */ | 28272 | /* end confdefs.h. */ |
24332 | 28273 | ||
24333 | /* Override any gcc2 internal prototype to avoid an error. */ | 28274 | /* Override any GCC internal prototype to avoid an error. |
28275 | Use char because int might match the return type of a GCC | ||
28276 | builtin and then its argument prototype would still apply. */ | ||
24334 | #ifdef __cplusplus | 28277 | #ifdef __cplusplus |
24335 | extern "C" | 28278 | extern "C" |
24336 | #endif | 28279 | #endif |
24337 | /* We use char because int might match the return type of a gcc2 | ||
24338 | builtin and then its argument prototype would still apply. */ | ||
24339 | char dn_expand (); | 28280 | char dn_expand (); |
24340 | int | 28281 | int |
24341 | main () | 28282 | main () |
24342 | { | 28283 | { |
24343 | dn_expand (); | 28284 | return dn_expand (); |
24344 | ; | 28285 | ; |
24345 | return 0; | 28286 | return 0; |
24346 | } | 28287 | } |
24347 | _ACEOF | 28288 | _ACEOF |
24348 | rm -f conftest.$ac_objext conftest$ac_exeext | 28289 | for ac_lib in '' resolv; do |
24349 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 28290 | if test -z "$ac_lib"; then |
24350 | (eval $ac_link) 2>conftest.er1 | 28291 | ac_res="none required" |
28292 | else | ||
28293 | ac_res=-l$ac_lib | ||
28294 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
28295 | fi | ||
28296 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
28297 | if { (ac_try="$ac_link" | ||
28298 | case "(($ac_try" in | ||
28299 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28300 | *) ac_try_echo=$ac_try;; | ||
28301 | esac | ||
28302 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28303 | (eval "$ac_link") 2>conftest.er1 | ||
24351 | ac_status=$? | 28304 | ac_status=$? |
24352 | grep -v '^ *+' conftest.er1 >conftest.err | 28305 | grep -v '^ *+' conftest.er1 >conftest.err |
24353 | rm -f conftest.er1 | 28306 | rm -f conftest.er1 |
24354 | cat conftest.err >&5 | 28307 | cat conftest.err >&5 |
24355 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28308 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24356 | (exit $ac_status); } && | 28309 | (exit $ac_status); } && |
24357 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28310 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24358 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28311 | { (case "(($ac_try" in |
24359 | (eval $ac_try) 2>&5 | 28312 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28313 | *) ac_try_echo=$ac_try;; | ||
28314 | esac | ||
28315 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28316 | (eval "$ac_try") 2>&5 | ||
24360 | ac_status=$? | 28317 | ac_status=$? |
24361 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28318 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24362 | (exit $ac_status); }; } && | 28319 | (exit $ac_status); }; } && |
24363 | { ac_try='test -s conftest$ac_exeext' | 28320 | { ac_try='test -s conftest$ac_exeext' |
24364 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28321 | { (case "(($ac_try" in |
24365 | (eval $ac_try) 2>&5 | 28322 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28323 | *) ac_try_echo=$ac_try;; | ||
28324 | esac | ||
28325 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28326 | (eval "$ac_try") 2>&5 | ||
24366 | ac_status=$? | 28327 | ac_status=$? |
24367 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28328 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24368 | (exit $ac_status); }; }; then | 28329 | (exit $ac_status); }; }; then |
24369 | ac_cv_search_dn_expand="none required" | 28330 | ac_cv_search_dn_expand=$ac_res |
24370 | else | 28331 | else |
24371 | echo "$as_me: failed program was:" >&5 | 28332 | echo "$as_me: failed program was:" >&5 |
24372 | sed 's/^/| /' conftest.$ac_ext >&5 | 28333 | sed 's/^/| /' conftest.$ac_ext >&5 |
24373 | 28334 | ||
24374 | fi | ||
24375 | rm -f conftest.err conftest.$ac_objext \ | ||
24376 | conftest$ac_exeext conftest.$ac_ext | ||
24377 | if test "$ac_cv_search_dn_expand" = no; then | ||
24378 | for ac_lib in resolv; do | ||
24379 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
24380 | cat >conftest.$ac_ext <<_ACEOF | ||
24381 | /* confdefs.h. */ | ||
24382 | _ACEOF | ||
24383 | cat confdefs.h >>conftest.$ac_ext | ||
24384 | cat >>conftest.$ac_ext <<_ACEOF | ||
24385 | /* end confdefs.h. */ | ||
24386 | 28335 | ||
24387 | /* Override any gcc2 internal prototype to avoid an error. */ | 28336 | fi |
24388 | #ifdef __cplusplus | ||
24389 | extern "C" | ||
24390 | #endif | ||
24391 | /* We use char because int might match the return type of a gcc2 | ||
24392 | builtin and then its argument prototype would still apply. */ | ||
24393 | char dn_expand (); | ||
24394 | int | ||
24395 | main () | ||
24396 | { | ||
24397 | dn_expand (); | ||
24398 | ; | ||
24399 | return 0; | ||
24400 | } | ||
24401 | _ACEOF | ||
24402 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
24403 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
24404 | (eval $ac_link) 2>conftest.er1 | ||
24405 | ac_status=$? | ||
24406 | grep -v '^ *+' conftest.er1 >conftest.err | ||
24407 | rm -f conftest.er1 | ||
24408 | cat conftest.err >&5 | ||
24409 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
24410 | (exit $ac_status); } && | ||
24411 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
24412 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
24413 | (eval $ac_try) 2>&5 | ||
24414 | ac_status=$? | ||
24415 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
24416 | (exit $ac_status); }; } && | ||
24417 | { ac_try='test -s conftest$ac_exeext' | ||
24418 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
24419 | (eval $ac_try) 2>&5 | ||
24420 | ac_status=$? | ||
24421 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
24422 | (exit $ac_status); }; }; then | ||
24423 | ac_cv_search_dn_expand="-l$ac_lib" | ||
24424 | break | ||
24425 | else | ||
24426 | echo "$as_me: failed program was:" >&5 | ||
24427 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
24428 | 28337 | ||
28338 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
28339 | conftest$ac_exeext | ||
28340 | if test "${ac_cv_search_dn_expand+set}" = set; then | ||
28341 | break | ||
24429 | fi | 28342 | fi |
24430 | rm -f conftest.err conftest.$ac_objext \ | 28343 | done |
24431 | conftest$ac_exeext conftest.$ac_ext | 28344 | if test "${ac_cv_search_dn_expand+set}" = set; then |
24432 | done | 28345 | : |
28346 | else | ||
28347 | ac_cv_search_dn_expand=no | ||
24433 | fi | 28348 | fi |
28349 | rm conftest.$ac_ext | ||
24434 | LIBS=$ac_func_search_save_LIBS | 28350 | LIBS=$ac_func_search_save_LIBS |
24435 | fi | 28351 | fi |
24436 | echo "$as_me:$LINENO: result: $ac_cv_search_dn_expand" >&5 | 28352 | { echo "$as_me:$LINENO: result: $ac_cv_search_dn_expand" >&5 |
24437 | echo "${ECHO_T}$ac_cv_search_dn_expand" >&6 | 28353 | echo "${ECHO_T}$ac_cv_search_dn_expand" >&6; } |
24438 | if test "$ac_cv_search_dn_expand" != no; then | 28354 | ac_res=$ac_cv_search_dn_expand |
24439 | test "$ac_cv_search_dn_expand" = "none required" || LIBS="$ac_cv_search_dn_expand $LIBS" | 28355 | if test "$ac_res" != no; then |
28356 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
24440 | 28357 | ||
24441 | fi | 28358 | fi |
24442 | 28359 | ||
24443 | 28360 | ||
24444 | echo "$as_me:$LINENO: checking for gss_init_sec_context in -lgssapi" >&5 | 28361 | { echo "$as_me:$LINENO: checking for gss_init_sec_context in -lgssapi" >&5 |
24445 | echo $ECHO_N "checking for gss_init_sec_context in -lgssapi... $ECHO_C" >&6 | 28362 | echo $ECHO_N "checking for gss_init_sec_context in -lgssapi... $ECHO_C" >&6; } |
24446 | if test "${ac_cv_lib_gssapi_gss_init_sec_context+set}" = set; then | 28363 | if test "${ac_cv_lib_gssapi_gss_init_sec_context+set}" = set; then |
24447 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28364 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24448 | else | 28365 | else |
@@ -24455,39 +28372,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
24455 | cat >>conftest.$ac_ext <<_ACEOF | 28372 | cat >>conftest.$ac_ext <<_ACEOF |
24456 | /* end confdefs.h. */ | 28373 | /* end confdefs.h. */ |
24457 | 28374 | ||
24458 | /* Override any gcc2 internal prototype to avoid an error. */ | 28375 | /* Override any GCC internal prototype to avoid an error. |
28376 | Use char because int might match the return type of a GCC | ||
28377 | builtin and then its argument prototype would still apply. */ | ||
24459 | #ifdef __cplusplus | 28378 | #ifdef __cplusplus |
24460 | extern "C" | 28379 | extern "C" |
24461 | #endif | 28380 | #endif |
24462 | /* We use char because int might match the return type of a gcc2 | ||
24463 | builtin and then its argument prototype would still apply. */ | ||
24464 | char gss_init_sec_context (); | 28381 | char gss_init_sec_context (); |
24465 | int | 28382 | int |
24466 | main () | 28383 | main () |
24467 | { | 28384 | { |
24468 | gss_init_sec_context (); | 28385 | return gss_init_sec_context (); |
24469 | ; | 28386 | ; |
24470 | return 0; | 28387 | return 0; |
24471 | } | 28388 | } |
24472 | _ACEOF | 28389 | _ACEOF |
24473 | rm -f conftest.$ac_objext conftest$ac_exeext | 28390 | rm -f conftest.$ac_objext conftest$ac_exeext |
24474 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 28391 | if { (ac_try="$ac_link" |
24475 | (eval $ac_link) 2>conftest.er1 | 28392 | case "(($ac_try" in |
28393 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28394 | *) ac_try_echo=$ac_try;; | ||
28395 | esac | ||
28396 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28397 | (eval "$ac_link") 2>conftest.er1 | ||
24476 | ac_status=$? | 28398 | ac_status=$? |
24477 | grep -v '^ *+' conftest.er1 >conftest.err | 28399 | grep -v '^ *+' conftest.er1 >conftest.err |
24478 | rm -f conftest.er1 | 28400 | rm -f conftest.er1 |
24479 | cat conftest.err >&5 | 28401 | cat conftest.err >&5 |
24480 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28402 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24481 | (exit $ac_status); } && | 28403 | (exit $ac_status); } && |
24482 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28404 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24483 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28405 | { (case "(($ac_try" in |
24484 | (eval $ac_try) 2>&5 | 28406 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28407 | *) ac_try_echo=$ac_try;; | ||
28408 | esac | ||
28409 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28410 | (eval "$ac_try") 2>&5 | ||
24485 | ac_status=$? | 28411 | ac_status=$? |
24486 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28412 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24487 | (exit $ac_status); }; } && | 28413 | (exit $ac_status); }; } && |
24488 | { ac_try='test -s conftest$ac_exeext' | 28414 | { ac_try='test -s conftest$ac_exeext' |
24489 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28415 | { (case "(($ac_try" in |
24490 | (eval $ac_try) 2>&5 | 28416 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28417 | *) ac_try_echo=$ac_try;; | ||
28418 | esac | ||
28419 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28420 | (eval "$ac_try") 2>&5 | ||
24491 | ac_status=$? | 28421 | ac_status=$? |
24492 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28422 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24493 | (exit $ac_status); }; }; then | 28423 | (exit $ac_status); }; }; then |
@@ -24496,14 +28426,15 @@ else | |||
24496 | echo "$as_me: failed program was:" >&5 | 28426 | echo "$as_me: failed program was:" >&5 |
24497 | sed 's/^/| /' conftest.$ac_ext >&5 | 28427 | sed 's/^/| /' conftest.$ac_ext >&5 |
24498 | 28428 | ||
24499 | ac_cv_lib_gssapi_gss_init_sec_context=no | 28429 | ac_cv_lib_gssapi_gss_init_sec_context=no |
24500 | fi | 28430 | fi |
24501 | rm -f conftest.err conftest.$ac_objext \ | 28431 | |
28432 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
24502 | conftest$ac_exeext conftest.$ac_ext | 28433 | conftest$ac_exeext conftest.$ac_ext |
24503 | LIBS=$ac_check_lib_save_LIBS | 28434 | LIBS=$ac_check_lib_save_LIBS |
24504 | fi | 28435 | fi |
24505 | echo "$as_me:$LINENO: result: $ac_cv_lib_gssapi_gss_init_sec_context" >&5 | 28436 | { echo "$as_me:$LINENO: result: $ac_cv_lib_gssapi_gss_init_sec_context" >&5 |
24506 | echo "${ECHO_T}$ac_cv_lib_gssapi_gss_init_sec_context" >&6 | 28437 | echo "${ECHO_T}$ac_cv_lib_gssapi_gss_init_sec_context" >&6; } |
24507 | if test $ac_cv_lib_gssapi_gss_init_sec_context = yes; then | 28438 | if test $ac_cv_lib_gssapi_gss_init_sec_context = yes; then |
24508 | cat >>confdefs.h <<\_ACEOF | 28439 | cat >>confdefs.h <<\_ACEOF |
24509 | #define GSSAPI 1 | 28440 | #define GSSAPI 1 |
@@ -24511,8 +28442,8 @@ _ACEOF | |||
24511 | 28442 | ||
24512 | K5LIBS="-lgssapi $K5LIBS" | 28443 | K5LIBS="-lgssapi $K5LIBS" |
24513 | else | 28444 | else |
24514 | echo "$as_me:$LINENO: checking for gss_init_sec_context in -lgssapi_krb5" >&5 | 28445 | { echo "$as_me:$LINENO: checking for gss_init_sec_context in -lgssapi_krb5" >&5 |
24515 | echo $ECHO_N "checking for gss_init_sec_context in -lgssapi_krb5... $ECHO_C" >&6 | 28446 | echo $ECHO_N "checking for gss_init_sec_context in -lgssapi_krb5... $ECHO_C" >&6; } |
24516 | if test "${ac_cv_lib_gssapi_krb5_gss_init_sec_context+set}" = set; then | 28447 | if test "${ac_cv_lib_gssapi_krb5_gss_init_sec_context+set}" = set; then |
24517 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28448 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24518 | else | 28449 | else |
@@ -24525,39 +28456,52 @@ cat confdefs.h >>conftest.$ac_ext | |||
24525 | cat >>conftest.$ac_ext <<_ACEOF | 28456 | cat >>conftest.$ac_ext <<_ACEOF |
24526 | /* end confdefs.h. */ | 28457 | /* end confdefs.h. */ |
24527 | 28458 | ||
24528 | /* Override any gcc2 internal prototype to avoid an error. */ | 28459 | /* Override any GCC internal prototype to avoid an error. |
28460 | Use char because int might match the return type of a GCC | ||
28461 | builtin and then its argument prototype would still apply. */ | ||
24529 | #ifdef __cplusplus | 28462 | #ifdef __cplusplus |
24530 | extern "C" | 28463 | extern "C" |
24531 | #endif | 28464 | #endif |
24532 | /* We use char because int might match the return type of a gcc2 | ||
24533 | builtin and then its argument prototype would still apply. */ | ||
24534 | char gss_init_sec_context (); | 28465 | char gss_init_sec_context (); |
24535 | int | 28466 | int |
24536 | main () | 28467 | main () |
24537 | { | 28468 | { |
24538 | gss_init_sec_context (); | 28469 | return gss_init_sec_context (); |
24539 | ; | 28470 | ; |
24540 | return 0; | 28471 | return 0; |
24541 | } | 28472 | } |
24542 | _ACEOF | 28473 | _ACEOF |
24543 | rm -f conftest.$ac_objext conftest$ac_exeext | 28474 | rm -f conftest.$ac_objext conftest$ac_exeext |
24544 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 28475 | if { (ac_try="$ac_link" |
24545 | (eval $ac_link) 2>conftest.er1 | 28476 | case "(($ac_try" in |
28477 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28478 | *) ac_try_echo=$ac_try;; | ||
28479 | esac | ||
28480 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28481 | (eval "$ac_link") 2>conftest.er1 | ||
24546 | ac_status=$? | 28482 | ac_status=$? |
24547 | grep -v '^ *+' conftest.er1 >conftest.err | 28483 | grep -v '^ *+' conftest.er1 >conftest.err |
24548 | rm -f conftest.er1 | 28484 | rm -f conftest.er1 |
24549 | cat conftest.err >&5 | 28485 | cat conftest.err >&5 |
24550 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28486 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24551 | (exit $ac_status); } && | 28487 | (exit $ac_status); } && |
24552 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28488 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24553 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28489 | { (case "(($ac_try" in |
24554 | (eval $ac_try) 2>&5 | 28490 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28491 | *) ac_try_echo=$ac_try;; | ||
28492 | esac | ||
28493 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28494 | (eval "$ac_try") 2>&5 | ||
24555 | ac_status=$? | 28495 | ac_status=$? |
24556 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28496 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24557 | (exit $ac_status); }; } && | 28497 | (exit $ac_status); }; } && |
24558 | { ac_try='test -s conftest$ac_exeext' | 28498 | { ac_try='test -s conftest$ac_exeext' |
24559 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28499 | { (case "(($ac_try" in |
24560 | (eval $ac_try) 2>&5 | 28500 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28501 | *) ac_try_echo=$ac_try;; | ||
28502 | esac | ||
28503 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28504 | (eval "$ac_try") 2>&5 | ||
24561 | ac_status=$? | 28505 | ac_status=$? |
24562 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28506 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24563 | (exit $ac_status); }; }; then | 28507 | (exit $ac_status); }; }; then |
@@ -24566,14 +28510,15 @@ else | |||
24566 | echo "$as_me: failed program was:" >&5 | 28510 | echo "$as_me: failed program was:" >&5 |
24567 | sed 's/^/| /' conftest.$ac_ext >&5 | 28511 | sed 's/^/| /' conftest.$ac_ext >&5 |
24568 | 28512 | ||
24569 | ac_cv_lib_gssapi_krb5_gss_init_sec_context=no | 28513 | ac_cv_lib_gssapi_krb5_gss_init_sec_context=no |
24570 | fi | 28514 | fi |
24571 | rm -f conftest.err conftest.$ac_objext \ | 28515 | |
28516 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
24572 | conftest$ac_exeext conftest.$ac_ext | 28517 | conftest$ac_exeext conftest.$ac_ext |
24573 | LIBS=$ac_check_lib_save_LIBS | 28518 | LIBS=$ac_check_lib_save_LIBS |
24574 | fi | 28519 | fi |
24575 | echo "$as_me:$LINENO: result: $ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&5 | 28520 | { echo "$as_me:$LINENO: result: $ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&5 |
24576 | echo "${ECHO_T}$ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&6 | 28521 | echo "${ECHO_T}$ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&6; } |
24577 | if test $ac_cv_lib_gssapi_krb5_gss_init_sec_context = yes; then | 28522 | if test $ac_cv_lib_gssapi_krb5_gss_init_sec_context = yes; then |
24578 | cat >>confdefs.h <<\_ACEOF | 28523 | cat >>confdefs.h <<\_ACEOF |
24579 | #define GSSAPI 1 | 28524 | #define GSSAPI 1 |
@@ -24590,17 +28535,17 @@ fi | |||
24590 | 28535 | ||
24591 | 28536 | ||
24592 | if test "${ac_cv_header_gssapi_h+set}" = set; then | 28537 | if test "${ac_cv_header_gssapi_h+set}" = set; then |
24593 | echo "$as_me:$LINENO: checking for gssapi.h" >&5 | 28538 | { echo "$as_me:$LINENO: checking for gssapi.h" >&5 |
24594 | echo $ECHO_N "checking for gssapi.h... $ECHO_C" >&6 | 28539 | echo $ECHO_N "checking for gssapi.h... $ECHO_C" >&6; } |
24595 | if test "${ac_cv_header_gssapi_h+set}" = set; then | 28540 | if test "${ac_cv_header_gssapi_h+set}" = set; then |
24596 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28541 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24597 | fi | 28542 | fi |
24598 | echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_h" >&5 | 28543 | { echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_h" >&5 |
24599 | echo "${ECHO_T}$ac_cv_header_gssapi_h" >&6 | 28544 | echo "${ECHO_T}$ac_cv_header_gssapi_h" >&6; } |
24600 | else | 28545 | else |
24601 | # Is the header compilable? | 28546 | # Is the header compilable? |
24602 | echo "$as_me:$LINENO: checking gssapi.h usability" >&5 | 28547 | { echo "$as_me:$LINENO: checking gssapi.h usability" >&5 |
24603 | echo $ECHO_N "checking gssapi.h usability... $ECHO_C" >&6 | 28548 | echo $ECHO_N "checking gssapi.h usability... $ECHO_C" >&6; } |
24604 | cat >conftest.$ac_ext <<_ACEOF | 28549 | cat >conftest.$ac_ext <<_ACEOF |
24605 | /* confdefs.h. */ | 28550 | /* confdefs.h. */ |
24606 | _ACEOF | 28551 | _ACEOF |
@@ -24611,23 +28556,36 @@ $ac_includes_default | |||
24611 | #include <gssapi.h> | 28556 | #include <gssapi.h> |
24612 | _ACEOF | 28557 | _ACEOF |
24613 | rm -f conftest.$ac_objext | 28558 | rm -f conftest.$ac_objext |
24614 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 28559 | if { (ac_try="$ac_compile" |
24615 | (eval $ac_compile) 2>conftest.er1 | 28560 | case "(($ac_try" in |
28561 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28562 | *) ac_try_echo=$ac_try;; | ||
28563 | esac | ||
28564 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28565 | (eval "$ac_compile") 2>conftest.er1 | ||
24616 | ac_status=$? | 28566 | ac_status=$? |
24617 | grep -v '^ *+' conftest.er1 >conftest.err | 28567 | grep -v '^ *+' conftest.er1 >conftest.err |
24618 | rm -f conftest.er1 | 28568 | rm -f conftest.er1 |
24619 | cat conftest.err >&5 | 28569 | cat conftest.err >&5 |
24620 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28570 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24621 | (exit $ac_status); } && | 28571 | (exit $ac_status); } && |
24622 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28572 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24623 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28573 | { (case "(($ac_try" in |
24624 | (eval $ac_try) 2>&5 | 28574 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28575 | *) ac_try_echo=$ac_try;; | ||
28576 | esac | ||
28577 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28578 | (eval "$ac_try") 2>&5 | ||
24625 | ac_status=$? | 28579 | ac_status=$? |
24626 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28580 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24627 | (exit $ac_status); }; } && | 28581 | (exit $ac_status); }; } && |
24628 | { ac_try='test -s conftest.$ac_objext' | 28582 | { ac_try='test -s conftest.$ac_objext' |
24629 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28583 | { (case "(($ac_try" in |
24630 | (eval $ac_try) 2>&5 | 28584 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28585 | *) ac_try_echo=$ac_try;; | ||
28586 | esac | ||
28587 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28588 | (eval "$ac_try") 2>&5 | ||
24631 | ac_status=$? | 28589 | ac_status=$? |
24632 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28590 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24633 | (exit $ac_status); }; }; then | 28591 | (exit $ac_status); }; }; then |
@@ -24636,15 +28594,16 @@ else | |||
24636 | echo "$as_me: failed program was:" >&5 | 28594 | echo "$as_me: failed program was:" >&5 |
24637 | sed 's/^/| /' conftest.$ac_ext >&5 | 28595 | sed 's/^/| /' conftest.$ac_ext >&5 |
24638 | 28596 | ||
24639 | ac_header_compiler=no | 28597 | ac_header_compiler=no |
24640 | fi | 28598 | fi |
24641 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 28599 | |
24642 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 28600 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
24643 | echo "${ECHO_T}$ac_header_compiler" >&6 | 28601 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
28602 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
24644 | 28603 | ||
24645 | # Is the header present? | 28604 | # Is the header present? |
24646 | echo "$as_me:$LINENO: checking gssapi.h presence" >&5 | 28605 | { echo "$as_me:$LINENO: checking gssapi.h presence" >&5 |
24647 | echo $ECHO_N "checking gssapi.h presence... $ECHO_C" >&6 | 28606 | echo $ECHO_N "checking gssapi.h presence... $ECHO_C" >&6; } |
24648 | cat >conftest.$ac_ext <<_ACEOF | 28607 | cat >conftest.$ac_ext <<_ACEOF |
24649 | /* confdefs.h. */ | 28608 | /* confdefs.h. */ |
24650 | _ACEOF | 28609 | _ACEOF |
@@ -24653,8 +28612,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
24653 | /* end confdefs.h. */ | 28612 | /* end confdefs.h. */ |
24654 | #include <gssapi.h> | 28613 | #include <gssapi.h> |
24655 | _ACEOF | 28614 | _ACEOF |
24656 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 28615 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
24657 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 28616 | case "(($ac_try" in |
28617 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28618 | *) ac_try_echo=$ac_try;; | ||
28619 | esac | ||
28620 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28621 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
24658 | ac_status=$? | 28622 | ac_status=$? |
24659 | grep -v '^ *+' conftest.er1 >conftest.err | 28623 | grep -v '^ *+' conftest.er1 >conftest.err |
24660 | rm -f conftest.er1 | 28624 | rm -f conftest.er1 |
@@ -24678,9 +28642,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
24678 | 28642 | ||
24679 | ac_header_preproc=no | 28643 | ac_header_preproc=no |
24680 | fi | 28644 | fi |
28645 | |||
24681 | rm -f conftest.err conftest.$ac_ext | 28646 | rm -f conftest.err conftest.$ac_ext |
24682 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 28647 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
24683 | echo "${ECHO_T}$ac_header_preproc" >&6 | 28648 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
24684 | 28649 | ||
24685 | # So? What about this header? | 28650 | # So? What about this header? |
24686 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 28651 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -24704,25 +28669,23 @@ echo "$as_me: WARNING: gssapi.h: section \"Present But Cannot Be Compiled\"" | |||
24704 | echo "$as_me: WARNING: gssapi.h: proceeding with the preprocessor's result" >&2;} | 28669 | echo "$as_me: WARNING: gssapi.h: proceeding with the preprocessor's result" >&2;} |
24705 | { echo "$as_me:$LINENO: WARNING: gssapi.h: in the future, the compiler will take precedence" >&5 | 28670 | { echo "$as_me:$LINENO: WARNING: gssapi.h: in the future, the compiler will take precedence" >&5 |
24706 | echo "$as_me: WARNING: gssapi.h: in the future, the compiler will take precedence" >&2;} | 28671 | echo "$as_me: WARNING: gssapi.h: in the future, the compiler will take precedence" >&2;} |
24707 | ( | 28672 | ( cat <<\_ASBOX |
24708 | cat <<\_ASBOX | ||
24709 | ## ------------------------------------------- ## | 28673 | ## ------------------------------------------- ## |
24710 | ## Report this to openssh-unix-dev@mindrot.org ## | 28674 | ## Report this to openssh-unix-dev@mindrot.org ## |
24711 | ## ------------------------------------------- ## | 28675 | ## ------------------------------------------- ## |
24712 | _ASBOX | 28676 | _ASBOX |
24713 | ) | | 28677 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
24714 | sed "s/^/$as_me: WARNING: /" >&2 | ||
24715 | ;; | 28678 | ;; |
24716 | esac | 28679 | esac |
24717 | echo "$as_me:$LINENO: checking for gssapi.h" >&5 | 28680 | { echo "$as_me:$LINENO: checking for gssapi.h" >&5 |
24718 | echo $ECHO_N "checking for gssapi.h... $ECHO_C" >&6 | 28681 | echo $ECHO_N "checking for gssapi.h... $ECHO_C" >&6; } |
24719 | if test "${ac_cv_header_gssapi_h+set}" = set; then | 28682 | if test "${ac_cv_header_gssapi_h+set}" = set; then |
24720 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28683 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24721 | else | 28684 | else |
24722 | ac_cv_header_gssapi_h=$ac_header_preproc | 28685 | ac_cv_header_gssapi_h=$ac_header_preproc |
24723 | fi | 28686 | fi |
24724 | echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_h" >&5 | 28687 | { echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_h" >&5 |
24725 | echo "${ECHO_T}$ac_cv_header_gssapi_h" >&6 | 28688 | echo "${ECHO_T}$ac_cv_header_gssapi_h" >&6; } |
24726 | 28689 | ||
24727 | fi | 28690 | fi |
24728 | if test $ac_cv_header_gssapi_h = yes; then | 28691 | if test $ac_cv_header_gssapi_h = yes; then |
@@ -24734,18 +28697,19 @@ else | |||
24734 | for ac_header in gssapi.h | 28697 | for ac_header in gssapi.h |
24735 | do | 28698 | do |
24736 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 28699 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
24737 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 28700 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
24738 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 28701 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
24739 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 28702 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
24740 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 28703 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
24741 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28704 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24742 | fi | 28705 | fi |
24743 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 28706 | ac_res=`eval echo '${'$as_ac_Header'}'` |
24744 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 28707 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
28708 | echo "${ECHO_T}$ac_res" >&6; } | ||
24745 | else | 28709 | else |
24746 | # Is the header compilable? | 28710 | # Is the header compilable? |
24747 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 28711 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
24748 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 28712 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
24749 | cat >conftest.$ac_ext <<_ACEOF | 28713 | cat >conftest.$ac_ext <<_ACEOF |
24750 | /* confdefs.h. */ | 28714 | /* confdefs.h. */ |
24751 | _ACEOF | 28715 | _ACEOF |
@@ -24756,23 +28720,36 @@ $ac_includes_default | |||
24756 | #include <$ac_header> | 28720 | #include <$ac_header> |
24757 | _ACEOF | 28721 | _ACEOF |
24758 | rm -f conftest.$ac_objext | 28722 | rm -f conftest.$ac_objext |
24759 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 28723 | if { (ac_try="$ac_compile" |
24760 | (eval $ac_compile) 2>conftest.er1 | 28724 | case "(($ac_try" in |
28725 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28726 | *) ac_try_echo=$ac_try;; | ||
28727 | esac | ||
28728 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28729 | (eval "$ac_compile") 2>conftest.er1 | ||
24761 | ac_status=$? | 28730 | ac_status=$? |
24762 | grep -v '^ *+' conftest.er1 >conftest.err | 28731 | grep -v '^ *+' conftest.er1 >conftest.err |
24763 | rm -f conftest.er1 | 28732 | rm -f conftest.er1 |
24764 | cat conftest.err >&5 | 28733 | cat conftest.err >&5 |
24765 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28734 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24766 | (exit $ac_status); } && | 28735 | (exit $ac_status); } && |
24767 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28736 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24768 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28737 | { (case "(($ac_try" in |
24769 | (eval $ac_try) 2>&5 | 28738 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28739 | *) ac_try_echo=$ac_try;; | ||
28740 | esac | ||
28741 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28742 | (eval "$ac_try") 2>&5 | ||
24770 | ac_status=$? | 28743 | ac_status=$? |
24771 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28744 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24772 | (exit $ac_status); }; } && | 28745 | (exit $ac_status); }; } && |
24773 | { ac_try='test -s conftest.$ac_objext' | 28746 | { ac_try='test -s conftest.$ac_objext' |
24774 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28747 | { (case "(($ac_try" in |
24775 | (eval $ac_try) 2>&5 | 28748 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28749 | *) ac_try_echo=$ac_try;; | ||
28750 | esac | ||
28751 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28752 | (eval "$ac_try") 2>&5 | ||
24776 | ac_status=$? | 28753 | ac_status=$? |
24777 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28754 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24778 | (exit $ac_status); }; }; then | 28755 | (exit $ac_status); }; }; then |
@@ -24781,15 +28758,16 @@ else | |||
24781 | echo "$as_me: failed program was:" >&5 | 28758 | echo "$as_me: failed program was:" >&5 |
24782 | sed 's/^/| /' conftest.$ac_ext >&5 | 28759 | sed 's/^/| /' conftest.$ac_ext >&5 |
24783 | 28760 | ||
24784 | ac_header_compiler=no | 28761 | ac_header_compiler=no |
24785 | fi | 28762 | fi |
24786 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 28763 | |
24787 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 28764 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
24788 | echo "${ECHO_T}$ac_header_compiler" >&6 | 28765 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
28766 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
24789 | 28767 | ||
24790 | # Is the header present? | 28768 | # Is the header present? |
24791 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 28769 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
24792 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 28770 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
24793 | cat >conftest.$ac_ext <<_ACEOF | 28771 | cat >conftest.$ac_ext <<_ACEOF |
24794 | /* confdefs.h. */ | 28772 | /* confdefs.h. */ |
24795 | _ACEOF | 28773 | _ACEOF |
@@ -24798,8 +28776,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
24798 | /* end confdefs.h. */ | 28776 | /* end confdefs.h. */ |
24799 | #include <$ac_header> | 28777 | #include <$ac_header> |
24800 | _ACEOF | 28778 | _ACEOF |
24801 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 28779 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
24802 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 28780 | case "(($ac_try" in |
28781 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28782 | *) ac_try_echo=$ac_try;; | ||
28783 | esac | ||
28784 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28785 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
24803 | ac_status=$? | 28786 | ac_status=$? |
24804 | grep -v '^ *+' conftest.er1 >conftest.err | 28787 | grep -v '^ *+' conftest.er1 >conftest.err |
24805 | rm -f conftest.er1 | 28788 | rm -f conftest.er1 |
@@ -24823,9 +28806,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
24823 | 28806 | ||
24824 | ac_header_preproc=no | 28807 | ac_header_preproc=no |
24825 | fi | 28808 | fi |
28809 | |||
24826 | rm -f conftest.err conftest.$ac_ext | 28810 | rm -f conftest.err conftest.$ac_ext |
24827 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 28811 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
24828 | echo "${ECHO_T}$ac_header_preproc" >&6 | 28812 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
24829 | 28813 | ||
24830 | # So? What about this header? | 28814 | # So? What about this header? |
24831 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 28815 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -24849,25 +28833,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
24849 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 28833 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
24850 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 28834 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
24851 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 28835 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
24852 | ( | 28836 | ( cat <<\_ASBOX |
24853 | cat <<\_ASBOX | ||
24854 | ## ------------------------------------------- ## | 28837 | ## ------------------------------------------- ## |
24855 | ## Report this to openssh-unix-dev@mindrot.org ## | 28838 | ## Report this to openssh-unix-dev@mindrot.org ## |
24856 | ## ------------------------------------------- ## | 28839 | ## ------------------------------------------- ## |
24857 | _ASBOX | 28840 | _ASBOX |
24858 | ) | | 28841 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
24859 | sed "s/^/$as_me: WARNING: /" >&2 | ||
24860 | ;; | 28842 | ;; |
24861 | esac | 28843 | esac |
24862 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 28844 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
24863 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 28845 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
24864 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 28846 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
24865 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28847 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24866 | else | 28848 | else |
24867 | eval "$as_ac_Header=\$ac_header_preproc" | 28849 | eval "$as_ac_Header=\$ac_header_preproc" |
24868 | fi | 28850 | fi |
24869 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 28851 | ac_res=`eval echo '${'$as_ac_Header'}'` |
24870 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 28852 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
28853 | echo "${ECHO_T}$ac_res" >&6; } | ||
24871 | 28854 | ||
24872 | fi | 28855 | fi |
24873 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 28856 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -24892,17 +28875,17 @@ fi | |||
24892 | oldCPP="$CPPFLAGS" | 28875 | oldCPP="$CPPFLAGS" |
24893 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi" | 28876 | CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi" |
24894 | if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then | 28877 | if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then |
24895 | echo "$as_me:$LINENO: checking for gssapi_krb5.h" >&5 | 28878 | { echo "$as_me:$LINENO: checking for gssapi_krb5.h" >&5 |
24896 | echo $ECHO_N "checking for gssapi_krb5.h... $ECHO_C" >&6 | 28879 | echo $ECHO_N "checking for gssapi_krb5.h... $ECHO_C" >&6; } |
24897 | if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then | 28880 | if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then |
24898 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 28881 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
24899 | fi | 28882 | fi |
24900 | echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_krb5_h" >&5 | 28883 | { echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_krb5_h" >&5 |
24901 | echo "${ECHO_T}$ac_cv_header_gssapi_krb5_h" >&6 | 28884 | echo "${ECHO_T}$ac_cv_header_gssapi_krb5_h" >&6; } |
24902 | else | 28885 | else |
24903 | # Is the header compilable? | 28886 | # Is the header compilable? |
24904 | echo "$as_me:$LINENO: checking gssapi_krb5.h usability" >&5 | 28887 | { echo "$as_me:$LINENO: checking gssapi_krb5.h usability" >&5 |
24905 | echo $ECHO_N "checking gssapi_krb5.h usability... $ECHO_C" >&6 | 28888 | echo $ECHO_N "checking gssapi_krb5.h usability... $ECHO_C" >&6; } |
24906 | cat >conftest.$ac_ext <<_ACEOF | 28889 | cat >conftest.$ac_ext <<_ACEOF |
24907 | /* confdefs.h. */ | 28890 | /* confdefs.h. */ |
24908 | _ACEOF | 28891 | _ACEOF |
@@ -24913,23 +28896,36 @@ $ac_includes_default | |||
24913 | #include <gssapi_krb5.h> | 28896 | #include <gssapi_krb5.h> |
24914 | _ACEOF | 28897 | _ACEOF |
24915 | rm -f conftest.$ac_objext | 28898 | rm -f conftest.$ac_objext |
24916 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 28899 | if { (ac_try="$ac_compile" |
24917 | (eval $ac_compile) 2>conftest.er1 | 28900 | case "(($ac_try" in |
28901 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28902 | *) ac_try_echo=$ac_try;; | ||
28903 | esac | ||
28904 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28905 | (eval "$ac_compile") 2>conftest.er1 | ||
24918 | ac_status=$? | 28906 | ac_status=$? |
24919 | grep -v '^ *+' conftest.er1 >conftest.err | 28907 | grep -v '^ *+' conftest.er1 >conftest.err |
24920 | rm -f conftest.er1 | 28908 | rm -f conftest.er1 |
24921 | cat conftest.err >&5 | 28909 | cat conftest.err >&5 |
24922 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28910 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24923 | (exit $ac_status); } && | 28911 | (exit $ac_status); } && |
24924 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 28912 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24925 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28913 | { (case "(($ac_try" in |
24926 | (eval $ac_try) 2>&5 | 28914 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28915 | *) ac_try_echo=$ac_try;; | ||
28916 | esac | ||
28917 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28918 | (eval "$ac_try") 2>&5 | ||
24927 | ac_status=$? | 28919 | ac_status=$? |
24928 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28920 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24929 | (exit $ac_status); }; } && | 28921 | (exit $ac_status); }; } && |
24930 | { ac_try='test -s conftest.$ac_objext' | 28922 | { ac_try='test -s conftest.$ac_objext' |
24931 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 28923 | { (case "(($ac_try" in |
24932 | (eval $ac_try) 2>&5 | 28924 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
28925 | *) ac_try_echo=$ac_try;; | ||
28926 | esac | ||
28927 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28928 | (eval "$ac_try") 2>&5 | ||
24933 | ac_status=$? | 28929 | ac_status=$? |
24934 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 28930 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24935 | (exit $ac_status); }; }; then | 28931 | (exit $ac_status); }; }; then |
@@ -24938,15 +28934,16 @@ else | |||
24938 | echo "$as_me: failed program was:" >&5 | 28934 | echo "$as_me: failed program was:" >&5 |
24939 | sed 's/^/| /' conftest.$ac_ext >&5 | 28935 | sed 's/^/| /' conftest.$ac_ext >&5 |
24940 | 28936 | ||
24941 | ac_header_compiler=no | 28937 | ac_header_compiler=no |
24942 | fi | 28938 | fi |
24943 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 28939 | |
24944 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 28940 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
24945 | echo "${ECHO_T}$ac_header_compiler" >&6 | 28941 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
28942 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
24946 | 28943 | ||
24947 | # Is the header present? | 28944 | # Is the header present? |
24948 | echo "$as_me:$LINENO: checking gssapi_krb5.h presence" >&5 | 28945 | { echo "$as_me:$LINENO: checking gssapi_krb5.h presence" >&5 |
24949 | echo $ECHO_N "checking gssapi_krb5.h presence... $ECHO_C" >&6 | 28946 | echo $ECHO_N "checking gssapi_krb5.h presence... $ECHO_C" >&6; } |
24950 | cat >conftest.$ac_ext <<_ACEOF | 28947 | cat >conftest.$ac_ext <<_ACEOF |
24951 | /* confdefs.h. */ | 28948 | /* confdefs.h. */ |
24952 | _ACEOF | 28949 | _ACEOF |
@@ -24955,8 +28952,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
24955 | /* end confdefs.h. */ | 28952 | /* end confdefs.h. */ |
24956 | #include <gssapi_krb5.h> | 28953 | #include <gssapi_krb5.h> |
24957 | _ACEOF | 28954 | _ACEOF |
24958 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 28955 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
24959 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 28956 | case "(($ac_try" in |
28957 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
28958 | *) ac_try_echo=$ac_try;; | ||
28959 | esac | ||
28960 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
28961 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
24960 | ac_status=$? | 28962 | ac_status=$? |
24961 | grep -v '^ *+' conftest.er1 >conftest.err | 28963 | grep -v '^ *+' conftest.er1 >conftest.err |
24962 | rm -f conftest.er1 | 28964 | rm -f conftest.er1 |
@@ -24980,9 +28982,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
24980 | 28982 | ||
24981 | ac_header_preproc=no | 28983 | ac_header_preproc=no |
24982 | fi | 28984 | fi |
28985 | |||
24983 | rm -f conftest.err conftest.$ac_ext | 28986 | rm -f conftest.err conftest.$ac_ext |
24984 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 28987 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
24985 | echo "${ECHO_T}$ac_header_preproc" >&6 | 28988 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
24986 | 28989 | ||
24987 | # So? What about this header? | 28990 | # So? What about this header? |
24988 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 28991 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -25006,25 +29009,23 @@ echo "$as_me: WARNING: gssapi_krb5.h: section \"Present But Cannot Be Compil | |||
25006 | echo "$as_me: WARNING: gssapi_krb5.h: proceeding with the preprocessor's result" >&2;} | 29009 | echo "$as_me: WARNING: gssapi_krb5.h: proceeding with the preprocessor's result" >&2;} |
25007 | { echo "$as_me:$LINENO: WARNING: gssapi_krb5.h: in the future, the compiler will take precedence" >&5 | 29010 | { echo "$as_me:$LINENO: WARNING: gssapi_krb5.h: in the future, the compiler will take precedence" >&5 |
25008 | echo "$as_me: WARNING: gssapi_krb5.h: in the future, the compiler will take precedence" >&2;} | 29011 | echo "$as_me: WARNING: gssapi_krb5.h: in the future, the compiler will take precedence" >&2;} |
25009 | ( | 29012 | ( cat <<\_ASBOX |
25010 | cat <<\_ASBOX | ||
25011 | ## ------------------------------------------- ## | 29013 | ## ------------------------------------------- ## |
25012 | ## Report this to openssh-unix-dev@mindrot.org ## | 29014 | ## Report this to openssh-unix-dev@mindrot.org ## |
25013 | ## ------------------------------------------- ## | 29015 | ## ------------------------------------------- ## |
25014 | _ASBOX | 29016 | _ASBOX |
25015 | ) | | 29017 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
25016 | sed "s/^/$as_me: WARNING: /" >&2 | ||
25017 | ;; | 29018 | ;; |
25018 | esac | 29019 | esac |
25019 | echo "$as_me:$LINENO: checking for gssapi_krb5.h" >&5 | 29020 | { echo "$as_me:$LINENO: checking for gssapi_krb5.h" >&5 |
25020 | echo $ECHO_N "checking for gssapi_krb5.h... $ECHO_C" >&6 | 29021 | echo $ECHO_N "checking for gssapi_krb5.h... $ECHO_C" >&6; } |
25021 | if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then | 29022 | if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then |
25022 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29023 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25023 | else | 29024 | else |
25024 | ac_cv_header_gssapi_krb5_h=$ac_header_preproc | 29025 | ac_cv_header_gssapi_krb5_h=$ac_header_preproc |
25025 | fi | 29026 | fi |
25026 | echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_krb5_h" >&5 | 29027 | { echo "$as_me:$LINENO: result: $ac_cv_header_gssapi_krb5_h" >&5 |
25027 | echo "${ECHO_T}$ac_cv_header_gssapi_krb5_h" >&6 | 29028 | echo "${ECHO_T}$ac_cv_header_gssapi_krb5_h" >&6; } |
25028 | 29029 | ||
25029 | fi | 29030 | fi |
25030 | if test $ac_cv_header_gssapi_krb5_h = yes; then | 29031 | if test $ac_cv_header_gssapi_krb5_h = yes; then |
@@ -25048,18 +29049,19 @@ fi | |||
25048 | for ac_header in gssapi.h gssapi/gssapi.h | 29049 | for ac_header in gssapi.h gssapi/gssapi.h |
25049 | do | 29050 | do |
25050 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 29051 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
25051 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29052 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25052 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 29053 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
25053 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 29054 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
25054 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29055 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25055 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29056 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25056 | fi | 29057 | fi |
25057 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 29058 | ac_res=`eval echo '${'$as_ac_Header'}'` |
25058 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 29059 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
29060 | echo "${ECHO_T}$ac_res" >&6; } | ||
25059 | else | 29061 | else |
25060 | # Is the header compilable? | 29062 | # Is the header compilable? |
25061 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 29063 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
25062 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 29064 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
25063 | cat >conftest.$ac_ext <<_ACEOF | 29065 | cat >conftest.$ac_ext <<_ACEOF |
25064 | /* confdefs.h. */ | 29066 | /* confdefs.h. */ |
25065 | _ACEOF | 29067 | _ACEOF |
@@ -25070,23 +29072,36 @@ $ac_includes_default | |||
25070 | #include <$ac_header> | 29072 | #include <$ac_header> |
25071 | _ACEOF | 29073 | _ACEOF |
25072 | rm -f conftest.$ac_objext | 29074 | rm -f conftest.$ac_objext |
25073 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 29075 | if { (ac_try="$ac_compile" |
25074 | (eval $ac_compile) 2>conftest.er1 | 29076 | case "(($ac_try" in |
29077 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29078 | *) ac_try_echo=$ac_try;; | ||
29079 | esac | ||
29080 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29081 | (eval "$ac_compile") 2>conftest.er1 | ||
25075 | ac_status=$? | 29082 | ac_status=$? |
25076 | grep -v '^ *+' conftest.er1 >conftest.err | 29083 | grep -v '^ *+' conftest.er1 >conftest.err |
25077 | rm -f conftest.er1 | 29084 | rm -f conftest.er1 |
25078 | cat conftest.err >&5 | 29085 | cat conftest.err >&5 |
25079 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29086 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25080 | (exit $ac_status); } && | 29087 | (exit $ac_status); } && |
25081 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 29088 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
25082 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29089 | { (case "(($ac_try" in |
25083 | (eval $ac_try) 2>&5 | 29090 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29091 | *) ac_try_echo=$ac_try;; | ||
29092 | esac | ||
29093 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29094 | (eval "$ac_try") 2>&5 | ||
25084 | ac_status=$? | 29095 | ac_status=$? |
25085 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29096 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25086 | (exit $ac_status); }; } && | 29097 | (exit $ac_status); }; } && |
25087 | { ac_try='test -s conftest.$ac_objext' | 29098 | { ac_try='test -s conftest.$ac_objext' |
25088 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29099 | { (case "(($ac_try" in |
25089 | (eval $ac_try) 2>&5 | 29100 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29101 | *) ac_try_echo=$ac_try;; | ||
29102 | esac | ||
29103 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29104 | (eval "$ac_try") 2>&5 | ||
25090 | ac_status=$? | 29105 | ac_status=$? |
25091 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29106 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25092 | (exit $ac_status); }; }; then | 29107 | (exit $ac_status); }; }; then |
@@ -25095,15 +29110,16 @@ else | |||
25095 | echo "$as_me: failed program was:" >&5 | 29110 | echo "$as_me: failed program was:" >&5 |
25096 | sed 's/^/| /' conftest.$ac_ext >&5 | 29111 | sed 's/^/| /' conftest.$ac_ext >&5 |
25097 | 29112 | ||
25098 | ac_header_compiler=no | 29113 | ac_header_compiler=no |
25099 | fi | 29114 | fi |
25100 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 29115 | |
25101 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 29116 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
25102 | echo "${ECHO_T}$ac_header_compiler" >&6 | 29117 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
29118 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
25103 | 29119 | ||
25104 | # Is the header present? | 29120 | # Is the header present? |
25105 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 29121 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
25106 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 29122 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
25107 | cat >conftest.$ac_ext <<_ACEOF | 29123 | cat >conftest.$ac_ext <<_ACEOF |
25108 | /* confdefs.h. */ | 29124 | /* confdefs.h. */ |
25109 | _ACEOF | 29125 | _ACEOF |
@@ -25112,8 +29128,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
25112 | /* end confdefs.h. */ | 29128 | /* end confdefs.h. */ |
25113 | #include <$ac_header> | 29129 | #include <$ac_header> |
25114 | _ACEOF | 29130 | _ACEOF |
25115 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 29131 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
25116 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 29132 | case "(($ac_try" in |
29133 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29134 | *) ac_try_echo=$ac_try;; | ||
29135 | esac | ||
29136 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29137 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
25117 | ac_status=$? | 29138 | ac_status=$? |
25118 | grep -v '^ *+' conftest.er1 >conftest.err | 29139 | grep -v '^ *+' conftest.er1 >conftest.err |
25119 | rm -f conftest.er1 | 29140 | rm -f conftest.er1 |
@@ -25137,9 +29158,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
25137 | 29158 | ||
25138 | ac_header_preproc=no | 29159 | ac_header_preproc=no |
25139 | fi | 29160 | fi |
29161 | |||
25140 | rm -f conftest.err conftest.$ac_ext | 29162 | rm -f conftest.err conftest.$ac_ext |
25141 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 29163 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
25142 | echo "${ECHO_T}$ac_header_preproc" >&6 | 29164 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
25143 | 29165 | ||
25144 | # So? What about this header? | 29166 | # So? What about this header? |
25145 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 29167 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -25163,25 +29185,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
25163 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 29185 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
25164 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 29186 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
25165 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 29187 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
25166 | ( | 29188 | ( cat <<\_ASBOX |
25167 | cat <<\_ASBOX | ||
25168 | ## ------------------------------------------- ## | 29189 | ## ------------------------------------------- ## |
25169 | ## Report this to openssh-unix-dev@mindrot.org ## | 29190 | ## Report this to openssh-unix-dev@mindrot.org ## |
25170 | ## ------------------------------------------- ## | 29191 | ## ------------------------------------------- ## |
25171 | _ASBOX | 29192 | _ASBOX |
25172 | ) | | 29193 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
25173 | sed "s/^/$as_me: WARNING: /" >&2 | ||
25174 | ;; | 29194 | ;; |
25175 | esac | 29195 | esac |
25176 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 29196 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
25177 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 29197 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
25178 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29198 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25179 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29199 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25180 | else | 29200 | else |
25181 | eval "$as_ac_Header=\$ac_header_preproc" | 29201 | eval "$as_ac_Header=\$ac_header_preproc" |
25182 | fi | 29202 | fi |
25183 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 29203 | ac_res=`eval echo '${'$as_ac_Header'}'` |
25184 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 29204 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
29205 | echo "${ECHO_T}$ac_res" >&6; } | ||
25185 | 29206 | ||
25186 | fi | 29207 | fi |
25187 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 29208 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -25198,18 +29219,19 @@ done | |||
25198 | for ac_header in gssapi_krb5.h gssapi/gssapi_krb5.h | 29219 | for ac_header in gssapi_krb5.h gssapi/gssapi_krb5.h |
25199 | do | 29220 | do |
25200 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 29221 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
25201 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29222 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25202 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 29223 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
25203 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 29224 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
25204 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29225 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25205 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29226 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25206 | fi | 29227 | fi |
25207 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 29228 | ac_res=`eval echo '${'$as_ac_Header'}'` |
25208 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 29229 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
29230 | echo "${ECHO_T}$ac_res" >&6; } | ||
25209 | else | 29231 | else |
25210 | # Is the header compilable? | 29232 | # Is the header compilable? |
25211 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 29233 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
25212 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 29234 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
25213 | cat >conftest.$ac_ext <<_ACEOF | 29235 | cat >conftest.$ac_ext <<_ACEOF |
25214 | /* confdefs.h. */ | 29236 | /* confdefs.h. */ |
25215 | _ACEOF | 29237 | _ACEOF |
@@ -25220,23 +29242,36 @@ $ac_includes_default | |||
25220 | #include <$ac_header> | 29242 | #include <$ac_header> |
25221 | _ACEOF | 29243 | _ACEOF |
25222 | rm -f conftest.$ac_objext | 29244 | rm -f conftest.$ac_objext |
25223 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 29245 | if { (ac_try="$ac_compile" |
25224 | (eval $ac_compile) 2>conftest.er1 | 29246 | case "(($ac_try" in |
29247 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29248 | *) ac_try_echo=$ac_try;; | ||
29249 | esac | ||
29250 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29251 | (eval "$ac_compile") 2>conftest.er1 | ||
25225 | ac_status=$? | 29252 | ac_status=$? |
25226 | grep -v '^ *+' conftest.er1 >conftest.err | 29253 | grep -v '^ *+' conftest.er1 >conftest.err |
25227 | rm -f conftest.er1 | 29254 | rm -f conftest.er1 |
25228 | cat conftest.err >&5 | 29255 | cat conftest.err >&5 |
25229 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29256 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25230 | (exit $ac_status); } && | 29257 | (exit $ac_status); } && |
25231 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 29258 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
25232 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29259 | { (case "(($ac_try" in |
25233 | (eval $ac_try) 2>&5 | 29260 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29261 | *) ac_try_echo=$ac_try;; | ||
29262 | esac | ||
29263 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29264 | (eval "$ac_try") 2>&5 | ||
25234 | ac_status=$? | 29265 | ac_status=$? |
25235 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29266 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25236 | (exit $ac_status); }; } && | 29267 | (exit $ac_status); }; } && |
25237 | { ac_try='test -s conftest.$ac_objext' | 29268 | { ac_try='test -s conftest.$ac_objext' |
25238 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29269 | { (case "(($ac_try" in |
25239 | (eval $ac_try) 2>&5 | 29270 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29271 | *) ac_try_echo=$ac_try;; | ||
29272 | esac | ||
29273 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29274 | (eval "$ac_try") 2>&5 | ||
25240 | ac_status=$? | 29275 | ac_status=$? |
25241 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29276 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25242 | (exit $ac_status); }; }; then | 29277 | (exit $ac_status); }; }; then |
@@ -25245,15 +29280,16 @@ else | |||
25245 | echo "$as_me: failed program was:" >&5 | 29280 | echo "$as_me: failed program was:" >&5 |
25246 | sed 's/^/| /' conftest.$ac_ext >&5 | 29281 | sed 's/^/| /' conftest.$ac_ext >&5 |
25247 | 29282 | ||
25248 | ac_header_compiler=no | 29283 | ac_header_compiler=no |
25249 | fi | 29284 | fi |
25250 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 29285 | |
25251 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 29286 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
25252 | echo "${ECHO_T}$ac_header_compiler" >&6 | 29287 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
29288 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
25253 | 29289 | ||
25254 | # Is the header present? | 29290 | # Is the header present? |
25255 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 29291 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
25256 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 29292 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
25257 | cat >conftest.$ac_ext <<_ACEOF | 29293 | cat >conftest.$ac_ext <<_ACEOF |
25258 | /* confdefs.h. */ | 29294 | /* confdefs.h. */ |
25259 | _ACEOF | 29295 | _ACEOF |
@@ -25262,8 +29298,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
25262 | /* end confdefs.h. */ | 29298 | /* end confdefs.h. */ |
25263 | #include <$ac_header> | 29299 | #include <$ac_header> |
25264 | _ACEOF | 29300 | _ACEOF |
25265 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 29301 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
25266 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 29302 | case "(($ac_try" in |
29303 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29304 | *) ac_try_echo=$ac_try;; | ||
29305 | esac | ||
29306 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29307 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
25267 | ac_status=$? | 29308 | ac_status=$? |
25268 | grep -v '^ *+' conftest.er1 >conftest.err | 29309 | grep -v '^ *+' conftest.er1 >conftest.err |
25269 | rm -f conftest.er1 | 29310 | rm -f conftest.er1 |
@@ -25287,9 +29328,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
25287 | 29328 | ||
25288 | ac_header_preproc=no | 29329 | ac_header_preproc=no |
25289 | fi | 29330 | fi |
29331 | |||
25290 | rm -f conftest.err conftest.$ac_ext | 29332 | rm -f conftest.err conftest.$ac_ext |
25291 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 29333 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
25292 | echo "${ECHO_T}$ac_header_preproc" >&6 | 29334 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
25293 | 29335 | ||
25294 | # So? What about this header? | 29336 | # So? What about this header? |
25295 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 29337 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -25313,25 +29355,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
25313 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 29355 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
25314 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 29356 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
25315 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 29357 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
25316 | ( | 29358 | ( cat <<\_ASBOX |
25317 | cat <<\_ASBOX | ||
25318 | ## ------------------------------------------- ## | 29359 | ## ------------------------------------------- ## |
25319 | ## Report this to openssh-unix-dev@mindrot.org ## | 29360 | ## Report this to openssh-unix-dev@mindrot.org ## |
25320 | ## ------------------------------------------- ## | 29361 | ## ------------------------------------------- ## |
25321 | _ASBOX | 29362 | _ASBOX |
25322 | ) | | 29363 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
25323 | sed "s/^/$as_me: WARNING: /" >&2 | ||
25324 | ;; | 29364 | ;; |
25325 | esac | 29365 | esac |
25326 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 29366 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
25327 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 29367 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
25328 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29368 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25329 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29369 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25330 | else | 29370 | else |
25331 | eval "$as_ac_Header=\$ac_header_preproc" | 29371 | eval "$as_ac_Header=\$ac_header_preproc" |
25332 | fi | 29372 | fi |
25333 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 29373 | ac_res=`eval echo '${'$as_ac_Header'}'` |
25334 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 29374 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
29375 | echo "${ECHO_T}$ac_res" >&6; } | ||
25335 | 29376 | ||
25336 | fi | 29377 | fi |
25337 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 29378 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -25348,18 +29389,19 @@ done | |||
25348 | for ac_header in gssapi_generic.h gssapi/gssapi_generic.h | 29389 | for ac_header in gssapi_generic.h gssapi/gssapi_generic.h |
25349 | do | 29390 | do |
25350 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | 29391 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
25351 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29392 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25352 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 29393 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
25353 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 29394 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
25354 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29395 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25355 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29396 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25356 | fi | 29397 | fi |
25357 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 29398 | ac_res=`eval echo '${'$as_ac_Header'}'` |
25358 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 29399 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
29400 | echo "${ECHO_T}$ac_res" >&6; } | ||
25359 | else | 29401 | else |
25360 | # Is the header compilable? | 29402 | # Is the header compilable? |
25361 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | 29403 | { echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
25362 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | 29404 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } |
25363 | cat >conftest.$ac_ext <<_ACEOF | 29405 | cat >conftest.$ac_ext <<_ACEOF |
25364 | /* confdefs.h. */ | 29406 | /* confdefs.h. */ |
25365 | _ACEOF | 29407 | _ACEOF |
@@ -25370,23 +29412,36 @@ $ac_includes_default | |||
25370 | #include <$ac_header> | 29412 | #include <$ac_header> |
25371 | _ACEOF | 29413 | _ACEOF |
25372 | rm -f conftest.$ac_objext | 29414 | rm -f conftest.$ac_objext |
25373 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 29415 | if { (ac_try="$ac_compile" |
25374 | (eval $ac_compile) 2>conftest.er1 | 29416 | case "(($ac_try" in |
29417 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29418 | *) ac_try_echo=$ac_try;; | ||
29419 | esac | ||
29420 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29421 | (eval "$ac_compile") 2>conftest.er1 | ||
25375 | ac_status=$? | 29422 | ac_status=$? |
25376 | grep -v '^ *+' conftest.er1 >conftest.err | 29423 | grep -v '^ *+' conftest.er1 >conftest.err |
25377 | rm -f conftest.er1 | 29424 | rm -f conftest.er1 |
25378 | cat conftest.err >&5 | 29425 | cat conftest.err >&5 |
25379 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29426 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25380 | (exit $ac_status); } && | 29427 | (exit $ac_status); } && |
25381 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 29428 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
25382 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29429 | { (case "(($ac_try" in |
25383 | (eval $ac_try) 2>&5 | 29430 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29431 | *) ac_try_echo=$ac_try;; | ||
29432 | esac | ||
29433 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29434 | (eval "$ac_try") 2>&5 | ||
25384 | ac_status=$? | 29435 | ac_status=$? |
25385 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29436 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25386 | (exit $ac_status); }; } && | 29437 | (exit $ac_status); }; } && |
25387 | { ac_try='test -s conftest.$ac_objext' | 29438 | { ac_try='test -s conftest.$ac_objext' |
25388 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29439 | { (case "(($ac_try" in |
25389 | (eval $ac_try) 2>&5 | 29440 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29441 | *) ac_try_echo=$ac_try;; | ||
29442 | esac | ||
29443 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29444 | (eval "$ac_try") 2>&5 | ||
25390 | ac_status=$? | 29445 | ac_status=$? |
25391 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29446 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25392 | (exit $ac_status); }; }; then | 29447 | (exit $ac_status); }; }; then |
@@ -25395,15 +29450,16 @@ else | |||
25395 | echo "$as_me: failed program was:" >&5 | 29450 | echo "$as_me: failed program was:" >&5 |
25396 | sed 's/^/| /' conftest.$ac_ext >&5 | 29451 | sed 's/^/| /' conftest.$ac_ext >&5 |
25397 | 29452 | ||
25398 | ac_header_compiler=no | 29453 | ac_header_compiler=no |
25399 | fi | 29454 | fi |
25400 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 29455 | |
25401 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | 29456 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
25402 | echo "${ECHO_T}$ac_header_compiler" >&6 | 29457 | { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
29458 | echo "${ECHO_T}$ac_header_compiler" >&6; } | ||
25403 | 29459 | ||
25404 | # Is the header present? | 29460 | # Is the header present? |
25405 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | 29461 | { echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
25406 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | 29462 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } |
25407 | cat >conftest.$ac_ext <<_ACEOF | 29463 | cat >conftest.$ac_ext <<_ACEOF |
25408 | /* confdefs.h. */ | 29464 | /* confdefs.h. */ |
25409 | _ACEOF | 29465 | _ACEOF |
@@ -25412,8 +29468,13 @@ cat >>conftest.$ac_ext <<_ACEOF | |||
25412 | /* end confdefs.h. */ | 29468 | /* end confdefs.h. */ |
25413 | #include <$ac_header> | 29469 | #include <$ac_header> |
25414 | _ACEOF | 29470 | _ACEOF |
25415 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | 29471 | if { (ac_try="$ac_cpp conftest.$ac_ext" |
25416 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | 29472 | case "(($ac_try" in |
29473 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29474 | *) ac_try_echo=$ac_try;; | ||
29475 | esac | ||
29476 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29477 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 | ||
25417 | ac_status=$? | 29478 | ac_status=$? |
25418 | grep -v '^ *+' conftest.er1 >conftest.err | 29479 | grep -v '^ *+' conftest.er1 >conftest.err |
25419 | rm -f conftest.er1 | 29480 | rm -f conftest.er1 |
@@ -25437,9 +29498,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
25437 | 29498 | ||
25438 | ac_header_preproc=no | 29499 | ac_header_preproc=no |
25439 | fi | 29500 | fi |
29501 | |||
25440 | rm -f conftest.err conftest.$ac_ext | 29502 | rm -f conftest.err conftest.$ac_ext |
25441 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | 29503 | { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 |
25442 | echo "${ECHO_T}$ac_header_preproc" >&6 | 29504 | echo "${ECHO_T}$ac_header_preproc" >&6; } |
25443 | 29505 | ||
25444 | # So? What about this header? | 29506 | # So? What about this header? |
25445 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | 29507 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
@@ -25463,25 +29525,24 @@ echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\ | |||
25463 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | 29525 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
25464 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | 29526 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
25465 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | 29527 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
25466 | ( | 29528 | ( cat <<\_ASBOX |
25467 | cat <<\_ASBOX | ||
25468 | ## ------------------------------------------- ## | 29529 | ## ------------------------------------------- ## |
25469 | ## Report this to openssh-unix-dev@mindrot.org ## | 29530 | ## Report this to openssh-unix-dev@mindrot.org ## |
25470 | ## ------------------------------------------- ## | 29531 | ## ------------------------------------------- ## |
25471 | _ASBOX | 29532 | _ASBOX |
25472 | ) | | 29533 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
25473 | sed "s/^/$as_me: WARNING: /" >&2 | ||
25474 | ;; | 29534 | ;; |
25475 | esac | 29535 | esac |
25476 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | 29536 | { echo "$as_me:$LINENO: checking for $ac_header" >&5 |
25477 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | 29537 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } |
25478 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | 29538 | if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then |
25479 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29539 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25480 | else | 29540 | else |
25481 | eval "$as_ac_Header=\$ac_header_preproc" | 29541 | eval "$as_ac_Header=\$ac_header_preproc" |
25482 | fi | 29542 | fi |
25483 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | 29543 | ac_res=`eval echo '${'$as_ac_Header'}'` |
25484 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | 29544 | { echo "$as_me:$LINENO: result: $ac_res" >&5 |
29545 | echo "${ECHO_T}$ac_res" >&6; } | ||
25485 | 29546 | ||
25486 | fi | 29547 | fi |
25487 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | 29548 | if test `eval echo '${'$as_ac_Header'}'` = yes; then |
@@ -25495,13 +29556,12 @@ done | |||
25495 | 29556 | ||
25496 | 29557 | ||
25497 | LIBS="$LIBS $K5LIBS" | 29558 | LIBS="$LIBS $K5LIBS" |
25498 | echo "$as_me:$LINENO: checking for library containing k_hasafs" >&5 | 29559 | { echo "$as_me:$LINENO: checking for library containing k_hasafs" >&5 |
25499 | echo $ECHO_N "checking for library containing k_hasafs... $ECHO_C" >&6 | 29560 | echo $ECHO_N "checking for library containing k_hasafs... $ECHO_C" >&6; } |
25500 | if test "${ac_cv_search_k_hasafs+set}" = set; then | 29561 | if test "${ac_cv_search_k_hasafs+set}" = set; then |
25501 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29562 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25502 | else | 29563 | else |
25503 | ac_func_search_save_LIBS=$LIBS | 29564 | ac_func_search_save_LIBS=$LIBS |
25504 | ac_cv_search_k_hasafs=no | ||
25505 | cat >conftest.$ac_ext <<_ACEOF | 29565 | cat >conftest.$ac_ext <<_ACEOF |
25506 | /* confdefs.h. */ | 29566 | /* confdefs.h. */ |
25507 | _ACEOF | 29567 | _ACEOF |
@@ -25509,113 +29569,89 @@ cat confdefs.h >>conftest.$ac_ext | |||
25509 | cat >>conftest.$ac_ext <<_ACEOF | 29569 | cat >>conftest.$ac_ext <<_ACEOF |
25510 | /* end confdefs.h. */ | 29570 | /* end confdefs.h. */ |
25511 | 29571 | ||
25512 | /* Override any gcc2 internal prototype to avoid an error. */ | 29572 | /* Override any GCC internal prototype to avoid an error. |
29573 | Use char because int might match the return type of a GCC | ||
29574 | builtin and then its argument prototype would still apply. */ | ||
25513 | #ifdef __cplusplus | 29575 | #ifdef __cplusplus |
25514 | extern "C" | 29576 | extern "C" |
25515 | #endif | 29577 | #endif |
25516 | /* We use char because int might match the return type of a gcc2 | ||
25517 | builtin and then its argument prototype would still apply. */ | ||
25518 | char k_hasafs (); | 29578 | char k_hasafs (); |
25519 | int | 29579 | int |
25520 | main () | 29580 | main () |
25521 | { | 29581 | { |
25522 | k_hasafs (); | 29582 | return k_hasafs (); |
25523 | ; | 29583 | ; |
25524 | return 0; | 29584 | return 0; |
25525 | } | 29585 | } |
25526 | _ACEOF | 29586 | _ACEOF |
25527 | rm -f conftest.$ac_objext conftest$ac_exeext | 29587 | for ac_lib in '' kafs; do |
25528 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 29588 | if test -z "$ac_lib"; then |
25529 | (eval $ac_link) 2>conftest.er1 | 29589 | ac_res="none required" |
29590 | else | ||
29591 | ac_res=-l$ac_lib | ||
29592 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
29593 | fi | ||
29594 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
29595 | if { (ac_try="$ac_link" | ||
29596 | case "(($ac_try" in | ||
29597 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
29598 | *) ac_try_echo=$ac_try;; | ||
29599 | esac | ||
29600 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29601 | (eval "$ac_link") 2>conftest.er1 | ||
25530 | ac_status=$? | 29602 | ac_status=$? |
25531 | grep -v '^ *+' conftest.er1 >conftest.err | 29603 | grep -v '^ *+' conftest.er1 >conftest.err |
25532 | rm -f conftest.er1 | 29604 | rm -f conftest.er1 |
25533 | cat conftest.err >&5 | 29605 | cat conftest.err >&5 |
25534 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29606 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25535 | (exit $ac_status); } && | 29607 | (exit $ac_status); } && |
25536 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 29608 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
25537 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29609 | { (case "(($ac_try" in |
25538 | (eval $ac_try) 2>&5 | 29610 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29611 | *) ac_try_echo=$ac_try;; | ||
29612 | esac | ||
29613 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29614 | (eval "$ac_try") 2>&5 | ||
25539 | ac_status=$? | 29615 | ac_status=$? |
25540 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29616 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25541 | (exit $ac_status); }; } && | 29617 | (exit $ac_status); }; } && |
25542 | { ac_try='test -s conftest$ac_exeext' | 29618 | { ac_try='test -s conftest$ac_exeext' |
25543 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 29619 | { (case "(($ac_try" in |
25544 | (eval $ac_try) 2>&5 | 29620 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
29621 | *) ac_try_echo=$ac_try;; | ||
29622 | esac | ||
29623 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
29624 | (eval "$ac_try") 2>&5 | ||
25545 | ac_status=$? | 29625 | ac_status=$? |
25546 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 29626 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25547 | (exit $ac_status); }; }; then | 29627 | (exit $ac_status); }; }; then |
25548 | ac_cv_search_k_hasafs="none required" | 29628 | ac_cv_search_k_hasafs=$ac_res |
25549 | else | 29629 | else |
25550 | echo "$as_me: failed program was:" >&5 | 29630 | echo "$as_me: failed program was:" >&5 |
25551 | sed 's/^/| /' conftest.$ac_ext >&5 | 29631 | sed 's/^/| /' conftest.$ac_ext >&5 |
25552 | 29632 | ||
25553 | fi | ||
25554 | rm -f conftest.err conftest.$ac_objext \ | ||
25555 | conftest$ac_exeext conftest.$ac_ext | ||
25556 | if test "$ac_cv_search_k_hasafs" = no; then | ||
25557 | for ac_lib in kafs; do | ||
25558 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | ||
25559 | cat >conftest.$ac_ext <<_ACEOF | ||
25560 | /* confdefs.h. */ | ||
25561 | _ACEOF | ||
25562 | cat confdefs.h >>conftest.$ac_ext | ||
25563 | cat >>conftest.$ac_ext <<_ACEOF | ||
25564 | /* end confdefs.h. */ | ||
25565 | 29633 | ||
25566 | /* Override any gcc2 internal prototype to avoid an error. */ | 29634 | fi |
25567 | #ifdef __cplusplus | ||
25568 | extern "C" | ||
25569 | #endif | ||
25570 | /* We use char because int might match the return type of a gcc2 | ||
25571 | builtin and then its argument prototype would still apply. */ | ||
25572 | char k_hasafs (); | ||
25573 | int | ||
25574 | main () | ||
25575 | { | ||
25576 | k_hasafs (); | ||
25577 | ; | ||
25578 | return 0; | ||
25579 | } | ||
25580 | _ACEOF | ||
25581 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
25582 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | ||
25583 | (eval $ac_link) 2>conftest.er1 | ||
25584 | ac_status=$? | ||
25585 | grep -v '^ *+' conftest.er1 >conftest.err | ||
25586 | rm -f conftest.er1 | ||
25587 | cat conftest.err >&5 | ||
25588 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
25589 | (exit $ac_status); } && | ||
25590 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
25591 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
25592 | (eval $ac_try) 2>&5 | ||
25593 | ac_status=$? | ||
25594 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
25595 | (exit $ac_status); }; } && | ||
25596 | { ac_try='test -s conftest$ac_exeext' | ||
25597 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
25598 | (eval $ac_try) 2>&5 | ||
25599 | ac_status=$? | ||
25600 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
25601 | (exit $ac_status); }; }; then | ||
25602 | ac_cv_search_k_hasafs="-l$ac_lib" | ||
25603 | break | ||
25604 | else | ||
25605 | echo "$as_me: failed program was:" >&5 | ||
25606 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
25607 | 29635 | ||
29636 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
29637 | conftest$ac_exeext | ||
29638 | if test "${ac_cv_search_k_hasafs+set}" = set; then | ||
29639 | break | ||
25608 | fi | 29640 | fi |
25609 | rm -f conftest.err conftest.$ac_objext \ | 29641 | done |
25610 | conftest$ac_exeext conftest.$ac_ext | 29642 | if test "${ac_cv_search_k_hasafs+set}" = set; then |
25611 | done | 29643 | : |
29644 | else | ||
29645 | ac_cv_search_k_hasafs=no | ||
25612 | fi | 29646 | fi |
29647 | rm conftest.$ac_ext | ||
25613 | LIBS=$ac_func_search_save_LIBS | 29648 | LIBS=$ac_func_search_save_LIBS |
25614 | fi | 29649 | fi |
25615 | echo "$as_me:$LINENO: result: $ac_cv_search_k_hasafs" >&5 | 29650 | { echo "$as_me:$LINENO: result: $ac_cv_search_k_hasafs" >&5 |
25616 | echo "${ECHO_T}$ac_cv_search_k_hasafs" >&6 | 29651 | echo "${ECHO_T}$ac_cv_search_k_hasafs" >&6; } |
25617 | if test "$ac_cv_search_k_hasafs" != no; then | 29652 | ac_res=$ac_cv_search_k_hasafs |
25618 | test "$ac_cv_search_k_hasafs" = "none required" || LIBS="$ac_cv_search_k_hasafs $LIBS" | 29653 | if test "$ac_res" != no; then |
29654 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | ||
25619 | 29655 | ||
25620 | cat >>confdefs.h <<\_ACEOF | 29656 | cat >>confdefs.h <<\_ACEOF |
25621 | #define USE_AFS 1 | 29657 | #define USE_AFS 1 |
@@ -25626,30 +29662,30 @@ fi | |||
25626 | fi | 29662 | fi |
25627 | 29663 | ||
25628 | 29664 | ||
25629 | fi; | 29665 | fi |
29666 | |||
25630 | 29667 | ||
25631 | # Looking for programs, paths and files | 29668 | # Looking for programs, paths and files |
25632 | 29669 | ||
25633 | PRIVSEP_PATH=/var/empty | 29670 | PRIVSEP_PATH=/var/empty |
25634 | 29671 | ||
25635 | # Check whether --with-privsep-path or --without-privsep-path was given. | 29672 | # Check whether --with-privsep-path was given. |
25636 | if test "${with_privsep_path+set}" = set; then | 29673 | if test "${with_privsep_path+set}" = set; then |
25637 | withval="$with_privsep_path" | 29674 | withval=$with_privsep_path; |
25638 | |||
25639 | if test -n "$withval" && test "x$withval" != "xno" && \ | 29675 | if test -n "$withval" && test "x$withval" != "xno" && \ |
25640 | test "x${withval}" != "xyes"; then | 29676 | test "x${withval}" != "xyes"; then |
25641 | PRIVSEP_PATH=$withval | 29677 | PRIVSEP_PATH=$withval |
25642 | fi | 29678 | fi |
25643 | 29679 | ||
25644 | 29680 | ||
25645 | fi; | 29681 | fi |
29682 | |||
25646 | 29683 | ||
25647 | 29684 | ||
25648 | 29685 | ||
25649 | # Check whether --with-xauth or --without-xauth was given. | 29686 | # Check whether --with-xauth was given. |
25650 | if test "${with_xauth+set}" = set; then | 29687 | if test "${with_xauth+set}" = set; then |
25651 | withval="$with_xauth" | 29688 | withval=$with_xauth; |
25652 | |||
25653 | if test -n "$withval" && test "x$withval" != "xno" && \ | 29689 | if test -n "$withval" && test "x$withval" != "xno" && \ |
25654 | test "x${withval}" != "xyes"; then | 29690 | test "x${withval}" != "xyes"; then |
25655 | xauth_path=$withval | 29691 | xauth_path=$withval |
@@ -25664,8 +29700,8 @@ else | |||
25664 | TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin" | 29700 | TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin" |
25665 | # Extract the first word of "xauth", so it can be a program name with args. | 29701 | # Extract the first word of "xauth", so it can be a program name with args. |
25666 | set dummy xauth; ac_word=$2 | 29702 | set dummy xauth; ac_word=$2 |
25667 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 29703 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
25668 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 29704 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
25669 | if test "${ac_cv_path_xauth_path+set}" = set; then | 29705 | if test "${ac_cv_path_xauth_path+set}" = set; then |
25670 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29706 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25671 | else | 29707 | else |
@@ -25680,45 +29716,47 @@ do | |||
25680 | IFS=$as_save_IFS | 29716 | IFS=$as_save_IFS |
25681 | test -z "$as_dir" && as_dir=. | 29717 | test -z "$as_dir" && as_dir=. |
25682 | for ac_exec_ext in '' $ac_executable_extensions; do | 29718 | for ac_exec_ext in '' $ac_executable_extensions; do |
25683 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 29719 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
25684 | ac_cv_path_xauth_path="$as_dir/$ac_word$ac_exec_ext" | 29720 | ac_cv_path_xauth_path="$as_dir/$ac_word$ac_exec_ext" |
25685 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 29721 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
25686 | break 2 | 29722 | break 2 |
25687 | fi | 29723 | fi |
25688 | done | 29724 | done |
25689 | done | 29725 | done |
29726 | IFS=$as_save_IFS | ||
25690 | 29727 | ||
25691 | ;; | 29728 | ;; |
25692 | esac | 29729 | esac |
25693 | fi | 29730 | fi |
25694 | xauth_path=$ac_cv_path_xauth_path | 29731 | xauth_path=$ac_cv_path_xauth_path |
25695 | |||
25696 | if test -n "$xauth_path"; then | 29732 | if test -n "$xauth_path"; then |
25697 | echo "$as_me:$LINENO: result: $xauth_path" >&5 | 29733 | { echo "$as_me:$LINENO: result: $xauth_path" >&5 |
25698 | echo "${ECHO_T}$xauth_path" >&6 | 29734 | echo "${ECHO_T}$xauth_path" >&6; } |
25699 | else | 29735 | else |
25700 | echo "$as_me:$LINENO: result: no" >&5 | 29736 | { echo "$as_me:$LINENO: result: no" >&5 |
25701 | echo "${ECHO_T}no" >&6 | 29737 | echo "${ECHO_T}no" >&6; } |
25702 | fi | 29738 | fi |
25703 | 29739 | ||
29740 | |||
25704 | if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then | 29741 | if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then |
25705 | xauth_path="/usr/openwin/bin/xauth" | 29742 | xauth_path="/usr/openwin/bin/xauth" |
25706 | fi | 29743 | fi |
25707 | 29744 | ||
25708 | 29745 | ||
25709 | fi; | 29746 | fi |
29747 | |||
25710 | 29748 | ||
25711 | STRIP_OPT=-s | 29749 | STRIP_OPT=-s |
25712 | # Check whether --enable-strip or --disable-strip was given. | 29750 | # Check whether --enable-strip was given. |
25713 | if test "${enable_strip+set}" = set; then | 29751 | if test "${enable_strip+set}" = set; then |
25714 | enableval="$enable_strip" | 29752 | enableval=$enable_strip; |
25715 | |||
25716 | if test "x$enableval" = "xno" ; then | 29753 | if test "x$enableval" = "xno" ; then |
25717 | STRIP_OPT= | 29754 | STRIP_OPT= |
25718 | fi | 29755 | fi |
25719 | 29756 | ||
25720 | 29757 | ||
25721 | fi; | 29758 | fi |
29759 | |||
25722 | 29760 | ||
25723 | 29761 | ||
25724 | if test -z "$xauth_path" ; then | 29762 | if test -z "$xauth_path" ; then |
@@ -25751,8 +29789,8 @@ echo "$as_me: WARNING: cross compiling: Disabling /dev/ptmx test" >&2;} | |||
25751 | fi | 29789 | fi |
25752 | if test -z "$no_dev_ptmx" ; then | 29790 | if test -z "$no_dev_ptmx" ; then |
25753 | if test "x$disable_ptmx_check" != "xyes" ; then | 29791 | if test "x$disable_ptmx_check" != "xyes" ; then |
25754 | echo "$as_me:$LINENO: checking for \"/dev/ptmx\"" >&5 | 29792 | { echo "$as_me:$LINENO: checking for \"/dev/ptmx\"" >&5 |
25755 | echo $ECHO_N "checking for \"/dev/ptmx\"... $ECHO_C" >&6 | 29793 | echo $ECHO_N "checking for \"/dev/ptmx\"... $ECHO_C" >&6; } |
25756 | if test "${ac_cv_file___dev_ptmx_+set}" = set; then | 29794 | if test "${ac_cv_file___dev_ptmx_+set}" = set; then |
25757 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29795 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25758 | else | 29796 | else |
@@ -25766,8 +29804,8 @@ else | |||
25766 | ac_cv_file___dev_ptmx_=no | 29804 | ac_cv_file___dev_ptmx_=no |
25767 | fi | 29805 | fi |
25768 | fi | 29806 | fi |
25769 | echo "$as_me:$LINENO: result: $ac_cv_file___dev_ptmx_" >&5 | 29807 | { echo "$as_me:$LINENO: result: $ac_cv_file___dev_ptmx_" >&5 |
25770 | echo "${ECHO_T}$ac_cv_file___dev_ptmx_" >&6 | 29808 | echo "${ECHO_T}$ac_cv_file___dev_ptmx_" >&6; } |
25771 | if test $ac_cv_file___dev_ptmx_ = yes; then | 29809 | if test $ac_cv_file___dev_ptmx_ = yes; then |
25772 | 29810 | ||
25773 | 29811 | ||
@@ -25784,8 +29822,8 @@ fi | |||
25784 | fi | 29822 | fi |
25785 | 29823 | ||
25786 | if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then | 29824 | if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then |
25787 | echo "$as_me:$LINENO: checking for \"/dev/ptc\"" >&5 | 29825 | { echo "$as_me:$LINENO: checking for \"/dev/ptc\"" >&5 |
25788 | echo $ECHO_N "checking for \"/dev/ptc\"... $ECHO_C" >&6 | 29826 | echo $ECHO_N "checking for \"/dev/ptc\"... $ECHO_C" >&6; } |
25789 | if test "${ac_cv_file___dev_ptc_+set}" = set; then | 29827 | if test "${ac_cv_file___dev_ptc_+set}" = set; then |
25790 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29828 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25791 | else | 29829 | else |
@@ -25799,8 +29837,8 @@ else | |||
25799 | ac_cv_file___dev_ptc_=no | 29837 | ac_cv_file___dev_ptc_=no |
25800 | fi | 29838 | fi |
25801 | fi | 29839 | fi |
25802 | echo "$as_me:$LINENO: result: $ac_cv_file___dev_ptc_" >&5 | 29840 | { echo "$as_me:$LINENO: result: $ac_cv_file___dev_ptc_" >&5 |
25803 | echo "${ECHO_T}$ac_cv_file___dev_ptc_" >&6 | 29841 | echo "${ECHO_T}$ac_cv_file___dev_ptc_" >&6; } |
25804 | if test $ac_cv_file___dev_ptc_ = yes; then | 29842 | if test $ac_cv_file___dev_ptc_ = yes; then |
25805 | 29843 | ||
25806 | 29844 | ||
@@ -25820,10 +29858,9 @@ fi | |||
25820 | 29858 | ||
25821 | # Options from here on. Some of these are preset by platform above | 29859 | # Options from here on. Some of these are preset by platform above |
25822 | 29860 | ||
25823 | # Check whether --with-mantype or --without-mantype was given. | 29861 | # Check whether --with-mantype was given. |
25824 | if test "${with_mantype+set}" = set; then | 29862 | if test "${with_mantype+set}" = set; then |
25825 | withval="$with_mantype" | 29863 | withval=$with_mantype; |
25826 | |||
25827 | case "$withval" in | 29864 | case "$withval" in |
25828 | man|cat|doc) | 29865 | man|cat|doc) |
25829 | MANTYPE=$withval | 29866 | MANTYPE=$withval |
@@ -25836,15 +29873,16 @@ echo "$as_me: error: invalid man type: $withval" >&2;} | |||
25836 | esac | 29873 | esac |
25837 | 29874 | ||
25838 | 29875 | ||
25839 | fi; | 29876 | fi |
29877 | |||
25840 | if test -z "$MANTYPE"; then | 29878 | if test -z "$MANTYPE"; then |
25841 | TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb" | 29879 | TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb" |
25842 | for ac_prog in nroff awf | 29880 | for ac_prog in nroff awf |
25843 | do | 29881 | do |
25844 | # Extract the first word of "$ac_prog", so it can be a program name with args. | 29882 | # Extract the first word of "$ac_prog", so it can be a program name with args. |
25845 | set dummy $ac_prog; ac_word=$2 | 29883 | set dummy $ac_prog; ac_word=$2 |
25846 | echo "$as_me:$LINENO: checking for $ac_word" >&5 | 29884 | { echo "$as_me:$LINENO: checking for $ac_word" >&5 |
25847 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 | 29885 | echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } |
25848 | if test "${ac_cv_path_NROFF+set}" = set; then | 29886 | if test "${ac_cv_path_NROFF+set}" = set; then |
25849 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 29887 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
25850 | else | 29888 | else |
@@ -25859,27 +29897,28 @@ do | |||
25859 | IFS=$as_save_IFS | 29897 | IFS=$as_save_IFS |
25860 | test -z "$as_dir" && as_dir=. | 29898 | test -z "$as_dir" && as_dir=. |
25861 | for ac_exec_ext in '' $ac_executable_extensions; do | 29899 | for ac_exec_ext in '' $ac_executable_extensions; do |
25862 | if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | 29900 | if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then |
25863 | ac_cv_path_NROFF="$as_dir/$ac_word$ac_exec_ext" | 29901 | ac_cv_path_NROFF="$as_dir/$ac_word$ac_exec_ext" |
25864 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 | 29902 | echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 |
25865 | break 2 | 29903 | break 2 |
25866 | fi | 29904 | fi |
25867 | done | 29905 | done |
25868 | done | 29906 | done |
29907 | IFS=$as_save_IFS | ||
25869 | 29908 | ||
25870 | ;; | 29909 | ;; |
25871 | esac | 29910 | esac |
25872 | fi | 29911 | fi |
25873 | NROFF=$ac_cv_path_NROFF | 29912 | NROFF=$ac_cv_path_NROFF |
25874 | |||
25875 | if test -n "$NROFF"; then | 29913 | if test -n "$NROFF"; then |
25876 | echo "$as_me:$LINENO: result: $NROFF" >&5 | 29914 | { echo "$as_me:$LINENO: result: $NROFF" >&5 |
25877 | echo "${ECHO_T}$NROFF" >&6 | 29915 | echo "${ECHO_T}$NROFF" >&6; } |
25878 | else | 29916 | else |
25879 | echo "$as_me:$LINENO: result: no" >&5 | 29917 | { echo "$as_me:$LINENO: result: no" >&5 |
25880 | echo "${ECHO_T}no" >&6 | 29918 | echo "${ECHO_T}no" >&6; } |
25881 | fi | 29919 | fi |
25882 | 29920 | ||
29921 | |||
25883 | test -n "$NROFF" && break | 29922 | test -n "$NROFF" && break |
25884 | done | 29923 | done |
25885 | test -n "$NROFF" || NROFF="/bin/false" | 29924 | test -n "$NROFF" || NROFF="/bin/false" |
@@ -25903,10 +29942,9 @@ fi | |||
25903 | # Check whether to enable MD5 passwords | 29942 | # Check whether to enable MD5 passwords |
25904 | MD5_MSG="no" | 29943 | MD5_MSG="no" |
25905 | 29944 | ||
25906 | # Check whether --with-md5-passwords or --without-md5-passwords was given. | 29945 | # Check whether --with-md5-passwords was given. |
25907 | if test "${with_md5_passwords+set}" = set; then | 29946 | if test "${with_md5_passwords+set}" = set; then |
25908 | withval="$with_md5_passwords" | 29947 | withval=$with_md5_passwords; |
25909 | |||
25910 | if test "x$withval" != "xno" ; then | 29948 | if test "x$withval" != "xno" ; then |
25911 | 29949 | ||
25912 | cat >>confdefs.h <<\_ACEOF | 29950 | cat >>confdefs.h <<\_ACEOF |
@@ -25917,14 +29955,14 @@ _ACEOF | |||
25917 | fi | 29955 | fi |
25918 | 29956 | ||
25919 | 29957 | ||
25920 | fi; | 29958 | fi |
29959 | |||
25921 | 29960 | ||
25922 | # Whether to disable shadow password support | 29961 | # Whether to disable shadow password support |
25923 | 29962 | ||
25924 | # Check whether --with-shadow or --without-shadow was given. | 29963 | # Check whether --with-shadow was given. |
25925 | if test "${with_shadow+set}" = set; then | 29964 | if test "${with_shadow+set}" = set; then |
25926 | withval="$with_shadow" | 29965 | withval=$with_shadow; |
25927 | |||
25928 | if test "x$withval" = "xno" ; then | 29966 | if test "x$withval" = "xno" ; then |
25929 | cat >>confdefs.h <<\_ACEOF | 29967 | cat >>confdefs.h <<\_ACEOF |
25930 | #define DISABLE_SHADOW 1 | 29968 | #define DISABLE_SHADOW 1 |
@@ -25934,11 +29972,12 @@ _ACEOF | |||
25934 | fi | 29972 | fi |
25935 | 29973 | ||
25936 | 29974 | ||
25937 | fi; | 29975 | fi |
29976 | |||
25938 | 29977 | ||
25939 | if test -z "$disable_shadow" ; then | 29978 | if test -z "$disable_shadow" ; then |
25940 | echo "$as_me:$LINENO: checking if the systems has expire shadow information" >&5 | 29979 | { echo "$as_me:$LINENO: checking if the systems has expire shadow information" >&5 |
25941 | echo $ECHO_N "checking if the systems has expire shadow information... $ECHO_C" >&6 | 29980 | echo $ECHO_N "checking if the systems has expire shadow information... $ECHO_C" >&6; } |
25942 | cat >conftest.$ac_ext <<_ACEOF | 29981 | cat >conftest.$ac_ext <<_ACEOF |
25943 | /* confdefs.h. */ | 29982 | /* confdefs.h. */ |
25944 | _ACEOF | 29983 | _ACEOF |
@@ -25959,23 +29998,36 @@ main () | |||
25959 | } | 29998 | } |
25960 | _ACEOF | 29999 | _ACEOF |
25961 | rm -f conftest.$ac_objext | 30000 | rm -f conftest.$ac_objext |
25962 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 30001 | if { (ac_try="$ac_compile" |
25963 | (eval $ac_compile) 2>conftest.er1 | 30002 | case "(($ac_try" in |
30003 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30004 | *) ac_try_echo=$ac_try;; | ||
30005 | esac | ||
30006 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30007 | (eval "$ac_compile") 2>conftest.er1 | ||
25964 | ac_status=$? | 30008 | ac_status=$? |
25965 | grep -v '^ *+' conftest.er1 >conftest.err | 30009 | grep -v '^ *+' conftest.er1 >conftest.err |
25966 | rm -f conftest.er1 | 30010 | rm -f conftest.er1 |
25967 | cat conftest.err >&5 | 30011 | cat conftest.err >&5 |
25968 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30012 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25969 | (exit $ac_status); } && | 30013 | (exit $ac_status); } && |
25970 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 30014 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
25971 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30015 | { (case "(($ac_try" in |
25972 | (eval $ac_try) 2>&5 | 30016 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30017 | *) ac_try_echo=$ac_try;; | ||
30018 | esac | ||
30019 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30020 | (eval "$ac_try") 2>&5 | ||
25973 | ac_status=$? | 30021 | ac_status=$? |
25974 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30022 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25975 | (exit $ac_status); }; } && | 30023 | (exit $ac_status); }; } && |
25976 | { ac_try='test -s conftest.$ac_objext' | 30024 | { ac_try='test -s conftest.$ac_objext' |
25977 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30025 | { (case "(($ac_try" in |
25978 | (eval $ac_try) 2>&5 | 30026 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30027 | *) ac_try_echo=$ac_try;; | ||
30028 | esac | ||
30029 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30030 | (eval "$ac_try") 2>&5 | ||
25979 | ac_status=$? | 30031 | ac_status=$? |
25980 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30032 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25981 | (exit $ac_status); }; }; then | 30033 | (exit $ac_status); }; }; then |
@@ -25987,19 +30039,20 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
25987 | 30039 | ||
25988 | 30040 | ||
25989 | fi | 30041 | fi |
25990 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 30042 | |
30043 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
25991 | 30044 | ||
25992 | if test "x$sp_expire_available" = "xyes" ; then | 30045 | if test "x$sp_expire_available" = "xyes" ; then |
25993 | echo "$as_me:$LINENO: result: yes" >&5 | 30046 | { echo "$as_me:$LINENO: result: yes" >&5 |
25994 | echo "${ECHO_T}yes" >&6 | 30047 | echo "${ECHO_T}yes" >&6; } |
25995 | 30048 | ||
25996 | cat >>confdefs.h <<\_ACEOF | 30049 | cat >>confdefs.h <<\_ACEOF |
25997 | #define HAS_SHADOW_EXPIRE 1 | 30050 | #define HAS_SHADOW_EXPIRE 1 |
25998 | _ACEOF | 30051 | _ACEOF |
25999 | 30052 | ||
26000 | else | 30053 | else |
26001 | echo "$as_me:$LINENO: result: no" >&5 | 30054 | { echo "$as_me:$LINENO: result: no" >&5 |
26002 | echo "${ECHO_T}no" >&6 | 30055 | echo "${ECHO_T}no" >&6; } |
26003 | fi | 30056 | fi |
26004 | fi | 30057 | fi |
26005 | 30058 | ||
@@ -26014,10 +30067,9 @@ _ACEOF | |||
26014 | else | 30067 | else |
26015 | DISPLAY_HACK_MSG="no" | 30068 | DISPLAY_HACK_MSG="no" |
26016 | 30069 | ||
26017 | # Check whether --with-ipaddr-display or --without-ipaddr-display was given. | 30070 | # Check whether --with-ipaddr-display was given. |
26018 | if test "${with_ipaddr_display+set}" = set; then | 30071 | if test "${with_ipaddr_display+set}" = set; then |
26019 | withval="$with_ipaddr_display" | 30072 | withval=$with_ipaddr_display; |
26020 | |||
26021 | if test "x$withval" != "xno" ; then | 30073 | if test "x$withval" != "xno" ; then |
26022 | cat >>confdefs.h <<\_ACEOF | 30074 | cat >>confdefs.h <<\_ACEOF |
26023 | #define IPADDR_IN_DISPLAY 1 | 30075 | #define IPADDR_IN_DISPLAY 1 |
@@ -26027,14 +30079,14 @@ _ACEOF | |||
26027 | fi | 30079 | fi |
26028 | 30080 | ||
26029 | 30081 | ||
26030 | fi; | 30082 | fi |
30083 | |||
26031 | fi | 30084 | fi |
26032 | 30085 | ||
26033 | # check for /etc/default/login and use it if present. | 30086 | # check for /etc/default/login and use it if present. |
26034 | # Check whether --enable-etc-default-login or --disable-etc-default-login was given. | 30087 | # Check whether --enable-etc-default-login was given. |
26035 | if test "${enable_etc_default_login+set}" = set; then | 30088 | if test "${enable_etc_default_login+set}" = set; then |
26036 | enableval="$enable_etc_default_login" | 30089 | enableval=$enable_etc_default_login; if test "x$enableval" = "xno"; then |
26037 | if test "x$enableval" = "xno"; then | ||
26038 | { echo "$as_me:$LINENO: /etc/default/login handling disabled" >&5 | 30090 | { echo "$as_me:$LINENO: /etc/default/login handling disabled" >&5 |
26039 | echo "$as_me: /etc/default/login handling disabled" >&6;} | 30091 | echo "$as_me: /etc/default/login handling disabled" >&6;} |
26040 | etc_default_login=no | 30092 | etc_default_login=no |
@@ -26051,11 +30103,12 @@ echo "$as_me: WARNING: cross compiling: not checking /etc/default/login" >&2;} | |||
26051 | etc_default_login=yes | 30103 | etc_default_login=yes |
26052 | fi | 30104 | fi |
26053 | 30105 | ||
26054 | fi; | 30106 | fi |
30107 | |||
26055 | 30108 | ||
26056 | if test "x$etc_default_login" != "xno"; then | 30109 | if test "x$etc_default_login" != "xno"; then |
26057 | echo "$as_me:$LINENO: checking for \"/etc/default/login\"" >&5 | 30110 | { echo "$as_me:$LINENO: checking for \"/etc/default/login\"" >&5 |
26058 | echo $ECHO_N "checking for \"/etc/default/login\"... $ECHO_C" >&6 | 30111 | echo $ECHO_N "checking for \"/etc/default/login\"... $ECHO_C" >&6; } |
26059 | if test "${ac_cv_file___etc_default_login_+set}" = set; then | 30112 | if test "${ac_cv_file___etc_default_login_+set}" = set; then |
26060 | echo $ECHO_N "(cached) $ECHO_C" >&6 | 30113 | echo $ECHO_N "(cached) $ECHO_C" >&6 |
26061 | else | 30114 | else |
@@ -26069,8 +30122,8 @@ else | |||
26069 | ac_cv_file___etc_default_login_=no | 30122 | ac_cv_file___etc_default_login_=no |
26070 | fi | 30123 | fi |
26071 | fi | 30124 | fi |
26072 | echo "$as_me:$LINENO: result: $ac_cv_file___etc_default_login_" >&5 | 30125 | { echo "$as_me:$LINENO: result: $ac_cv_file___etc_default_login_" >&5 |
26073 | echo "${ECHO_T}$ac_cv_file___etc_default_login_" >&6 | 30126 | echo "${ECHO_T}$ac_cv_file___etc_default_login_" >&6; } |
26074 | if test $ac_cv_file___etc_default_login_ = yes; then | 30127 | if test $ac_cv_file___etc_default_login_ = yes; then |
26075 | external_path_file=/etc/default/login | 30128 | external_path_file=/etc/default/login |
26076 | fi | 30129 | fi |
@@ -26092,10 +30145,9 @@ fi | |||
26092 | # Whether to mess with the default path | 30145 | # Whether to mess with the default path |
26093 | SERVER_PATH_MSG="(default)" | 30146 | SERVER_PATH_MSG="(default)" |
26094 | 30147 | ||
26095 | # Check whether --with-default-path or --without-default-path was given. | 30148 | # Check whether --with-default-path was given. |
26096 | if test "${with_default_path+set}" = set; then | 30149 | if test "${with_default_path+set}" = set; then |
26097 | withval="$with_default_path" | 30150 | withval=$with_default_path; |
26098 | |||
26099 | if test "x$external_path_file" = "x/etc/login.conf" ; then | 30151 | if test "x$external_path_file" = "x/etc/login.conf" ; then |
26100 | { echo "$as_me:$LINENO: WARNING: | 30152 | { echo "$as_me:$LINENO: WARNING: |
26101 | --with-default-path=PATH has no effect on this system. | 30153 | --with-default-path=PATH has no effect on this system. |
@@ -26174,13 +30226,22 @@ main() | |||
26174 | 30226 | ||
26175 | _ACEOF | 30227 | _ACEOF |
26176 | rm -f conftest$ac_exeext | 30228 | rm -f conftest$ac_exeext |
26177 | if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | 30229 | if { (ac_try="$ac_link" |
26178 | (eval $ac_link) 2>&5 | 30230 | case "(($ac_try" in |
30231 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30232 | *) ac_try_echo=$ac_try;; | ||
30233 | esac | ||
30234 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30235 | (eval "$ac_link") 2>&5 | ||
26179 | ac_status=$? | 30236 | ac_status=$? |
26180 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30237 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26181 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' | 30238 | (exit $ac_status); } && { ac_try='./conftest$ac_exeext' |
26182 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30239 | { (case "(($ac_try" in |
26183 | (eval $ac_try) 2>&5 | 30240 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30241 | *) ac_try_echo=$ac_try;; | ||
30242 | esac | ||
30243 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30244 | (eval "$ac_try") 2>&5 | ||
26184 | ac_status=$? | 30245 | ac_status=$? |
26185 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30246 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26186 | (exit $ac_status); }; }; then | 30247 | (exit $ac_status); }; }; then |
@@ -26193,8 +30254,10 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
26193 | ( exit $ac_status ) | 30254 | ( exit $ac_status ) |
26194 | user_path="/usr/bin:/bin:/usr/sbin:/sbin" | 30255 | user_path="/usr/bin:/bin:/usr/sbin:/sbin" |
26195 | fi | 30256 | fi |
26196 | rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext | 30257 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
26197 | fi | 30258 | fi |
30259 | |||
30260 | |||
26198 | # make sure $bindir is in USER_PATH so scp will work | 30261 | # make sure $bindir is in USER_PATH so scp will work |
26199 | t_bindir=`eval echo ${bindir}` | 30262 | t_bindir=`eval echo ${bindir}` |
26200 | case $t_bindir in | 30263 | case $t_bindir in |
@@ -26208,13 +30271,14 @@ fi | |||
26208 | echo $user_path | grep "^$t_bindir" > /dev/null 2>&1 | 30271 | echo $user_path | grep "^$t_bindir" > /dev/null 2>&1 |
26209 | if test $? -ne 0 ; then | 30272 | if test $? -ne 0 ; then |
26210 | user_path=$user_path:$t_bindir | 30273 | user_path=$user_path:$t_bindir |
26211 | echo "$as_me:$LINENO: result: Adding $t_bindir to USER_PATH so scp will work" >&5 | 30274 | { echo "$as_me:$LINENO: result: Adding $t_bindir to USER_PATH so scp will work" >&5 |
26212 | echo "${ECHO_T}Adding $t_bindir to USER_PATH so scp will work" >&6 | 30275 | echo "${ECHO_T}Adding $t_bindir to USER_PATH so scp will work" >&6; } |
26213 | fi | 30276 | fi |
26214 | fi | 30277 | fi |
26215 | fi | 30278 | fi |
26216 | 30279 | ||
26217 | fi; | 30280 | fi |
30281 | |||
26218 | if test "x$external_path_file" != "x/etc/login.conf" ; then | 30282 | if test "x$external_path_file" != "x/etc/login.conf" ; then |
26219 | 30283 | ||
26220 | cat >>confdefs.h <<_ACEOF | 30284 | cat >>confdefs.h <<_ACEOF |
@@ -26226,10 +30290,9 @@ fi | |||
26226 | 30290 | ||
26227 | # Set superuser path separately to user path | 30291 | # Set superuser path separately to user path |
26228 | 30292 | ||
26229 | # Check whether --with-superuser-path or --without-superuser-path was given. | 30293 | # Check whether --with-superuser-path was given. |
26230 | if test "${with_superuser_path+set}" = set; then | 30294 | if test "${with_superuser_path+set}" = set; then |
26231 | withval="$with_superuser_path" | 30295 | withval=$with_superuser_path; |
26232 | |||
26233 | if test -n "$withval" && test "x$withval" != "xno" && \ | 30296 | if test -n "$withval" && test "x$withval" != "xno" && \ |
26234 | test "x${withval}" != "xyes"; then | 30297 | test "x${withval}" != "xyes"; then |
26235 | 30298 | ||
@@ -26241,20 +30304,20 @@ _ACEOF | |||
26241 | fi | 30304 | fi |
26242 | 30305 | ||
26243 | 30306 | ||
26244 | fi; | 30307 | fi |
26245 | 30308 | ||
26246 | 30309 | ||
26247 | echo "$as_me:$LINENO: checking if we need to convert IPv4 in IPv6-mapped addresses" >&5 | 30310 | |
26248 | echo $ECHO_N "checking if we need to convert IPv4 in IPv6-mapped addresses... $ECHO_C" >&6 | 30311 | { echo "$as_me:$LINENO: checking if we need to convert IPv4 in IPv6-mapped addresses" >&5 |
30312 | echo $ECHO_N "checking if we need to convert IPv4 in IPv6-mapped addresses... $ECHO_C" >&6; } | ||
26249 | IPV4_IN6_HACK_MSG="no" | 30313 | IPV4_IN6_HACK_MSG="no" |
26250 | 30314 | ||
26251 | # Check whether --with-4in6 or --without-4in6 was given. | 30315 | # Check whether --with-4in6 was given. |
26252 | if test "${with_4in6+set}" = set; then | 30316 | if test "${with_4in6+set}" = set; then |
26253 | withval="$with_4in6" | 30317 | withval=$with_4in6; |
26254 | |||
26255 | if test "x$withval" != "xno" ; then | 30318 | if test "x$withval" != "xno" ; then |
26256 | echo "$as_me:$LINENO: result: yes" >&5 | 30319 | { echo "$as_me:$LINENO: result: yes" >&5 |
26257 | echo "${ECHO_T}yes" >&6 | 30320 | echo "${ECHO_T}yes" >&6; } |
26258 | 30321 | ||
26259 | cat >>confdefs.h <<\_ACEOF | 30322 | cat >>confdefs.h <<\_ACEOF |
26260 | #define IPV4_IN_IPV6 1 | 30323 | #define IPV4_IN_IPV6 1 |
@@ -26262,35 +30325,35 @@ _ACEOF | |||
26262 | 30325 | ||
26263 | IPV4_IN6_HACK_MSG="yes" | 30326 | IPV4_IN6_HACK_MSG="yes" |
26264 | else | 30327 | else |
26265 | echo "$as_me:$LINENO: result: no" >&5 | 30328 | { echo "$as_me:$LINENO: result: no" >&5 |
26266 | echo "${ECHO_T}no" >&6 | 30329 | echo "${ECHO_T}no" >&6; } |
26267 | fi | 30330 | fi |
26268 | 30331 | ||
26269 | else | 30332 | else |
26270 | 30333 | ||
26271 | if test "x$inet6_default_4in6" = "xyes"; then | 30334 | if test "x$inet6_default_4in6" = "xyes"; then |
26272 | echo "$as_me:$LINENO: result: yes (default)" >&5 | 30335 | { echo "$as_me:$LINENO: result: yes (default)" >&5 |
26273 | echo "${ECHO_T}yes (default)" >&6 | 30336 | echo "${ECHO_T}yes (default)" >&6; } |
26274 | cat >>confdefs.h <<\_ACEOF | 30337 | cat >>confdefs.h <<\_ACEOF |
26275 | #define IPV4_IN_IPV6 1 | 30338 | #define IPV4_IN_IPV6 1 |
26276 | _ACEOF | 30339 | _ACEOF |
26277 | 30340 | ||
26278 | IPV4_IN6_HACK_MSG="yes" | 30341 | IPV4_IN6_HACK_MSG="yes" |
26279 | else | 30342 | else |
26280 | echo "$as_me:$LINENO: result: no (default)" >&5 | 30343 | { echo "$as_me:$LINENO: result: no (default)" >&5 |
26281 | echo "${ECHO_T}no (default)" >&6 | 30344 | echo "${ECHO_T}no (default)" >&6; } |
26282 | fi | 30345 | fi |
26283 | 30346 | ||
26284 | 30347 | ||
26285 | fi; | 30348 | fi |
30349 | |||
26286 | 30350 | ||
26287 | # Whether to enable BSD auth support | 30351 | # Whether to enable BSD auth support |
26288 | BSD_AUTH_MSG=no | 30352 | BSD_AUTH_MSG=no |
26289 | 30353 | ||
26290 | # Check whether --with-bsd-auth or --without-bsd-auth was given. | 30354 | # Check whether --with-bsd-auth was given. |
26291 | if test "${with_bsd_auth+set}" = set; then | 30355 | if test "${with_bsd_auth+set}" = set; then |
26292 | withval="$with_bsd_auth" | 30356 | withval=$with_bsd_auth; |
26293 | |||
26294 | if test "x$withval" != "xno" ; then | 30357 | if test "x$withval" != "xno" ; then |
26295 | 30358 | ||
26296 | cat >>confdefs.h <<\_ACEOF | 30359 | cat >>confdefs.h <<\_ACEOF |
@@ -26301,7 +30364,8 @@ _ACEOF | |||
26301 | fi | 30364 | fi |
26302 | 30365 | ||
26303 | 30366 | ||
26304 | fi; | 30367 | fi |
30368 | |||
26305 | 30369 | ||
26306 | # Where to place sshd.pid | 30370 | # Where to place sshd.pid |
26307 | piddir=/var/run | 30371 | piddir=/var/run |
@@ -26314,10 +30378,9 @@ if test ! -d $piddir ; then | |||
26314 | fi | 30378 | fi |
26315 | 30379 | ||
26316 | 30380 | ||
26317 | # Check whether --with-pid-dir or --without-pid-dir was given. | 30381 | # Check whether --with-pid-dir was given. |
26318 | if test "${with_pid_dir+set}" = set; then | 30382 | if test "${with_pid_dir+set}" = set; then |
26319 | withval="$with_pid_dir" | 30383 | withval=$with_pid_dir; |
26320 | |||
26321 | if test -n "$withval" && test "x$withval" != "xno" && \ | 30384 | if test -n "$withval" && test "x$withval" != "xno" && \ |
26322 | test "x${withval}" != "xyes"; then | 30385 | test "x${withval}" != "xyes"; then |
26323 | piddir=$withval | 30386 | piddir=$withval |
@@ -26328,7 +30391,8 @@ echo "$as_me: WARNING: ** no $piddir directory on this system **" >&2;} | |||
26328 | fi | 30391 | fi |
26329 | 30392 | ||
26330 | 30393 | ||
26331 | fi; | 30394 | fi |
30395 | |||
26332 | 30396 | ||
26333 | 30397 | ||
26334 | cat >>confdefs.h <<_ACEOF | 30398 | cat >>confdefs.h <<_ACEOF |
@@ -26337,10 +30401,9 @@ _ACEOF | |||
26337 | 30401 | ||
26338 | 30402 | ||
26339 | 30403 | ||
26340 | # Check whether --enable-lastlog or --disable-lastlog was given. | 30404 | # Check whether --enable-lastlog was given. |
26341 | if test "${enable_lastlog+set}" = set; then | 30405 | if test "${enable_lastlog+set}" = set; then |
26342 | enableval="$enable_lastlog" | 30406 | enableval=$enable_lastlog; |
26343 | |||
26344 | if test "x$enableval" = "xno" ; then | 30407 | if test "x$enableval" = "xno" ; then |
26345 | cat >>confdefs.h <<\_ACEOF | 30408 | cat >>confdefs.h <<\_ACEOF |
26346 | #define DISABLE_LASTLOG 1 | 30409 | #define DISABLE_LASTLOG 1 |
@@ -26349,11 +30412,11 @@ _ACEOF | |||
26349 | fi | 30412 | fi |
26350 | 30413 | ||
26351 | 30414 | ||
26352 | fi; | 30415 | fi |
26353 | # Check whether --enable-utmp or --disable-utmp was given. | ||
26354 | if test "${enable_utmp+set}" = set; then | ||
26355 | enableval="$enable_utmp" | ||
26356 | 30416 | ||
30417 | # Check whether --enable-utmp was given. | ||
30418 | if test "${enable_utmp+set}" = set; then | ||
30419 | enableval=$enable_utmp; | ||
26357 | if test "x$enableval" = "xno" ; then | 30420 | if test "x$enableval" = "xno" ; then |
26358 | cat >>confdefs.h <<\_ACEOF | 30421 | cat >>confdefs.h <<\_ACEOF |
26359 | #define DISABLE_UTMP 1 | 30422 | #define DISABLE_UTMP 1 |
@@ -26362,11 +30425,11 @@ _ACEOF | |||
26362 | fi | 30425 | fi |
26363 | 30426 | ||
26364 | 30427 | ||
26365 | fi; | 30428 | fi |
26366 | # Check whether --enable-utmpx or --disable-utmpx was given. | ||
26367 | if test "${enable_utmpx+set}" = set; then | ||
26368 | enableval="$enable_utmpx" | ||
26369 | 30429 | ||
30430 | # Check whether --enable-utmpx was given. | ||
30431 | if test "${enable_utmpx+set}" = set; then | ||
30432 | enableval=$enable_utmpx; | ||
26370 | if test "x$enableval" = "xno" ; then | 30433 | if test "x$enableval" = "xno" ; then |
26371 | 30434 | ||
26372 | cat >>confdefs.h <<\_ACEOF | 30435 | cat >>confdefs.h <<\_ACEOF |
@@ -26376,11 +30439,11 @@ _ACEOF | |||
26376 | fi | 30439 | fi |
26377 | 30440 | ||
26378 | 30441 | ||
26379 | fi; | 30442 | fi |
26380 | # Check whether --enable-wtmp or --disable-wtmp was given. | ||
26381 | if test "${enable_wtmp+set}" = set; then | ||
26382 | enableval="$enable_wtmp" | ||
26383 | 30443 | ||
30444 | # Check whether --enable-wtmp was given. | ||
30445 | if test "${enable_wtmp+set}" = set; then | ||
30446 | enableval=$enable_wtmp; | ||
26384 | if test "x$enableval" = "xno" ; then | 30447 | if test "x$enableval" = "xno" ; then |
26385 | cat >>confdefs.h <<\_ACEOF | 30448 | cat >>confdefs.h <<\_ACEOF |
26386 | #define DISABLE_WTMP 1 | 30449 | #define DISABLE_WTMP 1 |
@@ -26389,11 +30452,11 @@ _ACEOF | |||
26389 | fi | 30452 | fi |
26390 | 30453 | ||
26391 | 30454 | ||
26392 | fi; | 30455 | fi |
26393 | # Check whether --enable-wtmpx or --disable-wtmpx was given. | ||
26394 | if test "${enable_wtmpx+set}" = set; then | ||
26395 | enableval="$enable_wtmpx" | ||
26396 | 30456 | ||
30457 | # Check whether --enable-wtmpx was given. | ||
30458 | if test "${enable_wtmpx+set}" = set; then | ||
30459 | enableval=$enable_wtmpx; | ||
26397 | if test "x$enableval" = "xno" ; then | 30460 | if test "x$enableval" = "xno" ; then |
26398 | 30461 | ||
26399 | cat >>confdefs.h <<\_ACEOF | 30462 | cat >>confdefs.h <<\_ACEOF |
@@ -26403,11 +30466,11 @@ _ACEOF | |||
26403 | fi | 30466 | fi |
26404 | 30467 | ||
26405 | 30468 | ||
26406 | fi; | 30469 | fi |
26407 | # Check whether --enable-libutil or --disable-libutil was given. | ||
26408 | if test "${enable_libutil+set}" = set; then | ||
26409 | enableval="$enable_libutil" | ||
26410 | 30470 | ||
30471 | # Check whether --enable-libutil was given. | ||
30472 | if test "${enable_libutil+set}" = set; then | ||
30473 | enableval=$enable_libutil; | ||
26411 | if test "x$enableval" = "xno" ; then | 30474 | if test "x$enableval" = "xno" ; then |
26412 | cat >>confdefs.h <<\_ACEOF | 30475 | cat >>confdefs.h <<\_ACEOF |
26413 | #define DISABLE_LOGIN 1 | 30476 | #define DISABLE_LOGIN 1 |
@@ -26416,11 +30479,11 @@ _ACEOF | |||
26416 | fi | 30479 | fi |
26417 | 30480 | ||
26418 | 30481 | ||
26419 | fi; | 30482 | fi |
26420 | # Check whether --enable-pututline or --disable-pututline was given. | ||
26421 | if test "${enable_pututline+set}" = set; then | ||
26422 | enableval="$enable_pututline" | ||
26423 | 30483 | ||
30484 | # Check whether --enable-pututline was given. | ||
30485 | if test "${enable_pututline+set}" = set; then | ||
30486 | enableval=$enable_pututline; | ||
26424 | if test "x$enableval" = "xno" ; then | 30487 | if test "x$enableval" = "xno" ; then |
26425 | 30488 | ||
26426 | cat >>confdefs.h <<\_ACEOF | 30489 | cat >>confdefs.h <<\_ACEOF |
@@ -26430,11 +30493,11 @@ _ACEOF | |||
26430 | fi | 30493 | fi |
26431 | 30494 | ||
26432 | 30495 | ||
26433 | fi; | 30496 | fi |
26434 | # Check whether --enable-pututxline or --disable-pututxline was given. | ||
26435 | if test "${enable_pututxline+set}" = set; then | ||
26436 | enableval="$enable_pututxline" | ||
26437 | 30497 | ||
30498 | # Check whether --enable-pututxline was given. | ||
30499 | if test "${enable_pututxline+set}" = set; then | ||
30500 | enableval=$enable_pututxline; | ||
26438 | if test "x$enableval" = "xno" ; then | 30501 | if test "x$enableval" = "xno" ; then |
26439 | 30502 | ||
26440 | cat >>confdefs.h <<\_ACEOF | 30503 | cat >>confdefs.h <<\_ACEOF |
@@ -26444,12 +30507,12 @@ _ACEOF | |||
26444 | fi | 30507 | fi |
26445 | 30508 | ||
26446 | 30509 | ||
26447 | fi; | 30510 | fi |
26448 | 30511 | ||
26449 | # Check whether --with-lastlog or --without-lastlog was given. | ||
26450 | if test "${with_lastlog+set}" = set; then | ||
26451 | withval="$with_lastlog" | ||
26452 | 30512 | ||
30513 | # Check whether --with-lastlog was given. | ||
30514 | if test "${with_lastlog+set}" = set; then | ||
30515 | withval=$with_lastlog; | ||
26453 | if test "x$withval" = "xno" ; then | 30516 | if test "x$withval" = "xno" ; then |
26454 | cat >>confdefs.h <<\_ACEOF | 30517 | cat >>confdefs.h <<\_ACEOF |
26455 | #define DISABLE_LASTLOG 1 | 30518 | #define DISABLE_LASTLOG 1 |
@@ -26460,11 +30523,12 @@ _ACEOF | |||
26460 | fi | 30523 | fi |
26461 | 30524 | ||
26462 | 30525 | ||
26463 | fi; | 30526 | fi |
30527 | |||
26464 | 30528 | ||
26465 | 30529 | ||
26466 | echo "$as_me:$LINENO: checking if your system defines LASTLOG_FILE" >&5 | 30530 | { echo "$as_me:$LINENO: checking if your system defines LASTLOG_FILE" >&5 |
26467 | echo $ECHO_N "checking if your system defines LASTLOG_FILE... $ECHO_C" >&6 | 30531 | echo $ECHO_N "checking if your system defines LASTLOG_FILE... $ECHO_C" >&6; } |
26468 | cat >conftest.$ac_ext <<_ACEOF | 30532 | cat >conftest.$ac_ext <<_ACEOF |
26469 | /* confdefs.h. */ | 30533 | /* confdefs.h. */ |
26470 | _ACEOF | 30534 | _ACEOF |
@@ -26493,37 +30557,50 @@ main () | |||
26493 | } | 30557 | } |
26494 | _ACEOF | 30558 | _ACEOF |
26495 | rm -f conftest.$ac_objext | 30559 | rm -f conftest.$ac_objext |
26496 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 30560 | if { (ac_try="$ac_compile" |
26497 | (eval $ac_compile) 2>conftest.er1 | 30561 | case "(($ac_try" in |
30562 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30563 | *) ac_try_echo=$ac_try;; | ||
30564 | esac | ||
30565 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30566 | (eval "$ac_compile") 2>conftest.er1 | ||
26498 | ac_status=$? | 30567 | ac_status=$? |
26499 | grep -v '^ *+' conftest.er1 >conftest.err | 30568 | grep -v '^ *+' conftest.er1 >conftest.err |
26500 | rm -f conftest.er1 | 30569 | rm -f conftest.er1 |
26501 | cat conftest.err >&5 | 30570 | cat conftest.err >&5 |
26502 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30571 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26503 | (exit $ac_status); } && | 30572 | (exit $ac_status); } && |
26504 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 30573 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
26505 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30574 | { (case "(($ac_try" in |
26506 | (eval $ac_try) 2>&5 | 30575 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30576 | *) ac_try_echo=$ac_try;; | ||
30577 | esac | ||
30578 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30579 | (eval "$ac_try") 2>&5 | ||
26507 | ac_status=$? | 30580 | ac_status=$? |
26508 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30581 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26509 | (exit $ac_status); }; } && | 30582 | (exit $ac_status); }; } && |
26510 | { ac_try='test -s conftest.$ac_objext' | 30583 | { ac_try='test -s conftest.$ac_objext' |
26511 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30584 | { (case "(($ac_try" in |
26512 | (eval $ac_try) 2>&5 | 30585 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30586 | *) ac_try_echo=$ac_try;; | ||
30587 | esac | ||
30588 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30589 | (eval "$ac_try") 2>&5 | ||
26513 | ac_status=$? | 30590 | ac_status=$? |
26514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30591 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26515 | (exit $ac_status); }; }; then | 30592 | (exit $ac_status); }; }; then |
26516 | echo "$as_me:$LINENO: result: yes" >&5 | 30593 | { echo "$as_me:$LINENO: result: yes" >&5 |
26517 | echo "${ECHO_T}yes" >&6 | 30594 | echo "${ECHO_T}yes" >&6; } |
26518 | else | 30595 | else |
26519 | echo "$as_me: failed program was:" >&5 | 30596 | echo "$as_me: failed program was:" >&5 |
26520 | sed 's/^/| /' conftest.$ac_ext >&5 | 30597 | sed 's/^/| /' conftest.$ac_ext >&5 |
26521 | 30598 | ||
26522 | 30599 | ||
26523 | echo "$as_me:$LINENO: result: no" >&5 | 30600 | { echo "$as_me:$LINENO: result: no" >&5 |
26524 | echo "${ECHO_T}no" >&6 | 30601 | echo "${ECHO_T}no" >&6; } |
26525 | echo "$as_me:$LINENO: checking if your system defines _PATH_LASTLOG" >&5 | 30602 | { echo "$as_me:$LINENO: checking if your system defines _PATH_LASTLOG" >&5 |
26526 | echo $ECHO_N "checking if your system defines _PATH_LASTLOG... $ECHO_C" >&6 | 30603 | echo $ECHO_N "checking if your system defines _PATH_LASTLOG... $ECHO_C" >&6; } |
26527 | cat >conftest.$ac_ext <<_ACEOF | 30604 | cat >conftest.$ac_ext <<_ACEOF |
26528 | /* confdefs.h. */ | 30605 | /* confdefs.h. */ |
26529 | _ACEOF | 30606 | _ACEOF |
@@ -26549,43 +30626,58 @@ main () | |||
26549 | } | 30626 | } |
26550 | _ACEOF | 30627 | _ACEOF |
26551 | rm -f conftest.$ac_objext | 30628 | rm -f conftest.$ac_objext |
26552 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 30629 | if { (ac_try="$ac_compile" |
26553 | (eval $ac_compile) 2>conftest.er1 | 30630 | case "(($ac_try" in |
30631 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30632 | *) ac_try_echo=$ac_try;; | ||
30633 | esac | ||
30634 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30635 | (eval "$ac_compile") 2>conftest.er1 | ||
26554 | ac_status=$? | 30636 | ac_status=$? |
26555 | grep -v '^ *+' conftest.er1 >conftest.err | 30637 | grep -v '^ *+' conftest.er1 >conftest.err |
26556 | rm -f conftest.er1 | 30638 | rm -f conftest.er1 |
26557 | cat conftest.err >&5 | 30639 | cat conftest.err >&5 |
26558 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30640 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26559 | (exit $ac_status); } && | 30641 | (exit $ac_status); } && |
26560 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 30642 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
26561 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30643 | { (case "(($ac_try" in |
26562 | (eval $ac_try) 2>&5 | 30644 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30645 | *) ac_try_echo=$ac_try;; | ||
30646 | esac | ||
30647 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30648 | (eval "$ac_try") 2>&5 | ||
26563 | ac_status=$? | 30649 | ac_status=$? |
26564 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30650 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26565 | (exit $ac_status); }; } && | 30651 | (exit $ac_status); }; } && |
26566 | { ac_try='test -s conftest.$ac_objext' | 30652 | { ac_try='test -s conftest.$ac_objext' |
26567 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30653 | { (case "(($ac_try" in |
26568 | (eval $ac_try) 2>&5 | 30654 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30655 | *) ac_try_echo=$ac_try;; | ||
30656 | esac | ||
30657 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30658 | (eval "$ac_try") 2>&5 | ||
26569 | ac_status=$? | 30659 | ac_status=$? |
26570 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30660 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26571 | (exit $ac_status); }; }; then | 30661 | (exit $ac_status); }; }; then |
26572 | echo "$as_me:$LINENO: result: yes" >&5 | 30662 | { echo "$as_me:$LINENO: result: yes" >&5 |
26573 | echo "${ECHO_T}yes" >&6 | 30663 | echo "${ECHO_T}yes" >&6; } |
26574 | else | 30664 | else |
26575 | echo "$as_me: failed program was:" >&5 | 30665 | echo "$as_me: failed program was:" >&5 |
26576 | sed 's/^/| /' conftest.$ac_ext >&5 | 30666 | sed 's/^/| /' conftest.$ac_ext >&5 |
26577 | 30667 | ||
26578 | 30668 | ||
26579 | echo "$as_me:$LINENO: result: no" >&5 | 30669 | { echo "$as_me:$LINENO: result: no" >&5 |
26580 | echo "${ECHO_T}no" >&6 | 30670 | echo "${ECHO_T}no" >&6; } |
26581 | system_lastlog_path=no | 30671 | system_lastlog_path=no |
26582 | 30672 | ||
26583 | fi | 30673 | fi |
26584 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 30674 | |
30675 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
26585 | 30676 | ||
26586 | 30677 | ||
26587 | fi | 30678 | fi |
26588 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 30679 | |
30680 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
26589 | 30681 | ||
26590 | if test -z "$conf_lastlog_location"; then | 30682 | if test -z "$conf_lastlog_location"; then |
26591 | if test x"$system_lastlog_path" = x"no" ; then | 30683 | if test x"$system_lastlog_path" = x"no" ; then |
@@ -26609,8 +30701,8 @@ _ACEOF | |||
26609 | 30701 | ||
26610 | fi | 30702 | fi |
26611 | 30703 | ||
26612 | echo "$as_me:$LINENO: checking if your system defines UTMP_FILE" >&5 | 30704 | { echo "$as_me:$LINENO: checking if your system defines UTMP_FILE" >&5 |
26613 | echo $ECHO_N "checking if your system defines UTMP_FILE... $ECHO_C" >&6 | 30705 | echo $ECHO_N "checking if your system defines UTMP_FILE... $ECHO_C" >&6; } |
26614 | cat >conftest.$ac_ext <<_ACEOF | 30706 | cat >conftest.$ac_ext <<_ACEOF |
26615 | /* confdefs.h. */ | 30707 | /* confdefs.h. */ |
26616 | _ACEOF | 30708 | _ACEOF |
@@ -26633,38 +30725,52 @@ main () | |||
26633 | } | 30725 | } |
26634 | _ACEOF | 30726 | _ACEOF |
26635 | rm -f conftest.$ac_objext | 30727 | rm -f conftest.$ac_objext |
26636 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 30728 | if { (ac_try="$ac_compile" |
26637 | (eval $ac_compile) 2>conftest.er1 | 30729 | case "(($ac_try" in |
30730 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30731 | *) ac_try_echo=$ac_try;; | ||
30732 | esac | ||
30733 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30734 | (eval "$ac_compile") 2>conftest.er1 | ||
26638 | ac_status=$? | 30735 | ac_status=$? |
26639 | grep -v '^ *+' conftest.er1 >conftest.err | 30736 | grep -v '^ *+' conftest.er1 >conftest.err |
26640 | rm -f conftest.er1 | 30737 | rm -f conftest.er1 |
26641 | cat conftest.err >&5 | 30738 | cat conftest.err >&5 |
26642 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30739 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26643 | (exit $ac_status); } && | 30740 | (exit $ac_status); } && |
26644 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 30741 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
26645 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30742 | { (case "(($ac_try" in |
26646 | (eval $ac_try) 2>&5 | 30743 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30744 | *) ac_try_echo=$ac_try;; | ||
30745 | esac | ||
30746 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30747 | (eval "$ac_try") 2>&5 | ||
26647 | ac_status=$? | 30748 | ac_status=$? |
26648 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30749 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26649 | (exit $ac_status); }; } && | 30750 | (exit $ac_status); }; } && |
26650 | { ac_try='test -s conftest.$ac_objext' | 30751 | { ac_try='test -s conftest.$ac_objext' |
26651 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30752 | { (case "(($ac_try" in |
26652 | (eval $ac_try) 2>&5 | 30753 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30754 | *) ac_try_echo=$ac_try;; | ||
30755 | esac | ||
30756 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30757 | (eval "$ac_try") 2>&5 | ||
26653 | ac_status=$? | 30758 | ac_status=$? |
26654 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30759 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26655 | (exit $ac_status); }; }; then | 30760 | (exit $ac_status); }; }; then |
26656 | echo "$as_me:$LINENO: result: yes" >&5 | 30761 | { echo "$as_me:$LINENO: result: yes" >&5 |
26657 | echo "${ECHO_T}yes" >&6 | 30762 | echo "${ECHO_T}yes" >&6; } |
26658 | else | 30763 | else |
26659 | echo "$as_me: failed program was:" >&5 | 30764 | echo "$as_me: failed program was:" >&5 |
26660 | sed 's/^/| /' conftest.$ac_ext >&5 | 30765 | sed 's/^/| /' conftest.$ac_ext >&5 |
26661 | 30766 | ||
26662 | echo "$as_me:$LINENO: result: no" >&5 | 30767 | { echo "$as_me:$LINENO: result: no" >&5 |
26663 | echo "${ECHO_T}no" >&6 | 30768 | echo "${ECHO_T}no" >&6; } |
26664 | system_utmp_path=no | 30769 | system_utmp_path=no |
26665 | 30770 | ||
26666 | fi | 30771 | fi |
26667 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 30772 | |
30773 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
26668 | if test -z "$conf_utmp_location"; then | 30774 | if test -z "$conf_utmp_location"; then |
26669 | if test x"$system_utmp_path" = x"no" ; then | 30775 | if test x"$system_utmp_path" = x"no" ; then |
26670 | for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do | 30776 | for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do |
@@ -26688,8 +30794,8 @@ _ACEOF | |||
26688 | 30794 | ||
26689 | fi | 30795 | fi |
26690 | 30796 | ||
26691 | echo "$as_me:$LINENO: checking if your system defines WTMP_FILE" >&5 | 30797 | { echo "$as_me:$LINENO: checking if your system defines WTMP_FILE" >&5 |
26692 | echo $ECHO_N "checking if your system defines WTMP_FILE... $ECHO_C" >&6 | 30798 | echo $ECHO_N "checking if your system defines WTMP_FILE... $ECHO_C" >&6; } |
26693 | cat >conftest.$ac_ext <<_ACEOF | 30799 | cat >conftest.$ac_ext <<_ACEOF |
26694 | /* confdefs.h. */ | 30800 | /* confdefs.h. */ |
26695 | _ACEOF | 30801 | _ACEOF |
@@ -26712,38 +30818,52 @@ main () | |||
26712 | } | 30818 | } |
26713 | _ACEOF | 30819 | _ACEOF |
26714 | rm -f conftest.$ac_objext | 30820 | rm -f conftest.$ac_objext |
26715 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 30821 | if { (ac_try="$ac_compile" |
26716 | (eval $ac_compile) 2>conftest.er1 | 30822 | case "(($ac_try" in |
30823 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30824 | *) ac_try_echo=$ac_try;; | ||
30825 | esac | ||
30826 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30827 | (eval "$ac_compile") 2>conftest.er1 | ||
26717 | ac_status=$? | 30828 | ac_status=$? |
26718 | grep -v '^ *+' conftest.er1 >conftest.err | 30829 | grep -v '^ *+' conftest.er1 >conftest.err |
26719 | rm -f conftest.er1 | 30830 | rm -f conftest.er1 |
26720 | cat conftest.err >&5 | 30831 | cat conftest.err >&5 |
26721 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30832 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26722 | (exit $ac_status); } && | 30833 | (exit $ac_status); } && |
26723 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 30834 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
26724 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30835 | { (case "(($ac_try" in |
26725 | (eval $ac_try) 2>&5 | 30836 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30837 | *) ac_try_echo=$ac_try;; | ||
30838 | esac | ||
30839 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30840 | (eval "$ac_try") 2>&5 | ||
26726 | ac_status=$? | 30841 | ac_status=$? |
26727 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30842 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26728 | (exit $ac_status); }; } && | 30843 | (exit $ac_status); }; } && |
26729 | { ac_try='test -s conftest.$ac_objext' | 30844 | { ac_try='test -s conftest.$ac_objext' |
26730 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30845 | { (case "(($ac_try" in |
26731 | (eval $ac_try) 2>&5 | 30846 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30847 | *) ac_try_echo=$ac_try;; | ||
30848 | esac | ||
30849 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30850 | (eval "$ac_try") 2>&5 | ||
26732 | ac_status=$? | 30851 | ac_status=$? |
26733 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30852 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26734 | (exit $ac_status); }; }; then | 30853 | (exit $ac_status); }; }; then |
26735 | echo "$as_me:$LINENO: result: yes" >&5 | 30854 | { echo "$as_me:$LINENO: result: yes" >&5 |
26736 | echo "${ECHO_T}yes" >&6 | 30855 | echo "${ECHO_T}yes" >&6; } |
26737 | else | 30856 | else |
26738 | echo "$as_me: failed program was:" >&5 | 30857 | echo "$as_me: failed program was:" >&5 |
26739 | sed 's/^/| /' conftest.$ac_ext >&5 | 30858 | sed 's/^/| /' conftest.$ac_ext >&5 |
26740 | 30859 | ||
26741 | echo "$as_me:$LINENO: result: no" >&5 | 30860 | { echo "$as_me:$LINENO: result: no" >&5 |
26742 | echo "${ECHO_T}no" >&6 | 30861 | echo "${ECHO_T}no" >&6; } |
26743 | system_wtmp_path=no | 30862 | system_wtmp_path=no |
26744 | 30863 | ||
26745 | fi | 30864 | fi |
26746 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 30865 | |
30866 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
26747 | if test -z "$conf_wtmp_location"; then | 30867 | if test -z "$conf_wtmp_location"; then |
26748 | if test x"$system_wtmp_path" = x"no" ; then | 30868 | if test x"$system_wtmp_path" = x"no" ; then |
26749 | for f in /usr/adm/wtmp /var/log/wtmp; do | 30869 | for f in /usr/adm/wtmp /var/log/wtmp; do |
@@ -26768,8 +30888,8 @@ _ACEOF | |||
26768 | fi | 30888 | fi |
26769 | 30889 | ||
26770 | 30890 | ||
26771 | echo "$as_me:$LINENO: checking if your system defines UTMPX_FILE" >&5 | 30891 | { echo "$as_me:$LINENO: checking if your system defines UTMPX_FILE" >&5 |
26772 | echo $ECHO_N "checking if your system defines UTMPX_FILE... $ECHO_C" >&6 | 30892 | echo $ECHO_N "checking if your system defines UTMPX_FILE... $ECHO_C" >&6; } |
26773 | cat >conftest.$ac_ext <<_ACEOF | 30893 | cat >conftest.$ac_ext <<_ACEOF |
26774 | /* confdefs.h. */ | 30894 | /* confdefs.h. */ |
26775 | _ACEOF | 30895 | _ACEOF |
@@ -26795,38 +30915,52 @@ main () | |||
26795 | } | 30915 | } |
26796 | _ACEOF | 30916 | _ACEOF |
26797 | rm -f conftest.$ac_objext | 30917 | rm -f conftest.$ac_objext |
26798 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 30918 | if { (ac_try="$ac_compile" |
26799 | (eval $ac_compile) 2>conftest.er1 | 30919 | case "(($ac_try" in |
30920 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
30921 | *) ac_try_echo=$ac_try;; | ||
30922 | esac | ||
30923 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30924 | (eval "$ac_compile") 2>conftest.er1 | ||
26800 | ac_status=$? | 30925 | ac_status=$? |
26801 | grep -v '^ *+' conftest.er1 >conftest.err | 30926 | grep -v '^ *+' conftest.er1 >conftest.err |
26802 | rm -f conftest.er1 | 30927 | rm -f conftest.er1 |
26803 | cat conftest.err >&5 | 30928 | cat conftest.err >&5 |
26804 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30929 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26805 | (exit $ac_status); } && | 30930 | (exit $ac_status); } && |
26806 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 30931 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
26807 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30932 | { (case "(($ac_try" in |
26808 | (eval $ac_try) 2>&5 | 30933 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30934 | *) ac_try_echo=$ac_try;; | ||
30935 | esac | ||
30936 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30937 | (eval "$ac_try") 2>&5 | ||
26809 | ac_status=$? | 30938 | ac_status=$? |
26810 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30939 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26811 | (exit $ac_status); }; } && | 30940 | (exit $ac_status); }; } && |
26812 | { ac_try='test -s conftest.$ac_objext' | 30941 | { ac_try='test -s conftest.$ac_objext' |
26813 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 30942 | { (case "(($ac_try" in |
26814 | (eval $ac_try) 2>&5 | 30943 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
30944 | *) ac_try_echo=$ac_try;; | ||
30945 | esac | ||
30946 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
30947 | (eval "$ac_try") 2>&5 | ||
26815 | ac_status=$? | 30948 | ac_status=$? |
26816 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 30949 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26817 | (exit $ac_status); }; }; then | 30950 | (exit $ac_status); }; }; then |
26818 | echo "$as_me:$LINENO: result: yes" >&5 | 30951 | { echo "$as_me:$LINENO: result: yes" >&5 |
26819 | echo "${ECHO_T}yes" >&6 | 30952 | echo "${ECHO_T}yes" >&6; } |
26820 | else | 30953 | else |
26821 | echo "$as_me: failed program was:" >&5 | 30954 | echo "$as_me: failed program was:" >&5 |
26822 | sed 's/^/| /' conftest.$ac_ext >&5 | 30955 | sed 's/^/| /' conftest.$ac_ext >&5 |
26823 | 30956 | ||
26824 | echo "$as_me:$LINENO: result: no" >&5 | 30957 | { echo "$as_me:$LINENO: result: no" >&5 |
26825 | echo "${ECHO_T}no" >&6 | 30958 | echo "${ECHO_T}no" >&6; } |
26826 | system_utmpx_path=no | 30959 | system_utmpx_path=no |
26827 | 30960 | ||
26828 | fi | 30961 | fi |
26829 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 30962 | |
30963 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
26830 | if test -z "$conf_utmpx_location"; then | 30964 | if test -z "$conf_utmpx_location"; then |
26831 | if test x"$system_utmpx_path" = x"no" ; then | 30965 | if test x"$system_utmpx_path" = x"no" ; then |
26832 | cat >>confdefs.h <<\_ACEOF | 30966 | cat >>confdefs.h <<\_ACEOF |
@@ -26842,8 +30976,8 @@ _ACEOF | |||
26842 | 30976 | ||
26843 | fi | 30977 | fi |
26844 | 30978 | ||
26845 | echo "$as_me:$LINENO: checking if your system defines WTMPX_FILE" >&5 | 30979 | { echo "$as_me:$LINENO: checking if your system defines WTMPX_FILE" >&5 |
26846 | echo $ECHO_N "checking if your system defines WTMPX_FILE... $ECHO_C" >&6 | 30980 | echo $ECHO_N "checking if your system defines WTMPX_FILE... $ECHO_C" >&6; } |
26847 | cat >conftest.$ac_ext <<_ACEOF | 30981 | cat >conftest.$ac_ext <<_ACEOF |
26848 | /* confdefs.h. */ | 30982 | /* confdefs.h. */ |
26849 | _ACEOF | 30983 | _ACEOF |
@@ -26869,38 +31003,52 @@ main () | |||
26869 | } | 31003 | } |
26870 | _ACEOF | 31004 | _ACEOF |
26871 | rm -f conftest.$ac_objext | 31005 | rm -f conftest.$ac_objext |
26872 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 31006 | if { (ac_try="$ac_compile" |
26873 | (eval $ac_compile) 2>conftest.er1 | 31007 | case "(($ac_try" in |
31008 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
31009 | *) ac_try_echo=$ac_try;; | ||
31010 | esac | ||
31011 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
31012 | (eval "$ac_compile") 2>conftest.er1 | ||
26874 | ac_status=$? | 31013 | ac_status=$? |
26875 | grep -v '^ *+' conftest.er1 >conftest.err | 31014 | grep -v '^ *+' conftest.er1 >conftest.err |
26876 | rm -f conftest.er1 | 31015 | rm -f conftest.er1 |
26877 | cat conftest.err >&5 | 31016 | cat conftest.err >&5 |
26878 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 31017 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26879 | (exit $ac_status); } && | 31018 | (exit $ac_status); } && |
26880 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | 31019 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
26881 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 31020 | { (case "(($ac_try" in |
26882 | (eval $ac_try) 2>&5 | 31021 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
31022 | *) ac_try_echo=$ac_try;; | ||
31023 | esac | ||
31024 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
31025 | (eval "$ac_try") 2>&5 | ||
26883 | ac_status=$? | 31026 | ac_status=$? |
26884 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 31027 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26885 | (exit $ac_status); }; } && | 31028 | (exit $ac_status); }; } && |
26886 | { ac_try='test -s conftest.$ac_objext' | 31029 | { ac_try='test -s conftest.$ac_objext' |
26887 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 31030 | { (case "(($ac_try" in |
26888 | (eval $ac_try) 2>&5 | 31031 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; |
31032 | *) ac_try_echo=$ac_try;; | ||
31033 | esac | ||
31034 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
31035 | (eval "$ac_try") 2>&5 | ||
26889 | ac_status=$? | 31036 | ac_status=$? |
26890 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 31037 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
26891 | (exit $ac_status); }; }; then | 31038 | (exit $ac_status); }; }; then |
26892 | echo "$as_me:$LINENO: result: yes" >&5 | 31039 | { echo "$as_me:$LINENO: result: yes" >&5 |
26893 | echo "${ECHO_T}yes" >&6 | 31040 | echo "${ECHO_T}yes" >&6; } |
26894 | else | 31041 | else |
26895 | echo "$as_me: failed program was:" >&5 | 31042 | echo "$as_me: failed program was:" >&5 |
26896 | sed 's/^/| /' conftest.$ac_ext >&5 | 31043 | sed 's/^/| /' conftest.$ac_ext >&5 |
26897 | 31044 | ||
26898 | echo "$as_me:$LINENO: result: no" >&5 | 31045 | { echo "$as_me:$LINENO: result: no" >&5 |
26899 | echo "${ECHO_T}no" >&6 | 31046 | echo "${ECHO_T}no" >&6; } |
26900 | system_wtmpx_path=no | 31047 | system_wtmpx_path=no |
26901 | 31048 | ||
26902 | fi | 31049 | fi |
26903 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | 31050 | |
31051 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | ||
26904 | if test -z "$conf_wtmpx_location"; then | 31052 | if test -z "$conf_wtmpx_location"; then |
26905 | if test x"$system_wtmpx_path" = x"no" ; then | 31053 | if test x"$system_wtmpx_path" = x"no" ; then |
26906 | cat >>confdefs.h <<\_ACEOF | 31054 | cat >>confdefs.h <<\_ACEOF |
@@ -26933,7 +31081,7 @@ fi | |||
26933 | CFLAGS="$CFLAGS $werror_flags" | 31081 | CFLAGS="$CFLAGS $werror_flags" |
26934 | 31082 | ||
26935 | 31083 | ||
26936 | ac_config_files="$ac_config_files Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile scard/Makefile ssh_prng_cmds survey.sh" | 31084 | ac_config_files="$ac_config_files Makefile buildpkg.sh opensshd.init openbsd-compat/Makefile scard/Makefile ssh_prng_cmds survey.sh" |
26937 | 31085 | ||
26938 | cat >confcache <<\_ACEOF | 31086 | cat >confcache <<\_ACEOF |
26939 | # This file is a shell script that caches the results of configure | 31087 | # This file is a shell script that caches the results of configure |
@@ -26953,39 +31101,58 @@ _ACEOF | |||
26953 | 31101 | ||
26954 | # The following way of writing the cache mishandles newlines in values, | 31102 | # The following way of writing the cache mishandles newlines in values, |
26955 | # but we know of no workaround that is simple, portable, and efficient. | 31103 | # but we know of no workaround that is simple, portable, and efficient. |
26956 | # So, don't put newlines in cache variables' values. | 31104 | # So, we kill variables containing newlines. |
26957 | # Ultrix sh set writes to stderr and can't be redirected directly, | 31105 | # Ultrix sh set writes to stderr and can't be redirected directly, |
26958 | # and sets the high bit in the cache file unless we assign to the vars. | 31106 | # and sets the high bit in the cache file unless we assign to the vars. |
26959 | { | 31107 | ( |
31108 | for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do | ||
31109 | eval ac_val=\$$ac_var | ||
31110 | case $ac_val in #( | ||
31111 | *${as_nl}*) | ||
31112 | case $ac_var in #( | ||
31113 | *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 | ||
31114 | echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; | ||
31115 | esac | ||
31116 | case $ac_var in #( | ||
31117 | _ | IFS | as_nl) ;; #( | ||
31118 | *) $as_unset $ac_var ;; | ||
31119 | esac ;; | ||
31120 | esac | ||
31121 | done | ||
31122 | |||
26960 | (set) 2>&1 | | 31123 | (set) 2>&1 | |
26961 | case `(ac_space=' '; set | grep ac_space) 2>&1` in | 31124 | case $as_nl`(ac_space=' '; set) 2>&1` in #( |
26962 | *ac_space=\ *) | 31125 | *${as_nl}ac_space=\ *) |
26963 | # `set' does not quote correctly, so add quotes (double-quote | 31126 | # `set' does not quote correctly, so add quotes (double-quote |
26964 | # substitution turns \\\\ into \\, and sed turns \\ into \). | 31127 | # substitution turns \\\\ into \\, and sed turns \\ into \). |
26965 | sed -n \ | 31128 | sed -n \ |
26966 | "s/'/'\\\\''/g; | 31129 | "s/'/'\\\\''/g; |
26967 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" | 31130 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" |
26968 | ;; | 31131 | ;; #( |
26969 | *) | 31132 | *) |
26970 | # `set' quotes correctly as required by POSIX, so do not add quotes. | 31133 | # `set' quotes correctly as required by POSIX, so do not add quotes. |
26971 | sed -n \ | 31134 | sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" |
26972 | "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" | ||
26973 | ;; | 31135 | ;; |
26974 | esac; | 31136 | esac | |
26975 | } | | 31137 | sort |
31138 | ) | | ||
26976 | sed ' | 31139 | sed ' |
31140 | /^ac_cv_env_/b end | ||
26977 | t clear | 31141 | t clear |
26978 | : clear | 31142 | :clear |
26979 | s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ | 31143 | s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ |
26980 | t end | 31144 | t end |
26981 | /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ | 31145 | s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ |
26982 | : end' >>confcache | 31146 | :end' >>confcache |
26983 | if diff $cache_file confcache >/dev/null 2>&1; then :; else | 31147 | if diff "$cache_file" confcache >/dev/null 2>&1; then :; else |
26984 | if test -w $cache_file; then | 31148 | if test -w "$cache_file"; then |
26985 | test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" | 31149 | test "x$cache_file" != "x/dev/null" && |
31150 | { echo "$as_me:$LINENO: updating cache $cache_file" >&5 | ||
31151 | echo "$as_me: updating cache $cache_file" >&6;} | ||
26986 | cat confcache >$cache_file | 31152 | cat confcache >$cache_file |
26987 | else | 31153 | else |
26988 | echo "not updating unwritable cache $cache_file" | 31154 | { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 |
31155 | echo "$as_me: not updating unwritable cache $cache_file" >&6;} | ||
26989 | fi | 31156 | fi |
26990 | fi | 31157 | fi |
26991 | rm -f confcache | 31158 | rm -f confcache |
@@ -26994,32 +31161,18 @@ test "x$prefix" = xNONE && prefix=$ac_default_prefix | |||
26994 | # Let make expand exec_prefix. | 31161 | # Let make expand exec_prefix. |
26995 | test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' | 31162 | test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' |
26996 | 31163 | ||
26997 | # VPATH may cause trouble with some makes, so we remove $(srcdir), | ||
26998 | # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and | ||
26999 | # trailing colons and then remove the whole line if VPATH becomes empty | ||
27000 | # (actually we leave an empty line to preserve line numbers). | ||
27001 | if test "x$srcdir" = x.; then | ||
27002 | ac_vpsub='/^[ ]*VPATH[ ]*=/{ | ||
27003 | s/:*\$(srcdir):*/:/; | ||
27004 | s/:*\${srcdir}:*/:/; | ||
27005 | s/:*@srcdir@:*/:/; | ||
27006 | s/^\([^=]*=[ ]*\):*/\1/; | ||
27007 | s/:*$//; | ||
27008 | s/^[^=]*=[ ]*$//; | ||
27009 | }' | ||
27010 | fi | ||
27011 | |||
27012 | DEFS=-DHAVE_CONFIG_H | 31164 | DEFS=-DHAVE_CONFIG_H |
27013 | 31165 | ||
27014 | ac_libobjs= | 31166 | ac_libobjs= |
27015 | ac_ltlibobjs= | 31167 | ac_ltlibobjs= |
27016 | for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue | 31168 | for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue |
27017 | # 1. Remove the extension, and $U if already installed. | 31169 | # 1. Remove the extension, and $U if already installed. |
27018 | ac_i=`echo "$ac_i" | | 31170 | ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' |
27019 | sed 's/\$U\././;s/\.o$//;s/\.obj$//'` | 31171 | ac_i=`echo "$ac_i" | sed "$ac_script"` |
27020 | # 2. Add them. | 31172 | # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR |
27021 | ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" | 31173 | # will be set to the directory where LIBOBJS objects are built. |
27022 | ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' | 31174 | ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" |
31175 | ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' | ||
27023 | done | 31176 | done |
27024 | LIBOBJS=$ac_libobjs | 31177 | LIBOBJS=$ac_libobjs |
27025 | 31178 | ||
@@ -27057,11 +31210,35 @@ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then | |||
27057 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which | 31210 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which |
27058 | # is contrary to our usage. Disable this feature. | 31211 | # is contrary to our usage. Disable this feature. |
27059 | alias -g '${1+"$@"}'='"$@"' | 31212 | alias -g '${1+"$@"}'='"$@"' |
27060 | elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then | 31213 | setopt NO_GLOB_SUBST |
27061 | set -o posix | 31214 | else |
31215 | case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac | ||
27062 | fi | 31216 | fi |
31217 | BIN_SH=xpg4; export BIN_SH # for Tru64 | ||
27063 | DUALCASE=1; export DUALCASE # for MKS sh | 31218 | DUALCASE=1; export DUALCASE # for MKS sh |
27064 | 31219 | ||
31220 | |||
31221 | # PATH needs CR | ||
31222 | # Avoid depending upon Character Ranges. | ||
31223 | as_cr_letters='abcdefghijklmnopqrstuvwxyz' | ||
31224 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | ||
31225 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS | ||
31226 | as_cr_digits='0123456789' | ||
31227 | as_cr_alnum=$as_cr_Letters$as_cr_digits | ||
31228 | |||
31229 | # The user is always right. | ||
31230 | if test "${PATH_SEPARATOR+set}" != set; then | ||
31231 | echo "#! /bin/sh" >conf$$.sh | ||
31232 | echo "exit 0" >>conf$$.sh | ||
31233 | chmod +x conf$$.sh | ||
31234 | if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then | ||
31235 | PATH_SEPARATOR=';' | ||
31236 | else | ||
31237 | PATH_SEPARATOR=: | ||
31238 | fi | ||
31239 | rm -f conf$$.sh | ||
31240 | fi | ||
31241 | |||
27065 | # Support unset when possible. | 31242 | # Support unset when possible. |
27066 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then | 31243 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then |
27067 | as_unset=unset | 31244 | as_unset=unset |
@@ -27070,8 +31247,43 @@ else | |||
27070 | fi | 31247 | fi |
27071 | 31248 | ||
27072 | 31249 | ||
31250 | # IFS | ||
31251 | # We need space, tab and new line, in precisely that order. Quoting is | ||
31252 | # there to prevent editors from complaining about space-tab. | ||
31253 | # (If _AS_PATH_WALK were called with IFS unset, it would disable word | ||
31254 | # splitting by setting IFS to empty value.) | ||
31255 | as_nl=' | ||
31256 | ' | ||
31257 | IFS=" "" $as_nl" | ||
31258 | |||
31259 | # Find who we are. Look in the path if we contain no directory separator. | ||
31260 | case $0 in | ||
31261 | *[\\/]* ) as_myself=$0 ;; | ||
31262 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
31263 | for as_dir in $PATH | ||
31264 | do | ||
31265 | IFS=$as_save_IFS | ||
31266 | test -z "$as_dir" && as_dir=. | ||
31267 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | ||
31268 | done | ||
31269 | IFS=$as_save_IFS | ||
31270 | |||
31271 | ;; | ||
31272 | esac | ||
31273 | # We did not find ourselves, most probably we were run as `sh COMMAND' | ||
31274 | # in which case we are not to be found in the path. | ||
31275 | if test "x$as_myself" = x; then | ||
31276 | as_myself=$0 | ||
31277 | fi | ||
31278 | if test ! -f "$as_myself"; then | ||
31279 | echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 | ||
31280 | { (exit 1); exit 1; } | ||
31281 | fi | ||
31282 | |||
27073 | # Work around bugs in pre-3.0 UWIN ksh. | 31283 | # Work around bugs in pre-3.0 UWIN ksh. |
27074 | $as_unset ENV MAIL MAILPATH | 31284 | for as_var in ENV MAIL MAILPATH |
31285 | do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var | ||
31286 | done | ||
27075 | PS1='$ ' | 31287 | PS1='$ ' |
27076 | PS2='> ' | 31288 | PS2='> ' |
27077 | PS4='+ ' | 31289 | PS4='+ ' |
@@ -27085,18 +31297,19 @@ do | |||
27085 | if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then | 31297 | if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then |
27086 | eval $as_var=C; export $as_var | 31298 | eval $as_var=C; export $as_var |
27087 | else | 31299 | else |
27088 | $as_unset $as_var | 31300 | ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var |
27089 | fi | 31301 | fi |
27090 | done | 31302 | done |
27091 | 31303 | ||
27092 | # Required to use basename. | 31304 | # Required to use basename. |
27093 | if expr a : '\(a\)' >/dev/null 2>&1; then | 31305 | if expr a : '\(a\)' >/dev/null 2>&1 && |
31306 | test "X`expr 00001 : '.*\(...\)'`" = X001; then | ||
27094 | as_expr=expr | 31307 | as_expr=expr |
27095 | else | 31308 | else |
27096 | as_expr=false | 31309 | as_expr=false |
27097 | fi | 31310 | fi |
27098 | 31311 | ||
27099 | if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then | 31312 | if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then |
27100 | as_basename=basename | 31313 | as_basename=basename |
27101 | else | 31314 | else |
27102 | as_basename=false | 31315 | as_basename=false |
@@ -27104,159 +31317,120 @@ fi | |||
27104 | 31317 | ||
27105 | 31318 | ||
27106 | # Name of the executable. | 31319 | # Name of the executable. |
27107 | as_me=`$as_basename "$0" || | 31320 | as_me=`$as_basename -- "$0" || |
27108 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ | 31321 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ |
27109 | X"$0" : 'X\(//\)$' \| \ | 31322 | X"$0" : 'X\(//\)$' \| \ |
27110 | X"$0" : 'X\(/\)$' \| \ | 31323 | X"$0" : 'X\(/\)' \| . 2>/dev/null || |
27111 | . : '\(.\)' 2>/dev/null || | ||
27112 | echo X/"$0" | | 31324 | echo X/"$0" | |
27113 | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } | 31325 | sed '/^.*\/\([^/][^/]*\)\/*$/{ |
27114 | /^X\/\(\/\/\)$/{ s//\1/; q; } | 31326 | s//\1/ |
27115 | /^X\/\(\/\).*/{ s//\1/; q; } | 31327 | q |
27116 | s/.*/./; q'` | 31328 | } |
27117 | 31329 | /^X\/\(\/\/\)$/{ | |
27118 | 31330 | s//\1/ | |
27119 | # PATH needs CR, and LINENO needs CR and PATH. | 31331 | q |
27120 | # Avoid depending upon Character Ranges. | 31332 | } |
27121 | as_cr_letters='abcdefghijklmnopqrstuvwxyz' | 31333 | /^X\/\(\/\).*/{ |
27122 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | 31334 | s//\1/ |
27123 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS | 31335 | q |
27124 | as_cr_digits='0123456789' | 31336 | } |
27125 | as_cr_alnum=$as_cr_Letters$as_cr_digits | 31337 | s/.*/./; q'` |
27126 | 31338 | ||
27127 | # The user is always right. | 31339 | # CDPATH. |
27128 | if test "${PATH_SEPARATOR+set}" != set; then | 31340 | $as_unset CDPATH |
27129 | echo "#! /bin/sh" >conf$$.sh | ||
27130 | echo "exit 0" >>conf$$.sh | ||
27131 | chmod +x conf$$.sh | ||
27132 | if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then | ||
27133 | PATH_SEPARATOR=';' | ||
27134 | else | ||
27135 | PATH_SEPARATOR=: | ||
27136 | fi | ||
27137 | rm -f conf$$.sh | ||
27138 | fi | ||
27139 | 31341 | ||
27140 | 31342 | ||
27141 | as_lineno_1=$LINENO | ||
27142 | as_lineno_2=$LINENO | ||
27143 | as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` | ||
27144 | test "x$as_lineno_1" != "x$as_lineno_2" && | ||
27145 | test "x$as_lineno_3" = "x$as_lineno_2" || { | ||
27146 | # Find who we are. Look in the path if we contain no path at all | ||
27147 | # relative or not. | ||
27148 | case $0 in | ||
27149 | *[\\/]* ) as_myself=$0 ;; | ||
27150 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
27151 | for as_dir in $PATH | ||
27152 | do | ||
27153 | IFS=$as_save_IFS | ||
27154 | test -z "$as_dir" && as_dir=. | ||
27155 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | ||
27156 | done | ||
27157 | 31343 | ||
27158 | ;; | ||
27159 | esac | ||
27160 | # We did not find ourselves, most probably we were run as `sh COMMAND' | ||
27161 | # in which case we are not to be found in the path. | ||
27162 | if test "x$as_myself" = x; then | ||
27163 | as_myself=$0 | ||
27164 | fi | ||
27165 | if test ! -f "$as_myself"; then | ||
27166 | { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 | ||
27167 | echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} | ||
27168 | { (exit 1); exit 1; }; } | ||
27169 | fi | ||
27170 | case $CONFIG_SHELL in | ||
27171 | '') | ||
27172 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
27173 | for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH | ||
27174 | do | ||
27175 | IFS=$as_save_IFS | ||
27176 | test -z "$as_dir" && as_dir=. | ||
27177 | for as_base in sh bash ksh sh5; do | ||
27178 | case $as_dir in | ||
27179 | /*) | ||
27180 | if ("$as_dir/$as_base" -c ' | ||
27181 | as_lineno_1=$LINENO | 31344 | as_lineno_1=$LINENO |
27182 | as_lineno_2=$LINENO | 31345 | as_lineno_2=$LINENO |
27183 | as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` | ||
27184 | test "x$as_lineno_1" != "x$as_lineno_2" && | 31346 | test "x$as_lineno_1" != "x$as_lineno_2" && |
27185 | test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then | 31347 | test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { |
27186 | $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } | ||
27187 | $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } | ||
27188 | CONFIG_SHELL=$as_dir/$as_base | ||
27189 | export CONFIG_SHELL | ||
27190 | exec "$CONFIG_SHELL" "$0" ${1+"$@"} | ||
27191 | fi;; | ||
27192 | esac | ||
27193 | done | ||
27194 | done | ||
27195 | ;; | ||
27196 | esac | ||
27197 | 31348 | ||
27198 | # Create $as_me.lineno as a copy of $as_myself, but with $LINENO | 31349 | # Create $as_me.lineno as a copy of $as_myself, but with $LINENO |
27199 | # uniformly replaced by the line number. The first 'sed' inserts a | 31350 | # uniformly replaced by the line number. The first 'sed' inserts a |
27200 | # line-number line before each line; the second 'sed' does the real | 31351 | # line-number line after each line using $LINENO; the second 'sed' |
27201 | # work. The second script uses 'N' to pair each line-number line | 31352 | # does the real work. The second script uses 'N' to pair each |
27202 | # with the numbered line, and appends trailing '-' during | 31353 | # line-number line with the line containing $LINENO, and appends |
27203 | # substitution so that $LINENO is not a special case at line end. | 31354 | # trailing '-' during substitution so that $LINENO is not a special |
31355 | # case at line end. | ||
27204 | # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the | 31356 | # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the |
27205 | # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) | 31357 | # scripts with optimization help from Paolo Bonzini. Blame Lee |
27206 | sed '=' <$as_myself | | 31358 | # E. McMahon (1931-1989) for sed's syntax. :-) |
31359 | sed -n ' | ||
31360 | p | ||
31361 | /[$]LINENO/= | ||
31362 | ' <$as_myself | | ||
27207 | sed ' | 31363 | sed ' |
31364 | s/[$]LINENO.*/&-/ | ||
31365 | t lineno | ||
31366 | b | ||
31367 | :lineno | ||
27208 | N | 31368 | N |
27209 | s,$,-, | 31369 | :loop |
27210 | : loop | 31370 | s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ |
27211 | s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, | ||
27212 | t loop | 31371 | t loop |
27213 | s,-$,, | 31372 | s/-\n.*// |
27214 | s,^['$as_cr_digits']*\n,, | ||
27215 | ' >$as_me.lineno && | 31373 | ' >$as_me.lineno && |
27216 | chmod +x $as_me.lineno || | 31374 | chmod +x "$as_me.lineno" || |
27217 | { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 | 31375 | { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 |
27218 | echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} | ||
27219 | { (exit 1); exit 1; }; } | 31376 | { (exit 1); exit 1; }; } |
27220 | 31377 | ||
27221 | # Don't try to exec as it changes $[0], causing all sort of problems | 31378 | # Don't try to exec as it changes $[0], causing all sort of problems |
27222 | # (the dirname of $[0] is not the place where we might find the | 31379 | # (the dirname of $[0] is not the place where we might find the |
27223 | # original and so on. Autoconf is especially sensible to this). | 31380 | # original and so on. Autoconf is especially sensitive to this). |
27224 | . ./$as_me.lineno | 31381 | . "./$as_me.lineno" |
27225 | # Exit status is that of the last command. | 31382 | # Exit status is that of the last command. |
27226 | exit | 31383 | exit |
27227 | } | 31384 | } |
27228 | 31385 | ||
27229 | 31386 | ||
27230 | case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in | 31387 | if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then |
27231 | *c*,-n*) ECHO_N= ECHO_C=' | 31388 | as_dirname=dirname |
27232 | ' ECHO_T=' ' ;; | 31389 | else |
27233 | *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; | 31390 | as_dirname=false |
27234 | *) ECHO_N= ECHO_C='\c' ECHO_T= ;; | 31391 | fi |
31392 | |||
31393 | ECHO_C= ECHO_N= ECHO_T= | ||
31394 | case `echo -n x` in | ||
31395 | -n*) | ||
31396 | case `echo 'x\c'` in | ||
31397 | *c*) ECHO_T=' ';; # ECHO_T is single tab character. | ||
31398 | *) ECHO_C='\c';; | ||
31399 | esac;; | ||
31400 | *) | ||
31401 | ECHO_N='-n';; | ||
27235 | esac | 31402 | esac |
27236 | 31403 | ||
27237 | if expr a : '\(a\)' >/dev/null 2>&1; then | 31404 | if expr a : '\(a\)' >/dev/null 2>&1 && |
31405 | test "X`expr 00001 : '.*\(...\)'`" = X001; then | ||
27238 | as_expr=expr | 31406 | as_expr=expr |
27239 | else | 31407 | else |
27240 | as_expr=false | 31408 | as_expr=false |
27241 | fi | 31409 | fi |
27242 | 31410 | ||
27243 | rm -f conf$$ conf$$.exe conf$$.file | 31411 | rm -f conf$$ conf$$.exe conf$$.file |
31412 | if test -d conf$$.dir; then | ||
31413 | rm -f conf$$.dir/conf$$.file | ||
31414 | else | ||
31415 | rm -f conf$$.dir | ||
31416 | mkdir conf$$.dir | ||
31417 | fi | ||
27244 | echo >conf$$.file | 31418 | echo >conf$$.file |
27245 | if ln -s conf$$.file conf$$ 2>/dev/null; then | 31419 | if ln -s conf$$.file conf$$ 2>/dev/null; then |
27246 | # We could just check for DJGPP; but this test a) works b) is more generic | 31420 | as_ln_s='ln -s' |
27247 | # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). | 31421 | # ... but there are two gotchas: |
27248 | if test -f conf$$.exe; then | 31422 | # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. |
27249 | # Don't use ln at all; we don't have any links | 31423 | # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. |
31424 | # In both cases, we have to default to `cp -p'. | ||
31425 | ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || | ||
27250 | as_ln_s='cp -p' | 31426 | as_ln_s='cp -p' |
27251 | else | ||
27252 | as_ln_s='ln -s' | ||
27253 | fi | ||
27254 | elif ln conf$$.file conf$$ 2>/dev/null; then | 31427 | elif ln conf$$.file conf$$ 2>/dev/null; then |
27255 | as_ln_s=ln | 31428 | as_ln_s=ln |
27256 | else | 31429 | else |
27257 | as_ln_s='cp -p' | 31430 | as_ln_s='cp -p' |
27258 | fi | 31431 | fi |
27259 | rm -f conf$$ conf$$.exe conf$$.file | 31432 | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file |
31433 | rmdir conf$$.dir 2>/dev/null | ||
27260 | 31434 | ||
27261 | if mkdir -p . 2>/dev/null; then | 31435 | if mkdir -p . 2>/dev/null; then |
27262 | as_mkdir_p=: | 31436 | as_mkdir_p=: |
@@ -27265,7 +31439,19 @@ else | |||
27265 | as_mkdir_p=false | 31439 | as_mkdir_p=false |
27266 | fi | 31440 | fi |
27267 | 31441 | ||
27268 | as_executable_p="test -f" | 31442 | # Find out whether ``test -x'' works. Don't use a zero-byte file, as |
31443 | # systems may use methods other than mode bits to determine executability. | ||
31444 | cat >conf$$.file <<_ASEOF | ||
31445 | #! /bin/sh | ||
31446 | exit 0 | ||
31447 | _ASEOF | ||
31448 | chmod +x conf$$.file | ||
31449 | if test -x conf$$.file >/dev/null 2>&1; then | ||
31450 | as_executable_p="test -x" | ||
31451 | else | ||
31452 | as_executable_p=: | ||
31453 | fi | ||
31454 | rm -f conf$$.file | ||
27269 | 31455 | ||
27270 | # Sed expression to map a string onto a valid CPP name. | 31456 | # Sed expression to map a string onto a valid CPP name. |
27271 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | 31457 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" |
@@ -27274,31 +31460,14 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | |||
27274 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" | 31460 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" |
27275 | 31461 | ||
27276 | 31462 | ||
27277 | # IFS | ||
27278 | # We need space, tab and new line, in precisely that order. | ||
27279 | as_nl=' | ||
27280 | ' | ||
27281 | IFS=" $as_nl" | ||
27282 | |||
27283 | # CDPATH. | ||
27284 | $as_unset CDPATH | ||
27285 | |||
27286 | exec 6>&1 | 31463 | exec 6>&1 |
27287 | 31464 | ||
27288 | # Open the log real soon, to keep \$[0] and so on meaningful, and to | 31465 | # Save the log message, to keep $[0] and so on meaningful, and to |
27289 | # report actual input values of CONFIG_FILES etc. instead of their | 31466 | # report actual input values of CONFIG_FILES etc. instead of their |
27290 | # values after options handling. Logging --version etc. is OK. | 31467 | # values after options handling. |
27291 | exec 5>>config.log | 31468 | ac_log=" |
27292 | { | ||
27293 | echo | ||
27294 | sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX | ||
27295 | ## Running $as_me. ## | ||
27296 | _ASBOX | ||
27297 | } >&5 | ||
27298 | cat >&5 <<_CSEOF | ||
27299 | |||
27300 | This file was extended by OpenSSH $as_me Portable, which was | 31469 | This file was extended by OpenSSH $as_me Portable, which was |
27301 | generated by GNU Autoconf 2.59. Invocation command line was | 31470 | generated by GNU Autoconf 2.60a. Invocation command line was |
27302 | 31471 | ||
27303 | CONFIG_FILES = $CONFIG_FILES | 31472 | CONFIG_FILES = $CONFIG_FILES |
27304 | CONFIG_HEADERS = $CONFIG_HEADERS | 31473 | CONFIG_HEADERS = $CONFIG_HEADERS |
@@ -27306,30 +31475,19 @@ generated by GNU Autoconf 2.59. Invocation command line was | |||
27306 | CONFIG_COMMANDS = $CONFIG_COMMANDS | 31475 | CONFIG_COMMANDS = $CONFIG_COMMANDS |
27307 | $ $0 $@ | 31476 | $ $0 $@ |
27308 | 31477 | ||
27309 | _CSEOF | 31478 | on `(hostname || uname -n) 2>/dev/null | sed 1q` |
27310 | echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 | 31479 | " |
27311 | echo >&5 | 31480 | |
27312 | _ACEOF | 31481 | _ACEOF |
27313 | 31482 | ||
31483 | cat >>$CONFIG_STATUS <<_ACEOF | ||
27314 | # Files that config.status was made for. | 31484 | # Files that config.status was made for. |
27315 | if test -n "$ac_config_files"; then | 31485 | config_files="$ac_config_files" |
27316 | echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS | 31486 | config_headers="$ac_config_headers" |
27317 | fi | ||
27318 | 31487 | ||
27319 | if test -n "$ac_config_headers"; then | 31488 | _ACEOF |
27320 | echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS | ||
27321 | fi | ||
27322 | |||
27323 | if test -n "$ac_config_links"; then | ||
27324 | echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS | ||
27325 | fi | ||
27326 | |||
27327 | if test -n "$ac_config_commands"; then | ||
27328 | echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS | ||
27329 | fi | ||
27330 | 31489 | ||
27331 | cat >>$CONFIG_STATUS <<\_ACEOF | 31490 | cat >>$CONFIG_STATUS <<\_ACEOF |
27332 | |||
27333 | ac_cs_usage="\ | 31491 | ac_cs_usage="\ |
27334 | \`$as_me' instantiates files from templates according to the | 31492 | \`$as_me' instantiates files from templates according to the |
27335 | current configuration. | 31493 | current configuration. |
@@ -27337,7 +31495,7 @@ current configuration. | |||
27337 | Usage: $0 [OPTIONS] [FILE]... | 31495 | Usage: $0 [OPTIONS] [FILE]... |
27338 | 31496 | ||
27339 | -h, --help print this help, then exit | 31497 | -h, --help print this help, then exit |
27340 | -V, --version print version number, then exit | 31498 | -V, --version print version number and configuration settings, then exit |
27341 | -q, --quiet do not print progress messages | 31499 | -q, --quiet do not print progress messages |
27342 | -d, --debug don't remove temporary files | 31500 | -d, --debug don't remove temporary files |
27343 | --recheck update $as_me by reconfiguring in the same conditions | 31501 | --recheck update $as_me by reconfiguring in the same conditions |
@@ -27353,19 +31511,21 @@ Configuration headers: | |||
27353 | $config_headers | 31511 | $config_headers |
27354 | 31512 | ||
27355 | Report bugs to <bug-autoconf@gnu.org>." | 31513 | Report bugs to <bug-autoconf@gnu.org>." |
27356 | _ACEOF | ||
27357 | 31514 | ||
31515 | _ACEOF | ||
27358 | cat >>$CONFIG_STATUS <<_ACEOF | 31516 | cat >>$CONFIG_STATUS <<_ACEOF |
27359 | ac_cs_version="\\ | 31517 | ac_cs_version="\\ |
27360 | OpenSSH config.status Portable | 31518 | OpenSSH config.status Portable |
27361 | configured by $0, generated by GNU Autoconf 2.59, | 31519 | configured by $0, generated by GNU Autoconf 2.60a, |
27362 | with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" | 31520 | with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" |
27363 | 31521 | ||
27364 | Copyright (C) 2003 Free Software Foundation, Inc. | 31522 | Copyright (C) 2006 Free Software Foundation, Inc. |
27365 | This config.status script is free software; the Free Software Foundation | 31523 | This config.status script is free software; the Free Software Foundation |
27366 | gives unlimited permission to copy, distribute and modify it." | 31524 | gives unlimited permission to copy, distribute and modify it." |
27367 | srcdir=$srcdir | 31525 | |
27368 | INSTALL="$INSTALL" | 31526 | ac_pwd='$ac_pwd' |
31527 | srcdir='$srcdir' | ||
31528 | INSTALL='$INSTALL' | ||
27369 | _ACEOF | 31529 | _ACEOF |
27370 | 31530 | ||
27371 | cat >>$CONFIG_STATUS <<\_ACEOF | 31531 | cat >>$CONFIG_STATUS <<\_ACEOF |
@@ -27376,39 +31536,24 @@ while test $# != 0 | |||
27376 | do | 31536 | do |
27377 | case $1 in | 31537 | case $1 in |
27378 | --*=*) | 31538 | --*=*) |
27379 | ac_option=`expr "x$1" : 'x\([^=]*\)='` | 31539 | ac_option=`expr "X$1" : 'X\([^=]*\)='` |
27380 | ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` | 31540 | ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` |
27381 | ac_shift=: | 31541 | ac_shift=: |
27382 | ;; | 31542 | ;; |
27383 | -*) | 31543 | *) |
27384 | ac_option=$1 | 31544 | ac_option=$1 |
27385 | ac_optarg=$2 | 31545 | ac_optarg=$2 |
27386 | ac_shift=shift | 31546 | ac_shift=shift |
27387 | ;; | 31547 | ;; |
27388 | *) # This is not an option, so the user has probably given explicit | ||
27389 | # arguments. | ||
27390 | ac_option=$1 | ||
27391 | ac_need_defaults=false;; | ||
27392 | esac | 31548 | esac |
27393 | 31549 | ||
27394 | case $ac_option in | 31550 | case $ac_option in |
27395 | # Handling of the options. | 31551 | # Handling of the options. |
27396 | _ACEOF | ||
27397 | cat >>$CONFIG_STATUS <<\_ACEOF | ||
27398 | -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) | 31552 | -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) |
27399 | ac_cs_recheck=: ;; | 31553 | ac_cs_recheck=: ;; |
27400 | --version | --vers* | -V ) | 31554 | --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) |
27401 | echo "$ac_cs_version"; exit 0 ;; | 31555 | echo "$ac_cs_version"; exit ;; |
27402 | --he | --h) | 31556 | --debug | --debu | --deb | --de | --d | -d ) |
27403 | # Conflict between --help and --header | ||
27404 | { { echo "$as_me:$LINENO: error: ambiguous option: $1 | ||
27405 | Try \`$0 --help' for more information." >&5 | ||
27406 | echo "$as_me: error: ambiguous option: $1 | ||
27407 | Try \`$0 --help' for more information." >&2;} | ||
27408 | { (exit 1); exit 1; }; };; | ||
27409 | --help | --hel | -h ) | ||
27410 | echo "$ac_cs_usage"; exit 0 ;; | ||
27411 | --debug | --d* | -d ) | ||
27412 | debug=: ;; | 31557 | debug=: ;; |
27413 | --file | --fil | --fi | --f ) | 31558 | --file | --fil | --fi | --f ) |
27414 | $ac_shift | 31559 | $ac_shift |
@@ -27418,18 +31563,24 @@ Try \`$0 --help' for more information." >&2;} | |||
27418 | $ac_shift | 31563 | $ac_shift |
27419 | CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" | 31564 | CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" |
27420 | ac_need_defaults=false;; | 31565 | ac_need_defaults=false;; |
31566 | --he | --h) | ||
31567 | # Conflict between --help and --header | ||
31568 | { echo "$as_me: error: ambiguous option: $1 | ||
31569 | Try \`$0 --help' for more information." >&2 | ||
31570 | { (exit 1); exit 1; }; };; | ||
31571 | --help | --hel | -h ) | ||
31572 | echo "$ac_cs_usage"; exit ;; | ||
27421 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | 31573 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ |
27422 | | -silent | --silent | --silen | --sile | --sil | --si | --s) | 31574 | | -silent | --silent | --silen | --sile | --sil | --si | --s) |
27423 | ac_cs_silent=: ;; | 31575 | ac_cs_silent=: ;; |
27424 | 31576 | ||
27425 | # This is an error. | 31577 | # This is an error. |
27426 | -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 | 31578 | -*) { echo "$as_me: error: unrecognized option: $1 |
27427 | Try \`$0 --help' for more information." >&5 | 31579 | Try \`$0 --help' for more information." >&2 |
27428 | echo "$as_me: error: unrecognized option: $1 | ||
27429 | Try \`$0 --help' for more information." >&2;} | ||
27430 | { (exit 1); exit 1; }; } ;; | 31580 | { (exit 1); exit 1; }; } ;; |
27431 | 31581 | ||
27432 | *) ac_config_targets="$ac_config_targets $1" ;; | 31582 | *) ac_config_targets="$ac_config_targets $1" |
31583 | ac_need_defaults=false ;; | ||
27433 | 31584 | ||
27434 | esac | 31585 | esac |
27435 | shift | 31586 | shift |
@@ -27445,35 +31596,49 @@ fi | |||
27445 | _ACEOF | 31596 | _ACEOF |
27446 | cat >>$CONFIG_STATUS <<_ACEOF | 31597 | cat >>$CONFIG_STATUS <<_ACEOF |
27447 | if \$ac_cs_recheck; then | 31598 | if \$ac_cs_recheck; then |
27448 | echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 | 31599 | echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 |
27449 | exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion | 31600 | CONFIG_SHELL=$SHELL |
31601 | export CONFIG_SHELL | ||
31602 | exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion | ||
27450 | fi | 31603 | fi |
27451 | 31604 | ||
27452 | _ACEOF | 31605 | _ACEOF |
31606 | cat >>$CONFIG_STATUS <<\_ACEOF | ||
31607 | exec 5>>config.log | ||
31608 | { | ||
31609 | echo | ||
31610 | sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX | ||
31611 | ## Running $as_me. ## | ||
31612 | _ASBOX | ||
31613 | echo "$ac_log" | ||
31614 | } >&5 | ||
27453 | 31615 | ||
27454 | 31616 | _ACEOF | |
27455 | 31617 | cat >>$CONFIG_STATUS <<_ACEOF | |
27456 | 31618 | _ACEOF | |
27457 | 31619 | ||
27458 | cat >>$CONFIG_STATUS <<\_ACEOF | 31620 | cat >>$CONFIG_STATUS <<\_ACEOF |
31621 | |||
31622 | # Handling of arguments. | ||
27459 | for ac_config_target in $ac_config_targets | 31623 | for ac_config_target in $ac_config_targets |
27460 | do | 31624 | do |
27461 | case "$ac_config_target" in | 31625 | case $ac_config_target in |
27462 | # Handling of arguments. | 31626 | "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; |
27463 | "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; | 31627 | "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; |
27464 | "buildpkg.sh" ) CONFIG_FILES="$CONFIG_FILES buildpkg.sh" ;; | 31628 | "buildpkg.sh") CONFIG_FILES="$CONFIG_FILES buildpkg.sh" ;; |
27465 | "opensshd.init" ) CONFIG_FILES="$CONFIG_FILES opensshd.init" ;; | 31629 | "opensshd.init") CONFIG_FILES="$CONFIG_FILES opensshd.init" ;; |
27466 | "openbsd-compat/Makefile" ) CONFIG_FILES="$CONFIG_FILES openbsd-compat/Makefile" ;; | 31630 | "openbsd-compat/Makefile") CONFIG_FILES="$CONFIG_FILES openbsd-compat/Makefile" ;; |
27467 | "scard/Makefile" ) CONFIG_FILES="$CONFIG_FILES scard/Makefile" ;; | 31631 | "scard/Makefile") CONFIG_FILES="$CONFIG_FILES scard/Makefile" ;; |
27468 | "ssh_prng_cmds" ) CONFIG_FILES="$CONFIG_FILES ssh_prng_cmds" ;; | 31632 | "ssh_prng_cmds") CONFIG_FILES="$CONFIG_FILES ssh_prng_cmds" ;; |
27469 | "survey.sh" ) CONFIG_FILES="$CONFIG_FILES survey.sh" ;; | 31633 | "survey.sh") CONFIG_FILES="$CONFIG_FILES survey.sh" ;; |
27470 | "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; | 31634 | |
27471 | *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 | 31635 | *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 |
27472 | echo "$as_me: error: invalid argument: $ac_config_target" >&2;} | 31636 | echo "$as_me: error: invalid argument: $ac_config_target" >&2;} |
27473 | { (exit 1); exit 1; }; };; | 31637 | { (exit 1); exit 1; }; };; |
27474 | esac | 31638 | esac |
27475 | done | 31639 | done |
27476 | 31640 | ||
31641 | |||
27477 | # If the user did not use the arguments to specify the items to instantiate, | 31642 | # If the user did not use the arguments to specify the items to instantiate, |
27478 | # then the envvar interface is used. Set only those that are not. | 31643 | # then the envvar interface is used. Set only those that are not. |
27479 | # We use the long form for the default assignment because of an extremely | 31644 | # We use the long form for the default assignment because of an extremely |
@@ -27484,611 +31649,604 @@ if $ac_need_defaults; then | |||
27484 | fi | 31649 | fi |
27485 | 31650 | ||
27486 | # Have a temporary directory for convenience. Make it in the build tree | 31651 | # Have a temporary directory for convenience. Make it in the build tree |
27487 | # simply because there is no reason to put it here, and in addition, | 31652 | # simply because there is no reason against having it here, and in addition, |
27488 | # creating and moving files from /tmp can sometimes cause problems. | 31653 | # creating and moving files from /tmp can sometimes cause problems. |
27489 | # Create a temporary directory, and hook for its removal unless debugging. | 31654 | # Hook for its removal unless debugging. |
31655 | # Note that there is a small window in which the directory will not be cleaned: | ||
31656 | # after its creation but before its name has been assigned to `$tmp'. | ||
27490 | $debug || | 31657 | $debug || |
27491 | { | 31658 | { |
27492 | trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 | 31659 | tmp= |
31660 | trap 'exit_status=$? | ||
31661 | { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status | ||
31662 | ' 0 | ||
27493 | trap '{ (exit 1); exit 1; }' 1 2 13 15 | 31663 | trap '{ (exit 1); exit 1; }' 1 2 13 15 |
27494 | } | 31664 | } |
27495 | |||
27496 | # Create a (secure) tmp directory for tmp files. | 31665 | # Create a (secure) tmp directory for tmp files. |
27497 | 31666 | ||
27498 | { | 31667 | { |
27499 | tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && | 31668 | tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && |
27500 | test -n "$tmp" && test -d "$tmp" | 31669 | test -n "$tmp" && test -d "$tmp" |
27501 | } || | 31670 | } || |
27502 | { | 31671 | { |
27503 | tmp=./confstat$$-$RANDOM | 31672 | tmp=./conf$$-$RANDOM |
27504 | (umask 077 && mkdir $tmp) | 31673 | (umask 077 && mkdir "$tmp") |
27505 | } || | 31674 | } || |
27506 | { | 31675 | { |
27507 | echo "$me: cannot create a temporary directory in ." >&2 | 31676 | echo "$me: cannot create a temporary directory in ." >&2 |
27508 | { (exit 1); exit 1; } | 31677 | { (exit 1); exit 1; } |
27509 | } | 31678 | } |
27510 | 31679 | ||
27511 | _ACEOF | ||
27512 | |||
27513 | cat >>$CONFIG_STATUS <<_ACEOF | ||
27514 | |||
27515 | # | 31680 | # |
27516 | # CONFIG_FILES section. | 31681 | # Set up the sed scripts for CONFIG_FILES section. |
27517 | # | 31682 | # |
27518 | 31683 | ||
27519 | # No need to generate the scripts if there are no CONFIG_FILES. | 31684 | # No need to generate the scripts if there are no CONFIG_FILES. |
27520 | # This happens for instance when ./config.status config.h | 31685 | # This happens for instance when ./config.status config.h |
27521 | if test -n "\$CONFIG_FILES"; then | 31686 | if test -n "$CONFIG_FILES"; then |
27522 | # Protect against being on the right side of a sed subst in config.status. | 31687 | |
27523 | sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; | 31688 | _ACEOF |
27524 | s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF | 31689 | |
27525 | s,@SHELL@,$SHELL,;t t | 31690 | |
27526 | s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t | 31691 | |
27527 | s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t | 31692 | ac_delim='%!_!# ' |
27528 | s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t | 31693 | for ac_last_try in false false false false false :; do |
27529 | s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t | 31694 | cat >conf$$subs.sed <<_ACEOF |
27530 | s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t | 31695 | SHELL!$SHELL$ac_delim |
27531 | s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t | 31696 | PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim |
27532 | s,@exec_prefix@,$exec_prefix,;t t | 31697 | PACKAGE_NAME!$PACKAGE_NAME$ac_delim |
27533 | s,@prefix@,$prefix,;t t | 31698 | PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim |
27534 | s,@program_transform_name@,$program_transform_name,;t t | 31699 | PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim |
27535 | s,@bindir@,$bindir,;t t | 31700 | PACKAGE_STRING!$PACKAGE_STRING$ac_delim |
27536 | s,@sbindir@,$sbindir,;t t | 31701 | PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim |
27537 | s,@libexecdir@,$libexecdir,;t t | 31702 | exec_prefix!$exec_prefix$ac_delim |
27538 | s,@datadir@,$datadir,;t t | 31703 | prefix!$prefix$ac_delim |
27539 | s,@sysconfdir@,$sysconfdir,;t t | 31704 | program_transform_name!$program_transform_name$ac_delim |
27540 | s,@sharedstatedir@,$sharedstatedir,;t t | 31705 | bindir!$bindir$ac_delim |
27541 | s,@localstatedir@,$localstatedir,;t t | 31706 | sbindir!$sbindir$ac_delim |
27542 | s,@libdir@,$libdir,;t t | 31707 | libexecdir!$libexecdir$ac_delim |
27543 | s,@includedir@,$includedir,;t t | 31708 | datarootdir!$datarootdir$ac_delim |
27544 | s,@oldincludedir@,$oldincludedir,;t t | 31709 | datadir!$datadir$ac_delim |
27545 | s,@infodir@,$infodir,;t t | 31710 | sysconfdir!$sysconfdir$ac_delim |
27546 | s,@mandir@,$mandir,;t t | 31711 | sharedstatedir!$sharedstatedir$ac_delim |
27547 | s,@build_alias@,$build_alias,;t t | 31712 | localstatedir!$localstatedir$ac_delim |
27548 | s,@host_alias@,$host_alias,;t t | 31713 | includedir!$includedir$ac_delim |
27549 | s,@target_alias@,$target_alias,;t t | 31714 | oldincludedir!$oldincludedir$ac_delim |
27550 | s,@DEFS@,$DEFS,;t t | 31715 | docdir!$docdir$ac_delim |
27551 | s,@ECHO_C@,$ECHO_C,;t t | 31716 | infodir!$infodir$ac_delim |
27552 | s,@ECHO_N@,$ECHO_N,;t t | 31717 | htmldir!$htmldir$ac_delim |
27553 | s,@ECHO_T@,$ECHO_T,;t t | 31718 | dvidir!$dvidir$ac_delim |
27554 | s,@LIBS@,$LIBS,;t t | 31719 | pdfdir!$pdfdir$ac_delim |
27555 | s,@CC@,$CC,;t t | 31720 | psdir!$psdir$ac_delim |
27556 | s,@CFLAGS@,$CFLAGS,;t t | 31721 | libdir!$libdir$ac_delim |
27557 | s,@LDFLAGS@,$LDFLAGS,;t t | 31722 | localedir!$localedir$ac_delim |
27558 | s,@CPPFLAGS@,$CPPFLAGS,;t t | 31723 | mandir!$mandir$ac_delim |
27559 | s,@ac_ct_CC@,$ac_ct_CC,;t t | 31724 | DEFS!$DEFS$ac_delim |
27560 | s,@EXEEXT@,$EXEEXT,;t t | 31725 | ECHO_C!$ECHO_C$ac_delim |
27561 | s,@OBJEXT@,$OBJEXT,;t t | 31726 | ECHO_N!$ECHO_N$ac_delim |
27562 | s,@build@,$build,;t t | 31727 | ECHO_T!$ECHO_T$ac_delim |
27563 | s,@build_cpu@,$build_cpu,;t t | 31728 | LIBS!$LIBS$ac_delim |
27564 | s,@build_vendor@,$build_vendor,;t t | 31729 | build_alias!$build_alias$ac_delim |
27565 | s,@build_os@,$build_os,;t t | 31730 | host_alias!$host_alias$ac_delim |
27566 | s,@host@,$host,;t t | 31731 | target_alias!$target_alias$ac_delim |
27567 | s,@host_cpu@,$host_cpu,;t t | 31732 | CC!$CC$ac_delim |
27568 | s,@host_vendor@,$host_vendor,;t t | 31733 | CFLAGS!$CFLAGS$ac_delim |
27569 | s,@host_os@,$host_os,;t t | 31734 | LDFLAGS!$LDFLAGS$ac_delim |
27570 | s,@AWK@,$AWK,;t t | 31735 | CPPFLAGS!$CPPFLAGS$ac_delim |
27571 | s,@CPP@,$CPP,;t t | 31736 | ac_ct_CC!$ac_ct_CC$ac_delim |
27572 | s,@RANLIB@,$RANLIB,;t t | 31737 | EXEEXT!$EXEEXT$ac_delim |
27573 | s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t | 31738 | OBJEXT!$OBJEXT$ac_delim |
27574 | s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t | 31739 | build!$build$ac_delim |
27575 | s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t | 31740 | build_cpu!$build_cpu$ac_delim |
27576 | s,@INSTALL_DATA@,$INSTALL_DATA,;t t | 31741 | build_vendor!$build_vendor$ac_delim |
27577 | s,@EGREP@,$EGREP,;t t | 31742 | build_os!$build_os$ac_delim |
27578 | s,@AR@,$AR,;t t | 31743 | host!$host$ac_delim |
27579 | s,@CAT@,$CAT,;t t | 31744 | host_cpu!$host_cpu$ac_delim |
27580 | s,@KILL@,$KILL,;t t | 31745 | host_vendor!$host_vendor$ac_delim |
27581 | s,@PERL@,$PERL,;t t | 31746 | host_os!$host_os$ac_delim |
27582 | s,@SED@,$SED,;t t | 31747 | CPP!$CPP$ac_delim |
27583 | s,@ENT@,$ENT,;t t | 31748 | GREP!$GREP$ac_delim |
27584 | s,@TEST_MINUS_S_SH@,$TEST_MINUS_S_SH,;t t | 31749 | EGREP!$EGREP$ac_delim |
27585 | s,@SH@,$SH,;t t | 31750 | AWK!$AWK$ac_delim |
27586 | s,@TEST_SHELL@,$TEST_SHELL,;t t | 31751 | RANLIB!$RANLIB$ac_delim |
27587 | s,@PATH_GROUPADD_PROG@,$PATH_GROUPADD_PROG,;t t | 31752 | INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim |
27588 | s,@PATH_USERADD_PROG@,$PATH_USERADD_PROG,;t t | 31753 | INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim |
27589 | s,@MAKE_PACKAGE_SUPPORTED@,$MAKE_PACKAGE_SUPPORTED,;t t | 31754 | INSTALL_DATA!$INSTALL_DATA$ac_delim |
27590 | s,@STARTUP_SCRIPT_SHELL@,$STARTUP_SCRIPT_SHELL,;t t | 31755 | AR!$AR$ac_delim |
27591 | s,@LOGIN_PROGRAM_FALLBACK@,$LOGIN_PROGRAM_FALLBACK,;t t | 31756 | CAT!$CAT$ac_delim |
27592 | s,@PATH_PASSWD_PROG@,$PATH_PASSWD_PROG,;t t | 31757 | KILL!$KILL$ac_delim |
27593 | s,@LD@,$LD,;t t | 31758 | PERL!$PERL$ac_delim |
27594 | s,@LIBWRAP@,$LIBWRAP,;t t | 31759 | SED!$SED$ac_delim |
27595 | s,@LIBEDIT@,$LIBEDIT,;t t | 31760 | ENT!$ENT$ac_delim |
27596 | s,@LIBPAM@,$LIBPAM,;t t | 31761 | TEST_MINUS_S_SH!$TEST_MINUS_S_SH$ac_delim |
27597 | s,@INSTALL_SSH_RAND_HELPER@,$INSTALL_SSH_RAND_HELPER,;t t | 31762 | SH!$SH$ac_delim |
27598 | s,@SSH_PRIVSEP_USER@,$SSH_PRIVSEP_USER,;t t | 31763 | TEST_SHELL!$TEST_SHELL$ac_delim |
27599 | s,@PROG_LS@,$PROG_LS,;t t | 31764 | PATH_GROUPADD_PROG!$PATH_GROUPADD_PROG$ac_delim |
27600 | s,@PROG_NETSTAT@,$PROG_NETSTAT,;t t | 31765 | PATH_USERADD_PROG!$PATH_USERADD_PROG$ac_delim |
27601 | s,@PROG_ARP@,$PROG_ARP,;t t | 31766 | MAKE_PACKAGE_SUPPORTED!$MAKE_PACKAGE_SUPPORTED$ac_delim |
27602 | s,@PROG_IFCONFIG@,$PROG_IFCONFIG,;t t | 31767 | STARTUP_SCRIPT_SHELL!$STARTUP_SCRIPT_SHELL$ac_delim |
27603 | s,@PROG_JSTAT@,$PROG_JSTAT,;t t | 31768 | LOGIN_PROGRAM_FALLBACK!$LOGIN_PROGRAM_FALLBACK$ac_delim |
27604 | s,@PROG_PS@,$PROG_PS,;t t | 31769 | PATH_PASSWD_PROG!$PATH_PASSWD_PROG$ac_delim |
27605 | s,@PROG_SAR@,$PROG_SAR,;t t | 31770 | LD!$LD$ac_delim |
27606 | s,@PROG_W@,$PROG_W,;t t | 31771 | LIBWRAP!$LIBWRAP$ac_delim |
27607 | s,@PROG_WHO@,$PROG_WHO,;t t | 31772 | LIBEDIT!$LIBEDIT$ac_delim |
27608 | s,@PROG_LAST@,$PROG_LAST,;t t | 31773 | LIBPAM!$LIBPAM$ac_delim |
27609 | s,@PROG_LASTLOG@,$PROG_LASTLOG,;t t | 31774 | INSTALL_SSH_RAND_HELPER!$INSTALL_SSH_RAND_HELPER$ac_delim |
27610 | s,@PROG_DF@,$PROG_DF,;t t | 31775 | SSH_PRIVSEP_USER!$SSH_PRIVSEP_USER$ac_delim |
27611 | s,@PROG_VMSTAT@,$PROG_VMSTAT,;t t | 31776 | PROG_LS!$PROG_LS$ac_delim |
27612 | s,@PROG_UPTIME@,$PROG_UPTIME,;t t | 31777 | PROG_NETSTAT!$PROG_NETSTAT$ac_delim |
27613 | s,@PROG_IPCS@,$PROG_IPCS,;t t | 31778 | PROG_ARP!$PROG_ARP$ac_delim |
27614 | s,@PROG_TAIL@,$PROG_TAIL,;t t | 31779 | PROG_IFCONFIG!$PROG_IFCONFIG$ac_delim |
27615 | s,@INSTALL_SSH_PRNG_CMDS@,$INSTALL_SSH_PRNG_CMDS,;t t | 31780 | PROG_JSTAT!$PROG_JSTAT$ac_delim |
27616 | s,@OPENSC_CONFIG@,$OPENSC_CONFIG,;t t | 31781 | PROG_PS!$PROG_PS$ac_delim |
27617 | s,@PRIVSEP_PATH@,$PRIVSEP_PATH,;t t | 31782 | PROG_SAR!$PROG_SAR$ac_delim |
27618 | s,@xauth_path@,$xauth_path,;t t | 31783 | PROG_W!$PROG_W$ac_delim |
27619 | s,@STRIP_OPT@,$STRIP_OPT,;t t | 31784 | PROG_WHO!$PROG_WHO$ac_delim |
27620 | s,@XAUTH_PATH@,$XAUTH_PATH,;t t | 31785 | PROG_LAST!$PROG_LAST$ac_delim |
27621 | s,@NROFF@,$NROFF,;t t | 31786 | PROG_LASTLOG!$PROG_LASTLOG$ac_delim |
27622 | s,@MANTYPE@,$MANTYPE,;t t | 31787 | PROG_DF!$PROG_DF$ac_delim |
27623 | s,@mansubdir@,$mansubdir,;t t | 31788 | PROG_VMSTAT!$PROG_VMSTAT$ac_delim |
27624 | s,@user_path@,$user_path,;t t | 31789 | PROG_UPTIME!$PROG_UPTIME$ac_delim |
27625 | s,@piddir@,$piddir,;t t | 31790 | PROG_IPCS!$PROG_IPCS$ac_delim |
27626 | s,@LIBOBJS@,$LIBOBJS,;t t | 31791 | PROG_TAIL!$PROG_TAIL$ac_delim |
27627 | s,@LTLIBOBJS@,$LTLIBOBJS,;t t | 31792 | _ACEOF |
27628 | CEOF | 31793 | |
27629 | 31794 | if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then | |
27630 | _ACEOF | 31795 | break |
27631 | 31796 | elif $ac_last_try; then | |
27632 | cat >>$CONFIG_STATUS <<\_ACEOF | 31797 | { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 |
27633 | # Split the substitutions into bite-sized pieces for seds with | 31798 | echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} |
27634 | # small command number limits, like on Digital OSF/1 and HP-UX. | 31799 | { (exit 1); exit 1; }; } |
27635 | ac_max_sed_lines=48 | 31800 | else |
27636 | ac_sed_frag=1 # Number of current file. | 31801 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " |
27637 | ac_beg=1 # First line for current file. | ||
27638 | ac_end=$ac_max_sed_lines # Line after last line for current file. | ||
27639 | ac_more_lines=: | ||
27640 | ac_sed_cmds= | ||
27641 | while $ac_more_lines; do | ||
27642 | if test $ac_beg -gt 1; then | ||
27643 | sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag | ||
27644 | else | ||
27645 | sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag | ||
27646 | fi | ||
27647 | if test ! -s $tmp/subs.frag; then | ||
27648 | ac_more_lines=false | ||
27649 | else | ||
27650 | # The purpose of the label and of the branching condition is to | ||
27651 | # speed up the sed processing (if there are no `@' at all, there | ||
27652 | # is no need to browse any of the substitutions). | ||
27653 | # These are the two extra sed commands mentioned above. | ||
27654 | (echo ':t | ||
27655 | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed | ||
27656 | if test -z "$ac_sed_cmds"; then | ||
27657 | ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" | ||
27658 | else | ||
27659 | ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" | ||
27660 | fi | ||
27661 | ac_sed_frag=`expr $ac_sed_frag + 1` | ||
27662 | ac_beg=$ac_end | ||
27663 | ac_end=`expr $ac_end + $ac_max_sed_lines` | ||
27664 | fi | ||
27665 | done | ||
27666 | if test -z "$ac_sed_cmds"; then | ||
27667 | ac_sed_cmds=cat | ||
27668 | fi | 31802 | fi |
27669 | fi # test -n "$CONFIG_FILES" | 31803 | done |
31804 | |||
31805 | ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` | ||
31806 | if test -n "$ac_eof"; then | ||
31807 | ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` | ||
31808 | ac_eof=`expr $ac_eof + 1` | ||
31809 | fi | ||
27670 | 31810 | ||
31811 | cat >>$CONFIG_STATUS <<_ACEOF | ||
31812 | cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof | ||
31813 | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b | ||
31814 | _ACEOF | ||
31815 | sed ' | ||
31816 | s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g | ||
31817 | s/^/s,@/; s/!/@,|#_!!_#|/ | ||
31818 | :n | ||
31819 | t n | ||
31820 | s/'"$ac_delim"'$/,g/; t | ||
31821 | s/$/\\/; p | ||
31822 | N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n | ||
31823 | ' >>$CONFIG_STATUS <conf$$subs.sed | ||
31824 | rm -f conf$$subs.sed | ||
31825 | cat >>$CONFIG_STATUS <<_ACEOF | ||
31826 | CEOF$ac_eof | ||
31827 | _ACEOF | ||
31828 | |||
31829 | |||
31830 | ac_delim='%!_!# ' | ||
31831 | for ac_last_try in false false false false false :; do | ||
31832 | cat >conf$$subs.sed <<_ACEOF | ||
31833 | INSTALL_SSH_PRNG_CMDS!$INSTALL_SSH_PRNG_CMDS$ac_delim | ||
31834 | OPENSC_CONFIG!$OPENSC_CONFIG$ac_delim | ||
31835 | LIBSELINUX!$LIBSELINUX$ac_delim | ||
31836 | PRIVSEP_PATH!$PRIVSEP_PATH$ac_delim | ||
31837 | xauth_path!$xauth_path$ac_delim | ||
31838 | STRIP_OPT!$STRIP_OPT$ac_delim | ||
31839 | XAUTH_PATH!$XAUTH_PATH$ac_delim | ||
31840 | NROFF!$NROFF$ac_delim | ||
31841 | MANTYPE!$MANTYPE$ac_delim | ||
31842 | mansubdir!$mansubdir$ac_delim | ||
31843 | user_path!$user_path$ac_delim | ||
31844 | piddir!$piddir$ac_delim | ||
31845 | LIBOBJS!$LIBOBJS$ac_delim | ||
31846 | LTLIBOBJS!$LTLIBOBJS$ac_delim | ||
31847 | _ACEOF | ||
31848 | |||
31849 | if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 14; then | ||
31850 | break | ||
31851 | elif $ac_last_try; then | ||
31852 | { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 | ||
31853 | echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} | ||
31854 | { (exit 1); exit 1; }; } | ||
31855 | else | ||
31856 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " | ||
31857 | fi | ||
31858 | done | ||
31859 | |||
31860 | ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` | ||
31861 | if test -n "$ac_eof"; then | ||
31862 | ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` | ||
31863 | ac_eof=`expr $ac_eof + 1` | ||
31864 | fi | ||
31865 | |||
31866 | cat >>$CONFIG_STATUS <<_ACEOF | ||
31867 | cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof | ||
31868 | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end | ||
31869 | _ACEOF | ||
31870 | sed ' | ||
31871 | s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g | ||
31872 | s/^/s,@/; s/!/@,|#_!!_#|/ | ||
31873 | :n | ||
31874 | t n | ||
31875 | s/'"$ac_delim"'$/,g/; t | ||
31876 | s/$/\\/; p | ||
31877 | N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n | ||
31878 | ' >>$CONFIG_STATUS <conf$$subs.sed | ||
31879 | rm -f conf$$subs.sed | ||
31880 | cat >>$CONFIG_STATUS <<_ACEOF | ||
31881 | :end | ||
31882 | s/|#_!!_#|//g | ||
31883 | CEOF$ac_eof | ||
27671 | _ACEOF | 31884 | _ACEOF |
31885 | |||
31886 | |||
31887 | # VPATH may cause trouble with some makes, so we remove $(srcdir), | ||
31888 | # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and | ||
31889 | # trailing colons and then remove the whole line if VPATH becomes empty | ||
31890 | # (actually we leave an empty line to preserve line numbers). | ||
31891 | if test "x$srcdir" = x.; then | ||
31892 | ac_vpsub='/^[ ]*VPATH[ ]*=/{ | ||
31893 | s/:*\$(srcdir):*/:/ | ||
31894 | s/:*\${srcdir}:*/:/ | ||
31895 | s/:*@srcdir@:*/:/ | ||
31896 | s/^\([^=]*=[ ]*\):*/\1/ | ||
31897 | s/:*$// | ||
31898 | s/^[^=]*=[ ]*$// | ||
31899 | }' | ||
31900 | fi | ||
31901 | |||
27672 | cat >>$CONFIG_STATUS <<\_ACEOF | 31902 | cat >>$CONFIG_STATUS <<\_ACEOF |
27673 | for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue | 31903 | fi # test -n "$CONFIG_FILES" |
27674 | # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". | 31904 | |
27675 | case $ac_file in | 31905 | |
27676 | - | *:- | *:-:* ) # input from stdin | 31906 | for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS |
27677 | cat >$tmp/stdin | 31907 | do |
27678 | ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` | 31908 | case $ac_tag in |
27679 | ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; | 31909 | :[FHLC]) ac_mode=$ac_tag; continue;; |
27680 | *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` | 31910 | esac |
27681 | ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; | 31911 | case $ac_mode$ac_tag in |
27682 | * ) ac_file_in=$ac_file.in ;; | 31912 | :[FHL]*:*);; |
31913 | :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 | ||
31914 | echo "$as_me: error: Invalid tag $ac_tag." >&2;} | ||
31915 | { (exit 1); exit 1; }; };; | ||
31916 | :[FH]-) ac_tag=-:-;; | ||
31917 | :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; | ||
31918 | esac | ||
31919 | ac_save_IFS=$IFS | ||
31920 | IFS=: | ||
31921 | set x $ac_tag | ||
31922 | IFS=$ac_save_IFS | ||
31923 | shift | ||
31924 | ac_file=$1 | ||
31925 | shift | ||
31926 | |||
31927 | case $ac_mode in | ||
31928 | :L) ac_source=$1;; | ||
31929 | :[FH]) | ||
31930 | ac_file_inputs= | ||
31931 | for ac_f | ||
31932 | do | ||
31933 | case $ac_f in | ||
31934 | -) ac_f="$tmp/stdin";; | ||
31935 | *) # Look for the file first in the build tree, then in the source tree | ||
31936 | # (if the path is not absolute). The absolute path cannot be DOS-style, | ||
31937 | # because $ac_f cannot contain `:'. | ||
31938 | test -f "$ac_f" || | ||
31939 | case $ac_f in | ||
31940 | [\\/$]*) false;; | ||
31941 | *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; | ||
31942 | esac || | ||
31943 | { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 | ||
31944 | echo "$as_me: error: cannot find input file: $ac_f" >&2;} | ||
31945 | { (exit 1); exit 1; }; };; | ||
31946 | esac | ||
31947 | ac_file_inputs="$ac_file_inputs $ac_f" | ||
31948 | done | ||
31949 | |||
31950 | # Let's still pretend it is `configure' which instantiates (i.e., don't | ||
31951 | # use $as_me), people would be surprised to read: | ||
31952 | # /* config.h. Generated by config.status. */ | ||
31953 | configure_input="Generated from "`IFS=: | ||
31954 | echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." | ||
31955 | if test x"$ac_file" != x-; then | ||
31956 | configure_input="$ac_file. $configure_input" | ||
31957 | { echo "$as_me:$LINENO: creating $ac_file" >&5 | ||
31958 | echo "$as_me: creating $ac_file" >&6;} | ||
31959 | fi | ||
31960 | |||
31961 | case $ac_tag in | ||
31962 | *:-:* | *:-) cat >"$tmp/stdin";; | ||
31963 | esac | ||
31964 | ;; | ||
27683 | esac | 31965 | esac |
27684 | 31966 | ||
27685 | # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. | 31967 | ac_dir=`$as_dirname -- "$ac_file" || |
27686 | ac_dir=`(dirname "$ac_file") 2>/dev/null || | ||
27687 | $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | 31968 | $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
27688 | X"$ac_file" : 'X\(//\)[^/]' \| \ | 31969 | X"$ac_file" : 'X\(//\)[^/]' \| \ |
27689 | X"$ac_file" : 'X\(//\)$' \| \ | 31970 | X"$ac_file" : 'X\(//\)$' \| \ |
27690 | X"$ac_file" : 'X\(/\)' \| \ | 31971 | X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || |
27691 | . : '\(.\)' 2>/dev/null || | ||
27692 | echo X"$ac_file" | | 31972 | echo X"$ac_file" | |
27693 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } | 31973 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ |
27694 | /^X\(\/\/\)[^/].*/{ s//\1/; q; } | 31974 | s//\1/ |
27695 | /^X\(\/\/\)$/{ s//\1/; q; } | 31975 | q |
27696 | /^X\(\/\).*/{ s//\1/; q; } | 31976 | } |
27697 | s/.*/./; q'` | 31977 | /^X\(\/\/\)[^/].*/{ |
27698 | { if $as_mkdir_p; then | 31978 | s//\1/ |
27699 | mkdir -p "$ac_dir" | 31979 | q |
27700 | else | 31980 | } |
27701 | as_dir="$ac_dir" | 31981 | /^X\(\/\/\)$/{ |
31982 | s//\1/ | ||
31983 | q | ||
31984 | } | ||
31985 | /^X\(\/\).*/{ | ||
31986 | s//\1/ | ||
31987 | q | ||
31988 | } | ||
31989 | s/.*/./; q'` | ||
31990 | { as_dir="$ac_dir" | ||
31991 | case $as_dir in #( | ||
31992 | -*) as_dir=./$as_dir;; | ||
31993 | esac | ||
31994 | test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { | ||
27702 | as_dirs= | 31995 | as_dirs= |
27703 | while test ! -d "$as_dir"; do | 31996 | while :; do |
27704 | as_dirs="$as_dir $as_dirs" | 31997 | case $as_dir in #( |
27705 | as_dir=`(dirname "$as_dir") 2>/dev/null || | 31998 | *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( |
31999 | *) as_qdir=$as_dir;; | ||
32000 | esac | ||
32001 | as_dirs="'$as_qdir' $as_dirs" | ||
32002 | as_dir=`$as_dirname -- "$as_dir" || | ||
27706 | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | 32003 | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
27707 | X"$as_dir" : 'X\(//\)[^/]' \| \ | 32004 | X"$as_dir" : 'X\(//\)[^/]' \| \ |
27708 | X"$as_dir" : 'X\(//\)$' \| \ | 32005 | X"$as_dir" : 'X\(//\)$' \| \ |
27709 | X"$as_dir" : 'X\(/\)' \| \ | 32006 | X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || |
27710 | . : '\(.\)' 2>/dev/null || | ||
27711 | echo X"$as_dir" | | 32007 | echo X"$as_dir" | |
27712 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } | 32008 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ |
27713 | /^X\(\/\/\)[^/].*/{ s//\1/; q; } | 32009 | s//\1/ |
27714 | /^X\(\/\/\)$/{ s//\1/; q; } | 32010 | q |
27715 | /^X\(\/\).*/{ s//\1/; q; } | 32011 | } |
27716 | s/.*/./; q'` | 32012 | /^X\(\/\/\)[^/].*/{ |
32013 | s//\1/ | ||
32014 | q | ||
32015 | } | ||
32016 | /^X\(\/\/\)$/{ | ||
32017 | s//\1/ | ||
32018 | q | ||
32019 | } | ||
32020 | /^X\(\/\).*/{ | ||
32021 | s//\1/ | ||
32022 | q | ||
32023 | } | ||
32024 | s/.*/./; q'` | ||
32025 | test -d "$as_dir" && break | ||
27717 | done | 32026 | done |
27718 | test ! -n "$as_dirs" || mkdir $as_dirs | 32027 | test -z "$as_dirs" || eval "mkdir $as_dirs" |
27719 | fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 | 32028 | } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 |
27720 | echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} | 32029 | echo "$as_me: error: cannot create directory $as_dir" >&2;} |
27721 | { (exit 1); exit 1; }; }; } | 32030 | { (exit 1); exit 1; }; }; } |
27722 | |||
27723 | ac_builddir=. | 32031 | ac_builddir=. |
27724 | 32032 | ||
27725 | if test "$ac_dir" != .; then | 32033 | case "$ac_dir" in |
32034 | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; | ||
32035 | *) | ||
27726 | ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` | 32036 | ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` |
27727 | # A "../" for each directory in $ac_dir_suffix. | 32037 | # A ".." for each directory in $ac_dir_suffix. |
27728 | ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` | 32038 | ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` |
27729 | else | 32039 | case $ac_top_builddir_sub in |
27730 | ac_dir_suffix= ac_top_builddir= | 32040 | "") ac_top_builddir_sub=. ac_top_build_prefix= ;; |
27731 | fi | 32041 | *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; |
32042 | esac ;; | ||
32043 | esac | ||
32044 | ac_abs_top_builddir=$ac_pwd | ||
32045 | ac_abs_builddir=$ac_pwd$ac_dir_suffix | ||
32046 | # for backward compatibility: | ||
32047 | ac_top_builddir=$ac_top_build_prefix | ||
27732 | 32048 | ||
27733 | case $srcdir in | 32049 | case $srcdir in |
27734 | .) # No --srcdir option. We are building in place. | 32050 | .) # We are building in place. |
27735 | ac_srcdir=. | 32051 | ac_srcdir=. |
27736 | if test -z "$ac_top_builddir"; then | 32052 | ac_top_srcdir=$ac_top_builddir_sub |
27737 | ac_top_srcdir=. | 32053 | ac_abs_top_srcdir=$ac_pwd ;; |
27738 | else | 32054 | [\\/]* | ?:[\\/]* ) # Absolute name. |
27739 | ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` | ||
27740 | fi ;; | ||
27741 | [\\/]* | ?:[\\/]* ) # Absolute path. | ||
27742 | ac_srcdir=$srcdir$ac_dir_suffix; | 32055 | ac_srcdir=$srcdir$ac_dir_suffix; |
27743 | ac_top_srcdir=$srcdir ;; | 32056 | ac_top_srcdir=$srcdir |
27744 | *) # Relative path. | 32057 | ac_abs_top_srcdir=$srcdir ;; |
27745 | ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix | 32058 | *) # Relative name. |
27746 | ac_top_srcdir=$ac_top_builddir$srcdir ;; | 32059 | ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix |
32060 | ac_top_srcdir=$ac_top_build_prefix$srcdir | ||
32061 | ac_abs_top_srcdir=$ac_pwd/$srcdir ;; | ||
27747 | esac | 32062 | esac |
32063 | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix | ||
27748 | 32064 | ||
27749 | # Do not use `cd foo && pwd` to compute absolute paths, because | ||
27750 | # the directories may not exist. | ||
27751 | case `pwd` in | ||
27752 | .) ac_abs_builddir="$ac_dir";; | ||
27753 | *) | ||
27754 | case "$ac_dir" in | ||
27755 | .) ac_abs_builddir=`pwd`;; | ||
27756 | [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; | ||
27757 | *) ac_abs_builddir=`pwd`/"$ac_dir";; | ||
27758 | esac;; | ||
27759 | esac | ||
27760 | case $ac_abs_builddir in | ||
27761 | .) ac_abs_top_builddir=${ac_top_builddir}.;; | ||
27762 | *) | ||
27763 | case ${ac_top_builddir}. in | ||
27764 | .) ac_abs_top_builddir=$ac_abs_builddir;; | ||
27765 | [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; | ||
27766 | *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; | ||
27767 | esac;; | ||
27768 | esac | ||
27769 | case $ac_abs_builddir in | ||
27770 | .) ac_abs_srcdir=$ac_srcdir;; | ||
27771 | *) | ||
27772 | case $ac_srcdir in | ||
27773 | .) ac_abs_srcdir=$ac_abs_builddir;; | ||
27774 | [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; | ||
27775 | *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; | ||
27776 | esac;; | ||
27777 | esac | ||
27778 | case $ac_abs_builddir in | ||
27779 | .) ac_abs_top_srcdir=$ac_top_srcdir;; | ||
27780 | *) | ||
27781 | case $ac_top_srcdir in | ||
27782 | .) ac_abs_top_srcdir=$ac_abs_builddir;; | ||
27783 | [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; | ||
27784 | *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; | ||
27785 | esac;; | ||
27786 | esac | ||
27787 | 32065 | ||
32066 | case $ac_mode in | ||
32067 | :F) | ||
32068 | # | ||
32069 | # CONFIG_FILE | ||
32070 | # | ||
27788 | 32071 | ||
27789 | case $INSTALL in | 32072 | case $INSTALL in |
27790 | [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; | 32073 | [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; |
27791 | *) ac_INSTALL=$ac_top_builddir$INSTALL ;; | 32074 | *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; |
27792 | esac | 32075 | esac |
32076 | _ACEOF | ||
27793 | 32077 | ||
27794 | # Let's still pretend it is `configure' which instantiates (i.e., don't | 32078 | cat >>$CONFIG_STATUS <<\_ACEOF |
27795 | # use $as_me), people would be surprised to read: | 32079 | # If the template does not know about datarootdir, expand it. |
27796 | # /* config.h. Generated by config.status. */ | 32080 | # FIXME: This hack should be removed a few years after 2.60. |
27797 | if test x"$ac_file" = x-; then | 32081 | ac_datarootdir_hack=; ac_datarootdir_seen= |
27798 | configure_input= | 32082 | |
27799 | else | 32083 | case `sed -n '/datarootdir/ { |
27800 | configure_input="$ac_file. " | 32084 | p |
27801 | fi | 32085 | q |
27802 | configure_input=$configure_input"Generated from `echo $ac_file_in | | 32086 | } |
27803 | sed 's,.*/,,'` by configure." | 32087 | /@datadir@/p |
27804 | 32088 | /@docdir@/p | |
27805 | # First look for the input files in the build tree, otherwise in the | 32089 | /@infodir@/p |
27806 | # src tree. | 32090 | /@localedir@/p |
27807 | ac_file_inputs=`IFS=: | 32091 | /@mandir@/p |
27808 | for f in $ac_file_in; do | 32092 | ' $ac_file_inputs` in |
27809 | case $f in | 32093 | *datarootdir*) ac_datarootdir_seen=yes;; |
27810 | -) echo $tmp/stdin ;; | 32094 | *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) |
27811 | [\\/$]*) | 32095 | { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 |
27812 | # Absolute (can't be DOS-style, as IFS=:) | 32096 | echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} |
27813 | test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 | ||
27814 | echo "$as_me: error: cannot find input file: $f" >&2;} | ||
27815 | { (exit 1); exit 1; }; } | ||
27816 | echo "$f";; | ||
27817 | *) # Relative | ||
27818 | if test -f "$f"; then | ||
27819 | # Build tree | ||
27820 | echo "$f" | ||
27821 | elif test -f "$srcdir/$f"; then | ||
27822 | # Source tree | ||
27823 | echo "$srcdir/$f" | ||
27824 | else | ||
27825 | # /dev/null tree | ||
27826 | { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 | ||
27827 | echo "$as_me: error: cannot find input file: $f" >&2;} | ||
27828 | { (exit 1); exit 1; }; } | ||
27829 | fi;; | ||
27830 | esac | ||
27831 | done` || { (exit 1); exit 1; } | ||
27832 | |||
27833 | if test x"$ac_file" != x-; then | ||
27834 | { echo "$as_me:$LINENO: creating $ac_file" >&5 | ||
27835 | echo "$as_me: creating $ac_file" >&6;} | ||
27836 | rm -f "$ac_file" | ||
27837 | fi | ||
27838 | _ACEOF | 32097 | _ACEOF |
27839 | cat >>$CONFIG_STATUS <<_ACEOF | 32098 | cat >>$CONFIG_STATUS <<_ACEOF |
32099 | ac_datarootdir_hack=' | ||
32100 | s&@datadir@&$datadir&g | ||
32101 | s&@docdir@&$docdir&g | ||
32102 | s&@infodir@&$infodir&g | ||
32103 | s&@localedir@&$localedir&g | ||
32104 | s&@mandir@&$mandir&g | ||
32105 | s&\\\${datarootdir}&$datarootdir&g' ;; | ||
32106 | esac | ||
32107 | _ACEOF | ||
32108 | |||
32109 | # Neutralize VPATH when `$srcdir' = `.'. | ||
32110 | # Shell code in configure.ac might set extrasub. | ||
32111 | # FIXME: do we really want to maintain this feature? | ||
32112 | cat >>$CONFIG_STATUS <<_ACEOF | ||
27840 | sed "$ac_vpsub | 32113 | sed "$ac_vpsub |
27841 | $extrasub | 32114 | $extrasub |
27842 | _ACEOF | 32115 | _ACEOF |
27843 | cat >>$CONFIG_STATUS <<\_ACEOF | 32116 | cat >>$CONFIG_STATUS <<\_ACEOF |
27844 | :t | 32117 | :t |
27845 | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b | 32118 | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b |
27846 | s,@configure_input@,$configure_input,;t t | 32119 | s&@configure_input@&$configure_input&;t t |
27847 | s,@srcdir@,$ac_srcdir,;t t | 32120 | s&@top_builddir@&$ac_top_builddir_sub&;t t |
27848 | s,@abs_srcdir@,$ac_abs_srcdir,;t t | 32121 | s&@srcdir@&$ac_srcdir&;t t |
27849 | s,@top_srcdir@,$ac_top_srcdir,;t t | 32122 | s&@abs_srcdir@&$ac_abs_srcdir&;t t |
27850 | s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t | 32123 | s&@top_srcdir@&$ac_top_srcdir&;t t |
27851 | s,@builddir@,$ac_builddir,;t t | 32124 | s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t |
27852 | s,@abs_builddir@,$ac_abs_builddir,;t t | 32125 | s&@builddir@&$ac_builddir&;t t |
27853 | s,@top_builddir@,$ac_top_builddir,;t t | 32126 | s&@abs_builddir@&$ac_abs_builddir&;t t |
27854 | s,@abs_top_builddir@,$ac_abs_top_builddir,;t t | 32127 | s&@abs_top_builddir@&$ac_abs_top_builddir&;t t |
27855 | s,@INSTALL@,$ac_INSTALL,;t t | 32128 | s&@INSTALL@&$ac_INSTALL&;t t |
27856 | " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out | 32129 | $ac_datarootdir_hack |
27857 | rm -f $tmp/stdin | 32130 | " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out |
27858 | if test x"$ac_file" != x-; then | 32131 | |
27859 | mv $tmp/out $ac_file | 32132 | test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && |
27860 | else | 32133 | { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && |
27861 | cat $tmp/out | 32134 | { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && |
27862 | rm -f $tmp/out | 32135 | { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' |
27863 | fi | 32136 | which seems to be undefined. Please make sure it is defined." >&5 |
27864 | 32137 | echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' | |
27865 | done | 32138 | which seems to be undefined. Please make sure it is defined." >&2;} |
27866 | _ACEOF | 32139 | |
27867 | cat >>$CONFIG_STATUS <<\_ACEOF | 32140 | rm -f "$tmp/stdin" |
27868 | |||
27869 | # | ||
27870 | # CONFIG_HEADER section. | ||
27871 | # | ||
27872 | |||
27873 | # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where | ||
27874 | # NAME is the cpp macro being defined and VALUE is the value it is being given. | ||
27875 | # | ||
27876 | # ac_d sets the value in "#define NAME VALUE" lines. | ||
27877 | ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' | ||
27878 | ac_dB='[ ].*$,\1#\2' | ||
27879 | ac_dC=' ' | ||
27880 | ac_dD=',;t' | ||
27881 | # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". | ||
27882 | ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' | ||
27883 | ac_uB='$,\1#\2define\3' | ||
27884 | ac_uC=' ' | ||
27885 | ac_uD=',;t' | ||
27886 | |||
27887 | for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue | ||
27888 | # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". | ||
27889 | case $ac_file in | 32141 | case $ac_file in |
27890 | - | *:- | *:-:* ) # input from stdin | 32142 | -) cat "$tmp/out"; rm -f "$tmp/out";; |
27891 | cat >$tmp/stdin | 32143 | *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; |
27892 | ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` | ||
27893 | ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; | ||
27894 | *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` | ||
27895 | ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; | ||
27896 | * ) ac_file_in=$ac_file.in ;; | ||
27897 | esac | 32144 | esac |
27898 | 32145 | ;; | |
27899 | test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 | 32146 | :H) |
27900 | echo "$as_me: creating $ac_file" >&6;} | 32147 | # |
27901 | 32148 | # CONFIG_HEADER | |
27902 | # First look for the input files in the build tree, otherwise in the | 32149 | # |
27903 | # src tree. | 32150 | _ACEOF |
27904 | ac_file_inputs=`IFS=: | 32151 | |
27905 | for f in $ac_file_in; do | 32152 | # Transform confdefs.h into a sed script `conftest.defines', that |
27906 | case $f in | 32153 | # substitutes the proper values into config.h.in to produce config.h. |
27907 | -) echo $tmp/stdin ;; | 32154 | rm -f conftest.defines conftest.tail |
27908 | [\\/$]*) | 32155 | # First, append a space to every undef/define line, to ease matching. |
27909 | # Absolute (can't be DOS-style, as IFS=:) | 32156 | echo 's/$/ /' >conftest.defines |
27910 | test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 | 32157 | # Then, protect against being on the right side of a sed subst, or in |
27911 | echo "$as_me: error: cannot find input file: $f" >&2;} | 32158 | # an unquoted here document, in config.status. If some macros were |
27912 | { (exit 1); exit 1; }; } | 32159 | # called several times there might be several #defines for the same |
27913 | # Do quote $f, to prevent DOS paths from being IFS'd. | 32160 | # symbol, which is useless. But do not sort them, since the last |
27914 | echo "$f";; | 32161 | # AC_DEFINE must be honored. |
27915 | *) # Relative | 32162 | ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* |
27916 | if test -f "$f"; then | 32163 | # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where |
27917 | # Build tree | 32164 | # NAME is the cpp macro being defined, VALUE is the value it is being given. |
27918 | echo "$f" | 32165 | # PARAMS is the parameter list in the macro definition--in most cases, it's |
27919 | elif test -f "$srcdir/$f"; then | 32166 | # just an empty string. |
27920 | # Source tree | 32167 | ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' |
27921 | echo "$srcdir/$f" | 32168 | ac_dB='\\)[ (].*,\\1define\\2' |
27922 | else | 32169 | ac_dC=' ' |
27923 | # /dev/null tree | 32170 | ac_dD=' ,' |
27924 | { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 | 32171 | |
27925 | echo "$as_me: error: cannot find input file: $f" >&2;} | 32172 | uniq confdefs.h | |
27926 | { (exit 1); exit 1; }; } | 32173 | sed -n ' |
27927 | fi;; | 32174 | t rset |
27928 | esac | 32175 | :rset |
27929 | done` || { (exit 1); exit 1; } | 32176 | s/^[ ]*#[ ]*define[ ][ ]*// |
27930 | # Remove the trailing spaces. | 32177 | t ok |
27931 | sed 's/[ ]*$//' $ac_file_inputs >$tmp/in | 32178 | d |
27932 | 32179 | :ok | |
27933 | _ACEOF | 32180 | s/[\\&,]/\\&/g |
27934 | 32181 | s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p | |
27935 | # Transform confdefs.h into two sed scripts, `conftest.defines' and | 32182 | s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p |
27936 | # `conftest.undefs', that substitutes the proper values into | 32183 | ' >>conftest.defines |
27937 | # config.h.in to produce config.h. The first handles `#define' | 32184 | |
27938 | # templates, and the second `#undef' templates. | 32185 | # Remove the space that was appended to ease matching. |
27939 | # And first: Protect against being on the right side of a sed subst in | 32186 | # Then replace #undef with comments. This is necessary, for |
27940 | # config.status. Protect against being in an unquoted here document | ||
27941 | # in config.status. | ||
27942 | rm -f conftest.defines conftest.undefs | ||
27943 | # Using a here document instead of a string reduces the quoting nightmare. | ||
27944 | # Putting comments in sed scripts is not portable. | ||
27945 | # | ||
27946 | # `end' is used to avoid that the second main sed command (meant for | ||
27947 | # 0-ary CPP macros) applies to n-ary macro definitions. | ||
27948 | # See the Autoconf documentation for `clear'. | ||
27949 | cat >confdef2sed.sed <<\_ACEOF | ||
27950 | s/[\\&,]/\\&/g | ||
27951 | s,[\\$`],\\&,g | ||
27952 | t clear | ||
27953 | : clear | ||
27954 | s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp | ||
27955 | t end | ||
27956 | s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp | ||
27957 | : end | ||
27958 | _ACEOF | ||
27959 | # If some macros were called several times there might be several times | ||
27960 | # the same #defines, which is useless. Nevertheless, we may not want to | ||
27961 | # sort them, since we want the *last* AC-DEFINE to be honored. | ||
27962 | uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines | ||
27963 | sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs | ||
27964 | rm -f confdef2sed.sed | ||
27965 | |||
27966 | # This sed command replaces #undef with comments. This is necessary, for | ||
27967 | # example, in the case of _POSIX_SOURCE, which is predefined and required | 32187 | # example, in the case of _POSIX_SOURCE, which is predefined and required |
27968 | # on some systems where configure will not decide to define it. | 32188 | # on some systems where configure will not decide to define it. |
27969 | cat >>conftest.undefs <<\_ACEOF | 32189 | # (The regexp can be short, since the line contains either #define or #undef.) |
27970 | s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, | 32190 | echo 's/ $// |
27971 | _ACEOF | 32191 | s,^[ #]*u.*,/* & */,' >>conftest.defines |
27972 | 32192 | ||
27973 | # Break up conftest.defines because some shells have a limit on the size | 32193 | # Break up conftest.defines: |
27974 | # of here documents, and old seds have small limits too (100 cmds). | 32194 | ac_max_sed_lines=50 |
27975 | echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS | 32195 | |
27976 | echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS | 32196 | # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" |
27977 | echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS | 32197 | # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" |
27978 | echo ' :' >>$CONFIG_STATUS | 32198 | # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" |
27979 | rm -f conftest.tail | 32199 | # et cetera. |
27980 | while grep . conftest.defines >/dev/null | 32200 | ac_in='$ac_file_inputs' |
32201 | ac_out='"$tmp/out1"' | ||
32202 | ac_nxt='"$tmp/out2"' | ||
32203 | |||
32204 | while : | ||
27981 | do | 32205 | do |
27982 | # Write a limited-size here document to $tmp/defines.sed. | 32206 | # Write a here document: |
27983 | echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS | 32207 | cat >>$CONFIG_STATUS <<_ACEOF |
27984 | # Speed up: don't consider the non `#define' lines. | 32208 | # First, check the format of the line: |
27985 | echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS | 32209 | cat >"\$tmp/defines.sed" <<\\CEOF |
27986 | # Work around the forget-to-reset-the-flag bug. | 32210 | /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def |
27987 | echo 't clr' >>$CONFIG_STATUS | 32211 | /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def |
27988 | echo ': clr' >>$CONFIG_STATUS | 32212 | b |
27989 | sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS | 32213 | :def |
32214 | _ACEOF | ||
32215 | sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS | ||
27990 | echo 'CEOF | 32216 | echo 'CEOF |
27991 | sed -f $tmp/defines.sed $tmp/in >$tmp/out | 32217 | sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS |
27992 | rm -f $tmp/in | 32218 | ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in |
27993 | mv $tmp/out $tmp/in | 32219 | sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail |
27994 | ' >>$CONFIG_STATUS | 32220 | grep . conftest.tail >/dev/null || break |
27995 | sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail | ||
27996 | rm -f conftest.defines | 32221 | rm -f conftest.defines |
27997 | mv conftest.tail conftest.defines | 32222 | mv conftest.tail conftest.defines |
27998 | done | 32223 | done |
27999 | rm -f conftest.defines | 32224 | rm -f conftest.defines conftest.tail |
28000 | echo ' fi # grep' >>$CONFIG_STATUS | ||
28001 | echo >>$CONFIG_STATUS | ||
28002 | |||
28003 | # Break up conftest.undefs because some shells have a limit on the size | ||
28004 | # of here documents, and old seds have small limits too (100 cmds). | ||
28005 | echo ' # Handle all the #undef templates' >>$CONFIG_STATUS | ||
28006 | rm -f conftest.tail | ||
28007 | while grep . conftest.undefs >/dev/null | ||
28008 | do | ||
28009 | # Write a limited-size here document to $tmp/undefs.sed. | ||
28010 | echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS | ||
28011 | # Speed up: don't consider the non `#undef' | ||
28012 | echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS | ||
28013 | # Work around the forget-to-reset-the-flag bug. | ||
28014 | echo 't clr' >>$CONFIG_STATUS | ||
28015 | echo ': clr' >>$CONFIG_STATUS | ||
28016 | sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS | ||
28017 | echo 'CEOF | ||
28018 | sed -f $tmp/undefs.sed $tmp/in >$tmp/out | ||
28019 | rm -f $tmp/in | ||
28020 | mv $tmp/out $tmp/in | ||
28021 | ' >>$CONFIG_STATUS | ||
28022 | sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail | ||
28023 | rm -f conftest.undefs | ||
28024 | mv conftest.tail conftest.undefs | ||
28025 | done | ||
28026 | rm -f conftest.undefs | ||
28027 | 32225 | ||
32226 | echo "ac_result=$ac_in" >>$CONFIG_STATUS | ||
28028 | cat >>$CONFIG_STATUS <<\_ACEOF | 32227 | cat >>$CONFIG_STATUS <<\_ACEOF |
28029 | # Let's still pretend it is `configure' which instantiates (i.e., don't | ||
28030 | # use $as_me), people would be surprised to read: | ||
28031 | # /* config.h. Generated by config.status. */ | ||
28032 | if test x"$ac_file" = x-; then | ||
28033 | echo "/* Generated by configure. */" >$tmp/config.h | ||
28034 | else | ||
28035 | echo "/* $ac_file. Generated by configure. */" >$tmp/config.h | ||
28036 | fi | ||
28037 | cat $tmp/in >>$tmp/config.h | ||
28038 | rm -f $tmp/in | ||
28039 | if test x"$ac_file" != x-; then | 32228 | if test x"$ac_file" != x-; then |
28040 | if diff $ac_file $tmp/config.h >/dev/null 2>&1; then | 32229 | echo "/* $configure_input */" >"$tmp/config.h" |
32230 | cat "$ac_result" >>"$tmp/config.h" | ||
32231 | if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then | ||
28041 | { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 | 32232 | { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 |
28042 | echo "$as_me: $ac_file is unchanged" >&6;} | 32233 | echo "$as_me: $ac_file is unchanged" >&6;} |
28043 | else | 32234 | else |
28044 | ac_dir=`(dirname "$ac_file") 2>/dev/null || | ||
28045 | $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | ||
28046 | X"$ac_file" : 'X\(//\)[^/]' \| \ | ||
28047 | X"$ac_file" : 'X\(//\)$' \| \ | ||
28048 | X"$ac_file" : 'X\(/\)' \| \ | ||
28049 | . : '\(.\)' 2>/dev/null || | ||
28050 | echo X"$ac_file" | | ||
28051 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } | ||
28052 | /^X\(\/\/\)[^/].*/{ s//\1/; q; } | ||
28053 | /^X\(\/\/\)$/{ s//\1/; q; } | ||
28054 | /^X\(\/\).*/{ s//\1/; q; } | ||
28055 | s/.*/./; q'` | ||
28056 | { if $as_mkdir_p; then | ||
28057 | mkdir -p "$ac_dir" | ||
28058 | else | ||
28059 | as_dir="$ac_dir" | ||
28060 | as_dirs= | ||
28061 | while test ! -d "$as_dir"; do | ||
28062 | as_dirs="$as_dir $as_dirs" | ||
28063 | as_dir=`(dirname "$as_dir") 2>/dev/null || | ||
28064 | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | ||
28065 | X"$as_dir" : 'X\(//\)[^/]' \| \ | ||
28066 | X"$as_dir" : 'X\(//\)$' \| \ | ||
28067 | X"$as_dir" : 'X\(/\)' \| \ | ||
28068 | . : '\(.\)' 2>/dev/null || | ||
28069 | echo X"$as_dir" | | ||
28070 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } | ||
28071 | /^X\(\/\/\)[^/].*/{ s//\1/; q; } | ||
28072 | /^X\(\/\/\)$/{ s//\1/; q; } | ||
28073 | /^X\(\/\).*/{ s//\1/; q; } | ||
28074 | s/.*/./; q'` | ||
28075 | done | ||
28076 | test ! -n "$as_dirs" || mkdir $as_dirs | ||
28077 | fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 | ||
28078 | echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} | ||
28079 | { (exit 1); exit 1; }; }; } | ||
28080 | |||
28081 | rm -f $ac_file | 32235 | rm -f $ac_file |
28082 | mv $tmp/config.h $ac_file | 32236 | mv "$tmp/config.h" $ac_file |
28083 | fi | 32237 | fi |
28084 | else | 32238 | else |
28085 | cat $tmp/config.h | 32239 | echo "/* $configure_input */" |
28086 | rm -f $tmp/config.h | 32240 | cat "$ac_result" |
28087 | fi | 32241 | fi |
28088 | done | 32242 | rm -f "$tmp/out12" |
28089 | _ACEOF | 32243 | ;; |
32244 | |||
32245 | |||
32246 | esac | ||
32247 | |||
32248 | done # for ac_tag | ||
28090 | 32249 | ||
28091 | cat >>$CONFIG_STATUS <<\_ACEOF | ||
28092 | 32250 | ||
28093 | { (exit 0); exit 0; } | 32251 | { (exit 0); exit 0; } |
28094 | _ACEOF | 32252 | _ACEOF |
diff --git a/configure.ac b/configure.ac index 7b723799e..aa12fabce 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -2986,15 +2986,25 @@ int main() | |||
2986 | 2986 | ||
2987 | # Check whether user wants SELinux support | 2987 | # Check whether user wants SELinux support |
2988 | SELINUX_MSG="no" | 2988 | SELINUX_MSG="no" |
2989 | LIBSELINUX="" | ||
2989 | AC_ARG_WITH(selinux, | 2990 | AC_ARG_WITH(selinux, |
2990 | [ --with-selinux Enable SELinux support], | 2991 | [ --with-selinux[[=LIBSELINUX-PATH]] Enable SELinux support], |
2991 | [ if test "x$withval" != "xno" ; then | 2992 | [ if test "x$withval" != "xno" ; then |
2992 | AC_DEFINE(WITH_SELINUX, 1, [Define if you want SELinux support.]) | 2993 | if test "x$withval" != "xyes"; then |
2994 | CPPFLAGS="$CPPFLAGS -I${withval}/include" | ||
2995 | if test -n "${need_dash_r}"; then | ||
2996 | LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}" | ||
2997 | else | ||
2998 | LDFLAGS="-L${withval}/lib ${LDFLAGS}" | ||
2999 | fi | ||
3000 | fi | ||
3001 | AC_DEFINE(WITH_SELINUX,1,[Define if you want SELinux support.]) | ||
2993 | SELINUX_MSG="yes" | 3002 | SELINUX_MSG="yes" |
2994 | AC_CHECK_HEADERS(selinux/selinux.h) | 3003 | AC_CHECK_HEADERS(selinux/selinux.h) |
2995 | LIBS="$LIBS -lselinux" | 3004 | LIBSELINUX="-lselinux" |
2996 | fi | 3005 | fi |
2997 | ]) | 3006 | ]) |
3007 | AC_SUBST(LIBSELINUX) | ||
2998 | 3008 | ||
2999 | # Check whether user wants Kerberos 5 support | 3009 | # Check whether user wants Kerberos 5 support |
3000 | KRB5_MSG="no" | 3010 | KRB5_MSG="no" |
diff --git a/debian/changelog b/debian/changelog index e2c08f2a7..000eaa8dc 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,11 @@ | |||
1 | openssh (1:4.3p2-5.1) unstable; urgency=low | ||
2 | |||
3 | * NMU to update SELinux patch, bringing it in line with current selinux | ||
4 | releases. The patch for this NMU is simply the Bug#394795 patch, | ||
5 | and no other changes. (closes: #394795) | ||
6 | |||
7 | -- Manoj Srivastava <srivasta@debian.org> Mon, 23 Oct 2006 14:11:24 -0500 | ||
8 | |||
1 | openssh (1:4.3p2-5) unstable; urgency=low | 9 | openssh (1:4.3p2-5) unstable; urgency=low |
2 | 10 | ||
3 | * Remove ssh/insecure_telnetd check altogether (closes: #391081). | 11 | * Remove ssh/insecure_telnetd check altogether (closes: #391081). |
@@ -111,6 +111,7 @@ int mm_answer_sign(int, Buffer *); | |||
111 | int mm_answer_pwnamallow(int, Buffer *); | 111 | int mm_answer_pwnamallow(int, Buffer *); |
112 | int mm_answer_auth2_read_banner(int, Buffer *); | 112 | int mm_answer_auth2_read_banner(int, Buffer *); |
113 | int mm_answer_authserv(int, Buffer *); | 113 | int mm_answer_authserv(int, Buffer *); |
114 | int mm_answer_authrole(int, Buffer *); | ||
114 | int mm_answer_authpassword(int, Buffer *); | 115 | int mm_answer_authpassword(int, Buffer *); |
115 | int mm_answer_bsdauthquery(int, Buffer *); | 116 | int mm_answer_bsdauthquery(int, Buffer *); |
116 | int mm_answer_bsdauthrespond(int, Buffer *); | 117 | int mm_answer_bsdauthrespond(int, Buffer *); |
@@ -182,6 +183,7 @@ struct mon_table mon_dispatch_proto20[] = { | |||
182 | {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign}, | 183 | {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign}, |
183 | {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow}, | 184 | {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow}, |
184 | {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv}, | 185 | {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv}, |
186 | {MONITOR_REQ_AUTHROLE, MON_ONCE, mm_answer_authrole}, | ||
185 | {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner}, | 187 | {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner}, |
186 | {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword}, | 188 | {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword}, |
187 | #ifdef USE_PAM | 189 | #ifdef USE_PAM |
@@ -638,6 +640,7 @@ mm_answer_pwnamallow(int sock, Buffer *m) | |||
638 | else { | 640 | else { |
639 | /* Allow service/style information on the auth context */ | 641 | /* Allow service/style information on the auth context */ |
640 | monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1); | 642 | monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1); |
643 | monitor_permit(mon_dispatch, MONITOR_REQ_AUTHROLE, 1); | ||
641 | monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1); | 644 | monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1); |
642 | } | 645 | } |
643 | 646 | ||
@@ -692,6 +695,23 @@ mm_answer_authserv(int sock, Buffer *m) | |||
692 | } | 695 | } |
693 | 696 | ||
694 | int | 697 | int |
698 | mm_answer_authrole(int sock, Buffer *m) | ||
699 | { | ||
700 | monitor_permit_authentications(1); | ||
701 | |||
702 | authctxt->role = buffer_get_string(m, NULL); | ||
703 | debug3("%s: role=%s", | ||
704 | __func__, authctxt->role); | ||
705 | |||
706 | if (strlen(authctxt->role) == 0) { | ||
707 | xfree(authctxt->role); | ||
708 | authctxt->role = NULL; | ||
709 | } | ||
710 | |||
711 | return (0); | ||
712 | } | ||
713 | |||
714 | int | ||
695 | mm_answer_authpassword(int sock, Buffer *m) | 715 | mm_answer_authpassword(int sock, Buffer *m) |
696 | { | 716 | { |
697 | static int call_count; | 717 | static int call_count; |
@@ -30,7 +30,7 @@ | |||
30 | 30 | ||
31 | enum monitor_reqtype { | 31 | enum monitor_reqtype { |
32 | MONITOR_REQ_MODULI, MONITOR_ANS_MODULI, | 32 | MONITOR_REQ_MODULI, MONITOR_ANS_MODULI, |
33 | MONITOR_REQ_FREE, MONITOR_REQ_AUTHSERV, | 33 | MONITOR_REQ_FREE, MONITOR_REQ_AUTHSERV,MONITOR_REQ_AUTHROLE, |
34 | MONITOR_REQ_SIGN, MONITOR_ANS_SIGN, | 34 | MONITOR_REQ_SIGN, MONITOR_ANS_SIGN, |
35 | MONITOR_REQ_PWNAM, MONITOR_ANS_PWNAM, | 35 | MONITOR_REQ_PWNAM, MONITOR_ANS_PWNAM, |
36 | MONITOR_REQ_AUTH2_READ_BANNER, MONITOR_ANS_AUTH2_READ_BANNER, | 36 | MONITOR_REQ_AUTH2_READ_BANNER, MONITOR_ANS_AUTH2_READ_BANNER, |
diff --git a/monitor_wrap.c b/monitor_wrap.c index 6749d3f93..29cafc751 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c | |||
@@ -272,6 +272,23 @@ mm_inform_authserv(char *service, char *style, char *role) | |||
272 | buffer_free(&m); | 272 | buffer_free(&m); |
273 | } | 273 | } |
274 | 274 | ||
275 | /* Inform the privileged process about role */ | ||
276 | |||
277 | void | ||
278 | mm_inform_authrole(char *role) | ||
279 | { | ||
280 | Buffer m; | ||
281 | |||
282 | debug3("%s entering", __func__); | ||
283 | |||
284 | buffer_init(&m); | ||
285 | buffer_put_cstring(&m, role ? role : ""); | ||
286 | |||
287 | mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHROLE, &m); | ||
288 | |||
289 | buffer_free(&m); | ||
290 | } | ||
291 | |||
275 | /* Do the password authentication */ | 292 | /* Do the password authentication */ |
276 | int | 293 | int |
277 | mm_auth_password(Authctxt *authctxt, char *password) | 294 | mm_auth_password(Authctxt *authctxt, char *password) |
diff --git a/monitor_wrap.h b/monitor_wrap.h index c52f6e153..8417b61f8 100644 --- a/monitor_wrap.h +++ b/monitor_wrap.h | |||
@@ -44,6 +44,7 @@ int mm_is_monitor(void); | |||
44 | DH *mm_choose_dh(int, int, int); | 44 | DH *mm_choose_dh(int, int, int); |
45 | int mm_key_sign(Key *, u_char **, u_int *, u_char *, u_int); | 45 | int mm_key_sign(Key *, u_char **, u_int *, u_char *, u_int); |
46 | void mm_inform_authserv(char *, char *, char *); | 46 | void mm_inform_authserv(char *, char *, char *); |
47 | void mm_inform_authrole(char *); | ||
47 | struct passwd *mm_getpwnamallow(const char *); | 48 | struct passwd *mm_getpwnamallow(const char *); |
48 | char *mm_auth2_read_banner(void); | 49 | char *mm_auth2_read_banner(void); |
49 | int mm_auth_password(struct Authctxt *, char *); | 50 | int mm_auth_password(struct Authctxt *, char *); |
@@ -1,10 +1,8 @@ | |||
1 | #include "includes.h" | 1 | #include "includes.h" |
2 | |||
3 | #include "auth.h" | 2 | #include "auth.h" |
4 | #include "log.h" | 3 | #include "log.h" |
5 | 4 | ||
6 | #ifdef WITH_SELINUX | 5 | #ifdef WITH_SELINUX |
7 | |||
8 | #include <selinux/selinux.h> | 6 | #include <selinux/selinux.h> |
9 | #include <selinux/flask.h> | 7 | #include <selinux/flask.h> |
10 | #include <selinux/context.h> | 8 | #include <selinux/context.h> |
@@ -13,99 +11,85 @@ | |||
13 | 11 | ||
14 | extern Authctxt *the_authctxt; | 12 | extern Authctxt *the_authctxt; |
15 | 13 | ||
16 | static security_context_t | 14 | static const security_context_t |
17 | selinux_get_user_context(const char *name) | 15 | selinux_get_user_context(const char *name) |
18 | { | 16 | { |
19 | security_context_t user_context = NULL; | 17 | security_context_t user_context=NULL; |
20 | char *role = NULL; | 18 | char *role=NULL; |
21 | int ret = 0; | 19 | int ret = -1; |
22 | 20 | char *seuser=NULL; | |
23 | if (the_authctxt) | 21 | char *level=NULL; |
24 | role = the_authctxt->role; | 22 | |
25 | if (role != NULL && role[0]) | 23 | if (the_authctxt) |
26 | ret = get_default_context_with_role(name, role, NULL, | 24 | role=the_authctxt->role; |
27 | &user_context); | 25 | if (getseuserbyname(name, &seuser, &level)==0) { |
28 | else | 26 | if (role != NULL && role[0]) |
29 | ret = get_default_context(name, NULL, &user_context); | 27 | ret=get_default_context_with_rolelevel(seuser, role, level,NULL, |
30 | if (ret < 0) { | 28 | &user_context); |
31 | if (security_getenforce() > 0) | 29 | else |
32 | fatal("Failed to get default security context for %s.", | 30 | ret=get_default_context_with_level(seuser, level, NULL,&user_context); |
33 | name); | 31 | } |
34 | else | 32 | if ( ret < 0 ) { |
35 | error("Failed to get default security context for %s. " | 33 | if (security_getenforce() > 0) |
36 | "Continuing in permissive mode", | 34 | fatal("Failed to get default security context for %s.", |
37 | name); | 35 | name); |
36 | else | ||
37 | error("Failed to get default security context for %s." | ||
38 | "Continuing in permissive mode", | ||
39 | name); | ||
38 | } | 40 | } |
39 | return user_context; | 41 | return user_context; |
40 | } | 42 | } |
41 | 43 | ||
42 | void | 44 | void |
43 | setup_selinux_pty(const char *name, const char *tty) | 45 | setup_selinux_pty(const char *name, const char *tty) |
44 | { | 46 | { |
45 | security_context_t new_tty_context, user_context, old_tty_context; | 47 | if (is_selinux_enabled() > 0) { |
46 | 48 | security_context_t new_tty_context=NULL, user_context=NULL, old_tty_context=NULL; | |
47 | if (is_selinux_enabled() <= 0) | 49 | |
48 | return; | 50 | user_context=selinux_get_user_context(name); |
49 | 51 | ||
50 | new_tty_context = old_tty_context = NULL; | 52 | if (getfilecon(tty, &old_tty_context) < 0) { |
51 | user_context = selinux_get_user_context(name); | 53 | error("getfilecon(%.100s) failed: %.100s", |
52 | 54 | tty, strerror(errno)); | |
53 | if (getfilecon(tty, &old_tty_context) < 0) { | 55 | } else { |
54 | error("getfilecon(%.100s) failed: %.100s", | 56 | if (security_compute_relabel(user_context,old_tty_context, |
55 | tty, strerror(errno)); | 57 | SECCLASS_CHR_FILE, &new_tty_context) != 0) { |
56 | } else { | 58 | error("security_compute_relabel(%.100s) failed: " |
57 | if (security_compute_relabel(user_context, old_tty_context, | 59 | "%.100s", tty, strerror(errno)); |
58 | SECCLASS_CHR_FILE, &new_tty_context) != 0) { | 60 | } else { |
59 | error("security_compute_relabel(%.100s) failed: " | 61 | if (setfilecon (tty, new_tty_context) != 0) |
60 | "%.100s", tty, strerror(errno)); | 62 | error("setfilecon(%.100s, %s) failed: %.100s", |
61 | } else { | 63 | tty, new_tty_context, strerror(errno)); |
62 | if (setfilecon(tty, new_tty_context) != 0) | 64 | freecon(new_tty_context); |
63 | error("setfilecon(%.100s, %s) failed: %.100s", | 65 | } |
64 | tty, new_tty_context, strerror(errno)); | 66 | freecon(old_tty_context); |
65 | freecon(new_tty_context); | 67 | } |
66 | } | 68 | if (user_context) { |
67 | freecon(old_tty_context); | 69 | freecon(user_context); |
68 | } | 70 | } |
69 | if (user_context) | 71 | } |
70 | freecon(user_context); | ||
71 | } | ||
72 | |||
73 | void | ||
74 | setup_selinux_exec_context(const char *name) | ||
75 | { | ||
76 | security_context_t user_context; | ||
77 | |||
78 | if (is_selinux_enabled() <= 0) | ||
79 | return; | ||
80 | |||
81 | user_context = selinux_get_user_context(name); | ||
82 | |||
83 | if (setexeccon(user_context)) { | ||
84 | if (security_getenforce() > 0) | ||
85 | fatal("Failed to set exec security context %s for %s.", | ||
86 | user_context, name); | ||
87 | else | ||
88 | error("Failed to set exec security context %s for %s. " | ||
89 | "Continuing in permissive mode", | ||
90 | user_context, name); | ||
91 | } | ||
92 | if (user_context) | ||
93 | freecon(user_context); | ||
94 | } | 72 | } |
95 | 73 | ||
96 | #else /* WITH_SELINUX */ | 74 | void |
97 | 75 | setup_selinux_exec_context(char *name) | |
98 | void | ||
99 | setup_selinux_pty(const char *name, const char *tty) | ||
100 | { | 76 | { |
101 | (void) name; | ||
102 | (void) tty; | ||
103 | } | ||
104 | 77 | ||
105 | void | 78 | if (is_selinux_enabled() > 0) { |
106 | setup_selinux_exec_context(const char *name) | 79 | security_context_t user_context=selinux_get_user_context(name); |
107 | { | 80 | if (setexeccon(user_context)) { |
108 | (void) name; | 81 | if (security_getenforce() > 0) |
82 | fatal("Failed to set exec security context %s for %s.", | ||
83 | user_context, name); | ||
84 | else | ||
85 | error("Failed to set exec security context %s for %s. " | ||
86 | "Continuing in permissive mode", | ||
87 | user_context, name); | ||
88 | } | ||
89 | if (user_context) { | ||
90 | freecon(user_context); | ||
91 | } | ||
92 | } | ||
109 | } | 93 | } |
110 | 94 | ||
111 | #endif /* WITH_SELINUX */ | 95 | #endif /* WITH_SELINUX */ |
@@ -1,7 +1,15 @@ | |||
1 | #ifndef SELINUX_H | 1 | #ifndef SELINUX_H |
2 | #define SELINUX_H | 2 | #define SELINUX_H |
3 | 3 | ||
4 | # ifdef WITH_SELINUX | ||
5 | |||
4 | extern void setup_selinux_pty(const char *, const char *); | 6 | extern void setup_selinux_pty(const char *, const char *); |
5 | extern void setup_selinux_exec_context(const char *); | 7 | extern void setup_selinux_exec_context(const char *); |
6 | 8 | ||
9 | # else | ||
10 | |||
11 | static inline void setup_selinux_pty(const char *name, const char *tty) {} | ||
12 | static inline void setup_selinux_exec_context(const char *name) {} | ||
13 | |||
14 | #endif /* WITH_SELINUX */ | ||
7 | #endif /* SELINUX_H */ | 15 | #endif /* SELINUX_H */ |