add patch suggested by alesan to fix memleaks (closes: #1063)
[openwrt/svn-archive/archive.git] / net / tor / patches / 01-cross_compile.patch
1 --- tor-0.1.1.24/configure.in 2006-09-30 02:07:37.000000000 +0200
2 +++ tor-0.1.1.24.new/configure.in 2006-11-02 23:19:39.000000000 +0100
3 @@ -54,28 +54,6 @@
4 AC_PROG_MAKE_SET
5 AC_PROG_RANLIB
6
7 -# The big search for OpenSSL
8 -# copied from openssh's configure.ac
9 -tryssldir=""
10 -AC_ARG_WITH(ssl-dir,
11 - [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
12 - [
13 - if test "x$withval" != "xno" ; then
14 - tryssldir=$withval
15 - fi
16 - ]
17 -)
18 -
19 -trylibeventdir=""
20 -AC_ARG_WITH(libevent-dir,
21 - [ --with-libevent-dir=PATH Specify path to Libevent installation ],
22 - [
23 - if test "x$withval" != "xno" ; then
24 - trylibeventdir=$withval
25 - fi
26 - ]
27 -)
28 -
29 TORUSER=_tor
30 AC_ARG_WITH(tor-user,
31 [ --with-tor-user=NAME Specify username for tor daemon ],
32 @@ -106,226 +84,9 @@
33 dnl ------------------------------------------------------
34 dnl Where do you live, libevent? And how do we call you?
35
36 -AC_CACHE_CHECK([for libevent directory], ac_cv_libevent_dir, [
37 - saved_LIBS="$LIBS"
38 - saved_LDFLAGS="$LDFLAGS"
39 - saved_CPPFLAGS="$CPPFLAGS"
40 - le_found=no
41 - for ledir in $trylibeventdir "" $prefix /usr/local ; do
42 - LDFLAGS="$saved_LDFLAGS"
43 - LIBS="$saved_LIBS -levent"
44 -
45 - # Skip the directory if it isn't there.
46 - if test ! -z "$ledir" -a ! -d "$ledir" ; then
47 - continue;
48 - fi
49 - if test ! -z "$ledir" ; then
50 - if test -d "$ledir/lib" ; then
51 - LDFLAGS="-L$ledir/lib $LDFLAGS"
52 - else
53 - LDFLAGS="-L$ledir $LDFLAGS"
54 - fi
55 - if test -d "$ledir/include" ; then
56 - CPPFLAGS="-I$ledir/include $CPPFLAGS"
57 - else
58 - CPPFLAGS="-I$ledir $CPPFLAGS"
59 - fi
60 - fi
61 - # Can I compile and link it?
62 - AC_TRY_LINK([#include <sys/time.h>
63 -#include <sys/types.h>
64 -#include <event.h>], [ event_init(); ],
65 - [ libevent_linked=yes ], [ libevent_linked=no ])
66 - if test $libevent_linked = yes; then
67 - if test ! -z "$ledir" ; then
68 - ac_cv_libevent_dir=$ledir
69 - else
70 - ac_cv_libevent_dir="(system)"
71 - fi
72 - le_found=yes
73 - break
74 - fi
75 - done
76 - LIBS="$saved_LIBS"
77 - LDFLAGS="$saved_LDFLAGS"
78 - CPPFLAGS="$saved_CPPFLAGS"
79 - if test $le_found = no ; then
80 - AC_MSG_ERROR([Could not find a linkable libevent. You can specify an explicit path using --with-libevent-dir])
81 - fi
82 -])
83 -LIBS="$LIBS -levent"
84 -if test $ac_cv_libevent_dir != "(system)"; then
85 - if test -d "$ac_cv_libevent_dir/lib" ; then
86 - LDFLAGS="-L$ac_cv_libevent_dir/lib $LDFLAGS"
87 - le_libdir="$ac_cv_libevent_dir/lib"
88 - else
89 - LDFLAGS="-L$ac_cv_libevent_dir $LDFLAGS"
90 - le_libdir="$ac_cv_libevent_dir"
91 - fi
92 - if test -d "$ac_cv_libevent_dir/include" ; then
93 - CPPFLAGS="-I$ac_cv_libevent_dir/include $CPPFLAGS"
94 - else
95 - CPPFLAGS="-I$ac_cv_libevent_dir $CPPFLAGS"
96 - fi
97 -fi
98 -
99 -AC_CACHE_CHECK([whether we need extra options to link libevent],
100 - ac_cv_libevent_linker_option, [
101 - saved_LDFLAGS="$LDFLAGS"
102 - le_runs=no
103 - linked_with=nothing
104 - for le_extra in "" "-Wl,-R$le_libdir" "-R$le_libdir" ; do
105 - LDFLAGS="$le_extra $saved_LDFLAGS"
106 - AC_TRY_RUN([void *event_init(void);
107 - int main(int c, char **v) {
108 - event_init(); return 0;
109 - }],
110 - libevent_runs=yes, libevent_runs=no)
111 - if test $libevent_runs = yes ; then
112 - if test -z "$le_extra" ; then
113 - ac_cv_libevent_linker_option='(none)'
114 - else
115 - ac_cv_libevent_linker_option=$le_extra
116 - fi
117 - le_runs=yes
118 - break
119 - fi
120 - done
121 - if test $le_runs = no ; then
122 - AC_MSG_ERROR([Found linkable libevent in $ac_cv_libevent_dir, but it doesn't run, even with -R. Maybe specify another using --with-libevent-dir?])
123 - fi
124 - LDFLAGS="$saved_LDFLAGS"
125 -])
126 -
127 -if test $ac_cv_libevent_linker_option != '(none)' ; then
128 - LDFLAGS="$ac_cv_libevent_linker_option $LDFLAGS"
129 -fi
130 -
131 dnl ------------------------------------------------------
132 dnl Where do you live, openssl? And how do we call you?
133
134 -AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssl_dir, [
135 - saved_LIBS="$LIBS"
136 - saved_LDFLAGS="$LDFLAGS"
137 - saved_CPPFLAGS="$CPPFLAGS"
138 - ssl_found=no
139 - for ssldir in $tryssldir "" $prefix /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /usr/pkg /opt /opt/openssl ; do
140 - LDFLAGS="$saved_LDFLAGS"
141 - LIBS="$saved_LIBS -lssl -lcrypto"
142 -
143 - # Skip the directory if it isn't there.
144 - if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
145 - continue;
146 - fi
147 - if test ! -z "$ssldir" ; then
148 - if test -d "$ssldir/lib" ; then
149 - LDFLAGS="-L$ssldir/lib $LDFLAGS"
150 - else
151 - LDFLAGS="-L$ssldir $LDFLAGS"
152 - fi
153 - if test -d "$ssldir/include" ; then
154 - CPPFLAGS="-I$ssldir/include $CPPFLAGS"
155 - else
156 - CPPFLAGS="-I$ssldir $CPPFLAGS"
157 - fi
158 - fi
159 - # Can I link it?
160 - AC_TRY_LINK([#include <openssl/rand.h>],
161 - [ RAND_add((void*)0,0,0); ],
162 - [ openssl_linked=yes ], [ openssl_linked=no ])
163 - if test $openssl_linked = yes; then
164 - if test ! -z "$ssldir" ; then
165 - ac_cv_openssl_dir=$ssldir
166 - else
167 - ac_cv_openssl_dir="(system)"
168 - fi
169 - ssl_found=yes
170 - break
171 - fi
172 - done
173 - LIBS="$saved_LIBS"
174 - LDFLAGS="$saved_LDFLAGS"
175 - CPPFLAGS="$saved_CPPFLAGS"
176 - if test $ssl_found = no ; then
177 - AC_MSG_ERROR([Could not find a linkable OpenSSL. You can specify an explicit path using --with-ssl-dir])
178 - fi
179 -])
180 -LIBS="$LIBS -lssl -lcrypto"
181 -if test "$ac_cv_openssl_dir" != "(system)"; then
182 - if test -d "$ac_cv_openssl_dir/lib" ; then
183 - LDFLAGS="-L$ac_cv_openssl_dir/lib $LDFLAGS"
184 - ssl_libdir="$ac_cv_openssl_dir/lib"
185 - else
186 - LDFLAGS="-L$ac_cv_openssl_dir $LDFLAGS"
187 - ssl_libdir="$ac_cv_openssl_dir"
188 - fi
189 - if test -d "$ac_cv_openssl_dir/include" ; then
190 - CPPFLAGS="-I$ac_cv_openssl_dir/include $CPPFLAGS"
191 - else
192 - CPPFLAGS="-I$ac_cv_openssl_dir $CPPFLAGS"
193 - fi
194 -fi
195 -
196 -AC_CACHE_CHECK([whether we need extra options to link OpenSSL],
197 - ac_cv_openssl_linker_option, [
198 - saved_LDFLAGS="$LDFLAGS"
199 - ssl_runs=no
200 - linked_with=nothing
201 - for ssl_extra in "" "-Wl,-R$ssl_libdir" "-R$ssl_libdir" ; do
202 - LDFLAGS="$ssl_extra $saved_LDFLAGS"
203 - AC_TRY_RUN([
204 -#include <string.h>
205 -#include <openssl/rand.h>
206 -int main(void)
207 -{
208 - char a[2048];
209 - memset(a, 0, sizeof(a));
210 - RAND_add(a, sizeof(a), sizeof(a));
211 - return(RAND_status() <= 0);
212 -}
213 - ],
214 - openssl_runs=yes, openssl_runs=no)
215 - if test $openssl_runs = yes ; then
216 - if test "$linked_with" = nothing; then
217 - linked_with="$ssl_extra"
218 - fi
219 - AC_TRY_RUN([
220 -#include <openssl/opensslv.h>
221 -#include <openssl/crypto.h>
222 -int main(void) {
223 -return (OPENSSL_VERSION_NUMBER == SSLeay()) == 0;
224 -}],
225 - right_version=yes, right_version=no)
226 - if test "$right_version" = yes; then
227 - if test -z "$ssl_extra" ; then
228 - ac_cv_openssl_linker_option='(none)'
229 - else
230 - ac_cv_openssl_linker_option=$ssl_extra
231 - fi
232 - ssl_runs=yes
233 - break
234 - fi
235 - fi
236 - done
237 - if test $ssl_runs = no ; then
238 - if test "$linked_with" = 'nothing' ; then
239 - AC_MSG_ERROR([Found linkable OpenSSL in $ac_cv_openssl_dir, but it doesn't run, even with -R. Maybe specify another using --with-ssl-dir?])
240 - else
241 - if test -z "$linked_with" ; then
242 - ac_cv_openssl_linker_option='(none)'
243 - else
244 - ac_cv_openssl_linker_option=$linked_with
245 - fi
246 - AC_MSG_WARN([I managed to make OpenSSL link and run, but I couldn't make it link against the same version I found header files for.])
247 - fi
248 - fi
249 - LDFLAGS="$saved_LDFLAGS"
250 -])
251 -
252 -if test "$ac_cv_openssl_linker_option" != '(none)' ; then
253 - LDFLAGS="$ac_cv_openssl_linker_option $LDFLAGS"
254 -fi
255 -
256 dnl Make sure to enable support for large off_t if avalable.
257
258 AC_SYS_LARGEFILE
259 --- tor-0.1.1.24/configure 2006-09-30 02:07:41.000000000 +0200
260 +++ tor-0.1.1.24.new/configure 2006-11-02 23:20:26.000000000 +0100
261 @@ -855,8 +855,6 @@
262 Optional Packages:
263 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
264 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
265 - --with-ssl-dir=PATH Specify path to OpenSSL installation
266 - --with-libevent-dir=PATH Specify path to Libevent installation
267 --with-tor-user=NAME Specify username for tor daemon
268 --with-tor-group=NAME Specify group name for tor daemon
269 --with-dmalloc Use debug memory allocation library.
270 @@ -962,7 +960,7 @@
271 else
272 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
273 fi
274 - cd "$ac_popdir"
275 + cd $ac_popdir
276 done
277 fi
278
279 @@ -2287,7 +2285,8 @@
280 cat conftest.err >&5
281 echo "$as_me:$LINENO: \$? = $ac_status" >&5
282 (exit $ac_status); } &&
283 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
284 + { ac_try='test -z "$ac_c_werror_flag"
285 + || test ! -s conftest.err'
286 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
287 (eval $ac_try) 2>&5
288 ac_status=$?
289 @@ -2345,7 +2344,8 @@
290 cat conftest.err >&5
291 echo "$as_me:$LINENO: \$? = $ac_status" >&5
292 (exit $ac_status); } &&
293 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
294 + { ac_try='test -z "$ac_c_werror_flag"
295 + || test ! -s conftest.err'
296 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
297 (eval $ac_try) 2>&5
298 ac_status=$?
299 @@ -2461,7 +2461,8 @@
300 cat conftest.err >&5
301 echo "$as_me:$LINENO: \$? = $ac_status" >&5
302 (exit $ac_status); } &&
303 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
304 + { ac_try='test -z "$ac_c_werror_flag"
305 + || test ! -s conftest.err'
306 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
307 (eval $ac_try) 2>&5
308 ac_status=$?
309 @@ -2515,7 +2516,8 @@
310 cat conftest.err >&5
311 echo "$as_me:$LINENO: \$? = $ac_status" >&5
312 (exit $ac_status); } &&
313 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
314 + { ac_try='test -z "$ac_c_werror_flag"
315 + || test ! -s conftest.err'
316 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
317 (eval $ac_try) 2>&5
318 ac_status=$?
319 @@ -2560,7 +2562,8 @@
320 cat conftest.err >&5
321 echo "$as_me:$LINENO: \$? = $ac_status" >&5
322 (exit $ac_status); } &&
323 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
324 + { ac_try='test -z "$ac_c_werror_flag"
325 + || test ! -s conftest.err'
326 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
327 (eval $ac_try) 2>&5
328 ac_status=$?
329 @@ -2604,7 +2607,8 @@
330 cat conftest.err >&5
331 echo "$as_me:$LINENO: \$? = $ac_status" >&5
332 (exit $ac_status); } &&
333 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
334 + { ac_try='test -z "$ac_c_werror_flag"
335 + || test ! -s conftest.err'
336 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
337 (eval $ac_try) 2>&5
338 ac_status=$?
339 @@ -2753,34 +2757,6 @@
340 fi
341
342
343 -# The big search for OpenSSL
344 -# copied from openssh's configure.ac
345 -tryssldir=""
346 -
347 -# Check whether --with-ssl-dir or --without-ssl-dir was given.
348 -if test "${with_ssl_dir+set}" = set; then
349 - withval="$with_ssl_dir"
350 -
351 - if test "x$withval" != "xno" ; then
352 - tryssldir=$withval
353 - fi
354 -
355 -
356 -fi;
357 -
358 -trylibeventdir=""
359 -
360 -# Check whether --with-libevent-dir or --without-libevent-dir was given.
361 -if test "${with_libevent_dir+set}" = set; then
362 - withval="$with_libevent_dir"
363 -
364 - if test "x$withval" != "xno" ; then
365 - trylibeventdir=$withval
366 - fi
367 -
368 -
369 -fi;
370 -
371 TORUSER=_tor
372
373 # Check whether --with-tor-user or --without-tor-user was given.
374 @@ -2844,7 +2820,8 @@
375 cat conftest.err >&5
376 echo "$as_me:$LINENO: \$? = $ac_status" >&5
377 (exit $ac_status); } &&
378 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
379 + { ac_try='test -z "$ac_c_werror_flag"
380 + || test ! -s conftest.err'
381 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
382 (eval $ac_try) 2>&5
383 ac_status=$?
384 @@ -2898,7 +2875,8 @@
385 cat conftest.err >&5
386 echo "$as_me:$LINENO: \$? = $ac_status" >&5
387 (exit $ac_status); } &&
388 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
389 + { ac_try='test -z "$ac_c_werror_flag"
390 + || test ! -s conftest.err'
391 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
392 (eval $ac_try) 2>&5
393 ac_status=$?
394 @@ -2968,7 +2946,8 @@
395 cat conftest.err >&5
396 echo "$as_me:$LINENO: \$? = $ac_status" >&5
397 (exit $ac_status); } &&
398 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
399 + { ac_try='test -z "$ac_c_werror_flag"
400 + || test ! -s conftest.err'
401 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
402 (eval $ac_try) 2>&5
403 ac_status=$?
404 @@ -3022,7 +3001,8 @@
405 cat conftest.err >&5
406 echo "$as_me:$LINENO: \$? = $ac_status" >&5
407 (exit $ac_status); } &&
408 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
409 + { ac_try='test -z "$ac_c_werror_flag"
410 + || test ! -s conftest.err'
411 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
412 (eval $ac_try) 2>&5
413 ac_status=$?
414 @@ -3092,7 +3072,8 @@
415 cat conftest.err >&5
416 echo "$as_me:$LINENO: \$? = $ac_status" >&5
417 (exit $ac_status); } &&
418 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
419 + { ac_try='test -z "$ac_c_werror_flag"
420 + || test ! -s conftest.err'
421 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
422 (eval $ac_try) 2>&5
423 ac_status=$?
424 @@ -3146,7 +3127,8 @@
425 cat conftest.err >&5
426 echo "$as_me:$LINENO: \$? = $ac_status" >&5
427 (exit $ac_status); } &&
428 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
429 + { ac_try='test -z "$ac_c_werror_flag"
430 + || test ! -s conftest.err'
431 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
432 (eval $ac_try) 2>&5
433 ac_status=$?
434 @@ -3218,7 +3200,8 @@
435 cat conftest.err >&5
436 echo "$as_me:$LINENO: \$? = $ac_status" >&5
437 (exit $ac_status); } &&
438 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
439 + { ac_try='test -z "$ac_c_werror_flag"
440 + || test ! -s conftest.err'
441 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
442 (eval $ac_try) 2>&5
443 ac_status=$?
444 @@ -3272,7 +3255,8 @@
445 cat conftest.err >&5
446 echo "$as_me:$LINENO: \$? = $ac_status" >&5
447 (exit $ac_status); } &&
448 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
449 + { ac_try='test -z "$ac_c_werror_flag"
450 + || test ! -s conftest.err'
451 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
452 (eval $ac_try) 2>&5
453 ac_status=$?
454 @@ -3342,7 +3326,8 @@
455 cat conftest.err >&5
456 echo "$as_me:$LINENO: \$? = $ac_status" >&5
457 (exit $ac_status); } &&
458 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
459 + { ac_try='test -z "$ac_c_werror_flag"
460 + || test ! -s conftest.err'
461 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
462 (eval $ac_try) 2>&5
463 ac_status=$?
464 @@ -3396,7 +3381,8 @@
465 cat conftest.err >&5
466 echo "$as_me:$LINENO: \$? = $ac_status" >&5
467 (exit $ac_status); } &&
468 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
469 + { ac_try='test -z "$ac_c_werror_flag"
470 + || test ! -s conftest.err'
471 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
472 (eval $ac_try) 2>&5
473 ac_status=$?
474 @@ -3431,452 +3417,6 @@
475 fi
476
477
478 -echo "$as_me:$LINENO: checking for libevent directory" >&5
479 -echo $ECHO_N "checking for libevent directory... $ECHO_C" >&6
480 -if test "${ac_cv_libevent_dir+set}" = set; then
481 - echo $ECHO_N "(cached) $ECHO_C" >&6
482 -else
483 -
484 - saved_LIBS="$LIBS"
485 - saved_LDFLAGS="$LDFLAGS"
486 - saved_CPPFLAGS="$CPPFLAGS"
487 - le_found=no
488 - for ledir in $trylibeventdir "" $prefix /usr/local ; do
489 - LDFLAGS="$saved_LDFLAGS"
490 - LIBS="$saved_LIBS -levent"
491 -
492 - # Skip the directory if it isn't there.
493 - if test ! -z "$ledir" -a ! -d "$ledir" ; then
494 - continue;
495 - fi
496 - if test ! -z "$ledir" ; then
497 - if test -d "$ledir/lib" ; then
498 - LDFLAGS="-L$ledir/lib $LDFLAGS"
499 - else
500 - LDFLAGS="-L$ledir $LDFLAGS"
501 - fi
502 - if test -d "$ledir/include" ; then
503 - CPPFLAGS="-I$ledir/include $CPPFLAGS"
504 - else
505 - CPPFLAGS="-I$ledir $CPPFLAGS"
506 - fi
507 - fi
508 - # Can I compile and link it?
509 - cat >conftest.$ac_ext <<_ACEOF
510 -/* confdefs.h. */
511 -_ACEOF
512 -cat confdefs.h >>conftest.$ac_ext
513 -cat >>conftest.$ac_ext <<_ACEOF
514 -/* end confdefs.h. */
515 -#include <sys/time.h>
516 -#include <sys/types.h>
517 -#include <event.h>
518 -int
519 -main ()
520 -{
521 - event_init();
522 - ;
523 - return 0;
524 -}
525 -_ACEOF
526 -rm -f conftest.$ac_objext conftest$ac_exeext
527 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
528 - (eval $ac_link) 2>conftest.er1
529 - ac_status=$?
530 - grep -v '^ *+' conftest.er1 >conftest.err
531 - rm -f conftest.er1
532 - cat conftest.err >&5
533 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
534 - (exit $ac_status); } &&
535 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
536 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
537 - (eval $ac_try) 2>&5
538 - ac_status=$?
539 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
540 - (exit $ac_status); }; } &&
541 - { ac_try='test -s conftest$ac_exeext'
542 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
543 - (eval $ac_try) 2>&5
544 - ac_status=$?
545 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
546 - (exit $ac_status); }; }; then
547 - libevent_linked=yes
548 -else
549 - echo "$as_me: failed program was:" >&5
550 -sed 's/^/| /' conftest.$ac_ext >&5
551 -
552 - libevent_linked=no
553 -fi
554 -rm -f conftest.err conftest.$ac_objext \
555 - conftest$ac_exeext conftest.$ac_ext
556 - if test $libevent_linked = yes; then
557 - if test ! -z "$ledir" ; then
558 - ac_cv_libevent_dir=$ledir
559 - else
560 - ac_cv_libevent_dir="(system)"
561 - fi
562 - le_found=yes
563 - break
564 - fi
565 - done
566 - LIBS="$saved_LIBS"
567 - LDFLAGS="$saved_LDFLAGS"
568 - CPPFLAGS="$saved_CPPFLAGS"
569 - if test $le_found = no ; then
570 - { { echo "$as_me:$LINENO: error: Could not find a linkable libevent. You can specify an explicit path using --with-libevent-dir" >&5
571 -echo "$as_me: error: Could not find a linkable libevent. You can specify an explicit path using --with-libevent-dir" >&2;}
572 - { (exit 1); exit 1; }; }
573 - fi
574 -
575 -fi
576 -echo "$as_me:$LINENO: result: $ac_cv_libevent_dir" >&5
577 -echo "${ECHO_T}$ac_cv_libevent_dir" >&6
578 -LIBS="$LIBS -levent"
579 -if test $ac_cv_libevent_dir != "(system)"; then
580 - if test -d "$ac_cv_libevent_dir/lib" ; then
581 - LDFLAGS="-L$ac_cv_libevent_dir/lib $LDFLAGS"
582 - le_libdir="$ac_cv_libevent_dir/lib"
583 - else
584 - LDFLAGS="-L$ac_cv_libevent_dir $LDFLAGS"
585 - le_libdir="$ac_cv_libevent_dir"
586 - fi
587 - if test -d "$ac_cv_libevent_dir/include" ; then
588 - CPPFLAGS="-I$ac_cv_libevent_dir/include $CPPFLAGS"
589 - else
590 - CPPFLAGS="-I$ac_cv_libevent_dir $CPPFLAGS"
591 - fi
592 -fi
593 -
594 -echo "$as_me:$LINENO: checking whether we need extra options to link libevent" >&5
595 -echo $ECHO_N "checking whether we need extra options to link libevent... $ECHO_C" >&6
596 -if test "${ac_cv_libevent_linker_option+set}" = set; then
597 - echo $ECHO_N "(cached) $ECHO_C" >&6
598 -else
599 -
600 - saved_LDFLAGS="$LDFLAGS"
601 - le_runs=no
602 - linked_with=nothing
603 - for le_extra in "" "-Wl,-R$le_libdir" "-R$le_libdir" ; do
604 - LDFLAGS="$le_extra $saved_LDFLAGS"
605 - if test "$cross_compiling" = yes; then
606 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
607 -See \`config.log' for more details." >&5
608 -echo "$as_me: error: cannot run test program while cross compiling
609 -See \`config.log' for more details." >&2;}
610 - { (exit 1); exit 1; }; }
611 -else
612 - cat >conftest.$ac_ext <<_ACEOF
613 -/* confdefs.h. */
614 -_ACEOF
615 -cat confdefs.h >>conftest.$ac_ext
616 -cat >>conftest.$ac_ext <<_ACEOF
617 -/* end confdefs.h. */
618 -void *event_init(void);
619 - int main(int c, char **v) {
620 - event_init(); return 0;
621 - }
622 -_ACEOF
623 -rm -f conftest$ac_exeext
624 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
625 - (eval $ac_link) 2>&5
626 - ac_status=$?
627 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
628 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
629 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
630 - (eval $ac_try) 2>&5
631 - ac_status=$?
632 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
633 - (exit $ac_status); }; }; then
634 - libevent_runs=yes
635 -else
636 - echo "$as_me: program exited with status $ac_status" >&5
637 -echo "$as_me: failed program was:" >&5
638 -sed 's/^/| /' conftest.$ac_ext >&5
639 -
640 -( exit $ac_status )
641 -libevent_runs=no
642 -fi
643 -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
644 -fi
645 - if test $libevent_runs = yes ; then
646 - if test -z "$le_extra" ; then
647 - ac_cv_libevent_linker_option='(none)'
648 - else
649 - ac_cv_libevent_linker_option=$le_extra
650 - fi
651 - le_runs=yes
652 - break
653 - fi
654 - done
655 - if test $le_runs = no ; then
656 - { { echo "$as_me:$LINENO: error: Found linkable libevent in $ac_cv_libevent_dir, but it doesn't run, even with -R. Maybe specify another using --with-libevent-dir?" >&5
657 -echo "$as_me: error: Found linkable libevent in $ac_cv_libevent_dir, but it doesn't run, even with -R. Maybe specify another using --with-libevent-dir?" >&2;}
658 - { (exit 1); exit 1; }; }
659 - fi
660 - LDFLAGS="$saved_LDFLAGS"
661 -
662 -fi
663 -echo "$as_me:$LINENO: result: $ac_cv_libevent_linker_option" >&5
664 -echo "${ECHO_T}$ac_cv_libevent_linker_option" >&6
665 -
666 -if test $ac_cv_libevent_linker_option != '(none)' ; then
667 - LDFLAGS="$ac_cv_libevent_linker_option $LDFLAGS"
668 -fi
669 -
670 -
671 -echo "$as_me:$LINENO: checking for OpenSSL directory" >&5
672 -echo $ECHO_N "checking for OpenSSL directory... $ECHO_C" >&6
673 -if test "${ac_cv_openssl_dir+set}" = set; then
674 - echo $ECHO_N "(cached) $ECHO_C" >&6
675 -else
676 -
677 - saved_LIBS="$LIBS"
678 - saved_LDFLAGS="$LDFLAGS"
679 - saved_CPPFLAGS="$CPPFLAGS"
680 - ssl_found=no
681 - for ssldir in $tryssldir "" $prefix /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /usr/pkg /opt /opt/openssl ; do
682 - LDFLAGS="$saved_LDFLAGS"
683 - LIBS="$saved_LIBS -lssl -lcrypto"
684 -
685 - # Skip the directory if it isn't there.
686 - if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
687 - continue;
688 - fi
689 - if test ! -z "$ssldir" ; then
690 - if test -d "$ssldir/lib" ; then
691 - LDFLAGS="-L$ssldir/lib $LDFLAGS"
692 - else
693 - LDFLAGS="-L$ssldir $LDFLAGS"
694 - fi
695 - if test -d "$ssldir/include" ; then
696 - CPPFLAGS="-I$ssldir/include $CPPFLAGS"
697 - else
698 - CPPFLAGS="-I$ssldir $CPPFLAGS"
699 - fi
700 - fi
701 - # Can I link it?
702 - cat >conftest.$ac_ext <<_ACEOF
703 -/* confdefs.h. */
704 -_ACEOF
705 -cat confdefs.h >>conftest.$ac_ext
706 -cat >>conftest.$ac_ext <<_ACEOF
707 -/* end confdefs.h. */
708 -#include <openssl/rand.h>
709 -int
710 -main ()
711 -{
712 - RAND_add((void*)0,0,0);
713 - ;
714 - return 0;
715 -}
716 -_ACEOF
717 -rm -f conftest.$ac_objext conftest$ac_exeext
718 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
719 - (eval $ac_link) 2>conftest.er1
720 - ac_status=$?
721 - grep -v '^ *+' conftest.er1 >conftest.err
722 - rm -f conftest.er1
723 - cat conftest.err >&5
724 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
725 - (exit $ac_status); } &&
726 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
727 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
728 - (eval $ac_try) 2>&5
729 - ac_status=$?
730 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
731 - (exit $ac_status); }; } &&
732 - { ac_try='test -s conftest$ac_exeext'
733 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
734 - (eval $ac_try) 2>&5
735 - ac_status=$?
736 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
737 - (exit $ac_status); }; }; then
738 - openssl_linked=yes
739 -else
740 - echo "$as_me: failed program was:" >&5
741 -sed 's/^/| /' conftest.$ac_ext >&5
742 -
743 - openssl_linked=no
744 -fi
745 -rm -f conftest.err conftest.$ac_objext \
746 - conftest$ac_exeext conftest.$ac_ext
747 - if test $openssl_linked = yes; then
748 - if test ! -z "$ssldir" ; then
749 - ac_cv_openssl_dir=$ssldir
750 - else
751 - ac_cv_openssl_dir="(system)"
752 - fi
753 - ssl_found=yes
754 - break
755 - fi
756 - done
757 - LIBS="$saved_LIBS"
758 - LDFLAGS="$saved_LDFLAGS"
759 - CPPFLAGS="$saved_CPPFLAGS"
760 - if test $ssl_found = no ; then
761 - { { echo "$as_me:$LINENO: error: Could not find a linkable OpenSSL. You can specify an explicit path using --with-ssl-dir" >&5
762 -echo "$as_me: error: Could not find a linkable OpenSSL. You can specify an explicit path using --with-ssl-dir" >&2;}
763 - { (exit 1); exit 1; }; }
764 - fi
765 -
766 -fi
767 -echo "$as_me:$LINENO: result: $ac_cv_openssl_dir" >&5
768 -echo "${ECHO_T}$ac_cv_openssl_dir" >&6
769 -LIBS="$LIBS -lssl -lcrypto"
770 -if test "$ac_cv_openssl_dir" != "(system)"; then
771 - if test -d "$ac_cv_openssl_dir/lib" ; then
772 - LDFLAGS="-L$ac_cv_openssl_dir/lib $LDFLAGS"
773 - ssl_libdir="$ac_cv_openssl_dir/lib"
774 - else
775 - LDFLAGS="-L$ac_cv_openssl_dir $LDFLAGS"
776 - ssl_libdir="$ac_cv_openssl_dir"
777 - fi
778 - if test -d "$ac_cv_openssl_dir/include" ; then
779 - CPPFLAGS="-I$ac_cv_openssl_dir/include $CPPFLAGS"
780 - else
781 - CPPFLAGS="-I$ac_cv_openssl_dir $CPPFLAGS"
782 - fi
783 -fi
784 -
785 -echo "$as_me:$LINENO: checking whether we need extra options to link OpenSSL" >&5
786 -echo $ECHO_N "checking whether we need extra options to link OpenSSL... $ECHO_C" >&6
787 -if test "${ac_cv_openssl_linker_option+set}" = set; then
788 - echo $ECHO_N "(cached) $ECHO_C" >&6
789 -else
790 -
791 - saved_LDFLAGS="$LDFLAGS"
792 - ssl_runs=no
793 - linked_with=nothing
794 - for ssl_extra in "" "-Wl,-R$ssl_libdir" "-R$ssl_libdir" ; do
795 - LDFLAGS="$ssl_extra $saved_LDFLAGS"
796 - if test "$cross_compiling" = yes; then
797 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
798 -See \`config.log' for more details." >&5
799 -echo "$as_me: error: cannot run test program while cross compiling
800 -See \`config.log' for more details." >&2;}
801 - { (exit 1); exit 1; }; }
802 -else
803 - cat >conftest.$ac_ext <<_ACEOF
804 -/* confdefs.h. */
805 -_ACEOF
806 -cat confdefs.h >>conftest.$ac_ext
807 -cat >>conftest.$ac_ext <<_ACEOF
808 -/* end confdefs.h. */
809 -
810 -#include <string.h>
811 -#include <openssl/rand.h>
812 -int main(void)
813 -{
814 - char a[2048];
815 - memset(a, 0, sizeof(a));
816 - RAND_add(a, sizeof(a), sizeof(a));
817 - return(RAND_status() <= 0);
818 -}
819 -
820 -_ACEOF
821 -rm -f conftest$ac_exeext
822 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
823 - (eval $ac_link) 2>&5
824 - ac_status=$?
825 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
826 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
827 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
828 - (eval $ac_try) 2>&5
829 - ac_status=$?
830 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
831 - (exit $ac_status); }; }; then
832 - openssl_runs=yes
833 -else
834 - echo "$as_me: program exited with status $ac_status" >&5
835 -echo "$as_me: failed program was:" >&5
836 -sed 's/^/| /' conftest.$ac_ext >&5
837 -
838 -( exit $ac_status )
839 -openssl_runs=no
840 -fi
841 -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
842 -fi
843 - if test $openssl_runs = yes ; then
844 - if test "$linked_with" = nothing; then
845 - linked_with="$ssl_extra"
846 - fi
847 - if test "$cross_compiling" = yes; then
848 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
849 -See \`config.log' for more details." >&5
850 -echo "$as_me: error: cannot run test program while cross compiling
851 -See \`config.log' for more details." >&2;}
852 - { (exit 1); exit 1; }; }
853 -else
854 - cat >conftest.$ac_ext <<_ACEOF
855 -/* confdefs.h. */
856 -_ACEOF
857 -cat confdefs.h >>conftest.$ac_ext
858 -cat >>conftest.$ac_ext <<_ACEOF
859 -/* end confdefs.h. */
860 -
861 -#include <openssl/opensslv.h>
862 -#include <openssl/crypto.h>
863 -int main(void) {
864 -return (OPENSSL_VERSION_NUMBER == SSLeay()) == 0;
865 -}
866 -_ACEOF
867 -rm -f conftest$ac_exeext
868 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
869 - (eval $ac_link) 2>&5
870 - ac_status=$?
871 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
872 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
873 - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
874 - (eval $ac_try) 2>&5
875 - ac_status=$?
876 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
877 - (exit $ac_status); }; }; then
878 - right_version=yes
879 -else
880 - echo "$as_me: program exited with status $ac_status" >&5
881 -echo "$as_me: failed program was:" >&5
882 -sed 's/^/| /' conftest.$ac_ext >&5
883 -
884 -( exit $ac_status )
885 -right_version=no
886 -fi
887 -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
888 -fi
889 - if test "$right_version" = yes; then
890 - if test -z "$ssl_extra" ; then
891 - ac_cv_openssl_linker_option='(none)'
892 - else
893 - ac_cv_openssl_linker_option=$ssl_extra
894 - fi
895 - ssl_runs=yes
896 - break
897 - fi
898 - fi
899 - done
900 - if test $ssl_runs = no ; then
901 - if test "$linked_with" = 'nothing' ; then
902 - { { echo "$as_me:$LINENO: error: Found linkable OpenSSL in $ac_cv_openssl_dir, but it doesn't run, even with -R. Maybe specify another using --with-ssl-dir?" >&5
903 -echo "$as_me: error: Found linkable OpenSSL in $ac_cv_openssl_dir, but it doesn't run, even with -R. Maybe specify another using --with-ssl-dir?" >&2;}
904 - { (exit 1); exit 1; }; }
905 - else
906 - if test -z "$linked_with" ; then
907 - ac_cv_openssl_linker_option='(none)'
908 - else
909 - ac_cv_openssl_linker_option=$linked_with
910 - fi
911 - { echo "$as_me:$LINENO: WARNING: I managed to make OpenSSL link and run, but I couldn't make it link against the same version I found header files for." >&5
912 -echo "$as_me: WARNING: I managed to make OpenSSL link and run, but I couldn't make it link against the same version I found header files for." >&2;}
913 - fi
914 - fi
915 - LDFLAGS="$saved_LDFLAGS"
916 -
917 -fi
918 -echo "$as_me:$LINENO: result: $ac_cv_openssl_linker_option" >&5
919 -echo "${ECHO_T}$ac_cv_openssl_linker_option" >&6
920 -
921 -if test "$ac_cv_openssl_linker_option" != '(none)' ; then
922 - LDFLAGS="$ac_cv_openssl_linker_option $LDFLAGS"
923 -fi
924
925
926 # Check whether --enable-largefile or --disable-largefile was given.
927 @@ -3929,7 +3469,8 @@
928 cat conftest.err >&5
929 echo "$as_me:$LINENO: \$? = $ac_status" >&5
930 (exit $ac_status); } &&
931 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
932 + { ac_try='test -z "$ac_c_werror_flag"
933 + || test ! -s conftest.err'
934 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
935 (eval $ac_try) 2>&5
936 ac_status=$?
937 @@ -3958,7 +3499,8 @@
938 cat conftest.err >&5
939 echo "$as_me:$LINENO: \$? = $ac_status" >&5
940 (exit $ac_status); } &&
941 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
942 + { ac_try='test -z "$ac_c_werror_flag"
943 + || test ! -s conftest.err'
944 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
945 (eval $ac_try) 2>&5
946 ac_status=$?
947 @@ -4028,7 +3570,8 @@
948 cat conftest.err >&5
949 echo "$as_me:$LINENO: \$? = $ac_status" >&5
950 (exit $ac_status); } &&
951 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
952 + { ac_try='test -z "$ac_c_werror_flag"
953 + || test ! -s conftest.err'
954 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
955 (eval $ac_try) 2>&5
956 ac_status=$?
957 @@ -4080,7 +3623,8 @@
958 cat conftest.err >&5
959 echo "$as_me:$LINENO: \$? = $ac_status" >&5
960 (exit $ac_status); } &&
961 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
962 + { ac_try='test -z "$ac_c_werror_flag"
963 + || test ! -s conftest.err'
964 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
965 (eval $ac_try) 2>&5
966 ac_status=$?
967 @@ -4151,7 +3695,8 @@
968 cat conftest.err >&5
969 echo "$as_me:$LINENO: \$? = $ac_status" >&5
970 (exit $ac_status); } &&
971 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
972 + { ac_try='test -z "$ac_c_werror_flag"
973 + || test ! -s conftest.err'
974 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
975 (eval $ac_try) 2>&5
976 ac_status=$?
977 @@ -4203,7 +3748,8 @@
978 cat conftest.err >&5
979 echo "$as_me:$LINENO: \$? = $ac_status" >&5
980 (exit $ac_status); } &&
981 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
982 + { ac_try='test -z "$ac_c_werror_flag"
983 + || test ! -s conftest.err'
984 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
985 (eval $ac_try) 2>&5
986 ac_status=$?
987 @@ -4522,7 +4068,8 @@
988 cat conftest.err >&5
989 echo "$as_me:$LINENO: \$? = $ac_status" >&5
990 (exit $ac_status); } &&
991 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
992 + { ac_try='test -z "$ac_c_werror_flag"
993 + || test ! -s conftest.err'
994 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
995 (eval $ac_try) 2>&5
996 ac_status=$?
997 @@ -4692,7 +4239,8 @@
998 cat conftest.err >&5
999 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1000 (exit $ac_status); } &&
1001 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1002 + { ac_try='test -z "$ac_c_werror_flag"
1003 + || test ! -s conftest.err'
1004 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1005 (eval $ac_try) 2>&5
1006 ac_status=$?
1007 @@ -4777,7 +4325,8 @@
1008 cat conftest.err >&5
1009 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1010 (exit $ac_status); } &&
1011 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1012 + { ac_try='test -z "$ac_c_werror_flag"
1013 + || test ! -s conftest.err'
1014 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1015 (eval $ac_try) 2>&5
1016 ac_status=$?
1017 @@ -4930,7 +4479,8 @@
1018 cat conftest.err >&5
1019 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1020 (exit $ac_status); } &&
1021 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1022 + { ac_try='test -z "$ac_c_werror_flag"
1023 + || test ! -s conftest.err'
1024 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1025 (eval $ac_try) 2>&5
1026 ac_status=$?
1027 @@ -5084,7 +4634,8 @@
1028 cat conftest.err >&5
1029 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1030 (exit $ac_status); } &&
1031 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1032 + { ac_try='test -z "$ac_c_werror_flag"
1033 + || test ! -s conftest.err'
1034 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1035 (eval $ac_try) 2>&5
1036 ac_status=$?
1037 @@ -5254,7 +4805,8 @@
1038 cat conftest.err >&5
1039 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1040 (exit $ac_status); } &&
1041 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1042 + { ac_try='test -z "$ac_c_werror_flag"
1043 + || test ! -s conftest.err'
1044 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1045 (eval $ac_try) 2>&5
1046 ac_status=$?
1047 @@ -5459,7 +5011,8 @@
1048 cat conftest.err >&5
1049 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1050 (exit $ac_status); } &&
1051 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1052 + { ac_try='test -z "$ac_c_werror_flag"
1053 + || test ! -s conftest.err'
1054 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1055 (eval $ac_try) 2>&5
1056 ac_status=$?
1057 @@ -5527,7 +5080,8 @@
1058 cat conftest.err >&5
1059 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1060 (exit $ac_status); } &&
1061 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1062 + { ac_try='test -z "$ac_c_werror_flag"
1063 + || test ! -s conftest.err'
1064 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1065 (eval $ac_try) 2>&5
1066 ac_status=$?
1067 @@ -5711,7 +5265,8 @@
1068 cat conftest.err >&5
1069 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1070 (exit $ac_status); } &&
1071 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1072 + { ac_try='test -z "$ac_c_werror_flag"
1073 + || test ! -s conftest.err'
1074 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1075 (eval $ac_try) 2>&5
1076 ac_status=$?
1077 @@ -5776,7 +5331,8 @@
1078 cat conftest.err >&5
1079 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1080 (exit $ac_status); } &&
1081 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1082 + { ac_try='test -z "$ac_c_werror_flag"
1083 + || test ! -s conftest.err'
1084 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1085 (eval $ac_try) 2>&5
1086 ac_status=$?
1087 @@ -5820,7 +5376,8 @@
1088 cat conftest.err >&5
1089 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1090 (exit $ac_status); } &&
1091 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1092 + { ac_try='test -z "$ac_c_werror_flag"
1093 + || test ! -s conftest.err'
1094 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1095 (eval $ac_try) 2>&5
1096 ac_status=$?
1097 @@ -5885,7 +5442,8 @@
1098 cat conftest.err >&5
1099 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1100 (exit $ac_status); } &&
1101 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1102 + { ac_try='test -z "$ac_c_werror_flag"
1103 + || test ! -s conftest.err'
1104 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1105 (eval $ac_try) 2>&5
1106 ac_status=$?
1107 @@ -5949,7 +5507,8 @@
1108 cat conftest.err >&5
1109 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1110 (exit $ac_status); } &&
1111 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1112 + { ac_try='test -z "$ac_c_werror_flag"
1113 + || test ! -s conftest.err'
1114 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1115 (eval $ac_try) 2>&5
1116 ac_status=$?
1117 @@ -5992,7 +5551,8 @@
1118 cat conftest.err >&5
1119 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1120 (exit $ac_status); } &&
1121 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1122 + { ac_try='test -z "$ac_c_werror_flag"
1123 + || test ! -s conftest.err'
1124 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1125 (eval $ac_try) 2>&5
1126 ac_status=$?
1127 @@ -6060,7 +5620,8 @@
1128 cat conftest.err >&5
1129 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1130 (exit $ac_status); } &&
1131 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1132 + { ac_try='test -z "$ac_c_werror_flag"
1133 + || test ! -s conftest.err'
1134 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1135 (eval $ac_try) 2>&5
1136 ac_status=$?
1137 @@ -6122,7 +5683,8 @@
1138 cat conftest.err >&5
1139 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1140 (exit $ac_status); } &&
1141 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1142 + { ac_try='test -z "$ac_c_werror_flag"
1143 + || test ! -s conftest.err'
1144 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1145 (eval $ac_try) 2>&5
1146 ac_status=$?
1147 @@ -6162,7 +5724,8 @@
1148 cat conftest.err >&5
1149 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1150 (exit $ac_status); } &&
1151 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1152 + { ac_try='test -z "$ac_c_werror_flag"
1153 + || test ! -s conftest.err'
1154 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1155 (eval $ac_try) 2>&5
1156 ac_status=$?
1157 @@ -6218,7 +5781,8 @@
1158 cat conftest.err >&5
1159 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1160 (exit $ac_status); } &&
1161 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1162 + { ac_try='test -z "$ac_c_werror_flag"
1163 + || test ! -s conftest.err'
1164 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1165 (eval $ac_try) 2>&5
1166 ac_status=$?
1167 @@ -6258,7 +5822,8 @@
1168 cat conftest.err >&5
1169 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1170 (exit $ac_status); } &&
1171 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1172 + { ac_try='test -z "$ac_c_werror_flag"
1173 + || test ! -s conftest.err'
1174 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1175 (eval $ac_try) 2>&5
1176 ac_status=$?
1177 @@ -6322,7 +5887,8 @@
1178 cat conftest.err >&5
1179 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1180 (exit $ac_status); } &&
1181 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1182 + { ac_try='test -z "$ac_c_werror_flag"
1183 + || test ! -s conftest.err'
1184 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1185 (eval $ac_try) 2>&5
1186 ac_status=$?
1187 @@ -6353,8 +5919,10 @@
1188 esac
1189 else
1190 if test "$cross_compiling" = yes; then
1191 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1192 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1193 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1194 +See \`config.log' for more details." >&5
1195 +echo "$as_me: error: cannot run test program while cross compiling
1196 +See \`config.log' for more details." >&2;}
1197 { (exit 1); exit 1; }; }
1198 else
1199 cat >conftest.$ac_ext <<_ACEOF
1200 @@ -6466,7 +6034,8 @@
1201 cat conftest.err >&5
1202 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1203 (exit $ac_status); } &&
1204 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1205 + { ac_try='test -z "$ac_c_werror_flag"
1206 + || test ! -s conftest.err'
1207 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1208 (eval $ac_try) 2>&5
1209 ac_status=$?
1210 @@ -6528,7 +6097,8 @@
1211 cat conftest.err >&5
1212 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1213 (exit $ac_status); } &&
1214 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1215 + { ac_try='test -z "$ac_c_werror_flag"
1216 + || test ! -s conftest.err'
1217 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1218 (eval $ac_try) 2>&5
1219 ac_status=$?
1220 @@ -6568,7 +6138,8 @@
1221 cat conftest.err >&5
1222 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1223 (exit $ac_status); } &&
1224 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1225 + { ac_try='test -z "$ac_c_werror_flag"
1226 + || test ! -s conftest.err'
1227 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1228 (eval $ac_try) 2>&5
1229 ac_status=$?
1230 @@ -6624,7 +6195,8 @@
1231 cat conftest.err >&5
1232 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1233 (exit $ac_status); } &&
1234 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1235 + { ac_try='test -z "$ac_c_werror_flag"
1236 + || test ! -s conftest.err'
1237 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1238 (eval $ac_try) 2>&5
1239 ac_status=$?
1240 @@ -6664,7 +6236,8 @@
1241 cat conftest.err >&5
1242 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1243 (exit $ac_status); } &&
1244 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1245 + { ac_try='test -z "$ac_c_werror_flag"
1246 + || test ! -s conftest.err'
1247 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1248 (eval $ac_try) 2>&5
1249 ac_status=$?
1250 @@ -6728,7 +6301,8 @@
1251 cat conftest.err >&5
1252 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1253 (exit $ac_status); } &&
1254 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1255 + { ac_try='test -z "$ac_c_werror_flag"
1256 + || test ! -s conftest.err'
1257 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1258 (eval $ac_try) 2>&5
1259 ac_status=$?
1260 @@ -6759,8 +6333,10 @@
1261 esac
1262 else
1263 if test "$cross_compiling" = yes; then
1264 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1265 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1266 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1267 +See \`config.log' for more details." >&5
1268 +echo "$as_me: error: cannot run test program while cross compiling
1269 +See \`config.log' for more details." >&2;}
1270 { (exit 1); exit 1; }; }
1271 else
1272 cat >conftest.$ac_ext <<_ACEOF
1273 @@ -6872,7 +6448,8 @@
1274 cat conftest.err >&5
1275 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1276 (exit $ac_status); } &&
1277 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1278 + { ac_try='test -z "$ac_c_werror_flag"
1279 + || test ! -s conftest.err'
1280 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1281 (eval $ac_try) 2>&5
1282 ac_status=$?
1283 @@ -6934,7 +6511,8 @@
1284 cat conftest.err >&5
1285 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1286 (exit $ac_status); } &&
1287 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1288 + { ac_try='test -z "$ac_c_werror_flag"
1289 + || test ! -s conftest.err'
1290 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1291 (eval $ac_try) 2>&5
1292 ac_status=$?
1293 @@ -6974,7 +6552,8 @@
1294 cat conftest.err >&5
1295 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1296 (exit $ac_status); } &&
1297 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1298 + { ac_try='test -z "$ac_c_werror_flag"
1299 + || test ! -s conftest.err'
1300 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1301 (eval $ac_try) 2>&5
1302 ac_status=$?
1303 @@ -7030,7 +6609,8 @@
1304 cat conftest.err >&5
1305 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1306 (exit $ac_status); } &&
1307 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1308 + { ac_try='test -z "$ac_c_werror_flag"
1309 + || test ! -s conftest.err'
1310 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1311 (eval $ac_try) 2>&5
1312 ac_status=$?
1313 @@ -7070,7 +6650,8 @@
1314 cat conftest.err >&5
1315 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1316 (exit $ac_status); } &&
1317 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1318 + { ac_try='test -z "$ac_c_werror_flag"
1319 + || test ! -s conftest.err'
1320 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1321 (eval $ac_try) 2>&5
1322 ac_status=$?
1323 @@ -7134,7 +6715,8 @@
1324 cat conftest.err >&5
1325 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1326 (exit $ac_status); } &&
1327 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1328 + { ac_try='test -z "$ac_c_werror_flag"
1329 + || test ! -s conftest.err'
1330 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1331 (eval $ac_try) 2>&5
1332 ac_status=$?
1333 @@ -7165,8 +6747,10 @@
1334 esac
1335 else
1336 if test "$cross_compiling" = yes; then
1337 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1338 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1339 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1340 +See \`config.log' for more details." >&5
1341 +echo "$as_me: error: cannot run test program while cross compiling
1342 +See \`config.log' for more details." >&2;}
1343 { (exit 1); exit 1; }; }
1344 else
1345 cat >conftest.$ac_ext <<_ACEOF
1346 @@ -7278,7 +6862,8 @@
1347 cat conftest.err >&5
1348 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1349 (exit $ac_status); } &&
1350 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1351 + { ac_try='test -z "$ac_c_werror_flag"
1352 + || test ! -s conftest.err'
1353 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1354 (eval $ac_try) 2>&5
1355 ac_status=$?
1356 @@ -7340,7 +6925,8 @@
1357 cat conftest.err >&5
1358 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1359 (exit $ac_status); } &&
1360 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1361 + { ac_try='test -z "$ac_c_werror_flag"
1362 + || test ! -s conftest.err'
1363 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1364 (eval $ac_try) 2>&5
1365 ac_status=$?
1366 @@ -7380,7 +6966,8 @@
1367 cat conftest.err >&5
1368 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1369 (exit $ac_status); } &&
1370 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1371 + { ac_try='test -z "$ac_c_werror_flag"
1372 + || test ! -s conftest.err'
1373 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1374 (eval $ac_try) 2>&5
1375 ac_status=$?
1376 @@ -7436,7 +7023,8 @@
1377 cat conftest.err >&5
1378 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1379 (exit $ac_status); } &&
1380 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1381 + { ac_try='test -z "$ac_c_werror_flag"
1382 + || test ! -s conftest.err'
1383 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1384 (eval $ac_try) 2>&5
1385 ac_status=$?
1386 @@ -7476,7 +7064,8 @@
1387 cat conftest.err >&5
1388 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1389 (exit $ac_status); } &&
1390 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1391 + { ac_try='test -z "$ac_c_werror_flag"
1392 + || test ! -s conftest.err'
1393 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1394 (eval $ac_try) 2>&5
1395 ac_status=$?
1396 @@ -7540,7 +7129,8 @@
1397 cat conftest.err >&5
1398 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1399 (exit $ac_status); } &&
1400 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1401 + { ac_try='test -z "$ac_c_werror_flag"
1402 + || test ! -s conftest.err'
1403 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1404 (eval $ac_try) 2>&5
1405 ac_status=$?
1406 @@ -7571,8 +7161,10 @@
1407 esac
1408 else
1409 if test "$cross_compiling" = yes; then
1410 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1411 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1412 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1413 +See \`config.log' for more details." >&5
1414 +echo "$as_me: error: cannot run test program while cross compiling
1415 +See \`config.log' for more details." >&2;}
1416 { (exit 1); exit 1; }; }
1417 else
1418 cat >conftest.$ac_ext <<_ACEOF
1419 @@ -7684,7 +7276,8 @@
1420 cat conftest.err >&5
1421 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1422 (exit $ac_status); } &&
1423 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1424 + { ac_try='test -z "$ac_c_werror_flag"
1425 + || test ! -s conftest.err'
1426 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1427 (eval $ac_try) 2>&5
1428 ac_status=$?
1429 @@ -7746,7 +7339,8 @@
1430 cat conftest.err >&5
1431 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1432 (exit $ac_status); } &&
1433 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1434 + { ac_try='test -z "$ac_c_werror_flag"
1435 + || test ! -s conftest.err'
1436 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1437 (eval $ac_try) 2>&5
1438 ac_status=$?
1439 @@ -7786,7 +7380,8 @@
1440 cat conftest.err >&5
1441 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1442 (exit $ac_status); } &&
1443 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1444 + { ac_try='test -z "$ac_c_werror_flag"
1445 + || test ! -s conftest.err'
1446 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1447 (eval $ac_try) 2>&5
1448 ac_status=$?
1449 @@ -7842,7 +7437,8 @@
1450 cat conftest.err >&5
1451 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1452 (exit $ac_status); } &&
1453 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1454 + { ac_try='test -z "$ac_c_werror_flag"
1455 + || test ! -s conftest.err'
1456 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1457 (eval $ac_try) 2>&5
1458 ac_status=$?
1459 @@ -7882,7 +7478,8 @@
1460 cat conftest.err >&5
1461 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1462 (exit $ac_status); } &&
1463 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1464 + { ac_try='test -z "$ac_c_werror_flag"
1465 + || test ! -s conftest.err'
1466 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1467 (eval $ac_try) 2>&5
1468 ac_status=$?
1469 @@ -7946,7 +7543,8 @@
1470 cat conftest.err >&5
1471 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1472 (exit $ac_status); } &&
1473 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1474 + { ac_try='test -z "$ac_c_werror_flag"
1475 + || test ! -s conftest.err'
1476 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1477 (eval $ac_try) 2>&5
1478 ac_status=$?
1479 @@ -7977,8 +7575,10 @@
1480 esac
1481 else
1482 if test "$cross_compiling" = yes; then
1483 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1484 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1485 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1486 +See \`config.log' for more details." >&5
1487 +echo "$as_me: error: cannot run test program while cross compiling
1488 +See \`config.log' for more details." >&2;}
1489 { (exit 1); exit 1; }; }
1490 else
1491 cat >conftest.$ac_ext <<_ACEOF
1492 @@ -8090,7 +7690,8 @@
1493 cat conftest.err >&5
1494 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1495 (exit $ac_status); } &&
1496 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1497 + { ac_try='test -z "$ac_c_werror_flag"
1498 + || test ! -s conftest.err'
1499 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1500 (eval $ac_try) 2>&5
1501 ac_status=$?
1502 @@ -8152,7 +7753,8 @@
1503 cat conftest.err >&5
1504 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1505 (exit $ac_status); } &&
1506 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1507 + { ac_try='test -z "$ac_c_werror_flag"
1508 + || test ! -s conftest.err'
1509 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1510 (eval $ac_try) 2>&5
1511 ac_status=$?
1512 @@ -8192,7 +7794,8 @@
1513 cat conftest.err >&5
1514 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1515 (exit $ac_status); } &&
1516 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1517 + { ac_try='test -z "$ac_c_werror_flag"
1518 + || test ! -s conftest.err'
1519 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1520 (eval $ac_try) 2>&5
1521 ac_status=$?
1522 @@ -8248,7 +7851,8 @@
1523 cat conftest.err >&5
1524 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1525 (exit $ac_status); } &&
1526 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1527 + { ac_try='test -z "$ac_c_werror_flag"
1528 + || test ! -s conftest.err'
1529 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1530 (eval $ac_try) 2>&5
1531 ac_status=$?
1532 @@ -8288,7 +7892,8 @@
1533 cat conftest.err >&5
1534 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1535 (exit $ac_status); } &&
1536 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1537 + { ac_try='test -z "$ac_c_werror_flag"
1538 + || test ! -s conftest.err'
1539 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1540 (eval $ac_try) 2>&5
1541 ac_status=$?
1542 @@ -8352,7 +7957,8 @@
1543 cat conftest.err >&5
1544 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1545 (exit $ac_status); } &&
1546 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1547 + { ac_try='test -z "$ac_c_werror_flag"
1548 + || test ! -s conftest.err'
1549 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1550 (eval $ac_try) 2>&5
1551 ac_status=$?
1552 @@ -8383,8 +7989,10 @@
1553 esac
1554 else
1555 if test "$cross_compiling" = yes; then
1556 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1557 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1558 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1559 +See \`config.log' for more details." >&5
1560 +echo "$as_me: error: cannot run test program while cross compiling
1561 +See \`config.log' for more details." >&2;}
1562 { (exit 1); exit 1; }; }
1563 else
1564 cat >conftest.$ac_ext <<_ACEOF
1565 @@ -8496,7 +8104,8 @@
1566 cat conftest.err >&5
1567 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1568 (exit $ac_status); } &&
1569 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1570 + { ac_try='test -z "$ac_c_werror_flag"
1571 + || test ! -s conftest.err'
1572 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1573 (eval $ac_try) 2>&5
1574 ac_status=$?
1575 @@ -8558,7 +8167,8 @@
1576 cat conftest.err >&5
1577 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1578 (exit $ac_status); } &&
1579 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1580 + { ac_try='test -z "$ac_c_werror_flag"
1581 + || test ! -s conftest.err'
1582 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1583 (eval $ac_try) 2>&5
1584 ac_status=$?
1585 @@ -8598,7 +8208,8 @@
1586 cat conftest.err >&5
1587 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1588 (exit $ac_status); } &&
1589 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1590 + { ac_try='test -z "$ac_c_werror_flag"
1591 + || test ! -s conftest.err'
1592 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1593 (eval $ac_try) 2>&5
1594 ac_status=$?
1595 @@ -8654,7 +8265,8 @@
1596 cat conftest.err >&5
1597 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1598 (exit $ac_status); } &&
1599 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1600 + { ac_try='test -z "$ac_c_werror_flag"
1601 + || test ! -s conftest.err'
1602 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1603 (eval $ac_try) 2>&5
1604 ac_status=$?
1605 @@ -8694,7 +8306,8 @@
1606 cat conftest.err >&5
1607 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1608 (exit $ac_status); } &&
1609 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1610 + { ac_try='test -z "$ac_c_werror_flag"
1611 + || test ! -s conftest.err'
1612 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1613 (eval $ac_try) 2>&5
1614 ac_status=$?
1615 @@ -8758,7 +8371,8 @@
1616 cat conftest.err >&5
1617 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1618 (exit $ac_status); } &&
1619 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1620 + { ac_try='test -z "$ac_c_werror_flag"
1621 + || test ! -s conftest.err'
1622 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1623 (eval $ac_try) 2>&5
1624 ac_status=$?
1625 @@ -8789,8 +8403,10 @@
1626 esac
1627 else
1628 if test "$cross_compiling" = yes; then
1629 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1630 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1631 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1632 +See \`config.log' for more details." >&5
1633 +echo "$as_me: error: cannot run test program while cross compiling
1634 +See \`config.log' for more details." >&2;}
1635 { (exit 1); exit 1; }; }
1636 else
1637 cat >conftest.$ac_ext <<_ACEOF
1638 @@ -8902,7 +8518,8 @@
1639 cat conftest.err >&5
1640 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1641 (exit $ac_status); } &&
1642 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1643 + { ac_try='test -z "$ac_c_werror_flag"
1644 + || test ! -s conftest.err'
1645 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1646 (eval $ac_try) 2>&5
1647 ac_status=$?
1648 @@ -8964,7 +8581,8 @@
1649 cat conftest.err >&5
1650 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1651 (exit $ac_status); } &&
1652 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1653 + { ac_try='test -z "$ac_c_werror_flag"
1654 + || test ! -s conftest.err'
1655 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1656 (eval $ac_try) 2>&5
1657 ac_status=$?
1658 @@ -9004,7 +8622,8 @@
1659 cat conftest.err >&5
1660 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1661 (exit $ac_status); } &&
1662 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1663 + { ac_try='test -z "$ac_c_werror_flag"
1664 + || test ! -s conftest.err'
1665 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1666 (eval $ac_try) 2>&5
1667 ac_status=$?
1668 @@ -9060,7 +8679,8 @@
1669 cat conftest.err >&5
1670 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1671 (exit $ac_status); } &&
1672 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1673 + { ac_try='test -z "$ac_c_werror_flag"
1674 + || test ! -s conftest.err'
1675 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1676 (eval $ac_try) 2>&5
1677 ac_status=$?
1678 @@ -9100,7 +8720,8 @@
1679 cat conftest.err >&5
1680 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1681 (exit $ac_status); } &&
1682 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1683 + { ac_try='test -z "$ac_c_werror_flag"
1684 + || test ! -s conftest.err'
1685 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1686 (eval $ac_try) 2>&5
1687 ac_status=$?
1688 @@ -9164,7 +8785,8 @@
1689 cat conftest.err >&5
1690 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1691 (exit $ac_status); } &&
1692 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1693 + { ac_try='test -z "$ac_c_werror_flag"
1694 + || test ! -s conftest.err'
1695 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1696 (eval $ac_try) 2>&5
1697 ac_status=$?
1698 @@ -9195,8 +8817,10 @@
1699 esac
1700 else
1701 if test "$cross_compiling" = yes; then
1702 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1703 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1704 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1705 +See \`config.log' for more details." >&5
1706 +echo "$as_me: error: cannot run test program while cross compiling
1707 +See \`config.log' for more details." >&2;}
1708 { (exit 1); exit 1; }; }
1709 else
1710 cat >conftest.$ac_ext <<_ACEOF
1711 @@ -9308,7 +8932,8 @@
1712 cat conftest.err >&5
1713 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1714 (exit $ac_status); } &&
1715 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1716 + { ac_try='test -z "$ac_c_werror_flag"
1717 + || test ! -s conftest.err'
1718 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1719 (eval $ac_try) 2>&5
1720 ac_status=$?
1721 @@ -9370,7 +8995,8 @@
1722 cat conftest.err >&5
1723 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1724 (exit $ac_status); } &&
1725 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1726 + { ac_try='test -z "$ac_c_werror_flag"
1727 + || test ! -s conftest.err'
1728 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1729 (eval $ac_try) 2>&5
1730 ac_status=$?
1731 @@ -9410,7 +9036,8 @@
1732 cat conftest.err >&5
1733 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1734 (exit $ac_status); } &&
1735 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1736 + { ac_try='test -z "$ac_c_werror_flag"
1737 + || test ! -s conftest.err'
1738 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1739 (eval $ac_try) 2>&5
1740 ac_status=$?
1741 @@ -9466,7 +9093,8 @@
1742 cat conftest.err >&5
1743 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1744 (exit $ac_status); } &&
1745 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1746 + { ac_try='test -z "$ac_c_werror_flag"
1747 + || test ! -s conftest.err'
1748 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1749 (eval $ac_try) 2>&5
1750 ac_status=$?
1751 @@ -9506,7 +9134,8 @@
1752 cat conftest.err >&5
1753 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1754 (exit $ac_status); } &&
1755 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1756 + { ac_try='test -z "$ac_c_werror_flag"
1757 + || test ! -s conftest.err'
1758 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1759 (eval $ac_try) 2>&5
1760 ac_status=$?
1761 @@ -9570,7 +9199,8 @@
1762 cat conftest.err >&5
1763 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1764 (exit $ac_status); } &&
1765 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1766 + { ac_try='test -z "$ac_c_werror_flag"
1767 + || test ! -s conftest.err'
1768 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1769 (eval $ac_try) 2>&5
1770 ac_status=$?
1771 @@ -9601,8 +9231,10 @@
1772 esac
1773 else
1774 if test "$cross_compiling" = yes; then
1775 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1776 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1777 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1778 +See \`config.log' for more details." >&5
1779 +echo "$as_me: error: cannot run test program while cross compiling
1780 +See \`config.log' for more details." >&2;}
1781 { (exit 1); exit 1; }; }
1782 else
1783 cat >conftest.$ac_ext <<_ACEOF
1784 @@ -9714,7 +9346,8 @@
1785 cat conftest.err >&5
1786 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1787 (exit $ac_status); } &&
1788 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1789 + { ac_try='test -z "$ac_c_werror_flag"
1790 + || test ! -s conftest.err'
1791 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1792 (eval $ac_try) 2>&5
1793 ac_status=$?
1794 @@ -9776,7 +9409,8 @@
1795 cat conftest.err >&5
1796 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1797 (exit $ac_status); } &&
1798 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1799 + { ac_try='test -z "$ac_c_werror_flag"
1800 + || test ! -s conftest.err'
1801 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1802 (eval $ac_try) 2>&5
1803 ac_status=$?
1804 @@ -9816,7 +9450,8 @@
1805 cat conftest.err >&5
1806 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1807 (exit $ac_status); } &&
1808 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1809 + { ac_try='test -z "$ac_c_werror_flag"
1810 + || test ! -s conftest.err'
1811 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1812 (eval $ac_try) 2>&5
1813 ac_status=$?
1814 @@ -9872,7 +9507,8 @@
1815 cat conftest.err >&5
1816 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1817 (exit $ac_status); } &&
1818 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1819 + { ac_try='test -z "$ac_c_werror_flag"
1820 + || test ! -s conftest.err'
1821 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1822 (eval $ac_try) 2>&5
1823 ac_status=$?
1824 @@ -9912,7 +9548,8 @@
1825 cat conftest.err >&5
1826 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1827 (exit $ac_status); } &&
1828 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1829 + { ac_try='test -z "$ac_c_werror_flag"
1830 + || test ! -s conftest.err'
1831 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1832 (eval $ac_try) 2>&5
1833 ac_status=$?
1834 @@ -9976,7 +9613,8 @@
1835 cat conftest.err >&5
1836 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1837 (exit $ac_status); } &&
1838 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1839 + { ac_try='test -z "$ac_c_werror_flag"
1840 + || test ! -s conftest.err'
1841 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1842 (eval $ac_try) 2>&5
1843 ac_status=$?
1844 @@ -10007,8 +9645,10 @@
1845 esac
1846 else
1847 if test "$cross_compiling" = yes; then
1848 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1849 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1850 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1851 +See \`config.log' for more details." >&5
1852 +echo "$as_me: error: cannot run test program while cross compiling
1853 +See \`config.log' for more details." >&2;}
1854 { (exit 1); exit 1; }; }
1855 else
1856 cat >conftest.$ac_ext <<_ACEOF
1857 @@ -10122,7 +9762,8 @@
1858 cat conftest.err >&5
1859 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1860 (exit $ac_status); } &&
1861 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1862 + { ac_try='test -z "$ac_c_werror_flag"
1863 + || test ! -s conftest.err'
1864 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1865 (eval $ac_try) 2>&5
1866 ac_status=$?
1867 @@ -10184,7 +9825,8 @@
1868 cat conftest.err >&5
1869 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1870 (exit $ac_status); } &&
1871 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1872 + { ac_try='test -z "$ac_c_werror_flag"
1873 + || test ! -s conftest.err'
1874 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1875 (eval $ac_try) 2>&5
1876 ac_status=$?
1877 @@ -10224,7 +9866,8 @@
1878 cat conftest.err >&5
1879 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1880 (exit $ac_status); } &&
1881 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1882 + { ac_try='test -z "$ac_c_werror_flag"
1883 + || test ! -s conftest.err'
1884 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1885 (eval $ac_try) 2>&5
1886 ac_status=$?
1887 @@ -10280,7 +9923,8 @@
1888 cat conftest.err >&5
1889 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1890 (exit $ac_status); } &&
1891 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1892 + { ac_try='test -z "$ac_c_werror_flag"
1893 + || test ! -s conftest.err'
1894 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1895 (eval $ac_try) 2>&5
1896 ac_status=$?
1897 @@ -10320,7 +9964,8 @@
1898 cat conftest.err >&5
1899 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1900 (exit $ac_status); } &&
1901 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1902 + { ac_try='test -z "$ac_c_werror_flag"
1903 + || test ! -s conftest.err'
1904 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1905 (eval $ac_try) 2>&5
1906 ac_status=$?
1907 @@ -10384,7 +10029,8 @@
1908 cat conftest.err >&5
1909 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1910 (exit $ac_status); } &&
1911 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1912 + { ac_try='test -z "$ac_c_werror_flag"
1913 + || test ! -s conftest.err'
1914 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1915 (eval $ac_try) 2>&5
1916 ac_status=$?
1917 @@ -10415,8 +10061,10 @@
1918 esac
1919 else
1920 if test "$cross_compiling" = yes; then
1921 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1922 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1923 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1924 +See \`config.log' for more details." >&5
1925 +echo "$as_me: error: cannot run test program while cross compiling
1926 +See \`config.log' for more details." >&2;}
1927 { (exit 1); exit 1; }; }
1928 else
1929 cat >conftest.$ac_ext <<_ACEOF
1930 @@ -10528,7 +10176,8 @@
1931 cat conftest.err >&5
1932 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1933 (exit $ac_status); } &&
1934 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1935 + { ac_try='test -z "$ac_c_werror_flag"
1936 + || test ! -s conftest.err'
1937 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1938 (eval $ac_try) 2>&5
1939 ac_status=$?
1940 @@ -10590,7 +10239,8 @@
1941 cat conftest.err >&5
1942 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1943 (exit $ac_status); } &&
1944 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1945 + { ac_try='test -z "$ac_c_werror_flag"
1946 + || test ! -s conftest.err'
1947 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1948 (eval $ac_try) 2>&5
1949 ac_status=$?
1950 @@ -10630,7 +10280,8 @@
1951 cat conftest.err >&5
1952 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1953 (exit $ac_status); } &&
1954 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1955 + { ac_try='test -z "$ac_c_werror_flag"
1956 + || test ! -s conftest.err'
1957 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1958 (eval $ac_try) 2>&5
1959 ac_status=$?
1960 @@ -10686,7 +10337,8 @@
1961 cat conftest.err >&5
1962 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1963 (exit $ac_status); } &&
1964 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1965 + { ac_try='test -z "$ac_c_werror_flag"
1966 + || test ! -s conftest.err'
1967 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1968 (eval $ac_try) 2>&5
1969 ac_status=$?
1970 @@ -10726,7 +10378,8 @@
1971 cat conftest.err >&5
1972 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1973 (exit $ac_status); } &&
1974 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1975 + { ac_try='test -z "$ac_c_werror_flag"
1976 + || test ! -s conftest.err'
1977 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1978 (eval $ac_try) 2>&5
1979 ac_status=$?
1980 @@ -10790,7 +10443,8 @@
1981 cat conftest.err >&5
1982 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1983 (exit $ac_status); } &&
1984 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1985 + { ac_try='test -z "$ac_c_werror_flag"
1986 + || test ! -s conftest.err'
1987 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1988 (eval $ac_try) 2>&5
1989 ac_status=$?
1990 @@ -10821,8 +10475,10 @@
1991 esac
1992 else
1993 if test "$cross_compiling" = yes; then
1994 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
1995 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
1996 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
1997 +See \`config.log' for more details." >&5
1998 +echo "$as_me: error: cannot run test program while cross compiling
1999 +See \`config.log' for more details." >&2;}
2000 { (exit 1); exit 1; }; }
2001 else
2002 cat >conftest.$ac_ext <<_ACEOF
2003 @@ -10934,7 +10590,8 @@
2004 cat conftest.err >&5
2005 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2006 (exit $ac_status); } &&
2007 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2008 + { ac_try='test -z "$ac_c_werror_flag"
2009 + || test ! -s conftest.err'
2010 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2011 (eval $ac_try) 2>&5
2012 ac_status=$?
2013 @@ -10996,7 +10653,8 @@
2014 cat conftest.err >&5
2015 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2016 (exit $ac_status); } &&
2017 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2018 + { ac_try='test -z "$ac_c_werror_flag"
2019 + || test ! -s conftest.err'
2020 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2021 (eval $ac_try) 2>&5
2022 ac_status=$?
2023 @@ -11036,7 +10694,8 @@
2024 cat conftest.err >&5
2025 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2026 (exit $ac_status); } &&
2027 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2028 + { ac_try='test -z "$ac_c_werror_flag"
2029 + || test ! -s conftest.err'
2030 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2031 (eval $ac_try) 2>&5
2032 ac_status=$?
2033 @@ -11092,7 +10751,8 @@
2034 cat conftest.err >&5
2035 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2036 (exit $ac_status); } &&
2037 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2038 + { ac_try='test -z "$ac_c_werror_flag"
2039 + || test ! -s conftest.err'
2040 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2041 (eval $ac_try) 2>&5
2042 ac_status=$?
2043 @@ -11132,7 +10792,8 @@
2044 cat conftest.err >&5
2045 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2046 (exit $ac_status); } &&
2047 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2048 + { ac_try='test -z "$ac_c_werror_flag"
2049 + || test ! -s conftest.err'
2050 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2051 (eval $ac_try) 2>&5
2052 ac_status=$?
2053 @@ -11196,7 +10857,8 @@
2054 cat conftest.err >&5
2055 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2056 (exit $ac_status); } &&
2057 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2058 + { ac_try='test -z "$ac_c_werror_flag"
2059 + || test ! -s conftest.err'
2060 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2061 (eval $ac_try) 2>&5
2062 ac_status=$?
2063 @@ -11227,8 +10889,10 @@
2064 esac
2065 else
2066 if test "$cross_compiling" = yes; then
2067 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2068 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2069 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2070 +See \`config.log' for more details." >&5
2071 +echo "$as_me: error: cannot run test program while cross compiling
2072 +See \`config.log' for more details." >&2;}
2073 { (exit 1); exit 1; }; }
2074 else
2075 cat >conftest.$ac_ext <<_ACEOF
2076 @@ -11340,7 +11004,8 @@
2077 cat conftest.err >&5
2078 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2079 (exit $ac_status); } &&
2080 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2081 + { ac_try='test -z "$ac_c_werror_flag"
2082 + || test ! -s conftest.err'
2083 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2084 (eval $ac_try) 2>&5
2085 ac_status=$?
2086 @@ -11402,7 +11067,8 @@
2087 cat conftest.err >&5
2088 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2089 (exit $ac_status); } &&
2090 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2091 + { ac_try='test -z "$ac_c_werror_flag"
2092 + || test ! -s conftest.err'
2093 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2094 (eval $ac_try) 2>&5
2095 ac_status=$?
2096 @@ -11442,7 +11108,8 @@
2097 cat conftest.err >&5
2098 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2099 (exit $ac_status); } &&
2100 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2101 + { ac_try='test -z "$ac_c_werror_flag"
2102 + || test ! -s conftest.err'
2103 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2104 (eval $ac_try) 2>&5
2105 ac_status=$?
2106 @@ -11498,7 +11165,8 @@
2107 cat conftest.err >&5
2108 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2109 (exit $ac_status); } &&
2110 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2111 + { ac_try='test -z "$ac_c_werror_flag"
2112 + || test ! -s conftest.err'
2113 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2114 (eval $ac_try) 2>&5
2115 ac_status=$?
2116 @@ -11538,7 +11206,8 @@
2117 cat conftest.err >&5
2118 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2119 (exit $ac_status); } &&
2120 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2121 + { ac_try='test -z "$ac_c_werror_flag"
2122 + || test ! -s conftest.err'
2123 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2124 (eval $ac_try) 2>&5
2125 ac_status=$?
2126 @@ -11602,7 +11271,8 @@
2127 cat conftest.err >&5
2128 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2129 (exit $ac_status); } &&
2130 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2131 + { ac_try='test -z "$ac_c_werror_flag"
2132 + || test ! -s conftest.err'
2133 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2134 (eval $ac_try) 2>&5
2135 ac_status=$?
2136 @@ -11633,8 +11303,10 @@
2137 esac
2138 else
2139 if test "$cross_compiling" = yes; then
2140 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2141 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2142 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2143 +See \`config.log' for more details." >&5
2144 +echo "$as_me: error: cannot run test program while cross compiling
2145 +See \`config.log' for more details." >&2;}
2146 { (exit 1); exit 1; }; }
2147 else
2148 cat >conftest.$ac_ext <<_ACEOF
2149 @@ -11746,7 +11418,8 @@
2150 cat conftest.err >&5
2151 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2152 (exit $ac_status); } &&
2153 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2154 + { ac_try='test -z "$ac_c_werror_flag"
2155 + || test ! -s conftest.err'
2156 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2157 (eval $ac_try) 2>&5
2158 ac_status=$?
2159 @@ -11808,7 +11481,8 @@
2160 cat conftest.err >&5
2161 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2162 (exit $ac_status); } &&
2163 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2164 + { ac_try='test -z "$ac_c_werror_flag"
2165 + || test ! -s conftest.err'
2166 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2167 (eval $ac_try) 2>&5
2168 ac_status=$?
2169 @@ -11848,7 +11522,8 @@
2170 cat conftest.err >&5
2171 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2172 (exit $ac_status); } &&
2173 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2174 + { ac_try='test -z "$ac_c_werror_flag"
2175 + || test ! -s conftest.err'
2176 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2177 (eval $ac_try) 2>&5
2178 ac_status=$?
2179 @@ -11904,7 +11579,8 @@
2180 cat conftest.err >&5
2181 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2182 (exit $ac_status); } &&
2183 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2184 + { ac_try='test -z "$ac_c_werror_flag"
2185 + || test ! -s conftest.err'
2186 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2187 (eval $ac_try) 2>&5
2188 ac_status=$?
2189 @@ -11944,7 +11620,8 @@
2190 cat conftest.err >&5
2191 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2192 (exit $ac_status); } &&
2193 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2194 + { ac_try='test -z "$ac_c_werror_flag"
2195 + || test ! -s conftest.err'
2196 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2197 (eval $ac_try) 2>&5
2198 ac_status=$?
2199 @@ -12008,7 +11685,8 @@
2200 cat conftest.err >&5
2201 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2202 (exit $ac_status); } &&
2203 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2204 + { ac_try='test -z "$ac_c_werror_flag"
2205 + || test ! -s conftest.err'
2206 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2207 (eval $ac_try) 2>&5
2208 ac_status=$?
2209 @@ -12039,8 +11717,10 @@
2210 esac
2211 else
2212 if test "$cross_compiling" = yes; then
2213 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2214 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2215 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2216 +See \`config.log' for more details." >&5
2217 +echo "$as_me: error: cannot run test program while cross compiling
2218 +See \`config.log' for more details." >&2;}
2219 { (exit 1); exit 1; }; }
2220 else
2221 cat >conftest.$ac_ext <<_ACEOF
2222 @@ -12152,7 +11832,8 @@
2223 cat conftest.err >&5
2224 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2225 (exit $ac_status); } &&
2226 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2227 + { ac_try='test -z "$ac_c_werror_flag"
2228 + || test ! -s conftest.err'
2229 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2230 (eval $ac_try) 2>&5
2231 ac_status=$?
2232 @@ -12214,7 +11895,8 @@
2233 cat conftest.err >&5
2234 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2235 (exit $ac_status); } &&
2236 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2237 + { ac_try='test -z "$ac_c_werror_flag"
2238 + || test ! -s conftest.err'
2239 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2240 (eval $ac_try) 2>&5
2241 ac_status=$?
2242 @@ -12254,7 +11936,8 @@
2243 cat conftest.err >&5
2244 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2245 (exit $ac_status); } &&
2246 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2247 + { ac_try='test -z "$ac_c_werror_flag"
2248 + || test ! -s conftest.err'
2249 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2250 (eval $ac_try) 2>&5
2251 ac_status=$?
2252 @@ -12310,7 +11993,8 @@
2253 cat conftest.err >&5
2254 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2255 (exit $ac_status); } &&
2256 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2257 + { ac_try='test -z "$ac_c_werror_flag"
2258 + || test ! -s conftest.err'
2259 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2260 (eval $ac_try) 2>&5
2261 ac_status=$?
2262 @@ -12350,7 +12034,8 @@
2263 cat conftest.err >&5
2264 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2265 (exit $ac_status); } &&
2266 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2267 + { ac_try='test -z "$ac_c_werror_flag"
2268 + || test ! -s conftest.err'
2269 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2270 (eval $ac_try) 2>&5
2271 ac_status=$?
2272 @@ -12414,7 +12099,8 @@
2273 cat conftest.err >&5
2274 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2275 (exit $ac_status); } &&
2276 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2277 + { ac_try='test -z "$ac_c_werror_flag"
2278 + || test ! -s conftest.err'
2279 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2280 (eval $ac_try) 2>&5
2281 ac_status=$?
2282 @@ -12445,8 +12131,10 @@
2283 esac
2284 else
2285 if test "$cross_compiling" = yes; then
2286 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2287 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2288 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2289 +See \`config.log' for more details." >&5
2290 +echo "$as_me: error: cannot run test program while cross compiling
2291 +See \`config.log' for more details." >&2;}
2292 { (exit 1); exit 1; }; }
2293 else
2294 cat >conftest.$ac_ext <<_ACEOF
2295 @@ -12558,7 +12246,8 @@
2296 cat conftest.err >&5
2297 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2298 (exit $ac_status); } &&
2299 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2300 + { ac_try='test -z "$ac_c_werror_flag"
2301 + || test ! -s conftest.err'
2302 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2303 (eval $ac_try) 2>&5
2304 ac_status=$?
2305 @@ -12620,7 +12309,8 @@
2306 cat conftest.err >&5
2307 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2308 (exit $ac_status); } &&
2309 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2310 + { ac_try='test -z "$ac_c_werror_flag"
2311 + || test ! -s conftest.err'
2312 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2313 (eval $ac_try) 2>&5
2314 ac_status=$?
2315 @@ -12660,7 +12350,8 @@
2316 cat conftest.err >&5
2317 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2318 (exit $ac_status); } &&
2319 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2320 + { ac_try='test -z "$ac_c_werror_flag"
2321 + || test ! -s conftest.err'
2322 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2323 (eval $ac_try) 2>&5
2324 ac_status=$?
2325 @@ -12716,7 +12407,8 @@
2326 cat conftest.err >&5
2327 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2328 (exit $ac_status); } &&
2329 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2330 + { ac_try='test -z "$ac_c_werror_flag"
2331 + || test ! -s conftest.err'
2332 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2333 (eval $ac_try) 2>&5
2334 ac_status=$?
2335 @@ -12756,7 +12448,8 @@
2336 cat conftest.err >&5
2337 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2338 (exit $ac_status); } &&
2339 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2340 + { ac_try='test -z "$ac_c_werror_flag"
2341 + || test ! -s conftest.err'
2342 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2343 (eval $ac_try) 2>&5
2344 ac_status=$?
2345 @@ -12820,7 +12513,8 @@
2346 cat conftest.err >&5
2347 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2348 (exit $ac_status); } &&
2349 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2350 + { ac_try='test -z "$ac_c_werror_flag"
2351 + || test ! -s conftest.err'
2352 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2353 (eval $ac_try) 2>&5
2354 ac_status=$?
2355 @@ -12851,8 +12545,10 @@
2356 esac
2357 else
2358 if test "$cross_compiling" = yes; then
2359 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2360 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2361 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2362 +See \`config.log' for more details." >&5
2363 +echo "$as_me: error: cannot run test program while cross compiling
2364 +See \`config.log' for more details." >&2;}
2365 { (exit 1); exit 1; }; }
2366 else
2367 cat >conftest.$ac_ext <<_ACEOF
2368 @@ -12964,7 +12660,8 @@
2369 cat conftest.err >&5
2370 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2371 (exit $ac_status); } &&
2372 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2373 + { ac_try='test -z "$ac_c_werror_flag"
2374 + || test ! -s conftest.err'
2375 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2376 (eval $ac_try) 2>&5
2377 ac_status=$?
2378 @@ -13026,7 +12723,8 @@
2379 cat conftest.err >&5
2380 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2381 (exit $ac_status); } &&
2382 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2383 + { ac_try='test -z "$ac_c_werror_flag"
2384 + || test ! -s conftest.err'
2385 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2386 (eval $ac_try) 2>&5
2387 ac_status=$?
2388 @@ -13066,7 +12764,8 @@
2389 cat conftest.err >&5
2390 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2391 (exit $ac_status); } &&
2392 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2393 + { ac_try='test -z "$ac_c_werror_flag"
2394 + || test ! -s conftest.err'
2395 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2396 (eval $ac_try) 2>&5
2397 ac_status=$?
2398 @@ -13122,7 +12821,8 @@
2399 cat conftest.err >&5
2400 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2401 (exit $ac_status); } &&
2402 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2403 + { ac_try='test -z "$ac_c_werror_flag"
2404 + || test ! -s conftest.err'
2405 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2406 (eval $ac_try) 2>&5
2407 ac_status=$?
2408 @@ -13162,7 +12862,8 @@
2409 cat conftest.err >&5
2410 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2411 (exit $ac_status); } &&
2412 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2413 + { ac_try='test -z "$ac_c_werror_flag"
2414 + || test ! -s conftest.err'
2415 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2416 (eval $ac_try) 2>&5
2417 ac_status=$?
2418 @@ -13226,7 +12927,8 @@
2419 cat conftest.err >&5
2420 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2421 (exit $ac_status); } &&
2422 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2423 + { ac_try='test -z "$ac_c_werror_flag"
2424 + || test ! -s conftest.err'
2425 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2426 (eval $ac_try) 2>&5
2427 ac_status=$?
2428 @@ -13257,8 +12959,10 @@
2429 esac
2430 else
2431 if test "$cross_compiling" = yes; then
2432 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2433 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2434 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2435 +See \`config.log' for more details." >&5
2436 +echo "$as_me: error: cannot run test program while cross compiling
2437 +See \`config.log' for more details." >&2;}
2438 { (exit 1); exit 1; }; }
2439 else
2440 cat >conftest.$ac_ext <<_ACEOF
2441 @@ -13432,7 +13136,8 @@
2442 cat conftest.err >&5
2443 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2444 (exit $ac_status); } &&
2445 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2446 + { ac_try='test -z "$ac_c_werror_flag"
2447 + || test ! -s conftest.err'
2448 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2449 (eval $ac_try) 2>&5
2450 ac_status=$?
2451 @@ -13499,7 +13204,8 @@
2452 cat conftest.err >&5
2453 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2454 (exit $ac_status); } &&
2455 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2456 + { ac_try='test -z "$ac_c_werror_flag"
2457 + || test ! -s conftest.err'
2458 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2459 (eval $ac_try) 2>&5
2460 ac_status=$?
2461 @@ -13544,7 +13250,8 @@
2462 cat conftest.err >&5
2463 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2464 (exit $ac_status); } &&
2465 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2466 + { ac_try='test -z "$ac_c_werror_flag"
2467 + || test ! -s conftest.err'
2468 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2469 (eval $ac_try) 2>&5
2470 ac_status=$?
2471 @@ -13605,7 +13312,8 @@
2472 cat conftest.err >&5
2473 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2474 (exit $ac_status); } &&
2475 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2476 + { ac_try='test -z "$ac_c_werror_flag"
2477 + || test ! -s conftest.err'
2478 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2479 (eval $ac_try) 2>&5
2480 ac_status=$?
2481 @@ -13650,7 +13358,8 @@
2482 cat conftest.err >&5
2483 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2484 (exit $ac_status); } &&
2485 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2486 + { ac_try='test -z "$ac_c_werror_flag"
2487 + || test ! -s conftest.err'
2488 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2489 (eval $ac_try) 2>&5
2490 ac_status=$?
2491 @@ -13719,7 +13428,8 @@
2492 cat conftest.err >&5
2493 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2494 (exit $ac_status); } &&
2495 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2496 + { ac_try='test -z "$ac_c_werror_flag"
2497 + || test ! -s conftest.err'
2498 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2499 (eval $ac_try) 2>&5
2500 ac_status=$?
2501 @@ -13750,8 +13460,10 @@
2502 esac
2503 else
2504 if test "$cross_compiling" = yes; then
2505 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2506 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2507 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2508 +See \`config.log' for more details." >&5
2509 +echo "$as_me: error: cannot run test program while cross compiling
2510 +See \`config.log' for more details." >&2;}
2511 { (exit 1); exit 1; }; }
2512 else
2513 cat >conftest.$ac_ext <<_ACEOF
2514 @@ -13871,7 +13583,8 @@
2515 cat conftest.err >&5
2516 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2517 (exit $ac_status); } &&
2518 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2519 + { ac_try='test -z "$ac_c_werror_flag"
2520 + || test ! -s conftest.err'
2521 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2522 (eval $ac_try) 2>&5
2523 ac_status=$?
2524 @@ -13933,7 +13646,8 @@
2525 cat conftest.err >&5
2526 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2527 (exit $ac_status); } &&
2528 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2529 + { ac_try='test -z "$ac_c_werror_flag"
2530 + || test ! -s conftest.err'
2531 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2532 (eval $ac_try) 2>&5
2533 ac_status=$?
2534 @@ -13973,7 +13687,8 @@
2535 cat conftest.err >&5
2536 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2537 (exit $ac_status); } &&
2538 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2539 + { ac_try='test -z "$ac_c_werror_flag"
2540 + || test ! -s conftest.err'
2541 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2542 (eval $ac_try) 2>&5
2543 ac_status=$?
2544 @@ -14029,7 +13744,8 @@
2545 cat conftest.err >&5
2546 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2547 (exit $ac_status); } &&
2548 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2549 + { ac_try='test -z "$ac_c_werror_flag"
2550 + || test ! -s conftest.err'
2551 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2552 (eval $ac_try) 2>&5
2553 ac_status=$?
2554 @@ -14069,7 +13785,8 @@
2555 cat conftest.err >&5
2556 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2557 (exit $ac_status); } &&
2558 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2559 + { ac_try='test -z "$ac_c_werror_flag"
2560 + || test ! -s conftest.err'
2561 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2562 (eval $ac_try) 2>&5
2563 ac_status=$?
2564 @@ -14133,7 +13850,8 @@
2565 cat conftest.err >&5
2566 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2567 (exit $ac_status); } &&
2568 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2569 + { ac_try='test -z "$ac_c_werror_flag"
2570 + || test ! -s conftest.err'
2571 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2572 (eval $ac_try) 2>&5
2573 ac_status=$?
2574 @@ -14164,8 +13882,10 @@
2575 esac
2576 else
2577 if test "$cross_compiling" = yes; then
2578 - { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
2579 -echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2580 + { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
2581 +See \`config.log' for more details." >&5
2582 +echo "$as_me: error: cannot run test program while cross compiling
2583 +See \`config.log' for more details." >&2;}
2584 { (exit 1); exit 1; }; }
2585 else
2586 cat >conftest.$ac_ext <<_ACEOF
2587 @@ -14428,7 +14148,8 @@
2588 cat conftest.err >&5
2589 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2590 (exit $ac_status); } &&
2591 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2592 + { ac_try='test -z "$ac_c_werror_flag"
2593 + || test ! -s conftest.err'
2594 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2595 (eval $ac_try) 2>&5
2596 ac_status=$?
2597 @@ -14585,7 +14306,8 @@
2598 cat conftest.err >&5
2599 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2600 (exit $ac_status); } &&
2601 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2602 + { ac_try='test -z "$ac_c_werror_flag"
2603 + || test ! -s conftest.err'
2604 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2605 (eval $ac_try) 2>&5
2606 ac_status=$?
2607 @@ -14639,7 +14361,8 @@
2608 cat conftest.err >&5
2609 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2610 (exit $ac_status); } &&
2611 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2612 + { ac_try='test -z "$ac_c_werror_flag"
2613 + || test ! -s conftest.err'
2614 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2615 (eval $ac_try) 2>&5
2616 ac_status=$?
2617 @@ -14773,7 +14496,8 @@
2618 cat conftest.err >&5
2619 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2620 (exit $ac_status); } &&
2621 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2622 + { ac_try='test -z "$ac_c_werror_flag"
2623 + || test ! -s conftest.err'
2624 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2625 (eval $ac_try) 2>&5
2626 ac_status=$?
2627 @@ -14834,7 +14558,8 @@
2628 cat conftest.err >&5
2629 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2630 (exit $ac_status); } &&
2631 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2632 + { ac_try='test -z "$ac_c_werror_flag"
2633 + || test ! -s conftest.err'
2634 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2635 (eval $ac_try) 2>&5
2636 ac_status=$?
2637 @@ -14895,7 +14620,8 @@
2638 cat conftest.err >&5
2639 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2640 (exit $ac_status); } &&
2641 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2642 + { ac_try='test -z "$ac_c_werror_flag"
2643 + || test ! -s conftest.err'
2644 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2645 (eval $ac_try) 2>&5
2646 ac_status=$?
2647 @@ -14956,7 +14682,8 @@
2648 cat conftest.err >&5
2649 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2650 (exit $ac_status); } &&
2651 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2652 + { ac_try='test -z "$ac_c_werror_flag"
2653 + || test ! -s conftest.err'
2654 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2655 (eval $ac_try) 2>&5
2656 ac_status=$?
2657 @@ -15021,7 +14748,8 @@
2658 cat conftest.err >&5
2659 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2660 (exit $ac_status); } &&
2661 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2662 + { ac_try='test -z "$ac_c_werror_flag"
2663 + || test ! -s conftest.err'
2664 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2665 (eval $ac_try) 2>&5
2666 ac_status=$?
2667 @@ -15064,7 +14792,8 @@
2668 cat conftest.err >&5
2669 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2670 (exit $ac_status); } &&
2671 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2672 + { ac_try='test -z "$ac_c_werror_flag"
2673 + || test ! -s conftest.err'
2674 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2675 (eval $ac_try) 2>&5
2676 ac_status=$?
2677 @@ -15107,7 +14836,8 @@
2678 cat conftest.err >&5
2679 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2680 (exit $ac_status); } &&
2681 - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2682 + { ac_try='test -z "$ac_c_werror_flag"
2683 + || test ! -s conftest.err'
2684 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2685 (eval $ac_try) 2>&5
2686 ac_status=$?
2687 @@ -16057,6 +15787,11 @@
2688 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
2689 esac
2690
2691 + if test x"$ac_file" != x-; then
2692 + { echo "$as_me:$LINENO: creating $ac_file" >&5
2693 +echo "$as_me: creating $ac_file" >&6;}
2694 + rm -f "$ac_file"
2695 + fi
2696 # Let's still pretend it is `configure' which instantiates (i.e., don't
2697 # use $as_me), people would be surprised to read:
2698 # /* config.h. Generated by config.status. */
2699 @@ -16095,12 +15830,6 @@
2700 fi;;
2701 esac
2702 done` || { (exit 1); exit 1; }
2703 -
2704 - if test x"$ac_file" != x-; then
2705 - { echo "$as_me:$LINENO: creating $ac_file" >&5
2706 -echo "$as_me: creating $ac_file" >&6;}
2707 - rm -f "$ac_file"
2708 - fi
2709 _ACEOF
2710 cat >>$CONFIG_STATUS <<_ACEOF
2711 sed "$ac_vpsub