ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure
Revision: 1.38
Committed: Sun Dec 2 00:39:06 2007 UTC (16 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.37: +3 -1 lines
Log Message:
cache tos

File Contents

# User Rev Content
1 pcg 1.1 #! /bin/sh
2     # Guess values for system-dependent variables and create Makefiles.
3 pcg 1.33 # Generated by GNU Autoconf 2.61.
4 pcg 1.1 #
5 pcg 1.33 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
6     # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
7 pcg 1.1 # This configure script is free software; the Free Software Foundation
8     # gives unlimited permission to copy, distribute and modify it.
9     ## --------------------- ##
10     ## M4sh Initialization. ##
11     ## --------------------- ##
12    
13 pcg 1.33 # Be more Bourne compatible
14     DUALCASE=1; export DUALCASE # for MKS sh
15 pcg 1.1 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
16     emulate sh
17     NULLCMD=:
18     # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
19     # is contrary to our usage. Disable this feature.
20     alias -g '${1+"$@"}'='"$@"'
21 pcg 1.33 setopt NO_GLOB_SUBST
22     else
23     case `(set -o) 2>/dev/null` in
24     *posix*) set -o posix ;;
25     esac
26    
27     fi
28    
29    
30    
31    
32     # PATH needs CR
33     # Avoid depending upon Character Ranges.
34     as_cr_letters='abcdefghijklmnopqrstuvwxyz'
35     as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
36     as_cr_Letters=$as_cr_letters$as_cr_LETTERS
37     as_cr_digits='0123456789'
38     as_cr_alnum=$as_cr_Letters$as_cr_digits
39    
40     # The user is always right.
41     if test "${PATH_SEPARATOR+set}" != set; then
42     echo "#! /bin/sh" >conf$$.sh
43     echo "exit 0" >>conf$$.sh
44     chmod +x conf$$.sh
45     if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
46     PATH_SEPARATOR=';'
47     else
48     PATH_SEPARATOR=:
49     fi
50     rm -f conf$$.sh
51 pcg 1.1 fi
52    
53     # Support unset when possible.
54 pcg 1.11 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
55 pcg 1.1 as_unset=unset
56     else
57     as_unset=false
58     fi
59    
60    
61 pcg 1.33 # IFS
62     # We need space, tab and new line, in precisely that order. Quoting is
63     # there to prevent editors from complaining about space-tab.
64     # (If _AS_PATH_WALK were called with IFS unset, it would disable word
65     # splitting by setting IFS to empty value.)
66     as_nl='
67     '
68     IFS=" "" $as_nl"
69    
70     # Find who we are. Look in the path if we contain no directory separator.
71     case $0 in
72     *[\\/]* ) as_myself=$0 ;;
73     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
74     for as_dir in $PATH
75     do
76     IFS=$as_save_IFS
77     test -z "$as_dir" && as_dir=.
78     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
79     done
80     IFS=$as_save_IFS
81    
82     ;;
83     esac
84     # We did not find ourselves, most probably we were run as `sh COMMAND'
85     # in which case we are not to be found in the path.
86     if test "x$as_myself" = x; then
87     as_myself=$0
88     fi
89     if test ! -f "$as_myself"; then
90     echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
91     { (exit 1); exit 1; }
92     fi
93    
94 pcg 1.1 # Work around bugs in pre-3.0 UWIN ksh.
95 pcg 1.33 for as_var in ENV MAIL MAILPATH
96     do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
97     done
98 pcg 1.1 PS1='$ '
99     PS2='> '
100     PS4='+ '
101    
102     # NLS nuisances.
103     for as_var in \
104     LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
105     LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
106     LC_TELEPHONE LC_TIME
107     do
108 pcg 1.11 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
109 pcg 1.1 eval $as_var=C; export $as_var
110     else
111 pcg 1.33 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
112 pcg 1.1 fi
113     done
114    
115     # Required to use basename.
116 pcg 1.33 if expr a : '\(a\)' >/dev/null 2>&1 &&
117     test "X`expr 00001 : '.*\(...\)'`" = X001; then
118 pcg 1.1 as_expr=expr
119     else
120     as_expr=false
121     fi
122    
123 pcg 1.33 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
124 pcg 1.1 as_basename=basename
125     else
126     as_basename=false
127     fi
128    
129    
130     # Name of the executable.
131 pcg 1.33 as_me=`$as_basename -- "$0" ||
132 pcg 1.1 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
133     X"$0" : 'X\(//\)$' \| \
134 pcg 1.33 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
135 pcg 1.1 echo X/"$0" |
136 pcg 1.33 sed '/^.*\/\([^/][^/]*\)\/*$/{
137     s//\1/
138     q
139     }
140     /^X\/\(\/\/\)$/{
141     s//\1/
142     q
143     }
144     /^X\/\(\/\).*/{
145     s//\1/
146     q
147     }
148     s/.*/./; q'`
149    
150     # CDPATH.
151     $as_unset CDPATH
152    
153 pcg 1.1
154 pcg 1.33 if test "x$CONFIG_SHELL" = x; then
155     if (eval ":") 2>/dev/null; then
156     as_have_required=yes
157     else
158     as_have_required=no
159     fi
160    
161     if test $as_have_required = yes && (eval ":
162     (as_func_return () {
163     (exit \$1)
164     }
165     as_func_success () {
166     as_func_return 0
167     }
168     as_func_failure () {
169     as_func_return 1
170     }
171     as_func_ret_success () {
172     return 0
173     }
174     as_func_ret_failure () {
175     return 1
176     }
177 pcg 1.1
178 pcg 1.33 exitcode=0
179     if as_func_success; then
180     :
181     else
182     exitcode=1
183     echo as_func_success failed.
184     fi
185    
186     if as_func_failure; then
187     exitcode=1
188     echo as_func_failure succeeded.
189     fi
190    
191     if as_func_ret_success; then
192     :
193     else
194     exitcode=1
195     echo as_func_ret_success failed.
196     fi
197 pcg 1.1
198 pcg 1.33 if as_func_ret_failure; then
199     exitcode=1
200     echo as_func_ret_failure succeeded.
201 pcg 1.1 fi
202    
203 pcg 1.33 if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
204     :
205     else
206     exitcode=1
207     echo positional parameters were not saved.
208     fi
209 pcg 1.1
210 pcg 1.33 test \$exitcode = 0) || { (exit 1); exit 1; }
211 pcg 1.1
212 pcg 1.33 (
213     as_lineno_1=\$LINENO
214     as_lineno_2=\$LINENO
215     test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
216     test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
217     ") 2> /dev/null; then
218     :
219     else
220     as_candidate_shells=
221 pcg 1.1 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
222     for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
223     do
224     IFS=$as_save_IFS
225     test -z "$as_dir" && as_dir=.
226 pcg 1.33 case $as_dir in
227 pcg 1.1 /*)
228 pcg 1.33 for as_base in sh bash ksh sh5; do
229     as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
230     done;;
231     esac
232     done
233     IFS=$as_save_IFS
234    
235    
236     for as_shell in $as_candidate_shells $SHELL; do
237     # Try only shells that exist, to save several forks.
238     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
239     { ("$as_shell") 2> /dev/null <<\_ASEOF
240     if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
241     emulate sh
242     NULLCMD=:
243     # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
244     # is contrary to our usage. Disable this feature.
245     alias -g '${1+"$@"}'='"$@"'
246     setopt NO_GLOB_SUBST
247     else
248     case `(set -o) 2>/dev/null` in
249     *posix*) set -o posix ;;
250     esac
251    
252     fi
253    
254    
255     :
256     _ASEOF
257     }; then
258     CONFIG_SHELL=$as_shell
259     as_have_required=yes
260     if { "$as_shell" 2> /dev/null <<\_ASEOF
261     if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
262     emulate sh
263     NULLCMD=:
264     # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
265     # is contrary to our usage. Disable this feature.
266     alias -g '${1+"$@"}'='"$@"'
267     setopt NO_GLOB_SUBST
268     else
269     case `(set -o) 2>/dev/null` in
270     *posix*) set -o posix ;;
271     esac
272    
273     fi
274    
275    
276     :
277     (as_func_return () {
278     (exit $1)
279     }
280     as_func_success () {
281     as_func_return 0
282     }
283     as_func_failure () {
284     as_func_return 1
285     }
286     as_func_ret_success () {
287     return 0
288     }
289     as_func_ret_failure () {
290     return 1
291     }
292    
293     exitcode=0
294     if as_func_success; then
295     :
296     else
297     exitcode=1
298     echo as_func_success failed.
299     fi
300    
301     if as_func_failure; then
302     exitcode=1
303     echo as_func_failure succeeded.
304     fi
305    
306     if as_func_ret_success; then
307     :
308     else
309     exitcode=1
310     echo as_func_ret_success failed.
311     fi
312    
313     if as_func_ret_failure; then
314     exitcode=1
315     echo as_func_ret_failure succeeded.
316     fi
317    
318     if ( set x; as_func_ret_success y && test x = "$1" ); then
319     :
320     else
321     exitcode=1
322     echo positional parameters were not saved.
323     fi
324    
325     test $exitcode = 0) || { (exit 1); exit 1; }
326    
327     (
328     as_lineno_1=$LINENO
329     as_lineno_2=$LINENO
330     test "x$as_lineno_1" != "x$as_lineno_2" &&
331     test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
332    
333     _ASEOF
334     }; then
335     break
336     fi
337    
338     fi
339    
340     done
341    
342     if test "x$CONFIG_SHELL" != x; then
343     for as_var in BASH_ENV ENV
344     do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
345     done
346     export CONFIG_SHELL
347     exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
348     fi
349    
350    
351     if test $as_have_required = no; then
352     echo This script requires a shell more modern than all the
353     echo shells that I found on your system. Please install a
354     echo modern shell, or manually run the script under such a
355     echo shell if you do have one.
356     { (exit 1); exit 1; }
357     fi
358    
359    
360     fi
361    
362     fi
363    
364    
365    
366     (eval "as_func_return () {
367     (exit \$1)
368     }
369     as_func_success () {
370     as_func_return 0
371     }
372     as_func_failure () {
373     as_func_return 1
374     }
375     as_func_ret_success () {
376     return 0
377     }
378     as_func_ret_failure () {
379     return 1
380     }
381    
382     exitcode=0
383     if as_func_success; then
384     :
385     else
386     exitcode=1
387     echo as_func_success failed.
388     fi
389    
390     if as_func_failure; then
391     exitcode=1
392     echo as_func_failure succeeded.
393     fi
394    
395     if as_func_ret_success; then
396     :
397     else
398     exitcode=1
399     echo as_func_ret_success failed.
400     fi
401    
402     if as_func_ret_failure; then
403     exitcode=1
404     echo as_func_ret_failure succeeded.
405     fi
406    
407     if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
408     :
409     else
410     exitcode=1
411     echo positional parameters were not saved.
412     fi
413    
414     test \$exitcode = 0") || {
415     echo No shell found that supports shell functions.
416     echo Please tell autoconf@gnu.org about your system,
417     echo including any error possibly output before this
418     echo message
419     }
420    
421    
422    
423 pcg 1.1 as_lineno_1=$LINENO
424     as_lineno_2=$LINENO
425     test "x$as_lineno_1" != "x$as_lineno_2" &&
426 pcg 1.33 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
427 pcg 1.1
428     # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
429     # uniformly replaced by the line number. The first 'sed' inserts a
430 pcg 1.33 # line-number line after each line using $LINENO; the second 'sed'
431     # does the real work. The second script uses 'N' to pair each
432     # line-number line with the line containing $LINENO, and appends
433     # trailing '-' during substitution so that $LINENO is not a special
434     # case at line end.
435 pcg 1.1 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
436 pcg 1.33 # scripts with optimization help from Paolo Bonzini. Blame Lee
437     # E. McMahon (1931-1989) for sed's syntax. :-)
438     sed -n '
439     p
440     /[$]LINENO/=
441     ' <$as_myself |
442 pcg 1.1 sed '
443 pcg 1.33 s/[$]LINENO.*/&-/
444     t lineno
445     b
446     :lineno
447 pcg 1.1 N
448 pcg 1.33 :loop
449     s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
450 pcg 1.1 t loop
451 pcg 1.33 s/-\n.*//
452 pcg 1.1 ' >$as_me.lineno &&
453 pcg 1.33 chmod +x "$as_me.lineno" ||
454 pcg 1.1 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
455     { (exit 1); exit 1; }; }
456    
457     # Don't try to exec as it changes $[0], causing all sort of problems
458     # (the dirname of $[0] is not the place where we might find the
459 pcg 1.33 # original and so on. Autoconf is especially sensitive to this).
460     . "./$as_me.lineno"
461 pcg 1.1 # Exit status is that of the last command.
462     exit
463     }
464    
465    
466 pcg 1.33 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
467     as_dirname=dirname
468     else
469     as_dirname=false
470     fi
471    
472     ECHO_C= ECHO_N= ECHO_T=
473     case `echo -n x` in
474     -n*)
475     case `echo 'x\c'` in
476     *c*) ECHO_T=' ';; # ECHO_T is single tab character.
477     *) ECHO_C='\c';;
478     esac;;
479     *)
480     ECHO_N='-n';;
481 pcg 1.1 esac
482    
483 pcg 1.33 if expr a : '\(a\)' >/dev/null 2>&1 &&
484     test "X`expr 00001 : '.*\(...\)'`" = X001; then
485 pcg 1.1 as_expr=expr
486     else
487     as_expr=false
488     fi
489    
490     rm -f conf$$ conf$$.exe conf$$.file
491 pcg 1.33 if test -d conf$$.dir; then
492     rm -f conf$$.dir/conf$$.file
493     else
494     rm -f conf$$.dir
495     mkdir conf$$.dir
496     fi
497 pcg 1.1 echo >conf$$.file
498     if ln -s conf$$.file conf$$ 2>/dev/null; then
499 pcg 1.33 as_ln_s='ln -s'
500     # ... but there are two gotchas:
501     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
502     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
503     # In both cases, we have to default to `cp -p'.
504     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
505 pcg 1.1 as_ln_s='cp -p'
506     elif ln conf$$.file conf$$ 2>/dev/null; then
507     as_ln_s=ln
508     else
509     as_ln_s='cp -p'
510     fi
511 pcg 1.33 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
512     rmdir conf$$.dir 2>/dev/null
513 pcg 1.1
514     if mkdir -p . 2>/dev/null; then
515     as_mkdir_p=:
516     else
517 pcg 1.11 test -d ./-p && rmdir ./-p
518 pcg 1.1 as_mkdir_p=false
519     fi
520    
521 pcg 1.33 if test -x / >/dev/null 2>&1; then
522     as_test_x='test -x'
523     else
524     if ls -dL / >/dev/null 2>&1; then
525     as_ls_L_option=L
526     else
527     as_ls_L_option=
528     fi
529     as_test_x='
530     eval sh -c '\''
531     if test -d "$1"; then
532     test -d "$1/.";
533     else
534     case $1 in
535     -*)set "./$1";;
536     esac;
537     case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
538     ???[sx]*):;;*)false;;esac;fi
539     '\'' sh
540     '
541     fi
542     as_executable_p=$as_test_x
543 pcg 1.1
544     # Sed expression to map a string onto a valid CPP name.
545 pcg 1.11 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
546 pcg 1.1
547     # Sed expression to map a string onto a valid variable name.
548 pcg 1.11 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
549 pcg 1.1
550    
551    
552 pcg 1.33 exec 7<&0 </dev/null 6>&1
553 pcg 1.1
554     # Name of the host.
555     # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
556     # so uname gets run too.
557     ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
558    
559     #
560     # Initializations.
561     #
562     ac_default_prefix=/usr/local
563 pcg 1.33 ac_clean_files=
564 pcg 1.1 ac_config_libobj_dir=.
565 pcg 1.33 LIBOBJS=
566 pcg 1.1 cross_compiling=no
567     subdirs=
568     MFLAGS=
569     MAKEFLAGS=
570     SHELL=${CONFIG_SHELL-/bin/sh}
571    
572     # Identity of this package.
573     PACKAGE_NAME=
574     PACKAGE_TARNAME=
575     PACKAGE_VERSION=
576     PACKAGE_STRING=
577     PACKAGE_BUGREPORT=
578    
579 pcg 1.26 ac_unique_file="src/gvpe.C"
580 pcg 1.1 # Factoring default headers for most tests.
581     ac_includes_default="\
582     #include <stdio.h>
583 pcg 1.33 #ifdef HAVE_SYS_TYPES_H
584 pcg 1.1 # include <sys/types.h>
585     #endif
586 pcg 1.33 #ifdef HAVE_SYS_STAT_H
587 pcg 1.1 # include <sys/stat.h>
588     #endif
589 pcg 1.33 #ifdef STDC_HEADERS
590 pcg 1.1 # include <stdlib.h>
591     # include <stddef.h>
592     #else
593 pcg 1.33 # ifdef HAVE_STDLIB_H
594 pcg 1.1 # include <stdlib.h>
595     # endif
596     #endif
597 pcg 1.33 #ifdef HAVE_STRING_H
598     # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
599 pcg 1.1 # include <memory.h>
600     # endif
601     # include <string.h>
602     #endif
603 pcg 1.33 #ifdef HAVE_STRINGS_H
604 pcg 1.1 # include <strings.h>
605     #endif
606 pcg 1.33 #ifdef HAVE_INTTYPES_H
607 pcg 1.1 # include <inttypes.h>
608     #endif
609 pcg 1.33 #ifdef HAVE_STDINT_H
610     # include <stdint.h>
611     #endif
612     #ifdef HAVE_UNISTD_H
613 pcg 1.1 # include <unistd.h>
614     #endif"
615    
616 pcg 1.33 ac_subst_vars='SHELL
617     PATH_SEPARATOR
618     PACKAGE_NAME
619     PACKAGE_TARNAME
620     PACKAGE_VERSION
621     PACKAGE_STRING
622     PACKAGE_BUGREPORT
623     exec_prefix
624     prefix
625     program_transform_name
626     bindir
627     sbindir
628     libexecdir
629     datarootdir
630     datadir
631     sysconfdir
632     sharedstatedir
633     localstatedir
634     includedir
635     oldincludedir
636     docdir
637     infodir
638     htmldir
639     dvidir
640     pdfdir
641     psdir
642     libdir
643     localedir
644     mandir
645     DEFS
646     ECHO_C
647     ECHO_N
648     ECHO_T
649     LIBS
650     build_alias
651     host_alias
652     target_alias
653     build
654     build_cpu
655     build_vendor
656     build_os
657     host
658     host_cpu
659     host_vendor
660     host_os
661     target
662     target_cpu
663     target_vendor
664     target_os
665     INSTALL_PROGRAM
666     INSTALL_SCRIPT
667     INSTALL_DATA
668     CYGPATH_W
669     PACKAGE
670     VERSION
671     ACLOCAL
672     AUTOCONF
673     AUTOMAKE
674     AUTOHEADER
675     MAKEINFO
676     AMTAR
677     install_sh
678     STRIP
679     INSTALL_STRIP_PROGRAM
680     AWK
681     SET_MAKE
682     am__leading_dot
683     MAINTAINER_MODE_TRUE
684     MAINTAINER_MODE_FALSE
685     MAINT
686     MKINSTALLDIRS
687     MSGFMT
688     GMSGFMT
689     XGETTEXT
690     MSGMERGE
691     CC
692     CFLAGS
693     LDFLAGS
694     CPPFLAGS
695     ac_ct_CC
696     EXEEXT
697     OBJEXT
698     DEPDIR
699     am__include
700     am__quote
701     AMDEP_TRUE
702     AMDEP_FALSE
703     AMDEPBACKSLASH
704     CCDEPMODE
705     am__fastdepCC_TRUE
706     am__fastdepCC_FALSE
707     USE_NLS
708     LIBICONV
709     LTLIBICONV
710     INTLLIBS
711     LIBINTL
712     LTLIBINTL
713     POSUB
714     CPP
715     CXX
716     CXXFLAGS
717     ac_ct_CXX
718     CXXDEPMODE
719     am__fastdepCXX_TRUE
720     am__fastdepCXX_FALSE
721     GREP
722     EGREP
723     LN_S
724     RANLIB
725     IFTYPE
726     IFSUBTYPE
727     CXXCPP
728     ALLOCA
729     LINUX_IF_TUN_H
730     HAVE_TUNTAP
731     LDFLAGS_DAEMON
732     ROHC_TRUE
733     ROHC_FALSE
734     INCLUDES
735     LIBOBJS
736     LTLIBOBJS'
737 pcg 1.1 ac_subst_files=''
738 pcg 1.33 ac_precious_vars='build_alias
739     host_alias
740     target_alias
741     CC
742     CFLAGS
743     LDFLAGS
744     LIBS
745     CPPFLAGS
746     CPP
747     CXX
748     CXXFLAGS
749     CCC
750     CXXCPP'
751    
752 pcg 1.1
753     # Initialize some variables set by options.
754     ac_init_help=
755     ac_init_version=false
756     # The variables have the same names as the options, with
757     # dashes changed to underlines.
758     cache_file=/dev/null
759     exec_prefix=NONE
760     no_create=
761     no_recursion=
762     prefix=NONE
763     program_prefix=NONE
764     program_suffix=NONE
765     program_transform_name=s,x,x,
766     silent=
767     site=
768     srcdir=
769     verbose=
770     x_includes=NONE
771     x_libraries=NONE
772    
773     # Installation directory options.
774     # These are left unexpanded so users can "make install exec_prefix=/foo"
775     # and all the variables that are supposed to be based on exec_prefix
776     # by default will actually change.
777     # Use braces instead of parens because sh, perl, etc. also accept them.
778 pcg 1.33 # (The list follows the same order as the GNU Coding Standards.)
779 pcg 1.1 bindir='${exec_prefix}/bin'
780     sbindir='${exec_prefix}/sbin'
781     libexecdir='${exec_prefix}/libexec'
782 pcg 1.33 datarootdir='${prefix}/share'
783     datadir='${datarootdir}'
784 pcg 1.1 sysconfdir='${prefix}/etc'
785     sharedstatedir='${prefix}/com'
786     localstatedir='${prefix}/var'
787     includedir='${prefix}/include'
788     oldincludedir='/usr/include'
789 pcg 1.33 docdir='${datarootdir}/doc/${PACKAGE}'
790     infodir='${datarootdir}/info'
791     htmldir='${docdir}'
792     dvidir='${docdir}'
793     pdfdir='${docdir}'
794     psdir='${docdir}'
795     libdir='${exec_prefix}/lib'
796     localedir='${datarootdir}/locale'
797     mandir='${datarootdir}/man'
798 pcg 1.1
799     ac_prev=
800 pcg 1.33 ac_dashdash=
801 pcg 1.1 for ac_option
802     do
803     # If the previous option needs an argument, assign it.
804     if test -n "$ac_prev"; then
805 pcg 1.33 eval $ac_prev=\$ac_option
806 pcg 1.1 ac_prev=
807     continue
808     fi
809    
810 pcg 1.33 case $ac_option in
811     *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
812     *) ac_optarg=yes ;;
813     esac
814 pcg 1.1
815     # Accept the important Cygnus configure options, so we can diagnose typos.
816    
817 pcg 1.33 case $ac_dashdash$ac_option in
818     --)
819     ac_dashdash=yes ;;
820 pcg 1.1
821     -bindir | --bindir | --bindi | --bind | --bin | --bi)
822     ac_prev=bindir ;;
823     -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
824     bindir=$ac_optarg ;;
825    
826     -build | --build | --buil | --bui | --bu)
827     ac_prev=build_alias ;;
828     -build=* | --build=* | --buil=* | --bui=* | --bu=*)
829     build_alias=$ac_optarg ;;
830    
831     -cache-file | --cache-file | --cache-fil | --cache-fi \
832     | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
833     ac_prev=cache_file ;;
834     -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
835     | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
836     cache_file=$ac_optarg ;;
837    
838     --config-cache | -C)
839     cache_file=config.cache ;;
840    
841 pcg 1.33 -datadir | --datadir | --datadi | --datad)
842 pcg 1.1 ac_prev=datadir ;;
843 pcg 1.33 -datadir=* | --datadir=* | --datadi=* | --datad=*)
844 pcg 1.1 datadir=$ac_optarg ;;
845    
846 pcg 1.33 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
847     | --dataroo | --dataro | --datar)
848     ac_prev=datarootdir ;;
849     -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
850     | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
851     datarootdir=$ac_optarg ;;
852    
853 pcg 1.1 -disable-* | --disable-*)
854     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
855     # Reject names that are not valid shell variable names.
856 pcg 1.33 expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
857 pcg 1.1 { echo "$as_me: error: invalid feature name: $ac_feature" >&2
858     { (exit 1); exit 1; }; }
859 pcg 1.33 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
860     eval enable_$ac_feature=no ;;
861    
862     -docdir | --docdir | --docdi | --doc | --do)
863     ac_prev=docdir ;;
864     -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
865     docdir=$ac_optarg ;;
866    
867     -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
868     ac_prev=dvidir ;;
869     -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
870     dvidir=$ac_optarg ;;
871 pcg 1.1
872     -enable-* | --enable-*)
873     ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
874     # Reject names that are not valid shell variable names.
875 pcg 1.33 expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
876 pcg 1.1 { echo "$as_me: error: invalid feature name: $ac_feature" >&2
877     { (exit 1); exit 1; }; }
878 pcg 1.33 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
879     eval enable_$ac_feature=\$ac_optarg ;;
880 pcg 1.1
881     -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
882     | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
883     | --exec | --exe | --ex)
884     ac_prev=exec_prefix ;;
885     -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
886     | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
887     | --exec=* | --exe=* | --ex=*)
888     exec_prefix=$ac_optarg ;;
889    
890     -gas | --gas | --ga | --g)
891     # Obsolete; use --with-gas.
892     with_gas=yes ;;
893    
894     -help | --help | --hel | --he | -h)
895     ac_init_help=long ;;
896     -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
897     ac_init_help=recursive ;;
898     -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
899     ac_init_help=short ;;
900    
901     -host | --host | --hos | --ho)
902     ac_prev=host_alias ;;
903     -host=* | --host=* | --hos=* | --ho=*)
904     host_alias=$ac_optarg ;;
905    
906 pcg 1.33 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
907     ac_prev=htmldir ;;
908     -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
909     | --ht=*)
910     htmldir=$ac_optarg ;;
911    
912 pcg 1.1 -includedir | --includedir | --includedi | --included | --include \
913     | --includ | --inclu | --incl | --inc)
914     ac_prev=includedir ;;
915     -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
916     | --includ=* | --inclu=* | --incl=* | --inc=*)
917     includedir=$ac_optarg ;;
918    
919     -infodir | --infodir | --infodi | --infod | --info | --inf)
920     ac_prev=infodir ;;
921     -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
922     infodir=$ac_optarg ;;
923    
924     -libdir | --libdir | --libdi | --libd)
925     ac_prev=libdir ;;
926     -libdir=* | --libdir=* | --libdi=* | --libd=*)
927     libdir=$ac_optarg ;;
928    
929     -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
930     | --libexe | --libex | --libe)
931     ac_prev=libexecdir ;;
932     -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
933     | --libexe=* | --libex=* | --libe=*)
934     libexecdir=$ac_optarg ;;
935    
936 pcg 1.33 -localedir | --localedir | --localedi | --localed | --locale)
937     ac_prev=localedir ;;
938     -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
939     localedir=$ac_optarg ;;
940    
941 pcg 1.1 -localstatedir | --localstatedir | --localstatedi | --localstated \
942 pcg 1.33 | --localstate | --localstat | --localsta | --localst | --locals)
943 pcg 1.1 ac_prev=localstatedir ;;
944     -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
945 pcg 1.33 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
946 pcg 1.1 localstatedir=$ac_optarg ;;
947    
948     -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
949     ac_prev=mandir ;;
950     -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
951     mandir=$ac_optarg ;;
952    
953     -nfp | --nfp | --nf)
954     # Obsolete; use --without-fp.
955     with_fp=no ;;
956    
957     -no-create | --no-create | --no-creat | --no-crea | --no-cre \
958     | --no-cr | --no-c | -n)
959     no_create=yes ;;
960    
961     -no-recursion | --no-recursion | --no-recursio | --no-recursi \
962     | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
963     no_recursion=yes ;;
964    
965     -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
966     | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
967     | --oldin | --oldi | --old | --ol | --o)
968     ac_prev=oldincludedir ;;
969     -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
970     | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
971     | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
972     oldincludedir=$ac_optarg ;;
973    
974     -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
975     ac_prev=prefix ;;
976     -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
977     prefix=$ac_optarg ;;
978    
979     -program-prefix | --program-prefix | --program-prefi | --program-pref \
980     | --program-pre | --program-pr | --program-p)
981     ac_prev=program_prefix ;;
982     -program-prefix=* | --program-prefix=* | --program-prefi=* \
983     | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
984     program_prefix=$ac_optarg ;;
985    
986     -program-suffix | --program-suffix | --program-suffi | --program-suff \
987     | --program-suf | --program-su | --program-s)
988     ac_prev=program_suffix ;;
989     -program-suffix=* | --program-suffix=* | --program-suffi=* \
990     | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
991     program_suffix=$ac_optarg ;;
992    
993     -program-transform-name | --program-transform-name \
994     | --program-transform-nam | --program-transform-na \
995     | --program-transform-n | --program-transform- \
996     | --program-transform | --program-transfor \
997     | --program-transfo | --program-transf \
998     | --program-trans | --program-tran \
999     | --progr-tra | --program-tr | --program-t)
1000     ac_prev=program_transform_name ;;
1001     -program-transform-name=* | --program-transform-name=* \
1002     | --program-transform-nam=* | --program-transform-na=* \
1003     | --program-transform-n=* | --program-transform-=* \
1004     | --program-transform=* | --program-transfor=* \
1005     | --program-transfo=* | --program-transf=* \
1006     | --program-trans=* | --program-tran=* \
1007     | --progr-tra=* | --program-tr=* | --program-t=*)
1008     program_transform_name=$ac_optarg ;;
1009    
1010 pcg 1.33 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
1011     ac_prev=pdfdir ;;
1012     -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
1013     pdfdir=$ac_optarg ;;
1014    
1015     -psdir | --psdir | --psdi | --psd | --ps)
1016     ac_prev=psdir ;;
1017     -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
1018     psdir=$ac_optarg ;;
1019    
1020 pcg 1.1 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1021     | -silent | --silent | --silen | --sile | --sil)
1022     silent=yes ;;
1023    
1024     -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
1025     ac_prev=sbindir ;;
1026     -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1027     | --sbi=* | --sb=*)
1028     sbindir=$ac_optarg ;;
1029    
1030     -sharedstatedir | --sharedstatedir | --sharedstatedi \
1031     | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
1032     | --sharedst | --shareds | --shared | --share | --shar \
1033     | --sha | --sh)
1034     ac_prev=sharedstatedir ;;
1035     -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1036     | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1037     | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1038     | --sha=* | --sh=*)
1039     sharedstatedir=$ac_optarg ;;
1040    
1041     -site | --site | --sit)
1042     ac_prev=site ;;
1043     -site=* | --site=* | --sit=*)
1044     site=$ac_optarg ;;
1045    
1046     -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1047     ac_prev=srcdir ;;
1048     -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1049     srcdir=$ac_optarg ;;
1050    
1051     -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1052     | --syscon | --sysco | --sysc | --sys | --sy)
1053     ac_prev=sysconfdir ;;
1054     -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1055     | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1056     sysconfdir=$ac_optarg ;;
1057    
1058     -target | --target | --targe | --targ | --tar | --ta | --t)
1059     ac_prev=target_alias ;;
1060     -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1061     target_alias=$ac_optarg ;;
1062    
1063     -v | -verbose | --verbose | --verbos | --verbo | --verb)
1064     verbose=yes ;;
1065    
1066     -version | --version | --versio | --versi | --vers | -V)
1067     ac_init_version=: ;;
1068    
1069     -with-* | --with-*)
1070     ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1071     # Reject names that are not valid shell variable names.
1072 pcg 1.33 expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1073 pcg 1.1 { echo "$as_me: error: invalid package name: $ac_package" >&2
1074     { (exit 1); exit 1; }; }
1075 pcg 1.33 ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
1076     eval with_$ac_package=\$ac_optarg ;;
1077 pcg 1.1
1078     -without-* | --without-*)
1079     ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1080     # Reject names that are not valid shell variable names.
1081 pcg 1.33 expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1082 pcg 1.1 { echo "$as_me: error: invalid package name: $ac_package" >&2
1083     { (exit 1); exit 1; }; }
1084 pcg 1.33 ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
1085     eval with_$ac_package=no ;;
1086 pcg 1.1
1087     --x)
1088     # Obsolete; use --with-x.
1089     with_x=yes ;;
1090    
1091     -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1092     | --x-incl | --x-inc | --x-in | --x-i)
1093     ac_prev=x_includes ;;
1094     -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1095     | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1096     x_includes=$ac_optarg ;;
1097    
1098     -x-libraries | --x-libraries | --x-librarie | --x-librari \
1099     | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1100     ac_prev=x_libraries ;;
1101     -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1102     | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1103     x_libraries=$ac_optarg ;;
1104    
1105     -*) { echo "$as_me: error: unrecognized option: $ac_option
1106     Try \`$0 --help' for more information." >&2
1107     { (exit 1); exit 1; }; }
1108     ;;
1109    
1110     *=*)
1111     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1112     # Reject names that are not valid shell variable names.
1113     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
1114     { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
1115     { (exit 1); exit 1; }; }
1116 pcg 1.33 eval $ac_envvar=\$ac_optarg
1117 pcg 1.1 export $ac_envvar ;;
1118    
1119     *)
1120     # FIXME: should be removed in autoconf 3.0.
1121     echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1122     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1123     echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1124     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
1125     ;;
1126    
1127     esac
1128     done
1129    
1130     if test -n "$ac_prev"; then
1131     ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1132     { echo "$as_me: error: missing argument to $ac_option" >&2
1133     { (exit 1); exit 1; }; }
1134     fi
1135    
1136 pcg 1.33 # Be sure to have absolute directory names.
1137     for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
1138     datadir sysconfdir sharedstatedir localstatedir includedir \
1139     oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1140     libdir localedir mandir
1141 pcg 1.1 do
1142 pcg 1.33 eval ac_val=\$$ac_var
1143 pcg 1.1 case $ac_val in
1144 pcg 1.33 [\\/$]* | ?:[\\/]* ) continue;;
1145     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1146 pcg 1.1 esac
1147 pcg 1.33 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
1148     { (exit 1); exit 1; }; }
1149 pcg 1.1 done
1150    
1151     # There might be people who depend on the old broken behavior: `$host'
1152     # used to hold the argument of --host etc.
1153     # FIXME: To remove some day.
1154     build=$build_alias
1155     host=$host_alias
1156     target=$target_alias
1157    
1158     # FIXME: To remove some day.
1159     if test "x$host_alias" != x; then
1160     if test "x$build_alias" = x; then
1161     cross_compiling=maybe
1162     echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
1163     If a cross compiler is detected then cross compile mode will be used." >&2
1164     elif test "x$build_alias" != "x$host_alias"; then
1165     cross_compiling=yes
1166     fi
1167     fi
1168    
1169     ac_tool_prefix=
1170     test -n "$host_alias" && ac_tool_prefix=$host_alias-
1171    
1172     test "$silent" = yes && exec 6>/dev/null
1173    
1174    
1175 pcg 1.33 ac_pwd=`pwd` && test -n "$ac_pwd" &&
1176     ac_ls_di=`ls -di .` &&
1177     ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1178     { echo "$as_me: error: Working directory cannot be determined" >&2
1179     { (exit 1); exit 1; }; }
1180     test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1181     { echo "$as_me: error: pwd does not report name of working directory" >&2
1182     { (exit 1); exit 1; }; }
1183    
1184    
1185 pcg 1.1 # Find the source files, if location was not specified.
1186     if test -z "$srcdir"; then
1187     ac_srcdir_defaulted=yes
1188 pcg 1.33 # Try the directory containing this script, then the parent directory.
1189     ac_confdir=`$as_dirname -- "$0" ||
1190 pcg 1.1 $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1191 pcg 1.11 X"$0" : 'X\(//\)[^/]' \| \
1192     X"$0" : 'X\(//\)$' \| \
1193 pcg 1.33 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
1194 pcg 1.1 echo X"$0" |
1195 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1196     s//\1/
1197     q
1198     }
1199     /^X\(\/\/\)[^/].*/{
1200     s//\1/
1201     q
1202     }
1203     /^X\(\/\/\)$/{
1204     s//\1/
1205     q
1206     }
1207     /^X\(\/\).*/{
1208     s//\1/
1209     q
1210     }
1211     s/.*/./; q'`
1212 pcg 1.1 srcdir=$ac_confdir
1213 pcg 1.33 if test ! -r "$srcdir/$ac_unique_file"; then
1214 pcg 1.1 srcdir=..
1215     fi
1216     else
1217     ac_srcdir_defaulted=no
1218     fi
1219 pcg 1.33 if test ! -r "$srcdir/$ac_unique_file"; then
1220     test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1221     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
1222     { (exit 1); exit 1; }; }
1223     fi
1224     ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1225     ac_abs_confdir=`(
1226     cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
1227     { (exit 1); exit 1; }; }
1228     pwd)`
1229     # When building in place, set srcdir=.
1230     if test "$ac_abs_confdir" = "$ac_pwd"; then
1231     srcdir=.
1232     fi
1233     # Remove unnecessary trailing slashes from srcdir.
1234     # Double slashes in file names in object file debugging info
1235     # mess up M-x gdb in Emacs.
1236     case $srcdir in
1237     */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1238     esac
1239     for ac_var in $ac_precious_vars; do
1240     eval ac_env_${ac_var}_set=\${${ac_var}+set}
1241     eval ac_env_${ac_var}_value=\$${ac_var}
1242     eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1243     eval ac_cv_env_${ac_var}_value=\$${ac_var}
1244     done
1245    
1246 pcg 1.1 #
1247     # Report the --help message.
1248     #
1249     if test "$ac_init_help" = "long"; then
1250     # Omit some internal or obsolete options to make the list less imposing.
1251     # This message is too long to be a string in the A/UX 3.1 sh.
1252     cat <<_ACEOF
1253     \`configure' configures this package to adapt to many kinds of systems.
1254    
1255     Usage: $0 [OPTION]... [VAR=VALUE]...
1256    
1257     To assign environment variables (e.g., CC, CFLAGS...), specify them as
1258     VAR=VALUE. See below for descriptions of some of the useful variables.
1259    
1260     Defaults for the options are specified in brackets.
1261    
1262     Configuration:
1263     -h, --help display this help and exit
1264     --help=short display options specific to this package
1265     --help=recursive display the short help of all the included packages
1266     -V, --version display version information and exit
1267     -q, --quiet, --silent do not print \`checking...' messages
1268     --cache-file=FILE cache test results in FILE [disabled]
1269     -C, --config-cache alias for \`--cache-file=config.cache'
1270     -n, --no-create do not create output files
1271     --srcdir=DIR find the sources in DIR [configure dir or \`..']
1272    
1273     Installation directories:
1274     --prefix=PREFIX install architecture-independent files in PREFIX
1275 pcg 1.11 [$ac_default_prefix]
1276 pcg 1.1 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
1277 pcg 1.11 [PREFIX]
1278 pcg 1.1
1279     By default, \`make install' will install all the files in
1280     \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
1281     an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1282     for instance \`--prefix=\$HOME'.
1283    
1284     For better control, use the options below.
1285    
1286     Fine tuning of the installation directories:
1287     --bindir=DIR user executables [EPREFIX/bin]
1288     --sbindir=DIR system admin executables [EPREFIX/sbin]
1289     --libexecdir=DIR program executables [EPREFIX/libexec]
1290     --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
1291     --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
1292     --localstatedir=DIR modifiable single-machine data [PREFIX/var]
1293     --libdir=DIR object code libraries [EPREFIX/lib]
1294     --includedir=DIR C header files [PREFIX/include]
1295     --oldincludedir=DIR C header files for non-gcc [/usr/include]
1296 pcg 1.33 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
1297     --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
1298     --infodir=DIR info documentation [DATAROOTDIR/info]
1299     --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
1300     --mandir=DIR man documentation [DATAROOTDIR/man]
1301     --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
1302     --htmldir=DIR html documentation [DOCDIR]
1303     --dvidir=DIR dvi documentation [DOCDIR]
1304     --pdfdir=DIR pdf documentation [DOCDIR]
1305     --psdir=DIR ps documentation [DOCDIR]
1306 pcg 1.1 _ACEOF
1307    
1308     cat <<\_ACEOF
1309    
1310     Program names:
1311     --program-prefix=PREFIX prepend PREFIX to installed program names
1312     --program-suffix=SUFFIX append SUFFIX to installed program names
1313     --program-transform-name=PROGRAM run sed PROGRAM on installed program names
1314    
1315     System types:
1316     --build=BUILD configure for building on BUILD [guessed]
1317     --host=HOST cross-compile to build programs to run on HOST [BUILD]
1318     --target=TARGET configure for building compilers for TARGET [HOST]
1319     _ACEOF
1320     fi
1321    
1322     if test -n "$ac_init_help"; then
1323    
1324     cat <<\_ACEOF
1325    
1326     Optional Features:
1327     --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1328     --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1329 pcg 1.33 --enable-maintainer-mode enable make rules and dependencies not useful
1330     (and sometimes confusing) to the casual installer
1331     --disable-dependency-tracking Speeds up one-time builds
1332     --enable-dependency-tracking Do not reject slow dependency extractors
1333 pcg 1.1 --disable-rpath do not hardcode runtime library paths
1334     --disable-nls do not use Native Language Support
1335     --enable-iftype=TYPE/SUBTYPE
1336 pcg 1.14 Use kernel/net device interface TYPE/SUBTYPE.
1337 pcg 1.28 Working combinations are (see doc/gvpe.osdep.5.pod):
1338     "native/linux" "tincd/linux" "tincd/netbsd"
1339     "tincd/freebsd" "tincd/openbsd" "native/darwin"
1340 pcg 1.14 "tincd/darwin" "native/cygwin"; Untested
1341 pcg 1.29 combinations are: "tincd/bsd" "tincd/solaris"
1342     "tincd/mingw" "tincd/raw_socket" "tincd/uml_socket";
1343     Broken combinations are: "tincd/cygwin"; The default
1344     is to autodetect.
1345 pcg 1.21 --enable-static-daemon enable statically linked daemon.
1346 pcg 1.14 --enable-rohc enable robust header compression (rfc3095).
1347     --enable-icmp enable icmp protocol support (default disabled).
1348     --enable-tcp enable tcp protocol support (default disabled).
1349 pcg 1.17 --enable-dns enable dns tunnel protocol support (DOES NOT WORK).
1350 pcg 1.14 --enable-http-proxy enable http proxy connect support (default
1351     disabled).
1352 pcg 1.1 --enable-hmac-length=BYTES
1353 pcg 1.21 use a hmac of length BYTES bytes (default 12).
1354     Allowed values are 4, 8, 12, 16.
1355 pcg 1.1 --enable-rand-length=BYTES
1356 pcg 1.21 use BYTES bytes of extra randomness (default 8).
1357     Allowed values are 0, 4, 8.
1358 pcg 1.14 --enable-max-mtu=BYTES enable mtu sizes upto BYTES bytes (default 1500).
1359 pcg 1.1 Use 9100 for jumbogram support.
1360 pcg 1.14 --disable-compression Disable compression support.
1361 pcg 1.30 --enable-cipher Select the symmetric cipher (default "aes-128").
1362     Must be one of "bf" (blowfish), "aes-128"
1363     (rijndael), "aes-192" or "aes-256".
1364 pcg 1.33 --enable-digest Select the digest algorithm to use (default
1365     "ripemd160"). Must be one of "sha512", "sha256",
1366     "sha1", "ripemd160", "md5" or "md4" (insecure).
1367 pcg 1.1
1368     Optional Packages:
1369     --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
1370     --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
1371     --with-gnu-ld assume the C compiler uses GNU ld default=no
1372     --with-libiconv-prefix=DIR search for libiconv in DIR/include and DIR/lib
1373     --without-libiconv-prefix don't search for libiconv in includedir and libdir
1374     --with-libintl-prefix=DIR search for libintl in DIR/include and DIR/lib
1375     --without-libintl-prefix don't search for libintl in includedir and libdir
1376     --with-kernel=dir give the directory with kernel sources
1377     (default: /usr/src/linux)
1378     --with-openssl-include=DIR OpenSSL headers directory (without trailing /openssl)
1379     --with-openssl-lib=DIR OpenSSL library directory
1380    
1381     Some influential environment variables:
1382 pcg 1.14 CC C compiler command
1383     CFLAGS C compiler flags
1384     LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
1385     nonstandard directory <lib dir>
1386 pcg 1.33 LIBS libraries to pass to the linker, e.g. -l<library>
1387     CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
1388     you have headers in a nonstandard directory <include dir>
1389 pcg 1.14 CPP C preprocessor
1390     CXX C++ compiler command
1391     CXXFLAGS C++ compiler flags
1392     CXXCPP C++ preprocessor
1393 pcg 1.1
1394     Use these variables to override the choices made by `configure' or to help
1395     it to find libraries and programs with nonstandard names/locations.
1396    
1397     _ACEOF
1398 pcg 1.33 ac_status=$?
1399 pcg 1.1 fi
1400    
1401     if test "$ac_init_help" = "recursive"; then
1402     # If there are subdirs, report their specific --help.
1403     for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1404 pcg 1.33 test -d "$ac_dir" || continue
1405 pcg 1.1 ac_builddir=.
1406    
1407 pcg 1.33 case "$ac_dir" in
1408     .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1409     *)
1410 pcg 1.1 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
1411 pcg 1.33 # A ".." for each directory in $ac_dir_suffix.
1412     ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
1413     case $ac_top_builddir_sub in
1414     "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1415     *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1416     esac ;;
1417     esac
1418     ac_abs_top_builddir=$ac_pwd
1419     ac_abs_builddir=$ac_pwd$ac_dir_suffix
1420     # for backward compatibility:
1421     ac_top_builddir=$ac_top_build_prefix
1422 pcg 1.1
1423     case $srcdir in
1424 pcg 1.33 .) # We are building in place.
1425 pcg 1.1 ac_srcdir=.
1426 pcg 1.33 ac_top_srcdir=$ac_top_builddir_sub
1427     ac_abs_top_srcdir=$ac_pwd ;;
1428     [\\/]* | ?:[\\/]* ) # Absolute name.
1429 pcg 1.1 ac_srcdir=$srcdir$ac_dir_suffix;
1430 pcg 1.33 ac_top_srcdir=$srcdir
1431     ac_abs_top_srcdir=$srcdir ;;
1432     *) # Relative name.
1433     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1434     ac_top_srcdir=$ac_top_build_prefix$srcdir
1435     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1436 pcg 1.11 esac
1437 pcg 1.33 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1438 pcg 1.1
1439 pcg 1.33 cd "$ac_dir" || { ac_status=$?; continue; }
1440     # Check for guested configure.
1441     if test -f "$ac_srcdir/configure.gnu"; then
1442     echo &&
1443     $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1444     elif test -f "$ac_srcdir/configure"; then
1445     echo &&
1446     $SHELL "$ac_srcdir/configure" --help=recursive
1447 pcg 1.1 else
1448     echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1449 pcg 1.33 fi || ac_status=$?
1450     cd "$ac_pwd" || { ac_status=$?; break; }
1451 pcg 1.1 done
1452     fi
1453    
1454 pcg 1.33 test -n "$ac_init_help" && exit $ac_status
1455 pcg 1.1 if $ac_init_version; then
1456     cat <<\_ACEOF
1457 pcg 1.33 configure
1458     generated by GNU Autoconf 2.61
1459 pcg 1.1
1460 pcg 1.33 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
1461     2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
1462 pcg 1.1 This configure script is free software; the Free Software Foundation
1463     gives unlimited permission to copy, distribute and modify it.
1464     _ACEOF
1465 pcg 1.33 exit
1466 pcg 1.1 fi
1467 pcg 1.33 cat >config.log <<_ACEOF
1468 pcg 1.1 This file contains any messages produced by compilers while
1469     running configure, to aid debugging if configure makes a mistake.
1470    
1471     It was created by $as_me, which was
1472 pcg 1.33 generated by GNU Autoconf 2.61. Invocation command line was
1473 pcg 1.1
1474     $ $0 $@
1475    
1476     _ACEOF
1477 pcg 1.33 exec 5>>config.log
1478 pcg 1.1 {
1479     cat <<_ASUNAME
1480     ## --------- ##
1481     ## Platform. ##
1482     ## --------- ##
1483    
1484     hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1485     uname -m = `(uname -m) 2>/dev/null || echo unknown`
1486     uname -r = `(uname -r) 2>/dev/null || echo unknown`
1487     uname -s = `(uname -s) 2>/dev/null || echo unknown`
1488     uname -v = `(uname -v) 2>/dev/null || echo unknown`
1489    
1490     /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1491     /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
1492    
1493     /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1494     /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
1495     /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1496 pcg 1.33 /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
1497 pcg 1.1 /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
1498     /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
1499     /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
1500    
1501     _ASUNAME
1502    
1503     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1504     for as_dir in $PATH
1505     do
1506     IFS=$as_save_IFS
1507     test -z "$as_dir" && as_dir=.
1508     echo "PATH: $as_dir"
1509     done
1510 pcg 1.33 IFS=$as_save_IFS
1511 pcg 1.1
1512     } >&5
1513    
1514     cat >&5 <<_ACEOF
1515    
1516    
1517     ## ----------- ##
1518     ## Core tests. ##
1519     ## ----------- ##
1520    
1521     _ACEOF
1522    
1523    
1524     # Keep a trace of the command line.
1525     # Strip out --no-create and --no-recursion so they do not pile up.
1526     # Strip out --silent because we don't want to record it for future runs.
1527     # Also quote any args containing shell meta-characters.
1528     # Make two passes to allow for proper duplicate-argument suppression.
1529     ac_configure_args=
1530     ac_configure_args0=
1531     ac_configure_args1=
1532     ac_must_keep_next=false
1533     for ac_pass in 1 2
1534     do
1535     for ac_arg
1536     do
1537     case $ac_arg in
1538     -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1539     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1540     | -silent | --silent | --silen | --sile | --sil)
1541     continue ;;
1542 pcg 1.33 *\'*)
1543 pcg 1.1 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1544     esac
1545     case $ac_pass in
1546     1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1547     2)
1548     ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1549     if test $ac_must_keep_next = true; then
1550 pcg 1.11 ac_must_keep_next=false # Got value, back to normal.
1551 pcg 1.1 else
1552 pcg 1.11 case $ac_arg in
1553     *=* | --config-cache | -C | -disable-* | --disable-* \
1554     | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1555     | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1556     | -with-* | --with-* | -without-* | --without-* | --x)
1557     case "$ac_configure_args0 " in
1558     "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1559     esac
1560     ;;
1561     -* ) ac_must_keep_next=true ;;
1562     esac
1563 pcg 1.1 fi
1564 pcg 1.33 ac_configure_args="$ac_configure_args '$ac_arg'"
1565 pcg 1.1 ;;
1566     esac
1567     done
1568     done
1569     $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1570     $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1571    
1572     # When interrupted or exit'd, cleanup temporary files, and complete
1573     # config.log. We remove comments because anyway the quotes in there
1574     # would cause problems or look ugly.
1575 pcg 1.33 # WARNING: Use '\'' to represent an apostrophe within the trap.
1576     # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1577 pcg 1.1 trap 'exit_status=$?
1578     # Save into config.log some information that might help in debugging.
1579     {
1580     echo
1581    
1582     cat <<\_ASBOX
1583     ## ---------------- ##
1584     ## Cache variables. ##
1585     ## ---------------- ##
1586     _ASBOX
1587     echo
1588     # The following way of writing the cache mishandles newlines in values,
1589 pcg 1.33 (
1590     for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1591     eval ac_val=\$$ac_var
1592     case $ac_val in #(
1593     *${as_nl}*)
1594     case $ac_var in #(
1595     *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
1596     echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
1597     esac
1598     case $ac_var in #(
1599     _ | IFS | as_nl) ;; #(
1600     *) $as_unset $ac_var ;;
1601     esac ;;
1602     esac
1603     done
1604 pcg 1.1 (set) 2>&1 |
1605 pcg 1.33 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1606     *${as_nl}ac_space=\ *)
1607 pcg 1.1 sed -n \
1608 pcg 1.33 "s/'\''/'\''\\\\'\'''\''/g;
1609     s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1610     ;; #(
1611 pcg 1.1 *)
1612 pcg 1.33 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1613 pcg 1.1 ;;
1614 pcg 1.33 esac |
1615     sort
1616     )
1617 pcg 1.1 echo
1618    
1619     cat <<\_ASBOX
1620     ## ----------------- ##
1621     ## Output variables. ##
1622     ## ----------------- ##
1623     _ASBOX
1624     echo
1625     for ac_var in $ac_subst_vars
1626     do
1627 pcg 1.33 eval ac_val=\$$ac_var
1628     case $ac_val in
1629     *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1630     esac
1631     echo "$ac_var='\''$ac_val'\''"
1632 pcg 1.1 done | sort
1633     echo
1634    
1635     if test -n "$ac_subst_files"; then
1636     cat <<\_ASBOX
1637 pcg 1.33 ## ------------------- ##
1638     ## File substitutions. ##
1639     ## ------------------- ##
1640 pcg 1.1 _ASBOX
1641     echo
1642     for ac_var in $ac_subst_files
1643     do
1644 pcg 1.33 eval ac_val=\$$ac_var
1645     case $ac_val in
1646     *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1647     esac
1648     echo "$ac_var='\''$ac_val'\''"
1649 pcg 1.1 done | sort
1650     echo
1651     fi
1652    
1653     if test -s confdefs.h; then
1654     cat <<\_ASBOX
1655     ## ----------- ##
1656     ## confdefs.h. ##
1657     ## ----------- ##
1658     _ASBOX
1659     echo
1660 pcg 1.33 cat confdefs.h
1661 pcg 1.1 echo
1662     fi
1663     test "$ac_signal" != 0 &&
1664     echo "$as_me: caught signal $ac_signal"
1665     echo "$as_me: exit $exit_status"
1666     } >&5
1667 pcg 1.33 rm -f core *.core core.conftest.* &&
1668     rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1669 pcg 1.1 exit $exit_status
1670 pcg 1.33 ' 0
1671 pcg 1.1 for ac_signal in 1 2 13 15; do
1672     trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1673     done
1674     ac_signal=0
1675    
1676     # confdefs.h avoids OS command line length limits that DEFS can exceed.
1677 pcg 1.33 rm -f -r conftest* confdefs.h
1678 pcg 1.1
1679     # Predefined preprocessor variables.
1680    
1681     cat >>confdefs.h <<_ACEOF
1682     #define PACKAGE_NAME "$PACKAGE_NAME"
1683     _ACEOF
1684    
1685    
1686     cat >>confdefs.h <<_ACEOF
1687     #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1688     _ACEOF
1689    
1690    
1691     cat >>confdefs.h <<_ACEOF
1692     #define PACKAGE_VERSION "$PACKAGE_VERSION"
1693     _ACEOF
1694    
1695    
1696     cat >>confdefs.h <<_ACEOF
1697     #define PACKAGE_STRING "$PACKAGE_STRING"
1698     _ACEOF
1699    
1700    
1701     cat >>confdefs.h <<_ACEOF
1702     #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1703     _ACEOF
1704    
1705    
1706     # Let the site file select an alternate cache file if it wants to.
1707     # Prefer explicitly selected file to automatically selected ones.
1708 pcg 1.33 if test -n "$CONFIG_SITE"; then
1709     set x "$CONFIG_SITE"
1710     elif test "x$prefix" != xNONE; then
1711     set x "$prefix/share/config.site" "$prefix/etc/config.site"
1712     else
1713     set x "$ac_default_prefix/share/config.site" \
1714     "$ac_default_prefix/etc/config.site"
1715 pcg 1.1 fi
1716 pcg 1.33 shift
1717     for ac_site_file
1718     do
1719 pcg 1.1 if test -r "$ac_site_file"; then
1720     { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1721     echo "$as_me: loading site script $ac_site_file" >&6;}
1722     sed 's/^/| /' "$ac_site_file" >&5
1723     . "$ac_site_file"
1724     fi
1725     done
1726    
1727     if test -r "$cache_file"; then
1728     # Some versions of bash will fail to source /dev/null (special
1729     # files actually), so we avoid doing that.
1730     if test -f "$cache_file"; then
1731     { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1732     echo "$as_me: loading cache $cache_file" >&6;}
1733     case $cache_file in
1734 pcg 1.33 [\\/]* | ?:[\\/]* ) . "$cache_file";;
1735     *) . "./$cache_file";;
1736 pcg 1.1 esac
1737     fi
1738     else
1739     { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1740     echo "$as_me: creating cache $cache_file" >&6;}
1741     >$cache_file
1742     fi
1743    
1744     # Check that the precious variables saved in the cache have kept the same
1745     # value.
1746     ac_cache_corrupted=false
1747 pcg 1.33 for ac_var in $ac_precious_vars; do
1748 pcg 1.1 eval ac_old_set=\$ac_cv_env_${ac_var}_set
1749     eval ac_new_set=\$ac_env_${ac_var}_set
1750 pcg 1.33 eval ac_old_val=\$ac_cv_env_${ac_var}_value
1751     eval ac_new_val=\$ac_env_${ac_var}_value
1752 pcg 1.1 case $ac_old_set,$ac_new_set in
1753     set,)
1754     { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1755     echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1756     ac_cache_corrupted=: ;;
1757     ,set)
1758     { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1759     echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1760     ac_cache_corrupted=: ;;
1761     ,);;
1762     *)
1763     if test "x$ac_old_val" != "x$ac_new_val"; then
1764 pcg 1.11 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1765 pcg 1.1 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1766 pcg 1.11 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
1767 pcg 1.1 echo "$as_me: former value: $ac_old_val" >&2;}
1768 pcg 1.11 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
1769 pcg 1.1 echo "$as_me: current value: $ac_new_val" >&2;}
1770 pcg 1.11 ac_cache_corrupted=:
1771 pcg 1.1 fi;;
1772     esac
1773     # Pass precious variables to config.status.
1774     if test "$ac_new_set" = set; then
1775     case $ac_new_val in
1776 pcg 1.33 *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1777 pcg 1.1 *) ac_arg=$ac_var=$ac_new_val ;;
1778     esac
1779     case " $ac_configure_args " in
1780     *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
1781     *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1782     esac
1783     fi
1784     done
1785     if $ac_cache_corrupted; then
1786     { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1787     echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1788     { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1789     echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1790     { (exit 1); exit 1; }; }
1791     fi
1792    
1793    
1794    
1795    
1796    
1797    
1798    
1799    
1800    
1801    
1802    
1803    
1804    
1805    
1806    
1807    
1808    
1809 pcg 1.33 ac_ext=c
1810     ac_cpp='$CPP $CPPFLAGS'
1811     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1812     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1813     ac_compiler_gnu=$ac_cv_c_compiler_gnu
1814 pcg 1.1
1815    
1816 pcg 1.19
1817 pcg 1.1 ac_aux_dir=
1818 pcg 1.33 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1819     if test -f "$ac_dir/install-sh"; then
1820 pcg 1.1 ac_aux_dir=$ac_dir
1821     ac_install_sh="$ac_aux_dir/install-sh -c"
1822     break
1823 pcg 1.33 elif test -f "$ac_dir/install.sh"; then
1824 pcg 1.1 ac_aux_dir=$ac_dir
1825     ac_install_sh="$ac_aux_dir/install.sh -c"
1826     break
1827 pcg 1.33 elif test -f "$ac_dir/shtool"; then
1828 pcg 1.1 ac_aux_dir=$ac_dir
1829     ac_install_sh="$ac_aux_dir/shtool install -c"
1830     break
1831     fi
1832     done
1833     if test -z "$ac_aux_dir"; then
1834 pcg 1.33 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
1835     echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
1836 pcg 1.1 { (exit 1); exit 1; }; }
1837     fi
1838 pcg 1.33
1839     # These three variables are undocumented and unsupported,
1840     # and are intended to be withdrawn in a future Autoconf release.
1841     # They can cause serious problems if a builder's source tree is in a directory
1842     # whose full name contains unusual characters.
1843     ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
1844     ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
1845     ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
1846    
1847 pcg 1.1
1848     # Make sure we can run config.sub.
1849 pcg 1.33 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
1850     { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
1851     echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
1852 pcg 1.1 { (exit 1); exit 1; }; }
1853    
1854 pcg 1.33 { echo "$as_me:$LINENO: checking build system type" >&5
1855     echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
1856 pcg 1.1 if test "${ac_cv_build+set}" = set; then
1857     echo $ECHO_N "(cached) $ECHO_C" >&6
1858     else
1859 pcg 1.33 ac_build_alias=$build_alias
1860     test "x$ac_build_alias" = x &&
1861     ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
1862     test "x$ac_build_alias" = x &&
1863 pcg 1.1 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
1864     echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
1865     { (exit 1); exit 1; }; }
1866 pcg 1.33 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
1867     { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
1868     echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
1869 pcg 1.1 { (exit 1); exit 1; }; }
1870    
1871     fi
1872 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_build" >&5
1873     echo "${ECHO_T}$ac_cv_build" >&6; }
1874     case $ac_cv_build in
1875     *-*-*) ;;
1876     *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
1877     echo "$as_me: error: invalid value of canonical build" >&2;}
1878     { (exit 1); exit 1; }; };;
1879     esac
1880 pcg 1.1 build=$ac_cv_build
1881 pcg 1.33 ac_save_IFS=$IFS; IFS='-'
1882     set x $ac_cv_build
1883     shift
1884     build_cpu=$1
1885     build_vendor=$2
1886     shift; shift
1887     # Remember, the first character of IFS is used to create $*,
1888     # except with old shells:
1889     build_os=$*
1890     IFS=$ac_save_IFS
1891     case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
1892 pcg 1.1
1893    
1894 pcg 1.33 { echo "$as_me:$LINENO: checking host system type" >&5
1895     echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
1896 pcg 1.1 if test "${ac_cv_host+set}" = set; then
1897     echo $ECHO_N "(cached) $ECHO_C" >&6
1898     else
1899 pcg 1.33 if test "x$host_alias" = x; then
1900     ac_cv_host=$ac_cv_build
1901     else
1902     ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
1903     { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
1904     echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
1905 pcg 1.1 { (exit 1); exit 1; }; }
1906 pcg 1.33 fi
1907 pcg 1.1
1908     fi
1909 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_host" >&5
1910     echo "${ECHO_T}$ac_cv_host" >&6; }
1911     case $ac_cv_host in
1912     *-*-*) ;;
1913     *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
1914     echo "$as_me: error: invalid value of canonical host" >&2;}
1915     { (exit 1); exit 1; }; };;
1916     esac
1917 pcg 1.1 host=$ac_cv_host
1918 pcg 1.33 ac_save_IFS=$IFS; IFS='-'
1919     set x $ac_cv_host
1920     shift
1921     host_cpu=$1
1922     host_vendor=$2
1923     shift; shift
1924     # Remember, the first character of IFS is used to create $*,
1925     # except with old shells:
1926     host_os=$*
1927     IFS=$ac_save_IFS
1928     case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
1929 pcg 1.1
1930    
1931 pcg 1.33 { echo "$as_me:$LINENO: checking target system type" >&5
1932     echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
1933 pcg 1.1 if test "${ac_cv_target+set}" = set; then
1934     echo $ECHO_N "(cached) $ECHO_C" >&6
1935     else
1936 pcg 1.33 if test "x$target_alias" = x; then
1937     ac_cv_target=$ac_cv_host
1938     else
1939     ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
1940     { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
1941     echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
1942 pcg 1.1 { (exit 1); exit 1; }; }
1943 pcg 1.33 fi
1944 pcg 1.1
1945     fi
1946 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_target" >&5
1947     echo "${ECHO_T}$ac_cv_target" >&6; }
1948     case $ac_cv_target in
1949     *-*-*) ;;
1950     *) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
1951     echo "$as_me: error: invalid value of canonical target" >&2;}
1952     { (exit 1); exit 1; }; };;
1953     esac
1954 pcg 1.1 target=$ac_cv_target
1955 pcg 1.33 ac_save_IFS=$IFS; IFS='-'
1956     set x $ac_cv_target
1957     shift
1958     target_cpu=$1
1959     target_vendor=$2
1960     shift; shift
1961     # Remember, the first character of IFS is used to create $*,
1962     # except with old shells:
1963     target_os=$*
1964     IFS=$ac_save_IFS
1965     case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
1966 pcg 1.1
1967    
1968     # The aliases save the names the user supplied, while $host etc.
1969     # will get canonicalized.
1970     test -n "$target_alias" &&
1971     test "$program_prefix$program_suffix$program_transform_name" = \
1972     NONENONEs,x,x, &&
1973     program_prefix=${target_alias}-
1974 pcg 1.33 am__api_version="1.7"
1975 pcg 1.1 # Find a good install program. We prefer a C program (faster),
1976     # so one script is as good as another. But avoid the broken or
1977     # incompatible versions:
1978     # SysV /etc/install, /usr/sbin/install
1979     # SunOS /usr/etc/install
1980     # IRIX /sbin/install
1981     # AIX /bin/install
1982     # AmigaOS /C/install, which installs bootblocks on floppy discs
1983     # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
1984     # AFS /usr/afsws/bin/install, which mishandles nonexistent args
1985     # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1986 pcg 1.11 # OS/2's system install, which has a completely different semantic
1987 pcg 1.1 # ./install, which can be erroneously created by make from ./install.sh.
1988 pcg 1.33 { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
1989     echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
1990 pcg 1.1 if test -z "$INSTALL"; then
1991     if test "${ac_cv_path_install+set}" = set; then
1992     echo $ECHO_N "(cached) $ECHO_C" >&6
1993     else
1994     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1995     for as_dir in $PATH
1996     do
1997     IFS=$as_save_IFS
1998     test -z "$as_dir" && as_dir=.
1999     # Account for people who put trailing slashes in PATH elements.
2000     case $as_dir/ in
2001     ./ | .// | /cC/* | \
2002     /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2003 pcg 1.11 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
2004 pcg 1.1 /usr/ucb/* ) ;;
2005     *)
2006     # OSF1 and SCO ODT 3.0 have their own names for install.
2007     # Don't use installbsd from OSF since it installs stuff as root
2008     # by default.
2009     for ac_prog in ginstall scoinst install; do
2010     for ac_exec_ext in '' $ac_executable_extensions; do
2011 pcg 1.33 if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
2012 pcg 1.11 if test $ac_prog = install &&
2013     grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2014     # AIX install. It has an incompatible calling convention.
2015     :
2016     elif test $ac_prog = install &&
2017     grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2018     # program-specific install script used by HP pwplus--don't use.
2019     :
2020     else
2021     ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2022     break 3
2023     fi
2024     fi
2025 pcg 1.1 done
2026     done
2027     ;;
2028     esac
2029     done
2030 pcg 1.33 IFS=$as_save_IFS
2031 pcg 1.1
2032    
2033     fi
2034     if test "${ac_cv_path_install+set}" = set; then
2035     INSTALL=$ac_cv_path_install
2036     else
2037 pcg 1.33 # As a last resort, use the slow shell script. Don't cache a
2038     # value for INSTALL within a source directory, because that will
2039 pcg 1.1 # break other packages using the cache if that directory is
2040 pcg 1.33 # removed, or if the value is a relative name.
2041 pcg 1.1 INSTALL=$ac_install_sh
2042     fi
2043     fi
2044 pcg 1.33 { echo "$as_me:$LINENO: result: $INSTALL" >&5
2045     echo "${ECHO_T}$INSTALL" >&6; }
2046 pcg 1.1
2047     # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2048     # It thinks the first close brace ends the variable substitution.
2049     test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2050    
2051     test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2052    
2053     test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2054    
2055 pcg 1.33 { echo "$as_me:$LINENO: checking whether build environment is sane" >&5
2056     echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
2057 pcg 1.1 # Just in case
2058     sleep 1
2059     echo timestamp > conftest.file
2060     # Do `set' in a subshell so we don't clobber the current shell's
2061     # arguments. Must try -L first in case configure is actually a
2062     # symlink; some systems play weird games with the mod time of symlinks
2063     # (eg FreeBSD returns the mod time of the symlink's containing
2064     # directory).
2065     if (
2066     set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
2067     if test "$*" = "X"; then
2068     # -L didn't work.
2069     set X `ls -t $srcdir/configure conftest.file`
2070     fi
2071     rm -f conftest.file
2072     if test "$*" != "X $srcdir/configure conftest.file" \
2073     && test "$*" != "X conftest.file $srcdir/configure"; then
2074    
2075     # If neither matched, then we have a broken ls. This can happen
2076     # if, for instance, CONFIG_SHELL is bash and it inherits a
2077     # broken ls alias from the environment. This has actually
2078     # happened. Such a system could not be considered "sane".
2079     { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
2080     alias in your environment" >&5
2081     echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
2082     alias in your environment" >&2;}
2083     { (exit 1); exit 1; }; }
2084     fi
2085    
2086     test "$2" = conftest.file
2087     )
2088     then
2089     # Ok.
2090     :
2091     else
2092     { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
2093     Check your system clock" >&5
2094     echo "$as_me: error: newly created file is older than distributed files!
2095     Check your system clock" >&2;}
2096     { (exit 1); exit 1; }; }
2097     fi
2098 pcg 1.33 { echo "$as_me:$LINENO: result: yes" >&5
2099     echo "${ECHO_T}yes" >&6; }
2100 pcg 1.1 test "$program_prefix" != NONE &&
2101 pcg 1.33 program_transform_name="s&^&$program_prefix&;$program_transform_name"
2102 pcg 1.1 # Use a double $ so make ignores it.
2103     test "$program_suffix" != NONE &&
2104 pcg 1.33 program_transform_name="s&\$&$program_suffix&;$program_transform_name"
2105 pcg 1.1 # Double any \ or $. echo might interpret backslashes.
2106     # By default was `s,x,x', remove it if useless.
2107     cat <<\_ACEOF >conftest.sed
2108     s/[\\$]/&&/g;s/;s,x,x,$//
2109     _ACEOF
2110     program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
2111 pcg 1.33 rm -f conftest.sed
2112    
2113 pcg 1.1
2114     # expand $ac_aux_dir to an absolute path
2115     am_aux_dir=`cd $ac_aux_dir && pwd`
2116    
2117     test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
2118     # Use eval to expand $SHELL
2119     if eval "$MISSING --run true"; then
2120     am_missing_run="$MISSING --run "
2121     else
2122     am_missing_run=
2123     { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
2124     echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2125     fi
2126    
2127     for ac_prog in gawk mawk nawk awk
2128     do
2129     # Extract the first word of "$ac_prog", so it can be a program name with args.
2130     set dummy $ac_prog; ac_word=$2
2131 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2132     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2133 pcg 1.1 if test "${ac_cv_prog_AWK+set}" = set; then
2134     echo $ECHO_N "(cached) $ECHO_C" >&6
2135     else
2136     if test -n "$AWK"; then
2137     ac_cv_prog_AWK="$AWK" # Let the user override the test.
2138     else
2139     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2140     for as_dir in $PATH
2141     do
2142     IFS=$as_save_IFS
2143     test -z "$as_dir" && as_dir=.
2144     for ac_exec_ext in '' $ac_executable_extensions; do
2145 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2146 pcg 1.1 ac_cv_prog_AWK="$ac_prog"
2147     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2148     break 2
2149     fi
2150     done
2151     done
2152 pcg 1.33 IFS=$as_save_IFS
2153 pcg 1.1
2154     fi
2155     fi
2156     AWK=$ac_cv_prog_AWK
2157     if test -n "$AWK"; then
2158 pcg 1.33 { echo "$as_me:$LINENO: result: $AWK" >&5
2159     echo "${ECHO_T}$AWK" >&6; }
2160 pcg 1.1 else
2161 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2162     echo "${ECHO_T}no" >&6; }
2163 pcg 1.1 fi
2164    
2165 pcg 1.33
2166 pcg 1.1 test -n "$AWK" && break
2167     done
2168    
2169 pcg 1.33 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2170     echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
2171     set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2172     if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
2173 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
2174     else
2175     cat >conftest.make <<\_ACEOF
2176 pcg 1.33 SHELL = /bin/sh
2177 pcg 1.1 all:
2178 pcg 1.33 @echo '@@@%%%=$(MAKE)=@@@%%%'
2179 pcg 1.1 _ACEOF
2180     # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2181 pcg 1.33 case `${MAKE-make} -f conftest.make 2>/dev/null` in
2182     *@@@%%%=?*=@@@%%%*)
2183     eval ac_cv_prog_make_${ac_make}_set=yes;;
2184     *)
2185     eval ac_cv_prog_make_${ac_make}_set=no;;
2186     esac
2187 pcg 1.1 rm -f conftest.make
2188     fi
2189 pcg 1.33 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2190     { echo "$as_me:$LINENO: result: yes" >&5
2191     echo "${ECHO_T}yes" >&6; }
2192 pcg 1.1 SET_MAKE=
2193     else
2194 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2195     echo "${ECHO_T}no" >&6; }
2196 pcg 1.1 SET_MAKE="MAKE=${MAKE-make}"
2197     fi
2198    
2199     rm -rf .tst 2>/dev/null
2200     mkdir .tst 2>/dev/null
2201     if test -d .tst; then
2202     am__leading_dot=.
2203     else
2204     am__leading_dot=_
2205     fi
2206     rmdir .tst 2>/dev/null
2207    
2208 pcg 1.33 # test to see if srcdir already configured
2209 pcg 1.1 if test "`cd $srcdir && pwd`" != "`pwd`" &&
2210     test -f $srcdir/config.status; then
2211     { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2212     echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2213     { (exit 1); exit 1; }; }
2214     fi
2215    
2216     # test whether we have cygpath
2217     if test -z "$CYGPATH_W"; then
2218     if (cygpath --version) >/dev/null 2>/dev/null; then
2219     CYGPATH_W='cygpath -w'
2220     else
2221     CYGPATH_W=echo
2222     fi
2223     fi
2224    
2225    
2226     # Define the identity of the package.
2227 pcg 1.22 PACKAGE=gvpe
2228 pcg 1.33 VERSION=2.01
2229 pcg 1.1
2230    
2231     cat >>confdefs.h <<_ACEOF
2232     #define PACKAGE "$PACKAGE"
2233     _ACEOF
2234    
2235    
2236     cat >>confdefs.h <<_ACEOF
2237     #define VERSION "$VERSION"
2238     _ACEOF
2239    
2240     # Some tools Automake needs.
2241    
2242     ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2243    
2244    
2245     AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2246    
2247    
2248     AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2249    
2250    
2251     AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2252    
2253    
2254     MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2255    
2256 pcg 1.33
2257     AMTAR=${AMTAR-"${am_missing_run}tar"}
2258    
2259 pcg 1.1 install_sh=${install_sh-"$am_aux_dir/install-sh"}
2260    
2261     # Installed binaries are usually stripped using `strip' when the user
2262     # run `make install-strip'. However `strip' might not be the right
2263     # tool to use in cross-compilation environments, therefore Automake
2264     # will honor the `STRIP' environment variable to overrule this program.
2265     if test "$cross_compiling" != no; then
2266     if test -n "$ac_tool_prefix"; then
2267     # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2268     set dummy ${ac_tool_prefix}strip; ac_word=$2
2269 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2270     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2271 pcg 1.1 if test "${ac_cv_prog_STRIP+set}" = set; then
2272     echo $ECHO_N "(cached) $ECHO_C" >&6
2273     else
2274     if test -n "$STRIP"; then
2275     ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2276     else
2277     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2278     for as_dir in $PATH
2279     do
2280     IFS=$as_save_IFS
2281     test -z "$as_dir" && as_dir=.
2282     for ac_exec_ext in '' $ac_executable_extensions; do
2283 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2284 pcg 1.1 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2285     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2286     break 2
2287     fi
2288     done
2289     done
2290 pcg 1.33 IFS=$as_save_IFS
2291 pcg 1.1
2292     fi
2293     fi
2294     STRIP=$ac_cv_prog_STRIP
2295     if test -n "$STRIP"; then
2296 pcg 1.33 { echo "$as_me:$LINENO: result: $STRIP" >&5
2297     echo "${ECHO_T}$STRIP" >&6; }
2298 pcg 1.1 else
2299 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2300     echo "${ECHO_T}no" >&6; }
2301 pcg 1.1 fi
2302    
2303 pcg 1.33
2304 pcg 1.1 fi
2305     if test -z "$ac_cv_prog_STRIP"; then
2306     ac_ct_STRIP=$STRIP
2307     # Extract the first word of "strip", so it can be a program name with args.
2308     set dummy strip; ac_word=$2
2309 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2310     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2311 pcg 1.1 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
2312     echo $ECHO_N "(cached) $ECHO_C" >&6
2313     else
2314     if test -n "$ac_ct_STRIP"; then
2315     ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
2316     else
2317     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2318     for as_dir in $PATH
2319     do
2320     IFS=$as_save_IFS
2321     test -z "$as_dir" && as_dir=.
2322     for ac_exec_ext in '' $ac_executable_extensions; do
2323 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2324 pcg 1.1 ac_cv_prog_ac_ct_STRIP="strip"
2325     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2326     break 2
2327     fi
2328     done
2329     done
2330 pcg 1.33 IFS=$as_save_IFS
2331 pcg 1.1
2332     fi
2333     fi
2334     ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2335     if test -n "$ac_ct_STRIP"; then
2336 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
2337     echo "${ECHO_T}$ac_ct_STRIP" >&6; }
2338 pcg 1.1 else
2339 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2340     echo "${ECHO_T}no" >&6; }
2341 pcg 1.1 fi
2342    
2343 pcg 1.33 if test "x$ac_ct_STRIP" = x; then
2344     STRIP=":"
2345     else
2346     case $cross_compiling:$ac_tool_warned in
2347     yes:)
2348     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
2349     whose name does not start with the host triplet. If you think this
2350     configuration is useful to you, please write to autoconf@gnu.org." >&5
2351     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
2352     whose name does not start with the host triplet. If you think this
2353     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
2354     ac_tool_warned=yes ;;
2355     esac
2356     STRIP=$ac_ct_STRIP
2357     fi
2358 pcg 1.1 else
2359     STRIP="$ac_cv_prog_STRIP"
2360     fi
2361    
2362     fi
2363     INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
2364    
2365     # We need awk for the "check" target. The system "awk" is bad on
2366     # some platforms.
2367 pcg 1.32
2368    
2369 pcg 1.1
2370 pcg 1.33 ac_config_headers="$ac_config_headers config.h"
2371 pcg 1.1
2372 pcg 1.33 { echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
2373     echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; }
2374     # Check whether --enable-maintainer-mode was given.
2375 pcg 1.1 if test "${enable_maintainer_mode+set}" = set; then
2376 pcg 1.33 enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
2377 pcg 1.1 else
2378     USE_MAINTAINER_MODE=no
2379 pcg 1.33 fi
2380    
2381     { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
2382     echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; }
2383 pcg 1.1
2384    
2385     if test $USE_MAINTAINER_MODE = yes; then
2386     MAINTAINER_MODE_TRUE=
2387     MAINTAINER_MODE_FALSE='#'
2388     else
2389     MAINTAINER_MODE_TRUE='#'
2390     MAINTAINER_MODE_FALSE=
2391     fi
2392    
2393     MAINT=$MAINTAINER_MODE_TRUE
2394    
2395    
2396    
2397    
2398    
2399    
2400    
2401    
2402    
2403    
2404     test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
2405    
2406     for k in m4 ; do ACLOCAL="$ACLOCAL -I $k" ; done
2407    
2408    
2409    
2410     MKINSTALLDIRS=
2411     if test -n "$ac_aux_dir"; then
2412     MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
2413     fi
2414     if test -z "$MKINSTALLDIRS"; then
2415     MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
2416     fi
2417    
2418    
2419    
2420    
2421    
2422     # Extract the first word of "msgfmt", so it can be a program name with args.
2423     set dummy msgfmt; ac_word=$2
2424 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2425     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2426 pcg 1.1 if test "${ac_cv_path_MSGFMT+set}" = set; then
2427     echo $ECHO_N "(cached) $ECHO_C" >&6
2428     else
2429     case "$MSGFMT" in
2430     /*)
2431     ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
2432     ;;
2433     *)
2434     IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
2435     for ac_dir in $PATH; do
2436     test -z "$ac_dir" && ac_dir=.
2437     if test -f $ac_dir/$ac_word; then
2438     if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
2439     (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
2440     ac_cv_path_MSGFMT="$ac_dir/$ac_word"
2441     break
2442     fi
2443     fi
2444     done
2445     IFS="$ac_save_ifs"
2446     test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
2447     ;;
2448     esac
2449     fi
2450     MSGFMT="$ac_cv_path_MSGFMT"
2451     if test "$MSGFMT" != ":"; then
2452 pcg 1.33 { echo "$as_me:$LINENO: result: $MSGFMT" >&5
2453     echo "${ECHO_T}$MSGFMT" >&6; }
2454 pcg 1.1 else
2455 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2456     echo "${ECHO_T}no" >&6; }
2457 pcg 1.1 fi
2458    
2459     # Extract the first word of "gmsgfmt", so it can be a program name with args.
2460     set dummy gmsgfmt; ac_word=$2
2461 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2462     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2463 pcg 1.1 if test "${ac_cv_path_GMSGFMT+set}" = set; then
2464     echo $ECHO_N "(cached) $ECHO_C" >&6
2465     else
2466     case $GMSGFMT in
2467     [\\/]* | ?:[\\/]*)
2468     ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
2469     ;;
2470     *)
2471     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2472     for as_dir in $PATH
2473     do
2474     IFS=$as_save_IFS
2475     test -z "$as_dir" && as_dir=.
2476     for ac_exec_ext in '' $ac_executable_extensions; do
2477 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2478 pcg 1.1 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
2479     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2480     break 2
2481     fi
2482     done
2483     done
2484 pcg 1.33 IFS=$as_save_IFS
2485 pcg 1.1
2486     test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
2487     ;;
2488     esac
2489     fi
2490     GMSGFMT=$ac_cv_path_GMSGFMT
2491     if test -n "$GMSGFMT"; then
2492 pcg 1.33 { echo "$as_me:$LINENO: result: $GMSGFMT" >&5
2493     echo "${ECHO_T}$GMSGFMT" >&6; }
2494 pcg 1.1 else
2495 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2496     echo "${ECHO_T}no" >&6; }
2497 pcg 1.1 fi
2498    
2499    
2500 pcg 1.33
2501 pcg 1.1 # Extract the first word of "xgettext", so it can be a program name with args.
2502     set dummy xgettext; ac_word=$2
2503 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2504     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2505 pcg 1.1 if test "${ac_cv_path_XGETTEXT+set}" = set; then
2506     echo $ECHO_N "(cached) $ECHO_C" >&6
2507     else
2508     case "$XGETTEXT" in
2509     /*)
2510     ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
2511     ;;
2512     *)
2513     IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
2514     for ac_dir in $PATH; do
2515     test -z "$ac_dir" && ac_dir=.
2516     if test -f $ac_dir/$ac_word; then
2517     if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 &&
2518     (if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
2519     ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
2520     break
2521     fi
2522     fi
2523     done
2524     IFS="$ac_save_ifs"
2525     test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
2526     ;;
2527     esac
2528     fi
2529     XGETTEXT="$ac_cv_path_XGETTEXT"
2530     if test "$XGETTEXT" != ":"; then
2531 pcg 1.33 { echo "$as_me:$LINENO: result: $XGETTEXT" >&5
2532     echo "${ECHO_T}$XGETTEXT" >&6; }
2533 pcg 1.1 else
2534 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2535     echo "${ECHO_T}no" >&6; }
2536 pcg 1.1 fi
2537    
2538     rm -f messages.po
2539    
2540     # Extract the first word of "msgmerge", so it can be a program name with args.
2541     set dummy msgmerge; ac_word=$2
2542 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2543     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2544 pcg 1.1 if test "${ac_cv_path_MSGMERGE+set}" = set; then
2545     echo $ECHO_N "(cached) $ECHO_C" >&6
2546     else
2547     case "$MSGMERGE" in
2548     /*)
2549     ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
2550     ;;
2551     *)
2552     IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
2553     for ac_dir in $PATH; do
2554     test -z "$ac_dir" && ac_dir=.
2555     if test -f $ac_dir/$ac_word; then
2556     if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then
2557     ac_cv_path_MSGMERGE="$ac_dir/$ac_word"
2558     break
2559     fi
2560     fi
2561     done
2562     IFS="$ac_save_ifs"
2563     test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
2564     ;;
2565     esac
2566     fi
2567     MSGMERGE="$ac_cv_path_MSGMERGE"
2568     if test "$MSGMERGE" != ":"; then
2569 pcg 1.33 { echo "$as_me:$LINENO: result: $MSGMERGE" >&5
2570     echo "${ECHO_T}$MSGMERGE" >&6; }
2571 pcg 1.1 else
2572 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2573     echo "${ECHO_T}no" >&6; }
2574 pcg 1.1 fi
2575    
2576    
2577     if test "$GMSGFMT" != ":"; then
2578     if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
2579     (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
2580     : ;
2581     else
2582     GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
2583 pcg 1.33 { echo "$as_me:$LINENO: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5
2584     echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; }
2585 pcg 1.1 GMSGFMT=":"
2586     fi
2587     fi
2588    
2589     if test "$XGETTEXT" != ":"; then
2590     if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 &&
2591     (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
2592     : ;
2593     else
2594 pcg 1.33 { echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5
2595     echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; }
2596 pcg 1.1 XGETTEXT=":"
2597     fi
2598     rm -f messages.po
2599     fi
2600    
2601 pcg 1.33 ac_config_commands="$ac_config_commands default-1"
2602 pcg 1.1
2603    
2604    
2605     if test "X$prefix" = "XNONE"; then
2606     acl_final_prefix="$ac_default_prefix"
2607     else
2608     acl_final_prefix="$prefix"
2609     fi
2610     if test "X$exec_prefix" = "XNONE"; then
2611     acl_final_exec_prefix='${prefix}'
2612     else
2613     acl_final_exec_prefix="$exec_prefix"
2614     fi
2615     acl_save_prefix="$prefix"
2616     prefix="$acl_final_prefix"
2617     eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
2618     prefix="$acl_save_prefix"
2619    
2620     DEPDIR="${am__leading_dot}deps"
2621    
2622 pcg 1.33 ac_config_commands="$ac_config_commands depfiles"
2623 pcg 1.1
2624    
2625     am_make=${MAKE-make}
2626     cat > confinc << 'END'
2627     am__doit:
2628     @echo done
2629     .PHONY: am__doit
2630     END
2631     # If we don't find an include directive, just comment out the code.
2632 pcg 1.33 { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
2633     echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
2634 pcg 1.1 am__include="#"
2635     am__quote=
2636     _am_result=none
2637     # First try GNU make style include.
2638     echo "include confinc" > confmf
2639     # We grep out `Entering directory' and `Leaving directory'
2640     # messages which can occur if `w' ends up in MAKEFLAGS.
2641     # In particular we don't look at `^make:' because GNU make might
2642     # be invoked under some other name (usually "gmake"), in which
2643     # case it prints its new name instead of `make'.
2644     if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
2645     am__include=include
2646     am__quote=
2647     _am_result=GNU
2648     fi
2649     # Now try BSD make style include.
2650     if test "$am__include" = "#"; then
2651     echo '.include "confinc"' > confmf
2652     if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
2653     am__include=.include
2654     am__quote="\""
2655     _am_result=BSD
2656     fi
2657     fi
2658    
2659    
2660 pcg 1.33 { echo "$as_me:$LINENO: result: $_am_result" >&5
2661     echo "${ECHO_T}$_am_result" >&6; }
2662 pcg 1.1 rm -f confinc confmf
2663    
2664 pcg 1.33 # Check whether --enable-dependency-tracking was given.
2665 pcg 1.1 if test "${enable_dependency_tracking+set}" = set; then
2666 pcg 1.33 enableval=$enable_dependency_tracking;
2667     fi
2668 pcg 1.1
2669     if test "x$enable_dependency_tracking" != xno; then
2670     am_depcomp="$ac_aux_dir/depcomp"
2671     AMDEPBACKSLASH='\'
2672     fi
2673    
2674    
2675     if test "x$enable_dependency_tracking" != xno; then
2676     AMDEP_TRUE=
2677     AMDEP_FALSE='#'
2678     else
2679     AMDEP_TRUE='#'
2680     AMDEP_FALSE=
2681     fi
2682    
2683    
2684    
2685     ac_ext=c
2686     ac_cpp='$CPP $CPPFLAGS'
2687     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2688     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2689     ac_compiler_gnu=$ac_cv_c_compiler_gnu
2690     if test -n "$ac_tool_prefix"; then
2691     # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
2692     set dummy ${ac_tool_prefix}gcc; ac_word=$2
2693 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2694     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2695 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
2696     echo $ECHO_N "(cached) $ECHO_C" >&6
2697     else
2698     if test -n "$CC"; then
2699     ac_cv_prog_CC="$CC" # Let the user override the test.
2700     else
2701     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2702     for as_dir in $PATH
2703     do
2704     IFS=$as_save_IFS
2705     test -z "$as_dir" && as_dir=.
2706     for ac_exec_ext in '' $ac_executable_extensions; do
2707 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2708 pcg 1.1 ac_cv_prog_CC="${ac_tool_prefix}gcc"
2709     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2710     break 2
2711     fi
2712     done
2713     done
2714 pcg 1.33 IFS=$as_save_IFS
2715 pcg 1.1
2716     fi
2717     fi
2718     CC=$ac_cv_prog_CC
2719     if test -n "$CC"; then
2720 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
2721     echo "${ECHO_T}$CC" >&6; }
2722 pcg 1.1 else
2723 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2724     echo "${ECHO_T}no" >&6; }
2725 pcg 1.1 fi
2726    
2727 pcg 1.33
2728 pcg 1.1 fi
2729     if test -z "$ac_cv_prog_CC"; then
2730     ac_ct_CC=$CC
2731     # Extract the first word of "gcc", so it can be a program name with args.
2732     set dummy gcc; ac_word=$2
2733 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2734     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2735 pcg 1.1 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
2736     echo $ECHO_N "(cached) $ECHO_C" >&6
2737     else
2738     if test -n "$ac_ct_CC"; then
2739     ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2740     else
2741     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2742     for as_dir in $PATH
2743     do
2744     IFS=$as_save_IFS
2745     test -z "$as_dir" && as_dir=.
2746     for ac_exec_ext in '' $ac_executable_extensions; do
2747 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2748 pcg 1.1 ac_cv_prog_ac_ct_CC="gcc"
2749     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2750     break 2
2751     fi
2752     done
2753     done
2754 pcg 1.33 IFS=$as_save_IFS
2755 pcg 1.1
2756     fi
2757     fi
2758     ac_ct_CC=$ac_cv_prog_ac_ct_CC
2759     if test -n "$ac_ct_CC"; then
2760 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
2761     echo "${ECHO_T}$ac_ct_CC" >&6; }
2762 pcg 1.1 else
2763 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2764     echo "${ECHO_T}no" >&6; }
2765 pcg 1.1 fi
2766    
2767 pcg 1.33 if test "x$ac_ct_CC" = x; then
2768     CC=""
2769     else
2770     case $cross_compiling:$ac_tool_warned in
2771     yes:)
2772     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
2773     whose name does not start with the host triplet. If you think this
2774     configuration is useful to you, please write to autoconf@gnu.org." >&5
2775     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
2776     whose name does not start with the host triplet. If you think this
2777     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
2778     ac_tool_warned=yes ;;
2779     esac
2780     CC=$ac_ct_CC
2781     fi
2782 pcg 1.1 else
2783     CC="$ac_cv_prog_CC"
2784     fi
2785    
2786     if test -z "$CC"; then
2787 pcg 1.33 if test -n "$ac_tool_prefix"; then
2788     # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2789 pcg 1.1 set dummy ${ac_tool_prefix}cc; ac_word=$2
2790 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2791     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2792 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
2793     echo $ECHO_N "(cached) $ECHO_C" >&6
2794     else
2795     if test -n "$CC"; then
2796     ac_cv_prog_CC="$CC" # Let the user override the test.
2797     else
2798     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2799     for as_dir in $PATH
2800     do
2801     IFS=$as_save_IFS
2802     test -z "$as_dir" && as_dir=.
2803     for ac_exec_ext in '' $ac_executable_extensions; do
2804 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2805 pcg 1.1 ac_cv_prog_CC="${ac_tool_prefix}cc"
2806     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2807     break 2
2808     fi
2809     done
2810     done
2811 pcg 1.33 IFS=$as_save_IFS
2812 pcg 1.1
2813     fi
2814     fi
2815     CC=$ac_cv_prog_CC
2816     if test -n "$CC"; then
2817 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
2818     echo "${ECHO_T}$CC" >&6; }
2819 pcg 1.1 else
2820 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2821     echo "${ECHO_T}no" >&6; }
2822 pcg 1.1 fi
2823    
2824 pcg 1.33
2825 pcg 1.1 fi
2826     fi
2827     if test -z "$CC"; then
2828     # Extract the first word of "cc", so it can be a program name with args.
2829     set dummy cc; ac_word=$2
2830 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2831     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2832 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
2833     echo $ECHO_N "(cached) $ECHO_C" >&6
2834     else
2835     if test -n "$CC"; then
2836     ac_cv_prog_CC="$CC" # Let the user override the test.
2837     else
2838     ac_prog_rejected=no
2839     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2840     for as_dir in $PATH
2841     do
2842     IFS=$as_save_IFS
2843     test -z "$as_dir" && as_dir=.
2844     for ac_exec_ext in '' $ac_executable_extensions; do
2845 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2846 pcg 1.1 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
2847     ac_prog_rejected=yes
2848     continue
2849     fi
2850     ac_cv_prog_CC="cc"
2851     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2852     break 2
2853     fi
2854     done
2855     done
2856 pcg 1.33 IFS=$as_save_IFS
2857 pcg 1.1
2858     if test $ac_prog_rejected = yes; then
2859     # We found a bogon in the path, so make sure we never use it.
2860     set dummy $ac_cv_prog_CC
2861     shift
2862     if test $# != 0; then
2863     # We chose a different compiler from the bogus one.
2864     # However, it has the same basename, so the bogon will be chosen
2865     # first if we set CC to just the basename; use the full file name.
2866     shift
2867     ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
2868     fi
2869     fi
2870     fi
2871     fi
2872     CC=$ac_cv_prog_CC
2873     if test -n "$CC"; then
2874 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
2875     echo "${ECHO_T}$CC" >&6; }
2876 pcg 1.1 else
2877 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2878     echo "${ECHO_T}no" >&6; }
2879 pcg 1.1 fi
2880    
2881 pcg 1.33
2882 pcg 1.1 fi
2883     if test -z "$CC"; then
2884     if test -n "$ac_tool_prefix"; then
2885 pcg 1.33 for ac_prog in cl.exe
2886 pcg 1.1 do
2887     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2888     set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2889 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2890     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2891 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
2892     echo $ECHO_N "(cached) $ECHO_C" >&6
2893     else
2894     if test -n "$CC"; then
2895     ac_cv_prog_CC="$CC" # Let the user override the test.
2896     else
2897     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2898     for as_dir in $PATH
2899     do
2900     IFS=$as_save_IFS
2901     test -z "$as_dir" && as_dir=.
2902     for ac_exec_ext in '' $ac_executable_extensions; do
2903 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2904 pcg 1.1 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
2905     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2906     break 2
2907     fi
2908     done
2909     done
2910 pcg 1.33 IFS=$as_save_IFS
2911 pcg 1.1
2912     fi
2913     fi
2914     CC=$ac_cv_prog_CC
2915     if test -n "$CC"; then
2916 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
2917     echo "${ECHO_T}$CC" >&6; }
2918 pcg 1.1 else
2919 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2920     echo "${ECHO_T}no" >&6; }
2921 pcg 1.1 fi
2922    
2923 pcg 1.33
2924 pcg 1.1 test -n "$CC" && break
2925     done
2926     fi
2927     if test -z "$CC"; then
2928     ac_ct_CC=$CC
2929 pcg 1.33 for ac_prog in cl.exe
2930 pcg 1.1 do
2931     # Extract the first word of "$ac_prog", so it can be a program name with args.
2932     set dummy $ac_prog; ac_word=$2
2933 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
2934     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
2935 pcg 1.1 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
2936     echo $ECHO_N "(cached) $ECHO_C" >&6
2937     else
2938     if test -n "$ac_ct_CC"; then
2939     ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2940     else
2941     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2942     for as_dir in $PATH
2943     do
2944     IFS=$as_save_IFS
2945     test -z "$as_dir" && as_dir=.
2946     for ac_exec_ext in '' $ac_executable_extensions; do
2947 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
2948 pcg 1.1 ac_cv_prog_ac_ct_CC="$ac_prog"
2949     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2950     break 2
2951     fi
2952     done
2953     done
2954 pcg 1.33 IFS=$as_save_IFS
2955 pcg 1.1
2956     fi
2957     fi
2958     ac_ct_CC=$ac_cv_prog_ac_ct_CC
2959     if test -n "$ac_ct_CC"; then
2960 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
2961     echo "${ECHO_T}$ac_ct_CC" >&6; }
2962 pcg 1.1 else
2963 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
2964     echo "${ECHO_T}no" >&6; }
2965 pcg 1.1 fi
2966    
2967 pcg 1.33
2968 pcg 1.1 test -n "$ac_ct_CC" && break
2969     done
2970    
2971 pcg 1.33 if test "x$ac_ct_CC" = x; then
2972     CC=""
2973     else
2974     case $cross_compiling:$ac_tool_warned in
2975     yes:)
2976     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
2977     whose name does not start with the host triplet. If you think this
2978     configuration is useful to you, please write to autoconf@gnu.org." >&5
2979     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
2980     whose name does not start with the host triplet. If you think this
2981     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
2982     ac_tool_warned=yes ;;
2983     esac
2984     CC=$ac_ct_CC
2985     fi
2986 pcg 1.1 fi
2987    
2988     fi
2989    
2990    
2991     test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
2992     See \`config.log' for more details." >&5
2993     echo "$as_me: error: no acceptable C compiler found in \$PATH
2994     See \`config.log' for more details." >&2;}
2995     { (exit 1); exit 1; }; }
2996    
2997     # Provide some information about the compiler.
2998 pcg 1.33 echo "$as_me:$LINENO: checking for C compiler version" >&5
2999 pcg 1.1 ac_compiler=`set X $ac_compile; echo $2`
3000 pcg 1.33 { (ac_try="$ac_compiler --version >&5"
3001     case "(($ac_try" in
3002     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3003     *) ac_try_echo=$ac_try;;
3004     esac
3005     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3006     (eval "$ac_compiler --version >&5") 2>&5
3007 pcg 1.1 ac_status=$?
3008     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3009     (exit $ac_status); }
3010 pcg 1.33 { (ac_try="$ac_compiler -v >&5"
3011     case "(($ac_try" in
3012     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3013     *) ac_try_echo=$ac_try;;
3014     esac
3015     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3016     (eval "$ac_compiler -v >&5") 2>&5
3017 pcg 1.1 ac_status=$?
3018     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3019     (exit $ac_status); }
3020 pcg 1.33 { (ac_try="$ac_compiler -V >&5"
3021     case "(($ac_try" in
3022     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3023     *) ac_try_echo=$ac_try;;
3024     esac
3025     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3026     (eval "$ac_compiler -V >&5") 2>&5
3027 pcg 1.1 ac_status=$?
3028     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3029     (exit $ac_status); }
3030    
3031     cat >conftest.$ac_ext <<_ACEOF
3032     /* confdefs.h. */
3033     _ACEOF
3034     cat confdefs.h >>conftest.$ac_ext
3035     cat >>conftest.$ac_ext <<_ACEOF
3036     /* end confdefs.h. */
3037    
3038     int
3039     main ()
3040     {
3041    
3042     ;
3043     return 0;
3044     }
3045     _ACEOF
3046     ac_clean_files_save=$ac_clean_files
3047     ac_clean_files="$ac_clean_files a.out a.exe b.out"
3048     # Try to create an executable without -o first, disregard a.out.
3049     # It will help us diagnose broken compilers, and finding out an intuition
3050     # of exeext.
3051 pcg 1.33 { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
3052     echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
3053 pcg 1.1 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
3054 pcg 1.33 #
3055     # List of possible output files, starting from the most likely.
3056     # The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
3057     # only as a last resort. b.out is created by i960 compilers.
3058     ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
3059     #
3060     # The IRIX 6 linker writes into existing files which may not be
3061     # executable, retaining their permissions. Remove them first so a
3062     # subsequent execution test works.
3063     ac_rmfiles=
3064     for ac_file in $ac_files
3065     do
3066     case $ac_file in
3067     *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
3068     * ) ac_rmfiles="$ac_rmfiles $ac_file";;
3069     esac
3070     done
3071     rm -f $ac_rmfiles
3072    
3073     if { (ac_try="$ac_link_default"
3074     case "(($ac_try" in
3075     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3076     *) ac_try_echo=$ac_try;;
3077     esac
3078     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3079     (eval "$ac_link_default") 2>&5
3080 pcg 1.1 ac_status=$?
3081     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3082     (exit $ac_status); }; then
3083 pcg 1.33 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
3084     # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
3085     # in a Makefile. We should not override ac_cv_exeext if it was cached,
3086     # so that the user can short-circuit this test for compilers unknown to
3087     # Autoconf.
3088     for ac_file in $ac_files ''
3089 pcg 1.1 do
3090     test -f "$ac_file" || continue
3091     case $ac_file in
3092 pcg 1.33 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
3093 pcg 1.11 ;;
3094 pcg 1.1 [ab].out )
3095 pcg 1.11 # We found the default executable, but exeext='' is most
3096     # certainly right.
3097     break;;
3098 pcg 1.1 *.* )
3099 pcg 1.33 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
3100     then :; else
3101     ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3102     fi
3103     # We set ac_cv_exeext here because the later test for it is not
3104     # safe: cross compilers may not add the suffix if given an `-o'
3105     # argument, so we may need to know it at that point already.
3106     # Even if this section looks crufty: it has the advantage of
3107     # actually working.
3108 pcg 1.11 break;;
3109 pcg 1.1 * )
3110 pcg 1.11 break;;
3111 pcg 1.1 esac
3112     done
3113 pcg 1.33 test "$ac_cv_exeext" = no && ac_cv_exeext=
3114    
3115 pcg 1.1 else
3116 pcg 1.33 ac_file=''
3117     fi
3118    
3119     { echo "$as_me:$LINENO: result: $ac_file" >&5
3120     echo "${ECHO_T}$ac_file" >&6; }
3121     if test -z "$ac_file"; then
3122 pcg 1.1 echo "$as_me: failed program was:" >&5
3123     sed 's/^/| /' conftest.$ac_ext >&5
3124    
3125     { { echo "$as_me:$LINENO: error: C compiler cannot create executables
3126     See \`config.log' for more details." >&5
3127     echo "$as_me: error: C compiler cannot create executables
3128     See \`config.log' for more details." >&2;}
3129     { (exit 77); exit 77; }; }
3130     fi
3131    
3132     ac_exeext=$ac_cv_exeext
3133    
3134 pcg 1.33 # Check that the compiler produces executables we can run. If not, either
3135 pcg 1.1 # the compiler is broken, or we cross compile.
3136 pcg 1.33 { echo "$as_me:$LINENO: checking whether the C compiler works" >&5
3137     echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
3138 pcg 1.1 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
3139     # If not cross compiling, check that we can run a simple program.
3140     if test "$cross_compiling" != yes; then
3141     if { ac_try='./$ac_file'
3142 pcg 1.33 { (case "(($ac_try" in
3143     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3144     *) ac_try_echo=$ac_try;;
3145     esac
3146     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3147     (eval "$ac_try") 2>&5
3148 pcg 1.1 ac_status=$?
3149     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3150     (exit $ac_status); }; }; then
3151     cross_compiling=no
3152     else
3153     if test "$cross_compiling" = maybe; then
3154     cross_compiling=yes
3155     else
3156     { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
3157     If you meant to cross compile, use \`--host'.
3158     See \`config.log' for more details." >&5
3159     echo "$as_me: error: cannot run C compiled programs.
3160     If you meant to cross compile, use \`--host'.
3161     See \`config.log' for more details." >&2;}
3162     { (exit 1); exit 1; }; }
3163     fi
3164     fi
3165     fi
3166 pcg 1.33 { echo "$as_me:$LINENO: result: yes" >&5
3167     echo "${ECHO_T}yes" >&6; }
3168 pcg 1.1
3169     rm -f a.out a.exe conftest$ac_cv_exeext b.out
3170     ac_clean_files=$ac_clean_files_save
3171 pcg 1.33 # Check that the compiler produces executables we can run. If not, either
3172 pcg 1.1 # the compiler is broken, or we cross compile.
3173 pcg 1.33 { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
3174     echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
3175     { echo "$as_me:$LINENO: result: $cross_compiling" >&5
3176     echo "${ECHO_T}$cross_compiling" >&6; }
3177    
3178     { echo "$as_me:$LINENO: checking for suffix of executables" >&5
3179     echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
3180     if { (ac_try="$ac_link"
3181     case "(($ac_try" in
3182     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3183     *) ac_try_echo=$ac_try;;
3184     esac
3185     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3186     (eval "$ac_link") 2>&5
3187 pcg 1.1 ac_status=$?
3188     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3189     (exit $ac_status); }; then
3190     # If both `conftest.exe' and `conftest' are `present' (well, observable)
3191     # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
3192     # work properly (i.e., refer to `conftest.exe'), while it won't with
3193     # `rm'.
3194     for ac_file in conftest.exe conftest conftest.*; do
3195     test -f "$ac_file" || continue
3196     case $ac_file in
3197 pcg 1.33 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
3198 pcg 1.1 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3199 pcg 1.11 break;;
3200 pcg 1.1 * ) break;;
3201     esac
3202     done
3203     else
3204     { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
3205     See \`config.log' for more details." >&5
3206     echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
3207     See \`config.log' for more details." >&2;}
3208     { (exit 1); exit 1; }; }
3209     fi
3210    
3211     rm -f conftest$ac_cv_exeext
3212 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
3213     echo "${ECHO_T}$ac_cv_exeext" >&6; }
3214 pcg 1.1
3215     rm -f conftest.$ac_ext
3216     EXEEXT=$ac_cv_exeext
3217     ac_exeext=$EXEEXT
3218 pcg 1.33 { echo "$as_me:$LINENO: checking for suffix of object files" >&5
3219     echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
3220 pcg 1.1 if test "${ac_cv_objext+set}" = set; then
3221     echo $ECHO_N "(cached) $ECHO_C" >&6
3222     else
3223     cat >conftest.$ac_ext <<_ACEOF
3224     /* confdefs.h. */
3225     _ACEOF
3226     cat confdefs.h >>conftest.$ac_ext
3227     cat >>conftest.$ac_ext <<_ACEOF
3228     /* end confdefs.h. */
3229    
3230     int
3231     main ()
3232     {
3233    
3234     ;
3235     return 0;
3236     }
3237     _ACEOF
3238     rm -f conftest.o conftest.obj
3239 pcg 1.33 if { (ac_try="$ac_compile"
3240     case "(($ac_try" in
3241     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3242     *) ac_try_echo=$ac_try;;
3243     esac
3244     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3245     (eval "$ac_compile") 2>&5
3246 pcg 1.1 ac_status=$?
3247     echo "$as_me:$LINENO: \$? = $ac_status" >&5
3248     (exit $ac_status); }; then
3249 pcg 1.33 for ac_file in conftest.o conftest.obj conftest.*; do
3250     test -f "$ac_file" || continue;
3251 pcg 1.1 case $ac_file in
3252 pcg 1.33 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
3253 pcg 1.1 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
3254     break;;
3255     esac
3256     done
3257     else
3258     echo "$as_me: failed program was:" >&5
3259     sed 's/^/| /' conftest.$ac_ext >&5
3260    
3261     { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
3262     See \`config.log' for more details." >&5
3263     echo "$as_me: error: cannot compute suffix of object files: cannot compile
3264     See \`config.log' for more details." >&2;}
3265     { (exit 1); exit 1; }; }
3266     fi
3267    
3268     rm -f conftest.$ac_cv_objext conftest.$ac_ext
3269     fi
3270 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
3271     echo "${ECHO_T}$ac_cv_objext" >&6; }
3272 pcg 1.1 OBJEXT=$ac_cv_objext
3273     ac_objext=$OBJEXT
3274 pcg 1.33 { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
3275     echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
3276 pcg 1.1 if test "${ac_cv_c_compiler_gnu+set}" = set; then
3277     echo $ECHO_N "(cached) $ECHO_C" >&6
3278     else
3279     cat >conftest.$ac_ext <<_ACEOF
3280     /* confdefs.h. */
3281     _ACEOF
3282     cat confdefs.h >>conftest.$ac_ext
3283     cat >>conftest.$ac_ext <<_ACEOF
3284     /* end confdefs.h. */
3285    
3286     int
3287     main ()
3288     {
3289     #ifndef __GNUC__
3290     choke me
3291     #endif
3292    
3293     ;
3294     return 0;
3295     }
3296     _ACEOF
3297     rm -f conftest.$ac_objext
3298 pcg 1.33 if { (ac_try="$ac_compile"
3299     case "(($ac_try" in
3300     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3301     *) ac_try_echo=$ac_try;;
3302     esac
3303     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3304     (eval "$ac_compile") 2>conftest.er1
3305 pcg 1.1 ac_status=$?
3306 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
3307     rm -f conftest.er1
3308     cat conftest.err >&5
3309 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3310 pcg 1.33 (exit $ac_status); } && {
3311     test -z "$ac_c_werror_flag" ||
3312     test ! -s conftest.err
3313     } && test -s conftest.$ac_objext; then
3314 pcg 1.1 ac_compiler_gnu=yes
3315     else
3316     echo "$as_me: failed program was:" >&5
3317     sed 's/^/| /' conftest.$ac_ext >&5
3318    
3319 pcg 1.33 ac_compiler_gnu=no
3320 pcg 1.1 fi
3321 pcg 1.33
3322     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3323 pcg 1.1 ac_cv_c_compiler_gnu=$ac_compiler_gnu
3324    
3325     fi
3326 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
3327     echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
3328 pcg 1.1 GCC=`test $ac_compiler_gnu = yes && echo yes`
3329     ac_test_CFLAGS=${CFLAGS+set}
3330     ac_save_CFLAGS=$CFLAGS
3331 pcg 1.33 { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
3332     echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
3333 pcg 1.1 if test "${ac_cv_prog_cc_g+set}" = set; then
3334     echo $ECHO_N "(cached) $ECHO_C" >&6
3335     else
3336 pcg 1.33 ac_save_c_werror_flag=$ac_c_werror_flag
3337     ac_c_werror_flag=yes
3338     ac_cv_prog_cc_g=no
3339     CFLAGS="-g"
3340     cat >conftest.$ac_ext <<_ACEOF
3341 pcg 1.1 /* confdefs.h. */
3342     _ACEOF
3343     cat confdefs.h >>conftest.$ac_ext
3344     cat >>conftest.$ac_ext <<_ACEOF
3345     /* end confdefs.h. */
3346    
3347     int
3348     main ()
3349     {
3350    
3351     ;
3352     return 0;
3353     }
3354     _ACEOF
3355     rm -f conftest.$ac_objext
3356 pcg 1.33 if { (ac_try="$ac_compile"
3357     case "(($ac_try" in
3358     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3359     *) ac_try_echo=$ac_try;;
3360     esac
3361     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3362     (eval "$ac_compile") 2>conftest.er1
3363 pcg 1.1 ac_status=$?
3364 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
3365     rm -f conftest.er1
3366     cat conftest.err >&5
3367 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3368 pcg 1.33 (exit $ac_status); } && {
3369     test -z "$ac_c_werror_flag" ||
3370     test ! -s conftest.err
3371     } && test -s conftest.$ac_objext; then
3372     ac_cv_prog_cc_g=yes
3373     else
3374     echo "$as_me: failed program was:" >&5
3375     sed 's/^/| /' conftest.$ac_ext >&5
3376    
3377     CFLAGS=""
3378     cat >conftest.$ac_ext <<_ACEOF
3379     /* confdefs.h. */
3380     _ACEOF
3381     cat confdefs.h >>conftest.$ac_ext
3382     cat >>conftest.$ac_ext <<_ACEOF
3383     /* end confdefs.h. */
3384    
3385     int
3386     main ()
3387     {
3388    
3389     ;
3390     return 0;
3391     }
3392     _ACEOF
3393     rm -f conftest.$ac_objext
3394     if { (ac_try="$ac_compile"
3395     case "(($ac_try" in
3396     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3397     *) ac_try_echo=$ac_try;;
3398     esac
3399     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3400     (eval "$ac_compile") 2>conftest.er1
3401 pcg 1.11 ac_status=$?
3402 pcg 1.33 grep -v '^ *+' conftest.er1 >conftest.err
3403     rm -f conftest.er1
3404     cat conftest.err >&5
3405 pcg 1.11 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3406 pcg 1.33 (exit $ac_status); } && {
3407     test -z "$ac_c_werror_flag" ||
3408     test ! -s conftest.err
3409     } && test -s conftest.$ac_objext; then
3410     :
3411     else
3412     echo "$as_me: failed program was:" >&5
3413     sed 's/^/| /' conftest.$ac_ext >&5
3414    
3415     ac_c_werror_flag=$ac_save_c_werror_flag
3416     CFLAGS="-g"
3417     cat >conftest.$ac_ext <<_ACEOF
3418     /* confdefs.h. */
3419     _ACEOF
3420     cat confdefs.h >>conftest.$ac_ext
3421     cat >>conftest.$ac_ext <<_ACEOF
3422     /* end confdefs.h. */
3423    
3424     int
3425     main ()
3426     {
3427    
3428     ;
3429     return 0;
3430     }
3431     _ACEOF
3432     rm -f conftest.$ac_objext
3433     if { (ac_try="$ac_compile"
3434     case "(($ac_try" in
3435     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3436     *) ac_try_echo=$ac_try;;
3437     esac
3438     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3439     (eval "$ac_compile") 2>conftest.er1
3440 pcg 1.1 ac_status=$?
3441 pcg 1.33 grep -v '^ *+' conftest.er1 >conftest.err
3442     rm -f conftest.er1
3443     cat conftest.err >&5
3444 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3445 pcg 1.33 (exit $ac_status); } && {
3446     test -z "$ac_c_werror_flag" ||
3447     test ! -s conftest.err
3448     } && test -s conftest.$ac_objext; then
3449 pcg 1.1 ac_cv_prog_cc_g=yes
3450     else
3451     echo "$as_me: failed program was:" >&5
3452     sed 's/^/| /' conftest.$ac_ext >&5
3453    
3454 pcg 1.33
3455     fi
3456    
3457     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3458 pcg 1.1 fi
3459 pcg 1.33
3460     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3461     fi
3462    
3463     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3464     ac_c_werror_flag=$ac_save_c_werror_flag
3465 pcg 1.1 fi
3466 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
3467     echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
3468 pcg 1.1 if test "$ac_test_CFLAGS" = set; then
3469     CFLAGS=$ac_save_CFLAGS
3470     elif test $ac_cv_prog_cc_g = yes; then
3471     if test "$GCC" = yes; then
3472     CFLAGS="-g -O2"
3473     else
3474     CFLAGS="-g"
3475     fi
3476     else
3477     if test "$GCC" = yes; then
3478     CFLAGS="-O2"
3479     else
3480     CFLAGS=
3481     fi
3482     fi
3483 pcg 1.33 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
3484     echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
3485     if test "${ac_cv_prog_cc_c89+set}" = set; then
3486 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
3487     else
3488 pcg 1.33 ac_cv_prog_cc_c89=no
3489 pcg 1.1 ac_save_CC=$CC
3490     cat >conftest.$ac_ext <<_ACEOF
3491     /* confdefs.h. */
3492     _ACEOF
3493     cat confdefs.h >>conftest.$ac_ext
3494     cat >>conftest.$ac_ext <<_ACEOF
3495     /* end confdefs.h. */
3496     #include <stdarg.h>
3497     #include <stdio.h>
3498     #include <sys/types.h>
3499     #include <sys/stat.h>
3500     /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
3501     struct buf { int x; };
3502     FILE * (*rcsopen) (struct buf *, struct stat *, int);
3503     static char *e (p, i)
3504     char **p;
3505     int i;
3506     {
3507     return p[i];
3508     }
3509     static char *f (char * (*g) (char **, int), char **p, ...)
3510     {
3511     char *s;
3512     va_list v;
3513     va_start (v,p);
3514     s = g (p, va_arg (v,int));
3515     va_end (v);
3516     return s;
3517     }
3518 pcg 1.11
3519     /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
3520     function prototypes and stuff, but not '\xHH' hex character constants.
3521     These don't provoke an error unfortunately, instead are silently treated
3522 pcg 1.33 as 'x'. The following induces an error, until -std is added to get
3523 pcg 1.11 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
3524     array size at least. It's necessary to write '\x00'==0 to get something
3525 pcg 1.33 that's true only with -std. */
3526 pcg 1.11 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
3527    
3528 pcg 1.33 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
3529     inside strings and character constants. */
3530     #define FOO(x) 'x'
3531     int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
3532    
3533 pcg 1.1 int test (int i, double x);
3534     struct s1 {int (*f) (int a);};
3535     struct s2 {int (*f) (double a);};
3536     int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
3537     int argc;
3538     char **argv;
3539     int
3540     main ()
3541     {
3542     return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
3543     ;
3544     return 0;
3545     }
3546     _ACEOF
3547 pcg 1.33 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
3548     -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
3549 pcg 1.1 do
3550     CC="$ac_save_CC $ac_arg"
3551     rm -f conftest.$ac_objext
3552 pcg 1.33 if { (ac_try="$ac_compile"
3553     case "(($ac_try" in
3554     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3555     *) ac_try_echo=$ac_try;;
3556     esac
3557     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3558     (eval "$ac_compile") 2>conftest.er1
3559 pcg 1.1 ac_status=$?
3560 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
3561     rm -f conftest.er1
3562     cat conftest.err >&5
3563 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3564 pcg 1.33 (exit $ac_status); } && {
3565     test -z "$ac_c_werror_flag" ||
3566     test ! -s conftest.err
3567     } && test -s conftest.$ac_objext; then
3568     ac_cv_prog_cc_c89=$ac_arg
3569 pcg 1.1 else
3570     echo "$as_me: failed program was:" >&5
3571     sed 's/^/| /' conftest.$ac_ext >&5
3572    
3573 pcg 1.33
3574 pcg 1.1 fi
3575 pcg 1.33
3576     rm -f core conftest.err conftest.$ac_objext
3577     test "x$ac_cv_prog_cc_c89" != "xno" && break
3578 pcg 1.1 done
3579 pcg 1.33 rm -f conftest.$ac_ext
3580 pcg 1.1 CC=$ac_save_CC
3581    
3582     fi
3583 pcg 1.33 # AC_CACHE_VAL
3584     case "x$ac_cv_prog_cc_c89" in
3585     x)
3586     { echo "$as_me:$LINENO: result: none needed" >&5
3587     echo "${ECHO_T}none needed" >&6; } ;;
3588     xno)
3589     { echo "$as_me:$LINENO: result: unsupported" >&5
3590     echo "${ECHO_T}unsupported" >&6; } ;;
3591 pcg 1.1 *)
3592 pcg 1.33 CC="$CC $ac_cv_prog_cc_c89"
3593     { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
3594     echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
3595 pcg 1.1 esac
3596    
3597 pcg 1.33
3598     ac_ext=c
3599     ac_cpp='$CPP $CPPFLAGS'
3600     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3601     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3602     ac_compiler_gnu=$ac_cv_c_compiler_gnu
3603    
3604     depcc="$CC" am_compiler_list=
3605    
3606     { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
3607     echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
3608     if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
3609     echo $ECHO_N "(cached) $ECHO_C" >&6
3610     else
3611     if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
3612     # We make a subdir and do the tests there. Otherwise we can end up
3613     # making bogus files that we don't know about and never remove. For
3614     # instance it was reported that on HP-UX the gcc test will end up
3615     # making a dummy file named `D' -- because `-MD' means `put the output
3616 pcg 1.1 # in D'.
3617     mkdir conftest.dir
3618     # Copy depcomp to subdir because otherwise we won't find it if we're
3619     # using a relative directory.
3620     cp "$am_depcomp" conftest.dir
3621     cd conftest.dir
3622     # We will build objects and dependencies in a subdirectory because
3623     # it helps to detect inapplicable dependency modes. For instance
3624     # both Tru64's cc and ICC support -MD to output dependencies as a
3625     # side effect of compilation, but ICC will put the dependencies in
3626     # the current directory while Tru64 will put them in the object
3627     # directory.
3628     mkdir sub
3629    
3630     am_cv_CC_dependencies_compiler_type=none
3631     if test "$am_compiler_list" = ""; then
3632     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
3633     fi
3634     for depmode in $am_compiler_list; do
3635     # Setup a source with many dependencies, because some compilers
3636     # like to wrap large dependency lists on column 80 (with \), and
3637     # we should not choose a depcomp mode which is confused by this.
3638     #
3639     # We need to recreate these files for each test, as the compiler may
3640     # overwrite some of them when testing with obscure command lines.
3641     # This happens at least with the AIX C compiler.
3642     : > sub/conftest.c
3643     for i in 1 2 3 4 5 6; do
3644     echo '#include "conftst'$i'.h"' >> sub/conftest.c
3645 pcg 1.33 : > sub/conftst$i.h
3646 pcg 1.1 done
3647     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
3648    
3649     case $depmode in
3650     nosideeffect)
3651     # after this tag, mechanisms are not by side-effect, so they'll
3652     # only be used when explicitly requested
3653     if test "x$enable_dependency_tracking" = xyes; then
3654     continue
3655     else
3656     break
3657     fi
3658     ;;
3659     none) break ;;
3660     esac
3661     # We check with `-c' and `-o' for the sake of the "dashmstdout"
3662     # mode. It turns out that the SunPro C++ compiler does not properly
3663     # handle `-M -o', and we need to detect this.
3664     if depmode=$depmode \
3665     source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
3666     depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3667     $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3668     >/dev/null 2>conftest.err &&
3669     grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3670     grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3671     ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3672     # icc doesn't choke on unknown options, it will just issue warnings
3673 pcg 1.33 # (even with -Werror). So we grep stderr for any message
3674     # that says an option was ignored.
3675     if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
3676 pcg 1.1 am_cv_CC_dependencies_compiler_type=$depmode
3677     break
3678     fi
3679     fi
3680     done
3681    
3682     cd ..
3683     rm -rf conftest.dir
3684     else
3685     am_cv_CC_dependencies_compiler_type=none
3686     fi
3687    
3688     fi
3689 pcg 1.33 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
3690     echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
3691 pcg 1.1 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3692    
3693    
3694    
3695     if
3696     test "x$enable_dependency_tracking" != xno \
3697     && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3698     am__fastdepCC_TRUE=
3699     am__fastdepCC_FALSE='#'
3700     else
3701     am__fastdepCC_TRUE='#'
3702     am__fastdepCC_FALSE=
3703     fi
3704    
3705    
3706    
3707 pcg 1.33 # Check whether --with-gnu-ld was given.
3708 pcg 1.1 if test "${with_gnu_ld+set}" = set; then
3709 pcg 1.33 withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
3710 pcg 1.1 else
3711     with_gnu_ld=no
3712 pcg 1.33 fi
3713    
3714 pcg 1.1 ac_prog=ld
3715     if test "$GCC" = yes; then
3716     # Check if gcc -print-prog-name=ld gives a path.
3717 pcg 1.33 { echo "$as_me:$LINENO: checking for ld used by GCC" >&5
3718     echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; }
3719 pcg 1.1 case $host in
3720     *-*-mingw*)
3721     # gcc leaves a trailing carriage return which upsets mingw
3722     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3723     *)
3724     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3725     esac
3726     case $ac_prog in
3727     # Accept absolute paths.
3728     [\\/]* | [A-Za-z]:[\\/]*)
3729     re_direlt='/[^/][^/]*/\.\./'
3730     # Canonicalize the path of ld
3731     ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
3732     while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3733     ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
3734     done
3735     test -z "$LD" && LD="$ac_prog"
3736     ;;
3737     "")
3738     # If it fails, then pretend we aren't using GCC.
3739     ac_prog=ld
3740     ;;
3741     *)
3742     # If it is relative, then search for the first ld in PATH.
3743     with_gnu_ld=unknown
3744     ;;
3745     esac
3746     elif test "$with_gnu_ld" = yes; then
3747 pcg 1.33 { echo "$as_me:$LINENO: checking for GNU ld" >&5
3748     echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
3749 pcg 1.1 else
3750 pcg 1.33 { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
3751     echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
3752 pcg 1.1 fi
3753     if test "${acl_cv_path_LD+set}" = set; then
3754     echo $ECHO_N "(cached) $ECHO_C" >&6
3755     else
3756     if test -z "$LD"; then
3757     IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
3758     for ac_dir in $PATH; do
3759     test -z "$ac_dir" && ac_dir=.
3760     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
3761     acl_cv_path_LD="$ac_dir/$ac_prog"
3762     # Check to see if the program is GNU ld. I'd rather use --version,
3763     # but apparently some GNU ld's only accept -v.
3764     # Break only if it was the GNU/non-GNU ld that we prefer.
3765     if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
3766     test "$with_gnu_ld" != no && break
3767     else
3768     test "$with_gnu_ld" != yes && break
3769     fi
3770     fi
3771     done
3772     IFS="$ac_save_ifs"
3773     else
3774     acl_cv_path_LD="$LD" # Let the user override the test with a path.
3775     fi
3776     fi
3777    
3778     LD="$acl_cv_path_LD"
3779     if test -n "$LD"; then
3780 pcg 1.33 { echo "$as_me:$LINENO: result: $LD" >&5
3781     echo "${ECHO_T}$LD" >&6; }
3782 pcg 1.1 else
3783 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
3784     echo "${ECHO_T}no" >&6; }
3785 pcg 1.1 fi
3786     test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
3787     echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
3788     { (exit 1); exit 1; }; }
3789 pcg 1.33 { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
3790     echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
3791 pcg 1.1 if test "${acl_cv_prog_gnu_ld+set}" = set; then
3792     echo $ECHO_N "(cached) $ECHO_C" >&6
3793     else
3794     # I'd rather use --version here, but apparently some GNU ld's only accept -v.
3795     if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
3796     acl_cv_prog_gnu_ld=yes
3797     else
3798     acl_cv_prog_gnu_ld=no
3799     fi
3800     fi
3801 pcg 1.33 { echo "$as_me:$LINENO: result: $acl_cv_prog_gnu_ld" >&5
3802     echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6; }
3803 pcg 1.1 with_gnu_ld=$acl_cv_prog_gnu_ld
3804    
3805    
3806    
3807 pcg 1.33 { echo "$as_me:$LINENO: checking for shared library run path origin" >&5
3808     echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6; }
3809 pcg 1.1 if test "${acl_cv_rpath+set}" = set; then
3810     echo $ECHO_N "(cached) $ECHO_C" >&6
3811     else
3812    
3813     CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
3814     ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
3815     . ./conftest.sh
3816     rm -f ./conftest.sh
3817     acl_cv_rpath=done
3818    
3819     fi
3820 pcg 1.33 { echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5
3821     echo "${ECHO_T}$acl_cv_rpath" >&6; }
3822 pcg 1.1 wl="$acl_cv_wl"
3823     libext="$acl_cv_libext"
3824     shlibext="$acl_cv_shlibext"
3825     hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
3826     hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
3827     hardcode_direct="$acl_cv_hardcode_direct"
3828     hardcode_minus_L="$acl_cv_hardcode_minus_L"
3829     sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec"
3830     sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec"
3831 pcg 1.33 # Check whether --enable-rpath was given.
3832 pcg 1.1 if test "${enable_rpath+set}" = set; then
3833 pcg 1.33 enableval=$enable_rpath; :
3834 pcg 1.1 else
3835     enable_rpath=yes
3836 pcg 1.33 fi
3837    
3838 pcg 1.1
3839    
3840    
3841    
3842    
3843    
3844    
3845     use_additional=yes
3846    
3847     acl_save_prefix="$prefix"
3848     prefix="$acl_final_prefix"
3849     acl_save_exec_prefix="$exec_prefix"
3850     exec_prefix="$acl_final_exec_prefix"
3851    
3852     eval additional_includedir=\"$includedir\"
3853     eval additional_libdir=\"$libdir\"
3854    
3855     exec_prefix="$acl_save_exec_prefix"
3856     prefix="$acl_save_prefix"
3857    
3858    
3859 pcg 1.33 # Check whether --with-libiconv-prefix was given.
3860 pcg 1.1 if test "${with_libiconv_prefix+set}" = set; then
3861 pcg 1.33 withval=$with_libiconv_prefix;
3862 pcg 1.1 if test "X$withval" = "Xno"; then
3863     use_additional=no
3864     else
3865     if test "X$withval" = "X"; then
3866    
3867     acl_save_prefix="$prefix"
3868     prefix="$acl_final_prefix"
3869     acl_save_exec_prefix="$exec_prefix"
3870     exec_prefix="$acl_final_exec_prefix"
3871    
3872     eval additional_includedir=\"$includedir\"
3873     eval additional_libdir=\"$libdir\"
3874    
3875     exec_prefix="$acl_save_exec_prefix"
3876     prefix="$acl_save_prefix"
3877    
3878     else
3879     additional_includedir="$withval/include"
3880     additional_libdir="$withval/lib"
3881     fi
3882     fi
3883    
3884 pcg 1.33 fi
3885    
3886 pcg 1.1 LIBICONV=
3887     LTLIBICONV=
3888     INCICONV=
3889     rpathdirs=
3890     ltrpathdirs=
3891     names_already_handled=
3892     names_next_round='iconv '
3893     while test -n "$names_next_round"; do
3894     names_this_round="$names_next_round"
3895     names_next_round=
3896     for name in $names_this_round; do
3897     already_handled=
3898     for n in $names_already_handled; do
3899     if test "$n" = "$name"; then
3900     already_handled=yes
3901     break
3902     fi
3903     done
3904     if test -z "$already_handled"; then
3905     names_already_handled="$names_already_handled $name"
3906     uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
3907     eval value=\"\$HAVE_LIB$uppername\"
3908     if test -n "$value"; then
3909     if test "$value" = yes; then
3910     eval value=\"\$LIB$uppername\"
3911     test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value"
3912     eval value=\"\$LTLIB$uppername\"
3913     test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value"
3914     else
3915     :
3916     fi
3917     else
3918     found_dir=
3919     found_la=
3920     found_so=
3921     found_a=
3922     if test $use_additional = yes; then
3923     if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
3924     found_dir="$additional_libdir"
3925     found_so="$additional_libdir/lib$name.$shlibext"
3926     if test -f "$additional_libdir/lib$name.la"; then
3927     found_la="$additional_libdir/lib$name.la"
3928     fi
3929     else
3930     if test -f "$additional_libdir/lib$name.$libext"; then
3931     found_dir="$additional_libdir"
3932     found_a="$additional_libdir/lib$name.$libext"
3933     if test -f "$additional_libdir/lib$name.la"; then
3934     found_la="$additional_libdir/lib$name.la"
3935     fi
3936     fi
3937     fi
3938     fi
3939     if test "X$found_dir" = "X"; then
3940     for x in $LDFLAGS $LTLIBICONV; do
3941    
3942     acl_save_prefix="$prefix"
3943     prefix="$acl_final_prefix"
3944     acl_save_exec_prefix="$exec_prefix"
3945     exec_prefix="$acl_final_exec_prefix"
3946     eval x=\"$x\"
3947     exec_prefix="$acl_save_exec_prefix"
3948     prefix="$acl_save_prefix"
3949    
3950     case "$x" in
3951     -L*)
3952     dir=`echo "X$x" | sed -e 's/^X-L//'`
3953     if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
3954     found_dir="$dir"
3955     found_so="$dir/lib$name.$shlibext"
3956     if test -f "$dir/lib$name.la"; then
3957     found_la="$dir/lib$name.la"
3958     fi
3959     else
3960     if test -f "$dir/lib$name.$libext"; then
3961     found_dir="$dir"
3962     found_a="$dir/lib$name.$libext"
3963     if test -f "$dir/lib$name.la"; then
3964     found_la="$dir/lib$name.la"
3965     fi
3966     fi
3967     fi
3968     ;;
3969     esac
3970     if test "X$found_dir" != "X"; then
3971     break
3972     fi
3973     done
3974     fi
3975     if test "X$found_dir" != "X"; then
3976     LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name"
3977     if test "X$found_so" != "X"; then
3978     if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
3979     LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
3980     else
3981     haveit=
3982     for x in $ltrpathdirs; do
3983     if test "X$x" = "X$found_dir"; then
3984     haveit=yes
3985     break
3986     fi
3987     done
3988     if test -z "$haveit"; then
3989     ltrpathdirs="$ltrpathdirs $found_dir"
3990     fi
3991     if test "$hardcode_direct" = yes; then
3992     LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
3993     else
3994     if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
3995     LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
3996     haveit=
3997     for x in $rpathdirs; do
3998     if test "X$x" = "X$found_dir"; then
3999     haveit=yes
4000     break
4001     fi
4002     done
4003     if test -z "$haveit"; then
4004     rpathdirs="$rpathdirs $found_dir"
4005     fi
4006     else
4007     haveit=
4008     for x in $LDFLAGS $LIBICONV; do
4009    
4010     acl_save_prefix="$prefix"
4011     prefix="$acl_final_prefix"
4012     acl_save_exec_prefix="$exec_prefix"
4013     exec_prefix="$acl_final_exec_prefix"
4014     eval x=\"$x\"
4015     exec_prefix="$acl_save_exec_prefix"
4016     prefix="$acl_save_prefix"
4017    
4018     if test "X$x" = "X-L$found_dir"; then
4019     haveit=yes
4020     break
4021     fi
4022     done
4023     if test -z "$haveit"; then
4024     LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir"
4025     fi
4026     if test "$hardcode_minus_L" != no; then
4027     LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
4028     else
4029     LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
4030     fi
4031     fi
4032     fi
4033     fi
4034     else
4035     if test "X$found_a" != "X"; then
4036     LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a"
4037     else
4038     LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name"
4039     fi
4040     fi
4041     additional_includedir=
4042     case "$found_dir" in
4043     */lib | */lib/)
4044     basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
4045     additional_includedir="$basedir/include"
4046     ;;
4047     esac
4048     if test "X$additional_includedir" != "X"; then
4049     if test "X$additional_includedir" != "X/usr/include"; then
4050     haveit=
4051     if test "X$additional_includedir" = "X/usr/local/include"; then
4052     if test -n "$GCC"; then
4053     case $host_os in
4054     linux*) haveit=yes;;
4055     esac
4056     fi
4057     fi
4058     if test -z "$haveit"; then
4059     for x in $CPPFLAGS $INCICONV; do
4060    
4061     acl_save_prefix="$prefix"
4062     prefix="$acl_final_prefix"
4063     acl_save_exec_prefix="$exec_prefix"
4064     exec_prefix="$acl_final_exec_prefix"
4065     eval x=\"$x\"
4066     exec_prefix="$acl_save_exec_prefix"
4067     prefix="$acl_save_prefix"
4068    
4069     if test "X$x" = "X-I$additional_includedir"; then
4070     haveit=yes
4071     break
4072     fi
4073     done
4074     if test -z "$haveit"; then
4075     if test -d "$additional_includedir"; then
4076     INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir"
4077     fi
4078     fi
4079     fi
4080     fi
4081     fi
4082     if test -n "$found_la"; then
4083     save_libdir="$libdir"
4084     case "$found_la" in
4085     */* | *\\*) . "$found_la" ;;
4086     *) . "./$found_la" ;;
4087     esac
4088     libdir="$save_libdir"
4089     for dep in $dependency_libs; do
4090     case "$dep" in
4091     -L*)
4092     additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
4093     if test "X$additional_libdir" != "X/usr/lib"; then
4094     haveit=
4095     if test "X$additional_libdir" = "X/usr/local/lib"; then
4096     if test -n "$GCC"; then
4097     case $host_os in
4098     linux*) haveit=yes;;
4099     esac
4100     fi
4101     fi
4102     if test -z "$haveit"; then
4103     haveit=
4104     for x in $LDFLAGS $LIBICONV; do
4105    
4106     acl_save_prefix="$prefix"
4107     prefix="$acl_final_prefix"
4108     acl_save_exec_prefix="$exec_prefix"
4109     exec_prefix="$acl_final_exec_prefix"
4110     eval x=\"$x\"
4111     exec_prefix="$acl_save_exec_prefix"
4112     prefix="$acl_save_prefix"
4113    
4114     if test "X$x" = "X-L$additional_libdir"; then
4115     haveit=yes
4116     break
4117     fi
4118     done
4119     if test -z "$haveit"; then
4120     if test -d "$additional_libdir"; then
4121     LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir"
4122     fi
4123     fi
4124     haveit=
4125     for x in $LDFLAGS $LTLIBICONV; do
4126    
4127     acl_save_prefix="$prefix"
4128     prefix="$acl_final_prefix"
4129     acl_save_exec_prefix="$exec_prefix"
4130     exec_prefix="$acl_final_exec_prefix"
4131     eval x=\"$x\"
4132     exec_prefix="$acl_save_exec_prefix"
4133     prefix="$acl_save_prefix"
4134    
4135     if test "X$x" = "X-L$additional_libdir"; then
4136     haveit=yes
4137     break
4138     fi
4139     done
4140     if test -z "$haveit"; then
4141     if test -d "$additional_libdir"; then
4142     LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir"
4143     fi
4144     fi
4145     fi
4146     fi
4147     ;;
4148     -R*)
4149     dir=`echo "X$dep" | sed -e 's/^X-R//'`
4150     if test "$enable_rpath" != no; then
4151     haveit=
4152     for x in $rpathdirs; do
4153     if test "X$x" = "X$dir"; then
4154     haveit=yes
4155     break
4156     fi
4157     done
4158     if test -z "$haveit"; then
4159     rpathdirs="$rpathdirs $dir"
4160     fi
4161     haveit=
4162     for x in $ltrpathdirs; do
4163     if test "X$x" = "X$dir"; then
4164     haveit=yes
4165     break
4166     fi
4167     done
4168     if test -z "$haveit"; then
4169     ltrpathdirs="$ltrpathdirs $dir"
4170     fi
4171     fi
4172     ;;
4173     -l*)
4174     names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
4175     ;;
4176     *.la)
4177     names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
4178     ;;
4179     *)
4180     LIBICONV="${LIBICONV}${LIBICONV:+ }$dep"
4181     LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep"
4182     ;;
4183     esac
4184     done
4185     fi
4186     else
4187     LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
4188     LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name"
4189     fi
4190     fi
4191     fi
4192     done
4193     done
4194     if test "X$rpathdirs" != "X"; then
4195     if test -n "$hardcode_libdir_separator"; then
4196     alldirs=
4197     for found_dir in $rpathdirs; do
4198     alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
4199     done
4200     acl_save_libdir="$libdir"
4201     libdir="$alldirs"
4202     eval flag=\"$hardcode_libdir_flag_spec\"
4203     libdir="$acl_save_libdir"
4204     LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
4205     else
4206     for found_dir in $rpathdirs; do
4207     acl_save_libdir="$libdir"
4208     libdir="$found_dir"
4209     eval flag=\"$hardcode_libdir_flag_spec\"
4210     libdir="$acl_save_libdir"
4211     LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
4212     done
4213     fi
4214     fi
4215     if test "X$ltrpathdirs" != "X"; then
4216     for found_dir in $ltrpathdirs; do
4217     LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir"
4218     done
4219     fi
4220    
4221    
4222    
4223    
4224    
4225    
4226    
4227    
4228    
4229    
4230    
4231    
4232    
4233    
4234    
4235    
4236    
4237    
4238 pcg 1.33 { echo "$as_me:$LINENO: checking whether NLS is requested" >&5
4239     echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6; }
4240     # Check whether --enable-nls was given.
4241 pcg 1.1 if test "${enable_nls+set}" = set; then
4242 pcg 1.33 enableval=$enable_nls; USE_NLS=$enableval
4243 pcg 1.1 else
4244     USE_NLS=yes
4245 pcg 1.33 fi
4246    
4247     { echo "$as_me:$LINENO: result: $USE_NLS" >&5
4248     echo "${ECHO_T}$USE_NLS" >&6; }
4249 pcg 1.1
4250    
4251    
4252     LIBINTL=
4253     LTLIBINTL=
4254     POSUB=
4255    
4256     if test "$USE_NLS" = "yes"; then
4257     gt_use_preinstalled_gnugettext=no
4258    
4259    
4260    
4261    
4262    
4263    
4264 pcg 1.33 { echo "$as_me:$LINENO: checking for GNU gettext in libc" >&5
4265     echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6; }
4266 pcg 1.1 if test "${gt_cv_func_gnugettext1_libc+set}" = set; then
4267     echo $ECHO_N "(cached) $ECHO_C" >&6
4268     else
4269     cat >conftest.$ac_ext <<_ACEOF
4270     /* confdefs.h. */
4271     _ACEOF
4272     cat confdefs.h >>conftest.$ac_ext
4273     cat >>conftest.$ac_ext <<_ACEOF
4274     /* end confdefs.h. */
4275     #include <libintl.h>
4276     extern int _nl_msg_cat_cntr;
4277     extern int *_nl_domain_bindings;
4278     int
4279     main ()
4280     {
4281     bindtextdomain ("", "");
4282     return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
4283     ;
4284     return 0;
4285     }
4286     _ACEOF
4287     rm -f conftest.$ac_objext conftest$ac_exeext
4288 pcg 1.33 if { (ac_try="$ac_link"
4289     case "(($ac_try" in
4290     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4291     *) ac_try_echo=$ac_try;;
4292     esac
4293     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4294     (eval "$ac_link") 2>conftest.er1
4295 pcg 1.1 ac_status=$?
4296 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
4297     rm -f conftest.er1
4298     cat conftest.err >&5
4299 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4300 pcg 1.33 (exit $ac_status); } && {
4301     test -z "$ac_c_werror_flag" ||
4302     test ! -s conftest.err
4303     } && test -s conftest$ac_exeext &&
4304     $as_test_x conftest$ac_exeext; then
4305 pcg 1.1 gt_cv_func_gnugettext1_libc=yes
4306     else
4307     echo "$as_me: failed program was:" >&5
4308     sed 's/^/| /' conftest.$ac_ext >&5
4309    
4310 pcg 1.33 gt_cv_func_gnugettext1_libc=no
4311 pcg 1.1 fi
4312 pcg 1.33
4313     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4314 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
4315 pcg 1.1 fi
4316 pcg 1.33 { echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libc" >&5
4317     echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6; }
4318 pcg 1.1
4319     if test "$gt_cv_func_gnugettext1_libc" != "yes"; then
4320    
4321    
4322    
4323    
4324    
4325     am_save_CPPFLAGS="$CPPFLAGS"
4326    
4327     for element in $INCICONV; do
4328     haveit=
4329     for x in $CPPFLAGS; do
4330    
4331     acl_save_prefix="$prefix"
4332     prefix="$acl_final_prefix"
4333     acl_save_exec_prefix="$exec_prefix"
4334     exec_prefix="$acl_final_exec_prefix"
4335     eval x=\"$x\"
4336     exec_prefix="$acl_save_exec_prefix"
4337     prefix="$acl_save_prefix"
4338    
4339     if test "X$x" = "X$element"; then
4340     haveit=yes
4341     break
4342     fi
4343     done
4344     if test -z "$haveit"; then
4345     CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
4346     fi
4347     done
4348    
4349    
4350 pcg 1.33 { echo "$as_me:$LINENO: checking for iconv" >&5
4351     echo $ECHO_N "checking for iconv... $ECHO_C" >&6; }
4352 pcg 1.1 if test "${am_cv_func_iconv+set}" = set; then
4353     echo $ECHO_N "(cached) $ECHO_C" >&6
4354     else
4355    
4356     am_cv_func_iconv="no, consider installing GNU libiconv"
4357     am_cv_lib_iconv=no
4358     cat >conftest.$ac_ext <<_ACEOF
4359     /* confdefs.h. */
4360     _ACEOF
4361     cat confdefs.h >>conftest.$ac_ext
4362     cat >>conftest.$ac_ext <<_ACEOF
4363     /* end confdefs.h. */
4364     #include <stdlib.h>
4365     #include <iconv.h>
4366     int
4367     main ()
4368     {
4369     iconv_t cd = iconv_open("","");
4370     iconv(cd,NULL,NULL,NULL,NULL);
4371     iconv_close(cd);
4372     ;
4373     return 0;
4374     }
4375     _ACEOF
4376     rm -f conftest.$ac_objext conftest$ac_exeext
4377 pcg 1.33 if { (ac_try="$ac_link"
4378     case "(($ac_try" in
4379     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4380     *) ac_try_echo=$ac_try;;
4381     esac
4382     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4383     (eval "$ac_link") 2>conftest.er1
4384 pcg 1.1 ac_status=$?
4385 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
4386     rm -f conftest.er1
4387     cat conftest.err >&5
4388 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4389 pcg 1.33 (exit $ac_status); } && {
4390     test -z "$ac_c_werror_flag" ||
4391     test ! -s conftest.err
4392     } && test -s conftest$ac_exeext &&
4393     $as_test_x conftest$ac_exeext; then
4394 pcg 1.1 am_cv_func_iconv=yes
4395     else
4396     echo "$as_me: failed program was:" >&5
4397     sed 's/^/| /' conftest.$ac_ext >&5
4398    
4399 pcg 1.33
4400 pcg 1.1 fi
4401 pcg 1.33
4402     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4403 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
4404 pcg 1.1 if test "$am_cv_func_iconv" != yes; then
4405     am_save_LIBS="$LIBS"
4406     LIBS="$LIBS $LIBICONV"
4407     cat >conftest.$ac_ext <<_ACEOF
4408     /* confdefs.h. */
4409     _ACEOF
4410     cat confdefs.h >>conftest.$ac_ext
4411     cat >>conftest.$ac_ext <<_ACEOF
4412     /* end confdefs.h. */
4413     #include <stdlib.h>
4414     #include <iconv.h>
4415     int
4416     main ()
4417     {
4418     iconv_t cd = iconv_open("","");
4419     iconv(cd,NULL,NULL,NULL,NULL);
4420     iconv_close(cd);
4421     ;
4422     return 0;
4423     }
4424     _ACEOF
4425     rm -f conftest.$ac_objext conftest$ac_exeext
4426 pcg 1.33 if { (ac_try="$ac_link"
4427     case "(($ac_try" in
4428     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4429     *) ac_try_echo=$ac_try;;
4430     esac
4431     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4432     (eval "$ac_link") 2>conftest.er1
4433 pcg 1.1 ac_status=$?
4434 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
4435     rm -f conftest.er1
4436     cat conftest.err >&5
4437 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4438 pcg 1.33 (exit $ac_status); } && {
4439     test -z "$ac_c_werror_flag" ||
4440     test ! -s conftest.err
4441     } && test -s conftest$ac_exeext &&
4442     $as_test_x conftest$ac_exeext; then
4443 pcg 1.1 am_cv_lib_iconv=yes
4444     am_cv_func_iconv=yes
4445     else
4446     echo "$as_me: failed program was:" >&5
4447     sed 's/^/| /' conftest.$ac_ext >&5
4448    
4449 pcg 1.33
4450 pcg 1.1 fi
4451 pcg 1.33
4452     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4453 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
4454 pcg 1.1 LIBS="$am_save_LIBS"
4455     fi
4456    
4457     fi
4458 pcg 1.33 { echo "$as_me:$LINENO: result: $am_cv_func_iconv" >&5
4459     echo "${ECHO_T}$am_cv_func_iconv" >&6; }
4460 pcg 1.1 if test "$am_cv_func_iconv" = yes; then
4461    
4462     cat >>confdefs.h <<\_ACEOF
4463     #define HAVE_ICONV 1
4464     _ACEOF
4465    
4466     fi
4467     if test "$am_cv_lib_iconv" = yes; then
4468 pcg 1.33 { echo "$as_me:$LINENO: checking how to link with libiconv" >&5
4469     echo $ECHO_N "checking how to link with libiconv... $ECHO_C" >&6; }
4470     { echo "$as_me:$LINENO: result: $LIBICONV" >&5
4471     echo "${ECHO_T}$LIBICONV" >&6; }
4472 pcg 1.1 else
4473     CPPFLAGS="$am_save_CPPFLAGS"
4474     LIBICONV=
4475     LTLIBICONV=
4476     fi
4477    
4478    
4479    
4480    
4481    
4482    
4483     use_additional=yes
4484    
4485     acl_save_prefix="$prefix"
4486     prefix="$acl_final_prefix"
4487     acl_save_exec_prefix="$exec_prefix"
4488     exec_prefix="$acl_final_exec_prefix"
4489    
4490     eval additional_includedir=\"$includedir\"
4491     eval additional_libdir=\"$libdir\"
4492    
4493     exec_prefix="$acl_save_exec_prefix"
4494     prefix="$acl_save_prefix"
4495    
4496    
4497 pcg 1.33 # Check whether --with-libintl-prefix was given.
4498 pcg 1.1 if test "${with_libintl_prefix+set}" = set; then
4499 pcg 1.33 withval=$with_libintl_prefix;
4500 pcg 1.1 if test "X$withval" = "Xno"; then
4501     use_additional=no
4502     else
4503     if test "X$withval" = "X"; then
4504    
4505     acl_save_prefix="$prefix"
4506     prefix="$acl_final_prefix"
4507     acl_save_exec_prefix="$exec_prefix"
4508     exec_prefix="$acl_final_exec_prefix"
4509    
4510     eval additional_includedir=\"$includedir\"
4511     eval additional_libdir=\"$libdir\"
4512    
4513     exec_prefix="$acl_save_exec_prefix"
4514     prefix="$acl_save_prefix"
4515    
4516     else
4517     additional_includedir="$withval/include"
4518     additional_libdir="$withval/lib"
4519     fi
4520     fi
4521    
4522 pcg 1.33 fi
4523    
4524 pcg 1.1 LIBINTL=
4525     LTLIBINTL=
4526     INCINTL=
4527     rpathdirs=
4528     ltrpathdirs=
4529     names_already_handled=
4530     names_next_round='intl '
4531     while test -n "$names_next_round"; do
4532     names_this_round="$names_next_round"
4533     names_next_round=
4534     for name in $names_this_round; do
4535     already_handled=
4536     for n in $names_already_handled; do
4537     if test "$n" = "$name"; then
4538     already_handled=yes
4539     break
4540     fi
4541     done
4542     if test -z "$already_handled"; then
4543     names_already_handled="$names_already_handled $name"
4544     uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
4545     eval value=\"\$HAVE_LIB$uppername\"
4546     if test -n "$value"; then
4547     if test "$value" = yes; then
4548     eval value=\"\$LIB$uppername\"
4549     test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value"
4550     eval value=\"\$LTLIB$uppername\"
4551     test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value"
4552     else
4553     :
4554     fi
4555     else
4556     found_dir=
4557     found_la=
4558     found_so=
4559     found_a=
4560     if test $use_additional = yes; then
4561     if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
4562     found_dir="$additional_libdir"
4563     found_so="$additional_libdir/lib$name.$shlibext"
4564     if test -f "$additional_libdir/lib$name.la"; then
4565     found_la="$additional_libdir/lib$name.la"
4566     fi
4567     else
4568     if test -f "$additional_libdir/lib$name.$libext"; then
4569     found_dir="$additional_libdir"
4570     found_a="$additional_libdir/lib$name.$libext"
4571     if test -f "$additional_libdir/lib$name.la"; then
4572     found_la="$additional_libdir/lib$name.la"
4573     fi
4574     fi
4575     fi
4576     fi
4577     if test "X$found_dir" = "X"; then
4578     for x in $LDFLAGS $LTLIBINTL; do
4579    
4580     acl_save_prefix="$prefix"
4581     prefix="$acl_final_prefix"
4582     acl_save_exec_prefix="$exec_prefix"
4583     exec_prefix="$acl_final_exec_prefix"
4584     eval x=\"$x\"
4585     exec_prefix="$acl_save_exec_prefix"
4586     prefix="$acl_save_prefix"
4587    
4588     case "$x" in
4589     -L*)
4590     dir=`echo "X$x" | sed -e 's/^X-L//'`
4591     if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
4592     found_dir="$dir"
4593     found_so="$dir/lib$name.$shlibext"
4594     if test -f "$dir/lib$name.la"; then
4595     found_la="$dir/lib$name.la"
4596     fi
4597     else
4598     if test -f "$dir/lib$name.$libext"; then
4599     found_dir="$dir"
4600     found_a="$dir/lib$name.$libext"
4601     if test -f "$dir/lib$name.la"; then
4602     found_la="$dir/lib$name.la"
4603     fi
4604     fi
4605     fi
4606     ;;
4607     esac
4608     if test "X$found_dir" != "X"; then
4609     break
4610     fi
4611     done
4612     fi
4613     if test "X$found_dir" != "X"; then
4614     LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name"
4615     if test "X$found_so" != "X"; then
4616     if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
4617     LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
4618     else
4619     haveit=
4620     for x in $ltrpathdirs; do
4621     if test "X$x" = "X$found_dir"; then
4622     haveit=yes
4623     break
4624     fi
4625     done
4626     if test -z "$haveit"; then
4627     ltrpathdirs="$ltrpathdirs $found_dir"
4628     fi
4629     if test "$hardcode_direct" = yes; then
4630     LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
4631     else
4632     if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
4633     LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
4634     haveit=
4635     for x in $rpathdirs; do
4636     if test "X$x" = "X$found_dir"; then
4637     haveit=yes
4638     break
4639     fi
4640     done
4641     if test -z "$haveit"; then
4642     rpathdirs="$rpathdirs $found_dir"
4643     fi
4644     else
4645     haveit=
4646     for x in $LDFLAGS $LIBINTL; do
4647    
4648     acl_save_prefix="$prefix"
4649     prefix="$acl_final_prefix"
4650     acl_save_exec_prefix="$exec_prefix"
4651     exec_prefix="$acl_final_exec_prefix"
4652     eval x=\"$x\"
4653     exec_prefix="$acl_save_exec_prefix"
4654     prefix="$acl_save_prefix"
4655    
4656     if test "X$x" = "X-L$found_dir"; then
4657     haveit=yes
4658     break
4659     fi
4660     done
4661     if test -z "$haveit"; then
4662     LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir"
4663     fi
4664     if test "$hardcode_minus_L" != no; then
4665     LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
4666     else
4667     LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
4668     fi
4669     fi
4670     fi
4671     fi
4672     else
4673     if test "X$found_a" != "X"; then
4674     LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a"
4675     else
4676     LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name"
4677     fi
4678     fi
4679     additional_includedir=
4680     case "$found_dir" in
4681     */lib | */lib/)
4682     basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
4683     additional_includedir="$basedir/include"
4684     ;;
4685     esac
4686     if test "X$additional_includedir" != "X"; then
4687     if test "X$additional_includedir" != "X/usr/include"; then
4688     haveit=
4689     if test "X$additional_includedir" = "X/usr/local/include"; then
4690     if test -n "$GCC"; then
4691     case $host_os in
4692     linux*) haveit=yes;;
4693     esac
4694     fi
4695     fi
4696     if test -z "$haveit"; then
4697     for x in $CPPFLAGS $INCINTL; do
4698    
4699     acl_save_prefix="$prefix"
4700     prefix="$acl_final_prefix"
4701     acl_save_exec_prefix="$exec_prefix"
4702     exec_prefix="$acl_final_exec_prefix"
4703     eval x=\"$x\"
4704     exec_prefix="$acl_save_exec_prefix"
4705     prefix="$acl_save_prefix"
4706    
4707     if test "X$x" = "X-I$additional_includedir"; then
4708     haveit=yes
4709     break
4710     fi
4711     done
4712     if test -z "$haveit"; then
4713     if test -d "$additional_includedir"; then
4714     INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir"
4715     fi
4716     fi
4717     fi
4718     fi
4719     fi
4720     if test -n "$found_la"; then
4721     save_libdir="$libdir"
4722     case "$found_la" in
4723     */* | *\\*) . "$found_la" ;;
4724     *) . "./$found_la" ;;
4725     esac
4726     libdir="$save_libdir"
4727     for dep in $dependency_libs; do
4728     case "$dep" in
4729     -L*)
4730     additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
4731     if test "X$additional_libdir" != "X/usr/lib"; then
4732     haveit=
4733     if test "X$additional_libdir" = "X/usr/local/lib"; then
4734     if test -n "$GCC"; then
4735     case $host_os in
4736     linux*) haveit=yes;;
4737     esac
4738     fi
4739     fi
4740     if test -z "$haveit"; then
4741     haveit=
4742     for x in $LDFLAGS $LIBINTL; do
4743    
4744     acl_save_prefix="$prefix"
4745     prefix="$acl_final_prefix"
4746     acl_save_exec_prefix="$exec_prefix"
4747     exec_prefix="$acl_final_exec_prefix"
4748     eval x=\"$x\"
4749     exec_prefix="$acl_save_exec_prefix"
4750     prefix="$acl_save_prefix"
4751    
4752     if test "X$x" = "X-L$additional_libdir"; then
4753     haveit=yes
4754     break
4755     fi
4756     done
4757     if test -z "$haveit"; then
4758     if test -d "$additional_libdir"; then
4759     LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir"
4760     fi
4761     fi
4762     haveit=
4763     for x in $LDFLAGS $LTLIBINTL; do
4764    
4765     acl_save_prefix="$prefix"
4766     prefix="$acl_final_prefix"
4767     acl_save_exec_prefix="$exec_prefix"
4768     exec_prefix="$acl_final_exec_prefix"
4769     eval x=\"$x\"
4770     exec_prefix="$acl_save_exec_prefix"
4771     prefix="$acl_save_prefix"
4772    
4773     if test "X$x" = "X-L$additional_libdir"; then
4774     haveit=yes
4775     break
4776     fi
4777     done
4778     if test -z "$haveit"; then
4779     if test -d "$additional_libdir"; then
4780     LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir"
4781     fi
4782     fi
4783     fi
4784     fi
4785     ;;
4786     -R*)
4787     dir=`echo "X$dep" | sed -e 's/^X-R//'`
4788     if test "$enable_rpath" != no; then
4789     haveit=
4790     for x in $rpathdirs; do
4791     if test "X$x" = "X$dir"; then
4792     haveit=yes
4793     break
4794     fi
4795     done
4796     if test -z "$haveit"; then
4797     rpathdirs="$rpathdirs $dir"
4798     fi
4799     haveit=
4800     for x in $ltrpathdirs; do
4801     if test "X$x" = "X$dir"; then
4802     haveit=yes
4803     break
4804     fi
4805     done
4806     if test -z "$haveit"; then
4807     ltrpathdirs="$ltrpathdirs $dir"
4808     fi
4809     fi
4810     ;;
4811     -l*)
4812     names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
4813     ;;
4814     *.la)
4815     names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
4816     ;;
4817     *)
4818     LIBINTL="${LIBINTL}${LIBINTL:+ }$dep"
4819     LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep"
4820     ;;
4821     esac
4822     done
4823     fi
4824     else
4825     LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
4826     LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name"
4827     fi
4828     fi
4829     fi
4830     done
4831     done
4832     if test "X$rpathdirs" != "X"; then
4833     if test -n "$hardcode_libdir_separator"; then
4834     alldirs=
4835     for found_dir in $rpathdirs; do
4836     alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
4837     done
4838     acl_save_libdir="$libdir"
4839     libdir="$alldirs"
4840     eval flag=\"$hardcode_libdir_flag_spec\"
4841     libdir="$acl_save_libdir"
4842     LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
4843     else
4844     for found_dir in $rpathdirs; do
4845     acl_save_libdir="$libdir"
4846     libdir="$found_dir"
4847     eval flag=\"$hardcode_libdir_flag_spec\"
4848     libdir="$acl_save_libdir"
4849     LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
4850     done
4851     fi
4852     fi
4853     if test "X$ltrpathdirs" != "X"; then
4854     for found_dir in $ltrpathdirs; do
4855     LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir"
4856     done
4857     fi
4858    
4859 pcg 1.33 { echo "$as_me:$LINENO: checking for GNU gettext in libintl" >&5
4860     echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6; }
4861 pcg 1.1 if test "${gt_cv_func_gnugettext1_libintl+set}" = set; then
4862     echo $ECHO_N "(cached) $ECHO_C" >&6
4863     else
4864     gt_save_CPPFLAGS="$CPPFLAGS"
4865     CPPFLAGS="$CPPFLAGS $INCINTL"
4866     gt_save_LIBS="$LIBS"
4867     LIBS="$LIBS $LIBINTL"
4868     cat >conftest.$ac_ext <<_ACEOF
4869     /* confdefs.h. */
4870     _ACEOF
4871     cat confdefs.h >>conftest.$ac_ext
4872     cat >>conftest.$ac_ext <<_ACEOF
4873     /* end confdefs.h. */
4874     #include <libintl.h>
4875     extern int _nl_msg_cat_cntr;
4876     extern
4877     #ifdef __cplusplus
4878     "C"
4879     #endif
4880     const char *_nl_expand_alias ();
4881     int
4882     main ()
4883     {
4884     bindtextdomain ("", "");
4885     return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
4886     ;
4887     return 0;
4888     }
4889     _ACEOF
4890     rm -f conftest.$ac_objext conftest$ac_exeext
4891 pcg 1.33 if { (ac_try="$ac_link"
4892     case "(($ac_try" in
4893     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4894     *) ac_try_echo=$ac_try;;
4895     esac
4896     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4897     (eval "$ac_link") 2>conftest.er1
4898 pcg 1.1 ac_status=$?
4899 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
4900     rm -f conftest.er1
4901     cat conftest.err >&5
4902 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4903 pcg 1.33 (exit $ac_status); } && {
4904     test -z "$ac_c_werror_flag" ||
4905     test ! -s conftest.err
4906     } && test -s conftest$ac_exeext &&
4907     $as_test_x conftest$ac_exeext; then
4908 pcg 1.1 gt_cv_func_gnugettext1_libintl=yes
4909     else
4910     echo "$as_me: failed program was:" >&5
4911     sed 's/^/| /' conftest.$ac_ext >&5
4912    
4913 pcg 1.33 gt_cv_func_gnugettext1_libintl=no
4914 pcg 1.1 fi
4915 pcg 1.33
4916     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4917 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
4918 pcg 1.1 if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then
4919     LIBS="$LIBS $LIBICONV"
4920     cat >conftest.$ac_ext <<_ACEOF
4921     /* confdefs.h. */
4922     _ACEOF
4923     cat confdefs.h >>conftest.$ac_ext
4924     cat >>conftest.$ac_ext <<_ACEOF
4925     /* end confdefs.h. */
4926     #include <libintl.h>
4927     extern int _nl_msg_cat_cntr;
4928     extern
4929     #ifdef __cplusplus
4930     "C"
4931     #endif
4932     const char *_nl_expand_alias ();
4933     int
4934     main ()
4935     {
4936     bindtextdomain ("", "");
4937     return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
4938     ;
4939     return 0;
4940     }
4941     _ACEOF
4942     rm -f conftest.$ac_objext conftest$ac_exeext
4943 pcg 1.33 if { (ac_try="$ac_link"
4944     case "(($ac_try" in
4945     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
4946     *) ac_try_echo=$ac_try;;
4947     esac
4948     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
4949     (eval "$ac_link") 2>conftest.er1
4950 pcg 1.1 ac_status=$?
4951 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
4952     rm -f conftest.er1
4953     cat conftest.err >&5
4954 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4955 pcg 1.33 (exit $ac_status); } && {
4956     test -z "$ac_c_werror_flag" ||
4957     test ! -s conftest.err
4958     } && test -s conftest$ac_exeext &&
4959     $as_test_x conftest$ac_exeext; then
4960 pcg 1.1 LIBINTL="$LIBINTL $LIBICONV"
4961     LTLIBINTL="$LTLIBINTL $LTLIBICONV"
4962     gt_cv_func_gnugettext1_libintl=yes
4963    
4964     else
4965     echo "$as_me: failed program was:" >&5
4966     sed 's/^/| /' conftest.$ac_ext >&5
4967    
4968 pcg 1.33
4969 pcg 1.1 fi
4970 pcg 1.33
4971     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
4972 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
4973 pcg 1.1 fi
4974     CPPFLAGS="$gt_save_CPPFLAGS"
4975     LIBS="$gt_save_LIBS"
4976     fi
4977 pcg 1.33 { echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libintl" >&5
4978     echo "${ECHO_T}$gt_cv_func_gnugettext1_libintl" >&6; }
4979 pcg 1.1 fi
4980    
4981     if test "$gt_cv_func_gnugettext1_libc" = "yes" \
4982     || { test "$gt_cv_func_gnugettext1_libintl" = "yes" \
4983     && test "$PACKAGE" != gettext; }; then
4984     gt_use_preinstalled_gnugettext=yes
4985     else
4986     LIBINTL=
4987     LTLIBINTL=
4988     INCINTL=
4989     fi
4990    
4991    
4992    
4993     if test "$gt_use_preinstalled_gnugettext" = "yes" \
4994     || test "$nls_cv_use_gnu_gettext" = "yes"; then
4995    
4996     cat >>confdefs.h <<\_ACEOF
4997     #define ENABLE_NLS 1
4998     _ACEOF
4999    
5000     else
5001     USE_NLS=no
5002     fi
5003     fi
5004    
5005     if test "$USE_NLS" = "yes"; then
5006    
5007     if test "$gt_use_preinstalled_gnugettext" = "yes"; then
5008     if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then
5009 pcg 1.33 { echo "$as_me:$LINENO: checking how to link with libintl" >&5
5010     echo $ECHO_N "checking how to link with libintl... $ECHO_C" >&6; }
5011     { echo "$as_me:$LINENO: result: $LIBINTL" >&5
5012     echo "${ECHO_T}$LIBINTL" >&6; }
5013 pcg 1.1
5014     for element in $INCINTL; do
5015     haveit=
5016     for x in $CPPFLAGS; do
5017    
5018     acl_save_prefix="$prefix"
5019     prefix="$acl_final_prefix"
5020     acl_save_exec_prefix="$exec_prefix"
5021     exec_prefix="$acl_final_exec_prefix"
5022     eval x=\"$x\"
5023     exec_prefix="$acl_save_exec_prefix"
5024     prefix="$acl_save_prefix"
5025    
5026     if test "X$x" = "X$element"; then
5027     haveit=yes
5028     break
5029     fi
5030     done
5031     if test -z "$haveit"; then
5032     CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
5033     fi
5034     done
5035    
5036     fi
5037    
5038    
5039     cat >>confdefs.h <<\_ACEOF
5040     #define HAVE_GETTEXT 1
5041     _ACEOF
5042    
5043    
5044     cat >>confdefs.h <<\_ACEOF
5045     #define HAVE_DCGETTEXT 1
5046     _ACEOF
5047    
5048     fi
5049    
5050     POSUB=po
5051     fi
5052    
5053    
5054    
5055     INTLLIBS="$LIBINTL"
5056    
5057    
5058    
5059    
5060    
5061    
5062    
5063    
5064     # Enable GNU extensions.
5065     # Define this here, not in acconfig's @TOP@ section, since definitions
5066     # in the latter don't make it into the configure-time tests.
5067    
5068     cat >>confdefs.h <<\_ACEOF
5069     #define _GNU_SOURCE 1
5070     _ACEOF
5071    
5072    
5073 pcg 1.13 # do NOT define POSIX_SOURCE, sicne this clashes with many BSDs
5074 pcg 1.1
5075     ALL_LINGUAS=""
5076    
5077     ac_ext=c
5078     ac_cpp='$CPP $CPPFLAGS'
5079     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5080     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5081     ac_compiler_gnu=$ac_cv_c_compiler_gnu
5082     if test -n "$ac_tool_prefix"; then
5083     # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
5084     set dummy ${ac_tool_prefix}gcc; ac_word=$2
5085 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5086     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5087 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
5088     echo $ECHO_N "(cached) $ECHO_C" >&6
5089     else
5090     if test -n "$CC"; then
5091     ac_cv_prog_CC="$CC" # Let the user override the test.
5092     else
5093     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5094     for as_dir in $PATH
5095     do
5096     IFS=$as_save_IFS
5097     test -z "$as_dir" && as_dir=.
5098     for ac_exec_ext in '' $ac_executable_extensions; do
5099 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5100 pcg 1.1 ac_cv_prog_CC="${ac_tool_prefix}gcc"
5101     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5102     break 2
5103     fi
5104     done
5105     done
5106 pcg 1.33 IFS=$as_save_IFS
5107 pcg 1.1
5108     fi
5109     fi
5110     CC=$ac_cv_prog_CC
5111     if test -n "$CC"; then
5112 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
5113     echo "${ECHO_T}$CC" >&6; }
5114 pcg 1.1 else
5115 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
5116     echo "${ECHO_T}no" >&6; }
5117 pcg 1.1 fi
5118    
5119 pcg 1.33
5120 pcg 1.1 fi
5121     if test -z "$ac_cv_prog_CC"; then
5122     ac_ct_CC=$CC
5123     # Extract the first word of "gcc", so it can be a program name with args.
5124     set dummy gcc; ac_word=$2
5125 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5126     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5127 pcg 1.1 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
5128     echo $ECHO_N "(cached) $ECHO_C" >&6
5129     else
5130     if test -n "$ac_ct_CC"; then
5131     ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
5132     else
5133     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5134     for as_dir in $PATH
5135     do
5136     IFS=$as_save_IFS
5137     test -z "$as_dir" && as_dir=.
5138     for ac_exec_ext in '' $ac_executable_extensions; do
5139 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5140 pcg 1.1 ac_cv_prog_ac_ct_CC="gcc"
5141     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5142     break 2
5143     fi
5144     done
5145     done
5146 pcg 1.33 IFS=$as_save_IFS
5147 pcg 1.1
5148     fi
5149     fi
5150     ac_ct_CC=$ac_cv_prog_ac_ct_CC
5151     if test -n "$ac_ct_CC"; then
5152 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
5153     echo "${ECHO_T}$ac_ct_CC" >&6; }
5154 pcg 1.1 else
5155 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
5156     echo "${ECHO_T}no" >&6; }
5157 pcg 1.1 fi
5158    
5159 pcg 1.33 if test "x$ac_ct_CC" = x; then
5160     CC=""
5161     else
5162     case $cross_compiling:$ac_tool_warned in
5163     yes:)
5164     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5165     whose name does not start with the host triplet. If you think this
5166     configuration is useful to you, please write to autoconf@gnu.org." >&5
5167     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5168     whose name does not start with the host triplet. If you think this
5169     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5170     ac_tool_warned=yes ;;
5171     esac
5172     CC=$ac_ct_CC
5173     fi
5174 pcg 1.1 else
5175     CC="$ac_cv_prog_CC"
5176     fi
5177    
5178     if test -z "$CC"; then
5179 pcg 1.33 if test -n "$ac_tool_prefix"; then
5180     # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
5181 pcg 1.1 set dummy ${ac_tool_prefix}cc; ac_word=$2
5182 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5183     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5184 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
5185     echo $ECHO_N "(cached) $ECHO_C" >&6
5186     else
5187     if test -n "$CC"; then
5188     ac_cv_prog_CC="$CC" # Let the user override the test.
5189     else
5190     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5191     for as_dir in $PATH
5192     do
5193     IFS=$as_save_IFS
5194     test -z "$as_dir" && as_dir=.
5195     for ac_exec_ext in '' $ac_executable_extensions; do
5196 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5197 pcg 1.1 ac_cv_prog_CC="${ac_tool_prefix}cc"
5198     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5199     break 2
5200     fi
5201     done
5202     done
5203 pcg 1.33 IFS=$as_save_IFS
5204 pcg 1.1
5205     fi
5206     fi
5207     CC=$ac_cv_prog_CC
5208     if test -n "$CC"; then
5209 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
5210     echo "${ECHO_T}$CC" >&6; }
5211 pcg 1.1 else
5212 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
5213     echo "${ECHO_T}no" >&6; }
5214 pcg 1.1 fi
5215    
5216 pcg 1.33
5217 pcg 1.1 fi
5218     fi
5219     if test -z "$CC"; then
5220     # Extract the first word of "cc", so it can be a program name with args.
5221     set dummy cc; ac_word=$2
5222 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5223     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5224 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
5225     echo $ECHO_N "(cached) $ECHO_C" >&6
5226     else
5227     if test -n "$CC"; then
5228     ac_cv_prog_CC="$CC" # Let the user override the test.
5229     else
5230     ac_prog_rejected=no
5231     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5232     for as_dir in $PATH
5233     do
5234     IFS=$as_save_IFS
5235     test -z "$as_dir" && as_dir=.
5236     for ac_exec_ext in '' $ac_executable_extensions; do
5237 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5238 pcg 1.1 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
5239     ac_prog_rejected=yes
5240     continue
5241     fi
5242     ac_cv_prog_CC="cc"
5243     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5244     break 2
5245     fi
5246     done
5247     done
5248 pcg 1.33 IFS=$as_save_IFS
5249 pcg 1.1
5250     if test $ac_prog_rejected = yes; then
5251     # We found a bogon in the path, so make sure we never use it.
5252     set dummy $ac_cv_prog_CC
5253     shift
5254     if test $# != 0; then
5255     # We chose a different compiler from the bogus one.
5256     # However, it has the same basename, so the bogon will be chosen
5257     # first if we set CC to just the basename; use the full file name.
5258     shift
5259     ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
5260     fi
5261     fi
5262     fi
5263     fi
5264     CC=$ac_cv_prog_CC
5265     if test -n "$CC"; then
5266 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
5267     echo "${ECHO_T}$CC" >&6; }
5268 pcg 1.1 else
5269 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
5270     echo "${ECHO_T}no" >&6; }
5271 pcg 1.1 fi
5272    
5273 pcg 1.33
5274 pcg 1.1 fi
5275     if test -z "$CC"; then
5276     if test -n "$ac_tool_prefix"; then
5277 pcg 1.33 for ac_prog in cl.exe
5278 pcg 1.1 do
5279     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
5280     set dummy $ac_tool_prefix$ac_prog; ac_word=$2
5281 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5282     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5283 pcg 1.1 if test "${ac_cv_prog_CC+set}" = set; then
5284     echo $ECHO_N "(cached) $ECHO_C" >&6
5285     else
5286     if test -n "$CC"; then
5287     ac_cv_prog_CC="$CC" # Let the user override the test.
5288     else
5289     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5290     for as_dir in $PATH
5291     do
5292     IFS=$as_save_IFS
5293     test -z "$as_dir" && as_dir=.
5294     for ac_exec_ext in '' $ac_executable_extensions; do
5295 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5296 pcg 1.1 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
5297     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5298     break 2
5299     fi
5300     done
5301     done
5302 pcg 1.33 IFS=$as_save_IFS
5303 pcg 1.1
5304     fi
5305     fi
5306     CC=$ac_cv_prog_CC
5307     if test -n "$CC"; then
5308 pcg 1.33 { echo "$as_me:$LINENO: result: $CC" >&5
5309     echo "${ECHO_T}$CC" >&6; }
5310 pcg 1.1 else
5311 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
5312     echo "${ECHO_T}no" >&6; }
5313 pcg 1.1 fi
5314    
5315 pcg 1.33
5316 pcg 1.1 test -n "$CC" && break
5317     done
5318     fi
5319     if test -z "$CC"; then
5320     ac_ct_CC=$CC
5321 pcg 1.33 for ac_prog in cl.exe
5322 pcg 1.1 do
5323     # Extract the first word of "$ac_prog", so it can be a program name with args.
5324     set dummy $ac_prog; ac_word=$2
5325 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
5326     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
5327 pcg 1.1 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
5328     echo $ECHO_N "(cached) $ECHO_C" >&6
5329     else
5330     if test -n "$ac_ct_CC"; then
5331     ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
5332     else
5333     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5334     for as_dir in $PATH
5335     do
5336     IFS=$as_save_IFS
5337     test -z "$as_dir" && as_dir=.
5338     for ac_exec_ext in '' $ac_executable_extensions; do
5339 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
5340 pcg 1.1 ac_cv_prog_ac_ct_CC="$ac_prog"
5341     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5342     break 2
5343     fi
5344     done
5345     done
5346 pcg 1.33 IFS=$as_save_IFS
5347 pcg 1.1
5348     fi
5349     fi
5350     ac_ct_CC=$ac_cv_prog_ac_ct_CC
5351     if test -n "$ac_ct_CC"; then
5352 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
5353     echo "${ECHO_T}$ac_ct_CC" >&6; }
5354 pcg 1.1 else
5355 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
5356     echo "${ECHO_T}no" >&6; }
5357 pcg 1.1 fi
5358    
5359 pcg 1.33
5360 pcg 1.1 test -n "$ac_ct_CC" && break
5361     done
5362    
5363 pcg 1.33 if test "x$ac_ct_CC" = x; then
5364     CC=""
5365     else
5366     case $cross_compiling:$ac_tool_warned in
5367     yes:)
5368     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
5369     whose name does not start with the host triplet. If you think this
5370     configuration is useful to you, please write to autoconf@gnu.org." >&5
5371     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
5372     whose name does not start with the host triplet. If you think this
5373     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
5374     ac_tool_warned=yes ;;
5375     esac
5376     CC=$ac_ct_CC
5377     fi
5378 pcg 1.1 fi
5379    
5380     fi
5381    
5382    
5383     test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
5384     See \`config.log' for more details." >&5
5385     echo "$as_me: error: no acceptable C compiler found in \$PATH
5386     See \`config.log' for more details." >&2;}
5387     { (exit 1); exit 1; }; }
5388    
5389     # Provide some information about the compiler.
5390 pcg 1.33 echo "$as_me:$LINENO: checking for C compiler version" >&5
5391 pcg 1.1 ac_compiler=`set X $ac_compile; echo $2`
5392 pcg 1.33 { (ac_try="$ac_compiler --version >&5"
5393     case "(($ac_try" in
5394     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5395     *) ac_try_echo=$ac_try;;
5396     esac
5397     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5398     (eval "$ac_compiler --version >&5") 2>&5
5399 pcg 1.1 ac_status=$?
5400     echo "$as_me:$LINENO: \$? = $ac_status" >&5
5401     (exit $ac_status); }
5402 pcg 1.33 { (ac_try="$ac_compiler -v >&5"
5403     case "(($ac_try" in
5404     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5405     *) ac_try_echo=$ac_try;;
5406     esac
5407     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5408     (eval "$ac_compiler -v >&5") 2>&5
5409 pcg 1.1 ac_status=$?
5410     echo "$as_me:$LINENO: \$? = $ac_status" >&5
5411     (exit $ac_status); }
5412 pcg 1.33 { (ac_try="$ac_compiler -V >&5"
5413     case "(($ac_try" in
5414     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5415     *) ac_try_echo=$ac_try;;
5416     esac
5417     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5418     (eval "$ac_compiler -V >&5") 2>&5
5419 pcg 1.1 ac_status=$?
5420     echo "$as_me:$LINENO: \$? = $ac_status" >&5
5421     (exit $ac_status); }
5422    
5423 pcg 1.33 { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
5424     echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
5425 pcg 1.1 if test "${ac_cv_c_compiler_gnu+set}" = set; then
5426     echo $ECHO_N "(cached) $ECHO_C" >&6
5427     else
5428     cat >conftest.$ac_ext <<_ACEOF
5429     /* confdefs.h. */
5430     _ACEOF
5431     cat confdefs.h >>conftest.$ac_ext
5432     cat >>conftest.$ac_ext <<_ACEOF
5433     /* end confdefs.h. */
5434    
5435     int
5436     main ()
5437     {
5438     #ifndef __GNUC__
5439     choke me
5440     #endif
5441    
5442     ;
5443     return 0;
5444     }
5445     _ACEOF
5446     rm -f conftest.$ac_objext
5447 pcg 1.33 if { (ac_try="$ac_compile"
5448     case "(($ac_try" in
5449     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5450     *) ac_try_echo=$ac_try;;
5451     esac
5452     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5453     (eval "$ac_compile") 2>conftest.er1
5454 pcg 1.1 ac_status=$?
5455 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
5456     rm -f conftest.er1
5457     cat conftest.err >&5
5458 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5459 pcg 1.33 (exit $ac_status); } && {
5460     test -z "$ac_c_werror_flag" ||
5461     test ! -s conftest.err
5462     } && test -s conftest.$ac_objext; then
5463 pcg 1.1 ac_compiler_gnu=yes
5464     else
5465     echo "$as_me: failed program was:" >&5
5466     sed 's/^/| /' conftest.$ac_ext >&5
5467    
5468 pcg 1.33 ac_compiler_gnu=no
5469 pcg 1.1 fi
5470 pcg 1.33
5471     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5472 pcg 1.1 ac_cv_c_compiler_gnu=$ac_compiler_gnu
5473    
5474     fi
5475 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
5476     echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
5477 pcg 1.1 GCC=`test $ac_compiler_gnu = yes && echo yes`
5478     ac_test_CFLAGS=${CFLAGS+set}
5479     ac_save_CFLAGS=$CFLAGS
5480 pcg 1.33 { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
5481     echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
5482 pcg 1.1 if test "${ac_cv_prog_cc_g+set}" = set; then
5483     echo $ECHO_N "(cached) $ECHO_C" >&6
5484     else
5485 pcg 1.33 ac_save_c_werror_flag=$ac_c_werror_flag
5486     ac_c_werror_flag=yes
5487     ac_cv_prog_cc_g=no
5488     CFLAGS="-g"
5489     cat >conftest.$ac_ext <<_ACEOF
5490 pcg 1.1 /* confdefs.h. */
5491     _ACEOF
5492     cat confdefs.h >>conftest.$ac_ext
5493     cat >>conftest.$ac_ext <<_ACEOF
5494     /* end confdefs.h. */
5495    
5496     int
5497     main ()
5498     {
5499    
5500     ;
5501     return 0;
5502     }
5503     _ACEOF
5504     rm -f conftest.$ac_objext
5505 pcg 1.33 if { (ac_try="$ac_compile"
5506     case "(($ac_try" in
5507     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5508     *) ac_try_echo=$ac_try;;
5509     esac
5510     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5511     (eval "$ac_compile") 2>conftest.er1
5512 pcg 1.1 ac_status=$?
5513 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
5514     rm -f conftest.er1
5515     cat conftest.err >&5
5516 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5517 pcg 1.33 (exit $ac_status); } && {
5518     test -z "$ac_c_werror_flag" ||
5519     test ! -s conftest.err
5520     } && test -s conftest.$ac_objext; then
5521 pcg 1.1 ac_cv_prog_cc_g=yes
5522     else
5523     echo "$as_me: failed program was:" >&5
5524     sed 's/^/| /' conftest.$ac_ext >&5
5525    
5526 pcg 1.33 CFLAGS=""
5527     cat >conftest.$ac_ext <<_ACEOF
5528 pcg 1.1 /* confdefs.h. */
5529     _ACEOF
5530     cat confdefs.h >>conftest.$ac_ext
5531     cat >>conftest.$ac_ext <<_ACEOF
5532     /* end confdefs.h. */
5533 pcg 1.33
5534     int
5535     main ()
5536 pcg 1.1 {
5537 pcg 1.33
5538     ;
5539     return 0;
5540 pcg 1.1 }
5541 pcg 1.33 _ACEOF
5542     rm -f conftest.$ac_objext
5543     if { (ac_try="$ac_compile"
5544     case "(($ac_try" in
5545     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5546     *) ac_try_echo=$ac_try;;
5547     esac
5548     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5549     (eval "$ac_compile") 2>conftest.er1
5550 pcg 1.1 ac_status=$?
5551 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
5552     rm -f conftest.er1
5553     cat conftest.err >&5
5554 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5555 pcg 1.33 (exit $ac_status); } && {
5556     test -z "$ac_c_werror_flag" ||
5557     test ! -s conftest.err
5558     } && test -s conftest.$ac_objext; then
5559     :
5560 pcg 1.1 else
5561     echo "$as_me: failed program was:" >&5
5562     sed 's/^/| /' conftest.$ac_ext >&5
5563    
5564 pcg 1.33 ac_c_werror_flag=$ac_save_c_werror_flag
5565     CFLAGS="-g"
5566     cat >conftest.$ac_ext <<_ACEOF
5567 pcg 1.1 /* confdefs.h. */
5568     _ACEOF
5569     cat confdefs.h >>conftest.$ac_ext
5570     cat >>conftest.$ac_ext <<_ACEOF
5571     /* end confdefs.h. */
5572 pcg 1.33
5573 pcg 1.1 int
5574     main ()
5575     {
5576 pcg 1.33
5577 pcg 1.1 ;
5578     return 0;
5579     }
5580     _ACEOF
5581     rm -f conftest.$ac_objext
5582 pcg 1.33 if { (ac_try="$ac_compile"
5583     case "(($ac_try" in
5584     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5585     *) ac_try_echo=$ac_try;;
5586     esac
5587     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5588     (eval "$ac_compile") 2>conftest.er1
5589 pcg 1.1 ac_status=$?
5590 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
5591     rm -f conftest.er1
5592     cat conftest.err >&5
5593 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5594 pcg 1.33 (exit $ac_status); } && {
5595     test -z "$ac_c_werror_flag" ||
5596     test ! -s conftest.err
5597     } && test -s conftest.$ac_objext; then
5598     ac_cv_prog_cc_g=yes
5599 pcg 1.1 else
5600     echo "$as_me: failed program was:" >&5
5601     sed 's/^/| /' conftest.$ac_ext >&5
5602    
5603 pcg 1.33
5604     fi
5605    
5606     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5607     fi
5608    
5609     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5610     fi
5611    
5612     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5613     ac_c_werror_flag=$ac_save_c_werror_flag
5614     fi
5615     { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
5616     echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
5617     if test "$ac_test_CFLAGS" = set; then
5618     CFLAGS=$ac_save_CFLAGS
5619     elif test $ac_cv_prog_cc_g = yes; then
5620     if test "$GCC" = yes; then
5621     CFLAGS="-g -O2"
5622     else
5623     CFLAGS="-g"
5624     fi
5625     else
5626     if test "$GCC" = yes; then
5627     CFLAGS="-O2"
5628     else
5629     CFLAGS=
5630     fi
5631 pcg 1.1 fi
5632 pcg 1.33 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
5633     echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
5634     if test "${ac_cv_prog_cc_c89+set}" = set; then
5635     echo $ECHO_N "(cached) $ECHO_C" >&6
5636     else
5637     ac_cv_prog_cc_c89=no
5638     ac_save_CC=$CC
5639     cat >conftest.$ac_ext <<_ACEOF
5640 pcg 1.1 /* confdefs.h. */
5641     _ACEOF
5642     cat confdefs.h >>conftest.$ac_ext
5643     cat >>conftest.$ac_ext <<_ACEOF
5644     /* end confdefs.h. */
5645 pcg 1.33 #include <stdarg.h>
5646     #include <stdio.h>
5647     #include <sys/types.h>
5648     #include <sys/stat.h>
5649     /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
5650     struct buf { int x; };
5651     FILE * (*rcsopen) (struct buf *, struct stat *, int);
5652     static char *e (p, i)
5653     char **p;
5654     int i;
5655     {
5656     return p[i];
5657     }
5658     static char *f (char * (*g) (char **, int), char **p, ...)
5659     {
5660     char *s;
5661     va_list v;
5662     va_start (v,p);
5663     s = g (p, va_arg (v,int));
5664     va_end (v);
5665     return s;
5666     }
5667    
5668     /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
5669     function prototypes and stuff, but not '\xHH' hex character constants.
5670     These don't provoke an error unfortunately, instead are silently treated
5671     as 'x'. The following induces an error, until -std is added to get
5672     proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
5673     array size at least. It's necessary to write '\x00'==0 to get something
5674     that's true only with -std. */
5675     int osf4_cc_array ['\x00' == 0 ? 1 : -1];
5676    
5677     /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
5678     inside strings and character constants. */
5679     #define FOO(x) 'x'
5680     int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
5681    
5682     int test (int i, double x);
5683     struct s1 {int (*f) (int a);};
5684     struct s2 {int (*f) (double a);};
5685     int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
5686     int argc;
5687     char **argv;
5688 pcg 1.1 int
5689     main ()
5690     {
5691 pcg 1.33 return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
5692 pcg 1.1 ;
5693     return 0;
5694     }
5695     _ACEOF
5696 pcg 1.33 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
5697     -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
5698     do
5699     CC="$ac_save_CC $ac_arg"
5700     rm -f conftest.$ac_objext
5701     if { (ac_try="$ac_compile"
5702     case "(($ac_try" in
5703     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5704     *) ac_try_echo=$ac_try;;
5705     esac
5706     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5707     (eval "$ac_compile") 2>conftest.er1
5708 pcg 1.1 ac_status=$?
5709 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
5710     rm -f conftest.er1
5711     cat conftest.err >&5
5712 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5713 pcg 1.33 (exit $ac_status); } && {
5714     test -z "$ac_c_werror_flag" ||
5715     test ! -s conftest.err
5716     } && test -s conftest.$ac_objext; then
5717     ac_cv_prog_cc_c89=$ac_arg
5718 pcg 1.1 else
5719     echo "$as_me: failed program was:" >&5
5720     sed 's/^/| /' conftest.$ac_ext >&5
5721    
5722 pcg 1.33
5723 pcg 1.1 fi
5724 pcg 1.33
5725     rm -f core conftest.err conftest.$ac_objext
5726     test "x$ac_cv_prog_cc_c89" != "xno" && break
5727 pcg 1.1 done
5728 pcg 1.33 rm -f conftest.$ac_ext
5729     CC=$ac_save_CC
5730    
5731 pcg 1.1 fi
5732 pcg 1.33 # AC_CACHE_VAL
5733     case "x$ac_cv_prog_cc_c89" in
5734     x)
5735     { echo "$as_me:$LINENO: result: none needed" >&5
5736     echo "${ECHO_T}none needed" >&6; } ;;
5737     xno)
5738     { echo "$as_me:$LINENO: result: unsupported" >&5
5739     echo "${ECHO_T}unsupported" >&6; } ;;
5740     *)
5741     CC="$CC $ac_cv_prog_cc_c89"
5742     { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
5743     echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
5744     esac
5745 pcg 1.1
5746    
5747     ac_ext=c
5748     ac_cpp='$CPP $CPPFLAGS'
5749     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5750     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5751     ac_compiler_gnu=$ac_cv_c_compiler_gnu
5752    
5753     depcc="$CC" am_compiler_list=
5754    
5755 pcg 1.33 { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
5756     echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
5757 pcg 1.1 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
5758     echo $ECHO_N "(cached) $ECHO_C" >&6
5759     else
5760     if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
5761     # We make a subdir and do the tests there. Otherwise we can end up
5762     # making bogus files that we don't know about and never remove. For
5763     # instance it was reported that on HP-UX the gcc test will end up
5764     # making a dummy file named `D' -- because `-MD' means `put the output
5765     # in D'.
5766     mkdir conftest.dir
5767     # Copy depcomp to subdir because otherwise we won't find it if we're
5768     # using a relative directory.
5769     cp "$am_depcomp" conftest.dir
5770     cd conftest.dir
5771     # We will build objects and dependencies in a subdirectory because
5772     # it helps to detect inapplicable dependency modes. For instance
5773     # both Tru64's cc and ICC support -MD to output dependencies as a
5774     # side effect of compilation, but ICC will put the dependencies in
5775     # the current directory while Tru64 will put them in the object
5776     # directory.
5777     mkdir sub
5778    
5779     am_cv_CC_dependencies_compiler_type=none
5780     if test "$am_compiler_list" = ""; then
5781     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
5782     fi
5783     for depmode in $am_compiler_list; do
5784     # Setup a source with many dependencies, because some compilers
5785     # like to wrap large dependency lists on column 80 (with \), and
5786     # we should not choose a depcomp mode which is confused by this.
5787     #
5788     # We need to recreate these files for each test, as the compiler may
5789     # overwrite some of them when testing with obscure command lines.
5790     # This happens at least with the AIX C compiler.
5791     : > sub/conftest.c
5792     for i in 1 2 3 4 5 6; do
5793     echo '#include "conftst'$i'.h"' >> sub/conftest.c
5794 pcg 1.33 : > sub/conftst$i.h
5795 pcg 1.1 done
5796     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
5797    
5798     case $depmode in
5799     nosideeffect)
5800     # after this tag, mechanisms are not by side-effect, so they'll
5801     # only be used when explicitly requested
5802     if test "x$enable_dependency_tracking" = xyes; then
5803     continue
5804     else
5805     break
5806     fi
5807     ;;
5808     none) break ;;
5809     esac
5810     # We check with `-c' and `-o' for the sake of the "dashmstdout"
5811     # mode. It turns out that the SunPro C++ compiler does not properly
5812     # handle `-M -o', and we need to detect this.
5813     if depmode=$depmode \
5814     source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
5815     depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
5816     $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
5817     >/dev/null 2>conftest.err &&
5818     grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
5819     grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
5820     ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
5821     # icc doesn't choke on unknown options, it will just issue warnings
5822 pcg 1.33 # (even with -Werror). So we grep stderr for any message
5823     # that says an option was ignored.
5824     if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
5825 pcg 1.1 am_cv_CC_dependencies_compiler_type=$depmode
5826     break
5827     fi
5828     fi
5829     done
5830    
5831     cd ..
5832     rm -rf conftest.dir
5833     else
5834     am_cv_CC_dependencies_compiler_type=none
5835     fi
5836    
5837     fi
5838 pcg 1.33 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
5839     echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
5840 pcg 1.1 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
5841    
5842    
5843    
5844     if
5845     test "x$enable_dependency_tracking" != xno \
5846     && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
5847     am__fastdepCC_TRUE=
5848     am__fastdepCC_FALSE='#'
5849     else
5850     am__fastdepCC_TRUE='#'
5851     am__fastdepCC_FALSE=
5852     fi
5853    
5854    
5855     ac_ext=c
5856     ac_cpp='$CPP $CPPFLAGS'
5857     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5858     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5859     ac_compiler_gnu=$ac_cv_c_compiler_gnu
5860 pcg 1.33 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
5861     echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
5862 pcg 1.1 # On Suns, sometimes $CPP names a directory.
5863     if test -n "$CPP" && test -d "$CPP"; then
5864     CPP=
5865     fi
5866     if test -z "$CPP"; then
5867     if test "${ac_cv_prog_CPP+set}" = set; then
5868     echo $ECHO_N "(cached) $ECHO_C" >&6
5869     else
5870     # Double quotes because CPP needs to be expanded
5871     for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
5872     do
5873     ac_preproc_ok=false
5874     for ac_c_preproc_warn_flag in '' yes
5875     do
5876     # Use a header file that comes with gcc, so configuring glibc
5877     # with a fresh cross-compiler works.
5878     # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5879     # <limits.h> exists even on freestanding compilers.
5880     # On the NeXT, cc -E runs the code through the compiler's parser,
5881     # not just through cpp. "Syntax error" is here to catch this case.
5882     cat >conftest.$ac_ext <<_ACEOF
5883     /* confdefs.h. */
5884     _ACEOF
5885     cat confdefs.h >>conftest.$ac_ext
5886     cat >>conftest.$ac_ext <<_ACEOF
5887     /* end confdefs.h. */
5888     #ifdef __STDC__
5889     # include <limits.h>
5890     #else
5891     # include <assert.h>
5892     #endif
5893 pcg 1.11 Syntax error
5894 pcg 1.1 _ACEOF
5895 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
5896     case "(($ac_try" in
5897     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5898     *) ac_try_echo=$ac_try;;
5899     esac
5900     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5901     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
5902 pcg 1.1 ac_status=$?
5903     grep -v '^ *+' conftest.er1 >conftest.err
5904     rm -f conftest.er1
5905     cat conftest.err >&5
5906     echo "$as_me:$LINENO: \$? = $ac_status" >&5
5907 pcg 1.33 (exit $ac_status); } >/dev/null && {
5908     test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
5909     test ! -s conftest.err
5910     }; then
5911 pcg 1.1 :
5912     else
5913     echo "$as_me: failed program was:" >&5
5914     sed 's/^/| /' conftest.$ac_ext >&5
5915    
5916     # Broken: fails on valid input.
5917     continue
5918     fi
5919 pcg 1.33
5920 pcg 1.1 rm -f conftest.err conftest.$ac_ext
5921    
5922 pcg 1.33 # OK, works on sane cases. Now check whether nonexistent headers
5923 pcg 1.1 # can be detected and how.
5924     cat >conftest.$ac_ext <<_ACEOF
5925     /* confdefs.h. */
5926     _ACEOF
5927     cat confdefs.h >>conftest.$ac_ext
5928     cat >>conftest.$ac_ext <<_ACEOF
5929     /* end confdefs.h. */
5930     #include <ac_nonexistent.h>
5931     _ACEOF
5932 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
5933     case "(($ac_try" in
5934     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
5935     *) ac_try_echo=$ac_try;;
5936     esac
5937     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
5938     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
5939 pcg 1.1 ac_status=$?
5940     grep -v '^ *+' conftest.er1 >conftest.err
5941     rm -f conftest.er1
5942     cat conftest.err >&5
5943     echo "$as_me:$LINENO: \$? = $ac_status" >&5
5944 pcg 1.33 (exit $ac_status); } >/dev/null && {
5945     test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
5946     test ! -s conftest.err
5947     }; then
5948 pcg 1.1 # Broken: success on invalid input.
5949     continue
5950     else
5951     echo "$as_me: failed program was:" >&5
5952     sed 's/^/| /' conftest.$ac_ext >&5
5953    
5954     # Passes both tests.
5955     ac_preproc_ok=:
5956     break
5957     fi
5958 pcg 1.33
5959 pcg 1.1 rm -f conftest.err conftest.$ac_ext
5960    
5961     done
5962     # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5963     rm -f conftest.err conftest.$ac_ext
5964     if $ac_preproc_ok; then
5965     break
5966     fi
5967    
5968     done
5969     ac_cv_prog_CPP=$CPP
5970    
5971     fi
5972     CPP=$ac_cv_prog_CPP
5973     else
5974     ac_cv_prog_CPP=$CPP
5975     fi
5976 pcg 1.33 { echo "$as_me:$LINENO: result: $CPP" >&5
5977     echo "${ECHO_T}$CPP" >&6; }
5978 pcg 1.1 ac_preproc_ok=false
5979     for ac_c_preproc_warn_flag in '' yes
5980     do
5981     # Use a header file that comes with gcc, so configuring glibc
5982     # with a fresh cross-compiler works.
5983     # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5984     # <limits.h> exists even on freestanding compilers.
5985     # On the NeXT, cc -E runs the code through the compiler's parser,
5986     # not just through cpp. "Syntax error" is here to catch this case.
5987     cat >conftest.$ac_ext <<_ACEOF
5988     /* confdefs.h. */
5989     _ACEOF
5990     cat confdefs.h >>conftest.$ac_ext
5991     cat >>conftest.$ac_ext <<_ACEOF
5992     /* end confdefs.h. */
5993     #ifdef __STDC__
5994     # include <limits.h>
5995     #else
5996     # include <assert.h>
5997     #endif
5998 pcg 1.11 Syntax error
5999 pcg 1.1 _ACEOF
6000 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
6001     case "(($ac_try" in
6002     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6003     *) ac_try_echo=$ac_try;;
6004     esac
6005     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6006     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
6007 pcg 1.1 ac_status=$?
6008     grep -v '^ *+' conftest.er1 >conftest.err
6009     rm -f conftest.er1
6010     cat conftest.err >&5
6011     echo "$as_me:$LINENO: \$? = $ac_status" >&5
6012 pcg 1.33 (exit $ac_status); } >/dev/null && {
6013     test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
6014     test ! -s conftest.err
6015     }; then
6016 pcg 1.1 :
6017     else
6018     echo "$as_me: failed program was:" >&5
6019     sed 's/^/| /' conftest.$ac_ext >&5
6020    
6021     # Broken: fails on valid input.
6022     continue
6023     fi
6024 pcg 1.33
6025 pcg 1.1 rm -f conftest.err conftest.$ac_ext
6026    
6027 pcg 1.33 # OK, works on sane cases. Now check whether nonexistent headers
6028 pcg 1.1 # can be detected and how.
6029     cat >conftest.$ac_ext <<_ACEOF
6030     /* confdefs.h. */
6031     _ACEOF
6032     cat confdefs.h >>conftest.$ac_ext
6033     cat >>conftest.$ac_ext <<_ACEOF
6034     /* end confdefs.h. */
6035     #include <ac_nonexistent.h>
6036     _ACEOF
6037 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
6038     case "(($ac_try" in
6039     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6040     *) ac_try_echo=$ac_try;;
6041     esac
6042     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6043     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
6044 pcg 1.1 ac_status=$?
6045     grep -v '^ *+' conftest.er1 >conftest.err
6046     rm -f conftest.er1
6047     cat conftest.err >&5
6048     echo "$as_me:$LINENO: \$? = $ac_status" >&5
6049 pcg 1.33 (exit $ac_status); } >/dev/null && {
6050     test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
6051     test ! -s conftest.err
6052     }; then
6053 pcg 1.1 # Broken: success on invalid input.
6054     continue
6055     else
6056     echo "$as_me: failed program was:" >&5
6057     sed 's/^/| /' conftest.$ac_ext >&5
6058    
6059     # Passes both tests.
6060     ac_preproc_ok=:
6061     break
6062     fi
6063 pcg 1.33
6064 pcg 1.1 rm -f conftest.err conftest.$ac_ext
6065    
6066     done
6067     # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
6068     rm -f conftest.err conftest.$ac_ext
6069     if $ac_preproc_ok; then
6070     :
6071     else
6072     { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
6073     See \`config.log' for more details." >&5
6074     echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
6075     See \`config.log' for more details." >&2;}
6076     { (exit 1); exit 1; }; }
6077     fi
6078    
6079     ac_ext=c
6080     ac_cpp='$CPP $CPPFLAGS'
6081     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
6082     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
6083     ac_compiler_gnu=$ac_cv_c_compiler_gnu
6084    
6085 pcg 1.33 ac_ext=cpp
6086 pcg 1.1 ac_cpp='$CXXCPP $CPPFLAGS'
6087     ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
6088     ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
6089     ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
6090 pcg 1.33 if test -z "$CXX"; then
6091     if test -n "$CCC"; then
6092     CXX=$CCC
6093     else
6094     if test -n "$ac_tool_prefix"; then
6095     for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
6096 pcg 1.1 do
6097     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
6098     set dummy $ac_tool_prefix$ac_prog; ac_word=$2
6099 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
6100     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6101 pcg 1.1 if test "${ac_cv_prog_CXX+set}" = set; then
6102     echo $ECHO_N "(cached) $ECHO_C" >&6
6103     else
6104     if test -n "$CXX"; then
6105     ac_cv_prog_CXX="$CXX" # Let the user override the test.
6106     else
6107     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6108     for as_dir in $PATH
6109     do
6110     IFS=$as_save_IFS
6111     test -z "$as_dir" && as_dir=.
6112     for ac_exec_ext in '' $ac_executable_extensions; do
6113 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6114 pcg 1.1 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
6115     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6116     break 2
6117     fi
6118     done
6119     done
6120 pcg 1.33 IFS=$as_save_IFS
6121 pcg 1.1
6122     fi
6123     fi
6124     CXX=$ac_cv_prog_CXX
6125     if test -n "$CXX"; then
6126 pcg 1.33 { echo "$as_me:$LINENO: result: $CXX" >&5
6127     echo "${ECHO_T}$CXX" >&6; }
6128 pcg 1.1 else
6129 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
6130     echo "${ECHO_T}no" >&6; }
6131 pcg 1.1 fi
6132    
6133 pcg 1.33
6134 pcg 1.1 test -n "$CXX" && break
6135     done
6136     fi
6137     if test -z "$CXX"; then
6138     ac_ct_CXX=$CXX
6139 pcg 1.33 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
6140 pcg 1.1 do
6141     # Extract the first word of "$ac_prog", so it can be a program name with args.
6142     set dummy $ac_prog; ac_word=$2
6143 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
6144     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6145 pcg 1.1 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
6146     echo $ECHO_N "(cached) $ECHO_C" >&6
6147     else
6148     if test -n "$ac_ct_CXX"; then
6149     ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
6150     else
6151     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6152     for as_dir in $PATH
6153     do
6154     IFS=$as_save_IFS
6155     test -z "$as_dir" && as_dir=.
6156     for ac_exec_ext in '' $ac_executable_extensions; do
6157 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6158 pcg 1.1 ac_cv_prog_ac_ct_CXX="$ac_prog"
6159     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6160     break 2
6161     fi
6162     done
6163     done
6164 pcg 1.33 IFS=$as_save_IFS
6165 pcg 1.1
6166     fi
6167     fi
6168     ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
6169     if test -n "$ac_ct_CXX"; then
6170 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
6171     echo "${ECHO_T}$ac_ct_CXX" >&6; }
6172 pcg 1.1 else
6173 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
6174     echo "${ECHO_T}no" >&6; }
6175 pcg 1.1 fi
6176    
6177 pcg 1.33
6178 pcg 1.1 test -n "$ac_ct_CXX" && break
6179     done
6180    
6181 pcg 1.33 if test "x$ac_ct_CXX" = x; then
6182     CXX="g++"
6183     else
6184     case $cross_compiling:$ac_tool_warned in
6185     yes:)
6186     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
6187     whose name does not start with the host triplet. If you think this
6188     configuration is useful to you, please write to autoconf@gnu.org." >&5
6189     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
6190     whose name does not start with the host triplet. If you think this
6191     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
6192     ac_tool_warned=yes ;;
6193     esac
6194     CXX=$ac_ct_CXX
6195     fi
6196 pcg 1.1 fi
6197    
6198 pcg 1.33 fi
6199     fi
6200 pcg 1.1 # Provide some information about the compiler.
6201 pcg 1.33 echo "$as_me:$LINENO: checking for C++ compiler version" >&5
6202 pcg 1.1 ac_compiler=`set X $ac_compile; echo $2`
6203 pcg 1.33 { (ac_try="$ac_compiler --version >&5"
6204     case "(($ac_try" in
6205     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6206     *) ac_try_echo=$ac_try;;
6207     esac
6208     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6209     (eval "$ac_compiler --version >&5") 2>&5
6210 pcg 1.1 ac_status=$?
6211     echo "$as_me:$LINENO: \$? = $ac_status" >&5
6212     (exit $ac_status); }
6213 pcg 1.33 { (ac_try="$ac_compiler -v >&5"
6214     case "(($ac_try" in
6215     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6216     *) ac_try_echo=$ac_try;;
6217     esac
6218     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6219     (eval "$ac_compiler -v >&5") 2>&5
6220 pcg 1.1 ac_status=$?
6221     echo "$as_me:$LINENO: \$? = $ac_status" >&5
6222     (exit $ac_status); }
6223 pcg 1.33 { (ac_try="$ac_compiler -V >&5"
6224     case "(($ac_try" in
6225     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6226     *) ac_try_echo=$ac_try;;
6227     esac
6228     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6229     (eval "$ac_compiler -V >&5") 2>&5
6230 pcg 1.1 ac_status=$?
6231     echo "$as_me:$LINENO: \$? = $ac_status" >&5
6232     (exit $ac_status); }
6233    
6234 pcg 1.33 { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
6235     echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; }
6236 pcg 1.1 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
6237     echo $ECHO_N "(cached) $ECHO_C" >&6
6238     else
6239     cat >conftest.$ac_ext <<_ACEOF
6240     /* confdefs.h. */
6241     _ACEOF
6242     cat confdefs.h >>conftest.$ac_ext
6243     cat >>conftest.$ac_ext <<_ACEOF
6244     /* end confdefs.h. */
6245    
6246     int
6247     main ()
6248     {
6249     #ifndef __GNUC__
6250     choke me
6251     #endif
6252    
6253     ;
6254     return 0;
6255     }
6256     _ACEOF
6257     rm -f conftest.$ac_objext
6258 pcg 1.33 if { (ac_try="$ac_compile"
6259     case "(($ac_try" in
6260     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6261     *) ac_try_echo=$ac_try;;
6262     esac
6263     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6264     (eval "$ac_compile") 2>conftest.er1
6265 pcg 1.1 ac_status=$?
6266 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
6267     rm -f conftest.er1
6268     cat conftest.err >&5
6269 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6270 pcg 1.33 (exit $ac_status); } && {
6271     test -z "$ac_cxx_werror_flag" ||
6272     test ! -s conftest.err
6273     } && test -s conftest.$ac_objext; then
6274 pcg 1.1 ac_compiler_gnu=yes
6275     else
6276     echo "$as_me: failed program was:" >&5
6277     sed 's/^/| /' conftest.$ac_ext >&5
6278    
6279 pcg 1.33 ac_compiler_gnu=no
6280 pcg 1.1 fi
6281 pcg 1.33
6282     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6283 pcg 1.1 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
6284    
6285     fi
6286 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
6287     echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; }
6288 pcg 1.1 GXX=`test $ac_compiler_gnu = yes && echo yes`
6289     ac_test_CXXFLAGS=${CXXFLAGS+set}
6290     ac_save_CXXFLAGS=$CXXFLAGS
6291 pcg 1.33 { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5
6292     echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; }
6293 pcg 1.1 if test "${ac_cv_prog_cxx_g+set}" = set; then
6294     echo $ECHO_N "(cached) $ECHO_C" >&6
6295     else
6296 pcg 1.33 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
6297     ac_cxx_werror_flag=yes
6298     ac_cv_prog_cxx_g=no
6299     CXXFLAGS="-g"
6300     cat >conftest.$ac_ext <<_ACEOF
6301 pcg 1.1 /* confdefs.h. */
6302     _ACEOF
6303     cat confdefs.h >>conftest.$ac_ext
6304     cat >>conftest.$ac_ext <<_ACEOF
6305     /* end confdefs.h. */
6306    
6307     int
6308     main ()
6309     {
6310    
6311     ;
6312     return 0;
6313     }
6314     _ACEOF
6315     rm -f conftest.$ac_objext
6316 pcg 1.33 if { (ac_try="$ac_compile"
6317     case "(($ac_try" in
6318     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6319     *) ac_try_echo=$ac_try;;
6320     esac
6321     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6322     (eval "$ac_compile") 2>conftest.er1
6323 pcg 1.1 ac_status=$?
6324 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
6325     rm -f conftest.er1
6326     cat conftest.err >&5
6327 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6328 pcg 1.33 (exit $ac_status); } && {
6329     test -z "$ac_cxx_werror_flag" ||
6330     test ! -s conftest.err
6331     } && test -s conftest.$ac_objext; then
6332 pcg 1.1 ac_cv_prog_cxx_g=yes
6333     else
6334     echo "$as_me: failed program was:" >&5
6335     sed 's/^/| /' conftest.$ac_ext >&5
6336    
6337 pcg 1.33 CXXFLAGS=""
6338     cat >conftest.$ac_ext <<_ACEOF
6339 pcg 1.1 /* confdefs.h. */
6340     _ACEOF
6341     cat confdefs.h >>conftest.$ac_ext
6342     cat >>conftest.$ac_ext <<_ACEOF
6343     /* end confdefs.h. */
6344 pcg 1.33
6345 pcg 1.1 int
6346     main ()
6347     {
6348 pcg 1.33
6349 pcg 1.1 ;
6350     return 0;
6351     }
6352     _ACEOF
6353     rm -f conftest.$ac_objext
6354 pcg 1.33 if { (ac_try="$ac_compile"
6355     case "(($ac_try" in
6356     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6357     *) ac_try_echo=$ac_try;;
6358     esac
6359     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6360     (eval "$ac_compile") 2>conftest.er1
6361 pcg 1.1 ac_status=$?
6362 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
6363     rm -f conftest.er1
6364     cat conftest.err >&5
6365 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6366 pcg 1.33 (exit $ac_status); } && {
6367     test -z "$ac_cxx_werror_flag" ||
6368     test ! -s conftest.err
6369     } && test -s conftest.$ac_objext; then
6370 pcg 1.1 :
6371     else
6372     echo "$as_me: failed program was:" >&5
6373     sed 's/^/| /' conftest.$ac_ext >&5
6374    
6375 pcg 1.33 ac_cxx_werror_flag=$ac_save_cxx_werror_flag
6376     CXXFLAGS="-g"
6377     cat >conftest.$ac_ext <<_ACEOF
6378 pcg 1.1 /* confdefs.h. */
6379     _ACEOF
6380     cat confdefs.h >>conftest.$ac_ext
6381     cat >>conftest.$ac_ext <<_ACEOF
6382     /* end confdefs.h. */
6383 pcg 1.33
6384 pcg 1.1 int
6385     main ()
6386     {
6387 pcg 1.33
6388 pcg 1.1 ;
6389     return 0;
6390     }
6391     _ACEOF
6392     rm -f conftest.$ac_objext
6393 pcg 1.33 if { (ac_try="$ac_compile"
6394     case "(($ac_try" in
6395     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
6396     *) ac_try_echo=$ac_try;;
6397     esac
6398     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
6399     (eval "$ac_compile") 2>conftest.er1
6400 pcg 1.1 ac_status=$?
6401 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
6402     rm -f conftest.er1
6403     cat conftest.err >&5
6404 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6405 pcg 1.33 (exit $ac_status); } && {
6406     test -z "$ac_cxx_werror_flag" ||
6407     test ! -s conftest.err
6408     } && test -s conftest.$ac_objext; then
6409     ac_cv_prog_cxx_g=yes
6410 pcg 1.1 else
6411     echo "$as_me: failed program was:" >&5
6412     sed 's/^/| /' conftest.$ac_ext >&5
6413    
6414 pcg 1.33
6415     fi
6416    
6417     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6418 pcg 1.1 fi
6419 pcg 1.33
6420     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6421 pcg 1.1 fi
6422    
6423 pcg 1.33 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6424     ac_cxx_werror_flag=$ac_save_cxx_werror_flag
6425     fi
6426     { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
6427     echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; }
6428     if test "$ac_test_CXXFLAGS" = set; then
6429     CXXFLAGS=$ac_save_CXXFLAGS
6430     elif test $ac_cv_prog_cxx_g = yes; then
6431     if test "$GXX" = yes; then
6432     CXXFLAGS="-g -O2"
6433     else
6434     CXXFLAGS="-g"
6435     fi
6436     else
6437     if test "$GXX" = yes; then
6438     CXXFLAGS="-O2"
6439     else
6440     CXXFLAGS=
6441     fi
6442     fi
6443 pcg 1.1 ac_ext=c
6444     ac_cpp='$CPP $CPPFLAGS'
6445     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
6446     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
6447     ac_compiler_gnu=$ac_cv_c_compiler_gnu
6448    
6449     depcc="$CXX" am_compiler_list=
6450    
6451 pcg 1.33 { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
6452     echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
6453 pcg 1.1 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then
6454     echo $ECHO_N "(cached) $ECHO_C" >&6
6455     else
6456     if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
6457     # We make a subdir and do the tests there. Otherwise we can end up
6458     # making bogus files that we don't know about and never remove. For
6459     # instance it was reported that on HP-UX the gcc test will end up
6460     # making a dummy file named `D' -- because `-MD' means `put the output
6461     # in D'.
6462     mkdir conftest.dir
6463     # Copy depcomp to subdir because otherwise we won't find it if we're
6464     # using a relative directory.
6465     cp "$am_depcomp" conftest.dir
6466     cd conftest.dir
6467     # We will build objects and dependencies in a subdirectory because
6468     # it helps to detect inapplicable dependency modes. For instance
6469     # both Tru64's cc and ICC support -MD to output dependencies as a
6470     # side effect of compilation, but ICC will put the dependencies in
6471     # the current directory while Tru64 will put them in the object
6472     # directory.
6473     mkdir sub
6474    
6475     am_cv_CXX_dependencies_compiler_type=none
6476     if test "$am_compiler_list" = ""; then
6477     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
6478     fi
6479     for depmode in $am_compiler_list; do
6480     # Setup a source with many dependencies, because some compilers
6481     # like to wrap large dependency lists on column 80 (with \), and
6482     # we should not choose a depcomp mode which is confused by this.
6483     #
6484     # We need to recreate these files for each test, as the compiler may
6485     # overwrite some of them when testing with obscure command lines.
6486     # This happens at least with the AIX C compiler.
6487     : > sub/conftest.c
6488     for i in 1 2 3 4 5 6; do
6489     echo '#include "conftst'$i'.h"' >> sub/conftest.c
6490 pcg 1.33 : > sub/conftst$i.h
6491 pcg 1.1 done
6492     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
6493    
6494     case $depmode in
6495     nosideeffect)
6496     # after this tag, mechanisms are not by side-effect, so they'll
6497     # only be used when explicitly requested
6498     if test "x$enable_dependency_tracking" = xyes; then
6499     continue
6500     else
6501     break
6502     fi
6503     ;;
6504     none) break ;;
6505     esac
6506     # We check with `-c' and `-o' for the sake of the "dashmstdout"
6507     # mode. It turns out that the SunPro C++ compiler does not properly
6508     # handle `-M -o', and we need to detect this.
6509     if depmode=$depmode \
6510     source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
6511     depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
6512     $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
6513     >/dev/null 2>conftest.err &&
6514     grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
6515     grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
6516     ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
6517     # icc doesn't choke on unknown options, it will just issue warnings
6518 pcg 1.33 # (even with -Werror). So we grep stderr for any message
6519     # that says an option was ignored.
6520     if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
6521 pcg 1.1 am_cv_CXX_dependencies_compiler_type=$depmode
6522     break
6523     fi
6524     fi
6525     done
6526    
6527     cd ..
6528     rm -rf conftest.dir
6529     else
6530     am_cv_CXX_dependencies_compiler_type=none
6531     fi
6532    
6533     fi
6534 pcg 1.33 { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5
6535     echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
6536 pcg 1.1 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
6537    
6538    
6539    
6540     if
6541     test "x$enable_dependency_tracking" != xno \
6542     && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
6543     am__fastdepCXX_TRUE=
6544     am__fastdepCXX_FALSE='#'
6545     else
6546     am__fastdepCXX_TRUE='#'
6547     am__fastdepCXX_FALSE=
6548     fi
6549    
6550    
6551    
6552 pcg 1.33 { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
6553     echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
6554     if test "${ac_cv_path_GREP+set}" = set; then
6555     echo $ECHO_N "(cached) $ECHO_C" >&6
6556     else
6557     # Extract the first word of "grep ggrep" to use in msg output
6558     if test -z "$GREP"; then
6559     set dummy grep ggrep; ac_prog_name=$2
6560     if test "${ac_cv_path_GREP+set}" = set; then
6561     echo $ECHO_N "(cached) $ECHO_C" >&6
6562     else
6563     ac_path_GREP_found=false
6564     # Loop through the user's path and test for each of PROGNAME-LIST
6565     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6566     for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
6567     do
6568     IFS=$as_save_IFS
6569     test -z "$as_dir" && as_dir=.
6570     for ac_prog in grep ggrep; do
6571     for ac_exec_ext in '' $ac_executable_extensions; do
6572     ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
6573     { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
6574     # Check for GNU ac_path_GREP and select it if it is found.
6575     # Check for GNU $ac_path_GREP
6576     case `"$ac_path_GREP" --version 2>&1` in
6577     *GNU*)
6578     ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
6579     *)
6580     ac_count=0
6581     echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
6582     while :
6583     do
6584     cat "conftest.in" "conftest.in" >"conftest.tmp"
6585     mv "conftest.tmp" "conftest.in"
6586     cp "conftest.in" "conftest.nl"
6587     echo 'GREP' >> "conftest.nl"
6588     "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
6589     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
6590     ac_count=`expr $ac_count + 1`
6591     if test $ac_count -gt ${ac_path_GREP_max-0}; then
6592     # Best one so far, save it but keep looking for a better one
6593     ac_cv_path_GREP="$ac_path_GREP"
6594     ac_path_GREP_max=$ac_count
6595     fi
6596     # 10*(2^10) chars as input seems more than enough
6597     test $ac_count -gt 10 && break
6598     done
6599     rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
6600     esac
6601    
6602    
6603     $ac_path_GREP_found && break 3
6604     done
6605     done
6606    
6607     done
6608     IFS=$as_save_IFS
6609    
6610    
6611     fi
6612    
6613     GREP="$ac_cv_path_GREP"
6614     if test -z "$GREP"; then
6615     { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
6616     echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
6617     { (exit 1); exit 1; }; }
6618     fi
6619    
6620     else
6621     ac_cv_path_GREP=$GREP
6622     fi
6623    
6624    
6625     fi
6626     { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
6627     echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
6628     GREP="$ac_cv_path_GREP"
6629    
6630    
6631     { echo "$as_me:$LINENO: checking for egrep" >&5
6632     echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
6633     if test "${ac_cv_path_EGREP+set}" = set; then
6634     echo $ECHO_N "(cached) $ECHO_C" >&6
6635     else
6636     if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
6637     then ac_cv_path_EGREP="$GREP -E"
6638     else
6639     # Extract the first word of "egrep" to use in msg output
6640     if test -z "$EGREP"; then
6641     set dummy egrep; ac_prog_name=$2
6642     if test "${ac_cv_path_EGREP+set}" = set; then
6643 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
6644     else
6645 pcg 1.33 ac_path_EGREP_found=false
6646     # Loop through the user's path and test for each of PROGNAME-LIST
6647     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6648     for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
6649     do
6650     IFS=$as_save_IFS
6651     test -z "$as_dir" && as_dir=.
6652     for ac_prog in egrep; do
6653     for ac_exec_ext in '' $ac_executable_extensions; do
6654     ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
6655     { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
6656     # Check for GNU ac_path_EGREP and select it if it is found.
6657     # Check for GNU $ac_path_EGREP
6658     case `"$ac_path_EGREP" --version 2>&1` in
6659     *GNU*)
6660     ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
6661     *)
6662     ac_count=0
6663     echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
6664     while :
6665     do
6666     cat "conftest.in" "conftest.in" >"conftest.tmp"
6667     mv "conftest.tmp" "conftest.in"
6668     cp "conftest.in" "conftest.nl"
6669     echo 'EGREP' >> "conftest.nl"
6670     "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
6671     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
6672     ac_count=`expr $ac_count + 1`
6673     if test $ac_count -gt ${ac_path_EGREP_max-0}; then
6674     # Best one so far, save it but keep looking for a better one
6675     ac_cv_path_EGREP="$ac_path_EGREP"
6676     ac_path_EGREP_max=$ac_count
6677 pcg 1.1 fi
6678 pcg 1.33 # 10*(2^10) chars as input seems more than enough
6679     test $ac_count -gt 10 && break
6680     done
6681     rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
6682     esac
6683    
6684    
6685     $ac_path_EGREP_found && break 3
6686     done
6687     done
6688    
6689     done
6690     IFS=$as_save_IFS
6691    
6692    
6693     fi
6694    
6695     EGREP="$ac_cv_path_EGREP"
6696     if test -z "$EGREP"; then
6697     { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
6698     echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
6699     { (exit 1); exit 1; }; }
6700     fi
6701    
6702     else
6703     ac_cv_path_EGREP=$EGREP
6704     fi
6705    
6706    
6707     fi
6708 pcg 1.1 fi
6709 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
6710     echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
6711     EGREP="$ac_cv_path_EGREP"
6712 pcg 1.1
6713    
6714     if test $ac_cv_c_compiler_gnu = yes; then
6715 pcg 1.33 { echo "$as_me:$LINENO: checking whether $CC needs -traditional" >&5
6716     echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6; }
6717 pcg 1.1 if test "${ac_cv_prog_gcc_traditional+set}" = set; then
6718     echo $ECHO_N "(cached) $ECHO_C" >&6
6719     else
6720     ac_pattern="Autoconf.*'x'"
6721     cat >conftest.$ac_ext <<_ACEOF
6722     /* confdefs.h. */
6723     _ACEOF
6724     cat confdefs.h >>conftest.$ac_ext
6725     cat >>conftest.$ac_ext <<_ACEOF
6726     /* end confdefs.h. */
6727     #include <sgtty.h>
6728     Autoconf TIOCGETP
6729     _ACEOF
6730     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6731     $EGREP "$ac_pattern" >/dev/null 2>&1; then
6732     ac_cv_prog_gcc_traditional=yes
6733     else
6734     ac_cv_prog_gcc_traditional=no
6735     fi
6736     rm -f conftest*
6737    
6738    
6739     if test $ac_cv_prog_gcc_traditional = no; then
6740     cat >conftest.$ac_ext <<_ACEOF
6741     /* confdefs.h. */
6742     _ACEOF
6743     cat confdefs.h >>conftest.$ac_ext
6744     cat >>conftest.$ac_ext <<_ACEOF
6745     /* end confdefs.h. */
6746     #include <termio.h>
6747     Autoconf TCGETA
6748     _ACEOF
6749     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6750     $EGREP "$ac_pattern" >/dev/null 2>&1; then
6751     ac_cv_prog_gcc_traditional=yes
6752     fi
6753     rm -f conftest*
6754    
6755     fi
6756     fi
6757 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_prog_gcc_traditional" >&5
6758     echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6; }
6759 pcg 1.1 if test $ac_cv_prog_gcc_traditional = yes; then
6760     CC="$CC -traditional"
6761     fi
6762     fi
6763    
6764     for ac_prog in gawk mawk nawk awk
6765     do
6766     # Extract the first word of "$ac_prog", so it can be a program name with args.
6767     set dummy $ac_prog; ac_word=$2
6768 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
6769     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6770 pcg 1.1 if test "${ac_cv_prog_AWK+set}" = set; then
6771     echo $ECHO_N "(cached) $ECHO_C" >&6
6772     else
6773     if test -n "$AWK"; then
6774     ac_cv_prog_AWK="$AWK" # Let the user override the test.
6775     else
6776     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6777     for as_dir in $PATH
6778     do
6779     IFS=$as_save_IFS
6780     test -z "$as_dir" && as_dir=.
6781     for ac_exec_ext in '' $ac_executable_extensions; do
6782 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6783 pcg 1.1 ac_cv_prog_AWK="$ac_prog"
6784     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6785     break 2
6786     fi
6787     done
6788     done
6789 pcg 1.33 IFS=$as_save_IFS
6790 pcg 1.1
6791     fi
6792     fi
6793     AWK=$ac_cv_prog_AWK
6794     if test -n "$AWK"; then
6795 pcg 1.33 { echo "$as_me:$LINENO: result: $AWK" >&5
6796     echo "${ECHO_T}$AWK" >&6; }
6797 pcg 1.1 else
6798 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
6799     echo "${ECHO_T}no" >&6; }
6800 pcg 1.1 fi
6801    
6802 pcg 1.33
6803 pcg 1.1 test -n "$AWK" && break
6804     done
6805    
6806     # Find a good install program. We prefer a C program (faster),
6807     # so one script is as good as another. But avoid the broken or
6808     # incompatible versions:
6809     # SysV /etc/install, /usr/sbin/install
6810     # SunOS /usr/etc/install
6811     # IRIX /sbin/install
6812     # AIX /bin/install
6813     # AmigaOS /C/install, which installs bootblocks on floppy discs
6814     # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
6815     # AFS /usr/afsws/bin/install, which mishandles nonexistent args
6816     # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
6817 pcg 1.11 # OS/2's system install, which has a completely different semantic
6818 pcg 1.1 # ./install, which can be erroneously created by make from ./install.sh.
6819 pcg 1.33 { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
6820     echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
6821 pcg 1.1 if test -z "$INSTALL"; then
6822     if test "${ac_cv_path_install+set}" = set; then
6823     echo $ECHO_N "(cached) $ECHO_C" >&6
6824     else
6825     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6826     for as_dir in $PATH
6827     do
6828     IFS=$as_save_IFS
6829     test -z "$as_dir" && as_dir=.
6830     # Account for people who put trailing slashes in PATH elements.
6831     case $as_dir/ in
6832     ./ | .// | /cC/* | \
6833     /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
6834 pcg 1.11 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
6835 pcg 1.1 /usr/ucb/* ) ;;
6836     *)
6837     # OSF1 and SCO ODT 3.0 have their own names for install.
6838     # Don't use installbsd from OSF since it installs stuff as root
6839     # by default.
6840     for ac_prog in ginstall scoinst install; do
6841     for ac_exec_ext in '' $ac_executable_extensions; do
6842 pcg 1.33 if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
6843 pcg 1.11 if test $ac_prog = install &&
6844     grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
6845     # AIX install. It has an incompatible calling convention.
6846     :
6847     elif test $ac_prog = install &&
6848     grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
6849     # program-specific install script used by HP pwplus--don't use.
6850     :
6851     else
6852     ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
6853     break 3
6854     fi
6855     fi
6856 pcg 1.1 done
6857     done
6858     ;;
6859     esac
6860     done
6861 pcg 1.33 IFS=$as_save_IFS
6862 pcg 1.1
6863    
6864     fi
6865     if test "${ac_cv_path_install+set}" = set; then
6866     INSTALL=$ac_cv_path_install
6867     else
6868 pcg 1.33 # As a last resort, use the slow shell script. Don't cache a
6869     # value for INSTALL within a source directory, because that will
6870 pcg 1.1 # break other packages using the cache if that directory is
6871 pcg 1.33 # removed, or if the value is a relative name.
6872 pcg 1.1 INSTALL=$ac_install_sh
6873     fi
6874     fi
6875 pcg 1.33 { echo "$as_me:$LINENO: result: $INSTALL" >&5
6876     echo "${ECHO_T}$INSTALL" >&6; }
6877 pcg 1.1
6878     # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
6879     # It thinks the first close brace ends the variable substitution.
6880     test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
6881    
6882     test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
6883    
6884     test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
6885    
6886 pcg 1.33 { echo "$as_me:$LINENO: checking whether ln -s works" >&5
6887     echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; }
6888 pcg 1.1 LN_S=$as_ln_s
6889     if test "$LN_S" = "ln -s"; then
6890 pcg 1.33 { echo "$as_me:$LINENO: result: yes" >&5
6891     echo "${ECHO_T}yes" >&6; }
6892 pcg 1.1 else
6893 pcg 1.33 { echo "$as_me:$LINENO: result: no, using $LN_S" >&5
6894     echo "${ECHO_T}no, using $LN_S" >&6; }
6895 pcg 1.1 fi
6896    
6897 pcg 1.33 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
6898     echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
6899     set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
6900     if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
6901 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
6902     else
6903     cat >conftest.make <<\_ACEOF
6904 pcg 1.33 SHELL = /bin/sh
6905 pcg 1.1 all:
6906 pcg 1.33 @echo '@@@%%%=$(MAKE)=@@@%%%'
6907 pcg 1.1 _ACEOF
6908     # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
6909 pcg 1.33 case `${MAKE-make} -f conftest.make 2>/dev/null` in
6910     *@@@%%%=?*=@@@%%%*)
6911     eval ac_cv_prog_make_${ac_make}_set=yes;;
6912     *)
6913     eval ac_cv_prog_make_${ac_make}_set=no;;
6914     esac
6915 pcg 1.1 rm -f conftest.make
6916     fi
6917 pcg 1.33 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
6918     { echo "$as_me:$LINENO: result: yes" >&5
6919     echo "${ECHO_T}yes" >&6; }
6920 pcg 1.1 SET_MAKE=
6921     else
6922 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
6923     echo "${ECHO_T}no" >&6; }
6924 pcg 1.1 SET_MAKE="MAKE=${MAKE-make}"
6925     fi
6926    
6927     if test -n "$ac_tool_prefix"; then
6928     # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
6929     set dummy ${ac_tool_prefix}ranlib; ac_word=$2
6930 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
6931     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6932 pcg 1.1 if test "${ac_cv_prog_RANLIB+set}" = set; then
6933     echo $ECHO_N "(cached) $ECHO_C" >&6
6934     else
6935     if test -n "$RANLIB"; then
6936     ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
6937     else
6938     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6939     for as_dir in $PATH
6940     do
6941     IFS=$as_save_IFS
6942     test -z "$as_dir" && as_dir=.
6943     for ac_exec_ext in '' $ac_executable_extensions; do
6944 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6945 pcg 1.1 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
6946     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6947     break 2
6948     fi
6949     done
6950     done
6951 pcg 1.33 IFS=$as_save_IFS
6952 pcg 1.1
6953     fi
6954     fi
6955     RANLIB=$ac_cv_prog_RANLIB
6956     if test -n "$RANLIB"; then
6957 pcg 1.33 { echo "$as_me:$LINENO: result: $RANLIB" >&5
6958     echo "${ECHO_T}$RANLIB" >&6; }
6959 pcg 1.1 else
6960 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
6961     echo "${ECHO_T}no" >&6; }
6962 pcg 1.1 fi
6963    
6964 pcg 1.33
6965 pcg 1.1 fi
6966     if test -z "$ac_cv_prog_RANLIB"; then
6967     ac_ct_RANLIB=$RANLIB
6968     # Extract the first word of "ranlib", so it can be a program name with args.
6969     set dummy ranlib; ac_word=$2
6970 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_word" >&5
6971     echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
6972 pcg 1.1 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
6973     echo $ECHO_N "(cached) $ECHO_C" >&6
6974     else
6975     if test -n "$ac_ct_RANLIB"; then
6976     ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
6977     else
6978     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6979     for as_dir in $PATH
6980     do
6981     IFS=$as_save_IFS
6982     test -z "$as_dir" && as_dir=.
6983     for ac_exec_ext in '' $ac_executable_extensions; do
6984 pcg 1.33 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6985 pcg 1.1 ac_cv_prog_ac_ct_RANLIB="ranlib"
6986     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6987     break 2
6988     fi
6989     done
6990     done
6991 pcg 1.33 IFS=$as_save_IFS
6992 pcg 1.1
6993     fi
6994     fi
6995     ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
6996     if test -n "$ac_ct_RANLIB"; then
6997 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
6998     echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
6999 pcg 1.1 else
7000 pcg 1.33 { echo "$as_me:$LINENO: result: no" >&5
7001     echo "${ECHO_T}no" >&6; }
7002 pcg 1.1 fi
7003    
7004 pcg 1.33 if test "x$ac_ct_RANLIB" = x; then
7005     RANLIB=":"
7006     else
7007     case $cross_compiling:$ac_tool_warned in
7008     yes:)
7009     { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
7010     whose name does not start with the host triplet. If you think this
7011     configuration is useful to you, please write to autoconf@gnu.org." >&5
7012     echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
7013     whose name does not start with the host triplet. If you think this
7014     configuration is useful to you, please write to autoconf@gnu.org." >&2;}
7015     ac_tool_warned=yes ;;
7016     esac
7017     RANLIB=$ac_ct_RANLIB
7018     fi
7019 pcg 1.1 else
7020     RANLIB="$ac_cv_prog_RANLIB"
7021     fi
7022    
7023    
7024 pcg 1.33 # Check whether --enable-iftype was given.
7025 pcg 1.1 if test "${enable_iftype+set}" = set; then
7026 pcg 1.33 enableval=$enable_iftype;
7027 pcg 1.1 IFTYPE=`echo $enableval | sed s%/.*%%`
7028     IFSUBTYPE=`echo $enableval | sed s%.*/%%`
7029    
7030    
7031 pcg 1.33 fi
7032    
7033 pcg 1.1
7034 pcg 1.33 { echo "$as_me:$LINENO: checking for kernel networking interface type" >&5
7035     echo $ECHO_N "checking for kernel networking interface type... $ECHO_C" >&6; }
7036 pcg 1.1
7037     if test "x$IFTYPE" = "x"; then
7038     case $target_os in
7039     *linux*)
7040     IFTYPE=native
7041     IFSUBTYPE=linux
7042    
7043     cat >>confdefs.h <<\_ACEOF
7044     #define HAVE_LINUX 1
7045     _ACEOF
7046    
7047     ;;
7048     *freebsd*)
7049     IFTYPE=tincd
7050     IFSUBTYPE=freebsd
7051    
7052     cat >>confdefs.h <<\_ACEOF
7053     #define HAVE_FREEBSD 1
7054     _ACEOF
7055    
7056     ;;
7057     *darwin*)
7058 pcg 1.27 IFTYPE=native
7059 pcg 1.1 IFSUBTYPE=darwin
7060    
7061     cat >>confdefs.h <<\_ACEOF
7062     #define HAVE_DARWIN 1
7063     _ACEOF
7064    
7065     ;;
7066     *solaris*)
7067     IFTYPE=tincd
7068     IFSUBTYPE=solaris
7069    
7070     cat >>confdefs.h <<\_ACEOF
7071     #define HAVE_SOLARIS 1
7072     _ACEOF
7073    
7074     ;;
7075     *openbsd*)
7076     IFTYPE=tincd
7077     IFSUBTYPE=openbsd
7078    
7079     cat >>confdefs.h <<\_ACEOF
7080     #define HAVE_OPENBSD 1
7081     _ACEOF
7082    
7083     ;;
7084     *netbsd*)
7085     IFTYPE=tincd
7086     IFSUBTYPE=netbsd
7087    
7088     cat >>confdefs.h <<\_ACEOF
7089     #define HAVE_NETBSD 1
7090     _ACEOF
7091    
7092     ;;
7093     *cygwin*)
7094 pcg 1.6 IFTYPE=native
7095 pcg 1.1 IFSUBTYPE=cygwin
7096    
7097     cat >>confdefs.h <<\_ACEOF
7098     #define HAVE_CYGWIN 1
7099     _ACEOF
7100    
7101     ;;
7102     *)
7103     { { echo "$as_me:$LINENO: error: \"Unknown operating system.\"" >&5
7104     echo "$as_me: error: \"Unknown operating system.\"" >&2;}
7105     { (exit 1); exit 1; }; }
7106     ;;
7107     esac
7108     fi
7109 pcg 1.33 { echo "$as_me:$LINENO: result: $IFTYPE/$IFSUBTYPE" >&5
7110     echo "${ECHO_T}$IFTYPE/$IFSUBTYPE" >&6; }
7111 pcg 1.1 IFTYPE=$IFTYPE
7112    
7113     IFSUBTYPE=$IFSUBTYPE
7114    
7115    
7116 pcg 1.9 cat >>confdefs.h <<_ACEOF
7117     #define IFTYPE "$IFTYPE"
7118     _ACEOF
7119    
7120    
7121     cat >>confdefs.h <<_ACEOF
7122     #define IFSUBTYPE "$IFSUBTYPE"
7123     _ACEOF
7124    
7125    
7126 pcg 1.1 cat >confcache <<\_ACEOF
7127     # This file is a shell script that caches the results of configure
7128     # tests run on this system so they can be shared between configure
7129     # scripts and configure runs, see configure's option --config-cache.
7130     # It is not useful on other systems. If it contains results you don't
7131     # want to keep, you may remove or edit it.
7132     #
7133     # config.status only pays attention to the cache file if you give it
7134     # the --recheck option to rerun configure.
7135     #
7136     # `ac_cv_env_foo' variables (set or unset) will be overridden when
7137     # loading this file, other *unset* `ac_cv_foo' will be assigned the
7138     # following values.
7139    
7140     _ACEOF
7141    
7142     # The following way of writing the cache mishandles newlines in values,
7143     # but we know of no workaround that is simple, portable, and efficient.
7144 pcg 1.33 # So, we kill variables containing newlines.
7145 pcg 1.1 # Ultrix sh set writes to stderr and can't be redirected directly,
7146     # and sets the high bit in the cache file unless we assign to the vars.
7147 pcg 1.33 (
7148     for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
7149     eval ac_val=\$$ac_var
7150     case $ac_val in #(
7151     *${as_nl}*)
7152     case $ac_var in #(
7153     *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
7154     echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
7155     esac
7156     case $ac_var in #(
7157     _ | IFS | as_nl) ;; #(
7158     *) $as_unset $ac_var ;;
7159     esac ;;
7160     esac
7161     done
7162    
7163 pcg 1.1 (set) 2>&1 |
7164 pcg 1.33 case $as_nl`(ac_space=' '; set) 2>&1` in #(
7165     *${as_nl}ac_space=\ *)
7166 pcg 1.1 # `set' does not quote correctly, so add quotes (double-quote
7167     # substitution turns \\\\ into \\, and sed turns \\ into \).
7168     sed -n \
7169 pcg 1.11 "s/'/'\\\\''/g;
7170     s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
7171 pcg 1.33 ;; #(
7172 pcg 1.1 *)
7173     # `set' quotes correctly as required by POSIX, so do not add quotes.
7174 pcg 1.33 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
7175 pcg 1.1 ;;
7176 pcg 1.33 esac |
7177     sort
7178     ) |
7179 pcg 1.1 sed '
7180 pcg 1.33 /^ac_cv_env_/b end
7181 pcg 1.1 t clear
7182 pcg 1.33 :clear
7183 pcg 1.1 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
7184     t end
7185 pcg 1.33 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
7186     :end' >>confcache
7187     if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
7188     if test -w "$cache_file"; then
7189     test "x$cache_file" != "x/dev/null" &&
7190     { echo "$as_me:$LINENO: updating cache $cache_file" >&5
7191     echo "$as_me: updating cache $cache_file" >&6;}
7192 pcg 1.1 cat confcache >$cache_file
7193     else
7194 pcg 1.33 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
7195     echo "$as_me: not updating unwritable cache $cache_file" >&6;}
7196 pcg 1.1 fi
7197     fi
7198     rm -f confcache
7199    
7200    
7201 pcg 1.33 ac_ext=cpp
7202 pcg 1.1 ac_cpp='$CXXCPP $CPPFLAGS'
7203     ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
7204     ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
7205     ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
7206    
7207    
7208 pcg 1.33 ac_ext=cpp
7209 pcg 1.1 ac_cpp='$CXXCPP $CPPFLAGS'
7210     ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
7211     ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
7212     ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
7213 pcg 1.33 { echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5
7214     echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; }
7215 pcg 1.1 if test -z "$CXXCPP"; then
7216     if test "${ac_cv_prog_CXXCPP+set}" = set; then
7217     echo $ECHO_N "(cached) $ECHO_C" >&6
7218     else
7219     # Double quotes because CXXCPP needs to be expanded
7220     for CXXCPP in "$CXX -E" "/lib/cpp"
7221     do
7222     ac_preproc_ok=false
7223     for ac_cxx_preproc_warn_flag in '' yes
7224     do
7225     # Use a header file that comes with gcc, so configuring glibc
7226     # with a fresh cross-compiler works.
7227     # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7228     # <limits.h> exists even on freestanding compilers.
7229     # On the NeXT, cc -E runs the code through the compiler's parser,
7230     # not just through cpp. "Syntax error" is here to catch this case.
7231     cat >conftest.$ac_ext <<_ACEOF
7232     /* confdefs.h. */
7233     _ACEOF
7234     cat confdefs.h >>conftest.$ac_ext
7235     cat >>conftest.$ac_ext <<_ACEOF
7236     /* end confdefs.h. */
7237     #ifdef __STDC__
7238     # include <limits.h>
7239     #else
7240     # include <assert.h>
7241     #endif
7242 pcg 1.11 Syntax error
7243 pcg 1.1 _ACEOF
7244 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
7245     case "(($ac_try" in
7246     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7247     *) ac_try_echo=$ac_try;;
7248     esac
7249     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7250     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7251 pcg 1.1 ac_status=$?
7252     grep -v '^ *+' conftest.er1 >conftest.err
7253     rm -f conftest.er1
7254     cat conftest.err >&5
7255     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7256 pcg 1.33 (exit $ac_status); } >/dev/null && {
7257     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
7258     test ! -s conftest.err
7259     }; then
7260 pcg 1.1 :
7261     else
7262     echo "$as_me: failed program was:" >&5
7263     sed 's/^/| /' conftest.$ac_ext >&5
7264    
7265     # Broken: fails on valid input.
7266     continue
7267     fi
7268 pcg 1.33
7269 pcg 1.1 rm -f conftest.err conftest.$ac_ext
7270    
7271 pcg 1.33 # OK, works on sane cases. Now check whether nonexistent headers
7272 pcg 1.1 # can be detected and how.
7273     cat >conftest.$ac_ext <<_ACEOF
7274     /* confdefs.h. */
7275     _ACEOF
7276     cat confdefs.h >>conftest.$ac_ext
7277     cat >>conftest.$ac_ext <<_ACEOF
7278     /* end confdefs.h. */
7279     #include <ac_nonexistent.h>
7280     _ACEOF
7281 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
7282     case "(($ac_try" in
7283     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7284     *) ac_try_echo=$ac_try;;
7285     esac
7286     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7287     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7288 pcg 1.1 ac_status=$?
7289     grep -v '^ *+' conftest.er1 >conftest.err
7290     rm -f conftest.er1
7291     cat conftest.err >&5
7292     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7293 pcg 1.33 (exit $ac_status); } >/dev/null && {
7294     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
7295     test ! -s conftest.err
7296     }; then
7297 pcg 1.1 # Broken: success on invalid input.
7298     continue
7299     else
7300     echo "$as_me: failed program was:" >&5
7301     sed 's/^/| /' conftest.$ac_ext >&5
7302    
7303     # Passes both tests.
7304     ac_preproc_ok=:
7305     break
7306     fi
7307 pcg 1.33
7308 pcg 1.1 rm -f conftest.err conftest.$ac_ext
7309    
7310     done
7311     # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
7312     rm -f conftest.err conftest.$ac_ext
7313     if $ac_preproc_ok; then
7314     break
7315     fi
7316    
7317     done
7318     ac_cv_prog_CXXCPP=$CXXCPP
7319    
7320     fi
7321     CXXCPP=$ac_cv_prog_CXXCPP
7322     else
7323     ac_cv_prog_CXXCPP=$CXXCPP
7324     fi
7325 pcg 1.33 { echo "$as_me:$LINENO: result: $CXXCPP" >&5
7326     echo "${ECHO_T}$CXXCPP" >&6; }
7327 pcg 1.1 ac_preproc_ok=false
7328     for ac_cxx_preproc_warn_flag in '' yes
7329     do
7330     # Use a header file that comes with gcc, so configuring glibc
7331     # with a fresh cross-compiler works.
7332     # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7333     # <limits.h> exists even on freestanding compilers.
7334     # On the NeXT, cc -E runs the code through the compiler's parser,
7335     # not just through cpp. "Syntax error" is here to catch this case.
7336     cat >conftest.$ac_ext <<_ACEOF
7337     /* confdefs.h. */
7338     _ACEOF
7339     cat confdefs.h >>conftest.$ac_ext
7340     cat >>conftest.$ac_ext <<_ACEOF
7341     /* end confdefs.h. */
7342     #ifdef __STDC__
7343     # include <limits.h>
7344     #else
7345     # include <assert.h>
7346     #endif
7347 pcg 1.11 Syntax error
7348 pcg 1.1 _ACEOF
7349 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
7350     case "(($ac_try" in
7351     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7352     *) ac_try_echo=$ac_try;;
7353     esac
7354     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7355     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7356 pcg 1.1 ac_status=$?
7357     grep -v '^ *+' conftest.er1 >conftest.err
7358     rm -f conftest.er1
7359     cat conftest.err >&5
7360     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7361 pcg 1.33 (exit $ac_status); } >/dev/null && {
7362     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
7363     test ! -s conftest.err
7364     }; then
7365 pcg 1.1 :
7366     else
7367     echo "$as_me: failed program was:" >&5
7368     sed 's/^/| /' conftest.$ac_ext >&5
7369    
7370     # Broken: fails on valid input.
7371     continue
7372     fi
7373 pcg 1.33
7374 pcg 1.1 rm -f conftest.err conftest.$ac_ext
7375    
7376 pcg 1.33 # OK, works on sane cases. Now check whether nonexistent headers
7377 pcg 1.1 # can be detected and how.
7378     cat >conftest.$ac_ext <<_ACEOF
7379     /* confdefs.h. */
7380     _ACEOF
7381     cat confdefs.h >>conftest.$ac_ext
7382     cat >>conftest.$ac_ext <<_ACEOF
7383     /* end confdefs.h. */
7384     #include <ac_nonexistent.h>
7385     _ACEOF
7386 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
7387     case "(($ac_try" in
7388     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7389     *) ac_try_echo=$ac_try;;
7390     esac
7391     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7392     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7393 pcg 1.1 ac_status=$?
7394     grep -v '^ *+' conftest.er1 >conftest.err
7395     rm -f conftest.er1
7396     cat conftest.err >&5
7397     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7398 pcg 1.33 (exit $ac_status); } >/dev/null && {
7399     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
7400     test ! -s conftest.err
7401     }; then
7402 pcg 1.1 # Broken: success on invalid input.
7403     continue
7404     else
7405     echo "$as_me: failed program was:" >&5
7406     sed 's/^/| /' conftest.$ac_ext >&5
7407    
7408     # Passes both tests.
7409     ac_preproc_ok=:
7410     break
7411     fi
7412 pcg 1.33
7413 pcg 1.1 rm -f conftest.err conftest.$ac_ext
7414    
7415     done
7416     # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
7417     rm -f conftest.err conftest.$ac_ext
7418     if $ac_preproc_ok; then
7419     :
7420     else
7421     { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check
7422     See \`config.log' for more details." >&5
7423     echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check
7424     See \`config.log' for more details." >&2;}
7425     { (exit 1); exit 1; }; }
7426     fi
7427    
7428 pcg 1.33 ac_ext=cpp
7429 pcg 1.1 ac_cpp='$CXXCPP $CPPFLAGS'
7430     ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
7431     ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
7432     ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
7433    
7434    
7435 pcg 1.33 { echo "$as_me:$LINENO: checking for ANSI C header files" >&5
7436     echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
7437 pcg 1.1 if test "${ac_cv_header_stdc+set}" = set; then
7438     echo $ECHO_N "(cached) $ECHO_C" >&6
7439     else
7440     cat >conftest.$ac_ext <<_ACEOF
7441     /* confdefs.h. */
7442     _ACEOF
7443     cat confdefs.h >>conftest.$ac_ext
7444     cat >>conftest.$ac_ext <<_ACEOF
7445     /* end confdefs.h. */
7446     #include <stdlib.h>
7447     #include <stdarg.h>
7448     #include <string.h>
7449     #include <float.h>
7450    
7451     int
7452     main ()
7453     {
7454    
7455     ;
7456     return 0;
7457     }
7458     _ACEOF
7459     rm -f conftest.$ac_objext
7460 pcg 1.33 if { (ac_try="$ac_compile"
7461     case "(($ac_try" in
7462     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7463     *) ac_try_echo=$ac_try;;
7464     esac
7465     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7466     (eval "$ac_compile") 2>conftest.er1
7467 pcg 1.1 ac_status=$?
7468 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
7469     rm -f conftest.er1
7470     cat conftest.err >&5
7471 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7472 pcg 1.33 (exit $ac_status); } && {
7473     test -z "$ac_cxx_werror_flag" ||
7474     test ! -s conftest.err
7475     } && test -s conftest.$ac_objext; then
7476 pcg 1.1 ac_cv_header_stdc=yes
7477     else
7478     echo "$as_me: failed program was:" >&5
7479     sed 's/^/| /' conftest.$ac_ext >&5
7480    
7481 pcg 1.33 ac_cv_header_stdc=no
7482 pcg 1.1 fi
7483 pcg 1.33
7484     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7485 pcg 1.1
7486     if test $ac_cv_header_stdc = yes; then
7487     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
7488     cat >conftest.$ac_ext <<_ACEOF
7489     /* confdefs.h. */
7490     _ACEOF
7491     cat confdefs.h >>conftest.$ac_ext
7492     cat >>conftest.$ac_ext <<_ACEOF
7493     /* end confdefs.h. */
7494     #include <string.h>
7495    
7496     _ACEOF
7497     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
7498     $EGREP "memchr" >/dev/null 2>&1; then
7499     :
7500     else
7501     ac_cv_header_stdc=no
7502     fi
7503     rm -f conftest*
7504    
7505     fi
7506    
7507     if test $ac_cv_header_stdc = yes; then
7508     # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
7509     cat >conftest.$ac_ext <<_ACEOF
7510     /* confdefs.h. */
7511     _ACEOF
7512     cat confdefs.h >>conftest.$ac_ext
7513     cat >>conftest.$ac_ext <<_ACEOF
7514     /* end confdefs.h. */
7515     #include <stdlib.h>
7516    
7517     _ACEOF
7518     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
7519     $EGREP "free" >/dev/null 2>&1; then
7520     :
7521     else
7522     ac_cv_header_stdc=no
7523     fi
7524     rm -f conftest*
7525    
7526     fi
7527    
7528     if test $ac_cv_header_stdc = yes; then
7529     # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
7530     if test "$cross_compiling" = yes; then
7531     :
7532     else
7533     cat >conftest.$ac_ext <<_ACEOF
7534     /* confdefs.h. */
7535     _ACEOF
7536     cat confdefs.h >>conftest.$ac_ext
7537     cat >>conftest.$ac_ext <<_ACEOF
7538     /* end confdefs.h. */
7539     #include <ctype.h>
7540 pcg 1.33 #include <stdlib.h>
7541 pcg 1.1 #if ((' ' & 0x0FF) == 0x020)
7542     # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
7543     # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
7544     #else
7545     # define ISLOWER(c) \
7546 pcg 1.11 (('a' <= (c) && (c) <= 'i') \
7547     || ('j' <= (c) && (c) <= 'r') \
7548     || ('s' <= (c) && (c) <= 'z'))
7549 pcg 1.1 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
7550     #endif
7551    
7552     #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
7553     int
7554     main ()
7555     {
7556     int i;
7557     for (i = 0; i < 256; i++)
7558     if (XOR (islower (i), ISLOWER (i))
7559 pcg 1.11 || toupper (i) != TOUPPER (i))
7560 pcg 1.33 return 2;
7561     return 0;
7562 pcg 1.1 }
7563     _ACEOF
7564     rm -f conftest$ac_exeext
7565 pcg 1.33 if { (ac_try="$ac_link"
7566     case "(($ac_try" in
7567     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7568     *) ac_try_echo=$ac_try;;
7569     esac
7570     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7571     (eval "$ac_link") 2>&5
7572 pcg 1.1 ac_status=$?
7573     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7574     (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
7575 pcg 1.33 { (case "(($ac_try" in
7576     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7577     *) ac_try_echo=$ac_try;;
7578     esac
7579     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7580     (eval "$ac_try") 2>&5
7581 pcg 1.1 ac_status=$?
7582     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7583     (exit $ac_status); }; }; then
7584     :
7585     else
7586     echo "$as_me: program exited with status $ac_status" >&5
7587     echo "$as_me: failed program was:" >&5
7588     sed 's/^/| /' conftest.$ac_ext >&5
7589    
7590     ( exit $ac_status )
7591     ac_cv_header_stdc=no
7592     fi
7593 pcg 1.33 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
7594 pcg 1.1 fi
7595 pcg 1.33
7596    
7597 pcg 1.1 fi
7598     fi
7599 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
7600     echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
7601 pcg 1.1 if test $ac_cv_header_stdc = yes; then
7602    
7603     cat >>confdefs.h <<\_ACEOF
7604     #define STDC_HEADERS 1
7605     _ACEOF
7606    
7607     fi
7608    
7609     # On IRIX 5.3, sys/types and inttypes.h are conflicting.
7610    
7611    
7612    
7613    
7614    
7615    
7616    
7617    
7618    
7619     for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
7620 pcg 1.11 inttypes.h stdint.h unistd.h
7621 pcg 1.1 do
7622     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7623 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_header" >&5
7624     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7625     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7626 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
7627     else
7628     cat >conftest.$ac_ext <<_ACEOF
7629     /* confdefs.h. */
7630     _ACEOF
7631     cat confdefs.h >>conftest.$ac_ext
7632     cat >>conftest.$ac_ext <<_ACEOF
7633     /* end confdefs.h. */
7634     $ac_includes_default
7635    
7636     #include <$ac_header>
7637     _ACEOF
7638     rm -f conftest.$ac_objext
7639 pcg 1.33 if { (ac_try="$ac_compile"
7640     case "(($ac_try" in
7641     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7642     *) ac_try_echo=$ac_try;;
7643     esac
7644     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7645     (eval "$ac_compile") 2>conftest.er1
7646 pcg 1.1 ac_status=$?
7647 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
7648     rm -f conftest.er1
7649     cat conftest.err >&5
7650 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7651 pcg 1.33 (exit $ac_status); } && {
7652     test -z "$ac_cxx_werror_flag" ||
7653     test ! -s conftest.err
7654     } && test -s conftest.$ac_objext; then
7655 pcg 1.1 eval "$as_ac_Header=yes"
7656     else
7657     echo "$as_me: failed program was:" >&5
7658     sed 's/^/| /' conftest.$ac_ext >&5
7659    
7660 pcg 1.33 eval "$as_ac_Header=no"
7661 pcg 1.1 fi
7662 pcg 1.33
7663     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7664 pcg 1.1 fi
7665 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
7666     { echo "$as_me:$LINENO: result: $ac_res" >&5
7667     echo "${ECHO_T}$ac_res" >&6; }
7668 pcg 1.1 if test `eval echo '${'$as_ac_Header'}'` = yes; then
7669     cat >>confdefs.h <<_ACEOF
7670     #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
7671     _ACEOF
7672    
7673     fi
7674    
7675     done
7676    
7677    
7678    
7679 pcg 1.26
7680 pcg 1.38
7681     for ac_header in tr1/unordered_map ext/hash_map clocale
7682 pcg 1.1 do
7683     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7684 pcg 1.33 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7685     { echo "$as_me:$LINENO: checking for $ac_header" >&5
7686     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7687     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7688 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
7689     fi
7690 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
7691     { echo "$as_me:$LINENO: result: $ac_res" >&5
7692     echo "${ECHO_T}$ac_res" >&6; }
7693 pcg 1.1 else
7694     # Is the header compilable?
7695 pcg 1.33 { echo "$as_me:$LINENO: checking $ac_header usability" >&5
7696     echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
7697 pcg 1.1 cat >conftest.$ac_ext <<_ACEOF
7698     /* confdefs.h. */
7699     _ACEOF
7700     cat confdefs.h >>conftest.$ac_ext
7701     cat >>conftest.$ac_ext <<_ACEOF
7702     /* end confdefs.h. */
7703     $ac_includes_default
7704     #include <$ac_header>
7705     _ACEOF
7706     rm -f conftest.$ac_objext
7707 pcg 1.33 if { (ac_try="$ac_compile"
7708     case "(($ac_try" in
7709     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7710     *) ac_try_echo=$ac_try;;
7711     esac
7712     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7713     (eval "$ac_compile") 2>conftest.er1
7714 pcg 1.1 ac_status=$?
7715 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
7716     rm -f conftest.er1
7717     cat conftest.err >&5
7718 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7719 pcg 1.33 (exit $ac_status); } && {
7720     test -z "$ac_cxx_werror_flag" ||
7721     test ! -s conftest.err
7722     } && test -s conftest.$ac_objext; then
7723 pcg 1.1 ac_header_compiler=yes
7724     else
7725     echo "$as_me: failed program was:" >&5
7726     sed 's/^/| /' conftest.$ac_ext >&5
7727    
7728 pcg 1.33 ac_header_compiler=no
7729 pcg 1.1 fi
7730 pcg 1.33
7731     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7732     { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
7733     echo "${ECHO_T}$ac_header_compiler" >&6; }
7734 pcg 1.1
7735     # Is the header present?
7736 pcg 1.33 { echo "$as_me:$LINENO: checking $ac_header presence" >&5
7737     echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
7738 pcg 1.1 cat >conftest.$ac_ext <<_ACEOF
7739     /* confdefs.h. */
7740     _ACEOF
7741     cat confdefs.h >>conftest.$ac_ext
7742     cat >>conftest.$ac_ext <<_ACEOF
7743     /* end confdefs.h. */
7744     #include <$ac_header>
7745     _ACEOF
7746 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
7747     case "(($ac_try" in
7748     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7749     *) ac_try_echo=$ac_try;;
7750     esac
7751     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7752     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7753 pcg 1.1 ac_status=$?
7754     grep -v '^ *+' conftest.er1 >conftest.err
7755     rm -f conftest.er1
7756     cat conftest.err >&5
7757     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7758 pcg 1.33 (exit $ac_status); } >/dev/null && {
7759     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
7760     test ! -s conftest.err
7761     }; then
7762 pcg 1.1 ac_header_preproc=yes
7763     else
7764     echo "$as_me: failed program was:" >&5
7765     sed 's/^/| /' conftest.$ac_ext >&5
7766    
7767     ac_header_preproc=no
7768     fi
7769 pcg 1.33
7770 pcg 1.1 rm -f conftest.err conftest.$ac_ext
7771 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
7772     echo "${ECHO_T}$ac_header_preproc" >&6; }
7773 pcg 1.1
7774     # So? What about this header?
7775 pcg 1.11 case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in
7776     yes:no: )
7777 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
7778     echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
7779 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
7780     echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
7781     ac_header_preproc=yes
7782 pcg 1.1 ;;
7783 pcg 1.11 no:yes:* )
7784 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
7785     echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
7786 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
7787     echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
7788     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
7789     echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
7790     { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
7791     echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
7792 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
7793     echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
7794 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
7795     echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
7796 pcg 1.33
7797 pcg 1.1 ;;
7798     esac
7799 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_header" >&5
7800     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7801     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7802 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
7803     else
7804 pcg 1.11 eval "$as_ac_Header=\$ac_header_preproc"
7805 pcg 1.1 fi
7806 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
7807     { echo "$as_me:$LINENO: result: $ac_res" >&5
7808     echo "${ECHO_T}$ac_res" >&6; }
7809 pcg 1.1
7810     fi
7811     if test `eval echo '${'$as_ac_Header'}'` = yes; then
7812     cat >>confdefs.h <<_ACEOF
7813     #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
7814     _ACEOF
7815    
7816     fi
7817    
7818     done
7819    
7820    
7821    
7822    
7823    
7824    
7825    
7826    
7827    
7828    
7829    
7830    
7831    
7832    
7833    
7834    
7835    
7836    
7837     for ac_header in fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
7838 pcg 1.13 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h \
7839 pcg 1.11 sys/mman.h netinet/in.h
7840 pcg 1.1 do
7841     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7842 pcg 1.33 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7843     { echo "$as_me:$LINENO: checking for $ac_header" >&5
7844     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7845     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7846 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
7847     fi
7848 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
7849     { echo "$as_me:$LINENO: result: $ac_res" >&5
7850     echo "${ECHO_T}$ac_res" >&6; }
7851 pcg 1.1 else
7852     # Is the header compilable?
7853 pcg 1.33 { echo "$as_me:$LINENO: checking $ac_header usability" >&5
7854     echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
7855 pcg 1.1 cat >conftest.$ac_ext <<_ACEOF
7856     /* confdefs.h. */
7857     _ACEOF
7858     cat confdefs.h >>conftest.$ac_ext
7859     cat >>conftest.$ac_ext <<_ACEOF
7860     /* end confdefs.h. */
7861     $ac_includes_default
7862     #include <$ac_header>
7863     _ACEOF
7864     rm -f conftest.$ac_objext
7865 pcg 1.33 if { (ac_try="$ac_compile"
7866     case "(($ac_try" in
7867     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7868     *) ac_try_echo=$ac_try;;
7869     esac
7870     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7871     (eval "$ac_compile") 2>conftest.er1
7872 pcg 1.1 ac_status=$?
7873 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
7874     rm -f conftest.er1
7875     cat conftest.err >&5
7876 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7877 pcg 1.33 (exit $ac_status); } && {
7878     test -z "$ac_cxx_werror_flag" ||
7879     test ! -s conftest.err
7880     } && test -s conftest.$ac_objext; then
7881 pcg 1.1 ac_header_compiler=yes
7882     else
7883     echo "$as_me: failed program was:" >&5
7884     sed 's/^/| /' conftest.$ac_ext >&5
7885    
7886 pcg 1.33 ac_header_compiler=no
7887 pcg 1.1 fi
7888 pcg 1.33
7889     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7890     { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
7891     echo "${ECHO_T}$ac_header_compiler" >&6; }
7892 pcg 1.1
7893     # Is the header present?
7894 pcg 1.33 { echo "$as_me:$LINENO: checking $ac_header presence" >&5
7895     echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
7896 pcg 1.1 cat >conftest.$ac_ext <<_ACEOF
7897     /* confdefs.h. */
7898     _ACEOF
7899     cat confdefs.h >>conftest.$ac_ext
7900     cat >>conftest.$ac_ext <<_ACEOF
7901     /* end confdefs.h. */
7902     #include <$ac_header>
7903     _ACEOF
7904 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
7905     case "(($ac_try" in
7906     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
7907     *) ac_try_echo=$ac_try;;
7908     esac
7909     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
7910     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
7911 pcg 1.1 ac_status=$?
7912     grep -v '^ *+' conftest.er1 >conftest.err
7913     rm -f conftest.er1
7914     cat conftest.err >&5
7915     echo "$as_me:$LINENO: \$? = $ac_status" >&5
7916 pcg 1.33 (exit $ac_status); } >/dev/null && {
7917     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
7918     test ! -s conftest.err
7919     }; then
7920 pcg 1.1 ac_header_preproc=yes
7921     else
7922     echo "$as_me: failed program was:" >&5
7923     sed 's/^/| /' conftest.$ac_ext >&5
7924    
7925     ac_header_preproc=no
7926     fi
7927 pcg 1.33
7928 pcg 1.1 rm -f conftest.err conftest.$ac_ext
7929 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
7930     echo "${ECHO_T}$ac_header_preproc" >&6; }
7931 pcg 1.1
7932     # So? What about this header?
7933 pcg 1.11 case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in
7934     yes:no: )
7935 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
7936     echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
7937 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
7938     echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
7939     ac_header_preproc=yes
7940 pcg 1.1 ;;
7941 pcg 1.11 no:yes:* )
7942 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
7943     echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
7944 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
7945     echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
7946     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
7947     echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
7948     { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
7949     echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
7950 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
7951     echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
7952 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
7953     echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
7954 pcg 1.33
7955 pcg 1.1 ;;
7956     esac
7957 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_header" >&5
7958     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7959     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7960 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
7961     else
7962 pcg 1.11 eval "$as_ac_Header=\$ac_header_preproc"
7963 pcg 1.1 fi
7964 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
7965     { echo "$as_me:$LINENO: result: $ac_res" >&5
7966     echo "${ECHO_T}$ac_res" >&6; }
7967 pcg 1.1
7968     fi
7969     if test `eval echo '${'$as_ac_Header'}'` = yes; then
7970     cat >>confdefs.h <<_ACEOF
7971     #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
7972     _ACEOF
7973    
7974     fi
7975    
7976     done
7977    
7978    
7979    
7980    
7981    
7982    
7983 pcg 1.13
7984     for ac_header in arpa/inet.h net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h
7985 pcg 1.1 do
7986     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7987 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_header" >&5
7988     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
7989     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
7990 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
7991     else
7992     cat >conftest.$ac_ext <<_ACEOF
7993     /* confdefs.h. */
7994     _ACEOF
7995     cat confdefs.h >>conftest.$ac_ext
7996     cat >>conftest.$ac_ext <<_ACEOF
7997     /* end confdefs.h. */
7998    
7999     #include <sys/types.h>
8000     #include <sys/socket.h>
8001     #ifdef HAVE_NETINET_IN_H
8002     # include <netinet/in.h>
8003     #endif
8004     #ifdef HAVE_ARPA_INET_H
8005     # include <arpa/inet.h>
8006     #endif
8007     #ifdef HAVE_NETINET_IN_SYSTM_H
8008     # include <netinet/in_systm.h>
8009     #endif
8010    
8011    
8012     #include <$ac_header>
8013     _ACEOF
8014     rm -f conftest.$ac_objext
8015 pcg 1.33 if { (ac_try="$ac_compile"
8016     case "(($ac_try" in
8017     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8018     *) ac_try_echo=$ac_try;;
8019     esac
8020     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8021     (eval "$ac_compile") 2>conftest.er1
8022 pcg 1.1 ac_status=$?
8023 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8024     rm -f conftest.er1
8025     cat conftest.err >&5
8026 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8027 pcg 1.33 (exit $ac_status); } && {
8028     test -z "$ac_cxx_werror_flag" ||
8029     test ! -s conftest.err
8030     } && test -s conftest.$ac_objext; then
8031 pcg 1.1 eval "$as_ac_Header=yes"
8032     else
8033     echo "$as_me: failed program was:" >&5
8034     sed 's/^/| /' conftest.$ac_ext >&5
8035    
8036 pcg 1.33 eval "$as_ac_Header=no"
8037 pcg 1.1 fi
8038 pcg 1.33
8039     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8040 pcg 1.1 fi
8041 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
8042     { echo "$as_me:$LINENO: result: $ac_res" >&5
8043     echo "${ECHO_T}$ac_res" >&6; }
8044 pcg 1.1 if test `eval echo '${'$as_ac_Header'}'` = yes; then
8045     cat >>confdefs.h <<_ACEOF
8046     #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
8047     _ACEOF
8048    
8049     fi
8050    
8051     done
8052    
8053    
8054 pcg 1.33 { echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
8055     echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; }
8056 pcg 1.1 if test "${ac_cv_c_const+set}" = set; then
8057     echo $ECHO_N "(cached) $ECHO_C" >&6
8058     else
8059     cat >conftest.$ac_ext <<_ACEOF
8060     /* confdefs.h. */
8061     _ACEOF
8062     cat confdefs.h >>conftest.$ac_ext
8063     cat >>conftest.$ac_ext <<_ACEOF
8064     /* end confdefs.h. */
8065    
8066     int
8067     main ()
8068     {
8069     /* FIXME: Include the comments suggested by Paul. */
8070     #ifndef __cplusplus
8071     /* Ultrix mips cc rejects this. */
8072     typedef int charset[2];
8073 pcg 1.33 const charset cs;
8074 pcg 1.1 /* SunOS 4.1.1 cc rejects this. */
8075 pcg 1.33 char const *const *pcpcc;
8076     char **ppc;
8077 pcg 1.1 /* NEC SVR4.0.2 mips cc rejects this. */
8078     struct point {int x, y;};
8079     static struct point const zero = {0,0};
8080     /* AIX XL C 1.02.0.0 rejects this.
8081     It does not let you subtract one const X* pointer from another in
8082     an arm of an if-expression whose if-part is not a constant
8083     expression */
8084     const char *g = "string";
8085 pcg 1.33 pcpcc = &g + (g ? g-g : 0);
8086 pcg 1.1 /* HPUX 7.0 cc rejects these. */
8087 pcg 1.33 ++pcpcc;
8088     ppc = (char**) pcpcc;
8089     pcpcc = (char const *const *) ppc;
8090 pcg 1.1 { /* SCO 3.2v4 cc rejects this. */
8091     char *t;
8092     char const *s = 0 ? (char *) 0 : (char const *) 0;
8093    
8094     *t++ = 0;
8095 pcg 1.33 if (s) return 0;
8096 pcg 1.1 }
8097     { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
8098     int x[] = {25, 17};
8099     const int *foo = &x[0];
8100     ++foo;
8101     }
8102     { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
8103     typedef const int *iptr;
8104     iptr p = 0;
8105     ++p;
8106     }
8107     { /* AIX XL C 1.02.0.0 rejects this saying
8108     "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
8109     struct s { int j; const int *ap[3]; };
8110     struct s *b; b->j = 5;
8111     }
8112     { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
8113     const int foo = 10;
8114 pcg 1.33 if (!foo) return 0;
8115 pcg 1.1 }
8116 pcg 1.33 return !cs[0] && !zero.x;
8117 pcg 1.1 #endif
8118    
8119     ;
8120     return 0;
8121     }
8122     _ACEOF
8123     rm -f conftest.$ac_objext
8124 pcg 1.33 if { (ac_try="$ac_compile"
8125     case "(($ac_try" in
8126     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8127     *) ac_try_echo=$ac_try;;
8128     esac
8129     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8130     (eval "$ac_compile") 2>conftest.er1
8131 pcg 1.1 ac_status=$?
8132 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8133     rm -f conftest.er1
8134     cat conftest.err >&5
8135 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8136 pcg 1.33 (exit $ac_status); } && {
8137     test -z "$ac_cxx_werror_flag" ||
8138     test ! -s conftest.err
8139     } && test -s conftest.$ac_objext; then
8140 pcg 1.1 ac_cv_c_const=yes
8141     else
8142     echo "$as_me: failed program was:" >&5
8143     sed 's/^/| /' conftest.$ac_ext >&5
8144    
8145 pcg 1.33 ac_cv_c_const=no
8146 pcg 1.1 fi
8147 pcg 1.33
8148     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8149 pcg 1.1 fi
8150 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
8151     echo "${ECHO_T}$ac_cv_c_const" >&6; }
8152 pcg 1.1 if test $ac_cv_c_const = no; then
8153    
8154     cat >>confdefs.h <<\_ACEOF
8155     #define const
8156     _ACEOF
8157    
8158     fi
8159    
8160 pcg 1.33 { echo "$as_me:$LINENO: checking for pid_t" >&5
8161     echo $ECHO_N "checking for pid_t... $ECHO_C" >&6; }
8162 pcg 1.1 if test "${ac_cv_type_pid_t+set}" = set; then
8163     echo $ECHO_N "(cached) $ECHO_C" >&6
8164     else
8165     cat >conftest.$ac_ext <<_ACEOF
8166     /* confdefs.h. */
8167     _ACEOF
8168     cat confdefs.h >>conftest.$ac_ext
8169     cat >>conftest.$ac_ext <<_ACEOF
8170     /* end confdefs.h. */
8171     $ac_includes_default
8172 pcg 1.33 typedef pid_t ac__type_new_;
8173 pcg 1.1 int
8174     main ()
8175     {
8176 pcg 1.33 if ((ac__type_new_ *) 0)
8177 pcg 1.1 return 0;
8178 pcg 1.33 if (sizeof (ac__type_new_))
8179 pcg 1.1 return 0;
8180     ;
8181     return 0;
8182     }
8183     _ACEOF
8184     rm -f conftest.$ac_objext
8185 pcg 1.33 if { (ac_try="$ac_compile"
8186     case "(($ac_try" in
8187     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8188     *) ac_try_echo=$ac_try;;
8189     esac
8190     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8191     (eval "$ac_compile") 2>conftest.er1
8192 pcg 1.1 ac_status=$?
8193 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8194     rm -f conftest.er1
8195     cat conftest.err >&5
8196 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8197 pcg 1.33 (exit $ac_status); } && {
8198     test -z "$ac_cxx_werror_flag" ||
8199     test ! -s conftest.err
8200     } && test -s conftest.$ac_objext; then
8201 pcg 1.1 ac_cv_type_pid_t=yes
8202     else
8203     echo "$as_me: failed program was:" >&5
8204     sed 's/^/| /' conftest.$ac_ext >&5
8205    
8206 pcg 1.33 ac_cv_type_pid_t=no
8207 pcg 1.1 fi
8208 pcg 1.33
8209     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8210 pcg 1.1 fi
8211 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5
8212     echo "${ECHO_T}$ac_cv_type_pid_t" >&6; }
8213 pcg 1.1 if test $ac_cv_type_pid_t = yes; then
8214     :
8215     else
8216    
8217     cat >>confdefs.h <<_ACEOF
8218     #define pid_t int
8219     _ACEOF
8220    
8221     fi
8222    
8223 pcg 1.33 { echo "$as_me:$LINENO: checking for size_t" >&5
8224     echo $ECHO_N "checking for size_t... $ECHO_C" >&6; }
8225 pcg 1.1 if test "${ac_cv_type_size_t+set}" = set; then
8226     echo $ECHO_N "(cached) $ECHO_C" >&6
8227     else
8228     cat >conftest.$ac_ext <<_ACEOF
8229     /* confdefs.h. */
8230     _ACEOF
8231     cat confdefs.h >>conftest.$ac_ext
8232     cat >>conftest.$ac_ext <<_ACEOF
8233     /* end confdefs.h. */
8234     $ac_includes_default
8235 pcg 1.33 typedef size_t ac__type_new_;
8236 pcg 1.1 int
8237     main ()
8238     {
8239 pcg 1.33 if ((ac__type_new_ *) 0)
8240 pcg 1.1 return 0;
8241 pcg 1.33 if (sizeof (ac__type_new_))
8242 pcg 1.1 return 0;
8243     ;
8244     return 0;
8245     }
8246     _ACEOF
8247     rm -f conftest.$ac_objext
8248 pcg 1.33 if { (ac_try="$ac_compile"
8249     case "(($ac_try" in
8250     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8251     *) ac_try_echo=$ac_try;;
8252     esac
8253     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8254     (eval "$ac_compile") 2>conftest.er1
8255 pcg 1.1 ac_status=$?
8256 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8257     rm -f conftest.er1
8258     cat conftest.err >&5
8259 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8260 pcg 1.33 (exit $ac_status); } && {
8261     test -z "$ac_cxx_werror_flag" ||
8262     test ! -s conftest.err
8263     } && test -s conftest.$ac_objext; then
8264 pcg 1.1 ac_cv_type_size_t=yes
8265     else
8266     echo "$as_me: failed program was:" >&5
8267     sed 's/^/| /' conftest.$ac_ext >&5
8268    
8269 pcg 1.33 ac_cv_type_size_t=no
8270 pcg 1.1 fi
8271 pcg 1.33
8272     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8273 pcg 1.1 fi
8274 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
8275     echo "${ECHO_T}$ac_cv_type_size_t" >&6; }
8276 pcg 1.1 if test $ac_cv_type_size_t = yes; then
8277     :
8278     else
8279    
8280     cat >>confdefs.h <<_ACEOF
8281 pcg 1.33 #define size_t unsigned int
8282 pcg 1.1 _ACEOF
8283    
8284     fi
8285    
8286 pcg 1.33 { echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5
8287     echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6; }
8288 pcg 1.1 if test "${ac_cv_header_time+set}" = set; then
8289     echo $ECHO_N "(cached) $ECHO_C" >&6
8290     else
8291     cat >conftest.$ac_ext <<_ACEOF
8292     /* confdefs.h. */
8293     _ACEOF
8294     cat confdefs.h >>conftest.$ac_ext
8295     cat >>conftest.$ac_ext <<_ACEOF
8296     /* end confdefs.h. */
8297     #include <sys/types.h>
8298     #include <sys/time.h>
8299     #include <time.h>
8300    
8301     int
8302     main ()
8303     {
8304     if ((struct tm *) 0)
8305     return 0;
8306     ;
8307     return 0;
8308     }
8309     _ACEOF
8310     rm -f conftest.$ac_objext
8311 pcg 1.33 if { (ac_try="$ac_compile"
8312     case "(($ac_try" in
8313     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8314     *) ac_try_echo=$ac_try;;
8315     esac
8316     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8317     (eval "$ac_compile") 2>conftest.er1
8318 pcg 1.1 ac_status=$?
8319 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8320     rm -f conftest.er1
8321     cat conftest.err >&5
8322 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8323 pcg 1.33 (exit $ac_status); } && {
8324     test -z "$ac_cxx_werror_flag" ||
8325     test ! -s conftest.err
8326     } && test -s conftest.$ac_objext; then
8327 pcg 1.1 ac_cv_header_time=yes
8328     else
8329     echo "$as_me: failed program was:" >&5
8330     sed 's/^/| /' conftest.$ac_ext >&5
8331    
8332 pcg 1.33 ac_cv_header_time=no
8333 pcg 1.1 fi
8334 pcg 1.33
8335     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8336 pcg 1.1 fi
8337 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5
8338     echo "${ECHO_T}$ac_cv_header_time" >&6; }
8339 pcg 1.1 if test $ac_cv_header_time = yes; then
8340    
8341     cat >>confdefs.h <<\_ACEOF
8342     #define TIME_WITH_SYS_TIME 1
8343     _ACEOF
8344    
8345     fi
8346    
8347 pcg 1.33 { echo "$as_me:$LINENO: checking whether struct tm is in sys/time.h or time.h" >&5
8348     echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6; }
8349 pcg 1.1 if test "${ac_cv_struct_tm+set}" = set; then
8350     echo $ECHO_N "(cached) $ECHO_C" >&6
8351     else
8352     cat >conftest.$ac_ext <<_ACEOF
8353     /* confdefs.h. */
8354     _ACEOF
8355     cat confdefs.h >>conftest.$ac_ext
8356     cat >>conftest.$ac_ext <<_ACEOF
8357     /* end confdefs.h. */
8358     #include <sys/types.h>
8359     #include <time.h>
8360    
8361     int
8362     main ()
8363     {
8364 pcg 1.33 struct tm tm;
8365     int *p = &tm.tm_sec;
8366     return !p;
8367 pcg 1.1 ;
8368     return 0;
8369     }
8370     _ACEOF
8371     rm -f conftest.$ac_objext
8372 pcg 1.33 if { (ac_try="$ac_compile"
8373     case "(($ac_try" in
8374     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8375     *) ac_try_echo=$ac_try;;
8376     esac
8377     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8378     (eval "$ac_compile") 2>conftest.er1
8379 pcg 1.1 ac_status=$?
8380 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8381     rm -f conftest.er1
8382     cat conftest.err >&5
8383 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8384 pcg 1.33 (exit $ac_status); } && {
8385     test -z "$ac_cxx_werror_flag" ||
8386     test ! -s conftest.err
8387     } && test -s conftest.$ac_objext; then
8388 pcg 1.1 ac_cv_struct_tm=time.h
8389     else
8390     echo "$as_me: failed program was:" >&5
8391     sed 's/^/| /' conftest.$ac_ext >&5
8392    
8393 pcg 1.33 ac_cv_struct_tm=sys/time.h
8394 pcg 1.1 fi
8395 pcg 1.33
8396     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8397 pcg 1.1 fi
8398 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_struct_tm" >&5
8399     echo "${ECHO_T}$ac_cv_struct_tm" >&6; }
8400 pcg 1.1 if test $ac_cv_struct_tm = sys/time.h; then
8401    
8402     cat >>confdefs.h <<\_ACEOF
8403     #define TM_IN_SYS_TIME 1
8404     _ACEOF
8405    
8406     fi
8407    
8408    
8409 pcg 1.33 { echo "$as_me:$LINENO: checking for socklen_t" >&5
8410     echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6; }
8411 pcg 1.1 if test "${ac_cv_type_socklen_t+set}" = set; then
8412     echo $ECHO_N "(cached) $ECHO_C" >&6
8413     else
8414    
8415     cat >conftest.$ac_ext <<_ACEOF
8416     /* confdefs.h. */
8417     _ACEOF
8418     cat confdefs.h >>conftest.$ac_ext
8419     cat >>conftest.$ac_ext <<_ACEOF
8420     /* end confdefs.h. */
8421     #include <sys/types.h>
8422     #include <sys/socket.h>
8423     int
8424     main ()
8425     {
8426     socklen_t len = 42; return len;
8427     ;
8428     return 0;
8429     }
8430     _ACEOF
8431     rm -f conftest.$ac_objext
8432 pcg 1.33 if { (ac_try="$ac_compile"
8433     case "(($ac_try" in
8434     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8435     *) ac_try_echo=$ac_try;;
8436     esac
8437     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8438     (eval "$ac_compile") 2>conftest.er1
8439 pcg 1.1 ac_status=$?
8440 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8441     rm -f conftest.er1
8442     cat conftest.err >&5
8443 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8444 pcg 1.33 (exit $ac_status); } && {
8445     test -z "$ac_cxx_werror_flag" ||
8446     test ! -s conftest.err
8447     } && test -s conftest.$ac_objext; then
8448 pcg 1.1 ac_cv_type_socklen_t=yes
8449     else
8450     echo "$as_me: failed program was:" >&5
8451     sed 's/^/| /' conftest.$ac_ext >&5
8452    
8453 pcg 1.33 ac_cv_type_socklen_t=no
8454 pcg 1.1 fi
8455 pcg 1.33
8456     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8457 pcg 1.1
8458     fi
8459 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5
8460     echo "${ECHO_T}$ac_cv_type_socklen_t" >&6; }
8461 pcg 1.1 if test $ac_cv_type_socklen_t = yes; then
8462    
8463     cat >>confdefs.h <<\_ACEOF
8464     #define HAVE_SOCKLEN_T 1
8465     _ACEOF
8466    
8467     fi
8468    
8469 pcg 1.33 { echo "$as_me:$LINENO: checking for struct addrinfo" >&5
8470     echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6; }
8471 pcg 1.1 if test "${ac_cv_struct_addrinfo+set}" = set; then
8472     echo $ECHO_N "(cached) $ECHO_C" >&6
8473     else
8474    
8475     cat >conftest.$ac_ext <<_ACEOF
8476     /* confdefs.h. */
8477     _ACEOF
8478     cat confdefs.h >>conftest.$ac_ext
8479     cat >>conftest.$ac_ext <<_ACEOF
8480     /* end confdefs.h. */
8481     #include <sys/types.h>
8482     #include <sys/socket.h>
8483     #include <netdb.h>
8484     int
8485     main ()
8486     {
8487     struct addrinfo ai; ai.ai_family = AF_INET; return ai.ai_family;
8488     ;
8489     return 0;
8490     }
8491     _ACEOF
8492     rm -f conftest.$ac_objext
8493 pcg 1.33 if { (ac_try="$ac_compile"
8494     case "(($ac_try" in
8495     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8496     *) ac_try_echo=$ac_try;;
8497     esac
8498     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8499     (eval "$ac_compile") 2>conftest.er1
8500 pcg 1.1 ac_status=$?
8501 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8502     rm -f conftest.er1
8503     cat conftest.err >&5
8504 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8505 pcg 1.33 (exit $ac_status); } && {
8506     test -z "$ac_cxx_werror_flag" ||
8507     test ! -s conftest.err
8508     } && test -s conftest.$ac_objext; then
8509 pcg 1.1 ac_cv_struct_addrinfo=yes
8510     else
8511     echo "$as_me: failed program was:" >&5
8512     sed 's/^/| /' conftest.$ac_ext >&5
8513    
8514 pcg 1.33 ac_cv_struct_addrinfo=no
8515 pcg 1.1 fi
8516 pcg 1.33
8517     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8518 pcg 1.1
8519     fi
8520 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_struct_addrinfo" >&5
8521     echo "${ECHO_T}$ac_cv_struct_addrinfo" >&6; }
8522 pcg 1.1 if test $ac_cv_struct_addrinfo = yes; then
8523    
8524     cat >>confdefs.h <<\_ACEOF
8525     #define HAVE_STRUCT_ADDRINFO 1
8526     _ACEOF
8527    
8528     fi
8529    
8530 pcg 1.33 { echo "$as_me:$LINENO: checking return type of signal handlers" >&5
8531     echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6; }
8532 pcg 1.1 if test "${ac_cv_type_signal+set}" = set; then
8533     echo $ECHO_N "(cached) $ECHO_C" >&6
8534     else
8535     cat >conftest.$ac_ext <<_ACEOF
8536     /* confdefs.h. */
8537     _ACEOF
8538     cat confdefs.h >>conftest.$ac_ext
8539     cat >>conftest.$ac_ext <<_ACEOF
8540     /* end confdefs.h. */
8541     #include <sys/types.h>
8542     #include <signal.h>
8543    
8544     int
8545     main ()
8546     {
8547 pcg 1.33 return *(signal (0, 0)) (0) == 1;
8548 pcg 1.1 ;
8549     return 0;
8550     }
8551     _ACEOF
8552     rm -f conftest.$ac_objext
8553 pcg 1.33 if { (ac_try="$ac_compile"
8554     case "(($ac_try" in
8555     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8556     *) ac_try_echo=$ac_try;;
8557     esac
8558     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8559     (eval "$ac_compile") 2>conftest.er1
8560 pcg 1.1 ac_status=$?
8561 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8562     rm -f conftest.er1
8563     cat conftest.err >&5
8564 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8565 pcg 1.33 (exit $ac_status); } && {
8566     test -z "$ac_cxx_werror_flag" ||
8567     test ! -s conftest.err
8568     } && test -s conftest.$ac_objext; then
8569     ac_cv_type_signal=int
8570 pcg 1.1 else
8571     echo "$as_me: failed program was:" >&5
8572     sed 's/^/| /' conftest.$ac_ext >&5
8573    
8574 pcg 1.33 ac_cv_type_signal=void
8575 pcg 1.1 fi
8576 pcg 1.33
8577     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8578 pcg 1.1 fi
8579 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5
8580     echo "${ECHO_T}$ac_cv_type_signal" >&6; }
8581 pcg 1.1
8582     cat >>confdefs.h <<_ACEOF
8583     #define RETSIGTYPE $ac_cv_type_signal
8584     _ACEOF
8585    
8586    
8587    
8588     ac_ext=c
8589     ac_cpp='$CPP $CPPFLAGS'
8590     ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
8591     ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
8592     ac_compiler_gnu=$ac_cv_c_compiler_gnu
8593    
8594    
8595 pcg 1.33 { echo "$as_me:$LINENO: checking for ANSI C header files" >&5
8596     echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
8597 pcg 1.1 if test "${ac_cv_header_stdc+set}" = set; then
8598     echo $ECHO_N "(cached) $ECHO_C" >&6
8599     else
8600     cat >conftest.$ac_ext <<_ACEOF
8601     /* confdefs.h. */
8602     _ACEOF
8603     cat confdefs.h >>conftest.$ac_ext
8604     cat >>conftest.$ac_ext <<_ACEOF
8605     /* end confdefs.h. */
8606     #include <stdlib.h>
8607     #include <stdarg.h>
8608     #include <string.h>
8609     #include <float.h>
8610    
8611     int
8612     main ()
8613     {
8614    
8615     ;
8616     return 0;
8617     }
8618     _ACEOF
8619     rm -f conftest.$ac_objext
8620 pcg 1.33 if { (ac_try="$ac_compile"
8621     case "(($ac_try" in
8622     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8623     *) ac_try_echo=$ac_try;;
8624     esac
8625     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8626     (eval "$ac_compile") 2>conftest.er1
8627 pcg 1.1 ac_status=$?
8628 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8629     rm -f conftest.er1
8630     cat conftest.err >&5
8631 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8632 pcg 1.33 (exit $ac_status); } && {
8633     test -z "$ac_c_werror_flag" ||
8634     test ! -s conftest.err
8635     } && test -s conftest.$ac_objext; then
8636     ac_cv_header_stdc=yes
8637     else
8638 pcg 1.1 echo "$as_me: failed program was:" >&5
8639     sed 's/^/| /' conftest.$ac_ext >&5
8640    
8641 pcg 1.33 ac_cv_header_stdc=no
8642 pcg 1.1 fi
8643 pcg 1.33
8644     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8645 pcg 1.1
8646     if test $ac_cv_header_stdc = yes; then
8647     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
8648     cat >conftest.$ac_ext <<_ACEOF
8649     /* confdefs.h. */
8650     _ACEOF
8651     cat confdefs.h >>conftest.$ac_ext
8652     cat >>conftest.$ac_ext <<_ACEOF
8653     /* end confdefs.h. */
8654     #include <string.h>
8655    
8656     _ACEOF
8657     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
8658     $EGREP "memchr" >/dev/null 2>&1; then
8659     :
8660     else
8661     ac_cv_header_stdc=no
8662     fi
8663     rm -f conftest*
8664    
8665     fi
8666    
8667     if test $ac_cv_header_stdc = yes; then
8668     # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
8669     cat >conftest.$ac_ext <<_ACEOF
8670     /* confdefs.h. */
8671     _ACEOF
8672     cat confdefs.h >>conftest.$ac_ext
8673     cat >>conftest.$ac_ext <<_ACEOF
8674     /* end confdefs.h. */
8675     #include <stdlib.h>
8676    
8677     _ACEOF
8678     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
8679     $EGREP "free" >/dev/null 2>&1; then
8680     :
8681     else
8682     ac_cv_header_stdc=no
8683     fi
8684     rm -f conftest*
8685    
8686     fi
8687    
8688     if test $ac_cv_header_stdc = yes; then
8689     # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
8690     if test "$cross_compiling" = yes; then
8691     :
8692     else
8693     cat >conftest.$ac_ext <<_ACEOF
8694     /* confdefs.h. */
8695     _ACEOF
8696     cat confdefs.h >>conftest.$ac_ext
8697     cat >>conftest.$ac_ext <<_ACEOF
8698     /* end confdefs.h. */
8699     #include <ctype.h>
8700 pcg 1.33 #include <stdlib.h>
8701 pcg 1.1 #if ((' ' & 0x0FF) == 0x020)
8702     # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
8703     # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
8704     #else
8705     # define ISLOWER(c) \
8706 pcg 1.11 (('a' <= (c) && (c) <= 'i') \
8707     || ('j' <= (c) && (c) <= 'r') \
8708     || ('s' <= (c) && (c) <= 'z'))
8709 pcg 1.1 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
8710     #endif
8711    
8712     #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
8713     int
8714     main ()
8715     {
8716     int i;
8717     for (i = 0; i < 256; i++)
8718     if (XOR (islower (i), ISLOWER (i))
8719 pcg 1.11 || toupper (i) != TOUPPER (i))
8720 pcg 1.33 return 2;
8721     return 0;
8722 pcg 1.1 }
8723     _ACEOF
8724     rm -f conftest$ac_exeext
8725 pcg 1.33 if { (ac_try="$ac_link"
8726     case "(($ac_try" in
8727     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8728     *) ac_try_echo=$ac_try;;
8729     esac
8730     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8731     (eval "$ac_link") 2>&5
8732 pcg 1.1 ac_status=$?
8733     echo "$as_me:$LINENO: \$? = $ac_status" >&5
8734     (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
8735 pcg 1.33 { (case "(($ac_try" in
8736     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8737     *) ac_try_echo=$ac_try;;
8738     esac
8739     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8740     (eval "$ac_try") 2>&5
8741 pcg 1.1 ac_status=$?
8742     echo "$as_me:$LINENO: \$? = $ac_status" >&5
8743     (exit $ac_status); }; }; then
8744     :
8745     else
8746     echo "$as_me: program exited with status $ac_status" >&5
8747     echo "$as_me: failed program was:" >&5
8748     sed 's/^/| /' conftest.$ac_ext >&5
8749    
8750     ( exit $ac_status )
8751     ac_cv_header_stdc=no
8752     fi
8753 pcg 1.33 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
8754 pcg 1.1 fi
8755 pcg 1.33
8756    
8757 pcg 1.1 fi
8758     fi
8759 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
8760     echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
8761 pcg 1.1 if test $ac_cv_header_stdc = yes; then
8762    
8763     cat >>confdefs.h <<\_ACEOF
8764     #define STDC_HEADERS 1
8765     _ACEOF
8766    
8767     fi
8768    
8769    
8770    
8771    
8772    
8773    
8774    
8775    
8776    
8777    
8778    
8779    
8780 pcg 1.11 for ac_func in asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall
8781 pcg 1.1 do
8782     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
8783 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_func" >&5
8784     echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
8785     if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
8786 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
8787     else
8788     cat >conftest.$ac_ext <<_ACEOF
8789     /* confdefs.h. */
8790     _ACEOF
8791     cat confdefs.h >>conftest.$ac_ext
8792     cat >>conftest.$ac_ext <<_ACEOF
8793     /* end confdefs.h. */
8794 pcg 1.11 /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
8795     For example, HP-UX 11i <limits.h> declares gettimeofday. */
8796     #define $ac_func innocuous_$ac_func
8797    
8798 pcg 1.1 /* System header to define __stub macros and hopefully few prototypes,
8799     which can conflict with char $ac_func (); below.
8800     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8801     <limits.h> exists even on freestanding compilers. */
8802 pcg 1.11
8803 pcg 1.1 #ifdef __STDC__
8804     # include <limits.h>
8805     #else
8806     # include <assert.h>
8807     #endif
8808 pcg 1.11
8809     #undef $ac_func
8810    
8811 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
8812     Use char because int might match the return type of a GCC
8813     builtin and then its argument prototype would still apply. */
8814 pcg 1.1 #ifdef __cplusplus
8815     extern "C"
8816     #endif
8817     char $ac_func ();
8818     /* The GNU C library defines this for functions which it implements
8819     to always fail with ENOSYS. Some functions are actually named
8820     something starting with __ and the normal name is an alias. */
8821 pcg 1.33 #if defined __stub_$ac_func || defined __stub___$ac_func
8822 pcg 1.1 choke me
8823     #endif
8824    
8825     int
8826     main ()
8827     {
8828 pcg 1.33 return $ac_func ();
8829 pcg 1.1 ;
8830     return 0;
8831     }
8832     _ACEOF
8833     rm -f conftest.$ac_objext conftest$ac_exeext
8834 pcg 1.33 if { (ac_try="$ac_link"
8835     case "(($ac_try" in
8836     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8837     *) ac_try_echo=$ac_try;;
8838     esac
8839     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8840     (eval "$ac_link") 2>conftest.er1
8841 pcg 1.1 ac_status=$?
8842 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8843     rm -f conftest.er1
8844     cat conftest.err >&5
8845 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8846 pcg 1.33 (exit $ac_status); } && {
8847     test -z "$ac_c_werror_flag" ||
8848     test ! -s conftest.err
8849     } && test -s conftest$ac_exeext &&
8850     $as_test_x conftest$ac_exeext; then
8851 pcg 1.1 eval "$as_ac_var=yes"
8852     else
8853     echo "$as_me: failed program was:" >&5
8854     sed 's/^/| /' conftest.$ac_ext >&5
8855    
8856 pcg 1.33 eval "$as_ac_var=no"
8857 pcg 1.1 fi
8858 pcg 1.33
8859     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8860 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
8861 pcg 1.1 fi
8862 pcg 1.33 ac_res=`eval echo '${'$as_ac_var'}'`
8863     { echo "$as_me:$LINENO: result: $ac_res" >&5
8864     echo "${ECHO_T}$ac_res" >&6; }
8865 pcg 1.1 if test `eval echo '${'$as_ac_var'}'` = yes; then
8866     cat >>confdefs.h <<_ACEOF
8867     #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
8868     _ACEOF
8869    
8870     fi
8871     done
8872    
8873    
8874     # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
8875     # for constant arguments. Useless!
8876 pcg 1.33 { echo "$as_me:$LINENO: checking for working alloca.h" >&5
8877     echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6; }
8878 pcg 1.1 if test "${ac_cv_working_alloca_h+set}" = set; then
8879     echo $ECHO_N "(cached) $ECHO_C" >&6
8880     else
8881     cat >conftest.$ac_ext <<_ACEOF
8882     /* confdefs.h. */
8883     _ACEOF
8884     cat confdefs.h >>conftest.$ac_ext
8885     cat >>conftest.$ac_ext <<_ACEOF
8886     /* end confdefs.h. */
8887     #include <alloca.h>
8888     int
8889     main ()
8890     {
8891     char *p = (char *) alloca (2 * sizeof (int));
8892 pcg 1.33 if (p) return 0;
8893 pcg 1.1 ;
8894     return 0;
8895     }
8896     _ACEOF
8897     rm -f conftest.$ac_objext conftest$ac_exeext
8898 pcg 1.33 if { (ac_try="$ac_link"
8899     case "(($ac_try" in
8900     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8901     *) ac_try_echo=$ac_try;;
8902     esac
8903     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8904     (eval "$ac_link") 2>conftest.er1
8905 pcg 1.1 ac_status=$?
8906 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8907     rm -f conftest.er1
8908     cat conftest.err >&5
8909 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8910 pcg 1.33 (exit $ac_status); } && {
8911     test -z "$ac_c_werror_flag" ||
8912     test ! -s conftest.err
8913     } && test -s conftest$ac_exeext &&
8914     $as_test_x conftest$ac_exeext; then
8915 pcg 1.1 ac_cv_working_alloca_h=yes
8916     else
8917     echo "$as_me: failed program was:" >&5
8918     sed 's/^/| /' conftest.$ac_ext >&5
8919    
8920 pcg 1.33 ac_cv_working_alloca_h=no
8921 pcg 1.1 fi
8922 pcg 1.33
8923     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8924 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
8925 pcg 1.1 fi
8926 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5
8927     echo "${ECHO_T}$ac_cv_working_alloca_h" >&6; }
8928 pcg 1.1 if test $ac_cv_working_alloca_h = yes; then
8929    
8930     cat >>confdefs.h <<\_ACEOF
8931     #define HAVE_ALLOCA_H 1
8932     _ACEOF
8933    
8934     fi
8935    
8936 pcg 1.33 { echo "$as_me:$LINENO: checking for alloca" >&5
8937     echo $ECHO_N "checking for alloca... $ECHO_C" >&6; }
8938 pcg 1.1 if test "${ac_cv_func_alloca_works+set}" = set; then
8939     echo $ECHO_N "(cached) $ECHO_C" >&6
8940     else
8941     cat >conftest.$ac_ext <<_ACEOF
8942     /* confdefs.h. */
8943     _ACEOF
8944     cat confdefs.h >>conftest.$ac_ext
8945     cat >>conftest.$ac_ext <<_ACEOF
8946     /* end confdefs.h. */
8947     #ifdef __GNUC__
8948     # define alloca __builtin_alloca
8949     #else
8950     # ifdef _MSC_VER
8951     # include <malloc.h>
8952     # define alloca _alloca
8953     # else
8954 pcg 1.33 # ifdef HAVE_ALLOCA_H
8955 pcg 1.1 # include <alloca.h>
8956     # else
8957     # ifdef _AIX
8958     #pragma alloca
8959     # else
8960     # ifndef alloca /* predefined by HP cc +Olibcalls */
8961     char *alloca ();
8962     # endif
8963     # endif
8964     # endif
8965     # endif
8966     #endif
8967    
8968     int
8969     main ()
8970     {
8971     char *p = (char *) alloca (1);
8972 pcg 1.33 if (p) return 0;
8973 pcg 1.1 ;
8974     return 0;
8975     }
8976     _ACEOF
8977     rm -f conftest.$ac_objext conftest$ac_exeext
8978 pcg 1.33 if { (ac_try="$ac_link"
8979     case "(($ac_try" in
8980     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
8981     *) ac_try_echo=$ac_try;;
8982     esac
8983     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
8984     (eval "$ac_link") 2>conftest.er1
8985 pcg 1.1 ac_status=$?
8986 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
8987     rm -f conftest.er1
8988     cat conftest.err >&5
8989 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8990 pcg 1.33 (exit $ac_status); } && {
8991     test -z "$ac_c_werror_flag" ||
8992     test ! -s conftest.err
8993     } && test -s conftest$ac_exeext &&
8994     $as_test_x conftest$ac_exeext; then
8995 pcg 1.1 ac_cv_func_alloca_works=yes
8996     else
8997     echo "$as_me: failed program was:" >&5
8998     sed 's/^/| /' conftest.$ac_ext >&5
8999    
9000 pcg 1.33 ac_cv_func_alloca_works=no
9001 pcg 1.1 fi
9002 pcg 1.33
9003     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9004 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
9005 pcg 1.1 fi
9006 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5
9007     echo "${ECHO_T}$ac_cv_func_alloca_works" >&6; }
9008 pcg 1.1
9009     if test $ac_cv_func_alloca_works = yes; then
9010    
9011     cat >>confdefs.h <<\_ACEOF
9012     #define HAVE_ALLOCA 1
9013     _ACEOF
9014    
9015     else
9016     # The SVR3 libPW and SVR4 libucb both contain incompatible functions
9017     # that cause trouble. Some versions do not even contain alloca or
9018     # contain a buggy version. If you still want to use their alloca,
9019     # use ar to extract alloca.o from them instead of compiling alloca.c.
9020    
9021 pcg 1.33 ALLOCA=\${LIBOBJDIR}alloca.$ac_objext
9022 pcg 1.1
9023     cat >>confdefs.h <<\_ACEOF
9024     #define C_ALLOCA 1
9025     _ACEOF
9026    
9027    
9028 pcg 1.33 { echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5
9029     echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6; }
9030 pcg 1.1 if test "${ac_cv_os_cray+set}" = set; then
9031     echo $ECHO_N "(cached) $ECHO_C" >&6
9032     else
9033     cat >conftest.$ac_ext <<_ACEOF
9034     /* confdefs.h. */
9035     _ACEOF
9036     cat confdefs.h >>conftest.$ac_ext
9037     cat >>conftest.$ac_ext <<_ACEOF
9038     /* end confdefs.h. */
9039 pcg 1.33 #if defined CRAY && ! defined CRAY2
9040 pcg 1.1 webecray
9041     #else
9042     wenotbecray
9043     #endif
9044    
9045     _ACEOF
9046     if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
9047     $EGREP "webecray" >/dev/null 2>&1; then
9048     ac_cv_os_cray=yes
9049     else
9050     ac_cv_os_cray=no
9051     fi
9052     rm -f conftest*
9053    
9054     fi
9055 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5
9056     echo "${ECHO_T}$ac_cv_os_cray" >&6; }
9057 pcg 1.1 if test $ac_cv_os_cray = yes; then
9058     for ac_func in _getb67 GETB67 getb67; do
9059     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
9060 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_func" >&5
9061     echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
9062     if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
9063 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
9064     else
9065     cat >conftest.$ac_ext <<_ACEOF
9066     /* confdefs.h. */
9067     _ACEOF
9068     cat confdefs.h >>conftest.$ac_ext
9069     cat >>conftest.$ac_ext <<_ACEOF
9070     /* end confdefs.h. */
9071 pcg 1.11 /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
9072     For example, HP-UX 11i <limits.h> declares gettimeofday. */
9073     #define $ac_func innocuous_$ac_func
9074    
9075 pcg 1.1 /* System header to define __stub macros and hopefully few prototypes,
9076     which can conflict with char $ac_func (); below.
9077     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9078     <limits.h> exists even on freestanding compilers. */
9079 pcg 1.11
9080 pcg 1.1 #ifdef __STDC__
9081     # include <limits.h>
9082     #else
9083     # include <assert.h>
9084     #endif
9085 pcg 1.11
9086     #undef $ac_func
9087    
9088 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
9089     Use char because int might match the return type of a GCC
9090     builtin and then its argument prototype would still apply. */
9091 pcg 1.1 #ifdef __cplusplus
9092     extern "C"
9093     #endif
9094     char $ac_func ();
9095     /* The GNU C library defines this for functions which it implements
9096     to always fail with ENOSYS. Some functions are actually named
9097     something starting with __ and the normal name is an alias. */
9098 pcg 1.33 #if defined __stub_$ac_func || defined __stub___$ac_func
9099 pcg 1.1 choke me
9100     #endif
9101    
9102     int
9103     main ()
9104     {
9105 pcg 1.33 return $ac_func ();
9106 pcg 1.1 ;
9107     return 0;
9108     }
9109     _ACEOF
9110     rm -f conftest.$ac_objext conftest$ac_exeext
9111 pcg 1.33 if { (ac_try="$ac_link"
9112     case "(($ac_try" in
9113     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9114     *) ac_try_echo=$ac_try;;
9115     esac
9116     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9117     (eval "$ac_link") 2>conftest.er1
9118 pcg 1.1 ac_status=$?
9119 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
9120     rm -f conftest.er1
9121     cat conftest.err >&5
9122 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9123 pcg 1.33 (exit $ac_status); } && {
9124     test -z "$ac_c_werror_flag" ||
9125     test ! -s conftest.err
9126     } && test -s conftest$ac_exeext &&
9127     $as_test_x conftest$ac_exeext; then
9128 pcg 1.1 eval "$as_ac_var=yes"
9129     else
9130     echo "$as_me: failed program was:" >&5
9131     sed 's/^/| /' conftest.$ac_ext >&5
9132    
9133 pcg 1.33 eval "$as_ac_var=no"
9134 pcg 1.1 fi
9135 pcg 1.33
9136     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9137 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
9138 pcg 1.1 fi
9139 pcg 1.33 ac_res=`eval echo '${'$as_ac_var'}'`
9140     { echo "$as_me:$LINENO: result: $ac_res" >&5
9141     echo "${ECHO_T}$ac_res" >&6; }
9142 pcg 1.1 if test `eval echo '${'$as_ac_var'}'` = yes; then
9143    
9144     cat >>confdefs.h <<_ACEOF
9145     #define CRAY_STACKSEG_END $ac_func
9146     _ACEOF
9147    
9148     break
9149     fi
9150    
9151     done
9152     fi
9153    
9154 pcg 1.33 { echo "$as_me:$LINENO: checking stack direction for C alloca" >&5
9155     echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6; }
9156 pcg 1.1 if test "${ac_cv_c_stack_direction+set}" = set; then
9157     echo $ECHO_N "(cached) $ECHO_C" >&6
9158     else
9159     if test "$cross_compiling" = yes; then
9160     ac_cv_c_stack_direction=0
9161     else
9162     cat >conftest.$ac_ext <<_ACEOF
9163     /* confdefs.h. */
9164     _ACEOF
9165     cat confdefs.h >>conftest.$ac_ext
9166     cat >>conftest.$ac_ext <<_ACEOF
9167     /* end confdefs.h. */
9168 pcg 1.33 $ac_includes_default
9169 pcg 1.1 int
9170     find_stack_direction ()
9171     {
9172     static char *addr = 0;
9173     auto char dummy;
9174     if (addr == 0)
9175     {
9176     addr = &dummy;
9177     return find_stack_direction ();
9178     }
9179     else
9180     return (&dummy > addr) ? 1 : -1;
9181     }
9182    
9183     int
9184     main ()
9185     {
9186 pcg 1.33 return find_stack_direction () < 0;
9187 pcg 1.1 }
9188     _ACEOF
9189     rm -f conftest$ac_exeext
9190 pcg 1.33 if { (ac_try="$ac_link"
9191     case "(($ac_try" in
9192     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9193     *) ac_try_echo=$ac_try;;
9194     esac
9195     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9196     (eval "$ac_link") 2>&5
9197 pcg 1.1 ac_status=$?
9198     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9199     (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
9200 pcg 1.33 { (case "(($ac_try" in
9201     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9202     *) ac_try_echo=$ac_try;;
9203     esac
9204     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9205     (eval "$ac_try") 2>&5
9206 pcg 1.1 ac_status=$?
9207     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9208     (exit $ac_status); }; }; then
9209     ac_cv_c_stack_direction=1
9210     else
9211     echo "$as_me: program exited with status $ac_status" >&5
9212     echo "$as_me: failed program was:" >&5
9213     sed 's/^/| /' conftest.$ac_ext >&5
9214    
9215     ( exit $ac_status )
9216     ac_cv_c_stack_direction=-1
9217     fi
9218 pcg 1.33 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
9219 pcg 1.1 fi
9220 pcg 1.33
9221    
9222 pcg 1.1 fi
9223 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5
9224     echo "${ECHO_T}$ac_cv_c_stack_direction" >&6; }
9225 pcg 1.1
9226     cat >>confdefs.h <<_ACEOF
9227     #define STACK_DIRECTION $ac_cv_c_stack_direction
9228     _ACEOF
9229    
9230    
9231     fi
9232    
9233    
9234    
9235 pcg 1.33 { echo "$as_me:$LINENO: checking for socket" >&5
9236     echo $ECHO_N "checking for socket... $ECHO_C" >&6; }
9237 pcg 1.1 if test "${ac_cv_func_socket+set}" = set; then
9238     echo $ECHO_N "(cached) $ECHO_C" >&6
9239     else
9240     cat >conftest.$ac_ext <<_ACEOF
9241     /* confdefs.h. */
9242     _ACEOF
9243     cat confdefs.h >>conftest.$ac_ext
9244     cat >>conftest.$ac_ext <<_ACEOF
9245     /* end confdefs.h. */
9246 pcg 1.11 /* Define socket to an innocuous variant, in case <limits.h> declares socket.
9247     For example, HP-UX 11i <limits.h> declares gettimeofday. */
9248     #define socket innocuous_socket
9249    
9250 pcg 1.1 /* System header to define __stub macros and hopefully few prototypes,
9251     which can conflict with char socket (); below.
9252     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9253     <limits.h> exists even on freestanding compilers. */
9254 pcg 1.11
9255 pcg 1.1 #ifdef __STDC__
9256     # include <limits.h>
9257     #else
9258     # include <assert.h>
9259     #endif
9260 pcg 1.11
9261     #undef socket
9262    
9263 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
9264     Use char because int might match the return type of a GCC
9265     builtin and then its argument prototype would still apply. */
9266 pcg 1.1 #ifdef __cplusplus
9267     extern "C"
9268     #endif
9269     char socket ();
9270     /* The GNU C library defines this for functions which it implements
9271     to always fail with ENOSYS. Some functions are actually named
9272     something starting with __ and the normal name is an alias. */
9273 pcg 1.33 #if defined __stub_socket || defined __stub___socket
9274 pcg 1.1 choke me
9275     #endif
9276    
9277     int
9278     main ()
9279     {
9280 pcg 1.33 return socket ();
9281 pcg 1.1 ;
9282     return 0;
9283     }
9284     _ACEOF
9285     rm -f conftest.$ac_objext conftest$ac_exeext
9286 pcg 1.33 if { (ac_try="$ac_link"
9287     case "(($ac_try" in
9288     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9289     *) ac_try_echo=$ac_try;;
9290     esac
9291     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9292     (eval "$ac_link") 2>conftest.er1
9293 pcg 1.1 ac_status=$?
9294 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
9295     rm -f conftest.er1
9296     cat conftest.err >&5
9297 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9298 pcg 1.33 (exit $ac_status); } && {
9299     test -z "$ac_c_werror_flag" ||
9300     test ! -s conftest.err
9301     } && test -s conftest$ac_exeext &&
9302     $as_test_x conftest$ac_exeext; then
9303 pcg 1.1 ac_cv_func_socket=yes
9304     else
9305     echo "$as_me: failed program was:" >&5
9306     sed 's/^/| /' conftest.$ac_ext >&5
9307    
9308 pcg 1.33 ac_cv_func_socket=no
9309 pcg 1.1 fi
9310 pcg 1.33
9311     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9312 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
9313 pcg 1.1 fi
9314 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_func_socket" >&5
9315     echo "${ECHO_T}$ac_cv_func_socket" >&6; }
9316 pcg 1.1 if test $ac_cv_func_socket = yes; then
9317     :
9318     else
9319    
9320    
9321 pcg 1.33 { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5
9322     echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; }
9323 pcg 1.1 if test "${ac_cv_lib_socket_connect+set}" = set; then
9324     echo $ECHO_N "(cached) $ECHO_C" >&6
9325     else
9326     ac_check_lib_save_LIBS=$LIBS
9327     LIBS="-lsocket $LIBS"
9328     cat >conftest.$ac_ext <<_ACEOF
9329     /* confdefs.h. */
9330     _ACEOF
9331     cat confdefs.h >>conftest.$ac_ext
9332     cat >>conftest.$ac_ext <<_ACEOF
9333     /* end confdefs.h. */
9334    
9335 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
9336     Use char because int might match the return type of a GCC
9337     builtin and then its argument prototype would still apply. */
9338 pcg 1.1 #ifdef __cplusplus
9339     extern "C"
9340     #endif
9341     char connect ();
9342     int
9343     main ()
9344     {
9345 pcg 1.33 return connect ();
9346 pcg 1.1 ;
9347     return 0;
9348     }
9349     _ACEOF
9350     rm -f conftest.$ac_objext conftest$ac_exeext
9351 pcg 1.33 if { (ac_try="$ac_link"
9352     case "(($ac_try" in
9353     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9354     *) ac_try_echo=$ac_try;;
9355     esac
9356     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9357     (eval "$ac_link") 2>conftest.er1
9358 pcg 1.1 ac_status=$?
9359 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
9360     rm -f conftest.er1
9361     cat conftest.err >&5
9362 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9363 pcg 1.33 (exit $ac_status); } && {
9364     test -z "$ac_c_werror_flag" ||
9365     test ! -s conftest.err
9366     } && test -s conftest$ac_exeext &&
9367     $as_test_x conftest$ac_exeext; then
9368 pcg 1.1 ac_cv_lib_socket_connect=yes
9369     else
9370     echo "$as_me: failed program was:" >&5
9371     sed 's/^/| /' conftest.$ac_ext >&5
9372    
9373 pcg 1.33 ac_cv_lib_socket_connect=no
9374 pcg 1.1 fi
9375 pcg 1.33
9376     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9377 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
9378 pcg 1.1 LIBS=$ac_check_lib_save_LIBS
9379     fi
9380 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5
9381     echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; }
9382 pcg 1.1 if test $ac_cv_lib_socket_connect = yes; then
9383     cat >>confdefs.h <<_ACEOF
9384     #define HAVE_LIBSOCKET 1
9385     _ACEOF
9386    
9387     LIBS="-lsocket $LIBS"
9388    
9389     fi
9390    
9391    
9392     fi
9393    
9394 pcg 1.33 { echo "$as_me:$LINENO: checking for gethostbyname" >&5
9395     echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; }
9396 pcg 1.1 if test "${ac_cv_func_gethostbyname+set}" = set; then
9397     echo $ECHO_N "(cached) $ECHO_C" >&6
9398     else
9399     cat >conftest.$ac_ext <<_ACEOF
9400     /* confdefs.h. */
9401     _ACEOF
9402     cat confdefs.h >>conftest.$ac_ext
9403     cat >>conftest.$ac_ext <<_ACEOF
9404     /* end confdefs.h. */
9405 pcg 1.11 /* Define gethostbyname to an innocuous variant, in case <limits.h> declares gethostbyname.
9406     For example, HP-UX 11i <limits.h> declares gettimeofday. */
9407     #define gethostbyname innocuous_gethostbyname
9408    
9409 pcg 1.1 /* System header to define __stub macros and hopefully few prototypes,
9410     which can conflict with char gethostbyname (); below.
9411     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9412     <limits.h> exists even on freestanding compilers. */
9413 pcg 1.11
9414 pcg 1.1 #ifdef __STDC__
9415     # include <limits.h>
9416     #else
9417     # include <assert.h>
9418     #endif
9419 pcg 1.11
9420     #undef gethostbyname
9421    
9422 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
9423     Use char because int might match the return type of a GCC
9424     builtin and then its argument prototype would still apply. */
9425 pcg 1.1 #ifdef __cplusplus
9426     extern "C"
9427     #endif
9428     char gethostbyname ();
9429     /* The GNU C library defines this for functions which it implements
9430     to always fail with ENOSYS. Some functions are actually named
9431     something starting with __ and the normal name is an alias. */
9432 pcg 1.33 #if defined __stub_gethostbyname || defined __stub___gethostbyname
9433 pcg 1.1 choke me
9434     #endif
9435    
9436     int
9437     main ()
9438     {
9439 pcg 1.33 return gethostbyname ();
9440 pcg 1.1 ;
9441     return 0;
9442     }
9443     _ACEOF
9444     rm -f conftest.$ac_objext conftest$ac_exeext
9445 pcg 1.33 if { (ac_try="$ac_link"
9446     case "(($ac_try" in
9447     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9448     *) ac_try_echo=$ac_try;;
9449     esac
9450     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9451     (eval "$ac_link") 2>conftest.er1
9452 pcg 1.1 ac_status=$?
9453 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
9454     rm -f conftest.er1
9455     cat conftest.err >&5
9456 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9457 pcg 1.33 (exit $ac_status); } && {
9458     test -z "$ac_c_werror_flag" ||
9459     test ! -s conftest.err
9460     } && test -s conftest$ac_exeext &&
9461     $as_test_x conftest$ac_exeext; then
9462 pcg 1.1 ac_cv_func_gethostbyname=yes
9463     else
9464     echo "$as_me: failed program was:" >&5
9465     sed 's/^/| /' conftest.$ac_ext >&5
9466    
9467 pcg 1.33 ac_cv_func_gethostbyname=no
9468 pcg 1.1 fi
9469 pcg 1.33
9470     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9471 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
9472 pcg 1.1 fi
9473 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5
9474     echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; }
9475 pcg 1.1 if test $ac_cv_func_gethostbyname = yes; then
9476     :
9477     else
9478    
9479    
9480 pcg 1.33 { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
9481     echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; }
9482 pcg 1.1 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
9483     echo $ECHO_N "(cached) $ECHO_C" >&6
9484     else
9485     ac_check_lib_save_LIBS=$LIBS
9486     LIBS="-lnsl $LIBS"
9487     cat >conftest.$ac_ext <<_ACEOF
9488     /* confdefs.h. */
9489     _ACEOF
9490     cat confdefs.h >>conftest.$ac_ext
9491     cat >>conftest.$ac_ext <<_ACEOF
9492     /* end confdefs.h. */
9493    
9494 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
9495     Use char because int might match the return type of a GCC
9496     builtin and then its argument prototype would still apply. */
9497 pcg 1.1 #ifdef __cplusplus
9498     extern "C"
9499     #endif
9500     char gethostbyname ();
9501     int
9502     main ()
9503     {
9504 pcg 1.33 return gethostbyname ();
9505 pcg 1.1 ;
9506     return 0;
9507     }
9508     _ACEOF
9509     rm -f conftest.$ac_objext conftest$ac_exeext
9510 pcg 1.33 if { (ac_try="$ac_link"
9511     case "(($ac_try" in
9512     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9513     *) ac_try_echo=$ac_try;;
9514     esac
9515     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9516     (eval "$ac_link") 2>conftest.er1
9517 pcg 1.1 ac_status=$?
9518 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
9519     rm -f conftest.er1
9520     cat conftest.err >&5
9521 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9522 pcg 1.33 (exit $ac_status); } && {
9523     test -z "$ac_c_werror_flag" ||
9524     test ! -s conftest.err
9525     } && test -s conftest$ac_exeext &&
9526     $as_test_x conftest$ac_exeext; then
9527 pcg 1.1 ac_cv_lib_nsl_gethostbyname=yes
9528     else
9529     echo "$as_me: failed program was:" >&5
9530     sed 's/^/| /' conftest.$ac_ext >&5
9531    
9532 pcg 1.33 ac_cv_lib_nsl_gethostbyname=no
9533 pcg 1.1 fi
9534 pcg 1.33
9535     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9536 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
9537 pcg 1.1 LIBS=$ac_check_lib_save_LIBS
9538     fi
9539 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
9540     echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; }
9541 pcg 1.1 if test $ac_cv_lib_nsl_gethostbyname = yes; then
9542     cat >>confdefs.h <<_ACEOF
9543     #define HAVE_LIBNSL 1
9544     _ACEOF
9545    
9546     LIBS="-lnsl $LIBS"
9547    
9548     fi
9549    
9550    
9551     fi
9552    
9553    
9554 pcg 1.34
9555    
9556    
9557    
9558 pcg 1.37
9559    
9560    
9561    
9562     for ac_header in sys/inotify.h sys/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h
9563 pcg 1.34 do
9564     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
9565     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
9566     { echo "$as_me:$LINENO: checking for $ac_header" >&5
9567     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
9568     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
9569     echo $ECHO_N "(cached) $ECHO_C" >&6
9570     fi
9571     ac_res=`eval echo '${'$as_ac_Header'}'`
9572     { echo "$as_me:$LINENO: result: $ac_res" >&5
9573     echo "${ECHO_T}$ac_res" >&6; }
9574     else
9575     # Is the header compilable?
9576     { echo "$as_me:$LINENO: checking $ac_header usability" >&5
9577     echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
9578     cat >conftest.$ac_ext <<_ACEOF
9579     /* confdefs.h. */
9580     _ACEOF
9581     cat confdefs.h >>conftest.$ac_ext
9582     cat >>conftest.$ac_ext <<_ACEOF
9583     /* end confdefs.h. */
9584     $ac_includes_default
9585     #include <$ac_header>
9586     _ACEOF
9587     rm -f conftest.$ac_objext
9588     if { (ac_try="$ac_compile"
9589     case "(($ac_try" in
9590     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9591     *) ac_try_echo=$ac_try;;
9592     esac
9593     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9594     (eval "$ac_compile") 2>conftest.er1
9595     ac_status=$?
9596     grep -v '^ *+' conftest.er1 >conftest.err
9597     rm -f conftest.er1
9598     cat conftest.err >&5
9599     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9600     (exit $ac_status); } && {
9601     test -z "$ac_c_werror_flag" ||
9602     test ! -s conftest.err
9603     } && test -s conftest.$ac_objext; then
9604     ac_header_compiler=yes
9605     else
9606     echo "$as_me: failed program was:" >&5
9607     sed 's/^/| /' conftest.$ac_ext >&5
9608    
9609     ac_header_compiler=no
9610     fi
9611    
9612     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
9613     { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
9614     echo "${ECHO_T}$ac_header_compiler" >&6; }
9615    
9616     # Is the header present?
9617     { echo "$as_me:$LINENO: checking $ac_header presence" >&5
9618     echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
9619     cat >conftest.$ac_ext <<_ACEOF
9620     /* confdefs.h. */
9621     _ACEOF
9622     cat confdefs.h >>conftest.$ac_ext
9623     cat >>conftest.$ac_ext <<_ACEOF
9624     /* end confdefs.h. */
9625     #include <$ac_header>
9626     _ACEOF
9627     if { (ac_try="$ac_cpp conftest.$ac_ext"
9628     case "(($ac_try" in
9629     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9630     *) ac_try_echo=$ac_try;;
9631     esac
9632     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9633     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
9634     ac_status=$?
9635     grep -v '^ *+' conftest.er1 >conftest.err
9636     rm -f conftest.er1
9637     cat conftest.err >&5
9638     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9639     (exit $ac_status); } >/dev/null && {
9640     test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
9641     test ! -s conftest.err
9642     }; then
9643     ac_header_preproc=yes
9644     else
9645     echo "$as_me: failed program was:" >&5
9646     sed 's/^/| /' conftest.$ac_ext >&5
9647    
9648     ac_header_preproc=no
9649     fi
9650    
9651     rm -f conftest.err conftest.$ac_ext
9652     { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
9653     echo "${ECHO_T}$ac_header_preproc" >&6; }
9654    
9655     # So? What about this header?
9656     case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
9657     yes:no: )
9658     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
9659     echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
9660     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
9661     echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
9662     ac_header_preproc=yes
9663     ;;
9664     no:yes:* )
9665     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
9666     echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
9667     { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
9668     echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
9669     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
9670     echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
9671     { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
9672     echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
9673     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
9674     echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
9675     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
9676     echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
9677    
9678     ;;
9679     esac
9680     { echo "$as_me:$LINENO: checking for $ac_header" >&5
9681     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
9682     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
9683     echo $ECHO_N "(cached) $ECHO_C" >&6
9684     else
9685     eval "$as_ac_Header=\$ac_header_preproc"
9686     fi
9687     ac_res=`eval echo '${'$as_ac_Header'}'`
9688     { echo "$as_me:$LINENO: result: $ac_res" >&5
9689     echo "${ECHO_T}$ac_res" >&6; }
9690    
9691     fi
9692     if test `eval echo '${'$as_ac_Header'}'` = yes; then
9693     cat >>confdefs.h <<_ACEOF
9694     #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
9695     _ACEOF
9696    
9697     fi
9698    
9699     done
9700    
9701    
9702    
9703    
9704 pcg 1.37
9705    
9706    
9707    
9708     for ac_func in inotify_init epoll_ctl kqueue port_create poll select
9709 pcg 1.34 do
9710     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
9711     { echo "$as_me:$LINENO: checking for $ac_func" >&5
9712     echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
9713     if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
9714     echo $ECHO_N "(cached) $ECHO_C" >&6
9715     else
9716     cat >conftest.$ac_ext <<_ACEOF
9717     /* confdefs.h. */
9718     _ACEOF
9719     cat confdefs.h >>conftest.$ac_ext
9720     cat >>conftest.$ac_ext <<_ACEOF
9721     /* end confdefs.h. */
9722     /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
9723     For example, HP-UX 11i <limits.h> declares gettimeofday. */
9724     #define $ac_func innocuous_$ac_func
9725    
9726     /* System header to define __stub macros and hopefully few prototypes,
9727     which can conflict with char $ac_func (); below.
9728     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9729     <limits.h> exists even on freestanding compilers. */
9730    
9731     #ifdef __STDC__
9732     # include <limits.h>
9733     #else
9734     # include <assert.h>
9735     #endif
9736    
9737     #undef $ac_func
9738    
9739     /* Override any GCC internal prototype to avoid an error.
9740     Use char because int might match the return type of a GCC
9741     builtin and then its argument prototype would still apply. */
9742     #ifdef __cplusplus
9743     extern "C"
9744     #endif
9745     char $ac_func ();
9746     /* The GNU C library defines this for functions which it implements
9747     to always fail with ENOSYS. Some functions are actually named
9748     something starting with __ and the normal name is an alias. */
9749     #if defined __stub_$ac_func || defined __stub___$ac_func
9750     choke me
9751     #endif
9752    
9753     int
9754     main ()
9755     {
9756     return $ac_func ();
9757     ;
9758     return 0;
9759     }
9760     _ACEOF
9761     rm -f conftest.$ac_objext conftest$ac_exeext
9762     if { (ac_try="$ac_link"
9763     case "(($ac_try" in
9764     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9765     *) ac_try_echo=$ac_try;;
9766     esac
9767     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9768     (eval "$ac_link") 2>conftest.er1
9769     ac_status=$?
9770     grep -v '^ *+' conftest.er1 >conftest.err
9771     rm -f conftest.er1
9772     cat conftest.err >&5
9773     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9774     (exit $ac_status); } && {
9775     test -z "$ac_c_werror_flag" ||
9776     test ! -s conftest.err
9777     } && test -s conftest$ac_exeext &&
9778     $as_test_x conftest$ac_exeext; then
9779     eval "$as_ac_var=yes"
9780     else
9781     echo "$as_me: failed program was:" >&5
9782     sed 's/^/| /' conftest.$ac_ext >&5
9783    
9784     eval "$as_ac_var=no"
9785     fi
9786    
9787     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9788     conftest$ac_exeext conftest.$ac_ext
9789     fi
9790     ac_res=`eval echo '${'$as_ac_var'}'`
9791     { echo "$as_me:$LINENO: result: $ac_res" >&5
9792     echo "${ECHO_T}$ac_res" >&6; }
9793     if test `eval echo '${'$as_ac_var'}'` = yes; then
9794     cat >>confdefs.h <<_ACEOF
9795     #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
9796     _ACEOF
9797    
9798     fi
9799     done
9800    
9801    
9802     { echo "$as_me:$LINENO: checking for clock_gettime" >&5
9803     echo $ECHO_N "checking for clock_gettime... $ECHO_C" >&6; }
9804     if test "${ac_cv_func_clock_gettime+set}" = set; then
9805     echo $ECHO_N "(cached) $ECHO_C" >&6
9806     else
9807     cat >conftest.$ac_ext <<_ACEOF
9808     /* confdefs.h. */
9809     _ACEOF
9810     cat confdefs.h >>conftest.$ac_ext
9811     cat >>conftest.$ac_ext <<_ACEOF
9812     /* end confdefs.h. */
9813     /* Define clock_gettime to an innocuous variant, in case <limits.h> declares clock_gettime.
9814     For example, HP-UX 11i <limits.h> declares gettimeofday. */
9815     #define clock_gettime innocuous_clock_gettime
9816    
9817     /* System header to define __stub macros and hopefully few prototypes,
9818     which can conflict with char clock_gettime (); below.
9819     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9820     <limits.h> exists even on freestanding compilers. */
9821    
9822     #ifdef __STDC__
9823     # include <limits.h>
9824     #else
9825     # include <assert.h>
9826     #endif
9827    
9828     #undef clock_gettime
9829    
9830     /* Override any GCC internal prototype to avoid an error.
9831     Use char because int might match the return type of a GCC
9832     builtin and then its argument prototype would still apply. */
9833     #ifdef __cplusplus
9834     extern "C"
9835     #endif
9836     char clock_gettime ();
9837     /* The GNU C library defines this for functions which it implements
9838     to always fail with ENOSYS. Some functions are actually named
9839     something starting with __ and the normal name is an alias. */
9840     #if defined __stub_clock_gettime || defined __stub___clock_gettime
9841     choke me
9842     #endif
9843    
9844     int
9845     main ()
9846     {
9847     return clock_gettime ();
9848     ;
9849     return 0;
9850     }
9851     _ACEOF
9852     rm -f conftest.$ac_objext conftest$ac_exeext
9853     if { (ac_try="$ac_link"
9854     case "(($ac_try" in
9855     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9856     *) ac_try_echo=$ac_try;;
9857     esac
9858     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9859     (eval "$ac_link") 2>conftest.er1
9860     ac_status=$?
9861     grep -v '^ *+' conftest.er1 >conftest.err
9862     rm -f conftest.er1
9863     cat conftest.err >&5
9864     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9865     (exit $ac_status); } && {
9866     test -z "$ac_c_werror_flag" ||
9867     test ! -s conftest.err
9868     } && test -s conftest$ac_exeext &&
9869     $as_test_x conftest$ac_exeext; then
9870     ac_cv_func_clock_gettime=yes
9871     else
9872     echo "$as_me: failed program was:" >&5
9873     sed 's/^/| /' conftest.$ac_ext >&5
9874    
9875     ac_cv_func_clock_gettime=no
9876     fi
9877    
9878     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9879     conftest$ac_exeext conftest.$ac_ext
9880     fi
9881     { echo "$as_me:$LINENO: result: $ac_cv_func_clock_gettime" >&5
9882     echo "${ECHO_T}$ac_cv_func_clock_gettime" >&6; }
9883     if test $ac_cv_func_clock_gettime = yes; then
9884     :
9885     else
9886    
9887 pcg 1.37 if test -z "$LIBEV_M4_AVOID_LIBRT"; then
9888 pcg 1.34
9889     { echo "$as_me:$LINENO: checking for clock_gettime in -lrt" >&5
9890     echo $ECHO_N "checking for clock_gettime in -lrt... $ECHO_C" >&6; }
9891     if test "${ac_cv_lib_rt_clock_gettime+set}" = set; then
9892     echo $ECHO_N "(cached) $ECHO_C" >&6
9893     else
9894     ac_check_lib_save_LIBS=$LIBS
9895     LIBS="-lrt $LIBS"
9896     cat >conftest.$ac_ext <<_ACEOF
9897     /* confdefs.h. */
9898     _ACEOF
9899     cat confdefs.h >>conftest.$ac_ext
9900     cat >>conftest.$ac_ext <<_ACEOF
9901     /* end confdefs.h. */
9902    
9903     /* Override any GCC internal prototype to avoid an error.
9904     Use char because int might match the return type of a GCC
9905     builtin and then its argument prototype would still apply. */
9906     #ifdef __cplusplus
9907     extern "C"
9908     #endif
9909     char clock_gettime ();
9910     int
9911     main ()
9912     {
9913     return clock_gettime ();
9914     ;
9915     return 0;
9916     }
9917     _ACEOF
9918     rm -f conftest.$ac_objext conftest$ac_exeext
9919     if { (ac_try="$ac_link"
9920     case "(($ac_try" in
9921     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
9922     *) ac_try_echo=$ac_try;;
9923     esac
9924     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
9925     (eval "$ac_link") 2>conftest.er1
9926     ac_status=$?
9927     grep -v '^ *+' conftest.er1 >conftest.err
9928     rm -f conftest.er1
9929     cat conftest.err >&5
9930     echo "$as_me:$LINENO: \$? = $ac_status" >&5
9931     (exit $ac_status); } && {
9932     test -z "$ac_c_werror_flag" ||
9933     test ! -s conftest.err
9934     } && test -s conftest$ac_exeext &&
9935     $as_test_x conftest$ac_exeext; then
9936     ac_cv_lib_rt_clock_gettime=yes
9937     else
9938     echo "$as_me: failed program was:" >&5
9939     sed 's/^/| /' conftest.$ac_ext >&5
9940    
9941     ac_cv_lib_rt_clock_gettime=no
9942     fi
9943    
9944     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
9945     conftest$ac_exeext conftest.$ac_ext
9946     LIBS=$ac_check_lib_save_LIBS
9947     fi
9948     { echo "$as_me:$LINENO: result: $ac_cv_lib_rt_clock_gettime" >&5
9949     echo "${ECHO_T}$ac_cv_lib_rt_clock_gettime" >&6; }
9950     if test $ac_cv_lib_rt_clock_gettime = yes; then
9951     cat >>confdefs.h <<_ACEOF
9952     #define HAVE_LIBRT 1
9953     _ACEOF
9954    
9955     LIBS="-lrt $LIBS"
9956    
9957     fi
9958    
9959 pcg 1.38 unset ac_cv_func_clock_gettime
9960 pcg 1.34
9961 pcg 1.35 for ac_func in clock_gettime
9962     do
9963     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
9964     { echo "$as_me:$LINENO: checking for $ac_func" >&5
9965     echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
9966     if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
9967     echo $ECHO_N "(cached) $ECHO_C" >&6
9968     else
9969     cat >conftest.$ac_ext <<_ACEOF
9970     /* confdefs.h. */
9971     _ACEOF
9972     cat confdefs.h >>conftest.$ac_ext
9973     cat >>conftest.$ac_ext <<_ACEOF
9974     /* end confdefs.h. */
9975     /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
9976     For example, HP-UX 11i <limits.h> declares gettimeofday. */
9977     #define $ac_func innocuous_$ac_func
9978    
9979     /* System header to define __stub macros and hopefully few prototypes,
9980     which can conflict with char $ac_func (); below.
9981     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9982     <limits.h> exists even on freestanding compilers. */
9983    
9984     #ifdef __STDC__
9985     # include <limits.h>
9986     #else
9987     # include <assert.h>
9988     #endif
9989    
9990     #undef $ac_func
9991    
9992     /* Override any GCC internal prototype to avoid an error.
9993     Use char because int might match the return type of a GCC
9994     builtin and then its argument prototype would still apply. */
9995     #ifdef __cplusplus
9996     extern "C"
9997     #endif
9998     char $ac_func ();
9999     /* The GNU C library defines this for functions which it implements
10000     to always fail with ENOSYS. Some functions are actually named
10001     something starting with __ and the normal name is an alias. */
10002     #if defined __stub_$ac_func || defined __stub___$ac_func
10003     choke me
10004     #endif
10005    
10006     int
10007     main ()
10008     {
10009     return $ac_func ();
10010     ;
10011     return 0;
10012     }
10013     _ACEOF
10014     rm -f conftest.$ac_objext conftest$ac_exeext
10015     if { (ac_try="$ac_link"
10016     case "(($ac_try" in
10017     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10018     *) ac_try_echo=$ac_try;;
10019     esac
10020     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10021     (eval "$ac_link") 2>conftest.er1
10022     ac_status=$?
10023     grep -v '^ *+' conftest.er1 >conftest.err
10024     rm -f conftest.er1
10025     cat conftest.err >&5
10026     echo "$as_me:$LINENO: \$? = $ac_status" >&5
10027     (exit $ac_status); } && {
10028     test -z "$ac_c_werror_flag" ||
10029     test ! -s conftest.err
10030     } && test -s conftest$ac_exeext &&
10031     $as_test_x conftest$ac_exeext; then
10032     eval "$as_ac_var=yes"
10033     else
10034     echo "$as_me: failed program was:" >&5
10035     sed 's/^/| /' conftest.$ac_ext >&5
10036    
10037     eval "$as_ac_var=no"
10038     fi
10039    
10040     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10041     conftest$ac_exeext conftest.$ac_ext
10042     fi
10043     ac_res=`eval echo '${'$as_ac_var'}'`
10044     { echo "$as_me:$LINENO: result: $ac_res" >&5
10045     echo "${ECHO_T}$ac_res" >&6; }
10046     if test `eval echo '${'$as_ac_var'}'` = yes; then
10047     cat >>confdefs.h <<_ACEOF
10048     #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
10049     _ACEOF
10050    
10051     fi
10052     done
10053    
10054 pcg 1.37 fi
10055 pcg 1.35
10056 pcg 1.34 fi
10057    
10058    
10059    
10060 pcg 1.36 { echo "$as_me:$LINENO: checking for ceil in -lm" >&5
10061     echo $ECHO_N "checking for ceil in -lm... $ECHO_C" >&6; }
10062     if test "${ac_cv_lib_m_ceil+set}" = set; then
10063     echo $ECHO_N "(cached) $ECHO_C" >&6
10064     else
10065     ac_check_lib_save_LIBS=$LIBS
10066     LIBS="-lm $LIBS"
10067     cat >conftest.$ac_ext <<_ACEOF
10068     /* confdefs.h. */
10069     _ACEOF
10070     cat confdefs.h >>conftest.$ac_ext
10071     cat >>conftest.$ac_ext <<_ACEOF
10072     /* end confdefs.h. */
10073    
10074     /* Override any GCC internal prototype to avoid an error.
10075     Use char because int might match the return type of a GCC
10076     builtin and then its argument prototype would still apply. */
10077     #ifdef __cplusplus
10078     extern "C"
10079     #endif
10080     char ceil ();
10081     int
10082     main ()
10083     {
10084     return ceil ();
10085     ;
10086     return 0;
10087     }
10088     _ACEOF
10089     rm -f conftest.$ac_objext conftest$ac_exeext
10090     if { (ac_try="$ac_link"
10091     case "(($ac_try" in
10092     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10093     *) ac_try_echo=$ac_try;;
10094     esac
10095     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10096     (eval "$ac_link") 2>conftest.er1
10097     ac_status=$?
10098     grep -v '^ *+' conftest.er1 >conftest.err
10099     rm -f conftest.er1
10100     cat conftest.err >&5
10101     echo "$as_me:$LINENO: \$? = $ac_status" >&5
10102     (exit $ac_status); } && {
10103     test -z "$ac_c_werror_flag" ||
10104     test ! -s conftest.err
10105     } && test -s conftest$ac_exeext &&
10106     $as_test_x conftest$ac_exeext; then
10107     ac_cv_lib_m_ceil=yes
10108     else
10109     echo "$as_me: failed program was:" >&5
10110     sed 's/^/| /' conftest.$ac_ext >&5
10111    
10112     ac_cv_lib_m_ceil=no
10113     fi
10114    
10115     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10116     conftest$ac_exeext conftest.$ac_ext
10117     LIBS=$ac_check_lib_save_LIBS
10118     fi
10119     { echo "$as_me:$LINENO: result: $ac_cv_lib_m_ceil" >&5
10120     echo "${ECHO_T}$ac_cv_lib_m_ceil" >&6; }
10121     if test $ac_cv_lib_m_ceil = yes; then
10122     cat >>confdefs.h <<_ACEOF
10123     #define HAVE_LIBM 1
10124     _ACEOF
10125    
10126     LIBS="-lm $LIBS"
10127    
10128     fi
10129    
10130    
10131    
10132 pcg 1.34
10133    
10134    
10135 pcg 1.33 ac_ext=cpp
10136 pcg 1.1 ac_cpp='$CXXCPP $CPPFLAGS'
10137     ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
10138     ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
10139     ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
10140    
10141    
10142    
10143     cat >confcache <<\_ACEOF
10144     # This file is a shell script that caches the results of configure
10145     # tests run on this system so they can be shared between configure
10146     # scripts and configure runs, see configure's option --config-cache.
10147     # It is not useful on other systems. If it contains results you don't
10148     # want to keep, you may remove or edit it.
10149     #
10150     # config.status only pays attention to the cache file if you give it
10151     # the --recheck option to rerun configure.
10152     #
10153     # `ac_cv_env_foo' variables (set or unset) will be overridden when
10154     # loading this file, other *unset* `ac_cv_foo' will be assigned the
10155     # following values.
10156    
10157     _ACEOF
10158    
10159     # The following way of writing the cache mishandles newlines in values,
10160     # but we know of no workaround that is simple, portable, and efficient.
10161 pcg 1.33 # So, we kill variables containing newlines.
10162 pcg 1.1 # Ultrix sh set writes to stderr and can't be redirected directly,
10163     # and sets the high bit in the cache file unless we assign to the vars.
10164 pcg 1.33 (
10165     for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
10166     eval ac_val=\$$ac_var
10167     case $ac_val in #(
10168     *${as_nl}*)
10169     case $ac_var in #(
10170     *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
10171     echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
10172     esac
10173     case $ac_var in #(
10174     _ | IFS | as_nl) ;; #(
10175     *) $as_unset $ac_var ;;
10176     esac ;;
10177     esac
10178     done
10179    
10180 pcg 1.1 (set) 2>&1 |
10181 pcg 1.33 case $as_nl`(ac_space=' '; set) 2>&1` in #(
10182     *${as_nl}ac_space=\ *)
10183 pcg 1.1 # `set' does not quote correctly, so add quotes (double-quote
10184     # substitution turns \\\\ into \\, and sed turns \\ into \).
10185     sed -n \
10186 pcg 1.11 "s/'/'\\\\''/g;
10187     s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
10188 pcg 1.33 ;; #(
10189 pcg 1.1 *)
10190     # `set' quotes correctly as required by POSIX, so do not add quotes.
10191 pcg 1.33 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
10192 pcg 1.1 ;;
10193 pcg 1.33 esac |
10194     sort
10195     ) |
10196 pcg 1.1 sed '
10197 pcg 1.33 /^ac_cv_env_/b end
10198 pcg 1.1 t clear
10199 pcg 1.33 :clear
10200 pcg 1.1 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
10201     t end
10202 pcg 1.33 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
10203     :end' >>confcache
10204     if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
10205     if test -w "$cache_file"; then
10206     test "x$cache_file" != "x/dev/null" &&
10207     { echo "$as_me:$LINENO: updating cache $cache_file" >&5
10208     echo "$as_me: updating cache $cache_file" >&6;}
10209 pcg 1.1 cat confcache >$cache_file
10210     else
10211 pcg 1.33 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
10212     echo "$as_me: not updating unwritable cache $cache_file" >&6;}
10213 pcg 1.1 fi
10214     fi
10215     rm -f confcache
10216    
10217    
10218    
10219 pcg 1.33 # Check whether --with-kernel was given.
10220 pcg 1.1 if test "${with_kernel+set}" = set; then
10221 pcg 1.33 withval=$with_kernel; kerneldir="$withval"
10222 pcg 1.1 else
10223     kerneldir="/usr/src/linux"
10224    
10225 pcg 1.33 fi
10226    
10227 pcg 1.1
10228 pcg 1.33 { echo "$as_me:$LINENO: checking for linux/if_tun.h" >&5
10229     echo $ECHO_N "checking for linux/if_tun.h... $ECHO_C" >&6; }
10230 pcg 1.1 if test "${tinc_cv_linux_if_tun_h+set}" = set; then
10231     echo $ECHO_N "(cached) $ECHO_C" >&6
10232     else
10233    
10234     cat >conftest.$ac_ext <<_ACEOF
10235     /* confdefs.h. */
10236     _ACEOF
10237     cat confdefs.h >>conftest.$ac_ext
10238     cat >>conftest.$ac_ext <<_ACEOF
10239     /* end confdefs.h. */
10240     #include "$kerneldir/include/linux/if_tun.h"
10241     int
10242     main ()
10243     {
10244     int a = IFF_TAP;
10245     ;
10246     return 0;
10247     }
10248     _ACEOF
10249     rm -f conftest.$ac_objext
10250 pcg 1.33 if { (ac_try="$ac_compile"
10251     case "(($ac_try" in
10252     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10253     *) ac_try_echo=$ac_try;;
10254     esac
10255     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10256     (eval "$ac_compile") 2>conftest.er1
10257 pcg 1.1 ac_status=$?
10258 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10259     rm -f conftest.er1
10260     cat conftest.err >&5
10261 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10262 pcg 1.33 (exit $ac_status); } && {
10263     test -z "$ac_cxx_werror_flag" ||
10264     test ! -s conftest.err
10265     } && test -s conftest.$ac_objext; then
10266 pcg 1.1 if_tun_h="\"$kerneldir/include/linux/if_tun.h\""
10267     else
10268     echo "$as_me: failed program was:" >&5
10269     sed 's/^/| /' conftest.$ac_ext >&5
10270    
10271 pcg 1.33 cat >conftest.$ac_ext <<_ACEOF
10272 pcg 1.1 /* confdefs.h. */
10273     _ACEOF
10274     cat confdefs.h >>conftest.$ac_ext
10275     cat >>conftest.$ac_ext <<_ACEOF
10276     /* end confdefs.h. */
10277     #include <linux/if_tun.h>
10278     int
10279     main ()
10280     {
10281     int a = IFF_TAP;
10282     ;
10283     return 0;
10284     }
10285     _ACEOF
10286     rm -f conftest.$ac_objext
10287 pcg 1.33 if { (ac_try="$ac_compile"
10288     case "(($ac_try" in
10289     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10290     *) ac_try_echo=$ac_try;;
10291     esac
10292     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10293     (eval "$ac_compile") 2>conftest.er1
10294 pcg 1.1 ac_status=$?
10295 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10296     rm -f conftest.er1
10297     cat conftest.err >&5
10298 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10299 pcg 1.33 (exit $ac_status); } && {
10300     test -z "$ac_cxx_werror_flag" ||
10301     test ! -s conftest.err
10302     } && test -s conftest.$ac_objext; then
10303 pcg 1.1 if_tun_h="default"
10304     else
10305     echo "$as_me: failed program was:" >&5
10306     sed 's/^/| /' conftest.$ac_ext >&5
10307    
10308 pcg 1.33 if_tun_h="no"
10309 pcg 1.1
10310     fi
10311 pcg 1.33
10312     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10313 pcg 1.1
10314     fi
10315 pcg 1.33
10316     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10317 pcg 1.1
10318     if test $if_tun_h = no; then
10319     tinc_cv_linux_if_tun_h=none
10320     else
10321     tinc_cv_linux_if_tun_h="$if_tun_h"
10322     fi
10323    
10324     fi
10325 pcg 1.33 { echo "$as_me:$LINENO: result: $tinc_cv_linux_if_tun_h" >&5
10326     echo "${ECHO_T}$tinc_cv_linux_if_tun_h" >&6; }
10327 pcg 1.1
10328     if test $tinc_cv_linux_if_tun_h != none; then
10329    
10330     cat >>confdefs.h <<\_ACEOF
10331     #define HAVE_TUNTAP 1
10332     _ACEOF
10333    
10334     if test $tinc_cv_linux_if_tun_h != default; then
10335    
10336     cat >>confdefs.h <<_ACEOF
10337     #define LINUX_IF_TUN_H $tinc_cv_linux_if_tun_h
10338     _ACEOF
10339    
10340     fi
10341     fi
10342    
10343    
10344    
10345    
10346 pcg 1.6
10347 pcg 1.1 tinc_ac_save_CPPFLAGS="$CPPFLAGS"
10348    
10349    
10350 pcg 1.33 # Check whether --with-openssl-include was given.
10351 pcg 1.1 if test "${with_openssl_include+set}" = set; then
10352 pcg 1.33 withval=$with_openssl_include; openssl_include="$withval"
10353 pcg 1.1 CFLAGS="$CFLAGS -I$withval"
10354     CPPFLAGS="$CPPFLAGS -I$withval"
10355    
10356 pcg 1.33 fi
10357    
10358 pcg 1.1
10359    
10360 pcg 1.33 # Check whether --with-openssl-lib was given.
10361 pcg 1.1 if test "${with_openssl_lib+set}" = set; then
10362 pcg 1.33 withval=$with_openssl_lib; openssl_lib="$withval"
10363 pcg 1.1 LIBS="$LIBS -L$withval"
10364    
10365 pcg 1.33 fi
10366    
10367 pcg 1.1
10368    
10369    
10370    
10371    
10372    
10373    
10374     for ac_header in openssl/evp.h openssl/rsa.h openssl/rand.h openssl/err.h openssl/sha.h openssl/pem.h
10375     do
10376     as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10377 pcg 1.33 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
10378     { echo "$as_me:$LINENO: checking for $ac_header" >&5
10379     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
10380     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
10381 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
10382     fi
10383 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
10384     { echo "$as_me:$LINENO: result: $ac_res" >&5
10385     echo "${ECHO_T}$ac_res" >&6; }
10386 pcg 1.1 else
10387     # Is the header compilable?
10388 pcg 1.33 { echo "$as_me:$LINENO: checking $ac_header usability" >&5
10389     echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
10390 pcg 1.1 cat >conftest.$ac_ext <<_ACEOF
10391     /* confdefs.h. */
10392     _ACEOF
10393     cat confdefs.h >>conftest.$ac_ext
10394     cat >>conftest.$ac_ext <<_ACEOF
10395     /* end confdefs.h. */
10396     $ac_includes_default
10397     #include <$ac_header>
10398     _ACEOF
10399     rm -f conftest.$ac_objext
10400 pcg 1.33 if { (ac_try="$ac_compile"
10401     case "(($ac_try" in
10402     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10403     *) ac_try_echo=$ac_try;;
10404     esac
10405     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10406     (eval "$ac_compile") 2>conftest.er1
10407 pcg 1.1 ac_status=$?
10408 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10409     rm -f conftest.er1
10410     cat conftest.err >&5
10411 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10412 pcg 1.33 (exit $ac_status); } && {
10413     test -z "$ac_cxx_werror_flag" ||
10414     test ! -s conftest.err
10415     } && test -s conftest.$ac_objext; then
10416 pcg 1.1 ac_header_compiler=yes
10417     else
10418     echo "$as_me: failed program was:" >&5
10419     sed 's/^/| /' conftest.$ac_ext >&5
10420    
10421 pcg 1.33 ac_header_compiler=no
10422 pcg 1.1 fi
10423 pcg 1.33
10424     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10425     { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
10426     echo "${ECHO_T}$ac_header_compiler" >&6; }
10427 pcg 1.1
10428     # Is the header present?
10429 pcg 1.33 { echo "$as_me:$LINENO: checking $ac_header presence" >&5
10430     echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
10431 pcg 1.1 cat >conftest.$ac_ext <<_ACEOF
10432     /* confdefs.h. */
10433     _ACEOF
10434     cat confdefs.h >>conftest.$ac_ext
10435     cat >>conftest.$ac_ext <<_ACEOF
10436     /* end confdefs.h. */
10437     #include <$ac_header>
10438     _ACEOF
10439 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
10440     case "(($ac_try" in
10441     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10442     *) ac_try_echo=$ac_try;;
10443     esac
10444     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10445     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
10446 pcg 1.1 ac_status=$?
10447     grep -v '^ *+' conftest.er1 >conftest.err
10448     rm -f conftest.er1
10449     cat conftest.err >&5
10450     echo "$as_me:$LINENO: \$? = $ac_status" >&5
10451 pcg 1.33 (exit $ac_status); } >/dev/null && {
10452     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
10453     test ! -s conftest.err
10454     }; then
10455 pcg 1.1 ac_header_preproc=yes
10456     else
10457     echo "$as_me: failed program was:" >&5
10458     sed 's/^/| /' conftest.$ac_ext >&5
10459    
10460     ac_header_preproc=no
10461     fi
10462 pcg 1.33
10463 pcg 1.1 rm -f conftest.err conftest.$ac_ext
10464 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
10465     echo "${ECHO_T}$ac_header_preproc" >&6; }
10466 pcg 1.1
10467     # So? What about this header?
10468 pcg 1.11 case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in
10469     yes:no: )
10470 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
10471     echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
10472 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
10473     echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
10474     ac_header_preproc=yes
10475 pcg 1.1 ;;
10476 pcg 1.11 no:yes:* )
10477 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
10478     echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
10479 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
10480     echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
10481     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
10482     echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
10483     { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
10484     echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
10485 pcg 1.1 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
10486     echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
10487 pcg 1.11 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
10488     echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
10489 pcg 1.33
10490 pcg 1.1 ;;
10491     esac
10492 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_header" >&5
10493     echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
10494     if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
10495 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
10496     else
10497 pcg 1.11 eval "$as_ac_Header=\$ac_header_preproc"
10498 pcg 1.1 fi
10499 pcg 1.33 ac_res=`eval echo '${'$as_ac_Header'}'`
10500     { echo "$as_me:$LINENO: result: $ac_res" >&5
10501     echo "${ECHO_T}$ac_res" >&6; }
10502 pcg 1.1
10503     fi
10504     if test `eval echo '${'$as_ac_Header'}'` = yes; then
10505     cat >>confdefs.h <<_ACEOF
10506     #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
10507     _ACEOF
10508    
10509     else
10510     { { echo "$as_me:$LINENO: error: OpenSSL header files not found." >&5
10511     echo "$as_me: error: OpenSSL header files not found." >&2;}
10512     { (exit 1); exit 1; }; }; break
10513    
10514     fi
10515    
10516     done
10517    
10518    
10519     CPPFLAGS="$tinc_ac_save_CPPFLAGS"
10520    
10521 pcg 1.33 { echo "$as_me:$LINENO: checking for SHA1_version in -lcrypto" >&5
10522     echo $ECHO_N "checking for SHA1_version in -lcrypto... $ECHO_C" >&6; }
10523 pcg 1.1 if test "${ac_cv_lib_crypto_SHA1_version+set}" = set; then
10524     echo $ECHO_N "(cached) $ECHO_C" >&6
10525     else
10526     ac_check_lib_save_LIBS=$LIBS
10527     LIBS="-lcrypto $LIBS"
10528     cat >conftest.$ac_ext <<_ACEOF
10529     /* confdefs.h. */
10530     _ACEOF
10531     cat confdefs.h >>conftest.$ac_ext
10532     cat >>conftest.$ac_ext <<_ACEOF
10533     /* end confdefs.h. */
10534    
10535 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
10536     Use char because int might match the return type of a GCC
10537     builtin and then its argument prototype would still apply. */
10538 pcg 1.1 #ifdef __cplusplus
10539     extern "C"
10540     #endif
10541     char SHA1_version ();
10542     int
10543     main ()
10544     {
10545 pcg 1.33 return SHA1_version ();
10546 pcg 1.1 ;
10547     return 0;
10548     }
10549     _ACEOF
10550     rm -f conftest.$ac_objext conftest$ac_exeext
10551 pcg 1.33 if { (ac_try="$ac_link"
10552     case "(($ac_try" in
10553     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10554     *) ac_try_echo=$ac_try;;
10555     esac
10556     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10557     (eval "$ac_link") 2>conftest.er1
10558 pcg 1.1 ac_status=$?
10559 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10560     rm -f conftest.er1
10561     cat conftest.err >&5
10562 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10563 pcg 1.33 (exit $ac_status); } && {
10564     test -z "$ac_cxx_werror_flag" ||
10565     test ! -s conftest.err
10566     } && test -s conftest$ac_exeext &&
10567     $as_test_x conftest$ac_exeext; then
10568 pcg 1.1 ac_cv_lib_crypto_SHA1_version=yes
10569     else
10570     echo "$as_me: failed program was:" >&5
10571     sed 's/^/| /' conftest.$ac_ext >&5
10572    
10573 pcg 1.33 ac_cv_lib_crypto_SHA1_version=no
10574 pcg 1.1 fi
10575 pcg 1.33
10576     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10577 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
10578 pcg 1.1 LIBS=$ac_check_lib_save_LIBS
10579     fi
10580 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_lib_crypto_SHA1_version" >&5
10581     echo "${ECHO_T}$ac_cv_lib_crypto_SHA1_version" >&6; }
10582 pcg 1.1 if test $ac_cv_lib_crypto_SHA1_version = yes; then
10583     LIBS="$LIBS -lcrypto"
10584     else
10585     { { echo "$as_me:$LINENO: error: OpenSSL libraries not found." >&5
10586     echo "$as_me: error: OpenSSL libraries not found." >&2;}
10587     { (exit 1); exit 1; }; }
10588    
10589     fi
10590    
10591    
10592    
10593    
10594    
10595    
10596     for ac_func in RAND_pseudo_bytes OPENSSL_add_all_algorithms_noconf OpenSSL_add_all_algorithms SSLeay_add_all_algorithms
10597     do
10598     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
10599 pcg 1.33 { echo "$as_me:$LINENO: checking for $ac_func" >&5
10600     echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
10601     if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
10602 pcg 1.1 echo $ECHO_N "(cached) $ECHO_C" >&6
10603     else
10604     cat >conftest.$ac_ext <<_ACEOF
10605     /* confdefs.h. */
10606     _ACEOF
10607     cat confdefs.h >>conftest.$ac_ext
10608     cat >>conftest.$ac_ext <<_ACEOF
10609     /* end confdefs.h. */
10610 pcg 1.11 /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
10611     For example, HP-UX 11i <limits.h> declares gettimeofday. */
10612     #define $ac_func innocuous_$ac_func
10613    
10614 pcg 1.1 /* System header to define __stub macros and hopefully few prototypes,
10615     which can conflict with char $ac_func (); below.
10616     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
10617     <limits.h> exists even on freestanding compilers. */
10618 pcg 1.11
10619 pcg 1.1 #ifdef __STDC__
10620     # include <limits.h>
10621     #else
10622     # include <assert.h>
10623     #endif
10624 pcg 1.11
10625     #undef $ac_func
10626    
10627 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
10628     Use char because int might match the return type of a GCC
10629     builtin and then its argument prototype would still apply. */
10630 pcg 1.1 #ifdef __cplusplus
10631     extern "C"
10632     #endif
10633     char $ac_func ();
10634     /* The GNU C library defines this for functions which it implements
10635     to always fail with ENOSYS. Some functions are actually named
10636     something starting with __ and the normal name is an alias. */
10637 pcg 1.33 #if defined __stub_$ac_func || defined __stub___$ac_func
10638 pcg 1.1 choke me
10639     #endif
10640    
10641     int
10642     main ()
10643     {
10644 pcg 1.33 return $ac_func ();
10645 pcg 1.1 ;
10646     return 0;
10647     }
10648     _ACEOF
10649     rm -f conftest.$ac_objext conftest$ac_exeext
10650 pcg 1.33 if { (ac_try="$ac_link"
10651     case "(($ac_try" in
10652     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10653     *) ac_try_echo=$ac_try;;
10654     esac
10655     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10656     (eval "$ac_link") 2>conftest.er1
10657 pcg 1.1 ac_status=$?
10658 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10659     rm -f conftest.er1
10660     cat conftest.err >&5
10661 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10662 pcg 1.33 (exit $ac_status); } && {
10663     test -z "$ac_cxx_werror_flag" ||
10664     test ! -s conftest.err
10665     } && test -s conftest$ac_exeext &&
10666     $as_test_x conftest$ac_exeext; then
10667 pcg 1.1 eval "$as_ac_var=yes"
10668     else
10669     echo "$as_me: failed program was:" >&5
10670     sed 's/^/| /' conftest.$ac_ext >&5
10671    
10672 pcg 1.33 eval "$as_ac_var=no"
10673 pcg 1.1 fi
10674 pcg 1.33
10675     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10676 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
10677 pcg 1.1 fi
10678 pcg 1.33 ac_res=`eval echo '${'$as_ac_var'}'`
10679     { echo "$as_me:$LINENO: result: $ac_res" >&5
10680     echo "${ECHO_T}$ac_res" >&6; }
10681 pcg 1.1 if test `eval echo '${'$as_ac_var'}'` = yes; then
10682     cat >>confdefs.h <<_ACEOF
10683     #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
10684     _ACEOF
10685    
10686     fi
10687     done
10688    
10689    
10690 pcg 1.33 { echo "$as_me:$LINENO: checking for dlopen" >&5
10691     echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
10692 pcg 1.1 if test "${ac_cv_func_dlopen+set}" = set; then
10693     echo $ECHO_N "(cached) $ECHO_C" >&6
10694     else
10695     cat >conftest.$ac_ext <<_ACEOF
10696     /* confdefs.h. */
10697     _ACEOF
10698     cat confdefs.h >>conftest.$ac_ext
10699     cat >>conftest.$ac_ext <<_ACEOF
10700     /* end confdefs.h. */
10701 pcg 1.11 /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
10702     For example, HP-UX 11i <limits.h> declares gettimeofday. */
10703     #define dlopen innocuous_dlopen
10704    
10705 pcg 1.1 /* System header to define __stub macros and hopefully few prototypes,
10706     which can conflict with char dlopen (); below.
10707     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
10708     <limits.h> exists even on freestanding compilers. */
10709 pcg 1.11
10710 pcg 1.1 #ifdef __STDC__
10711     # include <limits.h>
10712     #else
10713     # include <assert.h>
10714     #endif
10715 pcg 1.11
10716     #undef dlopen
10717    
10718 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
10719     Use char because int might match the return type of a GCC
10720     builtin and then its argument prototype would still apply. */
10721 pcg 1.1 #ifdef __cplusplus
10722     extern "C"
10723     #endif
10724     char dlopen ();
10725     /* The GNU C library defines this for functions which it implements
10726     to always fail with ENOSYS. Some functions are actually named
10727     something starting with __ and the normal name is an alias. */
10728 pcg 1.33 #if defined __stub_dlopen || defined __stub___dlopen
10729 pcg 1.1 choke me
10730     #endif
10731    
10732     int
10733     main ()
10734     {
10735 pcg 1.33 return dlopen ();
10736 pcg 1.1 ;
10737     return 0;
10738     }
10739     _ACEOF
10740     rm -f conftest.$ac_objext conftest$ac_exeext
10741 pcg 1.33 if { (ac_try="$ac_link"
10742     case "(($ac_try" in
10743     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10744     *) ac_try_echo=$ac_try;;
10745     esac
10746     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10747     (eval "$ac_link") 2>conftest.er1
10748 pcg 1.1 ac_status=$?
10749 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10750     rm -f conftest.er1
10751     cat conftest.err >&5
10752 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10753 pcg 1.33 (exit $ac_status); } && {
10754     test -z "$ac_cxx_werror_flag" ||
10755     test ! -s conftest.err
10756     } && test -s conftest$ac_exeext &&
10757     $as_test_x conftest$ac_exeext; then
10758 pcg 1.1 ac_cv_func_dlopen=yes
10759     else
10760     echo "$as_me: failed program was:" >&5
10761     sed 's/^/| /' conftest.$ac_ext >&5
10762    
10763 pcg 1.33 ac_cv_func_dlopen=no
10764 pcg 1.1 fi
10765 pcg 1.33
10766     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10767 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
10768 pcg 1.1 fi
10769 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
10770     echo "${ECHO_T}$ac_cv_func_dlopen" >&6; }
10771 pcg 1.1 if test $ac_cv_func_dlopen = yes; then
10772     :
10773     else
10774 pcg 1.33 { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
10775     echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
10776 pcg 1.1 if test "${ac_cv_lib_dl_dlopen+set}" = set; then
10777     echo $ECHO_N "(cached) $ECHO_C" >&6
10778     else
10779     ac_check_lib_save_LIBS=$LIBS
10780     LIBS="-ldl $LIBS"
10781     cat >conftest.$ac_ext <<_ACEOF
10782     /* confdefs.h. */
10783     _ACEOF
10784     cat confdefs.h >>conftest.$ac_ext
10785     cat >>conftest.$ac_ext <<_ACEOF
10786     /* end confdefs.h. */
10787    
10788 pcg 1.33 /* Override any GCC internal prototype to avoid an error.
10789     Use char because int might match the return type of a GCC
10790     builtin and then its argument prototype would still apply. */
10791 pcg 1.1 #ifdef __cplusplus
10792     extern "C"
10793     #endif
10794     char dlopen ();
10795     int
10796     main ()
10797     {
10798 pcg 1.33 return dlopen ();
10799 pcg 1.1 ;
10800     return 0;
10801     }
10802     _ACEOF
10803     rm -f conftest.$ac_objext conftest$ac_exeext
10804 pcg 1.33 if { (ac_try="$ac_link"
10805     case "(($ac_try" in
10806     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10807     *) ac_try_echo=$ac_try;;
10808     esac
10809     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10810     (eval "$ac_link") 2>conftest.er1
10811 pcg 1.1 ac_status=$?
10812 pcg 1.11 grep -v '^ *+' conftest.er1 >conftest.err
10813     rm -f conftest.er1
10814     cat conftest.err >&5
10815 pcg 1.1 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10816 pcg 1.33 (exit $ac_status); } && {
10817     test -z "$ac_cxx_werror_flag" ||
10818     test ! -s conftest.err
10819     } && test -s conftest$ac_exeext &&
10820     $as_test_x conftest$ac_exeext; then
10821 pcg 1.1 ac_cv_lib_dl_dlopen=yes
10822     else
10823     echo "$as_me: failed program was:" >&5
10824     sed 's/^/| /' conftest.$ac_ext >&5
10825    
10826 pcg 1.33 ac_cv_lib_dl_dlopen=no
10827 pcg 1.1 fi
10828 pcg 1.33
10829     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10830 pcg 1.11 conftest$ac_exeext conftest.$ac_ext
10831 pcg 1.1 LIBS=$ac_check_lib_save_LIBS
10832     fi
10833 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
10834     echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
10835 pcg 1.1 if test $ac_cv_lib_dl_dlopen = yes; then
10836     LIBS="$LIBS -ldl"
10837     else
10838     { { echo "$as_me:$LINENO: error: OpenSSL depends on libdl." >&5
10839     echo "$as_me: error: OpenSSL depends on libdl." >&2;}
10840     { (exit 1); exit 1; }; }
10841    
10842     fi
10843    
10844    
10845     fi
10846    
10847    
10848 pcg 1.6 if test "x$openssl_include" != x; then
10849     CXXFLAGS="$CXXFLAGS -I$openssl_include"
10850     fi
10851 pcg 1.1
10852 pcg 1.33 # Check whether --enable-static-daemon was given.
10853 pcg 1.21 if test "${enable_static_daemon+set}" = set; then
10854 pcg 1.33 enableval=$enable_static_daemon; LDFLAGS_DAEMON=-static
10855    
10856     fi
10857 pcg 1.21
10858    
10859    
10860 pcg 1.33 # Check whether --enable-rohc was given.
10861 pcg 1.1 if test "${enable_rohc+set}" = set; then
10862 pcg 1.33 enableval=$enable_rohc;
10863 pcg 1.1 echo
10864     echo "**********************************************************************"
10865     echo "**********************************************************************"
10866 pcg 1.16 echo "**** --enable-rohc is highly experimental, do not use ****************"
10867 pcg 1.1 echo "**********************************************************************"
10868     echo "**********************************************************************"
10869     echo
10870 pcg 1.16 rohc=true
10871    
10872     cat >>confdefs.h <<_ACEOF
10873     #define ENABLE_ROHC 1
10874     _ACEOF
10875    
10876 pcg 1.1
10877    
10878 pcg 1.33 fi
10879    
10880 pcg 1.1
10881 pcg 1.16
10882    
10883     if test x$rohc = xtrue; then
10884     ROHC_TRUE=
10885     ROHC_FALSE='#'
10886     else
10887     ROHC_TRUE='#'
10888     ROHC_FALSE=
10889     fi
10890    
10891    
10892 pcg 1.30
10893 pcg 1.33 # Check whether --enable-icmp was given.
10894 pcg 1.1 if test "${enable_icmp+set}" = set; then
10895 pcg 1.33 enableval=$enable_icmp;
10896 pcg 1.1 cat >>confdefs.h <<_ACEOF
10897     #define ENABLE_ICMP 1
10898     _ACEOF
10899    
10900    
10901 pcg 1.33 fi
10902    
10903 pcg 1.1
10904 pcg 1.33 # Check whether --enable-tcp was given.
10905 pcg 1.1 if test "${enable_tcp+set}" = set; then
10906 pcg 1.33 enableval=$enable_tcp;
10907 pcg 1.1 cat >>confdefs.h <<_ACEOF
10908     #define ENABLE_TCP 1
10909     _ACEOF
10910    
10911    
10912 pcg 1.33 fi
10913    
10914 pcg 1.1
10915 pcg 1.33 # Check whether --enable-dns was given.
10916 pcg 1.17 if test "${enable_dns+set}" = set; then
10917 pcg 1.33 enableval=$enable_dns;
10918 pcg 1.24 if test "${ac_cv_header_gmp_h+set}" = set; then
10919 pcg 1.33 { echo "$as_me:$LINENO: checking for gmp.h" >&5
10920     echo $ECHO_N "checking for gmp.h... $ECHO_C" >&6; }
10921 pcg 1.24 if test "${ac_cv_header_gmp_h+set}" = set; then
10922     echo $ECHO_N "(cached) $ECHO_C" >&6
10923     fi
10924 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_header_gmp_h" >&5
10925     echo "${ECHO_T}$ac_cv_header_gmp_h" >&6; }
10926 pcg 1.24 else
10927     # Is the header compilable?
10928 pcg 1.33 { echo "$as_me:$LINENO: checking gmp.h usability" >&5
10929     echo $ECHO_N "checking gmp.h usability... $ECHO_C" >&6; }
10930 pcg 1.24 cat >conftest.$ac_ext <<_ACEOF
10931     /* confdefs.h. */
10932     _ACEOF
10933     cat confdefs.h >>conftest.$ac_ext
10934     cat >>conftest.$ac_ext <<_ACEOF
10935     /* end confdefs.h. */
10936     $ac_includes_default
10937     #include <gmp.h>
10938     _ACEOF
10939     rm -f conftest.$ac_objext
10940 pcg 1.33 if { (ac_try="$ac_compile"
10941     case "(($ac_try" in
10942     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10943     *) ac_try_echo=$ac_try;;
10944     esac
10945     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10946     (eval "$ac_compile") 2>conftest.er1
10947 pcg 1.24 ac_status=$?
10948     grep -v '^ *+' conftest.er1 >conftest.err
10949     rm -f conftest.er1
10950     cat conftest.err >&5
10951     echo "$as_me:$LINENO: \$? = $ac_status" >&5
10952 pcg 1.33 (exit $ac_status); } && {
10953     test -z "$ac_cxx_werror_flag" ||
10954     test ! -s conftest.err
10955     } && test -s conftest.$ac_objext; then
10956 pcg 1.24 ac_header_compiler=yes
10957     else
10958     echo "$as_me: failed program was:" >&5
10959     sed 's/^/| /' conftest.$ac_ext >&5
10960    
10961 pcg 1.33 ac_header_compiler=no
10962 pcg 1.24 fi
10963 pcg 1.33
10964     rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10965     { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
10966     echo "${ECHO_T}$ac_header_compiler" >&6; }
10967 pcg 1.24
10968     # Is the header present?
10969 pcg 1.33 { echo "$as_me:$LINENO: checking gmp.h presence" >&5
10970     echo $ECHO_N "checking gmp.h presence... $ECHO_C" >&6; }
10971 pcg 1.24 cat >conftest.$ac_ext <<_ACEOF
10972     /* confdefs.h. */
10973     _ACEOF
10974     cat confdefs.h >>conftest.$ac_ext
10975     cat >>conftest.$ac_ext <<_ACEOF
10976     /* end confdefs.h. */
10977     #include <gmp.h>
10978     _ACEOF
10979 pcg 1.33 if { (ac_try="$ac_cpp conftest.$ac_ext"
10980     case "(($ac_try" in
10981     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
10982     *) ac_try_echo=$ac_try;;
10983     esac
10984     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
10985     (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
10986 pcg 1.24 ac_status=$?
10987     grep -v '^ *+' conftest.er1 >conftest.err
10988     rm -f conftest.er1
10989     cat conftest.err >&5
10990     echo "$as_me:$LINENO: \$? = $ac_status" >&5
10991 pcg 1.33 (exit $ac_status); } >/dev/null && {
10992     test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
10993     test ! -s conftest.err
10994     }; then
10995 pcg 1.24 ac_header_preproc=yes
10996     else
10997     echo "$as_me: failed program was:" >&5
10998     sed 's/^/| /' conftest.$ac_ext >&5
10999    
11000     ac_header_preproc=no
11001     fi
11002 pcg 1.33
11003 pcg 1.24 rm -f conftest.err conftest.$ac_ext
11004 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
11005     echo "${ECHO_T}$ac_header_preproc" >&6; }
11006 pcg 1.24
11007     # So? What about this header?
11008     case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in
11009     yes:no: )
11010     { echo "$as_me:$LINENO: WARNING: gmp.h: accepted by the compiler, rejected by the preprocessor!" >&5
11011     echo "$as_me: WARNING: gmp.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
11012     { echo "$as_me:$LINENO: WARNING: gmp.h: proceeding with the compiler's result" >&5
11013     echo "$as_me: WARNING: gmp.h: proceeding with the compiler's result" >&2;}
11014     ac_header_preproc=yes
11015     ;;
11016     no:yes:* )
11017     { echo "$as_me:$LINENO: WARNING: gmp.h: present but cannot be compiled" >&5
11018     echo "$as_me: WARNING: gmp.h: present but cannot be compiled" >&2;}
11019     { echo "$as_me:$LINENO: WARNING: gmp.h: check for missing prerequisite headers?" >&5
11020     echo "$as_me: WARNING: gmp.h: check for missing prerequisite headers?" >&2;}
11021     { echo "$as_me:$LINENO: WARNING: gmp.h: see the Autoconf documentation" >&5
11022     echo "$as_me: WARNING: gmp.h: see the Autoconf documentation" >&2;}
11023     { echo "$as_me:$LINENO: WARNING: gmp.h: section \"Present But Cannot Be Compiled\"" >&5
11024     echo "$as_me: WARNING: gmp.h: section \"Present But Cannot Be Compiled\"" >&2;}
11025     { echo "$as_me:$LINENO: WARNING: gmp.h: proceeding with the preprocessor's result" >&5
11026     echo "$as_me: WARNING: gmp.h: proceeding with the preprocessor's result" >&2;}
11027     { echo "$as_me:$LINENO: WARNING: gmp.h: in the future, the compiler will take precedence" >&5
11028     echo "$as_me: WARNING: gmp.h: in the future, the compiler will take precedence" >&2;}
11029 pcg 1.33
11030 pcg 1.24 ;;
11031     esac
11032 pcg 1.33 { echo "$as_me:$LINENO: checking for gmp.h" >&5
11033     echo $ECHO_N "checking for gmp.h... $ECHO_C" >&6; }
11034 pcg 1.24 if test "${ac_cv_header_gmp_h+set}" = set; then
11035     echo $ECHO_N "(cached) $ECHO_C" >&6
11036     else
11037     ac_cv_header_gmp_h=$ac_header_preproc
11038     fi
11039 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_header_gmp_h" >&5
11040     echo "${ECHO_T}$ac_cv_header_gmp_h" >&6; }
11041 pcg 1.24
11042     fi
11043     if test $ac_cv_header_gmp_h = yes; then
11044     :
11045     else
11046     { { echo "$as_me:$LINENO: error: gmp.h not found, required for --enable-dns" >&5
11047     echo "$as_me: error: gmp.h not found, required for --enable-dns" >&2;}
11048     { (exit 1); exit 1; }; }
11049     fi
11050    
11051    
11052    
11053 pcg 1.33 { echo "$as_me:$LINENO: checking for main in -lgmp" >&5
11054     echo $ECHO_N "checking for main in -lgmp... $ECHO_C" >&6; }
11055 pcg 1.24 if test "${ac_cv_lib_gmp_main+set}" = set; then
11056     echo $ECHO_N "(cached) $ECHO_C" >&6
11057     else
11058     ac_check_lib_save_LIBS=$LIBS
11059     LIBS="-lgmp $LIBS"
11060     cat >conftest.$ac_ext <<_ACEOF
11061     /* confdefs.h. */
11062     _ACEOF
11063     cat confdefs.h >>conftest.$ac_ext
11064     cat >>conftest.$ac_ext <<_ACEOF
11065     /* end confdefs.h. */
11066    
11067    
11068     int
11069     main ()
11070     {
11071 pcg 1.33 return main ();
11072 pcg 1.24 ;
11073     return 0;
11074     }
11075     _ACEOF
11076     rm -f conftest.$ac_objext conftest$ac_exeext
11077 pcg 1.33 if { (ac_try="$ac_link"
11078     case "(($ac_try" in
11079     *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
11080     *) ac_try_echo=$ac_try;;
11081     esac
11082     eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
11083     (eval "$ac_link") 2>conftest.er1
11084 pcg 1.24 ac_status=$?
11085     grep -v '^ *+' conftest.er1 >conftest.err
11086     rm -f conftest.er1
11087     cat conftest.err >&5
11088     echo "$as_me:$LINENO: \$? = $ac_status" >&5
11089 pcg 1.33 (exit $ac_status); } && {
11090     test -z "$ac_cxx_werror_flag" ||
11091     test ! -s conftest.err
11092     } && test -s conftest$ac_exeext &&
11093     $as_test_x conftest$ac_exeext; then
11094 pcg 1.24 ac_cv_lib_gmp_main=yes
11095     else
11096     echo "$as_me: failed program was:" >&5
11097     sed 's/^/| /' conftest.$ac_ext >&5
11098    
11099 pcg 1.33 ac_cv_lib_gmp_main=no
11100 pcg 1.24 fi
11101 pcg 1.33
11102     rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11103 pcg 1.24 conftest$ac_exeext conftest.$ac_ext
11104     LIBS=$ac_check_lib_save_LIBS
11105     fi
11106 pcg 1.33 { echo "$as_me:$LINENO: result: $ac_cv_lib_gmp_main" >&5
11107     echo "${ECHO_T}$ac_cv_lib_gmp_main" >&6; }
11108 pcg 1.24 if test $ac_cv_lib_gmp_main = yes; then
11109     cat >>confdefs.h <<_ACEOF
11110     #define HAVE_LIBGMP 1
11111     _ACEOF
11112    
11113     LIBS="-lgmp $LIBS"
11114    
11115     else
11116     { { echo "$as_me:$LINENO: error: libgmp not found, required for --enable-dns" >&5
11117     echo "$as_me: error: libgmp not found, required for --enable-dns" >&2;}
11118     { (exit 1); exit 1; }; }
11119     fi
11120    
11121    
11122    
11123 pcg 1.17 cat >>confdefs.h <<_ACEOF
11124     #define ENABLE_DNS 1
11125     _ACEOF
11126    
11127    
11128 pcg 1.24
11129 pcg 1.33 fi
11130    
11131 pcg 1.17
11132 pcg 1.33 # Check whether --enable-http-proxy was given.
11133 pcg 1.1 if test "${enable_http_proxy+set}" = set; then
11134 pcg 1.33 enableval=$enable_http_proxy;
11135 pcg 1.1 cat >>confdefs.h <<_ACEOF
11136     #define ENABLE_HTTP_PROXY 1
11137     _ACEOF
11138    
11139    
11140 pcg 1.33 fi
11141    
11142 pcg 1.1
11143 pcg 1.21 HMAC=12
11144 pcg 1.33 # Check whether --enable-hmac-length was given.
11145 pcg 1.1 if test "${enable_hmac_length+set}" = set; then
11146 pcg 1.33 enableval=$enable_hmac_length; HMAC=$enableval
11147    
11148     fi
11149 pcg 1.1
11150    
11151     cat >>confdefs.h <<_ACEOF
11152     #define HMACLENGTH $HMAC
11153     _ACEOF
11154    
11155    
11156 pcg 1.21 RAND=8
11157 pcg 1.33 # Check whether --enable-rand-length was given.
11158 pcg 1.1 if test "${enable_rand_length+set}" = set; then
11159 pcg 1.33 enableval=$enable_rand_length; RAND=$enableval
11160    
11161     fi
11162 pcg 1.1
11163    
11164     cat >>confdefs.h <<_ACEOF
11165     #define RAND_SIZE $RAND
11166     _ACEOF
11167    
11168    
11169 pcg 1.21 MTU=1500
11170 pcg 1.33 # Check whether --enable-mtu was given.
11171 pcg 1.1 if test "${enable_mtu+set}" = set; then
11172 pcg 1.33 enableval=$enable_mtu; MTU=$enableval
11173    
11174     fi
11175 pcg 1.1
11176    
11177     cat >>confdefs.h <<_ACEOF
11178     #define MAX_MTU $MTU + 14
11179     _ACEOF
11180    
11181    
11182     COMPRESS=1
11183 pcg 1.33 # Check whether --enable-compression was given.
11184 pcg 1.1 if test "${enable_compression+set}" = set; then
11185 pcg 1.33 enableval=$enable_compression; if test "x$enableval" = xno; then
11186 pcg 1.1 COMPRESS=0
11187     fi
11188    
11189 pcg 1.33 fi
11190    
11191 pcg 1.1
11192     cat >>confdefs.h <<_ACEOF
11193     #define ENABLE_COMPRESSION $COMPRESS
11194     _ACEOF
11195    
11196    
11197 pcg 1.30 CIPHER=aes_128_cbc
11198 pcg 1.33 # Check whether --enable-cipher was given.
11199 pcg 1.1 if test "${enable_cipher+set}" = set; then
11200 pcg 1.33 enableval=$enable_cipher; if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
11201 pcg 1.1 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
11202     if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
11203     if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
11204    
11205 pcg 1.33 fi
11206    
11207 pcg 1.1
11208     cat >>confdefs.h <<_ACEOF
11209     #define ENABLE_CIPHER EVP_${CIPHER}
11210     _ACEOF
11211    
11212    
11213 pcg 1.30 DIGEST=ripemd160
11214 pcg 1.33 # Check whether --enable-digest was given.
11215 pcg 1.1 if test "${enable_digest+set}" = set; then
11216 pcg 1.33 enableval=$enable_digest; if test "x$enableval" = xsha512 ; then DIGEST=sha512 ; fi
11217     if test "x$enableval" = xsha256 ; then DIGEST=sha256 ; fi
11218 pcg 1.1 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
11219     if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
11220     if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
11221     if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
11222    
11223 pcg 1.33 fi
11224    
11225 pcg 1.1
11226     cat >>confdefs.h <<_ACEOF
11227     #define ENABLE_DIGEST EVP_${DIGEST}
11228     _ACEOF
11229    
11230    
11231     if $CXX -v --help 2>&1 | grep -q fno-rtti; then
11232     CXXFLAGS="$CXXFLAGS -fno-rtti"
11233     fi
11234    
11235     if $CXX -v --help 2>&1 | grep -q fexceptions; then
11236     CXXFLAGS="$CXXFLAGS -fno-exceptions"
11237     fi
11238    
11239 pcg 1.36 LIBS="$EXTRA_LIBS $LIBS"
11240    
11241 pcg 1.1
11242    
11243    
11244 pcg 1.33 ac_config_files="$ac_config_files Makefile po/Makefile.in src/Makefile doc/Makefile lib/Makefile m4/Makefile"
11245 pcg 1.19
11246 pcg 1.1 cat >confcache <<\_ACEOF
11247     # This file is a shell script that caches the results of configure
11248     # tests run on this system so they can be shared between configure
11249     # scripts and configure runs, see configure's option --config-cache.
11250     # It is not useful on other systems. If it contains results you don't
11251     # want to keep, you may remove or edit it.
11252     #
11253     # config.status only pays attention to the cache file if you give it
11254     # the --recheck option to rerun configure.
11255     #
11256     # `ac_cv_env_foo' variables (set or unset) will be overridden when
11257     # loading this file, other *unset* `ac_cv_foo' will be assigned the
11258     # following values.
11259    
11260     _ACEOF
11261    
11262     # The following way of writing the cache mishandles newlines in values,
11263     # but we know of no workaround that is simple, portable, and efficient.
11264 pcg 1.33 # So, we kill variables containing newlines.
11265 pcg 1.1 # Ultrix sh set writes to stderr and can't be redirected directly,
11266     # and sets the high bit in the cache file unless we assign to the vars.
11267 pcg 1.33 (
11268     for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
11269     eval ac_val=\$$ac_var
11270     case $ac_val in #(
11271     *${as_nl}*)
11272     case $ac_var in #(
11273     *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
11274     echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
11275     esac
11276     case $ac_var in #(
11277     _ | IFS | as_nl) ;; #(
11278     *) $as_unset $ac_var ;;
11279     esac ;;
11280     esac
11281     done
11282    
11283 pcg 1.1 (set) 2>&1 |
11284 pcg 1.33 case $as_nl`(ac_space=' '; set) 2>&1` in #(
11285     *${as_nl}ac_space=\ *)
11286 pcg 1.1 # `set' does not quote correctly, so add quotes (double-quote
11287     # substitution turns \\\\ into \\, and sed turns \\ into \).
11288     sed -n \
11289 pcg 1.11 "s/'/'\\\\''/g;
11290     s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
11291 pcg 1.33 ;; #(
11292 pcg 1.1 *)
11293     # `set' quotes correctly as required by POSIX, so do not add quotes.
11294 pcg 1.33 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
11295 pcg 1.1 ;;
11296 pcg 1.33 esac |
11297     sort
11298     ) |
11299 pcg 1.1 sed '
11300 pcg 1.33 /^ac_cv_env_/b end
11301 pcg 1.1 t clear
11302 pcg 1.33 :clear
11303 pcg 1.1 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
11304     t end
11305 pcg 1.33 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
11306     :end' >>confcache
11307     if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
11308     if test -w "$cache_file"; then
11309     test "x$cache_file" != "x/dev/null" &&
11310     { echo "$as_me:$LINENO: updating cache $cache_file" >&5
11311     echo "$as_me: updating cache $cache_file" >&6;}
11312 pcg 1.1 cat confcache >$cache_file
11313     else
11314 pcg 1.33 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
11315     echo "$as_me: not updating unwritable cache $cache_file" >&6;}
11316 pcg 1.1 fi
11317     fi
11318     rm -f confcache
11319    
11320     test "x$prefix" = xNONE && prefix=$ac_default_prefix
11321     # Let make expand exec_prefix.
11322     test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
11323    
11324     DEFS=-DHAVE_CONFIG_H
11325    
11326     ac_libobjs=
11327     ac_ltlibobjs=
11328     for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
11329     # 1. Remove the extension, and $U if already installed.
11330 pcg 1.33 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
11331     ac_i=`echo "$ac_i" | sed "$ac_script"`
11332     # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
11333     # will be set to the directory where LIBOBJS objects are built.
11334     ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
11335     ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
11336 pcg 1.1 done
11337     LIBOBJS=$ac_libobjs
11338    
11339     LTLIBOBJS=$ac_ltlibobjs
11340    
11341    
11342     if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
11343     { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
11344     Usually this means the macro was only invoked conditionally." >&5
11345     echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
11346     Usually this means the macro was only invoked conditionally." >&2;}
11347     { (exit 1); exit 1; }; }
11348     fi
11349     if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
11350     { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
11351     Usually this means the macro was only invoked conditionally." >&5
11352     echo "$as_me: error: conditional \"AMDEP\" was never defined.
11353     Usually this means the macro was only invoked conditionally." >&2;}
11354     { (exit 1); exit 1; }; }
11355     fi
11356     if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
11357     { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
11358     Usually this means the macro was only invoked conditionally." >&5
11359     echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
11360     Usually this means the macro was only invoked conditionally." >&2;}
11361     { (exit 1); exit 1; }; }
11362     fi
11363     if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
11364     { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
11365     Usually this means the macro was only invoked conditionally." >&5
11366     echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
11367     Usually this means the macro was only invoked conditionally." >&2;}
11368     { (exit 1); exit 1; }; }
11369     fi
11370     if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
11371     { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
11372     Usually this means the macro was only invoked conditionally." >&5
11373     echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
11374     Usually this means the macro was only invoked conditionally." >&2;}
11375     { (exit 1); exit 1; }; }
11376     fi
11377 pcg 1.16 if test -z "${ROHC_TRUE}" && test -z "${ROHC_FALSE}"; then
11378     { { echo "$as_me:$LINENO: error: conditional \"ROHC\" was never defined.
11379     Usually this means the macro was only invoked conditionally." >&5
11380     echo "$as_me: error: conditional \"ROHC\" was never defined.
11381     Usually this means the macro was only invoked conditionally." >&2;}
11382     { (exit 1); exit 1; }; }
11383     fi
11384 pcg 1.1
11385     : ${CONFIG_STATUS=./config.status}
11386     ac_clean_files_save=$ac_clean_files
11387     ac_clean_files="$ac_clean_files $CONFIG_STATUS"
11388     { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
11389     echo "$as_me: creating $CONFIG_STATUS" >&6;}
11390     cat >$CONFIG_STATUS <<_ACEOF
11391     #! $SHELL
11392     # Generated by $as_me.
11393     # Run this file to recreate the current configuration.
11394     # Compiler output produced by configure, useful for debugging
11395     # configure, is in config.log if it exists.
11396    
11397     debug=false
11398     ac_cs_recheck=false
11399     ac_cs_silent=false
11400     SHELL=\${CONFIG_SHELL-$SHELL}
11401     _ACEOF
11402    
11403     cat >>$CONFIG_STATUS <<\_ACEOF
11404     ## --------------------- ##
11405     ## M4sh Initialization. ##
11406     ## --------------------- ##
11407    
11408 pcg 1.33 # Be more Bourne compatible
11409     DUALCASE=1; export DUALCASE # for MKS sh
11410 pcg 1.1 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
11411     emulate sh
11412     NULLCMD=:
11413     # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
11414     # is contrary to our usage. Disable this feature.
11415     alias -g '${1+"$@"}'='"$@"'
11416 pcg 1.33 setopt NO_GLOB_SUBST
11417     else
11418     case `(set -o) 2>/dev/null` in
11419     *posix*) set -o posix ;;
11420     esac
11421    
11422     fi
11423    
11424    
11425    
11426    
11427     # PATH needs CR
11428     # Avoid depending upon Character Ranges.
11429     as_cr_letters='abcdefghijklmnopqrstuvwxyz'
11430     as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
11431     as_cr_Letters=$as_cr_letters$as_cr_LETTERS
11432     as_cr_digits='0123456789'
11433     as_cr_alnum=$as_cr_Letters$as_cr_digits
11434    
11435     # The user is always right.
11436     if test "${PATH_SEPARATOR+set}" != set; then
11437     echo "#! /bin/sh" >conf$$.sh
11438     echo "exit 0" >>conf$$.sh
11439     chmod +x conf$$.sh
11440     if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
11441     PATH_SEPARATOR=';'
11442     else
11443     PATH_SEPARATOR=:
11444     fi
11445     rm -f conf$$.sh
11446 pcg 1.1 fi
11447    
11448     # Support unset when possible.
11449 pcg 1.11 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
11450 pcg 1.1 as_unset=unset
11451     else
11452     as_unset=false
11453     fi
11454    
11455    
11456 pcg 1.33 # IFS
11457     # We need space, tab and new line, in precisely that order. Quoting is
11458     # there to prevent editors from complaining about space-tab.
11459     # (If _AS_PATH_WALK were called with IFS unset, it would disable word
11460     # splitting by setting IFS to empty value.)
11461     as_nl='
11462     '
11463     IFS=" "" $as_nl"
11464    
11465     # Find who we are. Look in the path if we contain no directory separator.
11466     case $0 in
11467     *[\\/]* ) as_myself=$0 ;;
11468     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11469     for as_dir in $PATH
11470     do
11471     IFS=$as_save_IFS
11472     test -z "$as_dir" && as_dir=.
11473     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
11474     done
11475     IFS=$as_save_IFS
11476    
11477     ;;
11478     esac
11479     # We did not find ourselves, most probably we were run as `sh COMMAND'
11480     # in which case we are not to be found in the path.
11481     if test "x$as_myself" = x; then
11482     as_myself=$0
11483     fi
11484     if test ! -f "$as_myself"; then
11485     echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
11486     { (exit 1); exit 1; }
11487     fi
11488    
11489 pcg 1.1 # Work around bugs in pre-3.0 UWIN ksh.
11490 pcg 1.33 for as_var in ENV MAIL MAILPATH
11491     do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
11492     done
11493 pcg 1.1 PS1='$ '
11494     PS2='> '
11495     PS4='+ '
11496    
11497     # NLS nuisances.
11498     for as_var in \
11499     LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
11500     LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
11501     LC_TELEPHONE LC_TIME
11502     do
11503 pcg 1.11 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
11504 pcg 1.1 eval $as_var=C; export $as_var
11505     else
11506 pcg 1.33 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
11507 pcg 1.1 fi
11508     done
11509    
11510     # Required to use basename.
11511 pcg 1.33 if expr a : '\(a\)' >/dev/null 2>&1 &&
11512     test "X`expr 00001 : '.*\(...\)'`" = X001; then
11513 pcg 1.1 as_expr=expr
11514     else
11515     as_expr=false
11516     fi
11517    
11518 pcg 1.33 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
11519 pcg 1.1 as_basename=basename
11520     else
11521     as_basename=false
11522     fi
11523    
11524    
11525     # Name of the executable.
11526 pcg 1.33 as_me=`$as_basename -- "$0" ||
11527 pcg 1.1 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
11528     X"$0" : 'X\(//\)$' \| \
11529 pcg 1.33 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
11530 pcg 1.1 echo X/"$0" |
11531 pcg 1.33 sed '/^.*\/\([^/][^/]*\)\/*$/{
11532     s//\1/
11533     q
11534     }
11535     /^X\/\(\/\/\)$/{
11536     s//\1/
11537     q
11538     }
11539     /^X\/\(\/\).*/{
11540     s//\1/
11541     q
11542     }
11543     s/.*/./; q'`
11544 pcg 1.1
11545 pcg 1.33 # CDPATH.
11546     $as_unset CDPATH
11547 pcg 1.1
11548    
11549    
11550     as_lineno_1=$LINENO
11551     as_lineno_2=$LINENO
11552     test "x$as_lineno_1" != "x$as_lineno_2" &&
11553 pcg 1.33 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
11554 pcg 1.1
11555     # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
11556     # uniformly replaced by the line number. The first 'sed' inserts a
11557 pcg 1.33 # line-number line after each line using $LINENO; the second 'sed'
11558     # does the real work. The second script uses 'N' to pair each
11559     # line-number line with the line containing $LINENO, and appends
11560     # trailing '-' during substitution so that $LINENO is not a special
11561     # case at line end.
11562 pcg 1.1 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
11563 pcg 1.33 # scripts with optimization help from Paolo Bonzini. Blame Lee
11564     # E. McMahon (1931-1989) for sed's syntax. :-)
11565     sed -n '
11566     p
11567     /[$]LINENO/=
11568     ' <$as_myself |
11569 pcg 1.1 sed '
11570 pcg 1.33 s/[$]LINENO.*/&-/
11571     t lineno
11572     b
11573     :lineno
11574 pcg 1.1 N
11575 pcg 1.33 :loop
11576     s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
11577 pcg 1.1 t loop
11578 pcg 1.33 s/-\n.*//
11579 pcg 1.1 ' >$as_me.lineno &&
11580 pcg 1.33 chmod +x "$as_me.lineno" ||
11581     { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
11582 pcg 1.1 { (exit 1); exit 1; }; }
11583    
11584     # Don't try to exec as it changes $[0], causing all sort of problems
11585     # (the dirname of $[0] is not the place where we might find the
11586 pcg 1.33 # original and so on. Autoconf is especially sensitive to this).
11587     . "./$as_me.lineno"
11588 pcg 1.1 # Exit status is that of the last command.
11589     exit
11590     }
11591    
11592    
11593 pcg 1.33 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
11594     as_dirname=dirname
11595     else
11596     as_dirname=false
11597     fi
11598    
11599     ECHO_C= ECHO_N= ECHO_T=
11600     case `echo -n x` in
11601     -n*)
11602     case `echo 'x\c'` in
11603     *c*) ECHO_T=' ';; # ECHO_T is single tab character.
11604     *) ECHO_C='\c';;
11605     esac;;
11606     *)
11607     ECHO_N='-n';;
11608 pcg 1.1 esac
11609    
11610 pcg 1.33 if expr a : '\(a\)' >/dev/null 2>&1 &&
11611     test "X`expr 00001 : '.*\(...\)'`" = X001; then
11612 pcg 1.1 as_expr=expr
11613     else
11614     as_expr=false
11615     fi
11616    
11617     rm -f conf$$ conf$$.exe conf$$.file
11618 pcg 1.33 if test -d conf$$.dir; then
11619     rm -f conf$$.dir/conf$$.file
11620     else
11621     rm -f conf$$.dir
11622     mkdir conf$$.dir
11623     fi
11624 pcg 1.1 echo >conf$$.file
11625     if ln -s conf$$.file conf$$ 2>/dev/null; then
11626 pcg 1.33 as_ln_s='ln -s'
11627     # ... but there are two gotchas:
11628     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
11629     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
11630     # In both cases, we have to default to `cp -p'.
11631     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
11632 pcg 1.1 as_ln_s='cp -p'
11633     elif ln conf$$.file conf$$ 2>/dev/null; then
11634     as_ln_s=ln
11635     else
11636     as_ln_s='cp -p'
11637     fi
11638 pcg 1.33 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
11639     rmdir conf$$.dir 2>/dev/null
11640 pcg 1.1
11641     if mkdir -p . 2>/dev/null; then
11642     as_mkdir_p=:
11643     else
11644 pcg 1.11 test -d ./-p && rmdir ./-p
11645 pcg 1.1 as_mkdir_p=false
11646     fi
11647    
11648 pcg 1.33 if test -x / >/dev/null 2>&1; then
11649     as_test_x='test -x'
11650     else
11651     if ls -dL / >/dev/null 2>&1; then
11652     as_ls_L_option=L
11653     else
11654     as_ls_L_option=
11655     fi
11656     as_test_x='
11657     eval sh -c '\''
11658     if test -d "$1"; then
11659     test -d "$1/.";
11660     else
11661     case $1 in
11662     -*)set "./$1";;
11663     esac;
11664     case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
11665     ???[sx]*):;;*)false;;esac;fi
11666     '\'' sh
11667     '
11668     fi
11669     as_executable_p=$as_test_x
11670 pcg 1.1
11671     # Sed expression to map a string onto a valid CPP name.
11672 pcg 1.11 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
11673 pcg 1.1
11674     # Sed expression to map a string onto a valid variable name.
11675 pcg 1.11 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
11676 pcg 1.1
11677    
11678     exec 6>&1
11679    
11680 pcg 1.33 # Save the log message, to keep $[0] and so on meaningful, and to
11681 pcg 1.1 # report actual input values of CONFIG_FILES etc. instead of their
11682 pcg 1.33 # values after options handling.
11683     ac_log="
11684 pcg 1.1 This file was extended by $as_me, which was
11685 pcg 1.33 generated by GNU Autoconf 2.61. Invocation command line was
11686 pcg 1.1
11687     CONFIG_FILES = $CONFIG_FILES
11688     CONFIG_HEADERS = $CONFIG_HEADERS
11689     CONFIG_LINKS = $CONFIG_LINKS
11690     CONFIG_COMMANDS = $CONFIG_COMMANDS
11691     $ $0 $@
11692    
11693 pcg 1.33 on `(hostname || uname -n) 2>/dev/null | sed 1q`
11694     "
11695    
11696 pcg 1.1 _ACEOF
11697    
11698 pcg 1.33 cat >>$CONFIG_STATUS <<_ACEOF
11699 pcg 1.1 # Files that config.status was made for.
11700 pcg 1.33 config_files="$ac_config_files"
11701     config_headers="$ac_config_headers"
11702     config_commands="$ac_config_commands"
11703 pcg 1.1
11704 pcg 1.33 _ACEOF
11705 pcg 1.1
11706     cat >>$CONFIG_STATUS <<\_ACEOF
11707     ac_cs_usage="\
11708     \`$as_me' instantiates files from templates according to the
11709     current configuration.
11710    
11711     Usage: $0 [OPTIONS] [FILE]...
11712    
11713     -h, --help print this help, then exit
11714 pcg 1.33 -V, --version print version number and configuration settings, then exit
11715 pcg 1.1 -q, --quiet do not print progress messages
11716     -d, --debug don't remove temporary files
11717     --recheck update $as_me by reconfiguring in the same conditions
11718     --file=FILE[:TEMPLATE]
11719 pcg 1.11 instantiate the configuration file FILE
11720 pcg 1.1 --header=FILE[:TEMPLATE]
11721 pcg 1.11 instantiate the configuration header FILE
11722 pcg 1.1
11723     Configuration files:
11724     $config_files
11725    
11726     Configuration headers:
11727     $config_headers
11728    
11729     Configuration commands:
11730     $config_commands
11731    
11732     Report bugs to <bug-autoconf@gnu.org>."
11733 pcg 1.33
11734 pcg 1.1 _ACEOF
11735     cat >>$CONFIG_STATUS <<_ACEOF
11736     ac_cs_version="\\
11737     config.status
11738 pcg 1.33 configured by $0, generated by GNU Autoconf 2.61,
11739     with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
11740 pcg 1.1
11741 pcg 1.33 Copyright (C) 2006 Free Software Foundation, Inc.
11742 pcg 1.1 This config.status script is free software; the Free Software Foundation
11743     gives unlimited permission to copy, distribute and modify it."
11744 pcg 1.33
11745     ac_pwd='$ac_pwd'
11746     srcdir='$srcdir'
11747     INSTALL='$INSTALL'
11748 pcg 1.1 _ACEOF
11749    
11750     cat >>$CONFIG_STATUS <<\_ACEOF
11751     # If no file are specified by the user, then we need to provide default
11752     # value. By we need to know if files were specified by the user.
11753     ac_need_defaults=:
11754     while test $# != 0
11755     do
11756     case $1 in
11757     --*=*)
11758 pcg 1.33 ac_option=`expr "X$1" : 'X\([^=]*\)='`
11759     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
11760 pcg 1.1 ac_shift=:
11761     ;;
11762 pcg 1.33 *)
11763 pcg 1.1 ac_option=$1
11764     ac_optarg=$2
11765     ac_shift=shift
11766     ;;
11767     esac
11768    
11769     case $ac_option in
11770     # Handling of the options.
11771     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
11772     ac_cs_recheck=: ;;
11773 pcg 1.33 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
11774     echo "$ac_cs_version"; exit ;;
11775     --debug | --debu | --deb | --de | --d | -d )
11776 pcg 1.1 debug=: ;;
11777     --file | --fil | --fi | --f )
11778     $ac_shift
11779     CONFIG_FILES="$CONFIG_FILES $ac_optarg"
11780     ac_need_defaults=false;;
11781     --header | --heade | --head | --hea )
11782     $ac_shift
11783     CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
11784     ac_need_defaults=false;;
11785 pcg 1.33 --he | --h)
11786     # Conflict between --help and --header
11787     { echo "$as_me: error: ambiguous option: $1
11788     Try \`$0 --help' for more information." >&2
11789     { (exit 1); exit 1; }; };;
11790     --help | --hel | -h )
11791     echo "$ac_cs_usage"; exit ;;
11792 pcg 1.1 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
11793     | -silent | --silent | --silen | --sile | --sil | --si | --s)
11794     ac_cs_silent=: ;;
11795    
11796     # This is an error.
11797 pcg 1.33 -*) { echo "$as_me: error: unrecognized option: $1
11798     Try \`$0 --help' for more information." >&2
11799 pcg 1.1 { (exit 1); exit 1; }; } ;;
11800    
11801 pcg 1.33 *) ac_config_targets="$ac_config_targets $1"
11802     ac_need_defaults=false ;;
11803 pcg 1.1
11804     esac
11805     shift
11806     done
11807    
11808     ac_configure_extra_args=
11809    
11810     if $ac_cs_silent; then
11811     exec 6>/dev/null
11812     ac_configure_extra_args="$ac_configure_extra_args --silent"
11813     fi
11814    
11815     _ACEOF
11816     cat >>$CONFIG_STATUS <<_ACEOF
11817     if \$ac_cs_recheck; then
11818 pcg 1.33 echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
11819     CONFIG_SHELL=$SHELL
11820     export CONFIG_SHELL
11821     exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
11822 pcg 1.1 fi
11823    
11824     _ACEOF
11825 pcg 1.33 cat >>$CONFIG_STATUS <<\_ACEOF
11826     exec 5>>config.log
11827     {
11828     echo
11829     sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
11830     ## Running $as_me. ##
11831     _ASBOX
11832     echo "$ac_log"
11833     } >&5
11834 pcg 1.1
11835 pcg 1.33 _ACEOF
11836 pcg 1.1 cat >>$CONFIG_STATUS <<_ACEOF
11837     #
11838 pcg 1.33 # INIT-COMMANDS
11839 pcg 1.1 #
11840     # Capture the value of obsolete ALL_LINGUAS because we need it to compute
11841     # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
11842     # from automake.
11843     eval 'ALL_LINGUAS''="$ALL_LINGUAS"'
11844     # Capture the value of LINGUAS because we need it to compute CATALOGS.
11845     LINGUAS="${LINGUAS-%UNSET%}"
11846    
11847     AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
11848    
11849     _ACEOF
11850    
11851 pcg 1.33 cat >>$CONFIG_STATUS <<\_ACEOF
11852 pcg 1.1
11853 pcg 1.33 # Handling of arguments.
11854 pcg 1.1 for ac_config_target in $ac_config_targets
11855     do
11856 pcg 1.33 case $ac_config_target in
11857     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
11858     "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
11859     "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
11860     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
11861     "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
11862     "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
11863     "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
11864     "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
11865     "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;;
11866    
11867 pcg 1.1 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
11868     echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
11869     { (exit 1); exit 1; }; };;
11870     esac
11871     done
11872    
11873 pcg 1.33
11874 pcg 1.1 # If the user did not use the arguments to specify the items to instantiate,
11875     # then the envvar interface is used. Set only those that are not.
11876     # We use the long form for the default assignment because of an extremely
11877     # bizarre bug on SunOS 4.1.3.
11878     if $ac_need_defaults; then
11879     test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
11880     test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
11881     test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
11882     fi
11883    
11884     # Have a temporary directory for convenience. Make it in the build tree
11885 pcg 1.33 # simply because there is no reason against having it here, and in addition,
11886 pcg 1.1 # creating and moving files from /tmp can sometimes cause problems.
11887 pcg 1.33 # Hook for its removal unless debugging.
11888     # Note that there is a small window in which the directory will not be cleaned:
11889     # after its creation but before its name has been assigned to `$tmp'.
11890 pcg 1.1 $debug ||
11891     {
11892 pcg 1.33 tmp=
11893     trap 'exit_status=$?
11894     { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
11895     ' 0
11896 pcg 1.1 trap '{ (exit 1); exit 1; }' 1 2 13 15
11897     }
11898     # Create a (secure) tmp directory for tmp files.
11899    
11900     {
11901 pcg 1.33 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
11902 pcg 1.1 test -n "$tmp" && test -d "$tmp"
11903     } ||
11904     {
11905 pcg 1.33 tmp=./conf$$-$RANDOM
11906     (umask 077 && mkdir "$tmp")
11907 pcg 1.1 } ||
11908     {
11909     echo "$me: cannot create a temporary directory in ." >&2
11910     { (exit 1); exit 1; }
11911     }
11912    
11913 pcg 1.33 #
11914     # Set up the sed scripts for CONFIG_FILES section.
11915     #
11916    
11917     # No need to generate the scripts if there are no CONFIG_FILES.
11918     # This happens for instance when ./config.status config.h
11919     if test -n "$CONFIG_FILES"; then
11920    
11921 pcg 1.1 _ACEOF
11922    
11923 pcg 1.33
11924    
11925     ac_delim='%!_!# '
11926     for ac_last_try in false false false false false :; do
11927     cat >conf$$subs.sed <<_ACEOF
11928     SHELL!$SHELL$ac_delim
11929     PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
11930     PACKAGE_NAME!$PACKAGE_NAME$ac_delim
11931     PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
11932     PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
11933     PACKAGE_STRING!$PACKAGE_STRING$ac_delim
11934     PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
11935     exec_prefix!$exec_prefix$ac_delim
11936     prefix!$prefix$ac_delim
11937     program_transform_name!$program_transform_name$ac_delim
11938     bindir!$bindir$ac_delim
11939     sbindir!$sbindir$ac_delim
11940     libexecdir!$libexecdir$ac_delim
11941     datarootdir!$datarootdir$ac_delim
11942     datadir!$datadir$ac_delim
11943     sysconfdir!$sysconfdir$ac_delim
11944     sharedstatedir!$sharedstatedir$ac_delim
11945     localstatedir!$localstatedir$ac_delim
11946     includedir!$includedir$ac_delim
11947     oldincludedir!$oldincludedir$ac_delim
11948     docdir!$docdir$ac_delim
11949     infodir!$infodir$ac_delim
11950     htmldir!$htmldir$ac_delim
11951     dvidir!$dvidir$ac_delim
11952     pdfdir!$pdfdir$ac_delim
11953     psdir!$psdir$ac_delim
11954     libdir!$libdir$ac_delim
11955     localedir!$localedir$ac_delim
11956     mandir!$mandir$ac_delim
11957     DEFS!$DEFS$ac_delim
11958     ECHO_C!$ECHO_C$ac_delim
11959     ECHO_N!$ECHO_N$ac_delim
11960     ECHO_T!$ECHO_T$ac_delim
11961     LIBS!$LIBS$ac_delim
11962     build_alias!$build_alias$ac_delim
11963     host_alias!$host_alias$ac_delim
11964     target_alias!$target_alias$ac_delim
11965     build!$build$ac_delim
11966     build_cpu!$build_cpu$ac_delim
11967     build_vendor!$build_vendor$ac_delim
11968     build_os!$build_os$ac_delim
11969     host!$host$ac_delim
11970     host_cpu!$host_cpu$ac_delim
11971     host_vendor!$host_vendor$ac_delim
11972     host_os!$host_os$ac_delim
11973     target!$target$ac_delim
11974     target_cpu!$target_cpu$ac_delim
11975     target_vendor!$target_vendor$ac_delim
11976     target_os!$target_os$ac_delim
11977     INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
11978     INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
11979     INSTALL_DATA!$INSTALL_DATA$ac_delim
11980     CYGPATH_W!$CYGPATH_W$ac_delim
11981     PACKAGE!$PACKAGE$ac_delim
11982     VERSION!$VERSION$ac_delim
11983     ACLOCAL!$ACLOCAL$ac_delim
11984     AUTOCONF!$AUTOCONF$ac_delim
11985     AUTOMAKE!$AUTOMAKE$ac_delim
11986     AUTOHEADER!$AUTOHEADER$ac_delim
11987     MAKEINFO!$MAKEINFO$ac_delim
11988     AMTAR!$AMTAR$ac_delim
11989     install_sh!$install_sh$ac_delim
11990     STRIP!$STRIP$ac_delim
11991     INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
11992     AWK!$AWK$ac_delim
11993     SET_MAKE!$SET_MAKE$ac_delim
11994     am__leading_dot!$am__leading_dot$ac_delim
11995     MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim
11996     MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
11997     MAINT!$MAINT$ac_delim
11998     MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim
11999     MSGFMT!$MSGFMT$ac_delim
12000     GMSGFMT!$GMSGFMT$ac_delim
12001     XGETTEXT!$XGETTEXT$ac_delim
12002     MSGMERGE!$MSGMERGE$ac_delim
12003     CC!$CC$ac_delim
12004     CFLAGS!$CFLAGS$ac_delim
12005     LDFLAGS!$LDFLAGS$ac_delim
12006     CPPFLAGS!$CPPFLAGS$ac_delim
12007     ac_ct_CC!$ac_ct_CC$ac_delim
12008     EXEEXT!$EXEEXT$ac_delim
12009     OBJEXT!$OBJEXT$ac_delim
12010     DEPDIR!$DEPDIR$ac_delim
12011     am__include!$am__include$ac_delim
12012     am__quote!$am__quote$ac_delim
12013     AMDEP_TRUE!$AMDEP_TRUE$ac_delim
12014     AMDEP_FALSE!$AMDEP_FALSE$ac_delim
12015     AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
12016     CCDEPMODE!$CCDEPMODE$ac_delim
12017     am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
12018     am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
12019     USE_NLS!$USE_NLS$ac_delim
12020     LIBICONV!$LIBICONV$ac_delim
12021     LTLIBICONV!$LTLIBICONV$ac_delim
12022     INTLLIBS!$INTLLIBS$ac_delim
12023     LIBINTL!$LIBINTL$ac_delim
12024     LTLIBINTL!$LTLIBINTL$ac_delim
12025     _ACEOF
12026    
12027     if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
12028     break
12029     elif $ac_last_try; then
12030     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
12031     echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
12032     { (exit 1); exit 1; }; }
12033     else
12034     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
12035     fi
12036     done
12037    
12038     ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
12039     if test -n "$ac_eof"; then
12040     ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
12041     ac_eof=`expr $ac_eof + 1`
12042     fi
12043    
12044 pcg 1.1 cat >>$CONFIG_STATUS <<_ACEOF
12045 pcg 1.33 cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
12046     /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
12047     _ACEOF
12048     sed '
12049     s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
12050     s/^/s,@/; s/!/@,|#_!!_#|/
12051     :n
12052     t n
12053     s/'"$ac_delim"'$/,g/; t
12054     s/$/\\/; p
12055     N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
12056     ' >>$CONFIG_STATUS <conf$$subs.sed
12057     rm -f conf$$subs.sed
12058     cat >>$CONFIG_STATUS <<_ACEOF
12059     CEOF$ac_eof
12060     _ACEOF
12061    
12062 pcg 1.1
12063 pcg 1.33 ac_delim='%!_!# '
12064     for ac_last_try in false false false false false :; do
12065     cat >conf$$subs.sed <<_ACEOF
12066     POSUB!$POSUB$ac_delim
12067     CPP!$CPP$ac_delim
12068     CXX!$CXX$ac_delim
12069     CXXFLAGS!$CXXFLAGS$ac_delim
12070     ac_ct_CXX!$ac_ct_CXX$ac_delim
12071     CXXDEPMODE!$CXXDEPMODE$ac_delim
12072     am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim
12073     am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim
12074     GREP!$GREP$ac_delim
12075     EGREP!$EGREP$ac_delim
12076     LN_S!$LN_S$ac_delim
12077     RANLIB!$RANLIB$ac_delim
12078     IFTYPE!$IFTYPE$ac_delim
12079     IFSUBTYPE!$IFSUBTYPE$ac_delim
12080     CXXCPP!$CXXCPP$ac_delim
12081     ALLOCA!$ALLOCA$ac_delim
12082     LINUX_IF_TUN_H!$LINUX_IF_TUN_H$ac_delim
12083     HAVE_TUNTAP!$HAVE_TUNTAP$ac_delim
12084     LDFLAGS_DAEMON!$LDFLAGS_DAEMON$ac_delim
12085     ROHC_TRUE!$ROHC_TRUE$ac_delim
12086     ROHC_FALSE!$ROHC_FALSE$ac_delim
12087     INCLUDES!$INCLUDES$ac_delim
12088     LIBOBJS!$LIBOBJS$ac_delim
12089     LTLIBOBJS!$LTLIBOBJS$ac_delim
12090     _ACEOF
12091 pcg 1.1
12092 pcg 1.33 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 24; then
12093     break
12094     elif $ac_last_try; then
12095     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
12096     echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
12097     { (exit 1); exit 1; }; }
12098     else
12099     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
12100 pcg 1.1 fi
12101 pcg 1.33 done
12102    
12103     ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
12104     if test -n "$ac_eof"; then
12105     ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
12106     ac_eof=`expr $ac_eof + 1`
12107     fi
12108 pcg 1.1
12109 pcg 1.33 cat >>$CONFIG_STATUS <<_ACEOF
12110     cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
12111     /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
12112     _ACEOF
12113     sed '
12114     s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
12115     s/^/s,@/; s/!/@,|#_!!_#|/
12116     :n
12117     t n
12118     s/'"$ac_delim"'$/,g/; t
12119     s/$/\\/; p
12120     N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
12121     ' >>$CONFIG_STATUS <conf$$subs.sed
12122     rm -f conf$$subs.sed
12123     cat >>$CONFIG_STATUS <<_ACEOF
12124     :end
12125     s/|#_!!_#|//g
12126     CEOF$ac_eof
12127 pcg 1.1 _ACEOF
12128 pcg 1.33
12129    
12130     # VPATH may cause trouble with some makes, so we remove $(srcdir),
12131     # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
12132     # trailing colons and then remove the whole line if VPATH becomes empty
12133     # (actually we leave an empty line to preserve line numbers).
12134     if test "x$srcdir" = x.; then
12135     ac_vpsub='/^[ ]*VPATH[ ]*=/{
12136     s/:*\$(srcdir):*/:/
12137     s/:*\${srcdir}:*/:/
12138     s/:*@srcdir@:*/:/
12139     s/^\([^=]*=[ ]*\):*/\1/
12140     s/:*$//
12141     s/^[^=]*=[ ]*$//
12142     }'
12143     fi
12144    
12145 pcg 1.1 cat >>$CONFIG_STATUS <<\_ACEOF
12146 pcg 1.33 fi # test -n "$CONFIG_FILES"
12147    
12148    
12149     for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS
12150     do
12151     case $ac_tag in
12152     :[FHLC]) ac_mode=$ac_tag; continue;;
12153     esac
12154     case $ac_mode$ac_tag in
12155     :[FHL]*:*);;
12156     :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
12157     echo "$as_me: error: Invalid tag $ac_tag." >&2;}
12158     { (exit 1); exit 1; }; };;
12159     :[FH]-) ac_tag=-:-;;
12160     :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
12161     esac
12162     ac_save_IFS=$IFS
12163     IFS=:
12164     set x $ac_tag
12165     IFS=$ac_save_IFS
12166     shift
12167     ac_file=$1
12168     shift
12169    
12170     case $ac_mode in
12171     :L) ac_source=$1;;
12172     :[FH])
12173     ac_file_inputs=
12174     for ac_f
12175     do
12176     case $ac_f in
12177     -) ac_f="$tmp/stdin";;
12178     *) # Look for the file first in the build tree, then in the source tree
12179     # (if the path is not absolute). The absolute path cannot be DOS-style,
12180     # because $ac_f cannot contain `:'.
12181     test -f "$ac_f" ||
12182     case $ac_f in
12183     [\\/$]*) false;;
12184     *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
12185     esac ||
12186     { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
12187     echo "$as_me: error: cannot find input file: $ac_f" >&2;}
12188     { (exit 1); exit 1; }; };;
12189     esac
12190     ac_file_inputs="$ac_file_inputs $ac_f"
12191     done
12192    
12193     # Let's still pretend it is `configure' which instantiates (i.e., don't
12194     # use $as_me), people would be surprised to read:
12195     # /* config.h. Generated by config.status. */
12196     configure_input="Generated from "`IFS=:
12197     echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
12198     if test x"$ac_file" != x-; then
12199     configure_input="$ac_file. $configure_input"
12200     { echo "$as_me:$LINENO: creating $ac_file" >&5
12201     echo "$as_me: creating $ac_file" >&6;}
12202     fi
12203    
12204     case $ac_tag in
12205     *:-:* | *:-) cat >"$tmp/stdin";;
12206     esac
12207     ;;
12208 pcg 1.1 esac
12209    
12210 pcg 1.33 ac_dir=`$as_dirname -- "$ac_file" ||
12211 pcg 1.1 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12212 pcg 1.11 X"$ac_file" : 'X\(//\)[^/]' \| \
12213     X"$ac_file" : 'X\(//\)$' \| \
12214 pcg 1.33 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
12215 pcg 1.1 echo X"$ac_file" |
12216 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12217     s//\1/
12218     q
12219     }
12220     /^X\(\/\/\)[^/].*/{
12221     s//\1/
12222     q
12223     }
12224     /^X\(\/\/\)$/{
12225     s//\1/
12226     q
12227     }
12228     /^X\(\/\).*/{
12229     s//\1/
12230     q
12231     }
12232     s/.*/./; q'`
12233     { as_dir="$ac_dir"
12234     case $as_dir in #(
12235     -*) as_dir=./$as_dir;;
12236     esac
12237     test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
12238 pcg 1.1 as_dirs=
12239 pcg 1.33 while :; do
12240     case $as_dir in #(
12241     *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
12242     *) as_qdir=$as_dir;;
12243     esac
12244     as_dirs="'$as_qdir' $as_dirs"
12245     as_dir=`$as_dirname -- "$as_dir" ||
12246 pcg 1.1 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12247 pcg 1.11 X"$as_dir" : 'X\(//\)[^/]' \| \
12248     X"$as_dir" : 'X\(//\)$' \| \
12249 pcg 1.33 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
12250 pcg 1.1 echo X"$as_dir" |
12251 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12252     s//\1/
12253     q
12254     }
12255     /^X\(\/\/\)[^/].*/{
12256     s//\1/
12257     q
12258     }
12259     /^X\(\/\/\)$/{
12260     s//\1/
12261     q
12262     }
12263     /^X\(\/\).*/{
12264     s//\1/
12265     q
12266     }
12267     s/.*/./; q'`
12268     test -d "$as_dir" && break
12269 pcg 1.1 done
12270 pcg 1.33 test -z "$as_dirs" || eval "mkdir $as_dirs"
12271     } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
12272     echo "$as_me: error: cannot create directory $as_dir" >&2;}
12273 pcg 1.1 { (exit 1); exit 1; }; }; }
12274     ac_builddir=.
12275    
12276 pcg 1.33 case "$ac_dir" in
12277     .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
12278     *)
12279 pcg 1.1 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
12280 pcg 1.33 # A ".." for each directory in $ac_dir_suffix.
12281     ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
12282     case $ac_top_builddir_sub in
12283     "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
12284     *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
12285     esac ;;
12286     esac
12287     ac_abs_top_builddir=$ac_pwd
12288     ac_abs_builddir=$ac_pwd$ac_dir_suffix
12289     # for backward compatibility:
12290     ac_top_builddir=$ac_top_build_prefix
12291 pcg 1.1
12292     case $srcdir in
12293 pcg 1.33 .) # We are building in place.
12294 pcg 1.1 ac_srcdir=.
12295 pcg 1.33 ac_top_srcdir=$ac_top_builddir_sub
12296     ac_abs_top_srcdir=$ac_pwd ;;
12297     [\\/]* | ?:[\\/]* ) # Absolute name.
12298 pcg 1.1 ac_srcdir=$srcdir$ac_dir_suffix;
12299 pcg 1.33 ac_top_srcdir=$srcdir
12300     ac_abs_top_srcdir=$srcdir ;;
12301     *) # Relative name.
12302     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
12303     ac_top_srcdir=$ac_top_build_prefix$srcdir
12304     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
12305 pcg 1.1 esac
12306 pcg 1.33 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
12307 pcg 1.11
12308 pcg 1.1
12309 pcg 1.33 case $ac_mode in
12310     :F)
12311     #
12312     # CONFIG_FILE
12313     #
12314 pcg 1.1
12315     case $INSTALL in
12316     [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
12317 pcg 1.33 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
12318 pcg 1.1 esac
12319 pcg 1.33 _ACEOF
12320 pcg 1.1
12321 pcg 1.33 cat >>$CONFIG_STATUS <<\_ACEOF
12322     # If the template does not know about datarootdir, expand it.
12323     # FIXME: This hack should be removed a few years after 2.60.
12324     ac_datarootdir_hack=; ac_datarootdir_seen=
12325    
12326     case `sed -n '/datarootdir/ {
12327     p
12328     q
12329     }
12330     /@datadir@/p
12331     /@docdir@/p
12332     /@infodir@/p
12333     /@localedir@/p
12334     /@mandir@/p
12335     ' $ac_file_inputs` in
12336     *datarootdir*) ac_datarootdir_seen=yes;;
12337     *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
12338     { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
12339     echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
12340     _ACEOF
12341     cat >>$CONFIG_STATUS <<_ACEOF
12342     ac_datarootdir_hack='
12343     s&@datadir@&$datadir&g
12344     s&@docdir@&$docdir&g
12345     s&@infodir@&$infodir&g
12346     s&@localedir@&$localedir&g
12347     s&@mandir@&$mandir&g
12348     s&\\\${datarootdir}&$datarootdir&g' ;;
12349     esac
12350     _ACEOF
12351 pcg 1.1
12352 pcg 1.33 # Neutralize VPATH when `$srcdir' = `.'.
12353     # Shell code in configure.ac might set extrasub.
12354     # FIXME: do we really want to maintain this feature?
12355 pcg 1.1 cat >>$CONFIG_STATUS <<_ACEOF
12356     sed "$ac_vpsub
12357     $extrasub
12358     _ACEOF
12359     cat >>$CONFIG_STATUS <<\_ACEOF
12360     :t
12361     /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
12362 pcg 1.33 s&@configure_input@&$configure_input&;t t
12363     s&@top_builddir@&$ac_top_builddir_sub&;t t
12364     s&@srcdir@&$ac_srcdir&;t t
12365     s&@abs_srcdir@&$ac_abs_srcdir&;t t
12366     s&@top_srcdir@&$ac_top_srcdir&;t t
12367     s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
12368     s&@builddir@&$ac_builddir&;t t
12369     s&@abs_builddir@&$ac_abs_builddir&;t t
12370     s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
12371     s&@INSTALL@&$ac_INSTALL&;t t
12372     $ac_datarootdir_hack
12373     " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
12374    
12375     test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
12376     { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
12377     { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
12378     { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
12379     which seems to be undefined. Please make sure it is defined." >&5
12380     echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
12381     which seems to be undefined. Please make sure it is defined." >&2;}
12382 pcg 1.1
12383 pcg 1.33 rm -f "$tmp/stdin"
12384 pcg 1.1 case $ac_file in
12385 pcg 1.33 -) cat "$tmp/out"; rm -f "$tmp/out";;
12386     *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
12387 pcg 1.1 esac
12388 pcg 1.33 ;;
12389     :H)
12390     #
12391     # CONFIG_HEADER
12392     #
12393     _ACEOF
12394    
12395     # Transform confdefs.h into a sed script `conftest.defines', that
12396     # substitutes the proper values into config.h.in to produce config.h.
12397     rm -f conftest.defines conftest.tail
12398     # First, append a space to every undef/define line, to ease matching.
12399     echo 's/$/ /' >conftest.defines
12400     # Then, protect against being on the right side of a sed subst, or in
12401     # an unquoted here document, in config.status. If some macros were
12402     # called several times there might be several #defines for the same
12403     # symbol, which is useless. But do not sort them, since the last
12404     # AC_DEFINE must be honored.
12405     ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
12406     # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
12407     # NAME is the cpp macro being defined, VALUE is the value it is being given.
12408     # PARAMS is the parameter list in the macro definition--in most cases, it's
12409     # just an empty string.
12410     ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*'
12411     ac_dB='\\)[ (].*,\\1define\\2'
12412     ac_dC=' '
12413     ac_dD=' ,'
12414 pcg 1.1
12415 pcg 1.33 uniq confdefs.h |
12416     sed -n '
12417     t rset
12418     :rset
12419     s/^[ ]*#[ ]*define[ ][ ]*//
12420     t ok
12421     d
12422     :ok
12423     s/[\\&,]/\\&/g
12424     s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
12425     s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
12426     ' >>conftest.defines
12427 pcg 1.1
12428 pcg 1.33 # Remove the space that was appended to ease matching.
12429     # Then replace #undef with comments. This is necessary, for
12430 pcg 1.1 # example, in the case of _POSIX_SOURCE, which is predefined and required
12431     # on some systems where configure will not decide to define it.
12432 pcg 1.33 # (The regexp can be short, since the line contains either #define or #undef.)
12433     echo 's/ $//
12434     s,^[ #]*u.*,/* & */,' >>conftest.defines
12435    
12436     # Break up conftest.defines:
12437     ac_max_sed_lines=50
12438    
12439     # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1"
12440     # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2"
12441     # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1"
12442     # et cetera.
12443     ac_in='$ac_file_inputs'
12444     ac_out='"$tmp/out1"'
12445     ac_nxt='"$tmp/out2"'
12446    
12447     while :
12448     do
12449     # Write a here document:
12450     cat >>$CONFIG_STATUS <<_ACEOF
12451     # First, check the format of the line:
12452     cat >"\$tmp/defines.sed" <<\\CEOF
12453     /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def
12454     /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def
12455     b
12456     :def
12457 pcg 1.1 _ACEOF
12458 pcg 1.33 sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
12459 pcg 1.1 echo 'CEOF
12460 pcg 1.33 sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
12461     ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
12462     sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
12463     grep . conftest.tail >/dev/null || break
12464 pcg 1.1 rm -f conftest.defines
12465     mv conftest.tail conftest.defines
12466     done
12467 pcg 1.33 rm -f conftest.defines conftest.tail
12468 pcg 1.1
12469 pcg 1.33 echo "ac_result=$ac_in" >>$CONFIG_STATUS
12470 pcg 1.1 cat >>$CONFIG_STATUS <<\_ACEOF
12471     if test x"$ac_file" != x-; then
12472 pcg 1.33 echo "/* $configure_input */" >"$tmp/config.h"
12473     cat "$ac_result" >>"$tmp/config.h"
12474     if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
12475 pcg 1.1 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
12476     echo "$as_me: $ac_file is unchanged" >&6;}
12477     else
12478     rm -f $ac_file
12479 pcg 1.33 mv "$tmp/config.h" $ac_file
12480 pcg 1.1 fi
12481     else
12482 pcg 1.33 echo "/* $configure_input */"
12483     cat "$ac_result"
12484 pcg 1.1 fi
12485 pcg 1.33 rm -f "$tmp/out12"
12486 pcg 1.1 # Compute $ac_file's index in $config_headers.
12487     _am_stamp_count=1
12488     for _am_header in $config_headers :; do
12489     case $_am_header in
12490     $ac_file | $ac_file:* )
12491     break ;;
12492     * )
12493     _am_stamp_count=`expr $_am_stamp_count + 1` ;;
12494     esac
12495     done
12496 pcg 1.33 echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
12497 pcg 1.1 $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12498 pcg 1.11 X$ac_file : 'X\(//\)[^/]' \| \
12499     X$ac_file : 'X\(//\)$' \| \
12500 pcg 1.33 X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
12501 pcg 1.1 echo X$ac_file |
12502 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12503     s//\1/
12504     q
12505     }
12506     /^X\(\/\/\)[^/].*/{
12507     s//\1/
12508     q
12509     }
12510     /^X\(\/\/\)$/{
12511     s//\1/
12512     q
12513     }
12514     /^X\(\/\).*/{
12515     s//\1/
12516     q
12517     }
12518     s/.*/./; q'`/stamp-h$_am_stamp_count
12519     ;;
12520 pcg 1.1
12521 pcg 1.33 :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5
12522     echo "$as_me: executing $ac_file commands" >&6;}
12523     ;;
12524     esac
12525 pcg 1.1
12526    
12527 pcg 1.33 case $ac_file$ac_mode in
12528     "default-1":C)
12529 pcg 1.1 for ac_file in $CONFIG_FILES; do
12530     # Support "outfile[:infile[:infile...]]"
12531     case "$ac_file" in
12532     *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
12533     esac
12534     # PO directories have a Makefile.in generated from Makefile.in.in.
12535     case "$ac_file" in */Makefile.in)
12536     # Adjust a relative srcdir.
12537     ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
12538     ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
12539     ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
12540     # In autoconf-2.13 it is called $ac_given_srcdir.
12541     # In autoconf-2.50 it is called $srcdir.
12542     test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
12543     case "$ac_given_srcdir" in
12544     .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
12545     /*) top_srcdir="$ac_given_srcdir" ;;
12546     *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
12547     esac
12548     if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
12549     rm -f "$ac_dir/POTFILES"
12550     test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
12551     cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
12552     # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
12553     # on $ac_dir but don't depend on user-specified configuration
12554     # parameters.
12555     if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
12556     # The LINGUAS file contains the set of available languages.
12557     if test -n "$ALL_LINGUAS"; then
12558     test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
12559     fi
12560     ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
12561     # Hide the ALL_LINGUAS assigment from automake.
12562     eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
12563     fi
12564     case "$ac_given_srcdir" in
12565     .) srcdirpre= ;;
12566     *) srcdirpre='$(srcdir)/' ;;
12567     esac
12568     POFILES=
12569     GMOFILES=
12570     UPDATEPOFILES=
12571     DUMMYPOFILES=
12572     for lang in $ALL_LINGUAS; do
12573     POFILES="$POFILES $srcdirpre$lang.po"
12574     GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
12575     UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
12576     DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
12577     done
12578     # CATALOGS depends on both $ac_dir and the user's LINGUAS
12579     # environment variable.
12580     INST_LINGUAS=
12581     if test -n "$ALL_LINGUAS"; then
12582     for presentlang in $ALL_LINGUAS; do
12583     useit=no
12584     if test "%UNSET%" != "$LINGUAS"; then
12585     desiredlanguages="$LINGUAS"
12586     else
12587     desiredlanguages="$ALL_LINGUAS"
12588     fi
12589     for desiredlang in $desiredlanguages; do
12590     # Use the presentlang catalog if desiredlang is
12591     # a. equal to presentlang, or
12592     # b. a variant of presentlang (because in this case,
12593     # presentlang can be used as a fallback for messages
12594     # which are not translated in the desiredlang catalog).
12595     case "$desiredlang" in
12596     "$presentlang"*) useit=yes;;
12597     esac
12598     done
12599     if test $useit = yes; then
12600     INST_LINGUAS="$INST_LINGUAS $presentlang"
12601     fi
12602     done
12603     fi
12604     CATALOGS=
12605     if test -n "$INST_LINGUAS"; then
12606     for lang in $INST_LINGUAS; do
12607     CATALOGS="$CATALOGS $lang.gmo"
12608     done
12609     fi
12610     test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
12611     sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
12612     for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
12613     if test -f "$f"; then
12614     case "$f" in
12615     *.orig | *.bak | *~) ;;
12616     *) cat "$f" >> "$ac_dir/Makefile" ;;
12617     esac
12618     fi
12619     done
12620     fi
12621     ;;
12622     esac
12623     done ;;
12624 pcg 1.33 "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
12625 pcg 1.1 # Strip MF so we end up with the name of the file.
12626     mf=`echo "$mf" | sed -e 's/:.*$//'`
12627     # Check whether this is an Automake generated Makefile or not.
12628     # We used to match only the files named `Makefile.in', but
12629     # some people rename them; so instead we look at the file content.
12630     # Grep'ing the first line is not enough: some people post-process
12631     # each Makefile.in and add a new line on top of each file to say so.
12632     # So let's grep whole file.
12633     if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
12634 pcg 1.33 dirpart=`$as_dirname -- "$mf" ||
12635 pcg 1.1 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12636 pcg 1.11 X"$mf" : 'X\(//\)[^/]' \| \
12637     X"$mf" : 'X\(//\)$' \| \
12638 pcg 1.33 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
12639 pcg 1.1 echo X"$mf" |
12640 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12641     s//\1/
12642     q
12643     }
12644     /^X\(\/\/\)[^/].*/{
12645     s//\1/
12646     q
12647     }
12648     /^X\(\/\/\)$/{
12649     s//\1/
12650     q
12651     }
12652     /^X\(\/\).*/{
12653     s//\1/
12654     q
12655     }
12656     s/.*/./; q'`
12657 pcg 1.1 else
12658     continue
12659     fi
12660 pcg 1.33 grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
12661     # Extract the definition of DEP_FILES from the Makefile without
12662     # running `make'.
12663     DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
12664 pcg 1.1 test -z "$DEPDIR" && continue
12665     # When using ansi2knr, U may be empty or an underscore; expand it
12666 pcg 1.33 U=`sed -n -e '/^U = / s///p' < "$mf"`
12667     test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
12668     # We invoke sed twice because it is the simplest approach to
12669     # changing $(DEPDIR) to its actual value in the expansion.
12670     for file in `sed -n -e '
12671     /^DEP_FILES = .*\\\\$/ {
12672     s/^DEP_FILES = //
12673     :loop
12674     s/\\\\$//
12675     p
12676     n
12677     /\\\\$/ b loop
12678     p
12679     }
12680     /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
12681 pcg 1.1 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
12682     # Make sure the directory exists.
12683     test -f "$dirpart/$file" && continue
12684 pcg 1.33 fdir=`$as_dirname -- "$file" ||
12685 pcg 1.1 $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12686 pcg 1.11 X"$file" : 'X\(//\)[^/]' \| \
12687     X"$file" : 'X\(//\)$' \| \
12688 pcg 1.33 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
12689 pcg 1.1 echo X"$file" |
12690 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12691     s//\1/
12692     q
12693     }
12694     /^X\(\/\/\)[^/].*/{
12695     s//\1/
12696     q
12697     }
12698     /^X\(\/\/\)$/{
12699     s//\1/
12700     q
12701     }
12702     /^X\(\/\).*/{
12703     s//\1/
12704     q
12705     }
12706     s/.*/./; q'`
12707     { as_dir=$dirpart/$fdir
12708     case $as_dir in #(
12709     -*) as_dir=./$as_dir;;
12710     esac
12711     test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
12712 pcg 1.1 as_dirs=
12713 pcg 1.33 while :; do
12714     case $as_dir in #(
12715     *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
12716     *) as_qdir=$as_dir;;
12717     esac
12718     as_dirs="'$as_qdir' $as_dirs"
12719     as_dir=`$as_dirname -- "$as_dir" ||
12720 pcg 1.1 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12721 pcg 1.11 X"$as_dir" : 'X\(//\)[^/]' \| \
12722     X"$as_dir" : 'X\(//\)$' \| \
12723 pcg 1.33 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
12724 pcg 1.1 echo X"$as_dir" |
12725 pcg 1.33 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12726     s//\1/
12727     q
12728     }
12729     /^X\(\/\/\)[^/].*/{
12730     s//\1/
12731     q
12732     }
12733     /^X\(\/\/\)$/{
12734     s//\1/
12735     q
12736     }
12737     /^X\(\/\).*/{
12738     s//\1/
12739     q
12740     }
12741     s/.*/./; q'`
12742     test -d "$as_dir" && break
12743 pcg 1.1 done
12744 pcg 1.33 test -z "$as_dirs" || eval "mkdir $as_dirs"
12745     } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
12746     echo "$as_me: error: cannot create directory $as_dir" >&2;}
12747 pcg 1.1 { (exit 1); exit 1; }; }; }
12748     # echo "creating $dirpart/$file"
12749     echo '# dummy' > "$dirpart/$file"
12750     done
12751     done
12752     ;;
12753 pcg 1.33
12754 pcg 1.1 esac
12755 pcg 1.33 done # for ac_tag
12756 pcg 1.1
12757    
12758     { (exit 0); exit 0; }
12759     _ACEOF
12760     chmod +x $CONFIG_STATUS
12761     ac_clean_files=$ac_clean_files_save
12762    
12763    
12764 pcg 1.30 # configure is writing to config.log, and then calls config.status.
12765     # config.status does its own redirection, appending to config.log.
12766     # Unfortunately, on DOS this fails, as config.log is still kept open
12767     # by configure, so config.status won't be able to write to it; its
12768     # output is simply discarded. So we exec the FD to /dev/null,
12769     # effectively closing config.log, so it can be properly (re)opened and
12770     # appended to by config.status. When coming back to configure, we
12771     # need to make the FD available again.
12772     if test "$no_create" != yes; then
12773     ac_cs_success=:
12774     ac_config_status_args=
12775     test "$silent" = yes &&
12776     ac_config_status_args="$ac_config_status_args --quiet"
12777     exec 5>/dev/null
12778     $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
12779     exec 5>>config.log
12780     # Use ||, not &&, to avoid exiting from the if with $? = 1, which
12781     # would make configure fail if this is the last instruction.
12782     $ac_cs_success || { (exit 1); exit 1; }
12783     fi
12784    
12785 pcg 1.1
12786     echo
12787     echo "***"
12788     echo "*** Configuration Summary"
12789     echo "***"
12790     echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
12791     echo "*** Cipher used: $CIPHER"
12792     echo "*** Digest used: $DIGEST"
12793     echo "*** HMAC length: $HMAC"
12794     echo "*** RAND used: $RAND"
12795     echo "*** Max. MTU: $MTU"
12796 pcg 1.30
12797     echo "***"
12798     echo "*** Enable options:"
12799     grep ENABLE_ config.h | sed -e 's/^/*** /'
12800 pcg 1.15
12801     if test "x$DIGEST" = xmd4; then
12802 pcg 1.1 echo "***"
12803 pcg 1.15 echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
12804     fi
12805 pcg 1.1
12806 pcg 1.15 if test "$HMAC" -lt 12; then
12807     echo "***"
12808 pcg 1.17 echo "*** WARNING: The hmac length you have chosen ($HMAC) is probably insecure"
12809 pcg 1.15 fi
12810    
12811     if test "$RAND" -lt 8; then
12812 pcg 1.1 echo "***"
12813 pcg 1.17 echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure"
12814 pcg 1.1 fi
12815 pcg 1.15
12816     echo "***"
12817 pcg 1.1 echo
12818    
12819