summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4787
1 files changed, 2805 insertions, 1982 deletions
diff --git a/configure b/configure
index b142fd782..ceeb5b013 100755
--- a/configure
+++ b/configure
@@ -1,19 +1,11 @@
1#! /bin/sh 1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles. 2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.53. 3# Generated by GNU Autoconf 2.57.
4# 4#
5# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 5# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
6# Free Software Foundation, Inc. 6# Free Software Foundation, Inc.
7# This configure script is free software; the Free Software Foundation 7# This configure script is free software; the Free Software Foundation
8# gives unlimited permission to copy, distribute and modify it. 8# gives unlimited permission to copy, distribute and modify it.
9
10if expr a : '\(a\)' >/dev/null 2>&1; then
11 as_expr=expr
12else
13 as_expr=false
14fi
15
16
17## --------------------- ## 9## --------------------- ##
18## M4sh Initialization. ## 10## M4sh Initialization. ##
19## --------------------- ## 11## --------------------- ##
@@ -22,11 +14,13 @@ fi
22if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 14if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
23 emulate sh 15 emulate sh
24 NULLCMD=: 16 NULLCMD=:
17 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
18 # is contrary to our usage. Disable this feature.
19 alias -g '${1+"$@"}'='"$@"'
25elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 20elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
26 set -o posix 21 set -o posix
27fi 22fi
28 23
29# NLS nuisances.
30# Support unset when possible. 24# Support unset when possible.
31if (FOO=FOO; unset FOO) >/dev/null 2>&1; then 25if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
32 as_unset=unset 26 as_unset=unset
@@ -34,34 +28,42 @@ else
34 as_unset=false 28 as_unset=false
35fi 29fi
36 30
37(set +x; test -n "`(LANG=C; export LANG) 2>&1`") && 31
38 { $as_unset LANG || test "${LANG+set}" != set; } || 32# Work around bugs in pre-3.0 UWIN ksh.
39 { LANG=C; export LANG; } 33$as_unset ENV MAIL MAILPATH
40(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") && 34PS1='$ '
41 { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } || 35PS2='> '
42 { LC_ALL=C; export LC_ALL; } 36PS4='+ '
43(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") && 37
44 { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } || 38# NLS nuisances.
45 { LC_TIME=C; export LC_TIME; } 39for as_var in \
46(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") && 40 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
47 { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } || 41 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
48 { LC_CTYPE=C; export LC_CTYPE; } 42 LC_TELEPHONE LC_TIME
49(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") && 43do
50 { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } || 44 if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
51 { LANGUAGE=C; export LANGUAGE; } 45 eval $as_var=C; export $as_var
52(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") && 46 else
53 { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } || 47 $as_unset $as_var
54 { LC_COLLATE=C; export LC_COLLATE; } 48 fi
55(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") && 49done
56 { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } || 50
57 { LC_NUMERIC=C; export LC_NUMERIC; } 51# Required to use basename.
58(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") && 52if expr a : '\(a\)' >/dev/null 2>&1; then
59 { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } || 53 as_expr=expr
60 { LC_MESSAGES=C; export LC_MESSAGES; } 54else
55 as_expr=false
56fi
57
58if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
59 as_basename=basename
60else
61 as_basename=false
62fi
61 63
62 64
63# Name of the executable. 65# Name of the executable.
64as_me=`(basename "$0") 2>/dev/null || 66as_me=`$as_basename "$0" ||
65$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 67$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
66 X"$0" : 'X\(//\)$' \| \ 68 X"$0" : 'X\(//\)$' \| \
67 X"$0" : 'X\(/\)$' \| \ 69 X"$0" : 'X\(/\)$' \| \
@@ -72,6 +74,7 @@ echo X/"$0" |
72 /^X\/\(\/\).*/{ s//\1/; q; } 74 /^X\/\(\/\).*/{ s//\1/; q; }
73 s/.*/./; q'` 75 s/.*/./; q'`
74 76
77
75# PATH needs CR, and LINENO needs CR and PATH. 78# PATH needs CR, and LINENO needs CR and PATH.
76# Avoid depending upon Character Ranges. 79# Avoid depending upon Character Ranges.
77as_cr_letters='abcdefghijklmnopqrstuvwxyz' 80as_cr_letters='abcdefghijklmnopqrstuvwxyz'
@@ -82,15 +85,15 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
82 85
83# The user is always right. 86# The user is always right.
84if test "${PATH_SEPARATOR+set}" != set; then 87if test "${PATH_SEPARATOR+set}" != set; then
85 echo "#! /bin/sh" >conftest.sh 88 echo "#! /bin/sh" >conf$$.sh
86 echo "exit 0" >>conftest.sh 89 echo "exit 0" >>conf$$.sh
87 chmod +x conftest.sh 90 chmod +x conf$$.sh
88 if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then 91 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
89 PATH_SEPARATOR=';' 92 PATH_SEPARATOR=';'
90 else 93 else
91 PATH_SEPARATOR=: 94 PATH_SEPARATOR=:
92 fi 95 fi
93 rm -f conftest.sh 96 rm -f conf$$.sh
94fi 97fi
95 98
96 99
@@ -138,6 +141,8 @@ do
138 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 141 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
139 test "x$as_lineno_1" != "x$as_lineno_2" && 142 test "x$as_lineno_1" != "x$as_lineno_2" &&
140 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then 143 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
144 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
145 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
141 CONFIG_SHELL=$as_dir/$as_base 146 CONFIG_SHELL=$as_dir/$as_base
142 export CONFIG_SHELL 147 export CONFIG_SHELL
143 exec "$CONFIG_SHELL" "$0" ${1+"$@"} 148 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
@@ -210,6 +215,12 @@ else
210fi 215fi
211rm -f conf$$ conf$$.exe conf$$.file 216rm -f conf$$ conf$$.exe conf$$.file
212 217
218if mkdir -p . 2>/dev/null; then
219 as_mkdir_p=:
220else
221 as_mkdir_p=false
222fi
223
213as_executable_p="test -f" 224as_executable_p="test -f"
214 225
215# Sed expression to map a string onto a valid CPP name. 226# Sed expression to map a string onto a valid CPP name.
@@ -226,7 +237,7 @@ as_nl='
226IFS=" $as_nl" 237IFS=" $as_nl"
227 238
228# CDPATH. 239# CDPATH.
229$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; } 240$as_unset CDPATH
230 241
231 242
232# Name of the host. 243# Name of the host.
@@ -240,6 +251,7 @@ exec 6>&1
240# Initializations. 251# Initializations.
241# 252#
242ac_default_prefix=/usr/local 253ac_default_prefix=/usr/local
254ac_config_libobj_dir=.
243cross_compiling=no 255cross_compiling=no
244subdirs= 256subdirs=
245MFLAGS= 257MFLAGS=
@@ -296,6 +308,8 @@ ac_includes_default="\
296# include <unistd.h> 308# include <unistd.h>
297#endif" 309#endif"
298 310
311ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT build build_cpu build_vendor build_os host host_cpu host_vendor host_os CPP RANLIB ac_ct_RANLIB INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA AR PERL SED ENT TEST_MINUS_S_SH SH LOGIN_PROGRAM_FALLBACK LD EGREP LIBWRAP LIBPAM INSTALL_SSH_RAND_HELPER SSH_PRIVSEP_USER PROG_LS PROG_NETSTAT PROG_ARP PROG_IFCONFIG PROG_JSTAT PROG_PS PROG_SAR PROG_W PROG_WHO PROG_LAST PROG_LASTLOG PROG_DF PROG_VMSTAT PROG_UPTIME PROG_IPCS PROG_TAIL INSTALL_SSH_PRNG_CMDS OPENSC_CONFIG PRIVSEP_PATH xauth_path STRIP_OPT XAUTH_PATH NROFF MANTYPE mansubdir user_path piddir LIBOBJS LTLIBOBJS'
312ac_subst_files=''
299 313
300# Initialize some variables set by options. 314# Initialize some variables set by options.
301ac_init_help= 315ac_init_help=
@@ -719,6 +733,9 @@ if test ! -r $srcdir/$ac_unique_file; then
719 { (exit 1); exit 1; }; } 733 { (exit 1); exit 1; }; }
720 fi 734 fi
721fi 735fi
736(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
737 { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
738 { (exit 1); exit 1; }; }
722srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` 739srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
723ac_env_build_alias_set=${build_alias+set} 740ac_env_build_alias_set=${build_alias+set}
724ac_env_build_alias_value=$build_alias 741ac_env_build_alias_value=$build_alias
@@ -925,7 +942,7 @@ esac
925# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be 942# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
926# absolute. 943# absolute.
927ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` 944ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
928ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd` 945ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
929ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` 946ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
930ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` 947ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
931 948
@@ -965,7 +982,7 @@ This file contains any messages produced by compilers while
965running configure, to aid debugging if configure makes a mistake. 982running configure, to aid debugging if configure makes a mistake.
966 983
967It was created by $as_me, which was 984It was created by $as_me, which was
968generated by GNU Autoconf 2.53. Invocation command line was 985generated by GNU Autoconf 2.57. Invocation command line was
969 986
970 $ $0 $@ 987 $ $0 $@
971 988
@@ -1017,27 +1034,54 @@ _ACEOF
1017 1034
1018# Keep a trace of the command line. 1035# Keep a trace of the command line.
1019# Strip out --no-create and --no-recursion so they do not pile up. 1036# Strip out --no-create and --no-recursion so they do not pile up.
1037# Strip out --silent because we don't want to record it for future runs.
1020# Also quote any args containing shell meta-characters. 1038# Also quote any args containing shell meta-characters.
1039# Make two passes to allow for proper duplicate-argument suppression.
1021ac_configure_args= 1040ac_configure_args=
1041ac_configure_args0=
1042ac_configure_args1=
1022ac_sep= 1043ac_sep=
1023for ac_arg 1044ac_must_keep_next=false
1045for ac_pass in 1 2
1024do 1046do
1025 case $ac_arg in 1047 for ac_arg
1026 -no-create | --no-create | --no-creat | --no-crea | --no-cre \ 1048 do
1027 | --no-cr | --no-c | -n ) continue ;; 1049 case $ac_arg in
1028 -no-recursion | --no-recursion | --no-recursio | --no-recursi \ 1050 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1029 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) 1051 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1030 continue ;; 1052 | -silent | --silent | --silen | --sile | --sil)
1031 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) 1053 continue ;;
1032 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1054 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1033 esac 1055 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1034 case " $ac_configure_args " in 1056 esac
1035 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. 1057 case $ac_pass in
1036 *) ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" 1058 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1037 ac_sep=" " ;; 1059 2)
1038 esac 1060 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1039 # Get rid of the leading space. 1061 if test $ac_must_keep_next = true; then
1062 ac_must_keep_next=false # Got value, back to normal.
1063 else
1064 case $ac_arg in
1065 *=* | --config-cache | -C | -disable-* | --disable-* \
1066 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1067 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1068 | -with-* | --with-* | -without-* | --without-* | --x)
1069 case "$ac_configure_args0 " in
1070 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1071 esac
1072 ;;
1073 -* ) ac_must_keep_next=true ;;
1074 esac
1075 fi
1076 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
1077 # Get rid of the leading space.
1078 ac_sep=" "
1079 ;;
1080 esac
1081 done
1040done 1082done
1083$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1084$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1041 1085
1042# When interrupted or exit'd, cleanup temporary files, and complete 1086# When interrupted or exit'd, cleanup temporary files, and complete
1043# config.log. We remove comments because anyway the quotes in there 1087# config.log. We remove comments because anyway the quotes in there
@@ -1048,6 +1092,7 @@ trap 'exit_status=$?
1048 # Save into config.log some information that might help in debugging. 1092 # Save into config.log some information that might help in debugging.
1049 { 1093 {
1050 echo 1094 echo
1095
1051 cat <<\_ASBOX 1096 cat <<\_ASBOX
1052## ---------------- ## 1097## ---------------- ##
1053## Cache variables. ## 1098## Cache variables. ##
@@ -1070,6 +1115,35 @@ _ASBOX
1070 esac; 1115 esac;
1071} 1116}
1072 echo 1117 echo
1118
1119 cat <<\_ASBOX
1120## ----------------- ##
1121## Output variables. ##
1122## ----------------- ##
1123_ASBOX
1124 echo
1125 for ac_var in $ac_subst_vars
1126 do
1127 eval ac_val=$`echo $ac_var`
1128 echo "$ac_var='"'"'$ac_val'"'"'"
1129 done | sort
1130 echo
1131
1132 if test -n "$ac_subst_files"; then
1133 cat <<\_ASBOX
1134## ------------- ##
1135## Output files. ##
1136## ------------- ##
1137_ASBOX
1138 echo
1139 for ac_var in $ac_subst_files
1140 do
1141 eval ac_val=$`echo $ac_var`
1142 echo "$ac_var='"'"'$ac_val'"'"'"
1143 done | sort
1144 echo
1145 fi
1146
1073 if test -s confdefs.h; then 1147 if test -s confdefs.h; then
1074 cat <<\_ASBOX 1148 cat <<\_ASBOX
1075## ----------- ## 1149## ----------- ##
@@ -1077,7 +1151,7 @@ _ASBOX
1077## ----------- ## 1151## ----------- ##
1078_ASBOX 1152_ASBOX
1079 echo 1153 echo
1080 sed "/^$/d" confdefs.h 1154 sed "/^$/d" confdefs.h | sort
1081 echo 1155 echo
1082 fi 1156 fi
1083 test "$ac_signal" != 0 && 1157 test "$ac_signal" != 0 &&
@@ -1236,7 +1310,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
1236 1310
1237 1311
1238 1312
1239ac_config_headers="$ac_config_headers config.h" 1313
1314 ac_config_headers="$ac_config_headers config.h"
1240 1315
1241ac_ext=c 1316ac_ext=c
1242ac_cpp='$CPP $CPPFLAGS' 1317ac_cpp='$CPP $CPPFLAGS'
@@ -1442,9 +1517,7 @@ if test $ac_prog_rejected = yes; then
1442 # However, it has the same basename, so the bogon will be chosen 1517 # However, it has the same basename, so the bogon will be chosen
1443 # first if we set CC to just the basename; use the full file name. 1518 # first if we set CC to just the basename; use the full file name.
1444 shift 1519 shift
1445 set dummy "$as_dir/$ac_word" ${1+"$@"} 1520 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
1446 shift
1447 ac_cv_prog_CC="$@"
1448 fi 1521 fi
1449fi 1522fi
1450fi 1523fi
@@ -1549,8 +1622,10 @@ fi
1549fi 1622fi
1550 1623
1551 1624
1552test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH" >&5 1625test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
1553echo "$as_me: error: no acceptable C compiler found in \$PATH" >&2;} 1626See \`config.log' for more details." >&5
1627echo "$as_me: error: no acceptable C compiler found in \$PATH
1628See \`config.log' for more details." >&2;}
1554 { (exit 1); exit 1; }; } 1629 { (exit 1); exit 1; }; }
1555 1630
1556# Provide some information about the compiler. 1631# Provide some information about the compiler.
@@ -1575,14 +1650,12 @@ ac_compiler=`set X $ac_compile; echo $2`
1575 1650
1576cat >conftest.$ac_ext <<_ACEOF 1651cat >conftest.$ac_ext <<_ACEOF
1577#line $LINENO "configure" 1652#line $LINENO "configure"
1578#include "confdefs.h" 1653/* confdefs.h. */
1654_ACEOF
1655cat confdefs.h >>conftest.$ac_ext
1656cat >>conftest.$ac_ext <<_ACEOF
1657/* end confdefs.h. */
1579 1658
1580#ifdef F77_DUMMY_MAIN
1581# ifdef __cplusplus
1582 extern "C"
1583# endif
1584 int F77_DUMMY_MAIN() { return 1; }
1585#endif
1586int 1659int
1587main () 1660main ()
1588{ 1661{
@@ -1592,7 +1665,7 @@ main ()
1592} 1665}
1593_ACEOF 1666_ACEOF
1594ac_clean_files_save=$ac_clean_files 1667ac_clean_files_save=$ac_clean_files
1595ac_clean_files="$ac_clean_files a.out a.exe" 1668ac_clean_files="$ac_clean_files a.out a.exe b.out"
1596# Try to create an executable without -o first, disregard a.out. 1669# Try to create an executable without -o first, disregard a.out.
1597# It will help us diagnose broken compilers, and finding out an intuition 1670# It will help us diagnose broken compilers, and finding out an intuition
1598# of exeext. 1671# of exeext.
@@ -1611,26 +1684,39 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
1611# Be careful to initialize this variable, since it used to be cached. 1684# Be careful to initialize this variable, since it used to be cached.
1612# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. 1685# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
1613ac_cv_exeext= 1686ac_cv_exeext=
1614for ac_file in `ls a_out.exe a.exe conftest.exe 2>/dev/null; 1687# b.out is created by i960 compilers.
1615 ls a.out conftest 2>/dev/null; 1688for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
1616 ls a.* conftest.* 2>/dev/null`; do 1689do
1690 test -f "$ac_file" || continue
1617 case $ac_file in 1691 case $ac_file in
1618 *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb | *.xSYM ) ;; 1692 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
1619 a.out ) # We found the default executable, but exeext='' is most 1693 ;;
1620 # certainly right. 1694 conftest.$ac_ext )
1621 break;; 1695 # This is the source file.
1622 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 1696 ;;
1623 # FIXME: I believe we export ac_cv_exeext for Libtool --akim. 1697 [ab].out )
1624 export ac_cv_exeext 1698 # We found the default executable, but exeext='' is most
1625 break;; 1699 # certainly right.
1626 * ) break;; 1700 break;;
1701 *.* )
1702 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1703 # FIXME: I believe we export ac_cv_exeext for Libtool,
1704 # but it would be cool to find out if it's true. Does anybody
1705 # maintain Libtool? --akim.
1706 export ac_cv_exeext
1707 break;;
1708 * )
1709 break;;
1627 esac 1710 esac
1628done 1711done
1629else 1712else
1630 echo "$as_me: failed program was:" >&5 1713 echo "$as_me: failed program was:" >&5
1631cat conftest.$ac_ext >&5 1714sed 's/^/| /' conftest.$ac_ext >&5
1632{ { echo "$as_me:$LINENO: error: C compiler cannot create executables" >&5 1715
1633echo "$as_me: error: C compiler cannot create executables" >&2;} 1716{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
1717See \`config.log' for more details." >&5
1718echo "$as_me: error: C compiler cannot create executables
1719See \`config.log' for more details." >&2;}
1634 { (exit 77); exit 77; }; } 1720 { (exit 77); exit 77; }; }
1635fi 1721fi
1636 1722
@@ -1657,9 +1743,11 @@ if test "$cross_compiling" != yes; then
1657 cross_compiling=yes 1743 cross_compiling=yes
1658 else 1744 else
1659 { { echo "$as_me:$LINENO: error: cannot run C compiled programs. 1745 { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
1660If you meant to cross compile, use \`--host'." >&5 1746If you meant to cross compile, use \`--host'.
1747See \`config.log' for more details." >&5
1661echo "$as_me: error: cannot run C compiled programs. 1748echo "$as_me: error: cannot run C compiled programs.
1662If you meant to cross compile, use \`--host'." >&2;} 1749If you meant to cross compile, use \`--host'.
1750See \`config.log' for more details." >&2;}
1663 { (exit 1); exit 1; }; } 1751 { (exit 1); exit 1; }; }
1664 fi 1752 fi
1665 fi 1753 fi
@@ -1667,7 +1755,7 @@ fi
1667echo "$as_me:$LINENO: result: yes" >&5 1755echo "$as_me:$LINENO: result: yes" >&5
1668echo "${ECHO_T}yes" >&6 1756echo "${ECHO_T}yes" >&6
1669 1757
1670rm -f a.out a.exe conftest$ac_cv_exeext 1758rm -f a.out a.exe conftest$ac_cv_exeext b.out
1671ac_clean_files=$ac_clean_files_save 1759ac_clean_files=$ac_clean_files_save
1672# Check the compiler produces executables we can run. If not, either 1760# Check the compiler produces executables we can run. If not, either
1673# the compiler is broken, or we cross compile. 1761# the compiler is broken, or we cross compile.
@@ -1687,9 +1775,10 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1687# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will 1775# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
1688# work properly (i.e., refer to `conftest.exe'), while it won't with 1776# work properly (i.e., refer to `conftest.exe'), while it won't with
1689# `rm'. 1777# `rm'.
1690for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do 1778for ac_file in conftest.exe conftest conftest.*; do
1779 test -f "$ac_file" || continue
1691 case $ac_file in 1780 case $ac_file in
1692 *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;; 1781 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
1693 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 1782 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1694 export ac_cv_exeext 1783 export ac_cv_exeext
1695 break;; 1784 break;;
@@ -1697,8 +1786,10 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
1697 esac 1786 esac
1698done 1787done
1699else 1788else
1700 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link" >&5 1789 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
1701echo "$as_me: error: cannot compute suffix of executables: cannot compile and link" >&2;} 1790See \`config.log' for more details." >&5
1791echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
1792See \`config.log' for more details." >&2;}
1702 { (exit 1); exit 1; }; } 1793 { (exit 1); exit 1; }; }
1703fi 1794fi
1704 1795
@@ -1716,14 +1807,12 @@ if test "${ac_cv_objext+set}" = set; then
1716else 1807else
1717 cat >conftest.$ac_ext <<_ACEOF 1808 cat >conftest.$ac_ext <<_ACEOF
1718#line $LINENO "configure" 1809#line $LINENO "configure"
1719#include "confdefs.h" 1810/* confdefs.h. */
1811_ACEOF
1812cat confdefs.h >>conftest.$ac_ext
1813cat >>conftest.$ac_ext <<_ACEOF
1814/* end confdefs.h. */
1720 1815
1721#ifdef F77_DUMMY_MAIN
1722# ifdef __cplusplus
1723 extern "C"
1724# endif
1725 int F77_DUMMY_MAIN() { return 1; }
1726#endif
1727int 1816int
1728main () 1817main ()
1729{ 1818{
@@ -1740,16 +1829,19 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1740 (exit $ac_status); }; then 1829 (exit $ac_status); }; then
1741 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do 1830 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
1742 case $ac_file in 1831 case $ac_file in
1743 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;; 1832 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
1744 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` 1833 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
1745 break;; 1834 break;;
1746 esac 1835 esac
1747done 1836done
1748else 1837else
1749 echo "$as_me: failed program was:" >&5 1838 echo "$as_me: failed program was:" >&5
1750cat conftest.$ac_ext >&5 1839sed 's/^/| /' conftest.$ac_ext >&5
1751{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile" >&5 1840
1752echo "$as_me: error: cannot compute suffix of object files: cannot compile" >&2;} 1841{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
1842See \`config.log' for more details." >&5
1843echo "$as_me: error: cannot compute suffix of object files: cannot compile
1844See \`config.log' for more details." >&2;}
1753 { (exit 1); exit 1; }; } 1845 { (exit 1); exit 1; }; }
1754fi 1846fi
1755 1847
@@ -1766,14 +1858,12 @@ if test "${ac_cv_c_compiler_gnu+set}" = set; then
1766else 1858else
1767 cat >conftest.$ac_ext <<_ACEOF 1859 cat >conftest.$ac_ext <<_ACEOF
1768#line $LINENO "configure" 1860#line $LINENO "configure"
1769#include "confdefs.h" 1861/* confdefs.h. */
1862_ACEOF
1863cat confdefs.h >>conftest.$ac_ext
1864cat >>conftest.$ac_ext <<_ACEOF
1865/* end confdefs.h. */
1770 1866
1771#ifdef F77_DUMMY_MAIN
1772# ifdef __cplusplus
1773 extern "C"
1774# endif
1775 int F77_DUMMY_MAIN() { return 1; }
1776#endif
1777int 1867int
1778main () 1868main ()
1779{ 1869{
@@ -1800,7 +1890,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1800 ac_compiler_gnu=yes 1890 ac_compiler_gnu=yes
1801else 1891else
1802 echo "$as_me: failed program was:" >&5 1892 echo "$as_me: failed program was:" >&5
1803cat conftest.$ac_ext >&5 1893sed 's/^/| /' conftest.$ac_ext >&5
1894
1804ac_compiler_gnu=no 1895ac_compiler_gnu=no
1805fi 1896fi
1806rm -f conftest.$ac_objext conftest.$ac_ext 1897rm -f conftest.$ac_objext conftest.$ac_ext
@@ -1820,14 +1911,12 @@ if test "${ac_cv_prog_cc_g+set}" = set; then
1820else 1911else
1821 cat >conftest.$ac_ext <<_ACEOF 1912 cat >conftest.$ac_ext <<_ACEOF
1822#line $LINENO "configure" 1913#line $LINENO "configure"
1823#include "confdefs.h" 1914/* confdefs.h. */
1915_ACEOF
1916cat confdefs.h >>conftest.$ac_ext
1917cat >>conftest.$ac_ext <<_ACEOF
1918/* end confdefs.h. */
1824 1919
1825#ifdef F77_DUMMY_MAIN
1826# ifdef __cplusplus
1827 extern "C"
1828# endif
1829 int F77_DUMMY_MAIN() { return 1; }
1830#endif
1831int 1920int
1832main () 1921main ()
1833{ 1922{
@@ -1851,7 +1940,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1851 ac_cv_prog_cc_g=yes 1940 ac_cv_prog_cc_g=yes
1852else 1941else
1853 echo "$as_me: failed program was:" >&5 1942 echo "$as_me: failed program was:" >&5
1854cat conftest.$ac_ext >&5 1943sed 's/^/| /' conftest.$ac_ext >&5
1944
1855ac_cv_prog_cc_g=no 1945ac_cv_prog_cc_g=no
1856fi 1946fi
1857rm -f conftest.$ac_objext conftest.$ac_ext 1947rm -f conftest.$ac_objext conftest.$ac_ext
@@ -1873,6 +1963,102 @@ else
1873 CFLAGS= 1963 CFLAGS=
1874 fi 1964 fi
1875fi 1965fi
1966echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
1967echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
1968if test "${ac_cv_prog_cc_stdc+set}" = set; then
1969 echo $ECHO_N "(cached) $ECHO_C" >&6
1970else
1971 ac_cv_prog_cc_stdc=no
1972ac_save_CC=$CC
1973cat >conftest.$ac_ext <<_ACEOF
1974#line $LINENO "configure"
1975/* confdefs.h. */
1976_ACEOF
1977cat confdefs.h >>conftest.$ac_ext
1978cat >>conftest.$ac_ext <<_ACEOF
1979/* end confdefs.h. */
1980#include <stdarg.h>
1981#include <stdio.h>
1982#include <sys/types.h>
1983#include <sys/stat.h>
1984/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
1985struct buf { int x; };
1986FILE * (*rcsopen) (struct buf *, struct stat *, int);
1987static char *e (p, i)
1988 char **p;
1989 int i;
1990{
1991 return p[i];
1992}
1993static char *f (char * (*g) (char **, int), char **p, ...)
1994{
1995 char *s;
1996 va_list v;
1997 va_start (v,p);
1998 s = g (p, va_arg (v,int));
1999 va_end (v);
2000 return s;
2001}
2002int test (int i, double x);
2003struct s1 {int (*f) (int a);};
2004struct s2 {int (*f) (double a);};
2005int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
2006int argc;
2007char **argv;
2008int
2009main ()
2010{
2011return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2012 ;
2013 return 0;
2014}
2015_ACEOF
2016# Don't try gcc -ansi; that turns off useful extensions and
2017# breaks some systems' header files.
2018# AIX -qlanglvl=ansi
2019# Ultrix and OSF/1 -std1
2020# HP-UX 10.20 and later -Ae
2021# HP-UX older versions -Aa -D_HPUX_SOURCE
2022# SVR4 -Xc -D__EXTENSIONS__
2023for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
2024do
2025 CC="$ac_save_CC $ac_arg"
2026 rm -f conftest.$ac_objext
2027if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2028 (eval $ac_compile) 2>&5
2029 ac_status=$?
2030 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2031 (exit $ac_status); } &&
2032 { ac_try='test -s conftest.$ac_objext'
2033 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2034 (eval $ac_try) 2>&5
2035 ac_status=$?
2036 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2037 (exit $ac_status); }; }; then
2038 ac_cv_prog_cc_stdc=$ac_arg
2039break
2040else
2041 echo "$as_me: failed program was:" >&5
2042sed 's/^/| /' conftest.$ac_ext >&5
2043
2044fi
2045rm -f conftest.$ac_objext
2046done
2047rm -f conftest.$ac_ext conftest.$ac_objext
2048CC=$ac_save_CC
2049
2050fi
2051
2052case "x$ac_cv_prog_cc_stdc" in
2053 x|xno)
2054 echo "$as_me:$LINENO: result: none needed" >&5
2055echo "${ECHO_T}none needed" >&6 ;;
2056 *)
2057 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
2058echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
2059 CC="$CC $ac_cv_prog_cc_stdc" ;;
2060esac
2061
1876# Some people use a C++ compiler to compile C. Since we use `exit', 2062# Some people use a C++ compiler to compile C. Since we use `exit',
1877# in C++ we need to declare it. In case someone uses the same compiler 2063# in C++ we need to declare it. In case someone uses the same compiler
1878# for both compiling C and C++ we need to have the C++ compiler decide 2064# for both compiling C and C++ we need to have the C++ compiler decide
@@ -1905,15 +2091,13 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1905do 2091do
1906 cat >conftest.$ac_ext <<_ACEOF 2092 cat >conftest.$ac_ext <<_ACEOF
1907#line $LINENO "configure" 2093#line $LINENO "configure"
1908#include "confdefs.h" 2094/* confdefs.h. */
2095_ACEOF
2096cat confdefs.h >>conftest.$ac_ext
2097cat >>conftest.$ac_ext <<_ACEOF
2098/* end confdefs.h. */
1909#include <stdlib.h> 2099#include <stdlib.h>
1910$ac_declaration 2100$ac_declaration
1911#ifdef F77_DUMMY_MAIN
1912# ifdef __cplusplus
1913 extern "C"
1914# endif
1915 int F77_DUMMY_MAIN() { return 1; }
1916#endif
1917int 2101int
1918main () 2102main ()
1919{ 2103{
@@ -1937,20 +2121,19 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1937 : 2121 :
1938else 2122else
1939 echo "$as_me: failed program was:" >&5 2123 echo "$as_me: failed program was:" >&5
1940cat conftest.$ac_ext >&5 2124sed 's/^/| /' conftest.$ac_ext >&5
2125
1941continue 2126continue
1942fi 2127fi
1943rm -f conftest.$ac_objext conftest.$ac_ext 2128rm -f conftest.$ac_objext conftest.$ac_ext
1944 cat >conftest.$ac_ext <<_ACEOF 2129 cat >conftest.$ac_ext <<_ACEOF
1945#line $LINENO "configure" 2130#line $LINENO "configure"
1946#include "confdefs.h" 2131/* confdefs.h. */
2132_ACEOF
2133cat confdefs.h >>conftest.$ac_ext
2134cat >>conftest.$ac_ext <<_ACEOF
2135/* end confdefs.h. */
1947$ac_declaration 2136$ac_declaration
1948#ifdef F77_DUMMY_MAIN
1949# ifdef __cplusplus
1950 extern "C"
1951# endif
1952 int F77_DUMMY_MAIN() { return 1; }
1953#endif
1954int 2137int
1955main () 2138main ()
1956{ 2139{
@@ -1974,7 +2157,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1974 break 2157 break
1975else 2158else
1976 echo "$as_me: failed program was:" >&5 2159 echo "$as_me: failed program was:" >&5
1977cat conftest.$ac_ext >&5 2160sed 's/^/| /' conftest.$ac_ext >&5
2161
1978fi 2162fi
1979rm -f conftest.$ac_objext conftest.$ac_ext 2163rm -f conftest.$ac_objext conftest.$ac_ext
1980done 2164done
@@ -1987,7 +2171,8 @@ fi
1987 2171
1988else 2172else
1989 echo "$as_me: failed program was:" >&5 2173 echo "$as_me: failed program was:" >&5
1990cat conftest.$ac_ext >&5 2174sed 's/^/| /' conftest.$ac_ext >&5
2175
1991fi 2176fi
1992rm -f conftest.$ac_objext conftest.$ac_ext 2177rm -f conftest.$ac_objext conftest.$ac_ext
1993ac_ext=c 2178ac_ext=c
@@ -2084,16 +2269,14 @@ else
2084 # See if sys/param.h defines the BYTE_ORDER macro. 2269 # See if sys/param.h defines the BYTE_ORDER macro.
2085cat >conftest.$ac_ext <<_ACEOF 2270cat >conftest.$ac_ext <<_ACEOF
2086#line $LINENO "configure" 2271#line $LINENO "configure"
2087#include "confdefs.h" 2272/* confdefs.h. */
2273_ACEOF
2274cat confdefs.h >>conftest.$ac_ext
2275cat >>conftest.$ac_ext <<_ACEOF
2276/* end confdefs.h. */
2088#include <sys/types.h> 2277#include <sys/types.h>
2089#include <sys/param.h> 2278#include <sys/param.h>
2090 2279
2091#ifdef F77_DUMMY_MAIN
2092# ifdef __cplusplus
2093 extern "C"
2094# endif
2095 int F77_DUMMY_MAIN() { return 1; }
2096#endif
2097int 2280int
2098main () 2281main ()
2099{ 2282{
@@ -2120,16 +2303,14 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2120 # It does; now see whether it defined to BIG_ENDIAN or not. 2303 # It does; now see whether it defined to BIG_ENDIAN or not.
2121cat >conftest.$ac_ext <<_ACEOF 2304cat >conftest.$ac_ext <<_ACEOF
2122#line $LINENO "configure" 2305#line $LINENO "configure"
2123#include "confdefs.h" 2306/* confdefs.h. */
2307_ACEOF
2308cat confdefs.h >>conftest.$ac_ext
2309cat >>conftest.$ac_ext <<_ACEOF
2310/* end confdefs.h. */
2124#include <sys/types.h> 2311#include <sys/types.h>
2125#include <sys/param.h> 2312#include <sys/param.h>
2126 2313
2127#ifdef F77_DUMMY_MAIN
2128# ifdef __cplusplus
2129 extern "C"
2130# endif
2131 int F77_DUMMY_MAIN() { return 1; }
2132#endif
2133int 2314int
2134main () 2315main ()
2135{ 2316{
@@ -2156,32 +2337,32 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2156 ac_cv_c_bigendian=yes 2337 ac_cv_c_bigendian=yes
2157else 2338else
2158 echo "$as_me: failed program was:" >&5 2339 echo "$as_me: failed program was:" >&5
2159cat conftest.$ac_ext >&5 2340sed 's/^/| /' conftest.$ac_ext >&5
2341
2160ac_cv_c_bigendian=no 2342ac_cv_c_bigendian=no
2161fi 2343fi
2162rm -f conftest.$ac_objext conftest.$ac_ext 2344rm -f conftest.$ac_objext conftest.$ac_ext
2163else 2345else
2164 echo "$as_me: failed program was:" >&5 2346 echo "$as_me: failed program was:" >&5
2165cat conftest.$ac_ext >&5 2347sed 's/^/| /' conftest.$ac_ext >&5
2348
2166# It does not; compile a test program. 2349# It does not; compile a test program.
2167if test "$cross_compiling" = yes; then 2350if test "$cross_compiling" = yes; then
2168 # try to guess the endianess by grep'ing values into an object file 2351 # try to guess the endianness by grepping values into an object file
2169 ac_cv_c_bigendian=unknown 2352 ac_cv_c_bigendian=unknown
2170 cat >conftest.$ac_ext <<_ACEOF 2353 cat >conftest.$ac_ext <<_ACEOF
2171#line $LINENO "configure" 2354#line $LINENO "configure"
2172#include "confdefs.h" 2355/* confdefs.h. */
2356_ACEOF
2357cat confdefs.h >>conftest.$ac_ext
2358cat >>conftest.$ac_ext <<_ACEOF
2359/* end confdefs.h. */
2173short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; 2360short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
2174short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; 2361short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
2175void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } 2362void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }
2176short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; 2363short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
2177short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; 2364short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
2178void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } 2365void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }
2179#ifdef F77_DUMMY_MAIN
2180# ifdef __cplusplus
2181 extern "C"
2182# endif
2183 int F77_DUMMY_MAIN() { return 1; }
2184#endif
2185int 2366int
2186main () 2367main ()
2187{ 2368{
@@ -2202,10 +2383,10 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2202 ac_status=$? 2383 ac_status=$?
2203 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2384 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2204 (exit $ac_status); }; }; then 2385 (exit $ac_status); }; }; then
2205 if fgrep BIGenDianSyS conftest.$ac_objext >/dev/null ; then 2386 if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
2206 ac_cv_c_bigendian=yes 2387 ac_cv_c_bigendian=yes
2207fi 2388fi
2208if fgrep LiTTleEnDian conftest.$ac_objext >/dev/null ; then 2389if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
2209 if test "$ac_cv_c_bigendian" = unknown; then 2390 if test "$ac_cv_c_bigendian" = unknown; then
2210 ac_cv_c_bigendian=no 2391 ac_cv_c_bigendian=no
2211 else 2392 else
@@ -2215,13 +2396,18 @@ if fgrep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
2215fi 2396fi
2216else 2397else
2217 echo "$as_me: failed program was:" >&5 2398 echo "$as_me: failed program was:" >&5
2218cat conftest.$ac_ext >&5 2399sed 's/^/| /' conftest.$ac_ext >&5
2400
2219fi 2401fi
2220rm -f conftest.$ac_objext conftest.$ac_ext 2402rm -f conftest.$ac_objext conftest.$ac_ext
2221else 2403else
2222 cat >conftest.$ac_ext <<_ACEOF 2404 cat >conftest.$ac_ext <<_ACEOF
2223#line $LINENO "configure" 2405#line $LINENO "configure"
2224#include "confdefs.h" 2406/* confdefs.h. */
2407_ACEOF
2408cat confdefs.h >>conftest.$ac_ext
2409cat >>conftest.$ac_ext <<_ACEOF
2410/* end confdefs.h. */
2225int 2411int
2226main () 2412main ()
2227{ 2413{
@@ -2250,11 +2436,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2250else 2436else
2251 echo "$as_me: program exited with status $ac_status" >&5 2437 echo "$as_me: program exited with status $ac_status" >&5
2252echo "$as_me: failed program was:" >&5 2438echo "$as_me: failed program was:" >&5
2253cat conftest.$ac_ext >&5 2439sed 's/^/| /' conftest.$ac_ext >&5
2440
2254( exit $ac_status ) 2441( exit $ac_status )
2255ac_cv_c_bigendian=yes 2442ac_cv_c_bigendian=yes
2256fi 2443fi
2257rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 2444rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2258fi 2445fi
2259fi 2446fi
2260rm -f conftest.$ac_objext conftest.$ac_ext 2447rm -f conftest.$ac_objext conftest.$ac_ext
@@ -2271,9 +2458,9 @@ _ACEOF
2271 no) 2458 no)
2272 ;; 2459 ;;
2273 *) 2460 *)
2274 { { echo "$as_me:$LINENO: error: unknown endianess 2461 { { echo "$as_me:$LINENO: error: unknown endianness
2275presetting ac_cv_c_bigendian=no (or yes) will help" >&5 2462presetting ac_cv_c_bigendian=no (or yes) will help" >&5
2276echo "$as_me: error: unknown endianess 2463echo "$as_me: error: unknown endianness
2277presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} 2464presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}
2278 { (exit 1); exit 1; }; } ;; 2465 { (exit 1); exit 1; }; } ;;
2279esac 2466esac
@@ -2303,18 +2490,28 @@ for ac_c_preproc_warn_flag in '' yes
2303do 2490do
2304 # Use a header file that comes with gcc, so configuring glibc 2491 # Use a header file that comes with gcc, so configuring glibc
2305 # with a fresh cross-compiler works. 2492 # with a fresh cross-compiler works.
2493 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2494 # <limits.h> exists even on freestanding compilers.
2306 # On the NeXT, cc -E runs the code through the compiler's parser, 2495 # On the NeXT, cc -E runs the code through the compiler's parser,
2307 # not just through cpp. "Syntax error" is here to catch this case. 2496 # not just through cpp. "Syntax error" is here to catch this case.
2308 cat >conftest.$ac_ext <<_ACEOF 2497 cat >conftest.$ac_ext <<_ACEOF
2309#line $LINENO "configure" 2498#line $LINENO "configure"
2310#include "confdefs.h" 2499/* confdefs.h. */
2311#include <assert.h> 2500_ACEOF
2501cat confdefs.h >>conftest.$ac_ext
2502cat >>conftest.$ac_ext <<_ACEOF
2503/* end confdefs.h. */
2504#ifdef __STDC__
2505# include <limits.h>
2506#else
2507# include <assert.h>
2508#endif
2312 Syntax error 2509 Syntax error
2313_ACEOF 2510_ACEOF
2314if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 2511if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2315 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 2512 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2316 ac_status=$? 2513 ac_status=$?
2317 egrep -v '^ *\+' conftest.er1 >conftest.err 2514 grep -v '^ *+' conftest.er1 >conftest.err
2318 rm -f conftest.er1 2515 rm -f conftest.er1
2319 cat conftest.err >&5 2516 cat conftest.err >&5
2320 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2517 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -2331,7 +2528,8 @@ if test -z "$ac_cpp_err"; then
2331 : 2528 :
2332else 2529else
2333 echo "$as_me: failed program was:" >&5 2530 echo "$as_me: failed program was:" >&5
2334 cat conftest.$ac_ext >&5 2531sed 's/^/| /' conftest.$ac_ext >&5
2532
2335 # Broken: fails on valid input. 2533 # Broken: fails on valid input.
2336continue 2534continue
2337fi 2535fi
@@ -2341,13 +2539,17 @@ rm -f conftest.err conftest.$ac_ext
2341 # can be detected and how. 2539 # can be detected and how.
2342 cat >conftest.$ac_ext <<_ACEOF 2540 cat >conftest.$ac_ext <<_ACEOF
2343#line $LINENO "configure" 2541#line $LINENO "configure"
2344#include "confdefs.h" 2542/* confdefs.h. */
2543_ACEOF
2544cat confdefs.h >>conftest.$ac_ext
2545cat >>conftest.$ac_ext <<_ACEOF
2546/* end confdefs.h. */
2345#include <ac_nonexistent.h> 2547#include <ac_nonexistent.h>
2346_ACEOF 2548_ACEOF
2347if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 2549if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2348 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 2550 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2349 ac_status=$? 2551 ac_status=$?
2350 egrep -v '^ *\+' conftest.er1 >conftest.err 2552 grep -v '^ *+' conftest.er1 >conftest.err
2351 rm -f conftest.er1 2553 rm -f conftest.er1
2352 cat conftest.err >&5 2554 cat conftest.err >&5
2353 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2555 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -2365,7 +2567,8 @@ if test -z "$ac_cpp_err"; then
2365continue 2567continue
2366else 2568else
2367 echo "$as_me: failed program was:" >&5 2569 echo "$as_me: failed program was:" >&5
2368 cat conftest.$ac_ext >&5 2570sed 's/^/| /' conftest.$ac_ext >&5
2571
2369 # Passes both tests. 2572 # Passes both tests.
2370ac_preproc_ok=: 2573ac_preproc_ok=:
2371break 2574break
@@ -2394,18 +2597,28 @@ for ac_c_preproc_warn_flag in '' yes
2394do 2597do
2395 # Use a header file that comes with gcc, so configuring glibc 2598 # Use a header file that comes with gcc, so configuring glibc
2396 # with a fresh cross-compiler works. 2599 # with a fresh cross-compiler works.
2600 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2601 # <limits.h> exists even on freestanding compilers.
2397 # On the NeXT, cc -E runs the code through the compiler's parser, 2602 # On the NeXT, cc -E runs the code through the compiler's parser,
2398 # not just through cpp. "Syntax error" is here to catch this case. 2603 # not just through cpp. "Syntax error" is here to catch this case.
2399 cat >conftest.$ac_ext <<_ACEOF 2604 cat >conftest.$ac_ext <<_ACEOF
2400#line $LINENO "configure" 2605#line $LINENO "configure"
2401#include "confdefs.h" 2606/* confdefs.h. */
2402#include <assert.h> 2607_ACEOF
2608cat confdefs.h >>conftest.$ac_ext
2609cat >>conftest.$ac_ext <<_ACEOF
2610/* end confdefs.h. */
2611#ifdef __STDC__
2612# include <limits.h>
2613#else
2614# include <assert.h>
2615#endif
2403 Syntax error 2616 Syntax error
2404_ACEOF 2617_ACEOF
2405if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 2618if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2406 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 2619 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2407 ac_status=$? 2620 ac_status=$?
2408 egrep -v '^ *\+' conftest.er1 >conftest.err 2621 grep -v '^ *+' conftest.er1 >conftest.err
2409 rm -f conftest.er1 2622 rm -f conftest.er1
2410 cat conftest.err >&5 2623 cat conftest.err >&5
2411 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2624 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -2422,7 +2635,8 @@ if test -z "$ac_cpp_err"; then
2422 : 2635 :
2423else 2636else
2424 echo "$as_me: failed program was:" >&5 2637 echo "$as_me: failed program was:" >&5
2425 cat conftest.$ac_ext >&5 2638sed 's/^/| /' conftest.$ac_ext >&5
2639
2426 # Broken: fails on valid input. 2640 # Broken: fails on valid input.
2427continue 2641continue
2428fi 2642fi
@@ -2432,13 +2646,17 @@ rm -f conftest.err conftest.$ac_ext
2432 # can be detected and how. 2646 # can be detected and how.
2433 cat >conftest.$ac_ext <<_ACEOF 2647 cat >conftest.$ac_ext <<_ACEOF
2434#line $LINENO "configure" 2648#line $LINENO "configure"
2435#include "confdefs.h" 2649/* confdefs.h. */
2650_ACEOF
2651cat confdefs.h >>conftest.$ac_ext
2652cat >>conftest.$ac_ext <<_ACEOF
2653/* end confdefs.h. */
2436#include <ac_nonexistent.h> 2654#include <ac_nonexistent.h>
2437_ACEOF 2655_ACEOF
2438if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 2656if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2439 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 2657 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2440 ac_status=$? 2658 ac_status=$?
2441 egrep -v '^ *\+' conftest.er1 >conftest.err 2659 grep -v '^ *+' conftest.er1 >conftest.err
2442 rm -f conftest.er1 2660 rm -f conftest.er1
2443 cat conftest.err >&5 2661 cat conftest.err >&5
2444 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2662 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -2456,7 +2674,8 @@ if test -z "$ac_cpp_err"; then
2456continue 2674continue
2457else 2675else
2458 echo "$as_me: failed program was:" >&5 2676 echo "$as_me: failed program was:" >&5
2459 cat conftest.$ac_ext >&5 2677sed 's/^/| /' conftest.$ac_ext >&5
2678
2460 # Passes both tests. 2679 # Passes both tests.
2461ac_preproc_ok=: 2680ac_preproc_ok=:
2462break 2681break
@@ -2469,8 +2688,10 @@ rm -f conftest.err conftest.$ac_ext
2469if $ac_preproc_ok; then 2688if $ac_preproc_ok; then
2470 : 2689 :
2471else 2690else
2472 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check" >&5 2691 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
2473echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} 2692See \`config.log' for more details." >&5
2693echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
2694See \`config.log' for more details." >&2;}
2474 { (exit 1); exit 1; }; } 2695 { (exit 1); exit 1; }; }
2475fi 2696fi
2476 2697
@@ -2978,7 +3199,11 @@ else
2978 # so use the C compiler's -n32 option if that helps. 3199 # so use the C compiler's -n32 option if that helps.
2979 cat >conftest.$ac_ext <<_ACEOF 3200 cat >conftest.$ac_ext <<_ACEOF
2980#line $LINENO "configure" 3201#line $LINENO "configure"
2981#include "confdefs.h" 3202/* confdefs.h. */
3203_ACEOF
3204cat confdefs.h >>conftest.$ac_ext
3205cat >>conftest.$ac_ext <<_ACEOF
3206/* end confdefs.h. */
2982#include <sys/types.h> 3207#include <sys/types.h>
2983 /* Check that off_t can represent 2**63 - 1 correctly. 3208 /* Check that off_t can represent 2**63 - 1 correctly.
2984 We can't simply define LARGE_OFF_T to be 9223372036854775807, 3209 We can't simply define LARGE_OFF_T to be 9223372036854775807,
@@ -2988,12 +3213,6 @@ else
2988 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 3213 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
2989 && LARGE_OFF_T % 2147483647 == 1) 3214 && LARGE_OFF_T % 2147483647 == 1)
2990 ? 1 : -1]; 3215 ? 1 : -1];
2991#ifdef F77_DUMMY_MAIN
2992# ifdef __cplusplus
2993 extern "C"
2994# endif
2995 int F77_DUMMY_MAIN() { return 1; }
2996#endif
2997int 3216int
2998main () 3217main ()
2999{ 3218{
@@ -3017,7 +3236,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3017 break 3236 break
3018else 3237else
3019 echo "$as_me: failed program was:" >&5 3238 echo "$as_me: failed program was:" >&5
3020cat conftest.$ac_ext >&5 3239sed 's/^/| /' conftest.$ac_ext >&5
3240
3021fi 3241fi
3022rm -f conftest.$ac_objext 3242rm -f conftest.$ac_objext
3023 CC="$CC -n32" 3243 CC="$CC -n32"
@@ -3036,7 +3256,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3036 ac_cv_sys_largefile_CC=' -n32'; break 3256 ac_cv_sys_largefile_CC=' -n32'; break
3037else 3257else
3038 echo "$as_me: failed program was:" >&5 3258 echo "$as_me: failed program was:" >&5
3039cat conftest.$ac_ext >&5 3259sed 's/^/| /' conftest.$ac_ext >&5
3260
3040fi 3261fi
3041rm -f conftest.$ac_objext 3262rm -f conftest.$ac_objext
3042 break 3263 break
@@ -3060,7 +3281,11 @@ else
3060 ac_cv_sys_file_offset_bits=no 3281 ac_cv_sys_file_offset_bits=no
3061 cat >conftest.$ac_ext <<_ACEOF 3282 cat >conftest.$ac_ext <<_ACEOF
3062#line $LINENO "configure" 3283#line $LINENO "configure"
3063#include "confdefs.h" 3284/* confdefs.h. */
3285_ACEOF
3286cat confdefs.h >>conftest.$ac_ext
3287cat >>conftest.$ac_ext <<_ACEOF
3288/* end confdefs.h. */
3064#include <sys/types.h> 3289#include <sys/types.h>
3065 /* Check that off_t can represent 2**63 - 1 correctly. 3290 /* Check that off_t can represent 2**63 - 1 correctly.
3066 We can't simply define LARGE_OFF_T to be 9223372036854775807, 3291 We can't simply define LARGE_OFF_T to be 9223372036854775807,
@@ -3070,12 +3295,6 @@ else
3070 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 3295 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
3071 && LARGE_OFF_T % 2147483647 == 1) 3296 && LARGE_OFF_T % 2147483647 == 1)
3072 ? 1 : -1]; 3297 ? 1 : -1];
3073#ifdef F77_DUMMY_MAIN
3074# ifdef __cplusplus
3075 extern "C"
3076# endif
3077 int F77_DUMMY_MAIN() { return 1; }
3078#endif
3079int 3298int
3080main () 3299main ()
3081{ 3300{
@@ -3099,12 +3318,17 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3099 break 3318 break
3100else 3319else
3101 echo "$as_me: failed program was:" >&5 3320 echo "$as_me: failed program was:" >&5
3102cat conftest.$ac_ext >&5 3321sed 's/^/| /' conftest.$ac_ext >&5
3322
3103fi 3323fi
3104rm -f conftest.$ac_objext conftest.$ac_ext 3324rm -f conftest.$ac_objext conftest.$ac_ext
3105 cat >conftest.$ac_ext <<_ACEOF 3325 cat >conftest.$ac_ext <<_ACEOF
3106#line $LINENO "configure" 3326#line $LINENO "configure"
3107#include "confdefs.h" 3327/* confdefs.h. */
3328_ACEOF
3329cat confdefs.h >>conftest.$ac_ext
3330cat >>conftest.$ac_ext <<_ACEOF
3331/* end confdefs.h. */
3108#define _FILE_OFFSET_BITS 64 3332#define _FILE_OFFSET_BITS 64
3109#include <sys/types.h> 3333#include <sys/types.h>
3110 /* Check that off_t can represent 2**63 - 1 correctly. 3334 /* Check that off_t can represent 2**63 - 1 correctly.
@@ -3115,12 +3339,6 @@ rm -f conftest.$ac_objext conftest.$ac_ext
3115 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 3339 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
3116 && LARGE_OFF_T % 2147483647 == 1) 3340 && LARGE_OFF_T % 2147483647 == 1)
3117 ? 1 : -1]; 3341 ? 1 : -1];
3118#ifdef F77_DUMMY_MAIN
3119# ifdef __cplusplus
3120 extern "C"
3121# endif
3122 int F77_DUMMY_MAIN() { return 1; }
3123#endif
3124int 3342int
3125main () 3343main ()
3126{ 3344{
@@ -3144,7 +3362,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3144 ac_cv_sys_file_offset_bits=64; break 3362 ac_cv_sys_file_offset_bits=64; break
3145else 3363else
3146 echo "$as_me: failed program was:" >&5 3364 echo "$as_me: failed program was:" >&5
3147cat conftest.$ac_ext >&5 3365sed 's/^/| /' conftest.$ac_ext >&5
3366
3148fi 3367fi
3149rm -f conftest.$ac_objext conftest.$ac_ext 3368rm -f conftest.$ac_objext conftest.$ac_ext
3150 break 3369 break
@@ -3169,7 +3388,11 @@ else
3169 ac_cv_sys_large_files=no 3388 ac_cv_sys_large_files=no
3170 cat >conftest.$ac_ext <<_ACEOF 3389 cat >conftest.$ac_ext <<_ACEOF
3171#line $LINENO "configure" 3390#line $LINENO "configure"
3172#include "confdefs.h" 3391/* confdefs.h. */
3392_ACEOF
3393cat confdefs.h >>conftest.$ac_ext
3394cat >>conftest.$ac_ext <<_ACEOF
3395/* end confdefs.h. */
3173#include <sys/types.h> 3396#include <sys/types.h>
3174 /* Check that off_t can represent 2**63 - 1 correctly. 3397 /* Check that off_t can represent 2**63 - 1 correctly.
3175 We can't simply define LARGE_OFF_T to be 9223372036854775807, 3398 We can't simply define LARGE_OFF_T to be 9223372036854775807,
@@ -3179,12 +3402,6 @@ else
3179 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 3402 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
3180 && LARGE_OFF_T % 2147483647 == 1) 3403 && LARGE_OFF_T % 2147483647 == 1)
3181 ? 1 : -1]; 3404 ? 1 : -1];
3182#ifdef F77_DUMMY_MAIN
3183# ifdef __cplusplus
3184 extern "C"
3185# endif
3186 int F77_DUMMY_MAIN() { return 1; }
3187#endif
3188int 3405int
3189main () 3406main ()
3190{ 3407{
@@ -3208,12 +3425,17 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3208 break 3425 break
3209else 3426else
3210 echo "$as_me: failed program was:" >&5 3427 echo "$as_me: failed program was:" >&5
3211cat conftest.$ac_ext >&5 3428sed 's/^/| /' conftest.$ac_ext >&5
3429
3212fi 3430fi
3213rm -f conftest.$ac_objext conftest.$ac_ext 3431rm -f conftest.$ac_objext conftest.$ac_ext
3214 cat >conftest.$ac_ext <<_ACEOF 3432 cat >conftest.$ac_ext <<_ACEOF
3215#line $LINENO "configure" 3433#line $LINENO "configure"
3216#include "confdefs.h" 3434/* confdefs.h. */
3435_ACEOF
3436cat confdefs.h >>conftest.$ac_ext
3437cat >>conftest.$ac_ext <<_ACEOF
3438/* end confdefs.h. */
3217#define _LARGE_FILES 1 3439#define _LARGE_FILES 1
3218#include <sys/types.h> 3440#include <sys/types.h>
3219 /* Check that off_t can represent 2**63 - 1 correctly. 3441 /* Check that off_t can represent 2**63 - 1 correctly.
@@ -3224,12 +3446,6 @@ rm -f conftest.$ac_objext conftest.$ac_ext
3224 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 3446 int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
3225 && LARGE_OFF_T % 2147483647 == 1) 3447 && LARGE_OFF_T % 2147483647 == 1)
3226 ? 1 : -1]; 3448 ? 1 : -1];
3227#ifdef F77_DUMMY_MAIN
3228# ifdef __cplusplus
3229 extern "C"
3230# endif
3231 int F77_DUMMY_MAIN() { return 1; }
3232#endif
3233int 3449int
3234main () 3450main ()
3235{ 3451{
@@ -3253,7 +3469,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3253 ac_cv_sys_large_files=1; break 3469 ac_cv_sys_large_files=1; break
3254else 3470else
3255 echo "$as_me: failed program was:" >&5 3471 echo "$as_me: failed program was:" >&5
3256cat conftest.$ac_ext >&5 3472sed 's/^/| /' conftest.$ac_ext >&5
3473
3257fi 3474fi
3258rm -f conftest.$ac_objext conftest.$ac_ext 3475rm -f conftest.$ac_objext conftest.$ac_ext
3259 break 3476 break
@@ -3338,103 +3555,6 @@ if test -z "$LD" ; then
3338fi 3555fi
3339 3556
3340 3557
3341echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
3342echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
3343if test "${ac_cv_prog_cc_stdc+set}" = set; then
3344 echo $ECHO_N "(cached) $ECHO_C" >&6
3345else
3346 ac_cv_prog_cc_stdc=no
3347ac_save_CC=$CC
3348cat >conftest.$ac_ext <<_ACEOF
3349#line $LINENO "configure"
3350#include "confdefs.h"
3351#include <stdarg.h>
3352#include <stdio.h>
3353#include <sys/types.h>
3354#include <sys/stat.h>
3355/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
3356struct buf { int x; };
3357FILE * (*rcsopen) (struct buf *, struct stat *, int);
3358static char *e (p, i)
3359 char **p;
3360 int i;
3361{
3362 return p[i];
3363}
3364static char *f (char * (*g) (char **, int), char **p, ...)
3365{
3366 char *s;
3367 va_list v;
3368 va_start (v,p);
3369 s = g (p, va_arg (v,int));
3370 va_end (v);
3371 return s;
3372}
3373int test (int i, double x);
3374struct s1 {int (*f) (int a);};
3375struct s2 {int (*f) (double a);};
3376int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
3377int argc;
3378char **argv;
3379#ifdef F77_DUMMY_MAIN
3380# ifdef __cplusplus
3381 extern "C"
3382# endif
3383 int F77_DUMMY_MAIN() { return 1; }
3384#endif
3385int
3386main ()
3387{
3388return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
3389 ;
3390 return 0;
3391}
3392_ACEOF
3393# Don't try gcc -ansi; that turns off useful extensions and
3394# breaks some systems' header files.
3395# AIX -qlanglvl=ansi
3396# Ultrix and OSF/1 -std1
3397# HP-UX 10.20 and later -Ae
3398# HP-UX older versions -Aa -D_HPUX_SOURCE
3399# SVR4 -Xc -D__EXTENSIONS__
3400for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
3401do
3402 CC="$ac_save_CC $ac_arg"
3403 rm -f conftest.$ac_objext
3404if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3405 (eval $ac_compile) 2>&5
3406 ac_status=$?
3407 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3408 (exit $ac_status); } &&
3409 { ac_try='test -s conftest.$ac_objext'
3410 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3411 (eval $ac_try) 2>&5
3412 ac_status=$?
3413 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3414 (exit $ac_status); }; }; then
3415 ac_cv_prog_cc_stdc=$ac_arg
3416break
3417else
3418 echo "$as_me: failed program was:" >&5
3419cat conftest.$ac_ext >&5
3420fi
3421rm -f conftest.$ac_objext
3422done
3423rm -f conftest.$ac_ext conftest.$ac_objext
3424CC=$ac_save_CC
3425
3426fi
3427
3428case "x$ac_cv_prog_cc_stdc" in
3429 x|xno)
3430 echo "$as_me:$LINENO: result: none needed" >&5
3431echo "${ECHO_T}none needed" >&6 ;;
3432 *)
3433 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
3434echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
3435 CC="$CC $ac_cv_prog_cc_stdc" ;;
3436esac
3437
3438echo "$as_me:$LINENO: checking for inline" >&5 3558echo "$as_me:$LINENO: checking for inline" >&5
3439echo $ECHO_N "checking for inline... $ECHO_C" >&6 3559echo $ECHO_N "checking for inline... $ECHO_C" >&6
3440if test "${ac_cv_c_inline+set}" = set; then 3560if test "${ac_cv_c_inline+set}" = set; then
@@ -3444,10 +3564,15 @@ else
3444for ac_kw in inline __inline__ __inline; do 3564for ac_kw in inline __inline__ __inline; do
3445 cat >conftest.$ac_ext <<_ACEOF 3565 cat >conftest.$ac_ext <<_ACEOF
3446#line $LINENO "configure" 3566#line $LINENO "configure"
3447#include "confdefs.h" 3567/* confdefs.h. */
3568_ACEOF
3569cat confdefs.h >>conftest.$ac_ext
3570cat >>conftest.$ac_ext <<_ACEOF
3571/* end confdefs.h. */
3448#ifndef __cplusplus 3572#ifndef __cplusplus
3449static $ac_kw int static_foo () {return 0; } 3573typedef int foo_t;
3450$ac_kw int foo () {return 0; } 3574static $ac_kw foo_t static_foo () {return 0; }
3575$ac_kw foo_t foo () {return 0; }
3451#endif 3576#endif
3452 3577
3453_ACEOF 3578_ACEOF
@@ -3466,7 +3591,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3466 ac_cv_c_inline=$ac_kw; break 3591 ac_cv_c_inline=$ac_kw; break
3467else 3592else
3468 echo "$as_me: failed program was:" >&5 3593 echo "$as_me: failed program was:" >&5
3469cat conftest.$ac_ext >&5 3594sed 's/^/| /' conftest.$ac_ext >&5
3595
3470fi 3596fi
3471rm -f conftest.$ac_objext conftest.$ac_ext 3597rm -f conftest.$ac_objext conftest.$ac_ext
3472done 3598done
@@ -3497,21 +3623,23 @@ case "$host" in
3497 AFS_LIBS="-lld" 3623 AFS_LIBS="-lld"
3498 CPPFLAGS="$CPPFLAGS -I/usr/local/include" 3624 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
3499 LDFLAGS="$LDFLAGS -L/usr/local/lib" 3625 LDFLAGS="$LDFLAGS -L/usr/local/lib"
3500 if (test "$LD" != "gcc" && test -z "$blibpath"); then 3626 echo "$as_me:$LINENO: checking how to specify blibpath for linker ($LD)" >&5
3501 echo "$as_me:$LINENO: checking if linkage editor ($LD) accepts -blibpath" >&5 3627echo $ECHO_N "checking how to specify blibpath for linker ($LD)... $ECHO_C" >&6
3502echo $ECHO_N "checking if linkage editor ($LD) accepts -blibpath... $ECHO_C" >&6 3628 if (test -z "$blibpath"); then
3503 saved_LDFLAGS="$LDFLAGS" 3629 blibpath="/usr/lib:/lib:/usr/local/lib"
3504 LDFLAGS="$LDFLAGS -blibpath:/usr/lib:/lib:/usr/local/lib" 3630 fi
3505 cat >conftest.$ac_ext <<_ACEOF 3631 saved_LDFLAGS="$LDFLAGS"
3632 for tryflags in -blibpath: -Wl,-blibpath: -Wl,-rpath, ;do
3633 if (test -z "$blibflags"); then
3634 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
3635 cat >conftest.$ac_ext <<_ACEOF
3506#line $LINENO "configure" 3636#line $LINENO "configure"
3507#include "confdefs.h" 3637/* confdefs.h. */
3638_ACEOF
3639cat confdefs.h >>conftest.$ac_ext
3640cat >>conftest.$ac_ext <<_ACEOF
3641/* end confdefs.h. */
3508 3642
3509#ifdef F77_DUMMY_MAIN
3510# ifdef __cplusplus
3511 extern "C"
3512# endif
3513 int F77_DUMMY_MAIN() { return 1; }
3514#endif
3515int 3643int
3516main () 3644main ()
3517{ 3645{
@@ -3532,21 +3660,26 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3532 ac_status=$? 3660 ac_status=$?
3533 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3661 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3534 (exit $ac_status); }; }; then 3662 (exit $ac_status); }; }; then
3535 3663 blibflags=$tryflags
3536 echo "$as_me:$LINENO: result: yes" >&5
3537echo "${ECHO_T}yes" >&6
3538 blibpath="/usr/lib:/lib:/usr/local/lib"
3539
3540else 3664else
3541 echo "$as_me: failed program was:" >&5 3665 echo "$as_me: failed program was:" >&5
3542cat conftest.$ac_ext >&5 3666sed 's/^/| /' conftest.$ac_ext >&5
3543 echo "$as_me:$LINENO: result: no" >&5
3544echo "${ECHO_T}no" >&6
3545 3667
3546fi 3668fi
3547rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 3669rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3548 LDFLAGS="$saved_LDFLAGS" 3670 fi
3671 done
3672 if (test -z "$blibflags"); then
3673 echo "$as_me:$LINENO: result: not found" >&5
3674echo "${ECHO_T}not found" >&6
3675 { { echo "$as_me:$LINENO: error: *** must be able to specify blibpath on AIX - check config.log" >&5
3676echo "$as_me: error: *** must be able to specify blibpath on AIX - check config.log" >&2;}
3677 { (exit 1); exit 1; }; }
3678 else
3679 echo "$as_me:$LINENO: result: $blibflags" >&5
3680echo "${ECHO_T}$blibflags" >&6
3549 fi 3681 fi
3682 LDFLAGS="$saved_LDFLAGS"
3550 echo "$as_me:$LINENO: checking for authenticate" >&5 3683 echo "$as_me:$LINENO: checking for authenticate" >&5
3551echo $ECHO_N "checking for authenticate... $ECHO_C" >&6 3684echo $ECHO_N "checking for authenticate... $ECHO_C" >&6
3552if test "${ac_cv_func_authenticate+set}" = set; then 3685if test "${ac_cv_func_authenticate+set}" = set; then
@@ -3554,37 +3687,44 @@ if test "${ac_cv_func_authenticate+set}" = set; then
3554else 3687else
3555 cat >conftest.$ac_ext <<_ACEOF 3688 cat >conftest.$ac_ext <<_ACEOF
3556#line $LINENO "configure" 3689#line $LINENO "configure"
3557#include "confdefs.h" 3690/* confdefs.h. */
3691_ACEOF
3692cat confdefs.h >>conftest.$ac_ext
3693cat >>conftest.$ac_ext <<_ACEOF
3694/* end confdefs.h. */
3558/* System header to define __stub macros and hopefully few prototypes, 3695/* System header to define __stub macros and hopefully few prototypes,
3559 which can conflict with char authenticate (); below. */ 3696 which can conflict with char authenticate (); below.
3560#include <assert.h> 3697 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3698 <limits.h> exists even on freestanding compilers. */
3699#ifdef __STDC__
3700# include <limits.h>
3701#else
3702# include <assert.h>
3703#endif
3561/* Override any gcc2 internal prototype to avoid an error. */ 3704/* Override any gcc2 internal prototype to avoid an error. */
3562#ifdef __cplusplus 3705#ifdef __cplusplus
3563extern "C" 3706extern "C"
3707{
3564#endif 3708#endif
3565/* We use char because int might match the return type of a gcc2 3709/* We use char because int might match the return type of a gcc2
3566 builtin and then its argument prototype would still apply. */ 3710 builtin and then its argument prototype would still apply. */
3567char authenticate (); 3711char authenticate ();
3568char (*f) ();
3569
3570#ifdef F77_DUMMY_MAIN
3571# ifdef __cplusplus
3572 extern "C"
3573# endif
3574 int F77_DUMMY_MAIN() { return 1; }
3575#endif
3576int
3577main ()
3578{
3579/* The GNU C library defines this for functions which it implements 3712/* The GNU C library defines this for functions which it implements
3580 to always fail with ENOSYS. Some functions are actually named 3713 to always fail with ENOSYS. Some functions are actually named
3581 something starting with __ and the normal name is an alias. */ 3714 something starting with __ and the normal name is an alias. */
3582#if defined (__stub_authenticate) || defined (__stub___authenticate) 3715#if defined (__stub_authenticate) || defined (__stub___authenticate)
3583choke me 3716choke me
3584#else 3717#else
3585f = authenticate; 3718char (*f) () = authenticate;
3719#endif
3720#ifdef __cplusplus
3721}
3586#endif 3722#endif
3587 3723
3724int
3725main ()
3726{
3727return f != authenticate;
3588 ; 3728 ;
3589 return 0; 3729 return 0;
3590} 3730}
@@ -3604,7 +3744,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3604 ac_cv_func_authenticate=yes 3744 ac_cv_func_authenticate=yes
3605else 3745else
3606 echo "$as_me: failed program was:" >&5 3746 echo "$as_me: failed program was:" >&5
3607cat conftest.$ac_ext >&5 3747sed 's/^/| /' conftest.$ac_ext >&5
3748
3608ac_cv_func_authenticate=no 3749ac_cv_func_authenticate=no
3609fi 3750fi
3610rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 3751rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -3626,7 +3767,11 @@ else
3626LIBS="-ls $LIBS" 3767LIBS="-ls $LIBS"
3627cat >conftest.$ac_ext <<_ACEOF 3768cat >conftest.$ac_ext <<_ACEOF
3628#line $LINENO "configure" 3769#line $LINENO "configure"
3629#include "confdefs.h" 3770/* confdefs.h. */
3771_ACEOF
3772cat confdefs.h >>conftest.$ac_ext
3773cat >>conftest.$ac_ext <<_ACEOF
3774/* end confdefs.h. */
3630 3775
3631/* Override any gcc2 internal prototype to avoid an error. */ 3776/* Override any gcc2 internal prototype to avoid an error. */
3632#ifdef __cplusplus 3777#ifdef __cplusplus
@@ -3635,12 +3780,6 @@ extern "C"
3635/* We use char because int might match the return type of a gcc2 3780/* We use char because int might match the return type of a gcc2
3636 builtin and then its argument prototype would still apply. */ 3781 builtin and then its argument prototype would still apply. */
3637char authenticate (); 3782char authenticate ();
3638#ifdef F77_DUMMY_MAIN
3639# ifdef __cplusplus
3640 extern "C"
3641# endif
3642 int F77_DUMMY_MAIN() { return 1; }
3643#endif
3644int 3783int
3645main () 3784main ()
3646{ 3785{
@@ -3664,7 +3803,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3664 ac_cv_lib_s_authenticate=yes 3803 ac_cv_lib_s_authenticate=yes
3665else 3804else
3666 echo "$as_me: failed program was:" >&5 3805 echo "$as_me: failed program was:" >&5
3667cat conftest.$ac_ext >&5 3806sed 's/^/| /' conftest.$ac_ext >&5
3807
3668ac_cv_lib_s_authenticate=no 3808ac_cv_lib_s_authenticate=no
3669fi 3809fi
3670rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 3810rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -3764,7 +3904,11 @@ echo "${ECHO_T}assume it is working" >&6
3764else 3904else
3765 cat >conftest.$ac_ext <<_ACEOF 3905 cat >conftest.$ac_ext <<_ACEOF
3766#line $LINENO "configure" 3906#line $LINENO "configure"
3767#include "confdefs.h" 3907/* confdefs.h. */
3908_ACEOF
3909cat confdefs.h >>conftest.$ac_ext
3910cat >>conftest.$ac_ext <<_ACEOF
3911/* end confdefs.h. */
3768#include <mach-o/dyld.h> 3912#include <mach-o/dyld.h>
3769main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) 3913main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
3770 exit(0); 3914 exit(0);
@@ -3788,7 +3932,8 @@ echo "${ECHO_T}working" >&6
3788else 3932else
3789 echo "$as_me: program exited with status $ac_status" >&5 3933 echo "$as_me: program exited with status $ac_status" >&5
3790echo "$as_me: failed program was:" >&5 3934echo "$as_me: failed program was:" >&5
3791cat conftest.$ac_ext >&5 3935sed 's/^/| /' conftest.$ac_ext >&5
3936
3792( exit $ac_status ) 3937( exit $ac_status )
3793echo "$as_me:$LINENO: result: buggy" >&5 3938echo "$as_me:$LINENO: result: buggy" >&5
3794echo "${ECHO_T}buggy" >&6 3939echo "${ECHO_T}buggy" >&6
@@ -3797,7 +3942,7 @@ echo "${ECHO_T}buggy" >&6
3797_ACEOF 3942_ACEOF
3798 3943
3799fi 3944fi
3800rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 3945rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
3801fi 3946fi
3802 ;; 3947 ;;
3803*-*-hpux10.26) 3948*-*-hpux10.26)
@@ -3845,7 +3990,11 @@ else
3845LIBS="-lxnet $LIBS" 3990LIBS="-lxnet $LIBS"
3846cat >conftest.$ac_ext <<_ACEOF 3991cat >conftest.$ac_ext <<_ACEOF
3847#line $LINENO "configure" 3992#line $LINENO "configure"
3848#include "confdefs.h" 3993/* confdefs.h. */
3994_ACEOF
3995cat confdefs.h >>conftest.$ac_ext
3996cat >>conftest.$ac_ext <<_ACEOF
3997/* end confdefs.h. */
3849 3998
3850/* Override any gcc2 internal prototype to avoid an error. */ 3999/* Override any gcc2 internal prototype to avoid an error. */
3851#ifdef __cplusplus 4000#ifdef __cplusplus
@@ -3854,12 +4003,6 @@ extern "C"
3854/* We use char because int might match the return type of a gcc2 4003/* We use char because int might match the return type of a gcc2
3855 builtin and then its argument prototype would still apply. */ 4004 builtin and then its argument prototype would still apply. */
3856char t_error (); 4005char t_error ();
3857#ifdef F77_DUMMY_MAIN
3858# ifdef __cplusplus
3859 extern "C"
3860# endif
3861 int F77_DUMMY_MAIN() { return 1; }
3862#endif
3863int 4006int
3864main () 4007main ()
3865{ 4008{
@@ -3883,7 +4026,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3883 ac_cv_lib_xnet_t_error=yes 4026 ac_cv_lib_xnet_t_error=yes
3884else 4027else
3885 echo "$as_me: failed program was:" >&5 4028 echo "$as_me: failed program was:" >&5
3886cat conftest.$ac_ext >&5 4029sed 's/^/| /' conftest.$ac_ext >&5
4030
3887ac_cv_lib_xnet_t_error=no 4031ac_cv_lib_xnet_t_error=no
3888fi 4032fi
3889rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4033rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -3947,7 +4091,11 @@ else
3947LIBS="-lxnet $LIBS" 4091LIBS="-lxnet $LIBS"
3948cat >conftest.$ac_ext <<_ACEOF 4092cat >conftest.$ac_ext <<_ACEOF
3949#line $LINENO "configure" 4093#line $LINENO "configure"
3950#include "confdefs.h" 4094/* confdefs.h. */
4095_ACEOF
4096cat confdefs.h >>conftest.$ac_ext
4097cat >>conftest.$ac_ext <<_ACEOF
4098/* end confdefs.h. */
3951 4099
3952/* Override any gcc2 internal prototype to avoid an error. */ 4100/* Override any gcc2 internal prototype to avoid an error. */
3953#ifdef __cplusplus 4101#ifdef __cplusplus
@@ -3956,12 +4104,6 @@ extern "C"
3956/* We use char because int might match the return type of a gcc2 4104/* We use char because int might match the return type of a gcc2
3957 builtin and then its argument prototype would still apply. */ 4105 builtin and then its argument prototype would still apply. */
3958char t_error (); 4106char t_error ();
3959#ifdef F77_DUMMY_MAIN
3960# ifdef __cplusplus
3961 extern "C"
3962# endif
3963 int F77_DUMMY_MAIN() { return 1; }
3964#endif
3965int 4107int
3966main () 4108main ()
3967{ 4109{
@@ -3985,7 +4127,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3985 ac_cv_lib_xnet_t_error=yes 4127 ac_cv_lib_xnet_t_error=yes
3986else 4128else
3987 echo "$as_me: failed program was:" >&5 4129 echo "$as_me: failed program was:" >&5
3988cat conftest.$ac_ext >&5 4130sed 's/^/| /' conftest.$ac_ext >&5
4131
3989ac_cv_lib_xnet_t_error=no 4132ac_cv_lib_xnet_t_error=no
3990fi 4133fi
3991rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4134rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -4049,7 +4192,11 @@ else
4049LIBS="-lxnet $LIBS" 4192LIBS="-lxnet $LIBS"
4050cat >conftest.$ac_ext <<_ACEOF 4193cat >conftest.$ac_ext <<_ACEOF
4051#line $LINENO "configure" 4194#line $LINENO "configure"
4052#include "confdefs.h" 4195/* confdefs.h. */
4196_ACEOF
4197cat confdefs.h >>conftest.$ac_ext
4198cat >>conftest.$ac_ext <<_ACEOF
4199/* end confdefs.h. */
4053 4200
4054/* Override any gcc2 internal prototype to avoid an error. */ 4201/* Override any gcc2 internal prototype to avoid an error. */
4055#ifdef __cplusplus 4202#ifdef __cplusplus
@@ -4058,12 +4205,6 @@ extern "C"
4058/* We use char because int might match the return type of a gcc2 4205/* We use char because int might match the return type of a gcc2
4059 builtin and then its argument prototype would still apply. */ 4206 builtin and then its argument prototype would still apply. */
4060char t_error (); 4207char t_error ();
4061#ifdef F77_DUMMY_MAIN
4062# ifdef __cplusplus
4063 extern "C"
4064# endif
4065 int F77_DUMMY_MAIN() { return 1; }
4066#endif
4067int 4208int
4068main () 4209main ()
4069{ 4210{
@@ -4087,7 +4228,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4087 ac_cv_lib_xnet_t_error=yes 4228 ac_cv_lib_xnet_t_error=yes
4088else 4229else
4089 echo "$as_me: failed program was:" >&5 4230 echo "$as_me: failed program was:" >&5
4090cat conftest.$ac_ext >&5 4231sed 's/^/| /' conftest.$ac_ext >&5
4232
4091ac_cv_lib_xnet_t_error=no 4233ac_cv_lib_xnet_t_error=no
4092fi 4234fi
4093rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4235rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -4145,37 +4287,44 @@ if test "${ac_cv_func_jlimit_startjob+set}" = set; then
4145else 4287else
4146 cat >conftest.$ac_ext <<_ACEOF 4288 cat >conftest.$ac_ext <<_ACEOF
4147#line $LINENO "configure" 4289#line $LINENO "configure"
4148#include "confdefs.h" 4290/* confdefs.h. */
4291_ACEOF
4292cat confdefs.h >>conftest.$ac_ext
4293cat >>conftest.$ac_ext <<_ACEOF
4294/* end confdefs.h. */
4149/* System header to define __stub macros and hopefully few prototypes, 4295/* System header to define __stub macros and hopefully few prototypes,
4150 which can conflict with char jlimit_startjob (); below. */ 4296 which can conflict with char jlimit_startjob (); below.
4151#include <assert.h> 4297 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4298 <limits.h> exists even on freestanding compilers. */
4299#ifdef __STDC__
4300# include <limits.h>
4301#else
4302# include <assert.h>
4303#endif
4152/* Override any gcc2 internal prototype to avoid an error. */ 4304/* Override any gcc2 internal prototype to avoid an error. */
4153#ifdef __cplusplus 4305#ifdef __cplusplus
4154extern "C" 4306extern "C"
4307{
4155#endif 4308#endif
4156/* We use char because int might match the return type of a gcc2 4309/* We use char because int might match the return type of a gcc2
4157 builtin and then its argument prototype would still apply. */ 4310 builtin and then its argument prototype would still apply. */
4158char jlimit_startjob (); 4311char jlimit_startjob ();
4159char (*f) ();
4160
4161#ifdef F77_DUMMY_MAIN
4162# ifdef __cplusplus
4163 extern "C"
4164# endif
4165 int F77_DUMMY_MAIN() { return 1; }
4166#endif
4167int
4168main ()
4169{
4170/* The GNU C library defines this for functions which it implements 4312/* The GNU C library defines this for functions which it implements
4171 to always fail with ENOSYS. Some functions are actually named 4313 to always fail with ENOSYS. Some functions are actually named
4172 something starting with __ and the normal name is an alias. */ 4314 something starting with __ and the normal name is an alias. */
4173#if defined (__stub_jlimit_startjob) || defined (__stub___jlimit_startjob) 4315#if defined (__stub_jlimit_startjob) || defined (__stub___jlimit_startjob)
4174choke me 4316choke me
4175#else 4317#else
4176f = jlimit_startjob; 4318char (*f) () = jlimit_startjob;
4319#endif
4320#ifdef __cplusplus
4321}
4177#endif 4322#endif
4178 4323
4324int
4325main ()
4326{
4327return f != jlimit_startjob;
4179 ; 4328 ;
4180 return 0; 4329 return 0;
4181} 4330}
@@ -4195,7 +4344,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4195 ac_cv_func_jlimit_startjob=yes 4344 ac_cv_func_jlimit_startjob=yes
4196else 4345else
4197 echo "$as_me: failed program was:" >&5 4346 echo "$as_me: failed program was:" >&5
4198cat conftest.$ac_ext >&5 4347sed 's/^/| /' conftest.$ac_ext >&5
4348
4199ac_cv_func_jlimit_startjob=no 4349ac_cv_func_jlimit_startjob=no
4200fi 4350fi
4201rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4351rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -4335,37 +4485,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
4335else 4485else
4336 cat >conftest.$ac_ext <<_ACEOF 4486 cat >conftest.$ac_ext <<_ACEOF
4337#line $LINENO "configure" 4487#line $LINENO "configure"
4338#include "confdefs.h" 4488/* confdefs.h. */
4489_ACEOF
4490cat confdefs.h >>conftest.$ac_ext
4491cat >>conftest.$ac_ext <<_ACEOF
4492/* end confdefs.h. */
4339/* System header to define __stub macros and hopefully few prototypes, 4493/* System header to define __stub macros and hopefully few prototypes,
4340 which can conflict with char $ac_func (); below. */ 4494 which can conflict with char $ac_func (); below.
4341#include <assert.h> 4495 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4496 <limits.h> exists even on freestanding compilers. */
4497#ifdef __STDC__
4498# include <limits.h>
4499#else
4500# include <assert.h>
4501#endif
4342/* Override any gcc2 internal prototype to avoid an error. */ 4502/* Override any gcc2 internal prototype to avoid an error. */
4343#ifdef __cplusplus 4503#ifdef __cplusplus
4344extern "C" 4504extern "C"
4505{
4345#endif 4506#endif
4346/* We use char because int might match the return type of a gcc2 4507/* We use char because int might match the return type of a gcc2
4347 builtin and then its argument prototype would still apply. */ 4508 builtin and then its argument prototype would still apply. */
4348char $ac_func (); 4509char $ac_func ();
4349char (*f) ();
4350
4351#ifdef F77_DUMMY_MAIN
4352# ifdef __cplusplus
4353 extern "C"
4354# endif
4355 int F77_DUMMY_MAIN() { return 1; }
4356#endif
4357int
4358main ()
4359{
4360/* The GNU C library defines this for functions which it implements 4510/* The GNU C library defines this for functions which it implements
4361 to always fail with ENOSYS. Some functions are actually named 4511 to always fail with ENOSYS. Some functions are actually named
4362 something starting with __ and the normal name is an alias. */ 4512 something starting with __ and the normal name is an alias. */
4363#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 4513#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4364choke me 4514choke me
4365#else 4515#else
4366f = $ac_func; 4516char (*f) () = $ac_func;
4517#endif
4518#ifdef __cplusplus
4519}
4367#endif 4520#endif
4368 4521
4522int
4523main ()
4524{
4525return f != $ac_func;
4369 ; 4526 ;
4370 return 0; 4527 return 0;
4371} 4528}
@@ -4385,7 +4542,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4385 eval "$as_ac_var=yes" 4542 eval "$as_ac_var=yes"
4386else 4543else
4387 echo "$as_me: failed program was:" >&5 4544 echo "$as_me: failed program was:" >&5
4388cat conftest.$ac_ext >&5 4545sed 's/^/| /' conftest.$ac_ext >&5
4546
4389eval "$as_ac_var=no" 4547eval "$as_ac_var=no"
4390fi 4548fi
4391rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4549rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -4496,37 +4654,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
4496else 4654else
4497 cat >conftest.$ac_ext <<_ACEOF 4655 cat >conftest.$ac_ext <<_ACEOF
4498#line $LINENO "configure" 4656#line $LINENO "configure"
4499#include "confdefs.h" 4657/* confdefs.h. */
4658_ACEOF
4659cat confdefs.h >>conftest.$ac_ext
4660cat >>conftest.$ac_ext <<_ACEOF
4661/* end confdefs.h. */
4500/* System header to define __stub macros and hopefully few prototypes, 4662/* System header to define __stub macros and hopefully few prototypes,
4501 which can conflict with char $ac_func (); below. */ 4663 which can conflict with char $ac_func (); below.
4502#include <assert.h> 4664 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4665 <limits.h> exists even on freestanding compilers. */
4666#ifdef __STDC__
4667# include <limits.h>
4668#else
4669# include <assert.h>
4670#endif
4503/* Override any gcc2 internal prototype to avoid an error. */ 4671/* Override any gcc2 internal prototype to avoid an error. */
4504#ifdef __cplusplus 4672#ifdef __cplusplus
4505extern "C" 4673extern "C"
4674{
4506#endif 4675#endif
4507/* We use char because int might match the return type of a gcc2 4676/* We use char because int might match the return type of a gcc2
4508 builtin and then its argument prototype would still apply. */ 4677 builtin and then its argument prototype would still apply. */
4509char $ac_func (); 4678char $ac_func ();
4510char (*f) ();
4511
4512#ifdef F77_DUMMY_MAIN
4513# ifdef __cplusplus
4514 extern "C"
4515# endif
4516 int F77_DUMMY_MAIN() { return 1; }
4517#endif
4518int
4519main ()
4520{
4521/* The GNU C library defines this for functions which it implements 4679/* The GNU C library defines this for functions which it implements
4522 to always fail with ENOSYS. Some functions are actually named 4680 to always fail with ENOSYS. Some functions are actually named
4523 something starting with __ and the normal name is an alias. */ 4681 something starting with __ and the normal name is an alias. */
4524#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 4682#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4525choke me 4683choke me
4526#else 4684#else
4527f = $ac_func; 4685char (*f) () = $ac_func;
4686#endif
4687#ifdef __cplusplus
4688}
4528#endif 4689#endif
4529 4690
4691int
4692main ()
4693{
4694return f != $ac_func;
4530 ; 4695 ;
4531 return 0; 4696 return 0;
4532} 4697}
@@ -4546,7 +4711,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4546 eval "$as_ac_var=yes" 4711 eval "$as_ac_var=yes"
4547else 4712else
4548 echo "$as_me: failed program was:" >&5 4713 echo "$as_me: failed program was:" >&5
4549cat conftest.$ac_ext >&5 4714sed 's/^/| /' conftest.$ac_ext >&5
4715
4550eval "$as_ac_var=no" 4716eval "$as_ac_var=no"
4551fi 4717fi
4552rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4718rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -4600,37 +4766,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
4600else 4766else
4601 cat >conftest.$ac_ext <<_ACEOF 4767 cat >conftest.$ac_ext <<_ACEOF
4602#line $LINENO "configure" 4768#line $LINENO "configure"
4603#include "confdefs.h" 4769/* confdefs.h. */
4770_ACEOF
4771cat confdefs.h >>conftest.$ac_ext
4772cat >>conftest.$ac_ext <<_ACEOF
4773/* end confdefs.h. */
4604/* System header to define __stub macros and hopefully few prototypes, 4774/* System header to define __stub macros and hopefully few prototypes,
4605 which can conflict with char $ac_func (); below. */ 4775 which can conflict with char $ac_func (); below.
4606#include <assert.h> 4776 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4777 <limits.h> exists even on freestanding compilers. */
4778#ifdef __STDC__
4779# include <limits.h>
4780#else
4781# include <assert.h>
4782#endif
4607/* Override any gcc2 internal prototype to avoid an error. */ 4783/* Override any gcc2 internal prototype to avoid an error. */
4608#ifdef __cplusplus 4784#ifdef __cplusplus
4609extern "C" 4785extern "C"
4786{
4610#endif 4787#endif
4611/* We use char because int might match the return type of a gcc2 4788/* We use char because int might match the return type of a gcc2
4612 builtin and then its argument prototype would still apply. */ 4789 builtin and then its argument prototype would still apply. */
4613char $ac_func (); 4790char $ac_func ();
4614char (*f) ();
4615
4616#ifdef F77_DUMMY_MAIN
4617# ifdef __cplusplus
4618 extern "C"
4619# endif
4620 int F77_DUMMY_MAIN() { return 1; }
4621#endif
4622int
4623main ()
4624{
4625/* The GNU C library defines this for functions which it implements 4791/* The GNU C library defines this for functions which it implements
4626 to always fail with ENOSYS. Some functions are actually named 4792 to always fail with ENOSYS. Some functions are actually named
4627 something starting with __ and the normal name is an alias. */ 4793 something starting with __ and the normal name is an alias. */
4628#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 4794#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4629choke me 4795choke me
4630#else 4796#else
4631f = $ac_func; 4797char (*f) () = $ac_func;
4798#endif
4799#ifdef __cplusplus
4800}
4632#endif 4801#endif
4633 4802
4803int
4804main ()
4805{
4806return f != $ac_func;
4634 ; 4807 ;
4635 return 0; 4808 return 0;
4636} 4809}
@@ -4650,7 +4823,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4650 eval "$as_ac_var=yes" 4823 eval "$as_ac_var=yes"
4651else 4824else
4652 echo "$as_me: failed program was:" >&5 4825 echo "$as_me: failed program was:" >&5
4653cat conftest.$ac_ext >&5 4826sed 's/^/| /' conftest.$ac_ext >&5
4827
4654eval "$as_ac_var=no" 4828eval "$as_ac_var=no"
4655fi 4829fi
4656rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4830rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -4813,6 +4987,21 @@ fi;
4813 4987
4814# Checks for header files. 4988# Checks for header files.
4815 4989
4990echo "$as_me:$LINENO: checking for egrep" >&5
4991echo $ECHO_N "checking for egrep... $ECHO_C" >&6
4992if test "${ac_cv_prog_egrep+set}" = set; then
4993 echo $ECHO_N "(cached) $ECHO_C" >&6
4994else
4995 if echo a | (grep -E '(a|b)') >/dev/null 2>&1
4996 then ac_cv_prog_egrep='grep -E'
4997 else ac_cv_prog_egrep='egrep'
4998 fi
4999fi
5000echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
5001echo "${ECHO_T}$ac_cv_prog_egrep" >&6
5002 EGREP=$ac_cv_prog_egrep
5003
5004
4816echo "$as_me:$LINENO: checking for ANSI C header files" >&5 5005echo "$as_me:$LINENO: checking for ANSI C header files" >&5
4817echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 5006echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
4818if test "${ac_cv_header_stdc+set}" = set; then 5007if test "${ac_cv_header_stdc+set}" = set; then
@@ -4820,48 +5009,59 @@ if test "${ac_cv_header_stdc+set}" = set; then
4820else 5009else
4821 cat >conftest.$ac_ext <<_ACEOF 5010 cat >conftest.$ac_ext <<_ACEOF
4822#line $LINENO "configure" 5011#line $LINENO "configure"
4823#include "confdefs.h" 5012/* confdefs.h. */
5013_ACEOF
5014cat confdefs.h >>conftest.$ac_ext
5015cat >>conftest.$ac_ext <<_ACEOF
5016/* end confdefs.h. */
4824#include <stdlib.h> 5017#include <stdlib.h>
4825#include <stdarg.h> 5018#include <stdarg.h>
4826#include <string.h> 5019#include <string.h>
4827#include <float.h> 5020#include <float.h>
4828 5021
5022int
5023main ()
5024{
5025
5026 ;
5027 return 0;
5028}
4829_ACEOF 5029_ACEOF
4830if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5030rm -f conftest.$ac_objext
4831 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5031if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5032 (eval $ac_compile) 2>&5
4832 ac_status=$? 5033 ac_status=$?
4833 egrep -v '^ *\+' conftest.er1 >conftest.err
4834 rm -f conftest.er1
4835 cat conftest.err >&5
4836 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5034 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4837 (exit $ac_status); } >/dev/null; then 5035 (exit $ac_status); } &&
4838 if test -s conftest.err; then 5036 { ac_try='test -s conftest.$ac_objext'
4839 ac_cpp_err=$ac_c_preproc_warn_flag 5037 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4840 else 5038 (eval $ac_try) 2>&5
4841 ac_cpp_err= 5039 ac_status=$?
4842 fi 5040 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4843else 5041 (exit $ac_status); }; }; then
4844 ac_cpp_err=yes
4845fi
4846if test -z "$ac_cpp_err"; then
4847 ac_cv_header_stdc=yes 5042 ac_cv_header_stdc=yes
4848else 5043else
4849 echo "$as_me: failed program was:" >&5 5044 echo "$as_me: failed program was:" >&5
4850 cat conftest.$ac_ext >&5 5045sed 's/^/| /' conftest.$ac_ext >&5
4851 ac_cv_header_stdc=no 5046
5047ac_cv_header_stdc=no
4852fi 5048fi
4853rm -f conftest.err conftest.$ac_ext 5049rm -f conftest.$ac_objext conftest.$ac_ext
4854 5050
4855if test $ac_cv_header_stdc = yes; then 5051if test $ac_cv_header_stdc = yes; then
4856 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 5052 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
4857 cat >conftest.$ac_ext <<_ACEOF 5053 cat >conftest.$ac_ext <<_ACEOF
4858#line $LINENO "configure" 5054#line $LINENO "configure"
4859#include "confdefs.h" 5055/* confdefs.h. */
5056_ACEOF
5057cat confdefs.h >>conftest.$ac_ext
5058cat >>conftest.$ac_ext <<_ACEOF
5059/* end confdefs.h. */
4860#include <string.h> 5060#include <string.h>
4861 5061
4862_ACEOF 5062_ACEOF
4863if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 5063if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
4864 egrep "memchr" >/dev/null 2>&1; then 5064 $EGREP "memchr" >/dev/null 2>&1; then
4865 : 5065 :
4866else 5066else
4867 ac_cv_header_stdc=no 5067 ac_cv_header_stdc=no
@@ -4874,12 +5074,16 @@ if test $ac_cv_header_stdc = yes; then
4874 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 5074 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
4875 cat >conftest.$ac_ext <<_ACEOF 5075 cat >conftest.$ac_ext <<_ACEOF
4876#line $LINENO "configure" 5076#line $LINENO "configure"
4877#include "confdefs.h" 5077/* confdefs.h. */
5078_ACEOF
5079cat confdefs.h >>conftest.$ac_ext
5080cat >>conftest.$ac_ext <<_ACEOF
5081/* end confdefs.h. */
4878#include <stdlib.h> 5082#include <stdlib.h>
4879 5083
4880_ACEOF 5084_ACEOF
4881if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 5085if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
4882 egrep "free" >/dev/null 2>&1; then 5086 $EGREP "free" >/dev/null 2>&1; then
4883 : 5087 :
4884else 5088else
4885 ac_cv_header_stdc=no 5089 ac_cv_header_stdc=no
@@ -4895,13 +5099,18 @@ if test $ac_cv_header_stdc = yes; then
4895else 5099else
4896 cat >conftest.$ac_ext <<_ACEOF 5100 cat >conftest.$ac_ext <<_ACEOF
4897#line $LINENO "configure" 5101#line $LINENO "configure"
4898#include "confdefs.h" 5102/* confdefs.h. */
5103_ACEOF
5104cat confdefs.h >>conftest.$ac_ext
5105cat >>conftest.$ac_ext <<_ACEOF
5106/* end confdefs.h. */
4899#include <ctype.h> 5107#include <ctype.h>
4900#if ((' ' & 0x0FF) == 0x020) 5108#if ((' ' & 0x0FF) == 0x020)
4901# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') 5109# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
4902# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) 5110# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
4903#else 5111#else
4904# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \ 5112# define ISLOWER(c) \
5113 (('a' <= (c) && (c) <= 'i') \
4905 || ('j' <= (c) && (c) <= 'r') \ 5114 || ('j' <= (c) && (c) <= 'r') \
4906 || ('s' <= (c) && (c) <= 'z')) 5115 || ('s' <= (c) && (c) <= 'z'))
4907# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) 5116# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
@@ -4934,11 +5143,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4934else 5143else
4935 echo "$as_me: program exited with status $ac_status" >&5 5144 echo "$as_me: program exited with status $ac_status" >&5
4936echo "$as_me: failed program was:" >&5 5145echo "$as_me: failed program was:" >&5
4937cat conftest.$ac_ext >&5 5146sed 's/^/| /' conftest.$ac_ext >&5
5147
4938( exit $ac_status ) 5148( exit $ac_status )
4939ac_cv_header_stdc=no 5149ac_cv_header_stdc=no
4940fi 5150fi
4941rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 5151rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
4942fi 5152fi
4943fi 5153fi
4944fi 5154fi
@@ -4973,7 +5183,11 @@ if eval "test \"\${$as_ac_Header+set}\" = set"; then
4973else 5183else
4974 cat >conftest.$ac_ext <<_ACEOF 5184 cat >conftest.$ac_ext <<_ACEOF
4975#line $LINENO "configure" 5185#line $LINENO "configure"
4976#include "confdefs.h" 5186/* confdefs.h. */
5187_ACEOF
5188cat confdefs.h >>conftest.$ac_ext
5189cat >>conftest.$ac_ext <<_ACEOF
5190/* end confdefs.h. */
4977$ac_includes_default 5191$ac_includes_default
4978 5192
4979#include <$ac_header> 5193#include <$ac_header>
@@ -4993,7 +5207,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4993 eval "$as_ac_Header=yes" 5207 eval "$as_ac_Header=yes"
4994else 5208else
4995 echo "$as_me: failed program was:" >&5 5209 echo "$as_me: failed program was:" >&5
4996cat conftest.$ac_ext >&5 5210sed 's/^/| /' conftest.$ac_ext >&5
5211
4997eval "$as_ac_Header=no" 5212eval "$as_ac_Header=no"
4998fi 5213fi
4999rm -f conftest.$ac_objext conftest.$ac_ext 5214rm -f conftest.$ac_objext conftest.$ac_ext
@@ -5081,7 +5296,11 @@ echo "$as_me:$LINENO: checking $ac_header usability" >&5
5081echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 5296echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
5082cat >conftest.$ac_ext <<_ACEOF 5297cat >conftest.$ac_ext <<_ACEOF
5083#line $LINENO "configure" 5298#line $LINENO "configure"
5084#include "confdefs.h" 5299/* confdefs.h. */
5300_ACEOF
5301cat confdefs.h >>conftest.$ac_ext
5302cat >>conftest.$ac_ext <<_ACEOF
5303/* end confdefs.h. */
5085$ac_includes_default 5304$ac_includes_default
5086#include <$ac_header> 5305#include <$ac_header>
5087_ACEOF 5306_ACEOF
@@ -5100,7 +5319,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5100 ac_header_compiler=yes 5319 ac_header_compiler=yes
5101else 5320else
5102 echo "$as_me: failed program was:" >&5 5321 echo "$as_me: failed program was:" >&5
5103cat conftest.$ac_ext >&5 5322sed 's/^/| /' conftest.$ac_ext >&5
5323
5104ac_header_compiler=no 5324ac_header_compiler=no
5105fi 5325fi
5106rm -f conftest.$ac_objext conftest.$ac_ext 5326rm -f conftest.$ac_objext conftest.$ac_ext
@@ -5112,13 +5332,17 @@ echo "$as_me:$LINENO: checking $ac_header presence" >&5
5112echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 5332echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
5113cat >conftest.$ac_ext <<_ACEOF 5333cat >conftest.$ac_ext <<_ACEOF
5114#line $LINENO "configure" 5334#line $LINENO "configure"
5115#include "confdefs.h" 5335/* confdefs.h. */
5336_ACEOF
5337cat confdefs.h >>conftest.$ac_ext
5338cat >>conftest.$ac_ext <<_ACEOF
5339/* end confdefs.h. */
5116#include <$ac_header> 5340#include <$ac_header>
5117_ACEOF 5341_ACEOF
5118if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5342if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5119 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5343 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5120 ac_status=$? 5344 ac_status=$?
5121 egrep -v '^ *\+' conftest.er1 >conftest.err 5345 grep -v '^ *+' conftest.er1 >conftest.err
5122 rm -f conftest.er1 5346 rm -f conftest.er1
5123 cat conftest.err >&5 5347 cat conftest.err >&5
5124 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5348 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -5135,7 +5359,8 @@ if test -z "$ac_cpp_err"; then
5135 ac_header_preproc=yes 5359 ac_header_preproc=yes
5136else 5360else
5137 echo "$as_me: failed program was:" >&5 5361 echo "$as_me: failed program was:" >&5
5138 cat conftest.$ac_ext >&5 5362sed 's/^/| /' conftest.$ac_ext >&5
5363
5139 ac_header_preproc=no 5364 ac_header_preproc=no
5140fi 5365fi
5141rm -f conftest.err conftest.$ac_ext 5366rm -f conftest.err conftest.$ac_ext
@@ -5148,14 +5373,32 @@ case $ac_header_compiler:$ac_header_preproc in
5148 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 5373 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
5149echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 5374echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
5150 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 5375 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5151echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 5376echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5377 (
5378 cat <<\_ASBOX
5379## ------------------------------------ ##
5380## Report this to bug-autoconf@gnu.org. ##
5381## ------------------------------------ ##
5382_ASBOX
5383 ) |
5384 sed "s/^/$as_me: WARNING: /" >&2
5385 ;;
5152 no:yes ) 5386 no:yes )
5153 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 5387 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
5154echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 5388echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
5155 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 5389 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5156echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 5390echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5157 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 5391 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5158echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 5392echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5393 (
5394 cat <<\_ASBOX
5395## ------------------------------------ ##
5396## Report this to bug-autoconf@gnu.org. ##
5397## ------------------------------------ ##
5398_ASBOX
5399 ) |
5400 sed "s/^/$as_me: WARNING: /" >&2
5401 ;;
5159esac 5402esac
5160echo "$as_me:$LINENO: checking for $ac_header" >&5 5403echo "$as_me:$LINENO: checking for $ac_header" >&5
5161echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 5404echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
@@ -5186,37 +5429,44 @@ if test "${ac_cv_func_yp_match+set}" = set; then
5186else 5429else
5187 cat >conftest.$ac_ext <<_ACEOF 5430 cat >conftest.$ac_ext <<_ACEOF
5188#line $LINENO "configure" 5431#line $LINENO "configure"
5189#include "confdefs.h" 5432/* confdefs.h. */
5433_ACEOF
5434cat confdefs.h >>conftest.$ac_ext
5435cat >>conftest.$ac_ext <<_ACEOF
5436/* end confdefs.h. */
5190/* System header to define __stub macros and hopefully few prototypes, 5437/* System header to define __stub macros and hopefully few prototypes,
5191 which can conflict with char yp_match (); below. */ 5438 which can conflict with char yp_match (); below.
5192#include <assert.h> 5439 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5440 <limits.h> exists even on freestanding compilers. */
5441#ifdef __STDC__
5442# include <limits.h>
5443#else
5444# include <assert.h>
5445#endif
5193/* Override any gcc2 internal prototype to avoid an error. */ 5446/* Override any gcc2 internal prototype to avoid an error. */
5194#ifdef __cplusplus 5447#ifdef __cplusplus
5195extern "C" 5448extern "C"
5449{
5196#endif 5450#endif
5197/* We use char because int might match the return type of a gcc2 5451/* We use char because int might match the return type of a gcc2
5198 builtin and then its argument prototype would still apply. */ 5452 builtin and then its argument prototype would still apply. */
5199char yp_match (); 5453char yp_match ();
5200char (*f) ();
5201
5202#ifdef F77_DUMMY_MAIN
5203# ifdef __cplusplus
5204 extern "C"
5205# endif
5206 int F77_DUMMY_MAIN() { return 1; }
5207#endif
5208int
5209main ()
5210{
5211/* The GNU C library defines this for functions which it implements 5454/* The GNU C library defines this for functions which it implements
5212 to always fail with ENOSYS. Some functions are actually named 5455 to always fail with ENOSYS. Some functions are actually named
5213 something starting with __ and the normal name is an alias. */ 5456 something starting with __ and the normal name is an alias. */
5214#if defined (__stub_yp_match) || defined (__stub___yp_match) 5457#if defined (__stub_yp_match) || defined (__stub___yp_match)
5215choke me 5458choke me
5216#else 5459#else
5217f = yp_match; 5460char (*f) () = yp_match;
5461#endif
5462#ifdef __cplusplus
5463}
5218#endif 5464#endif
5219 5465
5466int
5467main ()
5468{
5469return f != yp_match;
5220 ; 5470 ;
5221 return 0; 5471 return 0;
5222} 5472}
@@ -5236,7 +5486,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5236 ac_cv_func_yp_match=yes 5486 ac_cv_func_yp_match=yes
5237else 5487else
5238 echo "$as_me: failed program was:" >&5 5488 echo "$as_me: failed program was:" >&5
5239cat conftest.$ac_ext >&5 5489sed 's/^/| /' conftest.$ac_ext >&5
5490
5240ac_cv_func_yp_match=no 5491ac_cv_func_yp_match=no
5241fi 5492fi
5242rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5493rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5256,7 +5507,11 @@ else
5256LIBS="-lnsl $LIBS" 5507LIBS="-lnsl $LIBS"
5257cat >conftest.$ac_ext <<_ACEOF 5508cat >conftest.$ac_ext <<_ACEOF
5258#line $LINENO "configure" 5509#line $LINENO "configure"
5259#include "confdefs.h" 5510/* confdefs.h. */
5511_ACEOF
5512cat confdefs.h >>conftest.$ac_ext
5513cat >>conftest.$ac_ext <<_ACEOF
5514/* end confdefs.h. */
5260 5515
5261/* Override any gcc2 internal prototype to avoid an error. */ 5516/* Override any gcc2 internal prototype to avoid an error. */
5262#ifdef __cplusplus 5517#ifdef __cplusplus
@@ -5265,12 +5520,6 @@ extern "C"
5265/* We use char because int might match the return type of a gcc2 5520/* We use char because int might match the return type of a gcc2
5266 builtin and then its argument prototype would still apply. */ 5521 builtin and then its argument prototype would still apply. */
5267char yp_match (); 5522char yp_match ();
5268#ifdef F77_DUMMY_MAIN
5269# ifdef __cplusplus
5270 extern "C"
5271# endif
5272 int F77_DUMMY_MAIN() { return 1; }
5273#endif
5274int 5523int
5275main () 5524main ()
5276{ 5525{
@@ -5294,7 +5543,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5294 ac_cv_lib_nsl_yp_match=yes 5543 ac_cv_lib_nsl_yp_match=yes
5295else 5544else
5296 echo "$as_me: failed program was:" >&5 5545 echo "$as_me: failed program was:" >&5
5297cat conftest.$ac_ext >&5 5546sed 's/^/| /' conftest.$ac_ext >&5
5547
5298ac_cv_lib_nsl_yp_match=no 5548ac_cv_lib_nsl_yp_match=no
5299fi 5549fi
5300rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5550rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5320,37 +5570,44 @@ if test "${ac_cv_func_setsockopt+set}" = set; then
5320else 5570else
5321 cat >conftest.$ac_ext <<_ACEOF 5571 cat >conftest.$ac_ext <<_ACEOF
5322#line $LINENO "configure" 5572#line $LINENO "configure"
5323#include "confdefs.h" 5573/* confdefs.h. */
5574_ACEOF
5575cat confdefs.h >>conftest.$ac_ext
5576cat >>conftest.$ac_ext <<_ACEOF
5577/* end confdefs.h. */
5324/* System header to define __stub macros and hopefully few prototypes, 5578/* System header to define __stub macros and hopefully few prototypes,
5325 which can conflict with char setsockopt (); below. */ 5579 which can conflict with char setsockopt (); below.
5326#include <assert.h> 5580 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5581 <limits.h> exists even on freestanding compilers. */
5582#ifdef __STDC__
5583# include <limits.h>
5584#else
5585# include <assert.h>
5586#endif
5327/* Override any gcc2 internal prototype to avoid an error. */ 5587/* Override any gcc2 internal prototype to avoid an error. */
5328#ifdef __cplusplus 5588#ifdef __cplusplus
5329extern "C" 5589extern "C"
5590{
5330#endif 5591#endif
5331/* We use char because int might match the return type of a gcc2 5592/* We use char because int might match the return type of a gcc2
5332 builtin and then its argument prototype would still apply. */ 5593 builtin and then its argument prototype would still apply. */
5333char setsockopt (); 5594char setsockopt ();
5334char (*f) ();
5335
5336#ifdef F77_DUMMY_MAIN
5337# ifdef __cplusplus
5338 extern "C"
5339# endif
5340 int F77_DUMMY_MAIN() { return 1; }
5341#endif
5342int
5343main ()
5344{
5345/* The GNU C library defines this for functions which it implements 5595/* The GNU C library defines this for functions which it implements
5346 to always fail with ENOSYS. Some functions are actually named 5596 to always fail with ENOSYS. Some functions are actually named
5347 something starting with __ and the normal name is an alias. */ 5597 something starting with __ and the normal name is an alias. */
5348#if defined (__stub_setsockopt) || defined (__stub___setsockopt) 5598#if defined (__stub_setsockopt) || defined (__stub___setsockopt)
5349choke me 5599choke me
5350#else 5600#else
5351f = setsockopt; 5601char (*f) () = setsockopt;
5602#endif
5603#ifdef __cplusplus
5604}
5352#endif 5605#endif
5353 5606
5607int
5608main ()
5609{
5610return f != setsockopt;
5354 ; 5611 ;
5355 return 0; 5612 return 0;
5356} 5613}
@@ -5370,7 +5627,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5370 ac_cv_func_setsockopt=yes 5627 ac_cv_func_setsockopt=yes
5371else 5628else
5372 echo "$as_me: failed program was:" >&5 5629 echo "$as_me: failed program was:" >&5
5373cat conftest.$ac_ext >&5 5630sed 's/^/| /' conftest.$ac_ext >&5
5631
5374ac_cv_func_setsockopt=no 5632ac_cv_func_setsockopt=no
5375fi 5633fi
5376rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5634rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5390,7 +5648,11 @@ else
5390LIBS="-lsocket $LIBS" 5648LIBS="-lsocket $LIBS"
5391cat >conftest.$ac_ext <<_ACEOF 5649cat >conftest.$ac_ext <<_ACEOF
5392#line $LINENO "configure" 5650#line $LINENO "configure"
5393#include "confdefs.h" 5651/* confdefs.h. */
5652_ACEOF
5653cat confdefs.h >>conftest.$ac_ext
5654cat >>conftest.$ac_ext <<_ACEOF
5655/* end confdefs.h. */
5394 5656
5395/* Override any gcc2 internal prototype to avoid an error. */ 5657/* Override any gcc2 internal prototype to avoid an error. */
5396#ifdef __cplusplus 5658#ifdef __cplusplus
@@ -5399,12 +5661,6 @@ extern "C"
5399/* We use char because int might match the return type of a gcc2 5661/* We use char because int might match the return type of a gcc2
5400 builtin and then its argument prototype would still apply. */ 5662 builtin and then its argument prototype would still apply. */
5401char setsockopt (); 5663char setsockopt ();
5402#ifdef F77_DUMMY_MAIN
5403# ifdef __cplusplus
5404 extern "C"
5405# endif
5406 int F77_DUMMY_MAIN() { return 1; }
5407#endif
5408int 5664int
5409main () 5665main ()
5410{ 5666{
@@ -5428,7 +5684,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5428 ac_cv_lib_socket_setsockopt=yes 5684 ac_cv_lib_socket_setsockopt=yes
5429else 5685else
5430 echo "$as_me: failed program was:" >&5 5686 echo "$as_me: failed program was:" >&5
5431cat conftest.$ac_ext >&5 5687sed 's/^/| /' conftest.$ac_ext >&5
5688
5432ac_cv_lib_socket_setsockopt=no 5689ac_cv_lib_socket_setsockopt=no
5433fi 5690fi
5434rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5691rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5459,7 +5716,11 @@ else
5459LIBS="-lrpc -lyp -lrpc $LIBS" 5716LIBS="-lrpc -lyp -lrpc $LIBS"
5460cat >conftest.$ac_ext <<_ACEOF 5717cat >conftest.$ac_ext <<_ACEOF
5461#line $LINENO "configure" 5718#line $LINENO "configure"
5462#include "confdefs.h" 5719/* confdefs.h. */
5720_ACEOF
5721cat confdefs.h >>conftest.$ac_ext
5722cat >>conftest.$ac_ext <<_ACEOF
5723/* end confdefs.h. */
5463 5724
5464/* Override any gcc2 internal prototype to avoid an error. */ 5725/* Override any gcc2 internal prototype to avoid an error. */
5465#ifdef __cplusplus 5726#ifdef __cplusplus
@@ -5468,12 +5729,6 @@ extern "C"
5468/* We use char because int might match the return type of a gcc2 5729/* We use char because int might match the return type of a gcc2
5469 builtin and then its argument prototype would still apply. */ 5730 builtin and then its argument prototype would still apply. */
5470char innetgr (); 5731char innetgr ();
5471#ifdef F77_DUMMY_MAIN
5472# ifdef __cplusplus
5473 extern "C"
5474# endif
5475 int F77_DUMMY_MAIN() { return 1; }
5476#endif
5477int 5732int
5478main () 5733main ()
5479{ 5734{
@@ -5497,7 +5752,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5497 ac_cv_lib_rpc_innetgr=yes 5752 ac_cv_lib_rpc_innetgr=yes
5498else 5753else
5499 echo "$as_me: failed program was:" >&5 5754 echo "$as_me: failed program was:" >&5
5500cat conftest.$ac_ext >&5 5755sed 's/^/| /' conftest.$ac_ext >&5
5756
5501ac_cv_lib_rpc_innetgr=no 5757ac_cv_lib_rpc_innetgr=no
5502fi 5758fi
5503rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5759rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5519,37 +5775,44 @@ if test "${ac_cv_func_getspnam+set}" = set; then
5519else 5775else
5520 cat >conftest.$ac_ext <<_ACEOF 5776 cat >conftest.$ac_ext <<_ACEOF
5521#line $LINENO "configure" 5777#line $LINENO "configure"
5522#include "confdefs.h" 5778/* confdefs.h. */
5779_ACEOF
5780cat confdefs.h >>conftest.$ac_ext
5781cat >>conftest.$ac_ext <<_ACEOF
5782/* end confdefs.h. */
5523/* System header to define __stub macros and hopefully few prototypes, 5783/* System header to define __stub macros and hopefully few prototypes,
5524 which can conflict with char getspnam (); below. */ 5784 which can conflict with char getspnam (); below.
5525#include <assert.h> 5785 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5786 <limits.h> exists even on freestanding compilers. */
5787#ifdef __STDC__
5788# include <limits.h>
5789#else
5790# include <assert.h>
5791#endif
5526/* Override any gcc2 internal prototype to avoid an error. */ 5792/* Override any gcc2 internal prototype to avoid an error. */
5527#ifdef __cplusplus 5793#ifdef __cplusplus
5528extern "C" 5794extern "C"
5795{
5529#endif 5796#endif
5530/* We use char because int might match the return type of a gcc2 5797/* We use char because int might match the return type of a gcc2
5531 builtin and then its argument prototype would still apply. */ 5798 builtin and then its argument prototype would still apply. */
5532char getspnam (); 5799char getspnam ();
5533char (*f) ();
5534
5535#ifdef F77_DUMMY_MAIN
5536# ifdef __cplusplus
5537 extern "C"
5538# endif
5539 int F77_DUMMY_MAIN() { return 1; }
5540#endif
5541int
5542main ()
5543{
5544/* The GNU C library defines this for functions which it implements 5800/* The GNU C library defines this for functions which it implements
5545 to always fail with ENOSYS. Some functions are actually named 5801 to always fail with ENOSYS. Some functions are actually named
5546 something starting with __ and the normal name is an alias. */ 5802 something starting with __ and the normal name is an alias. */
5547#if defined (__stub_getspnam) || defined (__stub___getspnam) 5803#if defined (__stub_getspnam) || defined (__stub___getspnam)
5548choke me 5804choke me
5549#else 5805#else
5550f = getspnam; 5806char (*f) () = getspnam;
5807#endif
5808#ifdef __cplusplus
5809}
5551#endif 5810#endif
5552 5811
5812int
5813main ()
5814{
5815return f != getspnam;
5553 ; 5816 ;
5554 return 0; 5817 return 0;
5555} 5818}
@@ -5569,7 +5832,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5569 ac_cv_func_getspnam=yes 5832 ac_cv_func_getspnam=yes
5570else 5833else
5571 echo "$as_me: failed program was:" >&5 5834 echo "$as_me: failed program was:" >&5
5572cat conftest.$ac_ext >&5 5835sed 's/^/| /' conftest.$ac_ext >&5
5836
5573ac_cv_func_getspnam=no 5837ac_cv_func_getspnam=no
5574fi 5838fi
5575rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5839rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5588,7 +5852,11 @@ else
5588LIBS="-lgen $LIBS" 5852LIBS="-lgen $LIBS"
5589cat >conftest.$ac_ext <<_ACEOF 5853cat >conftest.$ac_ext <<_ACEOF
5590#line $LINENO "configure" 5854#line $LINENO "configure"
5591#include "confdefs.h" 5855/* confdefs.h. */
5856_ACEOF
5857cat confdefs.h >>conftest.$ac_ext
5858cat >>conftest.$ac_ext <<_ACEOF
5859/* end confdefs.h. */
5592 5860
5593/* Override any gcc2 internal prototype to avoid an error. */ 5861/* Override any gcc2 internal prototype to avoid an error. */
5594#ifdef __cplusplus 5862#ifdef __cplusplus
@@ -5597,12 +5865,6 @@ extern "C"
5597/* We use char because int might match the return type of a gcc2 5865/* We use char because int might match the return type of a gcc2
5598 builtin and then its argument prototype would still apply. */ 5866 builtin and then its argument prototype would still apply. */
5599char getspnam (); 5867char getspnam ();
5600#ifdef F77_DUMMY_MAIN
5601# ifdef __cplusplus
5602 extern "C"
5603# endif
5604 int F77_DUMMY_MAIN() { return 1; }
5605#endif
5606int 5868int
5607main () 5869main ()
5608{ 5870{
@@ -5626,7 +5888,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5626 ac_cv_lib_gen_getspnam=yes 5888 ac_cv_lib_gen_getspnam=yes
5627else 5889else
5628 echo "$as_me: failed program was:" >&5 5890 echo "$as_me: failed program was:" >&5
5629cat conftest.$ac_ext >&5 5891sed 's/^/| /' conftest.$ac_ext >&5
5892
5630ac_cv_lib_gen_getspnam=no 5893ac_cv_lib_gen_getspnam=no
5631fi 5894fi
5632rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5895rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5698,7 +5961,11 @@ else
5698LIBS="-lz $LIBS" 5961LIBS="-lz $LIBS"
5699cat >conftest.$ac_ext <<_ACEOF 5962cat >conftest.$ac_ext <<_ACEOF
5700#line $LINENO "configure" 5963#line $LINENO "configure"
5701#include "confdefs.h" 5964/* confdefs.h. */
5965_ACEOF
5966cat confdefs.h >>conftest.$ac_ext
5967cat >>conftest.$ac_ext <<_ACEOF
5968/* end confdefs.h. */
5702 5969
5703/* Override any gcc2 internal prototype to avoid an error. */ 5970/* Override any gcc2 internal prototype to avoid an error. */
5704#ifdef __cplusplus 5971#ifdef __cplusplus
@@ -5707,12 +5974,6 @@ extern "C"
5707/* We use char because int might match the return type of a gcc2 5974/* We use char because int might match the return type of a gcc2
5708 builtin and then its argument prototype would still apply. */ 5975 builtin and then its argument prototype would still apply. */
5709char deflate (); 5976char deflate ();
5710#ifdef F77_DUMMY_MAIN
5711# ifdef __cplusplus
5712 extern "C"
5713# endif
5714 int F77_DUMMY_MAIN() { return 1; }
5715#endif
5716int 5977int
5717main () 5978main ()
5718{ 5979{
@@ -5736,7 +5997,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5736 ac_cv_lib_z_deflate=yes 5997 ac_cv_lib_z_deflate=yes
5737else 5998else
5738 echo "$as_me: failed program was:" >&5 5999 echo "$as_me: failed program was:" >&5
5739cat conftest.$ac_ext >&5 6000sed 's/^/| /' conftest.$ac_ext >&5
6001
5740ac_cv_lib_z_deflate=no 6002ac_cv_lib_z_deflate=no
5741fi 6003fi
5742rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6004rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5765,37 +6027,44 @@ if test "${ac_cv_func_strcasecmp+set}" = set; then
5765else 6027else
5766 cat >conftest.$ac_ext <<_ACEOF 6028 cat >conftest.$ac_ext <<_ACEOF
5767#line $LINENO "configure" 6029#line $LINENO "configure"
5768#include "confdefs.h" 6030/* confdefs.h. */
6031_ACEOF
6032cat confdefs.h >>conftest.$ac_ext
6033cat >>conftest.$ac_ext <<_ACEOF
6034/* end confdefs.h. */
5769/* System header to define __stub macros and hopefully few prototypes, 6035/* System header to define __stub macros and hopefully few prototypes,
5770 which can conflict with char strcasecmp (); below. */ 6036 which can conflict with char strcasecmp (); below.
5771#include <assert.h> 6037 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6038 <limits.h> exists even on freestanding compilers. */
6039#ifdef __STDC__
6040# include <limits.h>
6041#else
6042# include <assert.h>
6043#endif
5772/* Override any gcc2 internal prototype to avoid an error. */ 6044/* Override any gcc2 internal prototype to avoid an error. */
5773#ifdef __cplusplus 6045#ifdef __cplusplus
5774extern "C" 6046extern "C"
6047{
5775#endif 6048#endif
5776/* We use char because int might match the return type of a gcc2 6049/* We use char because int might match the return type of a gcc2
5777 builtin and then its argument prototype would still apply. */ 6050 builtin and then its argument prototype would still apply. */
5778char strcasecmp (); 6051char strcasecmp ();
5779char (*f) ();
5780
5781#ifdef F77_DUMMY_MAIN
5782# ifdef __cplusplus
5783 extern "C"
5784# endif
5785 int F77_DUMMY_MAIN() { return 1; }
5786#endif
5787int
5788main ()
5789{
5790/* The GNU C library defines this for functions which it implements 6052/* The GNU C library defines this for functions which it implements
5791 to always fail with ENOSYS. Some functions are actually named 6053 to always fail with ENOSYS. Some functions are actually named
5792 something starting with __ and the normal name is an alias. */ 6054 something starting with __ and the normal name is an alias. */
5793#if defined (__stub_strcasecmp) || defined (__stub___strcasecmp) 6055#if defined (__stub_strcasecmp) || defined (__stub___strcasecmp)
5794choke me 6056choke me
5795#else 6057#else
5796f = strcasecmp; 6058char (*f) () = strcasecmp;
6059#endif
6060#ifdef __cplusplus
6061}
5797#endif 6062#endif
5798 6063
6064int
6065main ()
6066{
6067return f != strcasecmp;
5799 ; 6068 ;
5800 return 0; 6069 return 0;
5801} 6070}
@@ -5815,7 +6084,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5815 ac_cv_func_strcasecmp=yes 6084 ac_cv_func_strcasecmp=yes
5816else 6085else
5817 echo "$as_me: failed program was:" >&5 6086 echo "$as_me: failed program was:" >&5
5818cat conftest.$ac_ext >&5 6087sed 's/^/| /' conftest.$ac_ext >&5
6088
5819ac_cv_func_strcasecmp=no 6089ac_cv_func_strcasecmp=no
5820fi 6090fi
5821rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6091rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5834,7 +6104,11 @@ else
5834LIBS="-lresolv $LIBS" 6104LIBS="-lresolv $LIBS"
5835cat >conftest.$ac_ext <<_ACEOF 6105cat >conftest.$ac_ext <<_ACEOF
5836#line $LINENO "configure" 6106#line $LINENO "configure"
5837#include "confdefs.h" 6107/* confdefs.h. */
6108_ACEOF
6109cat confdefs.h >>conftest.$ac_ext
6110cat >>conftest.$ac_ext <<_ACEOF
6111/* end confdefs.h. */
5838 6112
5839/* Override any gcc2 internal prototype to avoid an error. */ 6113/* Override any gcc2 internal prototype to avoid an error. */
5840#ifdef __cplusplus 6114#ifdef __cplusplus
@@ -5843,12 +6117,6 @@ extern "C"
5843/* We use char because int might match the return type of a gcc2 6117/* We use char because int might match the return type of a gcc2
5844 builtin and then its argument prototype would still apply. */ 6118 builtin and then its argument prototype would still apply. */
5845char strcasecmp (); 6119char strcasecmp ();
5846#ifdef F77_DUMMY_MAIN
5847# ifdef __cplusplus
5848 extern "C"
5849# endif
5850 int F77_DUMMY_MAIN() { return 1; }
5851#endif
5852int 6120int
5853main () 6121main ()
5854{ 6122{
@@ -5872,7 +6140,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5872 ac_cv_lib_resolv_strcasecmp=yes 6140 ac_cv_lib_resolv_strcasecmp=yes
5873else 6141else
5874 echo "$as_me: failed program was:" >&5 6142 echo "$as_me: failed program was:" >&5
5875cat conftest.$ac_ext >&5 6143sed 's/^/| /' conftest.$ac_ext >&5
6144
5876ac_cv_lib_resolv_strcasecmp=no 6145ac_cv_lib_resolv_strcasecmp=no
5877fi 6146fi
5878rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6147rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5894,37 +6163,44 @@ if test "${ac_cv_func_utimes+set}" = set; then
5894else 6163else
5895 cat >conftest.$ac_ext <<_ACEOF 6164 cat >conftest.$ac_ext <<_ACEOF
5896#line $LINENO "configure" 6165#line $LINENO "configure"
5897#include "confdefs.h" 6166/* confdefs.h. */
6167_ACEOF
6168cat confdefs.h >>conftest.$ac_ext
6169cat >>conftest.$ac_ext <<_ACEOF
6170/* end confdefs.h. */
5898/* System header to define __stub macros and hopefully few prototypes, 6171/* System header to define __stub macros and hopefully few prototypes,
5899 which can conflict with char utimes (); below. */ 6172 which can conflict with char utimes (); below.
5900#include <assert.h> 6173 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6174 <limits.h> exists even on freestanding compilers. */
6175#ifdef __STDC__
6176# include <limits.h>
6177#else
6178# include <assert.h>
6179#endif
5901/* Override any gcc2 internal prototype to avoid an error. */ 6180/* Override any gcc2 internal prototype to avoid an error. */
5902#ifdef __cplusplus 6181#ifdef __cplusplus
5903extern "C" 6182extern "C"
6183{
5904#endif 6184#endif
5905/* We use char because int might match the return type of a gcc2 6185/* We use char because int might match the return type of a gcc2
5906 builtin and then its argument prototype would still apply. */ 6186 builtin and then its argument prototype would still apply. */
5907char utimes (); 6187char utimes ();
5908char (*f) ();
5909
5910#ifdef F77_DUMMY_MAIN
5911# ifdef __cplusplus
5912 extern "C"
5913# endif
5914 int F77_DUMMY_MAIN() { return 1; }
5915#endif
5916int
5917main ()
5918{
5919/* The GNU C library defines this for functions which it implements 6188/* The GNU C library defines this for functions which it implements
5920 to always fail with ENOSYS. Some functions are actually named 6189 to always fail with ENOSYS. Some functions are actually named
5921 something starting with __ and the normal name is an alias. */ 6190 something starting with __ and the normal name is an alias. */
5922#if defined (__stub_utimes) || defined (__stub___utimes) 6191#if defined (__stub_utimes) || defined (__stub___utimes)
5923choke me 6192choke me
5924#else 6193#else
5925f = utimes; 6194char (*f) () = utimes;
6195#endif
6196#ifdef __cplusplus
6197}
5926#endif 6198#endif
5927 6199
6200int
6201main ()
6202{
6203return f != utimes;
5928 ; 6204 ;
5929 return 0; 6205 return 0;
5930} 6206}
@@ -5944,7 +6220,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5944 ac_cv_func_utimes=yes 6220 ac_cv_func_utimes=yes
5945else 6221else
5946 echo "$as_me: failed program was:" >&5 6222 echo "$as_me: failed program was:" >&5
5947cat conftest.$ac_ext >&5 6223sed 's/^/| /' conftest.$ac_ext >&5
6224
5948ac_cv_func_utimes=no 6225ac_cv_func_utimes=no
5949fi 6226fi
5950rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6227rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -5963,7 +6240,11 @@ else
5963LIBS="-lc89 $LIBS" 6240LIBS="-lc89 $LIBS"
5964cat >conftest.$ac_ext <<_ACEOF 6241cat >conftest.$ac_ext <<_ACEOF
5965#line $LINENO "configure" 6242#line $LINENO "configure"
5966#include "confdefs.h" 6243/* confdefs.h. */
6244_ACEOF
6245cat confdefs.h >>conftest.$ac_ext
6246cat >>conftest.$ac_ext <<_ACEOF
6247/* end confdefs.h. */
5967 6248
5968/* Override any gcc2 internal prototype to avoid an error. */ 6249/* Override any gcc2 internal prototype to avoid an error. */
5969#ifdef __cplusplus 6250#ifdef __cplusplus
@@ -5972,12 +6253,6 @@ extern "C"
5972/* We use char because int might match the return type of a gcc2 6253/* We use char because int might match the return type of a gcc2
5973 builtin and then its argument prototype would still apply. */ 6254 builtin and then its argument prototype would still apply. */
5974char utimes (); 6255char utimes ();
5975#ifdef F77_DUMMY_MAIN
5976# ifdef __cplusplus
5977 extern "C"
5978# endif
5979 int F77_DUMMY_MAIN() { return 1; }
5980#endif
5981int 6256int
5982main () 6257main ()
5983{ 6258{
@@ -6001,7 +6276,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6001 ac_cv_lib_c89_utimes=yes 6276 ac_cv_lib_c89_utimes=yes
6002else 6277else
6003 echo "$as_me: failed program was:" >&5 6278 echo "$as_me: failed program was:" >&5
6004cat conftest.$ac_ext >&5 6279sed 's/^/| /' conftest.$ac_ext >&5
6280
6005ac_cv_lib_c89_utimes=no 6281ac_cv_lib_c89_utimes=no
6006fi 6282fi
6007rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6283rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -6039,7 +6315,11 @@ echo "$as_me:$LINENO: checking $ac_header usability" >&5
6039echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 6315echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
6040cat >conftest.$ac_ext <<_ACEOF 6316cat >conftest.$ac_ext <<_ACEOF
6041#line $LINENO "configure" 6317#line $LINENO "configure"
6042#include "confdefs.h" 6318/* confdefs.h. */
6319_ACEOF
6320cat confdefs.h >>conftest.$ac_ext
6321cat >>conftest.$ac_ext <<_ACEOF
6322/* end confdefs.h. */
6043$ac_includes_default 6323$ac_includes_default
6044#include <$ac_header> 6324#include <$ac_header>
6045_ACEOF 6325_ACEOF
@@ -6058,7 +6338,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6058 ac_header_compiler=yes 6338 ac_header_compiler=yes
6059else 6339else
6060 echo "$as_me: failed program was:" >&5 6340 echo "$as_me: failed program was:" >&5
6061cat conftest.$ac_ext >&5 6341sed 's/^/| /' conftest.$ac_ext >&5
6342
6062ac_header_compiler=no 6343ac_header_compiler=no
6063fi 6344fi
6064rm -f conftest.$ac_objext conftest.$ac_ext 6345rm -f conftest.$ac_objext conftest.$ac_ext
@@ -6070,13 +6351,17 @@ echo "$as_me:$LINENO: checking $ac_header presence" >&5
6070echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 6351echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
6071cat >conftest.$ac_ext <<_ACEOF 6352cat >conftest.$ac_ext <<_ACEOF
6072#line $LINENO "configure" 6353#line $LINENO "configure"
6073#include "confdefs.h" 6354/* confdefs.h. */
6355_ACEOF
6356cat confdefs.h >>conftest.$ac_ext
6357cat >>conftest.$ac_ext <<_ACEOF
6358/* end confdefs.h. */
6074#include <$ac_header> 6359#include <$ac_header>
6075_ACEOF 6360_ACEOF
6076if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6361if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6077 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6362 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6078 ac_status=$? 6363 ac_status=$?
6079 egrep -v '^ *\+' conftest.er1 >conftest.err 6364 grep -v '^ *+' conftest.er1 >conftest.err
6080 rm -f conftest.er1 6365 rm -f conftest.er1
6081 cat conftest.err >&5 6366 cat conftest.err >&5
6082 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6367 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -6093,7 +6378,8 @@ if test -z "$ac_cpp_err"; then
6093 ac_header_preproc=yes 6378 ac_header_preproc=yes
6094else 6379else
6095 echo "$as_me: failed program was:" >&5 6380 echo "$as_me: failed program was:" >&5
6096 cat conftest.$ac_ext >&5 6381sed 's/^/| /' conftest.$ac_ext >&5
6382
6097 ac_header_preproc=no 6383 ac_header_preproc=no
6098fi 6384fi
6099rm -f conftest.err conftest.$ac_ext 6385rm -f conftest.err conftest.$ac_ext
@@ -6106,14 +6392,32 @@ case $ac_header_compiler:$ac_header_preproc in
6106 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 6392 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
6107echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 6393echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
6108 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 6394 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
6109echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 6395echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
6396 (
6397 cat <<\_ASBOX
6398## ------------------------------------ ##
6399## Report this to bug-autoconf@gnu.org. ##
6400## ------------------------------------ ##
6401_ASBOX
6402 ) |
6403 sed "s/^/$as_me: WARNING: /" >&2
6404 ;;
6110 no:yes ) 6405 no:yes )
6111 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 6406 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
6112echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 6407echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
6113 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 6408 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
6114echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 6409echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
6115 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 6410 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
6116echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 6411echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
6412 (
6413 cat <<\_ASBOX
6414## ------------------------------------ ##
6415## Report this to bug-autoconf@gnu.org. ##
6416## ------------------------------------ ##
6417_ASBOX
6418 ) |
6419 sed "s/^/$as_me: WARNING: /" >&2
6420 ;;
6117esac 6421esac
6118echo "$as_me:$LINENO: checking for $ac_header" >&5 6422echo "$as_me:$LINENO: checking for $ac_header" >&5
6119echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 6423echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
@@ -6144,7 +6448,11 @@ else
6144ac_cv_search_login=no 6448ac_cv_search_login=no
6145cat >conftest.$ac_ext <<_ACEOF 6449cat >conftest.$ac_ext <<_ACEOF
6146#line $LINENO "configure" 6450#line $LINENO "configure"
6147#include "confdefs.h" 6451/* confdefs.h. */
6452_ACEOF
6453cat confdefs.h >>conftest.$ac_ext
6454cat >>conftest.$ac_ext <<_ACEOF
6455/* end confdefs.h. */
6148 6456
6149/* Override any gcc2 internal prototype to avoid an error. */ 6457/* Override any gcc2 internal prototype to avoid an error. */
6150#ifdef __cplusplus 6458#ifdef __cplusplus
@@ -6153,12 +6461,6 @@ extern "C"
6153/* We use char because int might match the return type of a gcc2 6461/* We use char because int might match the return type of a gcc2
6154 builtin and then its argument prototype would still apply. */ 6462 builtin and then its argument prototype would still apply. */
6155char login (); 6463char login ();
6156#ifdef F77_DUMMY_MAIN
6157# ifdef __cplusplus
6158 extern "C"
6159# endif
6160 int F77_DUMMY_MAIN() { return 1; }
6161#endif
6162int 6464int
6163main () 6465main ()
6164{ 6466{
@@ -6182,7 +6484,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6182 ac_cv_search_login="none required" 6484 ac_cv_search_login="none required"
6183else 6485else
6184 echo "$as_me: failed program was:" >&5 6486 echo "$as_me: failed program was:" >&5
6185cat conftest.$ac_ext >&5 6487sed 's/^/| /' conftest.$ac_ext >&5
6488
6186fi 6489fi
6187rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6490rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6188if test "$ac_cv_search_login" = no; then 6491if test "$ac_cv_search_login" = no; then
@@ -6190,7 +6493,11 @@ if test "$ac_cv_search_login" = no; then
6190 LIBS="-l$ac_lib $ac_func_search_save_LIBS" 6493 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
6191 cat >conftest.$ac_ext <<_ACEOF 6494 cat >conftest.$ac_ext <<_ACEOF
6192#line $LINENO "configure" 6495#line $LINENO "configure"
6193#include "confdefs.h" 6496/* confdefs.h. */
6497_ACEOF
6498cat confdefs.h >>conftest.$ac_ext
6499cat >>conftest.$ac_ext <<_ACEOF
6500/* end confdefs.h. */
6194 6501
6195/* Override any gcc2 internal prototype to avoid an error. */ 6502/* Override any gcc2 internal prototype to avoid an error. */
6196#ifdef __cplusplus 6503#ifdef __cplusplus
@@ -6199,12 +6506,6 @@ extern "C"
6199/* We use char because int might match the return type of a gcc2 6506/* We use char because int might match the return type of a gcc2
6200 builtin and then its argument prototype would still apply. */ 6507 builtin and then its argument prototype would still apply. */
6201char login (); 6508char login ();
6202#ifdef F77_DUMMY_MAIN
6203# ifdef __cplusplus
6204 extern "C"
6205# endif
6206 int F77_DUMMY_MAIN() { return 1; }
6207#endif
6208int 6509int
6209main () 6510main ()
6210{ 6511{
@@ -6229,7 +6530,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6229break 6530break
6230else 6531else
6231 echo "$as_me: failed program was:" >&5 6532 echo "$as_me: failed program was:" >&5
6232cat conftest.$ac_ext >&5 6533sed 's/^/| /' conftest.$ac_ext >&5
6534
6233fi 6535fi
6234rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6536rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6235 done 6537 done
@@ -6259,37 +6561,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
6259else 6561else
6260 cat >conftest.$ac_ext <<_ACEOF 6562 cat >conftest.$ac_ext <<_ACEOF
6261#line $LINENO "configure" 6563#line $LINENO "configure"
6262#include "confdefs.h" 6564/* confdefs.h. */
6565_ACEOF
6566cat confdefs.h >>conftest.$ac_ext
6567cat >>conftest.$ac_ext <<_ACEOF
6568/* end confdefs.h. */
6263/* System header to define __stub macros and hopefully few prototypes, 6569/* System header to define __stub macros and hopefully few prototypes,
6264 which can conflict with char $ac_func (); below. */ 6570 which can conflict with char $ac_func (); below.
6265#include <assert.h> 6571 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6572 <limits.h> exists even on freestanding compilers. */
6573#ifdef __STDC__
6574# include <limits.h>
6575#else
6576# include <assert.h>
6577#endif
6266/* Override any gcc2 internal prototype to avoid an error. */ 6578/* Override any gcc2 internal prototype to avoid an error. */
6267#ifdef __cplusplus 6579#ifdef __cplusplus
6268extern "C" 6580extern "C"
6581{
6269#endif 6582#endif
6270/* We use char because int might match the return type of a gcc2 6583/* We use char because int might match the return type of a gcc2
6271 builtin and then its argument prototype would still apply. */ 6584 builtin and then its argument prototype would still apply. */
6272char $ac_func (); 6585char $ac_func ();
6273char (*f) ();
6274
6275#ifdef F77_DUMMY_MAIN
6276# ifdef __cplusplus
6277 extern "C"
6278# endif
6279 int F77_DUMMY_MAIN() { return 1; }
6280#endif
6281int
6282main ()
6283{
6284/* The GNU C library defines this for functions which it implements 6586/* The GNU C library defines this for functions which it implements
6285 to always fail with ENOSYS. Some functions are actually named 6587 to always fail with ENOSYS. Some functions are actually named
6286 something starting with __ and the normal name is an alias. */ 6588 something starting with __ and the normal name is an alias. */
6287#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 6589#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
6288choke me 6590choke me
6289#else 6591#else
6290f = $ac_func; 6592char (*f) () = $ac_func;
6593#endif
6594#ifdef __cplusplus
6595}
6291#endif 6596#endif
6292 6597
6598int
6599main ()
6600{
6601return f != $ac_func;
6293 ; 6602 ;
6294 return 0; 6603 return 0;
6295} 6604}
@@ -6309,7 +6618,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6309 eval "$as_ac_var=yes" 6618 eval "$as_ac_var=yes"
6310else 6619else
6311 echo "$as_me: failed program was:" >&5 6620 echo "$as_me: failed program was:" >&5
6312cat conftest.$ac_ext >&5 6621sed 's/^/| /' conftest.$ac_ext >&5
6622
6313eval "$as_ac_var=no" 6623eval "$as_ac_var=no"
6314fi 6624fi
6315rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6625rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -6336,37 +6646,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
6336else 6646else
6337 cat >conftest.$ac_ext <<_ACEOF 6647 cat >conftest.$ac_ext <<_ACEOF
6338#line $LINENO "configure" 6648#line $LINENO "configure"
6339#include "confdefs.h" 6649/* confdefs.h. */
6650_ACEOF
6651cat confdefs.h >>conftest.$ac_ext
6652cat >>conftest.$ac_ext <<_ACEOF
6653/* end confdefs.h. */
6340/* System header to define __stub macros and hopefully few prototypes, 6654/* System header to define __stub macros and hopefully few prototypes,
6341 which can conflict with char $ac_func (); below. */ 6655 which can conflict with char $ac_func (); below.
6342#include <assert.h> 6656 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6657 <limits.h> exists even on freestanding compilers. */
6658#ifdef __STDC__
6659# include <limits.h>
6660#else
6661# include <assert.h>
6662#endif
6343/* Override any gcc2 internal prototype to avoid an error. */ 6663/* Override any gcc2 internal prototype to avoid an error. */
6344#ifdef __cplusplus 6664#ifdef __cplusplus
6345extern "C" 6665extern "C"
6666{
6346#endif 6667#endif
6347/* We use char because int might match the return type of a gcc2 6668/* We use char because int might match the return type of a gcc2
6348 builtin and then its argument prototype would still apply. */ 6669 builtin and then its argument prototype would still apply. */
6349char $ac_func (); 6670char $ac_func ();
6350char (*f) ();
6351
6352#ifdef F77_DUMMY_MAIN
6353# ifdef __cplusplus
6354 extern "C"
6355# endif
6356 int F77_DUMMY_MAIN() { return 1; }
6357#endif
6358int
6359main ()
6360{
6361/* The GNU C library defines this for functions which it implements 6671/* The GNU C library defines this for functions which it implements
6362 to always fail with ENOSYS. Some functions are actually named 6672 to always fail with ENOSYS. Some functions are actually named
6363 something starting with __ and the normal name is an alias. */ 6673 something starting with __ and the normal name is an alias. */
6364#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 6674#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
6365choke me 6675choke me
6366#else 6676#else
6367f = $ac_func; 6677char (*f) () = $ac_func;
6678#endif
6679#ifdef __cplusplus
6680}
6368#endif 6681#endif
6369 6682
6683int
6684main ()
6685{
6686return f != $ac_func;
6370 ; 6687 ;
6371 return 0; 6688 return 0;
6372} 6689}
@@ -6386,7 +6703,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6386 eval "$as_ac_var=yes" 6703 eval "$as_ac_var=yes"
6387else 6704else
6388 echo "$as_me: failed program was:" >&5 6705 echo "$as_me: failed program was:" >&5
6389cat conftest.$ac_ext >&5 6706sed 's/^/| /' conftest.$ac_ext >&5
6707
6390eval "$as_ac_var=no" 6708eval "$as_ac_var=no"
6391fi 6709fi
6392rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6710rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -6409,7 +6727,11 @@ else
6409LIBS="-lintl $LIBS" 6727LIBS="-lintl $LIBS"
6410cat >conftest.$ac_ext <<_ACEOF 6728cat >conftest.$ac_ext <<_ACEOF
6411#line $LINENO "configure" 6729#line $LINENO "configure"
6412#include "confdefs.h" 6730/* confdefs.h. */
6731_ACEOF
6732cat confdefs.h >>conftest.$ac_ext
6733cat >>conftest.$ac_ext <<_ACEOF
6734/* end confdefs.h. */
6413 6735
6414/* Override any gcc2 internal prototype to avoid an error. */ 6736/* Override any gcc2 internal prototype to avoid an error. */
6415#ifdef __cplusplus 6737#ifdef __cplusplus
@@ -6418,12 +6740,6 @@ extern "C"
6418/* We use char because int might match the return type of a gcc2 6740/* We use char because int might match the return type of a gcc2
6419 builtin and then its argument prototype would still apply. */ 6741 builtin and then its argument prototype would still apply. */
6420char strftime (); 6742char strftime ();
6421#ifdef F77_DUMMY_MAIN
6422# ifdef __cplusplus
6423 extern "C"
6424# endif
6425 int F77_DUMMY_MAIN() { return 1; }
6426#endif
6427int 6743int
6428main () 6744main ()
6429{ 6745{
@@ -6447,7 +6763,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6447 ac_cv_lib_intl_strftime=yes 6763 ac_cv_lib_intl_strftime=yes
6448else 6764else
6449 echo "$as_me: failed program was:" >&5 6765 echo "$as_me: failed program was:" >&5
6450cat conftest.$ac_ext >&5 6766sed 's/^/| /' conftest.$ac_ext >&5
6767
6451ac_cv_lib_intl_strftime=no 6768ac_cv_lib_intl_strftime=no
6452fi 6769fi
6453rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6770rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -6472,7 +6789,11 @@ echo "$as_me:$LINENO: checking for GLOB_ALTDIRFUNC support" >&5
6472echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6 6789echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6
6473cat >conftest.$ac_ext <<_ACEOF 6790cat >conftest.$ac_ext <<_ACEOF
6474#line $LINENO "configure" 6791#line $LINENO "configure"
6475#include "confdefs.h" 6792/* confdefs.h. */
6793_ACEOF
6794cat confdefs.h >>conftest.$ac_ext
6795cat >>conftest.$ac_ext <<_ACEOF
6796/* end confdefs.h. */
6476 6797
6477 #include <glob.h> 6798 #include <glob.h>
6478 #ifdef GLOB_ALTDIRFUNC 6799 #ifdef GLOB_ALTDIRFUNC
@@ -6481,7 +6802,7 @@ cat >conftest.$ac_ext <<_ACEOF
6481 6802
6482_ACEOF 6803_ACEOF
6483if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 6804if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6484 egrep "FOUNDIT" >/dev/null 2>&1; then 6805 $EGREP "FOUNDIT" >/dev/null 2>&1; then
6485 6806
6486 cat >>confdefs.h <<\_ACEOF 6807 cat >>confdefs.h <<\_ACEOF
6487#define GLOB_HAS_ALTDIRFUNC 1 6808#define GLOB_HAS_ALTDIRFUNC 1
@@ -6505,14 +6826,18 @@ echo "$as_me:$LINENO: checking for gl_matchc field in glob_t" >&5
6505echo $ECHO_N "checking for gl_matchc field in glob_t... $ECHO_C" >&6 6826echo $ECHO_N "checking for gl_matchc field in glob_t... $ECHO_C" >&6
6506cat >conftest.$ac_ext <<_ACEOF 6827cat >conftest.$ac_ext <<_ACEOF
6507#line $LINENO "configure" 6828#line $LINENO "configure"
6508#include "confdefs.h" 6829/* confdefs.h. */
6830_ACEOF
6831cat confdefs.h >>conftest.$ac_ext
6832cat >>conftest.$ac_ext <<_ACEOF
6833/* end confdefs.h. */
6509 6834
6510 #include <glob.h> 6835 #include <glob.h>
6511 int main(void){glob_t g; g.gl_matchc = 1;} 6836 int main(void){glob_t g; g.gl_matchc = 1;}
6512 6837
6513_ACEOF 6838_ACEOF
6514if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 6839if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6515 egrep "FOUNDIT" >/dev/null 2>&1; then 6840 $EGREP "FOUNDIT" >/dev/null 2>&1; then
6516 6841
6517 cat >>confdefs.h <<\_ACEOF 6842 cat >>confdefs.h <<\_ACEOF
6518#define GLOB_HAS_GL_MATCHC 1 6843#define GLOB_HAS_GL_MATCHC 1
@@ -6534,13 +6859,19 @@ rm -f conftest*
6534echo "$as_me:$LINENO: checking whether struct dirent allocates space for d_name" >&5 6859echo "$as_me:$LINENO: checking whether struct dirent allocates space for d_name" >&5
6535echo $ECHO_N "checking whether struct dirent allocates space for d_name... $ECHO_C" >&6 6860echo $ECHO_N "checking whether struct dirent allocates space for d_name... $ECHO_C" >&6
6536if test "$cross_compiling" = yes; then 6861if test "$cross_compiling" = yes; then
6537 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 6862 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
6538echo "$as_me: error: cannot run test program while cross compiling" >&2;} 6863See \`config.log' for more details." >&5
6864echo "$as_me: error: cannot run test program while cross compiling
6865See \`config.log' for more details." >&2;}
6539 { (exit 1); exit 1; }; } 6866 { (exit 1); exit 1; }; }
6540else 6867else
6541 cat >conftest.$ac_ext <<_ACEOF 6868 cat >conftest.$ac_ext <<_ACEOF
6542#line $LINENO "configure" 6869#line $LINENO "configure"
6543#include "confdefs.h" 6870/* confdefs.h. */
6871_ACEOF
6872cat confdefs.h >>conftest.$ac_ext
6873cat >>conftest.$ac_ext <<_ACEOF
6874/* end confdefs.h. */
6544 6875
6545#include <sys/types.h> 6876#include <sys/types.h>
6546#include <dirent.h> 6877#include <dirent.h>
@@ -6563,7 +6894,8 @@ echo "${ECHO_T}yes" >&6
6563else 6894else
6564 echo "$as_me: program exited with status $ac_status" >&5 6895 echo "$as_me: program exited with status $ac_status" >&5
6565echo "$as_me: failed program was:" >&5 6896echo "$as_me: failed program was:" >&5
6566cat conftest.$ac_ext >&5 6897sed 's/^/| /' conftest.$ac_ext >&5
6898
6567( exit $ac_status ) 6899( exit $ac_status )
6568 6900
6569 echo "$as_me:$LINENO: result: no" >&5 6901 echo "$as_me:$LINENO: result: no" >&5
@@ -6575,7 +6907,7 @@ _ACEOF
6575 6907
6576 6908
6577fi 6909fi
6578rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 6910rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
6579fi 6911fi
6580 6912
6581# Check whether user wants S/Key support 6913# Check whether user wants S/Key support
@@ -6602,13 +6934,19 @@ _ACEOF
6602 echo "$as_me:$LINENO: checking for s/key support" >&5 6934 echo "$as_me:$LINENO: checking for s/key support" >&5
6603echo $ECHO_N "checking for s/key support... $ECHO_C" >&6 6935echo $ECHO_N "checking for s/key support... $ECHO_C" >&6
6604 if test "$cross_compiling" = yes; then 6936 if test "$cross_compiling" = yes; then
6605 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 6937 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
6606echo "$as_me: error: cannot run test program while cross compiling" >&2;} 6938See \`config.log' for more details." >&5
6939echo "$as_me: error: cannot run test program while cross compiling
6940See \`config.log' for more details." >&2;}
6607 { (exit 1); exit 1; }; } 6941 { (exit 1); exit 1; }; }
6608else 6942else
6609 cat >conftest.$ac_ext <<_ACEOF 6943 cat >conftest.$ac_ext <<_ACEOF
6610#line $LINENO "configure" 6944#line $LINENO "configure"
6611#include "confdefs.h" 6945/* confdefs.h. */
6946_ACEOF
6947cat confdefs.h >>conftest.$ac_ext
6948cat >>conftest.$ac_ext <<_ACEOF
6949/* end confdefs.h. */
6612 6950
6613#include <stdio.h> 6951#include <stdio.h>
6614#include <skey.h> 6952#include <skey.h>
@@ -6631,7 +6969,8 @@ echo "${ECHO_T}yes" >&6
6631else 6969else
6632 echo "$as_me: program exited with status $ac_status" >&5 6970 echo "$as_me: program exited with status $ac_status" >&5
6633echo "$as_me: failed program was:" >&5 6971echo "$as_me: failed program was:" >&5
6634cat conftest.$ac_ext >&5 6972sed 's/^/| /' conftest.$ac_ext >&5
6973
6635( exit $ac_status ) 6974( exit $ac_status )
6636 6975
6637 echo "$as_me:$LINENO: result: no" >&5 6976 echo "$as_me:$LINENO: result: no" >&5
@@ -6641,7 +6980,7 @@ echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;}
6641 { (exit 1); exit 1; }; } 6980 { (exit 1); exit 1; }; }
6642 6981
6643fi 6982fi
6644rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 6983rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
6645fi 6984fi
6646 fi 6985 fi
6647 6986
@@ -6685,17 +7024,15 @@ if test "${with_tcp_wrappers+set}" = set; then
6685echo $ECHO_N "checking for libwrap... $ECHO_C" >&6 7024echo $ECHO_N "checking for libwrap... $ECHO_C" >&6
6686 cat >conftest.$ac_ext <<_ACEOF 7025 cat >conftest.$ac_ext <<_ACEOF
6687#line $LINENO "configure" 7026#line $LINENO "configure"
6688#include "confdefs.h" 7027/* confdefs.h. */
7028_ACEOF
7029cat confdefs.h >>conftest.$ac_ext
7030cat >>conftest.$ac_ext <<_ACEOF
7031/* end confdefs.h. */
6689 7032
6690#include <tcpd.h> 7033#include <tcpd.h>
6691 int deny_severity = 0, allow_severity = 0; 7034 int deny_severity = 0, allow_severity = 0;
6692 7035
6693#ifdef F77_DUMMY_MAIN
6694# ifdef __cplusplus
6695 extern "C"
6696# endif
6697 int F77_DUMMY_MAIN() { return 1; }
6698#endif
6699int 7036int
6700main () 7037main ()
6701{ 7038{
@@ -6728,7 +7065,8 @@ _ACEOF
6728 7065
6729else 7066else
6730 echo "$as_me: failed program was:" >&5 7067 echo "$as_me: failed program was:" >&5
6731cat conftest.$ac_ext >&5 7068sed 's/^/| /' conftest.$ac_ext >&5
7069
6732 7070
6733 { { echo "$as_me:$LINENO: error: *** libwrap missing" >&5 7071 { { echo "$as_me:$LINENO: error: *** libwrap missing" >&5
6734echo "$as_me: error: *** libwrap missing" >&2;} 7072echo "$as_me: error: *** libwrap missing" >&2;}
@@ -6838,37 +7176,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
6838else 7176else
6839 cat >conftest.$ac_ext <<_ACEOF 7177 cat >conftest.$ac_ext <<_ACEOF
6840#line $LINENO "configure" 7178#line $LINENO "configure"
6841#include "confdefs.h" 7179/* confdefs.h. */
7180_ACEOF
7181cat confdefs.h >>conftest.$ac_ext
7182cat >>conftest.$ac_ext <<_ACEOF
7183/* end confdefs.h. */
6842/* System header to define __stub macros and hopefully few prototypes, 7184/* System header to define __stub macros and hopefully few prototypes,
6843 which can conflict with char $ac_func (); below. */ 7185 which can conflict with char $ac_func (); below.
6844#include <assert.h> 7186 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7187 <limits.h> exists even on freestanding compilers. */
7188#ifdef __STDC__
7189# include <limits.h>
7190#else
7191# include <assert.h>
7192#endif
6845/* Override any gcc2 internal prototype to avoid an error. */ 7193/* Override any gcc2 internal prototype to avoid an error. */
6846#ifdef __cplusplus 7194#ifdef __cplusplus
6847extern "C" 7195extern "C"
7196{
6848#endif 7197#endif
6849/* We use char because int might match the return type of a gcc2 7198/* We use char because int might match the return type of a gcc2
6850 builtin and then its argument prototype would still apply. */ 7199 builtin and then its argument prototype would still apply. */
6851char $ac_func (); 7200char $ac_func ();
6852char (*f) ();
6853
6854#ifdef F77_DUMMY_MAIN
6855# ifdef __cplusplus
6856 extern "C"
6857# endif
6858 int F77_DUMMY_MAIN() { return 1; }
6859#endif
6860int
6861main ()
6862{
6863/* The GNU C library defines this for functions which it implements 7201/* The GNU C library defines this for functions which it implements
6864 to always fail with ENOSYS. Some functions are actually named 7202 to always fail with ENOSYS. Some functions are actually named
6865 something starting with __ and the normal name is an alias. */ 7203 something starting with __ and the normal name is an alias. */
6866#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 7204#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
6867choke me 7205choke me
6868#else 7206#else
6869f = $ac_func; 7207char (*f) () = $ac_func;
7208#endif
7209#ifdef __cplusplus
7210}
6870#endif 7211#endif
6871 7212
7213int
7214main ()
7215{
7216return f != $ac_func;
6872 ; 7217 ;
6873 return 0; 7218 return 0;
6874} 7219}
@@ -6888,7 +7233,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6888 eval "$as_ac_var=yes" 7233 eval "$as_ac_var=yes"
6889else 7234else
6890 echo "$as_me: failed program was:" >&5 7235 echo "$as_me: failed program was:" >&5
6891cat conftest.$ac_ext >&5 7236sed 's/^/| /' conftest.$ac_ext >&5
7237
6892eval "$as_ac_var=no" 7238eval "$as_ac_var=no"
6893fi 7239fi
6894rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7240rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -6913,7 +7259,11 @@ else
6913ac_cv_search_nanosleep=no 7259ac_cv_search_nanosleep=no
6914cat >conftest.$ac_ext <<_ACEOF 7260cat >conftest.$ac_ext <<_ACEOF
6915#line $LINENO "configure" 7261#line $LINENO "configure"
6916#include "confdefs.h" 7262/* confdefs.h. */
7263_ACEOF
7264cat confdefs.h >>conftest.$ac_ext
7265cat >>conftest.$ac_ext <<_ACEOF
7266/* end confdefs.h. */
6917 7267
6918/* Override any gcc2 internal prototype to avoid an error. */ 7268/* Override any gcc2 internal prototype to avoid an error. */
6919#ifdef __cplusplus 7269#ifdef __cplusplus
@@ -6922,12 +7272,6 @@ extern "C"
6922/* We use char because int might match the return type of a gcc2 7272/* We use char because int might match the return type of a gcc2
6923 builtin and then its argument prototype would still apply. */ 7273 builtin and then its argument prototype would still apply. */
6924char nanosleep (); 7274char nanosleep ();
6925#ifdef F77_DUMMY_MAIN
6926# ifdef __cplusplus
6927 extern "C"
6928# endif
6929 int F77_DUMMY_MAIN() { return 1; }
6930#endif
6931int 7275int
6932main () 7276main ()
6933{ 7277{
@@ -6951,7 +7295,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6951 ac_cv_search_nanosleep="none required" 7295 ac_cv_search_nanosleep="none required"
6952else 7296else
6953 echo "$as_me: failed program was:" >&5 7297 echo "$as_me: failed program was:" >&5
6954cat conftest.$ac_ext >&5 7298sed 's/^/| /' conftest.$ac_ext >&5
7299
6955fi 7300fi
6956rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7301rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6957if test "$ac_cv_search_nanosleep" = no; then 7302if test "$ac_cv_search_nanosleep" = no; then
@@ -6959,7 +7304,11 @@ if test "$ac_cv_search_nanosleep" = no; then
6959 LIBS="-l$ac_lib $ac_func_search_save_LIBS" 7304 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
6960 cat >conftest.$ac_ext <<_ACEOF 7305 cat >conftest.$ac_ext <<_ACEOF
6961#line $LINENO "configure" 7306#line $LINENO "configure"
6962#include "confdefs.h" 7307/* confdefs.h. */
7308_ACEOF
7309cat confdefs.h >>conftest.$ac_ext
7310cat >>conftest.$ac_ext <<_ACEOF
7311/* end confdefs.h. */
6963 7312
6964/* Override any gcc2 internal prototype to avoid an error. */ 7313/* Override any gcc2 internal prototype to avoid an error. */
6965#ifdef __cplusplus 7314#ifdef __cplusplus
@@ -6968,12 +7317,6 @@ extern "C"
6968/* We use char because int might match the return type of a gcc2 7317/* We use char because int might match the return type of a gcc2
6969 builtin and then its argument prototype would still apply. */ 7318 builtin and then its argument prototype would still apply. */
6970char nanosleep (); 7319char nanosleep ();
6971#ifdef F77_DUMMY_MAIN
6972# ifdef __cplusplus
6973 extern "C"
6974# endif
6975 int F77_DUMMY_MAIN() { return 1; }
6976#endif
6977int 7320int
6978main () 7321main ()
6979{ 7322{
@@ -6998,7 +7341,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6998break 7341break
6999else 7342else
7000 echo "$as_me: failed program was:" >&5 7343 echo "$as_me: failed program was:" >&5
7001cat conftest.$ac_ext >&5 7344sed 's/^/| /' conftest.$ac_ext >&5
7345
7002fi 7346fi
7003rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7347rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7004 done 7348 done
@@ -7015,6 +7359,115 @@ _ACEOF
7015 7359
7016fi 7360fi
7017 7361
7362echo "$as_me:$LINENO: checking for library containing basename" >&5
7363echo $ECHO_N "checking for library containing basename... $ECHO_C" >&6
7364if test "${ac_cv_search_basename+set}" = set; then
7365 echo $ECHO_N "(cached) $ECHO_C" >&6
7366else
7367 ac_func_search_save_LIBS=$LIBS
7368ac_cv_search_basename=no
7369cat >conftest.$ac_ext <<_ACEOF
7370#line $LINENO "configure"
7371/* confdefs.h. */
7372_ACEOF
7373cat confdefs.h >>conftest.$ac_ext
7374cat >>conftest.$ac_ext <<_ACEOF
7375/* end confdefs.h. */
7376
7377/* Override any gcc2 internal prototype to avoid an error. */
7378#ifdef __cplusplus
7379extern "C"
7380#endif
7381/* We use char because int might match the return type of a gcc2
7382 builtin and then its argument prototype would still apply. */
7383char basename ();
7384int
7385main ()
7386{
7387basename ();
7388 ;
7389 return 0;
7390}
7391_ACEOF
7392rm -f conftest.$ac_objext conftest$ac_exeext
7393if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7394 (eval $ac_link) 2>&5
7395 ac_status=$?
7396 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7397 (exit $ac_status); } &&
7398 { ac_try='test -s conftest$ac_exeext'
7399 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7400 (eval $ac_try) 2>&5
7401 ac_status=$?
7402 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7403 (exit $ac_status); }; }; then
7404 ac_cv_search_basename="none required"
7405else
7406 echo "$as_me: failed program was:" >&5
7407sed 's/^/| /' conftest.$ac_ext >&5
7408
7409fi
7410rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7411if test "$ac_cv_search_basename" = no; then
7412 for ac_lib in gen; do
7413 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
7414 cat >conftest.$ac_ext <<_ACEOF
7415#line $LINENO "configure"
7416/* confdefs.h. */
7417_ACEOF
7418cat confdefs.h >>conftest.$ac_ext
7419cat >>conftest.$ac_ext <<_ACEOF
7420/* end confdefs.h. */
7421
7422/* Override any gcc2 internal prototype to avoid an error. */
7423#ifdef __cplusplus
7424extern "C"
7425#endif
7426/* We use char because int might match the return type of a gcc2
7427 builtin and then its argument prototype would still apply. */
7428char basename ();
7429int
7430main ()
7431{
7432basename ();
7433 ;
7434 return 0;
7435}
7436_ACEOF
7437rm -f conftest.$ac_objext conftest$ac_exeext
7438if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7439 (eval $ac_link) 2>&5
7440 ac_status=$?
7441 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7442 (exit $ac_status); } &&
7443 { ac_try='test -s conftest$ac_exeext'
7444 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7445 (eval $ac_try) 2>&5
7446 ac_status=$?
7447 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7448 (exit $ac_status); }; }; then
7449 ac_cv_search_basename="-l$ac_lib"
7450break
7451else
7452 echo "$as_me: failed program was:" >&5
7453sed 's/^/| /' conftest.$ac_ext >&5
7454
7455fi
7456rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7457 done
7458fi
7459LIBS=$ac_func_search_save_LIBS
7460fi
7461echo "$as_me:$LINENO: result: $ac_cv_search_basename" >&5
7462echo "${ECHO_T}$ac_cv_search_basename" >&6
7463if test "$ac_cv_search_basename" != no; then
7464 test "$ac_cv_search_basename" = "none required" || LIBS="$ac_cv_search_basename $LIBS"
7465 cat >>confdefs.h <<\_ACEOF
7466#define HAVE_BASENAME 1
7467_ACEOF
7468
7469fi
7470
7018 7471
7019echo "$as_me:$LINENO: checking whether strsep is declared" >&5 7472echo "$as_me:$LINENO: checking whether strsep is declared" >&5
7020echo $ECHO_N "checking whether strsep is declared... $ECHO_C" >&6 7473echo $ECHO_N "checking whether strsep is declared... $ECHO_C" >&6
@@ -7023,14 +7476,12 @@ if test "${ac_cv_have_decl_strsep+set}" = set; then
7023else 7476else
7024 cat >conftest.$ac_ext <<_ACEOF 7477 cat >conftest.$ac_ext <<_ACEOF
7025#line $LINENO "configure" 7478#line $LINENO "configure"
7026#include "confdefs.h" 7479/* confdefs.h. */
7480_ACEOF
7481cat confdefs.h >>conftest.$ac_ext
7482cat >>conftest.$ac_ext <<_ACEOF
7483/* end confdefs.h. */
7027$ac_includes_default 7484$ac_includes_default
7028#ifdef F77_DUMMY_MAIN
7029# ifdef __cplusplus
7030 extern "C"
7031# endif
7032 int F77_DUMMY_MAIN() { return 1; }
7033#endif
7034int 7485int
7035main () 7486main ()
7036{ 7487{
@@ -7057,7 +7508,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7057 ac_cv_have_decl_strsep=yes 7508 ac_cv_have_decl_strsep=yes
7058else 7509else
7059 echo "$as_me: failed program was:" >&5 7510 echo "$as_me: failed program was:" >&5
7060cat conftest.$ac_ext >&5 7511sed 's/^/| /' conftest.$ac_ext >&5
7512
7061ac_cv_have_decl_strsep=no 7513ac_cv_have_decl_strsep=no
7062fi 7514fi
7063rm -f conftest.$ac_objext conftest.$ac_ext 7515rm -f conftest.$ac_objext conftest.$ac_ext
@@ -7076,37 +7528,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7076else 7528else
7077 cat >conftest.$ac_ext <<_ACEOF 7529 cat >conftest.$ac_ext <<_ACEOF
7078#line $LINENO "configure" 7530#line $LINENO "configure"
7079#include "confdefs.h" 7531/* confdefs.h. */
7532_ACEOF
7533cat confdefs.h >>conftest.$ac_ext
7534cat >>conftest.$ac_ext <<_ACEOF
7535/* end confdefs.h. */
7080/* System header to define __stub macros and hopefully few prototypes, 7536/* System header to define __stub macros and hopefully few prototypes,
7081 which can conflict with char $ac_func (); below. */ 7537 which can conflict with char $ac_func (); below.
7082#include <assert.h> 7538 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7539 <limits.h> exists even on freestanding compilers. */
7540#ifdef __STDC__
7541# include <limits.h>
7542#else
7543# include <assert.h>
7544#endif
7083/* Override any gcc2 internal prototype to avoid an error. */ 7545/* Override any gcc2 internal prototype to avoid an error. */
7084#ifdef __cplusplus 7546#ifdef __cplusplus
7085extern "C" 7547extern "C"
7548{
7086#endif 7549#endif
7087/* We use char because int might match the return type of a gcc2 7550/* We use char because int might match the return type of a gcc2
7088 builtin and then its argument prototype would still apply. */ 7551 builtin and then its argument prototype would still apply. */
7089char $ac_func (); 7552char $ac_func ();
7090char (*f) ();
7091
7092#ifdef F77_DUMMY_MAIN
7093# ifdef __cplusplus
7094 extern "C"
7095# endif
7096 int F77_DUMMY_MAIN() { return 1; }
7097#endif
7098int
7099main ()
7100{
7101/* The GNU C library defines this for functions which it implements 7553/* The GNU C library defines this for functions which it implements
7102 to always fail with ENOSYS. Some functions are actually named 7554 to always fail with ENOSYS. Some functions are actually named
7103 something starting with __ and the normal name is an alias. */ 7555 something starting with __ and the normal name is an alias. */
7104#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 7556#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7105choke me 7557choke me
7106#else 7558#else
7107f = $ac_func; 7559char (*f) () = $ac_func;
7560#endif
7561#ifdef __cplusplus
7562}
7108#endif 7563#endif
7109 7564
7565int
7566main ()
7567{
7568return f != $ac_func;
7110 ; 7569 ;
7111 return 0; 7570 return 0;
7112} 7571}
@@ -7126,7 +7585,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7126 eval "$as_ac_var=yes" 7585 eval "$as_ac_var=yes"
7127else 7586else
7128 echo "$as_me: failed program was:" >&5 7587 echo "$as_me: failed program was:" >&5
7129cat conftest.$ac_ext >&5 7588sed 's/^/| /' conftest.$ac_ext >&5
7589
7130eval "$as_ac_var=no" 7590eval "$as_ac_var=no"
7131fi 7591fi
7132rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7592rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7155,37 +7615,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7155else 7615else
7156 cat >conftest.$ac_ext <<_ACEOF 7616 cat >conftest.$ac_ext <<_ACEOF
7157#line $LINENO "configure" 7617#line $LINENO "configure"
7158#include "confdefs.h" 7618/* confdefs.h. */
7619_ACEOF
7620cat confdefs.h >>conftest.$ac_ext
7621cat >>conftest.$ac_ext <<_ACEOF
7622/* end confdefs.h. */
7159/* System header to define __stub macros and hopefully few prototypes, 7623/* System header to define __stub macros and hopefully few prototypes,
7160 which can conflict with char $ac_func (); below. */ 7624 which can conflict with char $ac_func (); below.
7161#include <assert.h> 7625 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7626 <limits.h> exists even on freestanding compilers. */
7627#ifdef __STDC__
7628# include <limits.h>
7629#else
7630# include <assert.h>
7631#endif
7162/* Override any gcc2 internal prototype to avoid an error. */ 7632/* Override any gcc2 internal prototype to avoid an error. */
7163#ifdef __cplusplus 7633#ifdef __cplusplus
7164extern "C" 7634extern "C"
7635{
7165#endif 7636#endif
7166/* We use char because int might match the return type of a gcc2 7637/* We use char because int might match the return type of a gcc2
7167 builtin and then its argument prototype would still apply. */ 7638 builtin and then its argument prototype would still apply. */
7168char $ac_func (); 7639char $ac_func ();
7169char (*f) ();
7170
7171#ifdef F77_DUMMY_MAIN
7172# ifdef __cplusplus
7173 extern "C"
7174# endif
7175 int F77_DUMMY_MAIN() { return 1; }
7176#endif
7177int
7178main ()
7179{
7180/* The GNU C library defines this for functions which it implements 7640/* The GNU C library defines this for functions which it implements
7181 to always fail with ENOSYS. Some functions are actually named 7641 to always fail with ENOSYS. Some functions are actually named
7182 something starting with __ and the normal name is an alias. */ 7642 something starting with __ and the normal name is an alias. */
7183#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 7643#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7184choke me 7644choke me
7185#else 7645#else
7186f = $ac_func; 7646char (*f) () = $ac_func;
7647#endif
7648#ifdef __cplusplus
7649}
7187#endif 7650#endif
7188 7651
7652int
7653main ()
7654{
7655return f != $ac_func;
7189 ; 7656 ;
7190 return 0; 7657 return 0;
7191} 7658}
@@ -7205,7 +7672,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7205 eval "$as_ac_var=yes" 7672 eval "$as_ac_var=yes"
7206else 7673else
7207 echo "$as_me: failed program was:" >&5 7674 echo "$as_me: failed program was:" >&5
7208cat conftest.$ac_ext >&5 7675sed 's/^/| /' conftest.$ac_ext >&5
7676
7209eval "$as_ac_var=no" 7677eval "$as_ac_var=no"
7210fi 7678fi
7211rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7679rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7234,7 +7702,11 @@ echo "$as_me:$LINENO: checking $ac_header usability" >&5
7234echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 7702echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
7235cat >conftest.$ac_ext <<_ACEOF 7703cat >conftest.$ac_ext <<_ACEOF
7236#line $LINENO "configure" 7704#line $LINENO "configure"
7237#include "confdefs.h" 7705/* confdefs.h. */
7706_ACEOF
7707cat confdefs.h >>conftest.$ac_ext
7708cat >>conftest.$ac_ext <<_ACEOF
7709/* end confdefs.h. */
7238$ac_includes_default 7710$ac_includes_default
7239#include <$ac_header> 7711#include <$ac_header>
7240_ACEOF 7712_ACEOF
@@ -7253,7 +7725,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7253 ac_header_compiler=yes 7725 ac_header_compiler=yes
7254else 7726else
7255 echo "$as_me: failed program was:" >&5 7727 echo "$as_me: failed program was:" >&5
7256cat conftest.$ac_ext >&5 7728sed 's/^/| /' conftest.$ac_ext >&5
7729
7257ac_header_compiler=no 7730ac_header_compiler=no
7258fi 7731fi
7259rm -f conftest.$ac_objext conftest.$ac_ext 7732rm -f conftest.$ac_objext conftest.$ac_ext
@@ -7265,13 +7738,17 @@ echo "$as_me:$LINENO: checking $ac_header presence" >&5
7265echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 7738echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
7266cat >conftest.$ac_ext <<_ACEOF 7739cat >conftest.$ac_ext <<_ACEOF
7267#line $LINENO "configure" 7740#line $LINENO "configure"
7268#include "confdefs.h" 7741/* confdefs.h. */
7742_ACEOF
7743cat confdefs.h >>conftest.$ac_ext
7744cat >>conftest.$ac_ext <<_ACEOF
7745/* end confdefs.h. */
7269#include <$ac_header> 7746#include <$ac_header>
7270_ACEOF 7747_ACEOF
7271if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7748if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
7272 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7749 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
7273 ac_status=$? 7750 ac_status=$?
7274 egrep -v '^ *\+' conftest.er1 >conftest.err 7751 grep -v '^ *+' conftest.er1 >conftest.err
7275 rm -f conftest.er1 7752 rm -f conftest.er1
7276 cat conftest.err >&5 7753 cat conftest.err >&5
7277 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7754 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -7288,7 +7765,8 @@ if test -z "$ac_cpp_err"; then
7288 ac_header_preproc=yes 7765 ac_header_preproc=yes
7289else 7766else
7290 echo "$as_me: failed program was:" >&5 7767 echo "$as_me: failed program was:" >&5
7291 cat conftest.$ac_ext >&5 7768sed 's/^/| /' conftest.$ac_ext >&5
7769
7292 ac_header_preproc=no 7770 ac_header_preproc=no
7293fi 7771fi
7294rm -f conftest.err conftest.$ac_ext 7772rm -f conftest.err conftest.$ac_ext
@@ -7301,14 +7779,32 @@ case $ac_header_compiler:$ac_header_preproc in
7301 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 7779 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
7302echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 7780echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
7303 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 7781 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
7304echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 7782echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
7783 (
7784 cat <<\_ASBOX
7785## ------------------------------------ ##
7786## Report this to bug-autoconf@gnu.org. ##
7787## ------------------------------------ ##
7788_ASBOX
7789 ) |
7790 sed "s/^/$as_me: WARNING: /" >&2
7791 ;;
7305 no:yes ) 7792 no:yes )
7306 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 7793 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
7307echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 7794echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
7308 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 7795 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
7309echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 7796echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
7310 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 7797 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
7311echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 7798echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
7799 (
7800 cat <<\_ASBOX
7801## ------------------------------------ ##
7802## Report this to bug-autoconf@gnu.org. ##
7803## ------------------------------------ ##
7804_ASBOX
7805 ) |
7806 sed "s/^/$as_me: WARNING: /" >&2
7807 ;;
7312esac 7808esac
7313echo "$as_me:$LINENO: checking for $ac_header" >&5 7809echo "$as_me:$LINENO: checking for $ac_header" >&5
7314echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 7810echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
@@ -7341,7 +7837,11 @@ else
7341LIBS="-lgen $LIBS" 7837LIBS="-lgen $LIBS"
7342cat >conftest.$ac_ext <<_ACEOF 7838cat >conftest.$ac_ext <<_ACEOF
7343#line $LINENO "configure" 7839#line $LINENO "configure"
7344#include "confdefs.h" 7840/* confdefs.h. */
7841_ACEOF
7842cat confdefs.h >>conftest.$ac_ext
7843cat >>conftest.$ac_ext <<_ACEOF
7844/* end confdefs.h. */
7345 7845
7346/* Override any gcc2 internal prototype to avoid an error. */ 7846/* Override any gcc2 internal prototype to avoid an error. */
7347#ifdef __cplusplus 7847#ifdef __cplusplus
@@ -7350,12 +7850,6 @@ extern "C"
7350/* We use char because int might match the return type of a gcc2 7850/* We use char because int might match the return type of a gcc2
7351 builtin and then its argument prototype would still apply. */ 7851 builtin and then its argument prototype would still apply. */
7352char dirname (); 7852char dirname ();
7353#ifdef F77_DUMMY_MAIN
7354# ifdef __cplusplus
7355 extern "C"
7356# endif
7357 int F77_DUMMY_MAIN() { return 1; }
7358#endif
7359int 7853int
7360main () 7854main ()
7361{ 7855{
@@ -7379,7 +7873,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7379 ac_cv_lib_gen_dirname=yes 7873 ac_cv_lib_gen_dirname=yes
7380else 7874else
7381 echo "$as_me: failed program was:" >&5 7875 echo "$as_me: failed program was:" >&5
7382cat conftest.$ac_ext >&5 7876sed 's/^/| /' conftest.$ac_ext >&5
7877
7383ac_cv_lib_gen_dirname=no 7878ac_cv_lib_gen_dirname=no
7384fi 7879fi
7385rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7880rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7398,13 +7893,19 @@ else
7398 save_LIBS="$LIBS" 7893 save_LIBS="$LIBS"
7399 LIBS="$LIBS -lgen" 7894 LIBS="$LIBS -lgen"
7400 if test "$cross_compiling" = yes; then 7895 if test "$cross_compiling" = yes; then
7401 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 7896 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
7402echo "$as_me: error: cannot run test program while cross compiling" >&2;} 7897See \`config.log' for more details." >&5
7898echo "$as_me: error: cannot run test program while cross compiling
7899See \`config.log' for more details." >&2;}
7403 { (exit 1); exit 1; }; } 7900 { (exit 1); exit 1; }; }
7404else 7901else
7405 cat >conftest.$ac_ext <<_ACEOF 7902 cat >conftest.$ac_ext <<_ACEOF
7406#line $LINENO "configure" 7903#line $LINENO "configure"
7407#include "confdefs.h" 7904/* confdefs.h. */
7905_ACEOF
7906cat confdefs.h >>conftest.$ac_ext
7907cat >>conftest.$ac_ext <<_ACEOF
7908/* end confdefs.h. */
7408 7909
7409#include <libgen.h> 7910#include <libgen.h>
7410#include <string.h> 7911#include <string.h>
@@ -7437,12 +7938,13 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7437else 7938else
7438 echo "$as_me: program exited with status $ac_status" >&5 7939 echo "$as_me: program exited with status $ac_status" >&5
7439echo "$as_me: failed program was:" >&5 7940echo "$as_me: failed program was:" >&5
7440cat conftest.$ac_ext >&5 7941sed 's/^/| /' conftest.$ac_ext >&5
7942
7441( exit $ac_status ) 7943( exit $ac_status )
7442 ac_cv_have_broken_dirname="yes" 7944 ac_cv_have_broken_dirname="yes"
7443 7945
7444fi 7946fi
7445rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 7947rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
7446fi 7948fi
7447 LIBS="$save_LIBS" 7949 LIBS="$save_LIBS"
7448 7950
@@ -7473,7 +7975,11 @@ echo "$as_me:$LINENO: checking $ac_header usability" >&5
7473echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 7975echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
7474cat >conftest.$ac_ext <<_ACEOF 7976cat >conftest.$ac_ext <<_ACEOF
7475#line $LINENO "configure" 7977#line $LINENO "configure"
7476#include "confdefs.h" 7978/* confdefs.h. */
7979_ACEOF
7980cat confdefs.h >>conftest.$ac_ext
7981cat >>conftest.$ac_ext <<_ACEOF
7982/* end confdefs.h. */
7477$ac_includes_default 7983$ac_includes_default
7478#include <$ac_header> 7984#include <$ac_header>
7479_ACEOF 7985_ACEOF
@@ -7492,7 +7998,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7492 ac_header_compiler=yes 7998 ac_header_compiler=yes
7493else 7999else
7494 echo "$as_me: failed program was:" >&5 8000 echo "$as_me: failed program was:" >&5
7495cat conftest.$ac_ext >&5 8001sed 's/^/| /' conftest.$ac_ext >&5
8002
7496ac_header_compiler=no 8003ac_header_compiler=no
7497fi 8004fi
7498rm -f conftest.$ac_objext conftest.$ac_ext 8005rm -f conftest.$ac_objext conftest.$ac_ext
@@ -7504,13 +8011,17 @@ echo "$as_me:$LINENO: checking $ac_header presence" >&5
7504echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 8011echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
7505cat >conftest.$ac_ext <<_ACEOF 8012cat >conftest.$ac_ext <<_ACEOF
7506#line $LINENO "configure" 8013#line $LINENO "configure"
7507#include "confdefs.h" 8014/* confdefs.h. */
8015_ACEOF
8016cat confdefs.h >>conftest.$ac_ext
8017cat >>conftest.$ac_ext <<_ACEOF
8018/* end confdefs.h. */
7508#include <$ac_header> 8019#include <$ac_header>
7509_ACEOF 8020_ACEOF
7510if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8021if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
7511 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8022 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
7512 ac_status=$? 8023 ac_status=$?
7513 egrep -v '^ *\+' conftest.er1 >conftest.err 8024 grep -v '^ *+' conftest.er1 >conftest.err
7514 rm -f conftest.er1 8025 rm -f conftest.er1
7515 cat conftest.err >&5 8026 cat conftest.err >&5
7516 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8027 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -7527,7 +8038,8 @@ if test -z "$ac_cpp_err"; then
7527 ac_header_preproc=yes 8038 ac_header_preproc=yes
7528else 8039else
7529 echo "$as_me: failed program was:" >&5 8040 echo "$as_me: failed program was:" >&5
7530 cat conftest.$ac_ext >&5 8041sed 's/^/| /' conftest.$ac_ext >&5
8042
7531 ac_header_preproc=no 8043 ac_header_preproc=no
7532fi 8044fi
7533rm -f conftest.err conftest.$ac_ext 8045rm -f conftest.err conftest.$ac_ext
@@ -7540,14 +8052,32 @@ case $ac_header_compiler:$ac_header_preproc in
7540 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 8052 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
7541echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 8053echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
7542 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 8054 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
7543echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 8055echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
8056 (
8057 cat <<\_ASBOX
8058## ------------------------------------ ##
8059## Report this to bug-autoconf@gnu.org. ##
8060## ------------------------------------ ##
8061_ASBOX
8062 ) |
8063 sed "s/^/$as_me: WARNING: /" >&2
8064 ;;
7544 no:yes ) 8065 no:yes )
7545 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 8066 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
7546echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 8067echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
7547 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 8068 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
7548echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 8069echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
7549 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 8070 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
7550echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 8071echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
8072 (
8073 cat <<\_ASBOX
8074## ------------------------------------ ##
8075## Report this to bug-autoconf@gnu.org. ##
8076## ------------------------------------ ##
8077_ASBOX
8078 ) |
8079 sed "s/^/$as_me: WARNING: /" >&2
8080 ;;
7551esac 8081esac
7552echo "$as_me:$LINENO: checking for $ac_header" >&5 8082echo "$as_me:$LINENO: checking for $ac_header" >&5
7553echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 8083echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
@@ -7590,37 +8120,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7590else 8120else
7591 cat >conftest.$ac_ext <<_ACEOF 8121 cat >conftest.$ac_ext <<_ACEOF
7592#line $LINENO "configure" 8122#line $LINENO "configure"
7593#include "confdefs.h" 8123/* confdefs.h. */
8124_ACEOF
8125cat confdefs.h >>conftest.$ac_ext
8126cat >>conftest.$ac_ext <<_ACEOF
8127/* end confdefs.h. */
7594/* System header to define __stub macros and hopefully few prototypes, 8128/* System header to define __stub macros and hopefully few prototypes,
7595 which can conflict with char $ac_func (); below. */ 8129 which can conflict with char $ac_func (); below.
7596#include <assert.h> 8130 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8131 <limits.h> exists even on freestanding compilers. */
8132#ifdef __STDC__
8133# include <limits.h>
8134#else
8135# include <assert.h>
8136#endif
7597/* Override any gcc2 internal prototype to avoid an error. */ 8137/* Override any gcc2 internal prototype to avoid an error. */
7598#ifdef __cplusplus 8138#ifdef __cplusplus
7599extern "C" 8139extern "C"
8140{
7600#endif 8141#endif
7601/* We use char because int might match the return type of a gcc2 8142/* We use char because int might match the return type of a gcc2
7602 builtin and then its argument prototype would still apply. */ 8143 builtin and then its argument prototype would still apply. */
7603char $ac_func (); 8144char $ac_func ();
7604char (*f) ();
7605
7606#ifdef F77_DUMMY_MAIN
7607# ifdef __cplusplus
7608 extern "C"
7609# endif
7610 int F77_DUMMY_MAIN() { return 1; }
7611#endif
7612int
7613main ()
7614{
7615/* The GNU C library defines this for functions which it implements 8145/* The GNU C library defines this for functions which it implements
7616 to always fail with ENOSYS. Some functions are actually named 8146 to always fail with ENOSYS. Some functions are actually named
7617 something starting with __ and the normal name is an alias. */ 8147 something starting with __ and the normal name is an alias. */
7618#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 8148#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7619choke me 8149choke me
7620#else 8150#else
7621f = $ac_func; 8151char (*f) () = $ac_func;
8152#endif
8153#ifdef __cplusplus
8154}
7622#endif 8155#endif
7623 8156
8157int
8158main ()
8159{
8160return f != $ac_func;
7624 ; 8161 ;
7625 return 0; 8162 return 0;
7626} 8163}
@@ -7640,7 +8177,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7640 eval "$as_ac_var=yes" 8177 eval "$as_ac_var=yes"
7641else 8178else
7642 echo "$as_me: failed program was:" >&5 8179 echo "$as_me: failed program was:" >&5
7643cat conftest.$ac_ext >&5 8180sed 's/^/| /' conftest.$ac_ext >&5
8181
7644eval "$as_ac_var=no" 8182eval "$as_ac_var=no"
7645fi 8183fi
7646rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8184rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7671,37 +8209,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7671else 8209else
7672 cat >conftest.$ac_ext <<_ACEOF 8210 cat >conftest.$ac_ext <<_ACEOF
7673#line $LINENO "configure" 8211#line $LINENO "configure"
7674#include "confdefs.h" 8212/* confdefs.h. */
8213_ACEOF
8214cat confdefs.h >>conftest.$ac_ext
8215cat >>conftest.$ac_ext <<_ACEOF
8216/* end confdefs.h. */
7675/* System header to define __stub macros and hopefully few prototypes, 8217/* System header to define __stub macros and hopefully few prototypes,
7676 which can conflict with char $ac_func (); below. */ 8218 which can conflict with char $ac_func (); below.
7677#include <assert.h> 8219 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8220 <limits.h> exists even on freestanding compilers. */
8221#ifdef __STDC__
8222# include <limits.h>
8223#else
8224# include <assert.h>
8225#endif
7678/* Override any gcc2 internal prototype to avoid an error. */ 8226/* Override any gcc2 internal prototype to avoid an error. */
7679#ifdef __cplusplus 8227#ifdef __cplusplus
7680extern "C" 8228extern "C"
8229{
7681#endif 8230#endif
7682/* We use char because int might match the return type of a gcc2 8231/* We use char because int might match the return type of a gcc2
7683 builtin and then its argument prototype would still apply. */ 8232 builtin and then its argument prototype would still apply. */
7684char $ac_func (); 8233char $ac_func ();
7685char (*f) ();
7686
7687#ifdef F77_DUMMY_MAIN
7688# ifdef __cplusplus
7689 extern "C"
7690# endif
7691 int F77_DUMMY_MAIN() { return 1; }
7692#endif
7693int
7694main ()
7695{
7696/* The GNU C library defines this for functions which it implements 8234/* The GNU C library defines this for functions which it implements
7697 to always fail with ENOSYS. Some functions are actually named 8235 to always fail with ENOSYS. Some functions are actually named
7698 something starting with __ and the normal name is an alias. */ 8236 something starting with __ and the normal name is an alias. */
7699#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 8237#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7700choke me 8238choke me
7701#else 8239#else
7702f = $ac_func; 8240char (*f) () = $ac_func;
8241#endif
8242#ifdef __cplusplus
8243}
7703#endif 8244#endif
7704 8245
8246int
8247main ()
8248{
8249return f != $ac_func;
7705 ; 8250 ;
7706 return 0; 8251 return 0;
7707} 8252}
@@ -7721,7 +8266,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7721 eval "$as_ac_var=yes" 8266 eval "$as_ac_var=yes"
7722else 8267else
7723 echo "$as_me: failed program was:" >&5 8268 echo "$as_me: failed program was:" >&5
7724cat conftest.$ac_ext >&5 8269sed 's/^/| /' conftest.$ac_ext >&5
8270
7725eval "$as_ac_var=no" 8271eval "$as_ac_var=no"
7726fi 8272fi
7727rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8273rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7747,37 +8293,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7747else 8293else
7748 cat >conftest.$ac_ext <<_ACEOF 8294 cat >conftest.$ac_ext <<_ACEOF
7749#line $LINENO "configure" 8295#line $LINENO "configure"
7750#include "confdefs.h" 8296/* confdefs.h. */
8297_ACEOF
8298cat confdefs.h >>conftest.$ac_ext
8299cat >>conftest.$ac_ext <<_ACEOF
8300/* end confdefs.h. */
7751/* System header to define __stub macros and hopefully few prototypes, 8301/* System header to define __stub macros and hopefully few prototypes,
7752 which can conflict with char $ac_func (); below. */ 8302 which can conflict with char $ac_func (); below.
7753#include <assert.h> 8303 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8304 <limits.h> exists even on freestanding compilers. */
8305#ifdef __STDC__
8306# include <limits.h>
8307#else
8308# include <assert.h>
8309#endif
7754/* Override any gcc2 internal prototype to avoid an error. */ 8310/* Override any gcc2 internal prototype to avoid an error. */
7755#ifdef __cplusplus 8311#ifdef __cplusplus
7756extern "C" 8312extern "C"
8313{
7757#endif 8314#endif
7758/* We use char because int might match the return type of a gcc2 8315/* We use char because int might match the return type of a gcc2
7759 builtin and then its argument prototype would still apply. */ 8316 builtin and then its argument prototype would still apply. */
7760char $ac_func (); 8317char $ac_func ();
7761char (*f) ();
7762
7763#ifdef F77_DUMMY_MAIN
7764# ifdef __cplusplus
7765 extern "C"
7766# endif
7767 int F77_DUMMY_MAIN() { return 1; }
7768#endif
7769int
7770main ()
7771{
7772/* The GNU C library defines this for functions which it implements 8318/* The GNU C library defines this for functions which it implements
7773 to always fail with ENOSYS. Some functions are actually named 8319 to always fail with ENOSYS. Some functions are actually named
7774 something starting with __ and the normal name is an alias. */ 8320 something starting with __ and the normal name is an alias. */
7775#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 8321#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7776choke me 8322choke me
7777#else 8323#else
7778f = $ac_func; 8324char (*f) () = $ac_func;
8325#endif
8326#ifdef __cplusplus
8327}
7779#endif 8328#endif
7780 8329
8330int
8331main ()
8332{
8333return f != $ac_func;
7781 ; 8334 ;
7782 return 0; 8335 return 0;
7783} 8336}
@@ -7797,7 +8350,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7797 eval "$as_ac_var=yes" 8350 eval "$as_ac_var=yes"
7798else 8351else
7799 echo "$as_me: failed program was:" >&5 8352 echo "$as_me: failed program was:" >&5
7800cat conftest.$ac_ext >&5 8353sed 's/^/| /' conftest.$ac_ext >&5
8354
7801eval "$as_ac_var=no" 8355eval "$as_ac_var=no"
7802fi 8356fi
7803rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8357rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7827,37 +8381,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7827else 8381else
7828 cat >conftest.$ac_ext <<_ACEOF 8382 cat >conftest.$ac_ext <<_ACEOF
7829#line $LINENO "configure" 8383#line $LINENO "configure"
7830#include "confdefs.h" 8384/* confdefs.h. */
8385_ACEOF
8386cat confdefs.h >>conftest.$ac_ext
8387cat >>conftest.$ac_ext <<_ACEOF
8388/* end confdefs.h. */
7831/* System header to define __stub macros and hopefully few prototypes, 8389/* System header to define __stub macros and hopefully few prototypes,
7832 which can conflict with char $ac_func (); below. */ 8390 which can conflict with char $ac_func (); below.
7833#include <assert.h> 8391 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8392 <limits.h> exists even on freestanding compilers. */
8393#ifdef __STDC__
8394# include <limits.h>
8395#else
8396# include <assert.h>
8397#endif
7834/* Override any gcc2 internal prototype to avoid an error. */ 8398/* Override any gcc2 internal prototype to avoid an error. */
7835#ifdef __cplusplus 8399#ifdef __cplusplus
7836extern "C" 8400extern "C"
8401{
7837#endif 8402#endif
7838/* We use char because int might match the return type of a gcc2 8403/* We use char because int might match the return type of a gcc2
7839 builtin and then its argument prototype would still apply. */ 8404 builtin and then its argument prototype would still apply. */
7840char $ac_func (); 8405char $ac_func ();
7841char (*f) ();
7842
7843#ifdef F77_DUMMY_MAIN
7844# ifdef __cplusplus
7845 extern "C"
7846# endif
7847 int F77_DUMMY_MAIN() { return 1; }
7848#endif
7849int
7850main ()
7851{
7852/* The GNU C library defines this for functions which it implements 8406/* The GNU C library defines this for functions which it implements
7853 to always fail with ENOSYS. Some functions are actually named 8407 to always fail with ENOSYS. Some functions are actually named
7854 something starting with __ and the normal name is an alias. */ 8408 something starting with __ and the normal name is an alias. */
7855#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 8409#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7856choke me 8410choke me
7857#else 8411#else
7858f = $ac_func; 8412char (*f) () = $ac_func;
8413#endif
8414#ifdef __cplusplus
8415}
7859#endif 8416#endif
7860 8417
8418int
8419main ()
8420{
8421return f != $ac_func;
7861 ; 8422 ;
7862 return 0; 8423 return 0;
7863} 8424}
@@ -7877,7 +8438,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7877 eval "$as_ac_var=yes" 8438 eval "$as_ac_var=yes"
7878else 8439else
7879 echo "$as_me: failed program was:" >&5 8440 echo "$as_me: failed program was:" >&5
7880cat conftest.$ac_ext >&5 8441sed 's/^/| /' conftest.$ac_ext >&5
8442
7881eval "$as_ac_var=no" 8443eval "$as_ac_var=no"
7882fi 8444fi
7883rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8445rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7904,37 +8466,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
7904else 8466else
7905 cat >conftest.$ac_ext <<_ACEOF 8467 cat >conftest.$ac_ext <<_ACEOF
7906#line $LINENO "configure" 8468#line $LINENO "configure"
7907#include "confdefs.h" 8469/* confdefs.h. */
8470_ACEOF
8471cat confdefs.h >>conftest.$ac_ext
8472cat >>conftest.$ac_ext <<_ACEOF
8473/* end confdefs.h. */
7908/* System header to define __stub macros and hopefully few prototypes, 8474/* System header to define __stub macros and hopefully few prototypes,
7909 which can conflict with char $ac_func (); below. */ 8475 which can conflict with char $ac_func (); below.
7910#include <assert.h> 8476 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8477 <limits.h> exists even on freestanding compilers. */
8478#ifdef __STDC__
8479# include <limits.h>
8480#else
8481# include <assert.h>
8482#endif
7911/* Override any gcc2 internal prototype to avoid an error. */ 8483/* Override any gcc2 internal prototype to avoid an error. */
7912#ifdef __cplusplus 8484#ifdef __cplusplus
7913extern "C" 8485extern "C"
8486{
7914#endif 8487#endif
7915/* We use char because int might match the return type of a gcc2 8488/* We use char because int might match the return type of a gcc2
7916 builtin and then its argument prototype would still apply. */ 8489 builtin and then its argument prototype would still apply. */
7917char $ac_func (); 8490char $ac_func ();
7918char (*f) ();
7919
7920#ifdef F77_DUMMY_MAIN
7921# ifdef __cplusplus
7922 extern "C"
7923# endif
7924 int F77_DUMMY_MAIN() { return 1; }
7925#endif
7926int
7927main ()
7928{
7929/* The GNU C library defines this for functions which it implements 8491/* The GNU C library defines this for functions which it implements
7930 to always fail with ENOSYS. Some functions are actually named 8492 to always fail with ENOSYS. Some functions are actually named
7931 something starting with __ and the normal name is an alias. */ 8493 something starting with __ and the normal name is an alias. */
7932#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 8494#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7933choke me 8495choke me
7934#else 8496#else
7935f = $ac_func; 8497char (*f) () = $ac_func;
8498#endif
8499#ifdef __cplusplus
8500}
7936#endif 8501#endif
7937 8502
8503int
8504main ()
8505{
8506return f != $ac_func;
7938 ; 8507 ;
7939 return 0; 8508 return 0;
7940} 8509}
@@ -7954,7 +8523,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7954 eval "$as_ac_var=yes" 8523 eval "$as_ac_var=yes"
7955else 8524else
7956 echo "$as_me: failed program was:" >&5 8525 echo "$as_me: failed program was:" >&5
7957cat conftest.$ac_ext >&5 8526sed 's/^/| /' conftest.$ac_ext >&5
8527
7958eval "$as_ac_var=no" 8528eval "$as_ac_var=no"
7959fi 8529fi
7960rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8530rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -7977,37 +8547,44 @@ if test "${ac_cv_func_daemon+set}" = set; then
7977else 8547else
7978 cat >conftest.$ac_ext <<_ACEOF 8548 cat >conftest.$ac_ext <<_ACEOF
7979#line $LINENO "configure" 8549#line $LINENO "configure"
7980#include "confdefs.h" 8550/* confdefs.h. */
8551_ACEOF
8552cat confdefs.h >>conftest.$ac_ext
8553cat >>conftest.$ac_ext <<_ACEOF
8554/* end confdefs.h. */
7981/* System header to define __stub macros and hopefully few prototypes, 8555/* System header to define __stub macros and hopefully few prototypes,
7982 which can conflict with char daemon (); below. */ 8556 which can conflict with char daemon (); below.
7983#include <assert.h> 8557 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8558 <limits.h> exists even on freestanding compilers. */
8559#ifdef __STDC__
8560# include <limits.h>
8561#else
8562# include <assert.h>
8563#endif
7984/* Override any gcc2 internal prototype to avoid an error. */ 8564/* Override any gcc2 internal prototype to avoid an error. */
7985#ifdef __cplusplus 8565#ifdef __cplusplus
7986extern "C" 8566extern "C"
8567{
7987#endif 8568#endif
7988/* We use char because int might match the return type of a gcc2 8569/* We use char because int might match the return type of a gcc2
7989 builtin and then its argument prototype would still apply. */ 8570 builtin and then its argument prototype would still apply. */
7990char daemon (); 8571char daemon ();
7991char (*f) ();
7992
7993#ifdef F77_DUMMY_MAIN
7994# ifdef __cplusplus
7995 extern "C"
7996# endif
7997 int F77_DUMMY_MAIN() { return 1; }
7998#endif
7999int
8000main ()
8001{
8002/* The GNU C library defines this for functions which it implements 8572/* The GNU C library defines this for functions which it implements
8003 to always fail with ENOSYS. Some functions are actually named 8573 to always fail with ENOSYS. Some functions are actually named
8004 something starting with __ and the normal name is an alias. */ 8574 something starting with __ and the normal name is an alias. */
8005#if defined (__stub_daemon) || defined (__stub___daemon) 8575#if defined (__stub_daemon) || defined (__stub___daemon)
8006choke me 8576choke me
8007#else 8577#else
8008f = daemon; 8578char (*f) () = daemon;
8579#endif
8580#ifdef __cplusplus
8581}
8009#endif 8582#endif
8010 8583
8584int
8585main ()
8586{
8587return f != daemon;
8011 ; 8588 ;
8012 return 0; 8589 return 0;
8013} 8590}
@@ -8027,7 +8604,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8027 ac_cv_func_daemon=yes 8604 ac_cv_func_daemon=yes
8028else 8605else
8029 echo "$as_me: failed program was:" >&5 8606 echo "$as_me: failed program was:" >&5
8030cat conftest.$ac_ext >&5 8607sed 's/^/| /' conftest.$ac_ext >&5
8608
8031ac_cv_func_daemon=no 8609ac_cv_func_daemon=no
8032fi 8610fi
8033rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8611rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8049,7 +8627,11 @@ else
8049LIBS="-lbsd $LIBS" 8627LIBS="-lbsd $LIBS"
8050cat >conftest.$ac_ext <<_ACEOF 8628cat >conftest.$ac_ext <<_ACEOF
8051#line $LINENO "configure" 8629#line $LINENO "configure"
8052#include "confdefs.h" 8630/* confdefs.h. */
8631_ACEOF
8632cat confdefs.h >>conftest.$ac_ext
8633cat >>conftest.$ac_ext <<_ACEOF
8634/* end confdefs.h. */
8053 8635
8054/* Override any gcc2 internal prototype to avoid an error. */ 8636/* Override any gcc2 internal prototype to avoid an error. */
8055#ifdef __cplusplus 8637#ifdef __cplusplus
@@ -8058,12 +8640,6 @@ extern "C"
8058/* We use char because int might match the return type of a gcc2 8640/* We use char because int might match the return type of a gcc2
8059 builtin and then its argument prototype would still apply. */ 8641 builtin and then its argument prototype would still apply. */
8060char daemon (); 8642char daemon ();
8061#ifdef F77_DUMMY_MAIN
8062# ifdef __cplusplus
8063 extern "C"
8064# endif
8065 int F77_DUMMY_MAIN() { return 1; }
8066#endif
8067int 8643int
8068main () 8644main ()
8069{ 8645{
@@ -8087,7 +8663,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8087 ac_cv_lib_bsd_daemon=yes 8663 ac_cv_lib_bsd_daemon=yes
8088else 8664else
8089 echo "$as_me: failed program was:" >&5 8665 echo "$as_me: failed program was:" >&5
8090cat conftest.$ac_ext >&5 8666sed 's/^/| /' conftest.$ac_ext >&5
8667
8091ac_cv_lib_bsd_daemon=no 8668ac_cv_lib_bsd_daemon=no
8092fi 8669fi
8093rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8670rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8113,37 +8690,44 @@ if test "${ac_cv_func_getpagesize+set}" = set; then
8113else 8690else
8114 cat >conftest.$ac_ext <<_ACEOF 8691 cat >conftest.$ac_ext <<_ACEOF
8115#line $LINENO "configure" 8692#line $LINENO "configure"
8116#include "confdefs.h" 8693/* confdefs.h. */
8694_ACEOF
8695cat confdefs.h >>conftest.$ac_ext
8696cat >>conftest.$ac_ext <<_ACEOF
8697/* end confdefs.h. */
8117/* System header to define __stub macros and hopefully few prototypes, 8698/* System header to define __stub macros and hopefully few prototypes,
8118 which can conflict with char getpagesize (); below. */ 8699 which can conflict with char getpagesize (); below.
8119#include <assert.h> 8700 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8701 <limits.h> exists even on freestanding compilers. */
8702#ifdef __STDC__
8703# include <limits.h>
8704#else
8705# include <assert.h>
8706#endif
8120/* Override any gcc2 internal prototype to avoid an error. */ 8707/* Override any gcc2 internal prototype to avoid an error. */
8121#ifdef __cplusplus 8708#ifdef __cplusplus
8122extern "C" 8709extern "C"
8710{
8123#endif 8711#endif
8124/* We use char because int might match the return type of a gcc2 8712/* We use char because int might match the return type of a gcc2
8125 builtin and then its argument prototype would still apply. */ 8713 builtin and then its argument prototype would still apply. */
8126char getpagesize (); 8714char getpagesize ();
8127char (*f) ();
8128
8129#ifdef F77_DUMMY_MAIN
8130# ifdef __cplusplus
8131 extern "C"
8132# endif
8133 int F77_DUMMY_MAIN() { return 1; }
8134#endif
8135int
8136main ()
8137{
8138/* The GNU C library defines this for functions which it implements 8715/* The GNU C library defines this for functions which it implements
8139 to always fail with ENOSYS. Some functions are actually named 8716 to always fail with ENOSYS. Some functions are actually named
8140 something starting with __ and the normal name is an alias. */ 8717 something starting with __ and the normal name is an alias. */
8141#if defined (__stub_getpagesize) || defined (__stub___getpagesize) 8718#if defined (__stub_getpagesize) || defined (__stub___getpagesize)
8142choke me 8719choke me
8143#else 8720#else
8144f = getpagesize; 8721char (*f) () = getpagesize;
8722#endif
8723#ifdef __cplusplus
8724}
8145#endif 8725#endif
8146 8726
8727int
8728main ()
8729{
8730return f != getpagesize;
8147 ; 8731 ;
8148 return 0; 8732 return 0;
8149} 8733}
@@ -8163,7 +8747,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8163 ac_cv_func_getpagesize=yes 8747 ac_cv_func_getpagesize=yes
8164else 8748else
8165 echo "$as_me: failed program was:" >&5 8749 echo "$as_me: failed program was:" >&5
8166cat conftest.$ac_ext >&5 8750sed 's/^/| /' conftest.$ac_ext >&5
8751
8167ac_cv_func_getpagesize=no 8752ac_cv_func_getpagesize=no
8168fi 8753fi
8169rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8754rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8185,7 +8770,11 @@ else
8185LIBS="-lucb $LIBS" 8770LIBS="-lucb $LIBS"
8186cat >conftest.$ac_ext <<_ACEOF 8771cat >conftest.$ac_ext <<_ACEOF
8187#line $LINENO "configure" 8772#line $LINENO "configure"
8188#include "confdefs.h" 8773/* confdefs.h. */
8774_ACEOF
8775cat confdefs.h >>conftest.$ac_ext
8776cat >>conftest.$ac_ext <<_ACEOF
8777/* end confdefs.h. */
8189 8778
8190/* Override any gcc2 internal prototype to avoid an error. */ 8779/* Override any gcc2 internal prototype to avoid an error. */
8191#ifdef __cplusplus 8780#ifdef __cplusplus
@@ -8194,12 +8783,6 @@ extern "C"
8194/* We use char because int might match the return type of a gcc2 8783/* We use char because int might match the return type of a gcc2
8195 builtin and then its argument prototype would still apply. */ 8784 builtin and then its argument prototype would still apply. */
8196char getpagesize (); 8785char getpagesize ();
8197#ifdef F77_DUMMY_MAIN
8198# ifdef __cplusplus
8199 extern "C"
8200# endif
8201 int F77_DUMMY_MAIN() { return 1; }
8202#endif
8203int 8786int
8204main () 8787main ()
8205{ 8788{
@@ -8223,7 +8806,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8223 ac_cv_lib_ucb_getpagesize=yes 8806 ac_cv_lib_ucb_getpagesize=yes
8224else 8807else
8225 echo "$as_me: failed program was:" >&5 8808 echo "$as_me: failed program was:" >&5
8226cat conftest.$ac_ext >&5 8809sed 's/^/| /' conftest.$ac_ext >&5
8810
8227ac_cv_lib_ucb_getpagesize=no 8811ac_cv_lib_ucb_getpagesize=no
8228fi 8812fi
8229rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8813rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8247,13 +8831,19 @@ if test "x$ac_cv_func_snprintf" = "xyes" ; then
8247 echo "$as_me:$LINENO: checking whether snprintf correctly terminates long strings" >&5 8831 echo "$as_me:$LINENO: checking whether snprintf correctly terminates long strings" >&5
8248echo $ECHO_N "checking whether snprintf correctly terminates long strings... $ECHO_C" >&6 8832echo $ECHO_N "checking whether snprintf correctly terminates long strings... $ECHO_C" >&6
8249 if test "$cross_compiling" = yes; then 8833 if test "$cross_compiling" = yes; then
8250 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 8834 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
8251echo "$as_me: error: cannot run test program while cross compiling" >&2;} 8835See \`config.log' for more details." >&5
8836echo "$as_me: error: cannot run test program while cross compiling
8837See \`config.log' for more details." >&2;}
8252 { (exit 1); exit 1; }; } 8838 { (exit 1); exit 1; }; }
8253else 8839else
8254 cat >conftest.$ac_ext <<_ACEOF 8840 cat >conftest.$ac_ext <<_ACEOF
8255#line $LINENO "configure" 8841#line $LINENO "configure"
8256#include "confdefs.h" 8842/* confdefs.h. */
8843_ACEOF
8844cat confdefs.h >>conftest.$ac_ext
8845cat >>conftest.$ac_ext <<_ACEOF
8846/* end confdefs.h. */
8257 8847
8258#include <stdio.h> 8848#include <stdio.h>
8259int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');} 8849int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
@@ -8275,7 +8865,8 @@ echo "${ECHO_T}yes" >&6
8275else 8865else
8276 echo "$as_me: program exited with status $ac_status" >&5 8866 echo "$as_me: program exited with status $ac_status" >&5
8277echo "$as_me: failed program was:" >&5 8867echo "$as_me: failed program was:" >&5
8278cat conftest.$ac_ext >&5 8868sed 's/^/| /' conftest.$ac_ext >&5
8869
8279( exit $ac_status ) 8870( exit $ac_status )
8280 8871
8281 echo "$as_me:$LINENO: result: no" >&5 8872 echo "$as_me:$LINENO: result: no" >&5
@@ -8289,7 +8880,7 @@ echo "$as_me: WARNING: ****** Your snprintf() function is broken, complain to yo
8289 8880
8290 8881
8291fi 8882fi
8292rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 8883rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
8293fi 8884fi
8294fi 8885fi
8295 8886
@@ -8309,7 +8900,11 @@ _ACEOF
8309else 8900else
8310 cat >conftest.$ac_ext <<_ACEOF 8901 cat >conftest.$ac_ext <<_ACEOF
8311#line $LINENO "configure" 8902#line $LINENO "configure"
8312#include "confdefs.h" 8903/* confdefs.h. */
8904_ACEOF
8905cat confdefs.h >>conftest.$ac_ext
8906cat >>conftest.$ac_ext <<_ACEOF
8907/* end confdefs.h. */
8313 8908
8314#include <stdlib.h> 8909#include <stdlib.h>
8315main() { char template[]="conftest.mkstemp-test"; 8910main() { char template[]="conftest.mkstemp-test";
@@ -8337,7 +8932,8 @@ echo "${ECHO_T}no" >&6
8337else 8932else
8338 echo "$as_me: program exited with status $ac_status" >&5 8933 echo "$as_me: program exited with status $ac_status" >&5
8339echo "$as_me: failed program was:" >&5 8934echo "$as_me: failed program was:" >&5
8340cat conftest.$ac_ext >&5 8935sed 's/^/| /' conftest.$ac_ext >&5
8936
8341( exit $ac_status ) 8937( exit $ac_status )
8342 8938
8343 echo "$as_me:$LINENO: result: yes" >&5 8939 echo "$as_me:$LINENO: result: yes" >&5
@@ -8348,7 +8944,7 @@ _ACEOF
8348 8944
8349 8945
8350fi 8946fi
8351rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 8947rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
8352fi 8948fi
8353fi 8949fi
8354 8950
@@ -8360,14 +8956,12 @@ else
8360 # Use it with a single arg. 8956 # Use it with a single arg.
8361cat >conftest.$ac_ext <<_ACEOF 8957cat >conftest.$ac_ext <<_ACEOF
8362#line $LINENO "configure" 8958#line $LINENO "configure"
8363#include "confdefs.h" 8959/* confdefs.h. */
8960_ACEOF
8961cat confdefs.h >>conftest.$ac_ext
8962cat >>conftest.$ac_ext <<_ACEOF
8963/* end confdefs.h. */
8364$ac_includes_default 8964$ac_includes_default
8365#ifdef F77_DUMMY_MAIN
8366# ifdef __cplusplus
8367 extern "C"
8368# endif
8369 int F77_DUMMY_MAIN() { return 1; }
8370#endif
8371int 8965int
8372main () 8966main ()
8373{ 8967{
@@ -8391,7 +8985,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8391 ac_cv_func_getpgrp_void=no 8985 ac_cv_func_getpgrp_void=no
8392else 8986else
8393 echo "$as_me: failed program was:" >&5 8987 echo "$as_me: failed program was:" >&5
8394cat conftest.$ac_ext >&5 8988sed 's/^/| /' conftest.$ac_ext >&5
8989
8395ac_cv_func_getpgrp_void=yes 8990ac_cv_func_getpgrp_void=yes
8396fi 8991fi
8397rm -f conftest.$ac_objext conftest.$ac_ext 8992rm -f conftest.$ac_objext conftest.$ac_ext
@@ -8432,7 +9027,11 @@ else
8432LIBS="-ldl $LIBS" 9027LIBS="-ldl $LIBS"
8433cat >conftest.$ac_ext <<_ACEOF 9028cat >conftest.$ac_ext <<_ACEOF
8434#line $LINENO "configure" 9029#line $LINENO "configure"
8435#include "confdefs.h" 9030/* confdefs.h. */
9031_ACEOF
9032cat confdefs.h >>conftest.$ac_ext
9033cat >>conftest.$ac_ext <<_ACEOF
9034/* end confdefs.h. */
8436 9035
8437/* Override any gcc2 internal prototype to avoid an error. */ 9036/* Override any gcc2 internal prototype to avoid an error. */
8438#ifdef __cplusplus 9037#ifdef __cplusplus
@@ -8441,12 +9040,6 @@ extern "C"
8441/* We use char because int might match the return type of a gcc2 9040/* We use char because int might match the return type of a gcc2
8442 builtin and then its argument prototype would still apply. */ 9041 builtin and then its argument prototype would still apply. */
8443char dlopen (); 9042char dlopen ();
8444#ifdef F77_DUMMY_MAIN
8445# ifdef __cplusplus
8446 extern "C"
8447# endif
8448 int F77_DUMMY_MAIN() { return 1; }
8449#endif
8450int 9043int
8451main () 9044main ()
8452{ 9045{
@@ -8470,7 +9063,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8470 ac_cv_lib_dl_dlopen=yes 9063 ac_cv_lib_dl_dlopen=yes
8471else 9064else
8472 echo "$as_me: failed program was:" >&5 9065 echo "$as_me: failed program was:" >&5
8473cat conftest.$ac_ext >&5 9066sed 's/^/| /' conftest.$ac_ext >&5
9067
8474ac_cv_lib_dl_dlopen=no 9068ac_cv_lib_dl_dlopen=no
8475fi 9069fi
8476rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 9070rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8497,7 +9091,11 @@ else
8497LIBS="-lpam $LIBS" 9091LIBS="-lpam $LIBS"
8498cat >conftest.$ac_ext <<_ACEOF 9092cat >conftest.$ac_ext <<_ACEOF
8499#line $LINENO "configure" 9093#line $LINENO "configure"
8500#include "confdefs.h" 9094/* confdefs.h. */
9095_ACEOF
9096cat confdefs.h >>conftest.$ac_ext
9097cat >>conftest.$ac_ext <<_ACEOF
9098/* end confdefs.h. */
8501 9099
8502/* Override any gcc2 internal prototype to avoid an error. */ 9100/* Override any gcc2 internal prototype to avoid an error. */
8503#ifdef __cplusplus 9101#ifdef __cplusplus
@@ -8506,12 +9104,6 @@ extern "C"
8506/* We use char because int might match the return type of a gcc2 9104/* We use char because int might match the return type of a gcc2
8507 builtin and then its argument prototype would still apply. */ 9105 builtin and then its argument prototype would still apply. */
8508char pam_set_item (); 9106char pam_set_item ();
8509#ifdef F77_DUMMY_MAIN
8510# ifdef __cplusplus
8511 extern "C"
8512# endif
8513 int F77_DUMMY_MAIN() { return 1; }
8514#endif
8515int 9107int
8516main () 9108main ()
8517{ 9109{
@@ -8535,7 +9127,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8535 ac_cv_lib_pam_pam_set_item=yes 9127 ac_cv_lib_pam_pam_set_item=yes
8536else 9128else
8537 echo "$as_me: failed program was:" >&5 9129 echo "$as_me: failed program was:" >&5
8538cat conftest.$ac_ext >&5 9130sed 's/^/| /' conftest.$ac_ext >&5
9131
8539ac_cv_lib_pam_pam_set_item=no 9132ac_cv_lib_pam_pam_set_item=no
8540fi 9133fi
8541rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 9134rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8567,37 +9160,44 @@ if eval "test \"\${$as_ac_var+set}\" = set"; then
8567else 9160else
8568 cat >conftest.$ac_ext <<_ACEOF 9161 cat >conftest.$ac_ext <<_ACEOF
8569#line $LINENO "configure" 9162#line $LINENO "configure"
8570#include "confdefs.h" 9163/* confdefs.h. */
9164_ACEOF
9165cat confdefs.h >>conftest.$ac_ext
9166cat >>conftest.$ac_ext <<_ACEOF
9167/* end confdefs.h. */
8571/* System header to define __stub macros and hopefully few prototypes, 9168/* System header to define __stub macros and hopefully few prototypes,
8572 which can conflict with char $ac_func (); below. */ 9169 which can conflict with char $ac_func (); below.
8573#include <assert.h> 9170 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9171 <limits.h> exists even on freestanding compilers. */
9172#ifdef __STDC__
9173# include <limits.h>
9174#else
9175# include <assert.h>
9176#endif
8574/* Override any gcc2 internal prototype to avoid an error. */ 9177/* Override any gcc2 internal prototype to avoid an error. */
8575#ifdef __cplusplus 9178#ifdef __cplusplus
8576extern "C" 9179extern "C"
9180{
8577#endif 9181#endif
8578/* We use char because int might match the return type of a gcc2 9182/* We use char because int might match the return type of a gcc2
8579 builtin and then its argument prototype would still apply. */ 9183 builtin and then its argument prototype would still apply. */
8580char $ac_func (); 9184char $ac_func ();
8581char (*f) ();
8582
8583#ifdef F77_DUMMY_MAIN
8584# ifdef __cplusplus
8585 extern "C"
8586# endif
8587 int F77_DUMMY_MAIN() { return 1; }
8588#endif
8589int
8590main ()
8591{
8592/* The GNU C library defines this for functions which it implements 9185/* The GNU C library defines this for functions which it implements
8593 to always fail with ENOSYS. Some functions are actually named 9186 to always fail with ENOSYS. Some functions are actually named
8594 something starting with __ and the normal name is an alias. */ 9187 something starting with __ and the normal name is an alias. */
8595#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 9188#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
8596choke me 9189choke me
8597#else 9190#else
8598f = $ac_func; 9191char (*f) () = $ac_func;
9192#endif
9193#ifdef __cplusplus
9194}
8599#endif 9195#endif
8600 9196
9197int
9198main ()
9199{
9200return f != $ac_func;
8601 ; 9201 ;
8602 return 0; 9202 return 0;
8603} 9203}
@@ -8617,7 +9217,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8617 eval "$as_ac_var=yes" 9217 eval "$as_ac_var=yes"
8618else 9218else
8619 echo "$as_me: failed program was:" >&5 9219 echo "$as_me: failed program was:" >&5
8620cat conftest.$ac_ext >&5 9220sed 's/^/| /' conftest.$ac_ext >&5
9221
8621eval "$as_ac_var=no" 9222eval "$as_ac_var=no"
8622fi 9223fi
8623rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 9224rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8658,17 +9259,15 @@ if test "x$PAM_MSG" = "xyes" ; then
8658echo $ECHO_N "checking whether pam_strerror takes only one argument... $ECHO_C" >&6 9259echo $ECHO_N "checking whether pam_strerror takes only one argument... $ECHO_C" >&6
8659 cat >conftest.$ac_ext <<_ACEOF 9260 cat >conftest.$ac_ext <<_ACEOF
8660#line $LINENO "configure" 9261#line $LINENO "configure"
8661#include "confdefs.h" 9262/* confdefs.h. */
9263_ACEOF
9264cat confdefs.h >>conftest.$ac_ext
9265cat >>conftest.$ac_ext <<_ACEOF
9266/* end confdefs.h. */
8662 9267
8663#include <stdlib.h> 9268#include <stdlib.h>
8664#include <security/pam_appl.h> 9269#include <security/pam_appl.h>
8665 9270
8666#ifdef F77_DUMMY_MAIN
8667# ifdef __cplusplus
8668 extern "C"
8669# endif
8670 int F77_DUMMY_MAIN() { return 1; }
8671#endif
8672int 9271int
8673main () 9272main ()
8674{ 9273{
@@ -8693,7 +9292,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8693echo "${ECHO_T}no" >&6 9292echo "${ECHO_T}no" >&6
8694else 9293else
8695 echo "$as_me: failed program was:" >&5 9294 echo "$as_me: failed program was:" >&5
8696cat conftest.$ac_ext >&5 9295sed 's/^/| /' conftest.$ac_ext >&5
9296
8697 9297
8698 cat >>confdefs.h <<\_ACEOF 9298 cat >>confdefs.h <<\_ACEOF
8699#define HAVE_OLD_PAM 1 9299#define HAVE_OLD_PAM 1
@@ -8721,7 +9321,11 @@ else
8721LIBS="-lcrypt $LIBS" 9321LIBS="-lcrypt $LIBS"
8722cat >conftest.$ac_ext <<_ACEOF 9322cat >conftest.$ac_ext <<_ACEOF
8723#line $LINENO "configure" 9323#line $LINENO "configure"
8724#include "confdefs.h" 9324/* confdefs.h. */
9325_ACEOF
9326cat confdefs.h >>conftest.$ac_ext
9327cat >>conftest.$ac_ext <<_ACEOF
9328/* end confdefs.h. */
8725 9329
8726/* Override any gcc2 internal prototype to avoid an error. */ 9330/* Override any gcc2 internal prototype to avoid an error. */
8727#ifdef __cplusplus 9331#ifdef __cplusplus
@@ -8730,12 +9334,6 @@ extern "C"
8730/* We use char because int might match the return type of a gcc2 9334/* We use char because int might match the return type of a gcc2
8731 builtin and then its argument prototype would still apply. */ 9335 builtin and then its argument prototype would still apply. */
8732char crypt (); 9336char crypt ();
8733#ifdef F77_DUMMY_MAIN
8734# ifdef __cplusplus
8735 extern "C"
8736# endif
8737 int F77_DUMMY_MAIN() { return 1; }
8738#endif
8739int 9337int
8740main () 9338main ()
8741{ 9339{
@@ -8759,7 +9357,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8759 ac_cv_lib_crypt_crypt=yes 9357 ac_cv_lib_crypt_crypt=yes
8760else 9358else
8761 echo "$as_me: failed program was:" >&5 9359 echo "$as_me: failed program was:" >&5
8762cat conftest.$ac_ext >&5 9360sed 's/^/| /' conftest.$ac_ext >&5
9361
8763ac_cv_lib_crypt_crypt=no 9362ac_cv_lib_crypt_crypt=no
8764fi 9363fi
8765rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 9364rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -8812,7 +9411,11 @@ fi;
8812LIBS="$LIBS -lcrypto" 9411LIBS="$LIBS -lcrypto"
8813cat >conftest.$ac_ext <<_ACEOF 9412cat >conftest.$ac_ext <<_ACEOF
8814#line $LINENO "configure" 9413#line $LINENO "configure"
8815#include "confdefs.h" 9414/* confdefs.h. */
9415_ACEOF
9416cat confdefs.h >>conftest.$ac_ext
9417cat >>conftest.$ac_ext <<_ACEOF
9418/* end confdefs.h. */
8816 9419
8817/* Override any gcc2 internal prototype to avoid an error. */ 9420/* Override any gcc2 internal prototype to avoid an error. */
8818#ifdef __cplusplus 9421#ifdef __cplusplus
@@ -8821,12 +9424,6 @@ extern "C"
8821/* We use char because int might match the return type of a gcc2 9424/* We use char because int might match the return type of a gcc2
8822 builtin and then its argument prototype would still apply. */ 9425 builtin and then its argument prototype would still apply. */
8823char RAND_add (); 9426char RAND_add ();
8824#ifdef F77_DUMMY_MAIN
8825# ifdef __cplusplus
8826 extern "C"
8827# endif
8828 int F77_DUMMY_MAIN() { return 1; }
8829#endif
8830int 9427int
8831main () 9428main ()
8832{ 9429{
@@ -8853,7 +9450,8 @@ _ACEOF
8853 9450
8854else 9451else
8855 echo "$as_me: failed program was:" >&5 9452 echo "$as_me: failed program was:" >&5
8856cat conftest.$ac_ext >&5 9453sed 's/^/| /' conftest.$ac_ext >&5
9454
8857 9455
8858 if test -n "${need_dash_r}"; then 9456 if test -n "${need_dash_r}"; then
8859 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}" 9457 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
@@ -8863,7 +9461,11 @@ cat conftest.$ac_ext >&5
8863 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}" 9461 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
8864 cat >conftest.$ac_ext <<_ACEOF 9462 cat >conftest.$ac_ext <<_ACEOF
8865#line $LINENO "configure" 9463#line $LINENO "configure"
8866#include "confdefs.h" 9464/* confdefs.h. */
9465_ACEOF
9466cat confdefs.h >>conftest.$ac_ext
9467cat >>conftest.$ac_ext <<_ACEOF
9468/* end confdefs.h. */
8867 9469
8868/* Override any gcc2 internal prototype to avoid an error. */ 9470/* Override any gcc2 internal prototype to avoid an error. */
8869#ifdef __cplusplus 9471#ifdef __cplusplus
@@ -8872,12 +9474,6 @@ extern "C"
8872/* We use char because int might match the return type of a gcc2 9474/* We use char because int might match the return type of a gcc2
8873 builtin and then its argument prototype would still apply. */ 9475 builtin and then its argument prototype would still apply. */
8874char RAND_add (); 9476char RAND_add ();
8875#ifdef F77_DUMMY_MAIN
8876# ifdef __cplusplus
8877 extern "C"
8878# endif
8879 int F77_DUMMY_MAIN() { return 1; }
8880#endif
8881int 9477int
8882main () 9478main ()
8883{ 9479{
@@ -8904,7 +9500,8 @@ _ACEOF
8904 9500
8905else 9501else
8906 echo "$as_me: failed program was:" >&5 9502 echo "$as_me: failed program was:" >&5
8907cat conftest.$ac_ext >&5 9503sed 's/^/| /' conftest.$ac_ext >&5
9504
8908 9505
8909 { { echo "$as_me:$LINENO: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&5 9506 { { echo "$as_me:$LINENO: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&5
8910echo "$as_me: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&2;} 9507echo "$as_me: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&2;}
@@ -8922,13 +9519,19 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8922echo "$as_me:$LINENO: checking OpenSSL header version" >&5 9519echo "$as_me:$LINENO: checking OpenSSL header version" >&5
8923echo $ECHO_N "checking OpenSSL header version... $ECHO_C" >&6 9520echo $ECHO_N "checking OpenSSL header version... $ECHO_C" >&6
8924if test "$cross_compiling" = yes; then 9521if test "$cross_compiling" = yes; then
8925 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 9522 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
8926echo "$as_me: error: cannot run test program while cross compiling" >&2;} 9523See \`config.log' for more details." >&5
9524echo "$as_me: error: cannot run test program while cross compiling
9525See \`config.log' for more details." >&2;}
8927 { (exit 1); exit 1; }; } 9526 { (exit 1); exit 1; }; }
8928else 9527else
8929 cat >conftest.$ac_ext <<_ACEOF 9528 cat >conftest.$ac_ext <<_ACEOF
8930#line $LINENO "configure" 9529#line $LINENO "configure"
8931#include "confdefs.h" 9530/* confdefs.h. */
9531_ACEOF
9532cat confdefs.h >>conftest.$ac_ext
9533cat >>conftest.$ac_ext <<_ACEOF
9534/* end confdefs.h. */
8932 9535
8933#include <stdio.h> 9536#include <stdio.h>
8934#include <string.h> 9537#include <string.h>
@@ -8968,7 +9571,8 @@ echo "${ECHO_T}$ssl_header_ver" >&6
8968else 9571else
8969 echo "$as_me: program exited with status $ac_status" >&5 9572 echo "$as_me: program exited with status $ac_status" >&5
8970echo "$as_me: failed program was:" >&5 9573echo "$as_me: failed program was:" >&5
8971cat conftest.$ac_ext >&5 9574sed 's/^/| /' conftest.$ac_ext >&5
9575
8972( exit $ac_status ) 9576( exit $ac_status )
8973 9577
8974 echo "$as_me:$LINENO: result: not found" >&5 9578 echo "$as_me:$LINENO: result: not found" >&5
@@ -8979,20 +9583,26 @@ echo "$as_me: error: OpenSSL version header not found." >&2;}
8979 9583
8980 9584
8981fi 9585fi
8982rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 9586rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
8983fi 9587fi
8984 9588
8985# Determine OpenSSL library version 9589# Determine OpenSSL library version
8986echo "$as_me:$LINENO: checking OpenSSL library version" >&5 9590echo "$as_me:$LINENO: checking OpenSSL library version" >&5
8987echo $ECHO_N "checking OpenSSL library version... $ECHO_C" >&6 9591echo $ECHO_N "checking OpenSSL library version... $ECHO_C" >&6
8988if test "$cross_compiling" = yes; then 9592if test "$cross_compiling" = yes; then
8989 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 9593 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
8990echo "$as_me: error: cannot run test program while cross compiling" >&2;} 9594See \`config.log' for more details." >&5
9595echo "$as_me: error: cannot run test program while cross compiling
9596See \`config.log' for more details." >&2;}
8991 { (exit 1); exit 1; }; } 9597 { (exit 1); exit 1; }; }
8992else 9598else
8993 cat >conftest.$ac_ext <<_ACEOF 9599 cat >conftest.$ac_ext <<_ACEOF
8994#line $LINENO "configure" 9600#line $LINENO "configure"
8995#include "confdefs.h" 9601/* confdefs.h. */
9602_ACEOF
9603cat confdefs.h >>conftest.$ac_ext
9604cat >>conftest.$ac_ext <<_ACEOF
9605/* end confdefs.h. */
8996 9606
8997#include <stdio.h> 9607#include <stdio.h>
8998#include <string.h> 9608#include <string.h>
@@ -9033,7 +9643,8 @@ echo "${ECHO_T}$ssl_library_ver" >&6
9033else 9643else
9034 echo "$as_me: program exited with status $ac_status" >&5 9644 echo "$as_me: program exited with status $ac_status" >&5
9035echo "$as_me: failed program was:" >&5 9645echo "$as_me: failed program was:" >&5
9036cat conftest.$ac_ext >&5 9646sed 's/^/| /' conftest.$ac_ext >&5
9647
9037( exit $ac_status ) 9648( exit $ac_status )
9038 9649
9039 echo "$as_me:$LINENO: result: not found" >&5 9650 echo "$as_me:$LINENO: result: not found" >&5
@@ -9044,20 +9655,26 @@ echo "$as_me: error: OpenSSL library not found." >&2;}
9044 9655
9045 9656
9046fi 9657fi
9047rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 9658rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
9048fi 9659fi
9049 9660
9050# Sanity check OpenSSL headers 9661# Sanity check OpenSSL headers
9051echo "$as_me:$LINENO: checking whether OpenSSL's headers match the library" >&5 9662echo "$as_me:$LINENO: checking whether OpenSSL's headers match the library" >&5
9052echo $ECHO_N "checking whether OpenSSL's headers match the library... $ECHO_C" >&6 9663echo $ECHO_N "checking whether OpenSSL's headers match the library... $ECHO_C" >&6
9053if test "$cross_compiling" = yes; then 9664if test "$cross_compiling" = yes; then
9054 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 9665 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
9055echo "$as_me: error: cannot run test program while cross compiling" >&2;} 9666See \`config.log' for more details." >&5
9667echo "$as_me: error: cannot run test program while cross compiling
9668See \`config.log' for more details." >&2;}
9056 { (exit 1); exit 1; }; } 9669 { (exit 1); exit 1; }; }
9057else 9670else
9058 cat >conftest.$ac_ext <<_ACEOF 9671 cat >conftest.$ac_ext <<_ACEOF
9059#line $LINENO "configure" 9672#line $LINENO "configure"
9060#include "confdefs.h" 9673/* confdefs.h. */
9674_ACEOF
9675cat confdefs.h >>conftest.$ac_ext
9676cat >>conftest.$ac_ext <<_ACEOF
9677/* end confdefs.h. */
9061 9678
9062#include <string.h> 9679#include <string.h>
9063#include <openssl/opensslv.h> 9680#include <openssl/opensslv.h>
@@ -9082,7 +9699,8 @@ echo "${ECHO_T}yes" >&6
9082else 9699else
9083 echo "$as_me: program exited with status $ac_status" >&5 9700 echo "$as_me: program exited with status $ac_status" >&5
9084echo "$as_me: failed program was:" >&5 9701echo "$as_me: failed program was:" >&5
9085cat conftest.$ac_ext >&5 9702sed 's/^/| /' conftest.$ac_ext >&5
9703
9086( exit $ac_status ) 9704( exit $ac_status )
9087 9705
9088 echo "$as_me:$LINENO: result: no" >&5 9706 echo "$as_me:$LINENO: result: no" >&5
@@ -9093,7 +9711,7 @@ echo "$as_me: error: Your OpenSSL headers do not match your library" >&2;}
9093 9711
9094 9712
9095fi 9713fi
9096rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 9714rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
9097fi 9715fi
9098 9716
9099# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the 9717# Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
@@ -9108,7 +9726,11 @@ else
9108LIBS="-lcrypt $LIBS" 9726LIBS="-lcrypt $LIBS"
9109cat >conftest.$ac_ext <<_ACEOF 9727cat >conftest.$ac_ext <<_ACEOF
9110#line $LINENO "configure" 9728#line $LINENO "configure"
9111#include "confdefs.h" 9729/* confdefs.h. */
9730_ACEOF
9731cat confdefs.h >>conftest.$ac_ext
9732cat >>conftest.$ac_ext <<_ACEOF
9733/* end confdefs.h. */
9112 9734
9113/* Override any gcc2 internal prototype to avoid an error. */ 9735/* Override any gcc2 internal prototype to avoid an error. */
9114#ifdef __cplusplus 9736#ifdef __cplusplus
@@ -9117,12 +9739,6 @@ extern "C"
9117/* We use char because int might match the return type of a gcc2 9739/* We use char because int might match the return type of a gcc2
9118 builtin and then its argument prototype would still apply. */ 9740 builtin and then its argument prototype would still apply. */
9119char crypt (); 9741char crypt ();
9120#ifdef F77_DUMMY_MAIN
9121# ifdef __cplusplus
9122 extern "C"
9123# endif
9124 int F77_DUMMY_MAIN() { return 1; }
9125#endif
9126int 9742int
9127main () 9743main ()
9128{ 9744{
@@ -9146,7 +9762,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9146 ac_cv_lib_crypt_crypt=yes 9762 ac_cv_lib_crypt_crypt=yes
9147else 9763else
9148 echo "$as_me: failed program was:" >&5 9764 echo "$as_me: failed program was:" >&5
9149cat conftest.$ac_ext >&5 9765sed 's/^/| /' conftest.$ac_ext >&5
9766
9150ac_cv_lib_crypt_crypt=no 9767ac_cv_lib_crypt_crypt=no
9151fi 9768fi
9152rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 9769rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -9167,13 +9784,19 @@ fi
9167echo "$as_me:$LINENO: checking whether OpenSSL's PRNG is internally seeded" >&5 9784echo "$as_me:$LINENO: checking whether OpenSSL's PRNG is internally seeded" >&5
9168echo $ECHO_N "checking whether OpenSSL's PRNG is internally seeded... $ECHO_C" >&6 9785echo $ECHO_N "checking whether OpenSSL's PRNG is internally seeded... $ECHO_C" >&6
9169if test "$cross_compiling" = yes; then 9786if test "$cross_compiling" = yes; then
9170 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 9787 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
9171echo "$as_me: error: cannot run test program while cross compiling" >&2;} 9788See \`config.log' for more details." >&5
9789echo "$as_me: error: cannot run test program while cross compiling
9790See \`config.log' for more details." >&2;}
9172 { (exit 1); exit 1; }; } 9791 { (exit 1); exit 1; }; }
9173else 9792else
9174 cat >conftest.$ac_ext <<_ACEOF 9793 cat >conftest.$ac_ext <<_ACEOF
9175#line $LINENO "configure" 9794#line $LINENO "configure"
9176#include "confdefs.h" 9795/* confdefs.h. */
9796_ACEOF
9797cat confdefs.h >>conftest.$ac_ext
9798cat >>conftest.$ac_ext <<_ACEOF
9799/* end confdefs.h. */
9177 9800
9178#include <string.h> 9801#include <string.h>
9179#include <openssl/rand.h> 9802#include <openssl/rand.h>
@@ -9199,7 +9822,8 @@ echo "${ECHO_T}yes" >&6
9199else 9822else
9200 echo "$as_me: program exited with status $ac_status" >&5 9823 echo "$as_me: program exited with status $ac_status" >&5
9201echo "$as_me: failed program was:" >&5 9824echo "$as_me: failed program was:" >&5
9202cat conftest.$ac_ext >&5 9825sed 's/^/| /' conftest.$ac_ext >&5
9826
9203( exit $ac_status ) 9827( exit $ac_status )
9204 9828
9205 echo "$as_me:$LINENO: result: no" >&5 9829 echo "$as_me:$LINENO: result: no" >&5
@@ -9210,7 +9834,7 @@ echo "${ECHO_T}no" >&6
9210 9834
9211 9835
9212fi 9836fi
9213rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 9837rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
9214fi 9838fi
9215 9839
9216 9840
@@ -10153,14 +10777,12 @@ if test "${ac_cv_type_char+set}" = set; then
10153else 10777else
10154 cat >conftest.$ac_ext <<_ACEOF 10778 cat >conftest.$ac_ext <<_ACEOF
10155#line $LINENO "configure" 10779#line $LINENO "configure"
10156#include "confdefs.h" 10780/* confdefs.h. */
10781_ACEOF
10782cat confdefs.h >>conftest.$ac_ext
10783cat >>conftest.$ac_ext <<_ACEOF
10784/* end confdefs.h. */
10157$ac_includes_default 10785$ac_includes_default
10158#ifdef F77_DUMMY_MAIN
10159# ifdef __cplusplus
10160 extern "C"
10161# endif
10162 int F77_DUMMY_MAIN() { return 1; }
10163#endif
10164int 10786int
10165main () 10787main ()
10166{ 10788{
@@ -10187,7 +10809,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10187 ac_cv_type_char=yes 10809 ac_cv_type_char=yes
10188else 10810else
10189 echo "$as_me: failed program was:" >&5 10811 echo "$as_me: failed program was:" >&5
10190cat conftest.$ac_ext >&5 10812sed 's/^/| /' conftest.$ac_ext >&5
10813
10191ac_cv_type_char=no 10814ac_cv_type_char=no
10192fi 10815fi
10193rm -f conftest.$ac_objext conftest.$ac_ext 10816rm -f conftest.$ac_objext conftest.$ac_ext
@@ -10209,14 +10832,12 @@ else
10209 # Depending upon the size, compute the lo and hi bounds. 10832 # Depending upon the size, compute the lo and hi bounds.
10210cat >conftest.$ac_ext <<_ACEOF 10833cat >conftest.$ac_ext <<_ACEOF
10211#line $LINENO "configure" 10834#line $LINENO "configure"
10212#include "confdefs.h" 10835/* confdefs.h. */
10836_ACEOF
10837cat confdefs.h >>conftest.$ac_ext
10838cat >>conftest.$ac_ext <<_ACEOF
10839/* end confdefs.h. */
10213$ac_includes_default 10840$ac_includes_default
10214#ifdef F77_DUMMY_MAIN
10215# ifdef __cplusplus
10216 extern "C"
10217# endif
10218 int F77_DUMMY_MAIN() { return 1; }
10219#endif
10220int 10841int
10221main () 10842main ()
10222{ 10843{
@@ -10243,14 +10864,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10243 while :; do 10864 while :; do
10244 cat >conftest.$ac_ext <<_ACEOF 10865 cat >conftest.$ac_ext <<_ACEOF
10245#line $LINENO "configure" 10866#line $LINENO "configure"
10246#include "confdefs.h" 10867/* confdefs.h. */
10868_ACEOF
10869cat confdefs.h >>conftest.$ac_ext
10870cat >>conftest.$ac_ext <<_ACEOF
10871/* end confdefs.h. */
10247$ac_includes_default 10872$ac_includes_default
10248#ifdef F77_DUMMY_MAIN
10249# ifdef __cplusplus
10250 extern "C"
10251# endif
10252 int F77_DUMMY_MAIN() { return 1; }
10253#endif
10254int 10873int
10255main () 10874main ()
10256{ 10875{
@@ -10276,7 +10895,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10276 ac_hi=$ac_mid; break 10895 ac_hi=$ac_mid; break
10277else 10896else
10278 echo "$as_me: failed program was:" >&5 10897 echo "$as_me: failed program was:" >&5
10279cat conftest.$ac_ext >&5 10898sed 's/^/| /' conftest.$ac_ext >&5
10899
10280ac_lo=`expr $ac_mid + 1` 10900ac_lo=`expr $ac_mid + 1`
10281 if test $ac_lo -le $ac_mid; then 10901 if test $ac_lo -le $ac_mid; then
10282 ac_lo= ac_hi= 10902 ac_lo= ac_hi=
@@ -10288,17 +10908,16 @@ rm -f conftest.$ac_objext conftest.$ac_ext
10288 done 10908 done
10289else 10909else
10290 echo "$as_me: failed program was:" >&5 10910 echo "$as_me: failed program was:" >&5
10291cat conftest.$ac_ext >&5 10911sed 's/^/| /' conftest.$ac_ext >&5
10912
10292cat >conftest.$ac_ext <<_ACEOF 10913cat >conftest.$ac_ext <<_ACEOF
10293#line $LINENO "configure" 10914#line $LINENO "configure"
10294#include "confdefs.h" 10915/* confdefs.h. */
10916_ACEOF
10917cat confdefs.h >>conftest.$ac_ext
10918cat >>conftest.$ac_ext <<_ACEOF
10919/* end confdefs.h. */
10295$ac_includes_default 10920$ac_includes_default
10296#ifdef F77_DUMMY_MAIN
10297# ifdef __cplusplus
10298 extern "C"
10299# endif
10300 int F77_DUMMY_MAIN() { return 1; }
10301#endif
10302int 10921int
10303main () 10922main ()
10304{ 10923{
@@ -10325,14 +10944,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10325 while :; do 10944 while :; do
10326 cat >conftest.$ac_ext <<_ACEOF 10945 cat >conftest.$ac_ext <<_ACEOF
10327#line $LINENO "configure" 10946#line $LINENO "configure"
10328#include "confdefs.h" 10947/* confdefs.h. */
10948_ACEOF
10949cat confdefs.h >>conftest.$ac_ext
10950cat >>conftest.$ac_ext <<_ACEOF
10951/* end confdefs.h. */
10329$ac_includes_default 10952$ac_includes_default
10330#ifdef F77_DUMMY_MAIN
10331# ifdef __cplusplus
10332 extern "C"
10333# endif
10334 int F77_DUMMY_MAIN() { return 1; }
10335#endif
10336int 10953int
10337main () 10954main ()
10338{ 10955{
@@ -10358,7 +10975,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10358 ac_lo=$ac_mid; break 10975 ac_lo=$ac_mid; break
10359else 10976else
10360 echo "$as_me: failed program was:" >&5 10977 echo "$as_me: failed program was:" >&5
10361cat conftest.$ac_ext >&5 10978sed 's/^/| /' conftest.$ac_ext >&5
10979
10362ac_hi=`expr '(' $ac_mid ')' - 1` 10980ac_hi=`expr '(' $ac_mid ')' - 1`
10363 if test $ac_mid -le $ac_hi; then 10981 if test $ac_mid -le $ac_hi; then
10364 ac_lo= ac_hi= 10982 ac_lo= ac_hi=
@@ -10370,7 +10988,8 @@ rm -f conftest.$ac_objext conftest.$ac_ext
10370 done 10988 done
10371else 10989else
10372 echo "$as_me: failed program was:" >&5 10990 echo "$as_me: failed program was:" >&5
10373cat conftest.$ac_ext >&5 10991sed 's/^/| /' conftest.$ac_ext >&5
10992
10374ac_lo= ac_hi= 10993ac_lo= ac_hi=
10375fi 10994fi
10376rm -f conftest.$ac_objext conftest.$ac_ext 10995rm -f conftest.$ac_objext conftest.$ac_ext
@@ -10381,14 +11000,12 @@ while test "x$ac_lo" != "x$ac_hi"; do
10381 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` 11000 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
10382 cat >conftest.$ac_ext <<_ACEOF 11001 cat >conftest.$ac_ext <<_ACEOF
10383#line $LINENO "configure" 11002#line $LINENO "configure"
10384#include "confdefs.h" 11003/* confdefs.h. */
11004_ACEOF
11005cat confdefs.h >>conftest.$ac_ext
11006cat >>conftest.$ac_ext <<_ACEOF
11007/* end confdefs.h. */
10385$ac_includes_default 11008$ac_includes_default
10386#ifdef F77_DUMMY_MAIN
10387# ifdef __cplusplus
10388 extern "C"
10389# endif
10390 int F77_DUMMY_MAIN() { return 1; }
10391#endif
10392int 11009int
10393main () 11010main ()
10394{ 11011{
@@ -10414,37 +11031,40 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10414 ac_hi=$ac_mid 11031 ac_hi=$ac_mid
10415else 11032else
10416 echo "$as_me: failed program was:" >&5 11033 echo "$as_me: failed program was:" >&5
10417cat conftest.$ac_ext >&5 11034sed 's/^/| /' conftest.$ac_ext >&5
11035
10418ac_lo=`expr '(' $ac_mid ')' + 1` 11036ac_lo=`expr '(' $ac_mid ')' + 1`
10419fi 11037fi
10420rm -f conftest.$ac_objext conftest.$ac_ext 11038rm -f conftest.$ac_objext conftest.$ac_ext
10421done 11039done
10422case $ac_lo in 11040case $ac_lo in
10423?*) ac_cv_sizeof_char=$ac_lo;; 11041?*) ac_cv_sizeof_char=$ac_lo;;
10424'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77" >&5 11042'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77
10425echo "$as_me: error: cannot compute sizeof (char), 77" >&2;} 11043See \`config.log' for more details." >&5
11044echo "$as_me: error: cannot compute sizeof (char), 77
11045See \`config.log' for more details." >&2;}
10426 { (exit 1); exit 1; }; } ;; 11046 { (exit 1); exit 1; }; } ;;
10427esac 11047esac
10428else 11048else
10429 if test "$cross_compiling" = yes; then 11049 if test "$cross_compiling" = yes; then
10430 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 11050 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
10431echo "$as_me: error: cannot run test program while cross compiling" >&2;} 11051See \`config.log' for more details." >&5
11052echo "$as_me: error: cannot run test program while cross compiling
11053See \`config.log' for more details." >&2;}
10432 { (exit 1); exit 1; }; } 11054 { (exit 1); exit 1; }; }
10433else 11055else
10434 cat >conftest.$ac_ext <<_ACEOF 11056 cat >conftest.$ac_ext <<_ACEOF
10435#line $LINENO "configure" 11057#line $LINENO "configure"
10436#include "confdefs.h" 11058/* confdefs.h. */
11059_ACEOF
11060cat confdefs.h >>conftest.$ac_ext
11061cat >>conftest.$ac_ext <<_ACEOF
11062/* end confdefs.h. */
10437$ac_includes_default 11063$ac_includes_default
10438long longval () { return (long) (sizeof (char)); } 11064long longval () { return (long) (sizeof (char)); }
10439unsigned long ulongval () { return (long) (sizeof (char)); } 11065unsigned long ulongval () { return (long) (sizeof (char)); }
10440#include <stdio.h> 11066#include <stdio.h>
10441#include <stdlib.h> 11067#include <stdlib.h>
10442#ifdef F77_DUMMY_MAIN
10443# ifdef __cplusplus
10444 extern "C"
10445# endif
10446 int F77_DUMMY_MAIN() { return 1; }
10447#endif
10448int 11068int
10449main () 11069main ()
10450{ 11070{
@@ -10487,13 +11107,16 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
10487else 11107else
10488 echo "$as_me: program exited with status $ac_status" >&5 11108 echo "$as_me: program exited with status $ac_status" >&5
10489echo "$as_me: failed program was:" >&5 11109echo "$as_me: failed program was:" >&5
10490cat conftest.$ac_ext >&5 11110sed 's/^/| /' conftest.$ac_ext >&5
11111
10491( exit $ac_status ) 11112( exit $ac_status )
10492{ { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77" >&5 11113{ { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77
10493echo "$as_me: error: cannot compute sizeof (char), 77" >&2;} 11114See \`config.log' for more details." >&5
11115echo "$as_me: error: cannot compute sizeof (char), 77
11116See \`config.log' for more details." >&2;}
10494 { (exit 1); exit 1; }; } 11117 { (exit 1); exit 1; }; }
10495fi 11118fi
10496rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 11119rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
10497fi 11120fi
10498fi 11121fi
10499rm -f conftest.val 11122rm -f conftest.val
@@ -10515,14 +11138,12 @@ if test "${ac_cv_type_short_int+set}" = set; then
10515else 11138else
10516 cat >conftest.$ac_ext <<_ACEOF 11139 cat >conftest.$ac_ext <<_ACEOF
10517#line $LINENO "configure" 11140#line $LINENO "configure"
10518#include "confdefs.h" 11141/* confdefs.h. */
11142_ACEOF
11143cat confdefs.h >>conftest.$ac_ext
11144cat >>conftest.$ac_ext <<_ACEOF
11145/* end confdefs.h. */
10519$ac_includes_default 11146$ac_includes_default
10520#ifdef F77_DUMMY_MAIN
10521# ifdef __cplusplus
10522 extern "C"
10523# endif
10524 int F77_DUMMY_MAIN() { return 1; }
10525#endif
10526int 11147int
10527main () 11148main ()
10528{ 11149{
@@ -10549,7 +11170,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10549 ac_cv_type_short_int=yes 11170 ac_cv_type_short_int=yes
10550else 11171else
10551 echo "$as_me: failed program was:" >&5 11172 echo "$as_me: failed program was:" >&5
10552cat conftest.$ac_ext >&5 11173sed 's/^/| /' conftest.$ac_ext >&5
11174
10553ac_cv_type_short_int=no 11175ac_cv_type_short_int=no
10554fi 11176fi
10555rm -f conftest.$ac_objext conftest.$ac_ext 11177rm -f conftest.$ac_objext conftest.$ac_ext
@@ -10571,14 +11193,12 @@ else
10571 # Depending upon the size, compute the lo and hi bounds. 11193 # Depending upon the size, compute the lo and hi bounds.
10572cat >conftest.$ac_ext <<_ACEOF 11194cat >conftest.$ac_ext <<_ACEOF
10573#line $LINENO "configure" 11195#line $LINENO "configure"
10574#include "confdefs.h" 11196/* confdefs.h. */
11197_ACEOF
11198cat confdefs.h >>conftest.$ac_ext
11199cat >>conftest.$ac_ext <<_ACEOF
11200/* end confdefs.h. */
10575$ac_includes_default 11201$ac_includes_default
10576#ifdef F77_DUMMY_MAIN
10577# ifdef __cplusplus
10578 extern "C"
10579# endif
10580 int F77_DUMMY_MAIN() { return 1; }
10581#endif
10582int 11202int
10583main () 11203main ()
10584{ 11204{
@@ -10605,14 +11225,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10605 while :; do 11225 while :; do
10606 cat >conftest.$ac_ext <<_ACEOF 11226 cat >conftest.$ac_ext <<_ACEOF
10607#line $LINENO "configure" 11227#line $LINENO "configure"
10608#include "confdefs.h" 11228/* confdefs.h. */
11229_ACEOF
11230cat confdefs.h >>conftest.$ac_ext
11231cat >>conftest.$ac_ext <<_ACEOF
11232/* end confdefs.h. */
10609$ac_includes_default 11233$ac_includes_default
10610#ifdef F77_DUMMY_MAIN
10611# ifdef __cplusplus
10612 extern "C"
10613# endif
10614 int F77_DUMMY_MAIN() { return 1; }
10615#endif
10616int 11234int
10617main () 11235main ()
10618{ 11236{
@@ -10638,7 +11256,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10638 ac_hi=$ac_mid; break 11256 ac_hi=$ac_mid; break
10639else 11257else
10640 echo "$as_me: failed program was:" >&5 11258 echo "$as_me: failed program was:" >&5
10641cat conftest.$ac_ext >&5 11259sed 's/^/| /' conftest.$ac_ext >&5
11260
10642ac_lo=`expr $ac_mid + 1` 11261ac_lo=`expr $ac_mid + 1`
10643 if test $ac_lo -le $ac_mid; then 11262 if test $ac_lo -le $ac_mid; then
10644 ac_lo= ac_hi= 11263 ac_lo= ac_hi=
@@ -10650,17 +11269,16 @@ rm -f conftest.$ac_objext conftest.$ac_ext
10650 done 11269 done
10651else 11270else
10652 echo "$as_me: failed program was:" >&5 11271 echo "$as_me: failed program was:" >&5
10653cat conftest.$ac_ext >&5 11272sed 's/^/| /' conftest.$ac_ext >&5
11273
10654cat >conftest.$ac_ext <<_ACEOF 11274cat >conftest.$ac_ext <<_ACEOF
10655#line $LINENO "configure" 11275#line $LINENO "configure"
10656#include "confdefs.h" 11276/* confdefs.h. */
11277_ACEOF
11278cat confdefs.h >>conftest.$ac_ext
11279cat >>conftest.$ac_ext <<_ACEOF
11280/* end confdefs.h. */
10657$ac_includes_default 11281$ac_includes_default
10658#ifdef F77_DUMMY_MAIN
10659# ifdef __cplusplus
10660 extern "C"
10661# endif
10662 int F77_DUMMY_MAIN() { return 1; }
10663#endif
10664int 11282int
10665main () 11283main ()
10666{ 11284{
@@ -10687,14 +11305,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10687 while :; do 11305 while :; do
10688 cat >conftest.$ac_ext <<_ACEOF 11306 cat >conftest.$ac_ext <<_ACEOF
10689#line $LINENO "configure" 11307#line $LINENO "configure"
10690#include "confdefs.h" 11308/* confdefs.h. */
11309_ACEOF
11310cat confdefs.h >>conftest.$ac_ext
11311cat >>conftest.$ac_ext <<_ACEOF
11312/* end confdefs.h. */
10691$ac_includes_default 11313$ac_includes_default
10692#ifdef F77_DUMMY_MAIN
10693# ifdef __cplusplus
10694 extern "C"
10695# endif
10696 int F77_DUMMY_MAIN() { return 1; }
10697#endif
10698int 11314int
10699main () 11315main ()
10700{ 11316{
@@ -10720,7 +11336,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10720 ac_lo=$ac_mid; break 11336 ac_lo=$ac_mid; break
10721else 11337else
10722 echo "$as_me: failed program was:" >&5 11338 echo "$as_me: failed program was:" >&5
10723cat conftest.$ac_ext >&5 11339sed 's/^/| /' conftest.$ac_ext >&5
11340
10724ac_hi=`expr '(' $ac_mid ')' - 1` 11341ac_hi=`expr '(' $ac_mid ')' - 1`
10725 if test $ac_mid -le $ac_hi; then 11342 if test $ac_mid -le $ac_hi; then
10726 ac_lo= ac_hi= 11343 ac_lo= ac_hi=
@@ -10732,7 +11349,8 @@ rm -f conftest.$ac_objext conftest.$ac_ext
10732 done 11349 done
10733else 11350else
10734 echo "$as_me: failed program was:" >&5 11351 echo "$as_me: failed program was:" >&5
10735cat conftest.$ac_ext >&5 11352sed 's/^/| /' conftest.$ac_ext >&5
11353
10736ac_lo= ac_hi= 11354ac_lo= ac_hi=
10737fi 11355fi
10738rm -f conftest.$ac_objext conftest.$ac_ext 11356rm -f conftest.$ac_objext conftest.$ac_ext
@@ -10743,14 +11361,12 @@ while test "x$ac_lo" != "x$ac_hi"; do
10743 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` 11361 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
10744 cat >conftest.$ac_ext <<_ACEOF 11362 cat >conftest.$ac_ext <<_ACEOF
10745#line $LINENO "configure" 11363#line $LINENO "configure"
10746#include "confdefs.h" 11364/* confdefs.h. */
11365_ACEOF
11366cat confdefs.h >>conftest.$ac_ext
11367cat >>conftest.$ac_ext <<_ACEOF
11368/* end confdefs.h. */
10747$ac_includes_default 11369$ac_includes_default
10748#ifdef F77_DUMMY_MAIN
10749# ifdef __cplusplus
10750 extern "C"
10751# endif
10752 int F77_DUMMY_MAIN() { return 1; }
10753#endif
10754int 11370int
10755main () 11371main ()
10756{ 11372{
@@ -10776,37 +11392,40 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10776 ac_hi=$ac_mid 11392 ac_hi=$ac_mid
10777else 11393else
10778 echo "$as_me: failed program was:" >&5 11394 echo "$as_me: failed program was:" >&5
10779cat conftest.$ac_ext >&5 11395sed 's/^/| /' conftest.$ac_ext >&5
11396
10780ac_lo=`expr '(' $ac_mid ')' + 1` 11397ac_lo=`expr '(' $ac_mid ')' + 1`
10781fi 11398fi
10782rm -f conftest.$ac_objext conftest.$ac_ext 11399rm -f conftest.$ac_objext conftest.$ac_ext
10783done 11400done
10784case $ac_lo in 11401case $ac_lo in
10785?*) ac_cv_sizeof_short_int=$ac_lo;; 11402?*) ac_cv_sizeof_short_int=$ac_lo;;
10786'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short int), 77" >&5 11403'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short int), 77
10787echo "$as_me: error: cannot compute sizeof (short int), 77" >&2;} 11404See \`config.log' for more details." >&5
11405echo "$as_me: error: cannot compute sizeof (short int), 77
11406See \`config.log' for more details." >&2;}
10788 { (exit 1); exit 1; }; } ;; 11407 { (exit 1); exit 1; }; } ;;
10789esac 11408esac
10790else 11409else
10791 if test "$cross_compiling" = yes; then 11410 if test "$cross_compiling" = yes; then
10792 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 11411 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
10793echo "$as_me: error: cannot run test program while cross compiling" >&2;} 11412See \`config.log' for more details." >&5
11413echo "$as_me: error: cannot run test program while cross compiling
11414See \`config.log' for more details." >&2;}
10794 { (exit 1); exit 1; }; } 11415 { (exit 1); exit 1; }; }
10795else 11416else
10796 cat >conftest.$ac_ext <<_ACEOF 11417 cat >conftest.$ac_ext <<_ACEOF
10797#line $LINENO "configure" 11418#line $LINENO "configure"
10798#include "confdefs.h" 11419/* confdefs.h. */
11420_ACEOF
11421cat confdefs.h >>conftest.$ac_ext
11422cat >>conftest.$ac_ext <<_ACEOF
11423/* end confdefs.h. */
10799$ac_includes_default 11424$ac_includes_default
10800long longval () { return (long) (sizeof (short int)); } 11425long longval () { return (long) (sizeof (short int)); }
10801unsigned long ulongval () { return (long) (sizeof (short int)); } 11426unsigned long ulongval () { return (long) (sizeof (short int)); }
10802#include <stdio.h> 11427#include <stdio.h>
10803#include <stdlib.h> 11428#include <stdlib.h>
10804#ifdef F77_DUMMY_MAIN
10805# ifdef __cplusplus
10806 extern "C"
10807# endif
10808 int F77_DUMMY_MAIN() { return 1; }
10809#endif
10810int 11429int
10811main () 11430main ()
10812{ 11431{
@@ -10849,13 +11468,16 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
10849else 11468else
10850 echo "$as_me: program exited with status $ac_status" >&5 11469 echo "$as_me: program exited with status $ac_status" >&5
10851echo "$as_me: failed program was:" >&5 11470echo "$as_me: failed program was:" >&5
10852cat conftest.$ac_ext >&5 11471sed 's/^/| /' conftest.$ac_ext >&5
11472
10853( exit $ac_status ) 11473( exit $ac_status )
10854{ { echo "$as_me:$LINENO: error: cannot compute sizeof (short int), 77" >&5 11474{ { echo "$as_me:$LINENO: error: cannot compute sizeof (short int), 77
10855echo "$as_me: error: cannot compute sizeof (short int), 77" >&2;} 11475See \`config.log' for more details." >&5
11476echo "$as_me: error: cannot compute sizeof (short int), 77
11477See \`config.log' for more details." >&2;}
10856 { (exit 1); exit 1; }; } 11478 { (exit 1); exit 1; }; }
10857fi 11479fi
10858rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 11480rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
10859fi 11481fi
10860fi 11482fi
10861rm -f conftest.val 11483rm -f conftest.val
@@ -10877,14 +11499,12 @@ if test "${ac_cv_type_int+set}" = set; then
10877else 11499else
10878 cat >conftest.$ac_ext <<_ACEOF 11500 cat >conftest.$ac_ext <<_ACEOF
10879#line $LINENO "configure" 11501#line $LINENO "configure"
10880#include "confdefs.h" 11502/* confdefs.h. */
11503_ACEOF
11504cat confdefs.h >>conftest.$ac_ext
11505cat >>conftest.$ac_ext <<_ACEOF
11506/* end confdefs.h. */
10881$ac_includes_default 11507$ac_includes_default
10882#ifdef F77_DUMMY_MAIN
10883# ifdef __cplusplus
10884 extern "C"
10885# endif
10886 int F77_DUMMY_MAIN() { return 1; }
10887#endif
10888int 11508int
10889main () 11509main ()
10890{ 11510{
@@ -10911,7 +11531,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10911 ac_cv_type_int=yes 11531 ac_cv_type_int=yes
10912else 11532else
10913 echo "$as_me: failed program was:" >&5 11533 echo "$as_me: failed program was:" >&5
10914cat conftest.$ac_ext >&5 11534sed 's/^/| /' conftest.$ac_ext >&5
11535
10915ac_cv_type_int=no 11536ac_cv_type_int=no
10916fi 11537fi
10917rm -f conftest.$ac_objext conftest.$ac_ext 11538rm -f conftest.$ac_objext conftest.$ac_ext
@@ -10933,14 +11554,12 @@ else
10933 # Depending upon the size, compute the lo and hi bounds. 11554 # Depending upon the size, compute the lo and hi bounds.
10934cat >conftest.$ac_ext <<_ACEOF 11555cat >conftest.$ac_ext <<_ACEOF
10935#line $LINENO "configure" 11556#line $LINENO "configure"
10936#include "confdefs.h" 11557/* confdefs.h. */
11558_ACEOF
11559cat confdefs.h >>conftest.$ac_ext
11560cat >>conftest.$ac_ext <<_ACEOF
11561/* end confdefs.h. */
10937$ac_includes_default 11562$ac_includes_default
10938#ifdef F77_DUMMY_MAIN
10939# ifdef __cplusplus
10940 extern "C"
10941# endif
10942 int F77_DUMMY_MAIN() { return 1; }
10943#endif
10944int 11563int
10945main () 11564main ()
10946{ 11565{
@@ -10967,14 +11586,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10967 while :; do 11586 while :; do
10968 cat >conftest.$ac_ext <<_ACEOF 11587 cat >conftest.$ac_ext <<_ACEOF
10969#line $LINENO "configure" 11588#line $LINENO "configure"
10970#include "confdefs.h" 11589/* confdefs.h. */
11590_ACEOF
11591cat confdefs.h >>conftest.$ac_ext
11592cat >>conftest.$ac_ext <<_ACEOF
11593/* end confdefs.h. */
10971$ac_includes_default 11594$ac_includes_default
10972#ifdef F77_DUMMY_MAIN
10973# ifdef __cplusplus
10974 extern "C"
10975# endif
10976 int F77_DUMMY_MAIN() { return 1; }
10977#endif
10978int 11595int
10979main () 11596main ()
10980{ 11597{
@@ -11000,7 +11617,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11000 ac_hi=$ac_mid; break 11617 ac_hi=$ac_mid; break
11001else 11618else
11002 echo "$as_me: failed program was:" >&5 11619 echo "$as_me: failed program was:" >&5
11003cat conftest.$ac_ext >&5 11620sed 's/^/| /' conftest.$ac_ext >&5
11621
11004ac_lo=`expr $ac_mid + 1` 11622ac_lo=`expr $ac_mid + 1`
11005 if test $ac_lo -le $ac_mid; then 11623 if test $ac_lo -le $ac_mid; then
11006 ac_lo= ac_hi= 11624 ac_lo= ac_hi=
@@ -11012,17 +11630,16 @@ rm -f conftest.$ac_objext conftest.$ac_ext
11012 done 11630 done
11013else 11631else
11014 echo "$as_me: failed program was:" >&5 11632 echo "$as_me: failed program was:" >&5
11015cat conftest.$ac_ext >&5 11633sed 's/^/| /' conftest.$ac_ext >&5
11634
11016cat >conftest.$ac_ext <<_ACEOF 11635cat >conftest.$ac_ext <<_ACEOF
11017#line $LINENO "configure" 11636#line $LINENO "configure"
11018#include "confdefs.h" 11637/* confdefs.h. */
11638_ACEOF
11639cat confdefs.h >>conftest.$ac_ext
11640cat >>conftest.$ac_ext <<_ACEOF
11641/* end confdefs.h. */
11019$ac_includes_default 11642$ac_includes_default
11020#ifdef F77_DUMMY_MAIN
11021# ifdef __cplusplus
11022 extern "C"
11023# endif
11024 int F77_DUMMY_MAIN() { return 1; }
11025#endif
11026int 11643int
11027main () 11644main ()
11028{ 11645{
@@ -11049,14 +11666,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11049 while :; do 11666 while :; do
11050 cat >conftest.$ac_ext <<_ACEOF 11667 cat >conftest.$ac_ext <<_ACEOF
11051#line $LINENO "configure" 11668#line $LINENO "configure"
11052#include "confdefs.h" 11669/* confdefs.h. */
11670_ACEOF
11671cat confdefs.h >>conftest.$ac_ext
11672cat >>conftest.$ac_ext <<_ACEOF
11673/* end confdefs.h. */
11053$ac_includes_default 11674$ac_includes_default
11054#ifdef F77_DUMMY_MAIN
11055# ifdef __cplusplus
11056 extern "C"
11057# endif
11058 int F77_DUMMY_MAIN() { return 1; }
11059#endif
11060int 11675int
11061main () 11676main ()
11062{ 11677{
@@ -11082,7 +11697,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11082 ac_lo=$ac_mid; break 11697 ac_lo=$ac_mid; break
11083else 11698else
11084 echo "$as_me: failed program was:" >&5 11699 echo "$as_me: failed program was:" >&5
11085cat conftest.$ac_ext >&5 11700sed 's/^/| /' conftest.$ac_ext >&5
11701
11086ac_hi=`expr '(' $ac_mid ')' - 1` 11702ac_hi=`expr '(' $ac_mid ')' - 1`
11087 if test $ac_mid -le $ac_hi; then 11703 if test $ac_mid -le $ac_hi; then
11088 ac_lo= ac_hi= 11704 ac_lo= ac_hi=
@@ -11094,7 +11710,8 @@ rm -f conftest.$ac_objext conftest.$ac_ext
11094 done 11710 done
11095else 11711else
11096 echo "$as_me: failed program was:" >&5 11712 echo "$as_me: failed program was:" >&5
11097cat conftest.$ac_ext >&5 11713sed 's/^/| /' conftest.$ac_ext >&5
11714
11098ac_lo= ac_hi= 11715ac_lo= ac_hi=
11099fi 11716fi
11100rm -f conftest.$ac_objext conftest.$ac_ext 11717rm -f conftest.$ac_objext conftest.$ac_ext
@@ -11105,14 +11722,12 @@ while test "x$ac_lo" != "x$ac_hi"; do
11105 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` 11722 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
11106 cat >conftest.$ac_ext <<_ACEOF 11723 cat >conftest.$ac_ext <<_ACEOF
11107#line $LINENO "configure" 11724#line $LINENO "configure"
11108#include "confdefs.h" 11725/* confdefs.h. */
11726_ACEOF
11727cat confdefs.h >>conftest.$ac_ext
11728cat >>conftest.$ac_ext <<_ACEOF
11729/* end confdefs.h. */
11109$ac_includes_default 11730$ac_includes_default
11110#ifdef F77_DUMMY_MAIN
11111# ifdef __cplusplus
11112 extern "C"
11113# endif
11114 int F77_DUMMY_MAIN() { return 1; }
11115#endif
11116int 11731int
11117main () 11732main ()
11118{ 11733{
@@ -11138,37 +11753,40 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11138 ac_hi=$ac_mid 11753 ac_hi=$ac_mid
11139else 11754else
11140 echo "$as_me: failed program was:" >&5 11755 echo "$as_me: failed program was:" >&5
11141cat conftest.$ac_ext >&5 11756sed 's/^/| /' conftest.$ac_ext >&5
11757
11142ac_lo=`expr '(' $ac_mid ')' + 1` 11758ac_lo=`expr '(' $ac_mid ')' + 1`
11143fi 11759fi
11144rm -f conftest.$ac_objext conftest.$ac_ext 11760rm -f conftest.$ac_objext conftest.$ac_ext
11145done 11761done
11146case $ac_lo in 11762case $ac_lo in
11147?*) ac_cv_sizeof_int=$ac_lo;; 11763?*) ac_cv_sizeof_int=$ac_lo;;
11148'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77" >&5 11764'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77
11149echo "$as_me: error: cannot compute sizeof (int), 77" >&2;} 11765See \`config.log' for more details." >&5
11766echo "$as_me: error: cannot compute sizeof (int), 77
11767See \`config.log' for more details." >&2;}
11150 { (exit 1); exit 1; }; } ;; 11768 { (exit 1); exit 1; }; } ;;
11151esac 11769esac
11152else 11770else
11153 if test "$cross_compiling" = yes; then 11771 if test "$cross_compiling" = yes; then
11154 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 11772 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
11155echo "$as_me: error: cannot run test program while cross compiling" >&2;} 11773See \`config.log' for more details." >&5
11774echo "$as_me: error: cannot run test program while cross compiling
11775See \`config.log' for more details." >&2;}
11156 { (exit 1); exit 1; }; } 11776 { (exit 1); exit 1; }; }
11157else 11777else
11158 cat >conftest.$ac_ext <<_ACEOF 11778 cat >conftest.$ac_ext <<_ACEOF
11159#line $LINENO "configure" 11779#line $LINENO "configure"
11160#include "confdefs.h" 11780/* confdefs.h. */
11781_ACEOF
11782cat confdefs.h >>conftest.$ac_ext
11783cat >>conftest.$ac_ext <<_ACEOF
11784/* end confdefs.h. */
11161$ac_includes_default 11785$ac_includes_default
11162long longval () { return (long) (sizeof (int)); } 11786long longval () { return (long) (sizeof (int)); }
11163unsigned long ulongval () { return (long) (sizeof (int)); } 11787unsigned long ulongval () { return (long) (sizeof (int)); }
11164#include <stdio.h> 11788#include <stdio.h>
11165#include <stdlib.h> 11789#include <stdlib.h>
11166#ifdef F77_DUMMY_MAIN
11167# ifdef __cplusplus
11168 extern "C"
11169# endif
11170 int F77_DUMMY_MAIN() { return 1; }
11171#endif
11172int 11790int
11173main () 11791main ()
11174{ 11792{
@@ -11211,13 +11829,16 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
11211else 11829else
11212 echo "$as_me: program exited with status $ac_status" >&5 11830 echo "$as_me: program exited with status $ac_status" >&5
11213echo "$as_me: failed program was:" >&5 11831echo "$as_me: failed program was:" >&5
11214cat conftest.$ac_ext >&5 11832sed 's/^/| /' conftest.$ac_ext >&5
11833
11215( exit $ac_status ) 11834( exit $ac_status )
11216{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77" >&5 11835{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77
11217echo "$as_me: error: cannot compute sizeof (int), 77" >&2;} 11836See \`config.log' for more details." >&5
11837echo "$as_me: error: cannot compute sizeof (int), 77
11838See \`config.log' for more details." >&2;}
11218 { (exit 1); exit 1; }; } 11839 { (exit 1); exit 1; }; }
11219fi 11840fi
11220rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 11841rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
11221fi 11842fi
11222fi 11843fi
11223rm -f conftest.val 11844rm -f conftest.val
@@ -11239,14 +11860,12 @@ if test "${ac_cv_type_long_int+set}" = set; then
11239else 11860else
11240 cat >conftest.$ac_ext <<_ACEOF 11861 cat >conftest.$ac_ext <<_ACEOF
11241#line $LINENO "configure" 11862#line $LINENO "configure"
11242#include "confdefs.h" 11863/* confdefs.h. */
11864_ACEOF
11865cat confdefs.h >>conftest.$ac_ext
11866cat >>conftest.$ac_ext <<_ACEOF
11867/* end confdefs.h. */
11243$ac_includes_default 11868$ac_includes_default
11244#ifdef F77_DUMMY_MAIN
11245# ifdef __cplusplus
11246 extern "C"
11247# endif
11248 int F77_DUMMY_MAIN() { return 1; }
11249#endif
11250int 11869int
11251main () 11870main ()
11252{ 11871{
@@ -11273,7 +11892,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11273 ac_cv_type_long_int=yes 11892 ac_cv_type_long_int=yes
11274else 11893else
11275 echo "$as_me: failed program was:" >&5 11894 echo "$as_me: failed program was:" >&5
11276cat conftest.$ac_ext >&5 11895sed 's/^/| /' conftest.$ac_ext >&5
11896
11277ac_cv_type_long_int=no 11897ac_cv_type_long_int=no
11278fi 11898fi
11279rm -f conftest.$ac_objext conftest.$ac_ext 11899rm -f conftest.$ac_objext conftest.$ac_ext
@@ -11295,14 +11915,12 @@ else
11295 # Depending upon the size, compute the lo and hi bounds. 11915 # Depending upon the size, compute the lo and hi bounds.
11296cat >conftest.$ac_ext <<_ACEOF 11916cat >conftest.$ac_ext <<_ACEOF
11297#line $LINENO "configure" 11917#line $LINENO "configure"
11298#include "confdefs.h" 11918/* confdefs.h. */
11919_ACEOF
11920cat confdefs.h >>conftest.$ac_ext
11921cat >>conftest.$ac_ext <<_ACEOF
11922/* end confdefs.h. */
11299$ac_includes_default 11923$ac_includes_default
11300#ifdef F77_DUMMY_MAIN
11301# ifdef __cplusplus
11302 extern "C"
11303# endif
11304 int F77_DUMMY_MAIN() { return 1; }
11305#endif
11306int 11924int
11307main () 11925main ()
11308{ 11926{
@@ -11329,14 +11947,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11329 while :; do 11947 while :; do
11330 cat >conftest.$ac_ext <<_ACEOF 11948 cat >conftest.$ac_ext <<_ACEOF
11331#line $LINENO "configure" 11949#line $LINENO "configure"
11332#include "confdefs.h" 11950/* confdefs.h. */
11951_ACEOF
11952cat confdefs.h >>conftest.$ac_ext
11953cat >>conftest.$ac_ext <<_ACEOF
11954/* end confdefs.h. */
11333$ac_includes_default 11955$ac_includes_default
11334#ifdef F77_DUMMY_MAIN
11335# ifdef __cplusplus
11336 extern "C"
11337# endif
11338 int F77_DUMMY_MAIN() { return 1; }
11339#endif
11340int 11956int
11341main () 11957main ()
11342{ 11958{
@@ -11362,7 +11978,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11362 ac_hi=$ac_mid; break 11978 ac_hi=$ac_mid; break
11363else 11979else
11364 echo "$as_me: failed program was:" >&5 11980 echo "$as_me: failed program was:" >&5
11365cat conftest.$ac_ext >&5 11981sed 's/^/| /' conftest.$ac_ext >&5
11982
11366ac_lo=`expr $ac_mid + 1` 11983ac_lo=`expr $ac_mid + 1`
11367 if test $ac_lo -le $ac_mid; then 11984 if test $ac_lo -le $ac_mid; then
11368 ac_lo= ac_hi= 11985 ac_lo= ac_hi=
@@ -11374,17 +11991,16 @@ rm -f conftest.$ac_objext conftest.$ac_ext
11374 done 11991 done
11375else 11992else
11376 echo "$as_me: failed program was:" >&5 11993 echo "$as_me: failed program was:" >&5
11377cat conftest.$ac_ext >&5 11994sed 's/^/| /' conftest.$ac_ext >&5
11995
11378cat >conftest.$ac_ext <<_ACEOF 11996cat >conftest.$ac_ext <<_ACEOF
11379#line $LINENO "configure" 11997#line $LINENO "configure"
11380#include "confdefs.h" 11998/* confdefs.h. */
11999_ACEOF
12000cat confdefs.h >>conftest.$ac_ext
12001cat >>conftest.$ac_ext <<_ACEOF
12002/* end confdefs.h. */
11381$ac_includes_default 12003$ac_includes_default
11382#ifdef F77_DUMMY_MAIN
11383# ifdef __cplusplus
11384 extern "C"
11385# endif
11386 int F77_DUMMY_MAIN() { return 1; }
11387#endif
11388int 12004int
11389main () 12005main ()
11390{ 12006{
@@ -11411,14 +12027,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11411 while :; do 12027 while :; do
11412 cat >conftest.$ac_ext <<_ACEOF 12028 cat >conftest.$ac_ext <<_ACEOF
11413#line $LINENO "configure" 12029#line $LINENO "configure"
11414#include "confdefs.h" 12030/* confdefs.h. */
12031_ACEOF
12032cat confdefs.h >>conftest.$ac_ext
12033cat >>conftest.$ac_ext <<_ACEOF
12034/* end confdefs.h. */
11415$ac_includes_default 12035$ac_includes_default
11416#ifdef F77_DUMMY_MAIN
11417# ifdef __cplusplus
11418 extern "C"
11419# endif
11420 int F77_DUMMY_MAIN() { return 1; }
11421#endif
11422int 12036int
11423main () 12037main ()
11424{ 12038{
@@ -11444,7 +12058,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11444 ac_lo=$ac_mid; break 12058 ac_lo=$ac_mid; break
11445else 12059else
11446 echo "$as_me: failed program was:" >&5 12060 echo "$as_me: failed program was:" >&5
11447cat conftest.$ac_ext >&5 12061sed 's/^/| /' conftest.$ac_ext >&5
12062
11448ac_hi=`expr '(' $ac_mid ')' - 1` 12063ac_hi=`expr '(' $ac_mid ')' - 1`
11449 if test $ac_mid -le $ac_hi; then 12064 if test $ac_mid -le $ac_hi; then
11450 ac_lo= ac_hi= 12065 ac_lo= ac_hi=
@@ -11456,7 +12071,8 @@ rm -f conftest.$ac_objext conftest.$ac_ext
11456 done 12071 done
11457else 12072else
11458 echo "$as_me: failed program was:" >&5 12073 echo "$as_me: failed program was:" >&5
11459cat conftest.$ac_ext >&5 12074sed 's/^/| /' conftest.$ac_ext >&5
12075
11460ac_lo= ac_hi= 12076ac_lo= ac_hi=
11461fi 12077fi
11462rm -f conftest.$ac_objext conftest.$ac_ext 12078rm -f conftest.$ac_objext conftest.$ac_ext
@@ -11467,14 +12083,12 @@ while test "x$ac_lo" != "x$ac_hi"; do
11467 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` 12083 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
11468 cat >conftest.$ac_ext <<_ACEOF 12084 cat >conftest.$ac_ext <<_ACEOF
11469#line $LINENO "configure" 12085#line $LINENO "configure"
11470#include "confdefs.h" 12086/* confdefs.h. */
12087_ACEOF
12088cat confdefs.h >>conftest.$ac_ext
12089cat >>conftest.$ac_ext <<_ACEOF
12090/* end confdefs.h. */
11471$ac_includes_default 12091$ac_includes_default
11472#ifdef F77_DUMMY_MAIN
11473# ifdef __cplusplus
11474 extern "C"
11475# endif
11476 int F77_DUMMY_MAIN() { return 1; }
11477#endif
11478int 12092int
11479main () 12093main ()
11480{ 12094{
@@ -11500,37 +12114,40 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11500 ac_hi=$ac_mid 12114 ac_hi=$ac_mid
11501else 12115else
11502 echo "$as_me: failed program was:" >&5 12116 echo "$as_me: failed program was:" >&5
11503cat conftest.$ac_ext >&5 12117sed 's/^/| /' conftest.$ac_ext >&5
12118
11504ac_lo=`expr '(' $ac_mid ')' + 1` 12119ac_lo=`expr '(' $ac_mid ')' + 1`
11505fi 12120fi
11506rm -f conftest.$ac_objext conftest.$ac_ext 12121rm -f conftest.$ac_objext conftest.$ac_ext
11507done 12122done
11508case $ac_lo in 12123case $ac_lo in
11509?*) ac_cv_sizeof_long_int=$ac_lo;; 12124?*) ac_cv_sizeof_long_int=$ac_lo;;
11510'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long int), 77" >&5 12125'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long int), 77
11511echo "$as_me: error: cannot compute sizeof (long int), 77" >&2;} 12126See \`config.log' for more details." >&5
12127echo "$as_me: error: cannot compute sizeof (long int), 77
12128See \`config.log' for more details." >&2;}
11512 { (exit 1); exit 1; }; } ;; 12129 { (exit 1); exit 1; }; } ;;
11513esac 12130esac
11514else 12131else
11515 if test "$cross_compiling" = yes; then 12132 if test "$cross_compiling" = yes; then
11516 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 12133 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
11517echo "$as_me: error: cannot run test program while cross compiling" >&2;} 12134See \`config.log' for more details." >&5
12135echo "$as_me: error: cannot run test program while cross compiling
12136See \`config.log' for more details." >&2;}
11518 { (exit 1); exit 1; }; } 12137 { (exit 1); exit 1; }; }
11519else 12138else
11520 cat >conftest.$ac_ext <<_ACEOF 12139 cat >conftest.$ac_ext <<_ACEOF
11521#line $LINENO "configure" 12140#line $LINENO "configure"
11522#include "confdefs.h" 12141/* confdefs.h. */
12142_ACEOF
12143cat confdefs.h >>conftest.$ac_ext
12144cat >>conftest.$ac_ext <<_ACEOF
12145/* end confdefs.h. */
11523$ac_includes_default 12146$ac_includes_default
11524long longval () { return (long) (sizeof (long int)); } 12147long longval () { return (long) (sizeof (long int)); }
11525unsigned long ulongval () { return (long) (sizeof (long int)); } 12148unsigned long ulongval () { return (long) (sizeof (long int)); }
11526#include <stdio.h> 12149#include <stdio.h>
11527#include <stdlib.h> 12150#include <stdlib.h>
11528#ifdef F77_DUMMY_MAIN
11529# ifdef __cplusplus
11530 extern "C"
11531# endif
11532 int F77_DUMMY_MAIN() { return 1; }
11533#endif
11534int 12151int
11535main () 12152main ()
11536{ 12153{
@@ -11573,13 +12190,16 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
11573else 12190else
11574 echo "$as_me: program exited with status $ac_status" >&5 12191 echo "$as_me: program exited with status $ac_status" >&5
11575echo "$as_me: failed program was:" >&5 12192echo "$as_me: failed program was:" >&5
11576cat conftest.$ac_ext >&5 12193sed 's/^/| /' conftest.$ac_ext >&5
12194
11577( exit $ac_status ) 12195( exit $ac_status )
11578{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long int), 77" >&5 12196{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long int), 77
11579echo "$as_me: error: cannot compute sizeof (long int), 77" >&2;} 12197See \`config.log' for more details." >&5
12198echo "$as_me: error: cannot compute sizeof (long int), 77
12199See \`config.log' for more details." >&2;}
11580 { (exit 1); exit 1; }; } 12200 { (exit 1); exit 1; }; }
11581fi 12201fi
11582rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 12202rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
11583fi 12203fi
11584fi 12204fi
11585rm -f conftest.val 12205rm -f conftest.val
@@ -11601,14 +12221,12 @@ if test "${ac_cv_type_long_long_int+set}" = set; then
11601else 12221else
11602 cat >conftest.$ac_ext <<_ACEOF 12222 cat >conftest.$ac_ext <<_ACEOF
11603#line $LINENO "configure" 12223#line $LINENO "configure"
11604#include "confdefs.h" 12224/* confdefs.h. */
12225_ACEOF
12226cat confdefs.h >>conftest.$ac_ext
12227cat >>conftest.$ac_ext <<_ACEOF
12228/* end confdefs.h. */
11605$ac_includes_default 12229$ac_includes_default
11606#ifdef F77_DUMMY_MAIN
11607# ifdef __cplusplus
11608 extern "C"
11609# endif
11610 int F77_DUMMY_MAIN() { return 1; }
11611#endif
11612int 12230int
11613main () 12231main ()
11614{ 12232{
@@ -11635,7 +12253,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11635 ac_cv_type_long_long_int=yes 12253 ac_cv_type_long_long_int=yes
11636else 12254else
11637 echo "$as_me: failed program was:" >&5 12255 echo "$as_me: failed program was:" >&5
11638cat conftest.$ac_ext >&5 12256sed 's/^/| /' conftest.$ac_ext >&5
12257
11639ac_cv_type_long_long_int=no 12258ac_cv_type_long_long_int=no
11640fi 12259fi
11641rm -f conftest.$ac_objext conftest.$ac_ext 12260rm -f conftest.$ac_objext conftest.$ac_ext
@@ -11657,14 +12276,12 @@ else
11657 # Depending upon the size, compute the lo and hi bounds. 12276 # Depending upon the size, compute the lo and hi bounds.
11658cat >conftest.$ac_ext <<_ACEOF 12277cat >conftest.$ac_ext <<_ACEOF
11659#line $LINENO "configure" 12278#line $LINENO "configure"
11660#include "confdefs.h" 12279/* confdefs.h. */
12280_ACEOF
12281cat confdefs.h >>conftest.$ac_ext
12282cat >>conftest.$ac_ext <<_ACEOF
12283/* end confdefs.h. */
11661$ac_includes_default 12284$ac_includes_default
11662#ifdef F77_DUMMY_MAIN
11663# ifdef __cplusplus
11664 extern "C"
11665# endif
11666 int F77_DUMMY_MAIN() { return 1; }
11667#endif
11668int 12285int
11669main () 12286main ()
11670{ 12287{
@@ -11691,14 +12308,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11691 while :; do 12308 while :; do
11692 cat >conftest.$ac_ext <<_ACEOF 12309 cat >conftest.$ac_ext <<_ACEOF
11693#line $LINENO "configure" 12310#line $LINENO "configure"
11694#include "confdefs.h" 12311/* confdefs.h. */
12312_ACEOF
12313cat confdefs.h >>conftest.$ac_ext
12314cat >>conftest.$ac_ext <<_ACEOF
12315/* end confdefs.h. */
11695$ac_includes_default 12316$ac_includes_default
11696#ifdef F77_DUMMY_MAIN
11697# ifdef __cplusplus
11698 extern "C"
11699# endif
11700 int F77_DUMMY_MAIN() { return 1; }
11701#endif
11702int 12317int
11703main () 12318main ()
11704{ 12319{
@@ -11724,7 +12339,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11724 ac_hi=$ac_mid; break 12339 ac_hi=$ac_mid; break
11725else 12340else
11726 echo "$as_me: failed program was:" >&5 12341 echo "$as_me: failed program was:" >&5
11727cat conftest.$ac_ext >&5 12342sed 's/^/| /' conftest.$ac_ext >&5
12343
11728ac_lo=`expr $ac_mid + 1` 12344ac_lo=`expr $ac_mid + 1`
11729 if test $ac_lo -le $ac_mid; then 12345 if test $ac_lo -le $ac_mid; then
11730 ac_lo= ac_hi= 12346 ac_lo= ac_hi=
@@ -11736,17 +12352,16 @@ rm -f conftest.$ac_objext conftest.$ac_ext
11736 done 12352 done
11737else 12353else
11738 echo "$as_me: failed program was:" >&5 12354 echo "$as_me: failed program was:" >&5
11739cat conftest.$ac_ext >&5 12355sed 's/^/| /' conftest.$ac_ext >&5
12356
11740cat >conftest.$ac_ext <<_ACEOF 12357cat >conftest.$ac_ext <<_ACEOF
11741#line $LINENO "configure" 12358#line $LINENO "configure"
11742#include "confdefs.h" 12359/* confdefs.h. */
12360_ACEOF
12361cat confdefs.h >>conftest.$ac_ext
12362cat >>conftest.$ac_ext <<_ACEOF
12363/* end confdefs.h. */
11743$ac_includes_default 12364$ac_includes_default
11744#ifdef F77_DUMMY_MAIN
11745# ifdef __cplusplus
11746 extern "C"
11747# endif
11748 int F77_DUMMY_MAIN() { return 1; }
11749#endif
11750int 12365int
11751main () 12366main ()
11752{ 12367{
@@ -11773,14 +12388,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11773 while :; do 12388 while :; do
11774 cat >conftest.$ac_ext <<_ACEOF 12389 cat >conftest.$ac_ext <<_ACEOF
11775#line $LINENO "configure" 12390#line $LINENO "configure"
11776#include "confdefs.h" 12391/* confdefs.h. */
12392_ACEOF
12393cat confdefs.h >>conftest.$ac_ext
12394cat >>conftest.$ac_ext <<_ACEOF
12395/* end confdefs.h. */
11777$ac_includes_default 12396$ac_includes_default
11778#ifdef F77_DUMMY_MAIN
11779# ifdef __cplusplus
11780 extern "C"
11781# endif
11782 int F77_DUMMY_MAIN() { return 1; }
11783#endif
11784int 12397int
11785main () 12398main ()
11786{ 12399{
@@ -11806,7 +12419,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11806 ac_lo=$ac_mid; break 12419 ac_lo=$ac_mid; break
11807else 12420else
11808 echo "$as_me: failed program was:" >&5 12421 echo "$as_me: failed program was:" >&5
11809cat conftest.$ac_ext >&5 12422sed 's/^/| /' conftest.$ac_ext >&5
12423
11810ac_hi=`expr '(' $ac_mid ')' - 1` 12424ac_hi=`expr '(' $ac_mid ')' - 1`
11811 if test $ac_mid -le $ac_hi; then 12425 if test $ac_mid -le $ac_hi; then
11812 ac_lo= ac_hi= 12426 ac_lo= ac_hi=
@@ -11818,7 +12432,8 @@ rm -f conftest.$ac_objext conftest.$ac_ext
11818 done 12432 done
11819else 12433else
11820 echo "$as_me: failed program was:" >&5 12434 echo "$as_me: failed program was:" >&5
11821cat conftest.$ac_ext >&5 12435sed 's/^/| /' conftest.$ac_ext >&5
12436
11822ac_lo= ac_hi= 12437ac_lo= ac_hi=
11823fi 12438fi
11824rm -f conftest.$ac_objext conftest.$ac_ext 12439rm -f conftest.$ac_objext conftest.$ac_ext
@@ -11829,14 +12444,12 @@ while test "x$ac_lo" != "x$ac_hi"; do
11829 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` 12444 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
11830 cat >conftest.$ac_ext <<_ACEOF 12445 cat >conftest.$ac_ext <<_ACEOF
11831#line $LINENO "configure" 12446#line $LINENO "configure"
11832#include "confdefs.h" 12447/* confdefs.h. */
12448_ACEOF
12449cat confdefs.h >>conftest.$ac_ext
12450cat >>conftest.$ac_ext <<_ACEOF
12451/* end confdefs.h. */
11833$ac_includes_default 12452$ac_includes_default
11834#ifdef F77_DUMMY_MAIN
11835# ifdef __cplusplus
11836 extern "C"
11837# endif
11838 int F77_DUMMY_MAIN() { return 1; }
11839#endif
11840int 12453int
11841main () 12454main ()
11842{ 12455{
@@ -11862,37 +12475,40 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
11862 ac_hi=$ac_mid 12475 ac_hi=$ac_mid
11863else 12476else
11864 echo "$as_me: failed program was:" >&5 12477 echo "$as_me: failed program was:" >&5
11865cat conftest.$ac_ext >&5 12478sed 's/^/| /' conftest.$ac_ext >&5
12479
11866ac_lo=`expr '(' $ac_mid ')' + 1` 12480ac_lo=`expr '(' $ac_mid ')' + 1`
11867fi 12481fi
11868rm -f conftest.$ac_objext conftest.$ac_ext 12482rm -f conftest.$ac_objext conftest.$ac_ext
11869done 12483done
11870case $ac_lo in 12484case $ac_lo in
11871?*) ac_cv_sizeof_long_long_int=$ac_lo;; 12485?*) ac_cv_sizeof_long_long_int=$ac_lo;;
11872'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int), 77" >&5 12486'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int), 77
11873echo "$as_me: error: cannot compute sizeof (long long int), 77" >&2;} 12487See \`config.log' for more details." >&5
12488echo "$as_me: error: cannot compute sizeof (long long int), 77
12489See \`config.log' for more details." >&2;}
11874 { (exit 1); exit 1; }; } ;; 12490 { (exit 1); exit 1; }; } ;;
11875esac 12491esac
11876else 12492else
11877 if test "$cross_compiling" = yes; then 12493 if test "$cross_compiling" = yes; then
11878 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 12494 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
11879echo "$as_me: error: cannot run test program while cross compiling" >&2;} 12495See \`config.log' for more details." >&5
12496echo "$as_me: error: cannot run test program while cross compiling
12497See \`config.log' for more details." >&2;}
11880 { (exit 1); exit 1; }; } 12498 { (exit 1); exit 1; }; }
11881else 12499else
11882 cat >conftest.$ac_ext <<_ACEOF 12500 cat >conftest.$ac_ext <<_ACEOF
11883#line $LINENO "configure" 12501#line $LINENO "configure"
11884#include "confdefs.h" 12502/* confdefs.h. */
12503_ACEOF
12504cat confdefs.h >>conftest.$ac_ext
12505cat >>conftest.$ac_ext <<_ACEOF
12506/* end confdefs.h. */
11885$ac_includes_default 12507$ac_includes_default
11886long longval () { return (long) (sizeof (long long int)); } 12508long longval () { return (long) (sizeof (long long int)); }
11887unsigned long ulongval () { return (long) (sizeof (long long int)); } 12509unsigned long ulongval () { return (long) (sizeof (long long int)); }
11888#include <stdio.h> 12510#include <stdio.h>
11889#include <stdlib.h> 12511#include <stdlib.h>
11890#ifdef F77_DUMMY_MAIN
11891# ifdef __cplusplus
11892 extern "C"
11893# endif
11894 int F77_DUMMY_MAIN() { return 1; }
11895#endif
11896int 12512int
11897main () 12513main ()
11898{ 12514{
@@ -11935,13 +12551,16 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
11935else 12551else
11936 echo "$as_me: program exited with status $ac_status" >&5 12552 echo "$as_me: program exited with status $ac_status" >&5
11937echo "$as_me: failed program was:" >&5 12553echo "$as_me: failed program was:" >&5
11938cat conftest.$ac_ext >&5 12554sed 's/^/| /' conftest.$ac_ext >&5
12555
11939( exit $ac_status ) 12556( exit $ac_status )
11940{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int), 77" >&5 12557{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long long int), 77
11941echo "$as_me: error: cannot compute sizeof (long long int), 77" >&2;} 12558See \`config.log' for more details." >&5
12559echo "$as_me: error: cannot compute sizeof (long long int), 77
12560See \`config.log' for more details." >&2;}
11942 { (exit 1); exit 1; }; } 12561 { (exit 1); exit 1; }; }
11943fi 12562fi
11944rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 12563rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
11945fi 12564fi
11946fi 12565fi
11947rm -f conftest.val 12566rm -f conftest.val
@@ -11971,14 +12590,12 @@ else
11971 12590
11972 cat >conftest.$ac_ext <<_ACEOF 12591 cat >conftest.$ac_ext <<_ACEOF
11973#line $LINENO "configure" 12592#line $LINENO "configure"
11974#include "confdefs.h" 12593/* confdefs.h. */
12594_ACEOF
12595cat confdefs.h >>conftest.$ac_ext
12596cat >>conftest.$ac_ext <<_ACEOF
12597/* end confdefs.h. */
11975 #include <sys/types.h> 12598 #include <sys/types.h>
11976#ifdef F77_DUMMY_MAIN
11977# ifdef __cplusplus
11978 extern "C"
11979# endif
11980 int F77_DUMMY_MAIN() { return 1; }
11981#endif
11982int 12599int
11983main () 12600main ()
11984{ 12601{
@@ -12002,7 +12619,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12002 ac_cv_have_u_int="yes" 12619 ac_cv_have_u_int="yes"
12003else 12620else
12004 echo "$as_me: failed program was:" >&5 12621 echo "$as_me: failed program was:" >&5
12005cat conftest.$ac_ext >&5 12622sed 's/^/| /' conftest.$ac_ext >&5
12623
12006 ac_cv_have_u_int="no" 12624 ac_cv_have_u_int="no"
12007 12625
12008fi 12626fi
@@ -12027,14 +12645,12 @@ else
12027 12645
12028 cat >conftest.$ac_ext <<_ACEOF 12646 cat >conftest.$ac_ext <<_ACEOF
12029#line $LINENO "configure" 12647#line $LINENO "configure"
12030#include "confdefs.h" 12648/* confdefs.h. */
12649_ACEOF
12650cat confdefs.h >>conftest.$ac_ext
12651cat >>conftest.$ac_ext <<_ACEOF
12652/* end confdefs.h. */
12031 #include <sys/types.h> 12653 #include <sys/types.h>
12032#ifdef F77_DUMMY_MAIN
12033# ifdef __cplusplus
12034 extern "C"
12035# endif
12036 int F77_DUMMY_MAIN() { return 1; }
12037#endif
12038int 12654int
12039main () 12655main ()
12040{ 12656{
@@ -12058,7 +12674,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12058 ac_cv_have_intxx_t="yes" 12674 ac_cv_have_intxx_t="yes"
12059else 12675else
12060 echo "$as_me: failed program was:" >&5 12676 echo "$as_me: failed program was:" >&5
12061cat conftest.$ac_ext >&5 12677sed 's/^/| /' conftest.$ac_ext >&5
12678
12062 ac_cv_have_intxx_t="no" 12679 ac_cv_have_intxx_t="no"
12063 12680
12064fi 12681fi
@@ -12082,14 +12699,12 @@ then
12082echo $ECHO_N "checking for intXX_t types in stdint.h... $ECHO_C" >&6 12699echo $ECHO_N "checking for intXX_t types in stdint.h... $ECHO_C" >&6
12083 cat >conftest.$ac_ext <<_ACEOF 12700 cat >conftest.$ac_ext <<_ACEOF
12084#line $LINENO "configure" 12701#line $LINENO "configure"
12085#include "confdefs.h" 12702/* confdefs.h. */
12703_ACEOF
12704cat confdefs.h >>conftest.$ac_ext
12705cat >>conftest.$ac_ext <<_ACEOF
12706/* end confdefs.h. */
12086 #include <stdint.h> 12707 #include <stdint.h>
12087#ifdef F77_DUMMY_MAIN
12088# ifdef __cplusplus
12089 extern "C"
12090# endif
12091 int F77_DUMMY_MAIN() { return 1; }
12092#endif
12093int 12708int
12094main () 12709main ()
12095{ 12710{
@@ -12120,7 +12735,8 @@ echo "${ECHO_T}yes" >&6
12120 12735
12121else 12736else
12122 echo "$as_me: failed program was:" >&5 12737 echo "$as_me: failed program was:" >&5
12123cat conftest.$ac_ext >&5 12738sed 's/^/| /' conftest.$ac_ext >&5
12739
12124 echo "$as_me:$LINENO: result: no" >&5 12740 echo "$as_me:$LINENO: result: no" >&5
12125echo "${ECHO_T}no" >&6 12741echo "${ECHO_T}no" >&6
12126 12742
@@ -12136,7 +12752,11 @@ else
12136 12752
12137 cat >conftest.$ac_ext <<_ACEOF 12753 cat >conftest.$ac_ext <<_ACEOF
12138#line $LINENO "configure" 12754#line $LINENO "configure"
12139#include "confdefs.h" 12755/* confdefs.h. */
12756_ACEOF
12757cat confdefs.h >>conftest.$ac_ext
12758cat >>conftest.$ac_ext <<_ACEOF
12759/* end confdefs.h. */
12140 12760
12141#include <sys/types.h> 12761#include <sys/types.h>
12142#ifdef HAVE_STDINT_H 12762#ifdef HAVE_STDINT_H
@@ -12147,12 +12767,6 @@ else
12147# include <sys/bitypes.h> 12767# include <sys/bitypes.h>
12148#endif 12768#endif
12149 12769
12150#ifdef F77_DUMMY_MAIN
12151# ifdef __cplusplus
12152 extern "C"
12153# endif
12154 int F77_DUMMY_MAIN() { return 1; }
12155#endif
12156int 12770int
12157main () 12771main ()
12158{ 12772{
@@ -12176,7 +12790,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12176 ac_cv_have_int64_t="yes" 12790 ac_cv_have_int64_t="yes"
12177else 12791else
12178 echo "$as_me: failed program was:" >&5 12792 echo "$as_me: failed program was:" >&5
12179cat conftest.$ac_ext >&5 12793sed 's/^/| /' conftest.$ac_ext >&5
12794
12180 ac_cv_have_int64_t="no" 12795 ac_cv_have_int64_t="no"
12181 12796
12182fi 12797fi
@@ -12200,14 +12815,12 @@ else
12200 12815
12201 cat >conftest.$ac_ext <<_ACEOF 12816 cat >conftest.$ac_ext <<_ACEOF
12202#line $LINENO "configure" 12817#line $LINENO "configure"
12203#include "confdefs.h" 12818/* confdefs.h. */
12819_ACEOF
12820cat confdefs.h >>conftest.$ac_ext
12821cat >>conftest.$ac_ext <<_ACEOF
12822/* end confdefs.h. */
12204 #include <sys/types.h> 12823 #include <sys/types.h>
12205#ifdef F77_DUMMY_MAIN
12206# ifdef __cplusplus
12207 extern "C"
12208# endif
12209 int F77_DUMMY_MAIN() { return 1; }
12210#endif
12211int 12824int
12212main () 12825main ()
12213{ 12826{
@@ -12231,7 +12844,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12231 ac_cv_have_u_intxx_t="yes" 12844 ac_cv_have_u_intxx_t="yes"
12232else 12845else
12233 echo "$as_me: failed program was:" >&5 12846 echo "$as_me: failed program was:" >&5
12234cat conftest.$ac_ext >&5 12847sed 's/^/| /' conftest.$ac_ext >&5
12848
12235 ac_cv_have_u_intxx_t="no" 12849 ac_cv_have_u_intxx_t="no"
12236 12850
12237fi 12851fi
@@ -12253,14 +12867,12 @@ if test -z "$have_u_intxx_t" ; then
12253echo $ECHO_N "checking for u_intXX_t types in sys/socket.h... $ECHO_C" >&6 12867echo $ECHO_N "checking for u_intXX_t types in sys/socket.h... $ECHO_C" >&6
12254 cat >conftest.$ac_ext <<_ACEOF 12868 cat >conftest.$ac_ext <<_ACEOF
12255#line $LINENO "configure" 12869#line $LINENO "configure"
12256#include "confdefs.h" 12870/* confdefs.h. */
12871_ACEOF
12872cat confdefs.h >>conftest.$ac_ext
12873cat >>conftest.$ac_ext <<_ACEOF
12874/* end confdefs.h. */
12257 #include <sys/socket.h> 12875 #include <sys/socket.h>
12258#ifdef F77_DUMMY_MAIN
12259# ifdef __cplusplus
12260 extern "C"
12261# endif
12262 int F77_DUMMY_MAIN() { return 1; }
12263#endif
12264int 12876int
12265main () 12877main ()
12266{ 12878{
@@ -12291,7 +12903,8 @@ echo "${ECHO_T}yes" >&6
12291 12903
12292else 12904else
12293 echo "$as_me: failed program was:" >&5 12905 echo "$as_me: failed program was:" >&5
12294cat conftest.$ac_ext >&5 12906sed 's/^/| /' conftest.$ac_ext >&5
12907
12295 echo "$as_me:$LINENO: result: no" >&5 12908 echo "$as_me:$LINENO: result: no" >&5
12296echo "${ECHO_T}no" >&6 12909echo "${ECHO_T}no" >&6
12297 12910
@@ -12307,14 +12920,12 @@ else
12307 12920
12308 cat >conftest.$ac_ext <<_ACEOF 12921 cat >conftest.$ac_ext <<_ACEOF
12309#line $LINENO "configure" 12922#line $LINENO "configure"
12310#include "confdefs.h" 12923/* confdefs.h. */
12924_ACEOF
12925cat confdefs.h >>conftest.$ac_ext
12926cat >>conftest.$ac_ext <<_ACEOF
12927/* end confdefs.h. */
12311 #include <sys/types.h> 12928 #include <sys/types.h>
12312#ifdef F77_DUMMY_MAIN
12313# ifdef __cplusplus
12314 extern "C"
12315# endif
12316 int F77_DUMMY_MAIN() { return 1; }
12317#endif
12318int 12929int
12319main () 12930main ()
12320{ 12931{
@@ -12338,7 +12949,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12338 ac_cv_have_u_int64_t="yes" 12949 ac_cv_have_u_int64_t="yes"
12339else 12950else
12340 echo "$as_me: failed program was:" >&5 12951 echo "$as_me: failed program was:" >&5
12341cat conftest.$ac_ext >&5 12952sed 's/^/| /' conftest.$ac_ext >&5
12953
12342 ac_cv_have_u_int64_t="no" 12954 ac_cv_have_u_int64_t="no"
12343 12955
12344fi 12956fi
@@ -12360,14 +12972,12 @@ if test -z "$have_u_int64_t" ; then
12360echo $ECHO_N "checking for u_int64_t type in sys/bitypes.h... $ECHO_C" >&6 12972echo $ECHO_N "checking for u_int64_t type in sys/bitypes.h... $ECHO_C" >&6
12361 cat >conftest.$ac_ext <<_ACEOF 12973 cat >conftest.$ac_ext <<_ACEOF
12362#line $LINENO "configure" 12974#line $LINENO "configure"
12363#include "confdefs.h" 12975/* confdefs.h. */
12976_ACEOF
12977cat confdefs.h >>conftest.$ac_ext
12978cat >>conftest.$ac_ext <<_ACEOF
12979/* end confdefs.h. */
12364 #include <sys/bitypes.h> 12980 #include <sys/bitypes.h>
12365#ifdef F77_DUMMY_MAIN
12366# ifdef __cplusplus
12367 extern "C"
12368# endif
12369 int F77_DUMMY_MAIN() { return 1; }
12370#endif
12371int 12981int
12372main () 12982main ()
12373{ 12983{
@@ -12398,7 +13008,8 @@ echo "${ECHO_T}yes" >&6
12398 13008
12399else 13009else
12400 echo "$as_me: failed program was:" >&5 13010 echo "$as_me: failed program was:" >&5
12401cat conftest.$ac_ext >&5 13011sed 's/^/| /' conftest.$ac_ext >&5
13012
12402 echo "$as_me:$LINENO: result: no" >&5 13013 echo "$as_me:$LINENO: result: no" >&5
12403echo "${ECHO_T}no" >&6 13014echo "${ECHO_T}no" >&6
12404 13015
@@ -12415,16 +13026,14 @@ else
12415 13026
12416 cat >conftest.$ac_ext <<_ACEOF 13027 cat >conftest.$ac_ext <<_ACEOF
12417#line $LINENO "configure" 13028#line $LINENO "configure"
12418#include "confdefs.h" 13029/* confdefs.h. */
13030_ACEOF
13031cat confdefs.h >>conftest.$ac_ext
13032cat >>conftest.$ac_ext <<_ACEOF
13033/* end confdefs.h. */
12419 13034
12420#include <sys/types.h> 13035#include <sys/types.h>
12421 13036
12422#ifdef F77_DUMMY_MAIN
12423# ifdef __cplusplus
12424 extern "C"
12425# endif
12426 int F77_DUMMY_MAIN() { return 1; }
12427#endif
12428int 13037int
12429main () 13038main ()
12430{ 13039{
@@ -12448,7 +13057,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12448 ac_cv_have_uintxx_t="yes" 13057 ac_cv_have_uintxx_t="yes"
12449else 13058else
12450 echo "$as_me: failed program was:" >&5 13059 echo "$as_me: failed program was:" >&5
12451cat conftest.$ac_ext >&5 13060sed 's/^/| /' conftest.$ac_ext >&5
13061
12452 ac_cv_have_uintxx_t="no" 13062 ac_cv_have_uintxx_t="no"
12453 13063
12454fi 13064fi
@@ -12470,14 +13080,12 @@ if test -z "$have_uintxx_t" ; then
12470echo $ECHO_N "checking for uintXX_t types in stdint.h... $ECHO_C" >&6 13080echo $ECHO_N "checking for uintXX_t types in stdint.h... $ECHO_C" >&6
12471 cat >conftest.$ac_ext <<_ACEOF 13081 cat >conftest.$ac_ext <<_ACEOF
12472#line $LINENO "configure" 13082#line $LINENO "configure"
12473#include "confdefs.h" 13083/* confdefs.h. */
13084_ACEOF
13085cat confdefs.h >>conftest.$ac_ext
13086cat >>conftest.$ac_ext <<_ACEOF
13087/* end confdefs.h. */
12474 #include <stdint.h> 13088 #include <stdint.h>
12475#ifdef F77_DUMMY_MAIN
12476# ifdef __cplusplus
12477 extern "C"
12478# endif
12479 int F77_DUMMY_MAIN() { return 1; }
12480#endif
12481int 13089int
12482main () 13090main ()
12483{ 13091{
@@ -12508,7 +13116,8 @@ echo "${ECHO_T}yes" >&6
12508 13116
12509else 13117else
12510 echo "$as_me: failed program was:" >&5 13118 echo "$as_me: failed program was:" >&5
12511cat conftest.$ac_ext >&5 13119sed 's/^/| /' conftest.$ac_ext >&5
13120
12512 echo "$as_me:$LINENO: result: no" >&5 13121 echo "$as_me:$LINENO: result: no" >&5
12513echo "${ECHO_T}no" >&6 13122echo "${ECHO_T}no" >&6
12514 13123
@@ -12523,16 +13132,14 @@ then
12523echo $ECHO_N "checking for intXX_t and u_intXX_t types in sys/bitypes.h... $ECHO_C" >&6 13132echo $ECHO_N "checking for intXX_t and u_intXX_t types in sys/bitypes.h... $ECHO_C" >&6
12524 cat >conftest.$ac_ext <<_ACEOF 13133 cat >conftest.$ac_ext <<_ACEOF
12525#line $LINENO "configure" 13134#line $LINENO "configure"
12526#include "confdefs.h" 13135/* confdefs.h. */
13136_ACEOF
13137cat confdefs.h >>conftest.$ac_ext
13138cat >>conftest.$ac_ext <<_ACEOF
13139/* end confdefs.h. */
12527 13140
12528#include <sys/bitypes.h> 13141#include <sys/bitypes.h>
12529 13142
12530#ifdef F77_DUMMY_MAIN
12531# ifdef __cplusplus
12532 extern "C"
12533# endif
12534 int F77_DUMMY_MAIN() { return 1; }
12535#endif
12536int 13143int
12537main () 13144main ()
12538{ 13145{
@@ -12571,7 +13178,8 @@ echo "${ECHO_T}yes" >&6
12571 13178
12572else 13179else
12573 echo "$as_me: failed program was:" >&5 13180 echo "$as_me: failed program was:" >&5
12574cat conftest.$ac_ext >&5 13181sed 's/^/| /' conftest.$ac_ext >&5
13182
12575echo "$as_me:$LINENO: result: no" >&5 13183echo "$as_me:$LINENO: result: no" >&5
12576echo "${ECHO_T}no" >&6 13184echo "${ECHO_T}no" >&6
12577 13185
@@ -12588,16 +13196,14 @@ else
12588 13196
12589 cat >conftest.$ac_ext <<_ACEOF 13197 cat >conftest.$ac_ext <<_ACEOF
12590#line $LINENO "configure" 13198#line $LINENO "configure"
12591#include "confdefs.h" 13199/* confdefs.h. */
13200_ACEOF
13201cat confdefs.h >>conftest.$ac_ext
13202cat >>conftest.$ac_ext <<_ACEOF
13203/* end confdefs.h. */
12592 13204
12593#include <sys/types.h> 13205#include <sys/types.h>
12594 13206
12595#ifdef F77_DUMMY_MAIN
12596# ifdef __cplusplus
12597 extern "C"
12598# endif
12599 int F77_DUMMY_MAIN() { return 1; }
12600#endif
12601int 13207int
12602main () 13208main ()
12603{ 13209{
@@ -12621,7 +13227,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12621 ac_cv_have_u_char="yes" 13227 ac_cv_have_u_char="yes"
12622else 13228else
12623 echo "$as_me: failed program was:" >&5 13229 echo "$as_me: failed program was:" >&5
12624cat conftest.$ac_ext >&5 13230sed 's/^/| /' conftest.$ac_ext >&5
13231
12625 ac_cv_have_u_char="no" 13232 ac_cv_have_u_char="no"
12626 13233
12627fi 13234fi
@@ -12645,16 +13252,14 @@ if test "${ac_cv_type_socklen_t+set}" = set; then
12645else 13252else
12646 cat >conftest.$ac_ext <<_ACEOF 13253 cat >conftest.$ac_ext <<_ACEOF
12647#line $LINENO "configure" 13254#line $LINENO "configure"
12648#include "confdefs.h" 13255/* confdefs.h. */
13256_ACEOF
13257cat confdefs.h >>conftest.$ac_ext
13258cat >>conftest.$ac_ext <<_ACEOF
13259/* end confdefs.h. */
12649#include <sys/types.h> 13260#include <sys/types.h>
12650#include <sys/socket.h> 13261#include <sys/socket.h>
12651 13262
12652#ifdef F77_DUMMY_MAIN
12653# ifdef __cplusplus
12654 extern "C"
12655# endif
12656 int F77_DUMMY_MAIN() { return 1; }
12657#endif
12658int 13263int
12659main () 13264main ()
12660{ 13265{
@@ -12681,7 +13286,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12681 ac_cv_type_socklen_t=yes 13286 ac_cv_type_socklen_t=yes
12682else 13287else
12683 echo "$as_me: failed program was:" >&5 13288 echo "$as_me: failed program was:" >&5
12684cat conftest.$ac_ext >&5 13289sed 's/^/| /' conftest.$ac_ext >&5
13290
12685ac_cv_type_socklen_t=no 13291ac_cv_type_socklen_t=no
12686fi 13292fi
12687rm -f conftest.$ac_objext conftest.$ac_ext 13293rm -f conftest.$ac_objext conftest.$ac_ext
@@ -12705,19 +13311,17 @@ else
12705 for t in int size_t unsigned long "unsigned long"; do 13311 for t in int size_t unsigned long "unsigned long"; do
12706 cat >conftest.$ac_ext <<_ACEOF 13312 cat >conftest.$ac_ext <<_ACEOF
12707#line $LINENO "configure" 13313#line $LINENO "configure"
12708#include "confdefs.h" 13314/* confdefs.h. */
13315_ACEOF
13316cat confdefs.h >>conftest.$ac_ext
13317cat >>conftest.$ac_ext <<_ACEOF
13318/* end confdefs.h. */
12709 13319
12710 #include <sys/types.h> 13320 #include <sys/types.h>
12711 #include <sys/socket.h> 13321 #include <sys/socket.h>
12712 13322
12713 int getpeername (int, $arg2 *, $t *); 13323 int getpeername (int, $arg2 *, $t *);
12714 13324
12715#ifdef F77_DUMMY_MAIN
12716# ifdef __cplusplus
12717 extern "C"
12718# endif
12719 int F77_DUMMY_MAIN() { return 1; }
12720#endif
12721int 13325int
12722main () 13326main ()
12723{ 13327{
@@ -12747,7 +13351,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12747 13351
12748else 13352else
12749 echo "$as_me: failed program was:" >&5 13353 echo "$as_me: failed program was:" >&5
12750cat conftest.$ac_ext >&5 13354sed 's/^/| /' conftest.$ac_ext >&5
13355
12751fi 13356fi
12752rm -f conftest.$ac_objext conftest.$ac_ext 13357rm -f conftest.$ac_objext conftest.$ac_ext
12753 done 13358 done
@@ -12779,15 +13384,13 @@ if test "${ac_cv_type_sig_atomic_t+set}" = set; then
12779else 13384else
12780 cat >conftest.$ac_ext <<_ACEOF 13385 cat >conftest.$ac_ext <<_ACEOF
12781#line $LINENO "configure" 13386#line $LINENO "configure"
12782#include "confdefs.h" 13387/* confdefs.h. */
13388_ACEOF
13389cat confdefs.h >>conftest.$ac_ext
13390cat >>conftest.$ac_ext <<_ACEOF
13391/* end confdefs.h. */
12783#include <signal.h> 13392#include <signal.h>
12784 13393
12785#ifdef F77_DUMMY_MAIN
12786# ifdef __cplusplus
12787 extern "C"
12788# endif
12789 int F77_DUMMY_MAIN() { return 1; }
12790#endif
12791int 13394int
12792main () 13395main ()
12793{ 13396{
@@ -12814,7 +13417,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12814 ac_cv_type_sig_atomic_t=yes 13417 ac_cv_type_sig_atomic_t=yes
12815else 13418else
12816 echo "$as_me: failed program was:" >&5 13419 echo "$as_me: failed program was:" >&5
12817cat conftest.$ac_ext >&5 13420sed 's/^/| /' conftest.$ac_ext >&5
13421
12818ac_cv_type_sig_atomic_t=no 13422ac_cv_type_sig_atomic_t=no
12819fi 13423fi
12820rm -f conftest.$ac_objext conftest.$ac_ext 13424rm -f conftest.$ac_objext conftest.$ac_ext
@@ -12839,16 +13443,14 @@ else
12839 13443
12840 cat >conftest.$ac_ext <<_ACEOF 13444 cat >conftest.$ac_ext <<_ACEOF
12841#line $LINENO "configure" 13445#line $LINENO "configure"
12842#include "confdefs.h" 13446/* confdefs.h. */
13447_ACEOF
13448cat confdefs.h >>conftest.$ac_ext
13449cat >>conftest.$ac_ext <<_ACEOF
13450/* end confdefs.h. */
12843 13451
12844#include <sys/types.h> 13452#include <sys/types.h>
12845 13453
12846#ifdef F77_DUMMY_MAIN
12847# ifdef __cplusplus
12848 extern "C"
12849# endif
12850 int F77_DUMMY_MAIN() { return 1; }
12851#endif
12852int 13454int
12853main () 13455main ()
12854{ 13456{
@@ -12872,7 +13474,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12872 ac_cv_have_size_t="yes" 13474 ac_cv_have_size_t="yes"
12873else 13475else
12874 echo "$as_me: failed program was:" >&5 13476 echo "$as_me: failed program was:" >&5
12875cat conftest.$ac_ext >&5 13477sed 's/^/| /' conftest.$ac_ext >&5
13478
12876 ac_cv_have_size_t="no" 13479 ac_cv_have_size_t="no"
12877 13480
12878fi 13481fi
@@ -12896,16 +13499,14 @@ else
12896 13499
12897 cat >conftest.$ac_ext <<_ACEOF 13500 cat >conftest.$ac_ext <<_ACEOF
12898#line $LINENO "configure" 13501#line $LINENO "configure"
12899#include "confdefs.h" 13502/* confdefs.h. */
13503_ACEOF
13504cat confdefs.h >>conftest.$ac_ext
13505cat >>conftest.$ac_ext <<_ACEOF
13506/* end confdefs.h. */
12900 13507
12901#include <sys/types.h> 13508#include <sys/types.h>
12902 13509
12903#ifdef F77_DUMMY_MAIN
12904# ifdef __cplusplus
12905 extern "C"
12906# endif
12907 int F77_DUMMY_MAIN() { return 1; }
12908#endif
12909int 13510int
12910main () 13511main ()
12911{ 13512{
@@ -12929,7 +13530,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12929 ac_cv_have_ssize_t="yes" 13530 ac_cv_have_ssize_t="yes"
12930else 13531else
12931 echo "$as_me: failed program was:" >&5 13532 echo "$as_me: failed program was:" >&5
12932cat conftest.$ac_ext >&5 13533sed 's/^/| /' conftest.$ac_ext >&5
13534
12933 ac_cv_have_ssize_t="no" 13535 ac_cv_have_ssize_t="no"
12934 13536
12935fi 13537fi
@@ -12953,16 +13555,14 @@ else
12953 13555
12954 cat >conftest.$ac_ext <<_ACEOF 13556 cat >conftest.$ac_ext <<_ACEOF
12955#line $LINENO "configure" 13557#line $LINENO "configure"
12956#include "confdefs.h" 13558/* confdefs.h. */
13559_ACEOF
13560cat confdefs.h >>conftest.$ac_ext
13561cat >>conftest.$ac_ext <<_ACEOF
13562/* end confdefs.h. */
12957 13563
12958#include <time.h> 13564#include <time.h>
12959 13565
12960#ifdef F77_DUMMY_MAIN
12961# ifdef __cplusplus
12962 extern "C"
12963# endif
12964 int F77_DUMMY_MAIN() { return 1; }
12965#endif
12966int 13566int
12967main () 13567main ()
12968{ 13568{
@@ -12986,7 +13586,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12986 ac_cv_have_clock_t="yes" 13586 ac_cv_have_clock_t="yes"
12987else 13587else
12988 echo "$as_me: failed program was:" >&5 13588 echo "$as_me: failed program was:" >&5
12989cat conftest.$ac_ext >&5 13589sed 's/^/| /' conftest.$ac_ext >&5
13590
12990 ac_cv_have_clock_t="no" 13591 ac_cv_have_clock_t="no"
12991 13592
12992fi 13593fi
@@ -13010,17 +13611,15 @@ else
13010 13611
13011 cat >conftest.$ac_ext <<_ACEOF 13612 cat >conftest.$ac_ext <<_ACEOF
13012#line $LINENO "configure" 13613#line $LINENO "configure"
13013#include "confdefs.h" 13614/* confdefs.h. */
13615_ACEOF
13616cat confdefs.h >>conftest.$ac_ext
13617cat >>conftest.$ac_ext <<_ACEOF
13618/* end confdefs.h. */
13014 13619
13015#include <sys/types.h> 13620#include <sys/types.h>
13016#include <sys/socket.h> 13621#include <sys/socket.h>
13017 13622
13018#ifdef F77_DUMMY_MAIN
13019# ifdef __cplusplus
13020 extern "C"
13021# endif
13022 int F77_DUMMY_MAIN() { return 1; }
13023#endif
13024int 13623int
13025main () 13624main ()
13026{ 13625{
@@ -13044,21 +13643,20 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13044 ac_cv_have_sa_family_t="yes" 13643 ac_cv_have_sa_family_t="yes"
13045else 13644else
13046 echo "$as_me: failed program was:" >&5 13645 echo "$as_me: failed program was:" >&5
13047cat conftest.$ac_ext >&5 13646sed 's/^/| /' conftest.$ac_ext >&5
13647
13048 cat >conftest.$ac_ext <<_ACEOF 13648 cat >conftest.$ac_ext <<_ACEOF
13049#line $LINENO "configure" 13649#line $LINENO "configure"
13050#include "confdefs.h" 13650/* confdefs.h. */
13651_ACEOF
13652cat confdefs.h >>conftest.$ac_ext
13653cat >>conftest.$ac_ext <<_ACEOF
13654/* end confdefs.h. */
13051 13655
13052#include <sys/types.h> 13656#include <sys/types.h>
13053#include <sys/socket.h> 13657#include <sys/socket.h>
13054#include <netinet/in.h> 13658#include <netinet/in.h>
13055 13659
13056#ifdef F77_DUMMY_MAIN
13057# ifdef __cplusplus
13058 extern "C"
13059# endif
13060 int F77_DUMMY_MAIN() { return 1; }
13061#endif
13062int 13660int
13063main () 13661main ()
13064{ 13662{
@@ -13082,7 +13680,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13082 ac_cv_have_sa_family_t="yes" 13680 ac_cv_have_sa_family_t="yes"
13083else 13681else
13084 echo "$as_me: failed program was:" >&5 13682 echo "$as_me: failed program was:" >&5
13085cat conftest.$ac_ext >&5 13683sed 's/^/| /' conftest.$ac_ext >&5
13684
13086 ac_cv_have_sa_family_t="no" 13685 ac_cv_have_sa_family_t="no"
13087 13686
13088fi 13687fi
@@ -13109,16 +13708,14 @@ else
13109 13708
13110 cat >conftest.$ac_ext <<_ACEOF 13709 cat >conftest.$ac_ext <<_ACEOF
13111#line $LINENO "configure" 13710#line $LINENO "configure"
13112#include "confdefs.h" 13711/* confdefs.h. */
13712_ACEOF
13713cat confdefs.h >>conftest.$ac_ext
13714cat >>conftest.$ac_ext <<_ACEOF
13715/* end confdefs.h. */
13113 13716
13114#include <sys/types.h> 13717#include <sys/types.h>
13115 13718
13116#ifdef F77_DUMMY_MAIN
13117# ifdef __cplusplus
13118 extern "C"
13119# endif
13120 int F77_DUMMY_MAIN() { return 1; }
13121#endif
13122int 13719int
13123main () 13720main ()
13124{ 13721{
@@ -13142,7 +13739,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13142 ac_cv_have_pid_t="yes" 13739 ac_cv_have_pid_t="yes"
13143else 13740else
13144 echo "$as_me: failed program was:" >&5 13741 echo "$as_me: failed program was:" >&5
13145cat conftest.$ac_ext >&5 13742sed 's/^/| /' conftest.$ac_ext >&5
13743
13146 ac_cv_have_pid_t="no" 13744 ac_cv_have_pid_t="no"
13147 13745
13148fi 13746fi
@@ -13166,16 +13764,14 @@ else
13166 13764
13167 cat >conftest.$ac_ext <<_ACEOF 13765 cat >conftest.$ac_ext <<_ACEOF
13168#line $LINENO "configure" 13766#line $LINENO "configure"
13169#include "confdefs.h" 13767/* confdefs.h. */
13768_ACEOF
13769cat confdefs.h >>conftest.$ac_ext
13770cat >>conftest.$ac_ext <<_ACEOF
13771/* end confdefs.h. */
13170 13772
13171#include <sys/types.h> 13773#include <sys/types.h>
13172 13774
13173#ifdef F77_DUMMY_MAIN
13174# ifdef __cplusplus
13175 extern "C"
13176# endif
13177 int F77_DUMMY_MAIN() { return 1; }
13178#endif
13179int 13775int
13180main () 13776main ()
13181{ 13777{
@@ -13199,7 +13795,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13199 ac_cv_have_mode_t="yes" 13795 ac_cv_have_mode_t="yes"
13200else 13796else
13201 echo "$as_me: failed program was:" >&5 13797 echo "$as_me: failed program was:" >&5
13202cat conftest.$ac_ext >&5 13798sed 's/^/| /' conftest.$ac_ext >&5
13799
13203 ac_cv_have_mode_t="no" 13800 ac_cv_have_mode_t="no"
13204 13801
13205fi 13802fi
@@ -13224,17 +13821,15 @@ else
13224 13821
13225 cat >conftest.$ac_ext <<_ACEOF 13822 cat >conftest.$ac_ext <<_ACEOF
13226#line $LINENO "configure" 13823#line $LINENO "configure"
13227#include "confdefs.h" 13824/* confdefs.h. */
13825_ACEOF
13826cat confdefs.h >>conftest.$ac_ext
13827cat >>conftest.$ac_ext <<_ACEOF
13828/* end confdefs.h. */
13228 13829
13229#include <sys/types.h> 13830#include <sys/types.h>
13230#include <sys/socket.h> 13831#include <sys/socket.h>
13231 13832
13232#ifdef F77_DUMMY_MAIN
13233# ifdef __cplusplus
13234 extern "C"
13235# endif
13236 int F77_DUMMY_MAIN() { return 1; }
13237#endif
13238int 13833int
13239main () 13834main ()
13240{ 13835{
@@ -13258,7 +13853,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13258 ac_cv_have_struct_sockaddr_storage="yes" 13853 ac_cv_have_struct_sockaddr_storage="yes"
13259else 13854else
13260 echo "$as_me: failed program was:" >&5 13855 echo "$as_me: failed program was:" >&5
13261cat conftest.$ac_ext >&5 13856sed 's/^/| /' conftest.$ac_ext >&5
13857
13262 ac_cv_have_struct_sockaddr_storage="no" 13858 ac_cv_have_struct_sockaddr_storage="no"
13263 13859
13264fi 13860fi
@@ -13282,17 +13878,15 @@ else
13282 13878
13283 cat >conftest.$ac_ext <<_ACEOF 13879 cat >conftest.$ac_ext <<_ACEOF
13284#line $LINENO "configure" 13880#line $LINENO "configure"
13285#include "confdefs.h" 13881/* confdefs.h. */
13882_ACEOF
13883cat confdefs.h >>conftest.$ac_ext
13884cat >>conftest.$ac_ext <<_ACEOF
13885/* end confdefs.h. */
13286 13886
13287#include <sys/types.h> 13887#include <sys/types.h>
13288#include <netinet/in.h> 13888#include <netinet/in.h>
13289 13889
13290#ifdef F77_DUMMY_MAIN
13291# ifdef __cplusplus
13292 extern "C"
13293# endif
13294 int F77_DUMMY_MAIN() { return 1; }
13295#endif
13296int 13890int
13297main () 13891main ()
13298{ 13892{
@@ -13316,7 +13910,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13316 ac_cv_have_struct_sockaddr_in6="yes" 13910 ac_cv_have_struct_sockaddr_in6="yes"
13317else 13911else
13318 echo "$as_me: failed program was:" >&5 13912 echo "$as_me: failed program was:" >&5
13319cat conftest.$ac_ext >&5 13913sed 's/^/| /' conftest.$ac_ext >&5
13914
13320 ac_cv_have_struct_sockaddr_in6="no" 13915 ac_cv_have_struct_sockaddr_in6="no"
13321 13916
13322fi 13917fi
@@ -13340,17 +13935,15 @@ else
13340 13935
13341 cat >conftest.$ac_ext <<_ACEOF 13936 cat >conftest.$ac_ext <<_ACEOF
13342#line $LINENO "configure" 13937#line $LINENO "configure"
13343#include "confdefs.h" 13938/* confdefs.h. */
13939_ACEOF
13940cat confdefs.h >>conftest.$ac_ext
13941cat >>conftest.$ac_ext <<_ACEOF
13942/* end confdefs.h. */
13344 13943
13345#include <sys/types.h> 13944#include <sys/types.h>
13346#include <netinet/in.h> 13945#include <netinet/in.h>
13347 13946
13348#ifdef F77_DUMMY_MAIN
13349# ifdef __cplusplus
13350 extern "C"
13351# endif
13352 int F77_DUMMY_MAIN() { return 1; }
13353#endif
13354int 13947int
13355main () 13948main ()
13356{ 13949{
@@ -13374,7 +13967,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13374 ac_cv_have_struct_in6_addr="yes" 13967 ac_cv_have_struct_in6_addr="yes"
13375else 13968else
13376 echo "$as_me: failed program was:" >&5 13969 echo "$as_me: failed program was:" >&5
13377cat conftest.$ac_ext >&5 13970sed 's/^/| /' conftest.$ac_ext >&5
13971
13378 ac_cv_have_struct_in6_addr="no" 13972 ac_cv_have_struct_in6_addr="no"
13379 13973
13380fi 13974fi
@@ -13398,18 +13992,16 @@ else
13398 13992
13399 cat >conftest.$ac_ext <<_ACEOF 13993 cat >conftest.$ac_ext <<_ACEOF
13400#line $LINENO "configure" 13994#line $LINENO "configure"
13401#include "confdefs.h" 13995/* confdefs.h. */
13996_ACEOF
13997cat confdefs.h >>conftest.$ac_ext
13998cat >>conftest.$ac_ext <<_ACEOF
13999/* end confdefs.h. */
13402 14000
13403#include <sys/types.h> 14001#include <sys/types.h>
13404#include <sys/socket.h> 14002#include <sys/socket.h>
13405#include <netdb.h> 14003#include <netdb.h>
13406 14004
13407#ifdef F77_DUMMY_MAIN
13408# ifdef __cplusplus
13409 extern "C"
13410# endif
13411 int F77_DUMMY_MAIN() { return 1; }
13412#endif
13413int 14005int
13414main () 14006main ()
13415{ 14007{
@@ -13433,7 +14025,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13433 ac_cv_have_struct_addrinfo="yes" 14025 ac_cv_have_struct_addrinfo="yes"
13434else 14026else
13435 echo "$as_me: failed program was:" >&5 14027 echo "$as_me: failed program was:" >&5
13436cat conftest.$ac_ext >&5 14028sed 's/^/| /' conftest.$ac_ext >&5
14029
13437 ac_cv_have_struct_addrinfo="no" 14030 ac_cv_have_struct_addrinfo="no"
13438 14031
13439fi 14032fi
@@ -13457,14 +14050,12 @@ else
13457 14050
13458 cat >conftest.$ac_ext <<_ACEOF 14051 cat >conftest.$ac_ext <<_ACEOF
13459#line $LINENO "configure" 14052#line $LINENO "configure"
13460#include "confdefs.h" 14053/* confdefs.h. */
14054_ACEOF
14055cat confdefs.h >>conftest.$ac_ext
14056cat >>conftest.$ac_ext <<_ACEOF
14057/* end confdefs.h. */
13461 #include <sys/time.h> 14058 #include <sys/time.h>
13462#ifdef F77_DUMMY_MAIN
13463# ifdef __cplusplus
13464 extern "C"
13465# endif
13466 int F77_DUMMY_MAIN() { return 1; }
13467#endif
13468int 14059int
13469main () 14060main ()
13470{ 14061{
@@ -13488,7 +14079,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13488 ac_cv_have_struct_timeval="yes" 14079 ac_cv_have_struct_timeval="yes"
13489else 14080else
13490 echo "$as_me: failed program was:" >&5 14081 echo "$as_me: failed program was:" >&5
13491cat conftest.$ac_ext >&5 14082sed 's/^/| /' conftest.$ac_ext >&5
14083
13492 ac_cv_have_struct_timeval="no" 14084 ac_cv_have_struct_timeval="no"
13493 14085
13494fi 14086fi
@@ -13512,14 +14104,12 @@ if test "${ac_cv_type_struct_timespec+set}" = set; then
13512else 14104else
13513 cat >conftest.$ac_ext <<_ACEOF 14105 cat >conftest.$ac_ext <<_ACEOF
13514#line $LINENO "configure" 14106#line $LINENO "configure"
13515#include "confdefs.h" 14107/* confdefs.h. */
14108_ACEOF
14109cat confdefs.h >>conftest.$ac_ext
14110cat >>conftest.$ac_ext <<_ACEOF
14111/* end confdefs.h. */
13516$ac_includes_default 14112$ac_includes_default
13517#ifdef F77_DUMMY_MAIN
13518# ifdef __cplusplus
13519 extern "C"
13520# endif
13521 int F77_DUMMY_MAIN() { return 1; }
13522#endif
13523int 14113int
13524main () 14114main ()
13525{ 14115{
@@ -13546,7 +14136,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13546 ac_cv_type_struct_timespec=yes 14136 ac_cv_type_struct_timespec=yes
13547else 14137else
13548 echo "$as_me: failed program was:" >&5 14138 echo "$as_me: failed program was:" >&5
13549cat conftest.$ac_ext >&5 14139sed 's/^/| /' conftest.$ac_ext >&5
14140
13550ac_cv_type_struct_timespec=no 14141ac_cv_type_struct_timespec=no
13551fi 14142fi
13552rm -f conftest.$ac_objext conftest.$ac_ext 14143rm -f conftest.$ac_objext conftest.$ac_ext
@@ -13573,13 +14164,19 @@ if test "x$ac_cv_have_int64_t" = "xno" -a \
13573 exit 1; 14164 exit 1;
13574else 14165else
13575 if test "$cross_compiling" = yes; then 14166 if test "$cross_compiling" = yes; then
13576 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 14167 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
13577echo "$as_me: error: cannot run test program while cross compiling" >&2;} 14168See \`config.log' for more details." >&5
14169echo "$as_me: error: cannot run test program while cross compiling
14170See \`config.log' for more details." >&2;}
13578 { (exit 1); exit 1; }; } 14171 { (exit 1); exit 1; }; }
13579else 14172else
13580 cat >conftest.$ac_ext <<_ACEOF 14173 cat >conftest.$ac_ext <<_ACEOF
13581#line $LINENO "configure" 14174#line $LINENO "configure"
13582#include "confdefs.h" 14175/* confdefs.h. */
14176_ACEOF
14177cat confdefs.h >>conftest.$ac_ext
14178cat >>conftest.$ac_ext <<_ACEOF
14179/* end confdefs.h. */
13583 14180
13584#include <stdio.h> 14181#include <stdio.h>
13585#include <string.h> 14182#include <string.h>
@@ -13620,7 +14217,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
13620else 14217else
13621 echo "$as_me: program exited with status $ac_status" >&5 14218 echo "$as_me: program exited with status $ac_status" >&5
13622echo "$as_me: failed program was:" >&5 14219echo "$as_me: failed program was:" >&5
13623cat conftest.$ac_ext >&5 14220sed 's/^/| /' conftest.$ac_ext >&5
14221
13624( exit $ac_status ) 14222( exit $ac_status )
13625 cat >>confdefs.h <<\_ACEOF 14223 cat >>confdefs.h <<\_ACEOF
13626#define BROKEN_SNPRINTF 1 14224#define BROKEN_SNPRINTF 1
@@ -13628,7 +14226,7 @@ _ACEOF
13628 14226
13629 14227
13630fi 14228fi
13631rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 14229rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
13632fi 14230fi
13633fi 14231fi
13634 14232
@@ -13644,12 +14242,16 @@ else
13644 14242
13645 cat >conftest.$ac_ext <<_ACEOF 14243 cat >conftest.$ac_ext <<_ACEOF
13646#line $LINENO "configure" 14244#line $LINENO "configure"
13647#include "confdefs.h" 14245/* confdefs.h. */
14246_ACEOF
14247cat confdefs.h >>conftest.$ac_ext
14248cat >>conftest.$ac_ext <<_ACEOF
14249/* end confdefs.h. */
13648#include <utmp.h> 14250#include <utmp.h>
13649 14251
13650_ACEOF 14252_ACEOF
13651if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14253if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13652 egrep "ut_host" >/dev/null 2>&1; then 14254 $EGREP "ut_host" >/dev/null 2>&1; then
13653 eval "$ossh_varname=yes" 14255 eval "$ossh_varname=yes"
13654else 14256else
13655 eval "$ossh_varname=no" 14257 eval "$ossh_varname=no"
@@ -13685,12 +14287,16 @@ else
13685 14287
13686 cat >conftest.$ac_ext <<_ACEOF 14288 cat >conftest.$ac_ext <<_ACEOF
13687#line $LINENO "configure" 14289#line $LINENO "configure"
13688#include "confdefs.h" 14290/* confdefs.h. */
14291_ACEOF
14292cat confdefs.h >>conftest.$ac_ext
14293cat >>conftest.$ac_ext <<_ACEOF
14294/* end confdefs.h. */
13689#include <utmpx.h> 14295#include <utmpx.h>
13690 14296
13691_ACEOF 14297_ACEOF
13692if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14298if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13693 egrep "ut_host" >/dev/null 2>&1; then 14299 $EGREP "ut_host" >/dev/null 2>&1; then
13694 eval "$ossh_varname=yes" 14300 eval "$ossh_varname=yes"
13695else 14301else
13696 eval "$ossh_varname=no" 14302 eval "$ossh_varname=no"
@@ -13726,12 +14332,16 @@ else
13726 14332
13727 cat >conftest.$ac_ext <<_ACEOF 14333 cat >conftest.$ac_ext <<_ACEOF
13728#line $LINENO "configure" 14334#line $LINENO "configure"
13729#include "confdefs.h" 14335/* confdefs.h. */
14336_ACEOF
14337cat confdefs.h >>conftest.$ac_ext
14338cat >>conftest.$ac_ext <<_ACEOF
14339/* end confdefs.h. */
13730#include <utmpx.h> 14340#include <utmpx.h>
13731 14341
13732_ACEOF 14342_ACEOF
13733if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14343if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13734 egrep "syslen" >/dev/null 2>&1; then 14344 $EGREP "syslen" >/dev/null 2>&1; then
13735 eval "$ossh_varname=yes" 14345 eval "$ossh_varname=yes"
13736else 14346else
13737 eval "$ossh_varname=no" 14347 eval "$ossh_varname=no"
@@ -13767,12 +14377,16 @@ else
13767 14377
13768 cat >conftest.$ac_ext <<_ACEOF 14378 cat >conftest.$ac_ext <<_ACEOF
13769#line $LINENO "configure" 14379#line $LINENO "configure"
13770#include "confdefs.h" 14380/* confdefs.h. */
14381_ACEOF
14382cat confdefs.h >>conftest.$ac_ext
14383cat >>conftest.$ac_ext <<_ACEOF
14384/* end confdefs.h. */
13771#include <utmp.h> 14385#include <utmp.h>
13772 14386
13773_ACEOF 14387_ACEOF
13774if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14388if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13775 egrep "ut_pid" >/dev/null 2>&1; then 14389 $EGREP "ut_pid" >/dev/null 2>&1; then
13776 eval "$ossh_varname=yes" 14390 eval "$ossh_varname=yes"
13777else 14391else
13778 eval "$ossh_varname=no" 14392 eval "$ossh_varname=no"
@@ -13808,12 +14422,16 @@ else
13808 14422
13809 cat >conftest.$ac_ext <<_ACEOF 14423 cat >conftest.$ac_ext <<_ACEOF
13810#line $LINENO "configure" 14424#line $LINENO "configure"
13811#include "confdefs.h" 14425/* confdefs.h. */
14426_ACEOF
14427cat confdefs.h >>conftest.$ac_ext
14428cat >>conftest.$ac_ext <<_ACEOF
14429/* end confdefs.h. */
13812#include <utmp.h> 14430#include <utmp.h>
13813 14431
13814_ACEOF 14432_ACEOF
13815if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14433if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13816 egrep "ut_type" >/dev/null 2>&1; then 14434 $EGREP "ut_type" >/dev/null 2>&1; then
13817 eval "$ossh_varname=yes" 14435 eval "$ossh_varname=yes"
13818else 14436else
13819 eval "$ossh_varname=no" 14437 eval "$ossh_varname=no"
@@ -13849,12 +14467,16 @@ else
13849 14467
13850 cat >conftest.$ac_ext <<_ACEOF 14468 cat >conftest.$ac_ext <<_ACEOF
13851#line $LINENO "configure" 14469#line $LINENO "configure"
13852#include "confdefs.h" 14470/* confdefs.h. */
14471_ACEOF
14472cat confdefs.h >>conftest.$ac_ext
14473cat >>conftest.$ac_ext <<_ACEOF
14474/* end confdefs.h. */
13853#include <utmpx.h> 14475#include <utmpx.h>
13854 14476
13855_ACEOF 14477_ACEOF
13856if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14478if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13857 egrep "ut_type" >/dev/null 2>&1; then 14479 $EGREP "ut_type" >/dev/null 2>&1; then
13858 eval "$ossh_varname=yes" 14480 eval "$ossh_varname=yes"
13859else 14481else
13860 eval "$ossh_varname=no" 14482 eval "$ossh_varname=no"
@@ -13890,12 +14512,16 @@ else
13890 14512
13891 cat >conftest.$ac_ext <<_ACEOF 14513 cat >conftest.$ac_ext <<_ACEOF
13892#line $LINENO "configure" 14514#line $LINENO "configure"
13893#include "confdefs.h" 14515/* confdefs.h. */
14516_ACEOF
14517cat confdefs.h >>conftest.$ac_ext
14518cat >>conftest.$ac_ext <<_ACEOF
14519/* end confdefs.h. */
13894#include <utmp.h> 14520#include <utmp.h>
13895 14521
13896_ACEOF 14522_ACEOF
13897if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14523if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13898 egrep "ut_tv" >/dev/null 2>&1; then 14524 $EGREP "ut_tv" >/dev/null 2>&1; then
13899 eval "$ossh_varname=yes" 14525 eval "$ossh_varname=yes"
13900else 14526else
13901 eval "$ossh_varname=no" 14527 eval "$ossh_varname=no"
@@ -13931,12 +14557,16 @@ else
13931 14557
13932 cat >conftest.$ac_ext <<_ACEOF 14558 cat >conftest.$ac_ext <<_ACEOF
13933#line $LINENO "configure" 14559#line $LINENO "configure"
13934#include "confdefs.h" 14560/* confdefs.h. */
14561_ACEOF
14562cat confdefs.h >>conftest.$ac_ext
14563cat >>conftest.$ac_ext <<_ACEOF
14564/* end confdefs.h. */
13935#include <utmp.h> 14565#include <utmp.h>
13936 14566
13937_ACEOF 14567_ACEOF
13938if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14568if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13939 egrep "ut_id" >/dev/null 2>&1; then 14569 $EGREP "ut_id" >/dev/null 2>&1; then
13940 eval "$ossh_varname=yes" 14570 eval "$ossh_varname=yes"
13941else 14571else
13942 eval "$ossh_varname=no" 14572 eval "$ossh_varname=no"
@@ -13972,12 +14602,16 @@ else
13972 14602
13973 cat >conftest.$ac_ext <<_ACEOF 14603 cat >conftest.$ac_ext <<_ACEOF
13974#line $LINENO "configure" 14604#line $LINENO "configure"
13975#include "confdefs.h" 14605/* confdefs.h. */
14606_ACEOF
14607cat confdefs.h >>conftest.$ac_ext
14608cat >>conftest.$ac_ext <<_ACEOF
14609/* end confdefs.h. */
13976#include <utmpx.h> 14610#include <utmpx.h>
13977 14611
13978_ACEOF 14612_ACEOF
13979if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14613if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
13980 egrep "ut_id" >/dev/null 2>&1; then 14614 $EGREP "ut_id" >/dev/null 2>&1; then
13981 eval "$ossh_varname=yes" 14615 eval "$ossh_varname=yes"
13982else 14616else
13983 eval "$ossh_varname=no" 14617 eval "$ossh_varname=no"
@@ -14013,12 +14647,16 @@ else
14013 14647
14014 cat >conftest.$ac_ext <<_ACEOF 14648 cat >conftest.$ac_ext <<_ACEOF
14015#line $LINENO "configure" 14649#line $LINENO "configure"
14016#include "confdefs.h" 14650/* confdefs.h. */
14651_ACEOF
14652cat confdefs.h >>conftest.$ac_ext
14653cat >>conftest.$ac_ext <<_ACEOF
14654/* end confdefs.h. */
14017#include <utmp.h> 14655#include <utmp.h>
14018 14656
14019_ACEOF 14657_ACEOF
14020if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14658if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14021 egrep "ut_addr" >/dev/null 2>&1; then 14659 $EGREP "ut_addr" >/dev/null 2>&1; then
14022 eval "$ossh_varname=yes" 14660 eval "$ossh_varname=yes"
14023else 14661else
14024 eval "$ossh_varname=no" 14662 eval "$ossh_varname=no"
@@ -14054,12 +14692,16 @@ else
14054 14692
14055 cat >conftest.$ac_ext <<_ACEOF 14693 cat >conftest.$ac_ext <<_ACEOF
14056#line $LINENO "configure" 14694#line $LINENO "configure"
14057#include "confdefs.h" 14695/* confdefs.h. */
14696_ACEOF
14697cat confdefs.h >>conftest.$ac_ext
14698cat >>conftest.$ac_ext <<_ACEOF
14699/* end confdefs.h. */
14058#include <utmpx.h> 14700#include <utmpx.h>
14059 14701
14060_ACEOF 14702_ACEOF
14061if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14703if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14062 egrep "ut_addr" >/dev/null 2>&1; then 14704 $EGREP "ut_addr" >/dev/null 2>&1; then
14063 eval "$ossh_varname=yes" 14705 eval "$ossh_varname=yes"
14064else 14706else
14065 eval "$ossh_varname=no" 14707 eval "$ossh_varname=no"
@@ -14095,12 +14737,16 @@ else
14095 14737
14096 cat >conftest.$ac_ext <<_ACEOF 14738 cat >conftest.$ac_ext <<_ACEOF
14097#line $LINENO "configure" 14739#line $LINENO "configure"
14098#include "confdefs.h" 14740/* confdefs.h. */
14741_ACEOF
14742cat confdefs.h >>conftest.$ac_ext
14743cat >>conftest.$ac_ext <<_ACEOF
14744/* end confdefs.h. */
14099#include <utmp.h> 14745#include <utmp.h>
14100 14746
14101_ACEOF 14747_ACEOF
14102if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14748if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14103 egrep "ut_addr_v6" >/dev/null 2>&1; then 14749 $EGREP "ut_addr_v6" >/dev/null 2>&1; then
14104 eval "$ossh_varname=yes" 14750 eval "$ossh_varname=yes"
14105else 14751else
14106 eval "$ossh_varname=no" 14752 eval "$ossh_varname=no"
@@ -14136,12 +14782,16 @@ else
14136 14782
14137 cat >conftest.$ac_ext <<_ACEOF 14783 cat >conftest.$ac_ext <<_ACEOF
14138#line $LINENO "configure" 14784#line $LINENO "configure"
14139#include "confdefs.h" 14785/* confdefs.h. */
14786_ACEOF
14787cat confdefs.h >>conftest.$ac_ext
14788cat >>conftest.$ac_ext <<_ACEOF
14789/* end confdefs.h. */
14140#include <utmpx.h> 14790#include <utmpx.h>
14141 14791
14142_ACEOF 14792_ACEOF
14143if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14793if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14144 egrep "ut_addr_v6" >/dev/null 2>&1; then 14794 $EGREP "ut_addr_v6" >/dev/null 2>&1; then
14145 eval "$ossh_varname=yes" 14795 eval "$ossh_varname=yes"
14146else 14796else
14147 eval "$ossh_varname=no" 14797 eval "$ossh_varname=no"
@@ -14177,12 +14827,16 @@ else
14177 14827
14178 cat >conftest.$ac_ext <<_ACEOF 14828 cat >conftest.$ac_ext <<_ACEOF
14179#line $LINENO "configure" 14829#line $LINENO "configure"
14180#include "confdefs.h" 14830/* confdefs.h. */
14831_ACEOF
14832cat confdefs.h >>conftest.$ac_ext
14833cat >>conftest.$ac_ext <<_ACEOF
14834/* end confdefs.h. */
14181#include <utmp.h> 14835#include <utmp.h>
14182 14836
14183_ACEOF 14837_ACEOF
14184if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14838if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14185 egrep "ut_exit" >/dev/null 2>&1; then 14839 $EGREP "ut_exit" >/dev/null 2>&1; then
14186 eval "$ossh_varname=yes" 14840 eval "$ossh_varname=yes"
14187else 14841else
14188 eval "$ossh_varname=no" 14842 eval "$ossh_varname=no"
@@ -14218,12 +14872,16 @@ else
14218 14872
14219 cat >conftest.$ac_ext <<_ACEOF 14873 cat >conftest.$ac_ext <<_ACEOF
14220#line $LINENO "configure" 14874#line $LINENO "configure"
14221#include "confdefs.h" 14875/* confdefs.h. */
14876_ACEOF
14877cat confdefs.h >>conftest.$ac_ext
14878cat >>conftest.$ac_ext <<_ACEOF
14879/* end confdefs.h. */
14222#include <utmp.h> 14880#include <utmp.h>
14223 14881
14224_ACEOF 14882_ACEOF
14225if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14883if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14226 egrep "ut_time" >/dev/null 2>&1; then 14884 $EGREP "ut_time" >/dev/null 2>&1; then
14227 eval "$ossh_varname=yes" 14885 eval "$ossh_varname=yes"
14228else 14886else
14229 eval "$ossh_varname=no" 14887 eval "$ossh_varname=no"
@@ -14259,12 +14917,16 @@ else
14259 14917
14260 cat >conftest.$ac_ext <<_ACEOF 14918 cat >conftest.$ac_ext <<_ACEOF
14261#line $LINENO "configure" 14919#line $LINENO "configure"
14262#include "confdefs.h" 14920/* confdefs.h. */
14921_ACEOF
14922cat confdefs.h >>conftest.$ac_ext
14923cat >>conftest.$ac_ext <<_ACEOF
14924/* end confdefs.h. */
14263#include <utmpx.h> 14925#include <utmpx.h>
14264 14926
14265_ACEOF 14927_ACEOF
14266if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14928if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14267 egrep "ut_time" >/dev/null 2>&1; then 14929 $EGREP "ut_time" >/dev/null 2>&1; then
14268 eval "$ossh_varname=yes" 14930 eval "$ossh_varname=yes"
14269else 14931else
14270 eval "$ossh_varname=no" 14932 eval "$ossh_varname=no"
@@ -14300,12 +14962,16 @@ else
14300 14962
14301 cat >conftest.$ac_ext <<_ACEOF 14963 cat >conftest.$ac_ext <<_ACEOF
14302#line $LINENO "configure" 14964#line $LINENO "configure"
14303#include "confdefs.h" 14965/* confdefs.h. */
14966_ACEOF
14967cat confdefs.h >>conftest.$ac_ext
14968cat >>conftest.$ac_ext <<_ACEOF
14969/* end confdefs.h. */
14304#include <utmpx.h> 14970#include <utmpx.h>
14305 14971
14306_ACEOF 14972_ACEOF
14307if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 14973if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
14308 egrep "ut_tv" >/dev/null 2>&1; then 14974 $EGREP "ut_tv" >/dev/null 2>&1; then
14309 eval "$ossh_varname=yes" 14975 eval "$ossh_varname=yes"
14310else 14976else
14311 eval "$ossh_varname=no" 14977 eval "$ossh_varname=no"
@@ -14337,14 +15003,12 @@ if test "${ac_cv_member_struct_stat_st_blksize+set}" = set; then
14337else 15003else
14338 cat >conftest.$ac_ext <<_ACEOF 15004 cat >conftest.$ac_ext <<_ACEOF
14339#line $LINENO "configure" 15005#line $LINENO "configure"
14340#include "confdefs.h" 15006/* confdefs.h. */
15007_ACEOF
15008cat confdefs.h >>conftest.$ac_ext
15009cat >>conftest.$ac_ext <<_ACEOF
15010/* end confdefs.h. */
14341$ac_includes_default 15011$ac_includes_default
14342#ifdef F77_DUMMY_MAIN
14343# ifdef __cplusplus
14344 extern "C"
14345# endif
14346 int F77_DUMMY_MAIN() { return 1; }
14347#endif
14348int 15012int
14349main () 15013main ()
14350{ 15014{
@@ -14370,11 +15034,49 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14370 ac_cv_member_struct_stat_st_blksize=yes 15034 ac_cv_member_struct_stat_st_blksize=yes
14371else 15035else
14372 echo "$as_me: failed program was:" >&5 15036 echo "$as_me: failed program was:" >&5
14373cat conftest.$ac_ext >&5 15037sed 's/^/| /' conftest.$ac_ext >&5
15038
15039cat >conftest.$ac_ext <<_ACEOF
15040#line $LINENO "configure"
15041/* confdefs.h. */
15042_ACEOF
15043cat confdefs.h >>conftest.$ac_ext
15044cat >>conftest.$ac_ext <<_ACEOF
15045/* end confdefs.h. */
15046$ac_includes_default
15047int
15048main ()
15049{
15050static struct stat ac_aggr;
15051if (sizeof ac_aggr.st_blksize)
15052return 0;
15053 ;
15054 return 0;
15055}
15056_ACEOF
15057rm -f conftest.$ac_objext
15058if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
15059 (eval $ac_compile) 2>&5
15060 ac_status=$?
15061 echo "$as_me:$LINENO: \$? = $ac_status" >&5
15062 (exit $ac_status); } &&
15063 { ac_try='test -s conftest.$ac_objext'
15064 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
15065 (eval $ac_try) 2>&5
15066 ac_status=$?
15067 echo "$as_me:$LINENO: \$? = $ac_status" >&5
15068 (exit $ac_status); }; }; then
15069 ac_cv_member_struct_stat_st_blksize=yes
15070else
15071 echo "$as_me: failed program was:" >&5
15072sed 's/^/| /' conftest.$ac_ext >&5
15073
14374ac_cv_member_struct_stat_st_blksize=no 15074ac_cv_member_struct_stat_st_blksize=no
14375fi 15075fi
14376rm -f conftest.$ac_objext conftest.$ac_ext 15076rm -f conftest.$ac_objext conftest.$ac_ext
14377fi 15077fi
15078rm -f conftest.$ac_objext conftest.$ac_ext
15079fi
14378echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_blksize" >&5 15080echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_blksize" >&5
14379echo "${ECHO_T}$ac_cv_member_struct_stat_st_blksize" >&6 15081echo "${ECHO_T}$ac_cv_member_struct_stat_st_blksize" >&6
14380if test $ac_cv_member_struct_stat_st_blksize = yes; then 15082if test $ac_cv_member_struct_stat_st_blksize = yes; then
@@ -14395,17 +15097,15 @@ else
14395 15097
14396 cat >conftest.$ac_ext <<_ACEOF 15098 cat >conftest.$ac_ext <<_ACEOF
14397#line $LINENO "configure" 15099#line $LINENO "configure"
14398#include "confdefs.h" 15100/* confdefs.h. */
15101_ACEOF
15102cat confdefs.h >>conftest.$ac_ext
15103cat >>conftest.$ac_ext <<_ACEOF
15104/* end confdefs.h. */
14399 15105
14400#include <sys/types.h> 15106#include <sys/types.h>
14401#include <sys/socket.h> 15107#include <sys/socket.h>
14402 15108
14403#ifdef F77_DUMMY_MAIN
14404# ifdef __cplusplus
14405 extern "C"
14406# endif
14407 int F77_DUMMY_MAIN() { return 1; }
14408#endif
14409int 15109int
14410main () 15110main ()
14411{ 15111{
@@ -14429,7 +15129,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14429 ac_cv_have_ss_family_in_struct_ss="yes" 15129 ac_cv_have_ss_family_in_struct_ss="yes"
14430else 15130else
14431 echo "$as_me: failed program was:" >&5 15131 echo "$as_me: failed program was:" >&5
14432cat conftest.$ac_ext >&5 15132sed 's/^/| /' conftest.$ac_ext >&5
15133
14433 ac_cv_have_ss_family_in_struct_ss="no" 15134 ac_cv_have_ss_family_in_struct_ss="no"
14434fi 15135fi
14435rm -f conftest.$ac_objext conftest.$ac_ext 15136rm -f conftest.$ac_objext conftest.$ac_ext
@@ -14452,17 +15153,15 @@ else
14452 15153
14453 cat >conftest.$ac_ext <<_ACEOF 15154 cat >conftest.$ac_ext <<_ACEOF
14454#line $LINENO "configure" 15155#line $LINENO "configure"
14455#include "confdefs.h" 15156/* confdefs.h. */
15157_ACEOF
15158cat confdefs.h >>conftest.$ac_ext
15159cat >>conftest.$ac_ext <<_ACEOF
15160/* end confdefs.h. */
14456 15161
14457#include <sys/types.h> 15162#include <sys/types.h>
14458#include <sys/socket.h> 15163#include <sys/socket.h>
14459 15164
14460#ifdef F77_DUMMY_MAIN
14461# ifdef __cplusplus
14462 extern "C"
14463# endif
14464 int F77_DUMMY_MAIN() { return 1; }
14465#endif
14466int 15165int
14467main () 15166main ()
14468{ 15167{
@@ -14486,7 +15185,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14486 ac_cv_have___ss_family_in_struct_ss="yes" 15185 ac_cv_have___ss_family_in_struct_ss="yes"
14487else 15186else
14488 echo "$as_me: failed program was:" >&5 15187 echo "$as_me: failed program was:" >&5
14489cat conftest.$ac_ext >&5 15188sed 's/^/| /' conftest.$ac_ext >&5
15189
14490 ac_cv_have___ss_family_in_struct_ss="no" 15190 ac_cv_have___ss_family_in_struct_ss="no"
14491 15191
14492fi 15192fi
@@ -14510,16 +15210,14 @@ else
14510 15210
14511 cat >conftest.$ac_ext <<_ACEOF 15211 cat >conftest.$ac_ext <<_ACEOF
14512#line $LINENO "configure" 15212#line $LINENO "configure"
14513#include "confdefs.h" 15213/* confdefs.h. */
15214_ACEOF
15215cat confdefs.h >>conftest.$ac_ext
15216cat >>conftest.$ac_ext <<_ACEOF
15217/* end confdefs.h. */
14514 15218
14515#include <pwd.h> 15219#include <pwd.h>
14516 15220
14517#ifdef F77_DUMMY_MAIN
14518# ifdef __cplusplus
14519 extern "C"
14520# endif
14521 int F77_DUMMY_MAIN() { return 1; }
14522#endif
14523int 15221int
14524main () 15222main ()
14525{ 15223{
@@ -14543,7 +15241,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14543 ac_cv_have_pw_class_in_struct_passwd="yes" 15241 ac_cv_have_pw_class_in_struct_passwd="yes"
14544else 15242else
14545 echo "$as_me: failed program was:" >&5 15243 echo "$as_me: failed program was:" >&5
14546cat conftest.$ac_ext >&5 15244sed 's/^/| /' conftest.$ac_ext >&5
15245
14547 ac_cv_have_pw_class_in_struct_passwd="no" 15246 ac_cv_have_pw_class_in_struct_passwd="no"
14548 15247
14549fi 15248fi
@@ -14567,16 +15266,14 @@ else
14567 15266
14568 cat >conftest.$ac_ext <<_ACEOF 15267 cat >conftest.$ac_ext <<_ACEOF
14569#line $LINENO "configure" 15268#line $LINENO "configure"
14570#include "confdefs.h" 15269/* confdefs.h. */
15270_ACEOF
15271cat confdefs.h >>conftest.$ac_ext
15272cat >>conftest.$ac_ext <<_ACEOF
15273/* end confdefs.h. */
14571 15274
14572#include <pwd.h> 15275#include <pwd.h>
14573 15276
14574#ifdef F77_DUMMY_MAIN
14575# ifdef __cplusplus
14576 extern "C"
14577# endif
14578 int F77_DUMMY_MAIN() { return 1; }
14579#endif
14580int 15277int
14581main () 15278main ()
14582{ 15279{
@@ -14600,7 +15297,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14600 ac_cv_have_pw_expire_in_struct_passwd="yes" 15297 ac_cv_have_pw_expire_in_struct_passwd="yes"
14601else 15298else
14602 echo "$as_me: failed program was:" >&5 15299 echo "$as_me: failed program was:" >&5
14603cat conftest.$ac_ext >&5 15300sed 's/^/| /' conftest.$ac_ext >&5
15301
14604 ac_cv_have_pw_expire_in_struct_passwd="no" 15302 ac_cv_have_pw_expire_in_struct_passwd="no"
14605 15303
14606fi 15304fi
@@ -14624,16 +15322,14 @@ else
14624 15322
14625 cat >conftest.$ac_ext <<_ACEOF 15323 cat >conftest.$ac_ext <<_ACEOF
14626#line $LINENO "configure" 15324#line $LINENO "configure"
14627#include "confdefs.h" 15325/* confdefs.h. */
15326_ACEOF
15327cat confdefs.h >>conftest.$ac_ext
15328cat >>conftest.$ac_ext <<_ACEOF
15329/* end confdefs.h. */
14628 15330
14629#include <pwd.h> 15331#include <pwd.h>
14630 15332
14631#ifdef F77_DUMMY_MAIN
14632# ifdef __cplusplus
14633 extern "C"
14634# endif
14635 int F77_DUMMY_MAIN() { return 1; }
14636#endif
14637int 15333int
14638main () 15334main ()
14639{ 15335{
@@ -14657,7 +15353,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14657 ac_cv_have_pw_change_in_struct_passwd="yes" 15353 ac_cv_have_pw_change_in_struct_passwd="yes"
14658else 15354else
14659 echo "$as_me: failed program was:" >&5 15355 echo "$as_me: failed program was:" >&5
14660cat conftest.$ac_ext >&5 15356sed 's/^/| /' conftest.$ac_ext >&5
15357
14661 ac_cv_have_pw_change_in_struct_passwd="no" 15358 ac_cv_have_pw_change_in_struct_passwd="no"
14662 15359
14663fi 15360fi
@@ -14680,13 +15377,19 @@ if test "${ac_cv_have_accrights_in_msghdr+set}" = set; then
14680else 15377else
14681 15378
14682 if test "$cross_compiling" = yes; then 15379 if test "$cross_compiling" = yes; then
14683 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 15380 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
14684echo "$as_me: error: cannot run test program while cross compiling" >&2;} 15381See \`config.log' for more details." >&5
15382echo "$as_me: error: cannot run test program while cross compiling
15383See \`config.log' for more details." >&2;}
14685 { (exit 1); exit 1; }; } 15384 { (exit 1); exit 1; }; }
14686else 15385else
14687 cat >conftest.$ac_ext <<_ACEOF 15386 cat >conftest.$ac_ext <<_ACEOF
14688#line $LINENO "configure" 15387#line $LINENO "configure"
14689#include "confdefs.h" 15388/* confdefs.h. */
15389_ACEOF
15390cat confdefs.h >>conftest.$ac_ext
15391cat >>conftest.$ac_ext <<_ACEOF
15392/* end confdefs.h. */
14690 15393
14691#include <sys/types.h> 15394#include <sys/types.h>
14692#include <sys/socket.h> 15395#include <sys/socket.h>
@@ -14716,12 +15419,13 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
14716else 15419else
14717 echo "$as_me: program exited with status $ac_status" >&5 15420 echo "$as_me: program exited with status $ac_status" >&5
14718echo "$as_me: failed program was:" >&5 15421echo "$as_me: failed program was:" >&5
14719cat conftest.$ac_ext >&5 15422sed 's/^/| /' conftest.$ac_ext >&5
15423
14720( exit $ac_status ) 15424( exit $ac_status )
14721 ac_cv_have_accrights_in_msghdr="no" 15425 ac_cv_have_accrights_in_msghdr="no"
14722 15426
14723fi 15427fi
14724rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 15428rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14725fi 15429fi
14726 15430
14727fi 15431fi
@@ -14741,13 +15445,19 @@ if test "${ac_cv_have_control_in_msghdr+set}" = set; then
14741else 15445else
14742 15446
14743 if test "$cross_compiling" = yes; then 15447 if test "$cross_compiling" = yes; then
14744 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5 15448 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
14745echo "$as_me: error: cannot run test program while cross compiling" >&2;} 15449See \`config.log' for more details." >&5
15450echo "$as_me: error: cannot run test program while cross compiling
15451See \`config.log' for more details." >&2;}
14746 { (exit 1); exit 1; }; } 15452 { (exit 1); exit 1; }; }
14747else 15453else
14748 cat >conftest.$ac_ext <<_ACEOF 15454 cat >conftest.$ac_ext <<_ACEOF
14749#line $LINENO "configure" 15455#line $LINENO "configure"
14750#include "confdefs.h" 15456/* confdefs.h. */
15457_ACEOF
15458cat confdefs.h >>conftest.$ac_ext
15459cat >>conftest.$ac_ext <<_ACEOF
15460/* end confdefs.h. */
14751 15461
14752#include <sys/types.h> 15462#include <sys/types.h>
14753#include <sys/socket.h> 15463#include <sys/socket.h>
@@ -14777,12 +15487,13 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
14777else 15487else
14778 echo "$as_me: program exited with status $ac_status" >&5 15488 echo "$as_me: program exited with status $ac_status" >&5
14779echo "$as_me: failed program was:" >&5 15489echo "$as_me: failed program was:" >&5
14780cat conftest.$ac_ext >&5 15490sed 's/^/| /' conftest.$ac_ext >&5
15491
14781( exit $ac_status ) 15492( exit $ac_status )
14782 ac_cv_have_control_in_msghdr="no" 15493 ac_cv_have_control_in_msghdr="no"
14783 15494
14784fi 15495fi
14785rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 15496rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
14786fi 15497fi
14787 15498
14788fi 15499fi
@@ -14803,14 +15514,12 @@ else
14803 15514
14804 cat >conftest.$ac_ext <<_ACEOF 15515 cat >conftest.$ac_ext <<_ACEOF
14805#line $LINENO "configure" 15516#line $LINENO "configure"
14806#include "confdefs.h" 15517/* confdefs.h. */
15518_ACEOF
15519cat confdefs.h >>conftest.$ac_ext
15520cat >>conftest.$ac_ext <<_ACEOF
15521/* end confdefs.h. */
14807 15522
14808#ifdef F77_DUMMY_MAIN
14809# ifdef __cplusplus
14810 extern "C"
14811# endif
14812 int F77_DUMMY_MAIN() { return 1; }
14813#endif
14814int 15523int
14815main () 15524main ()
14816{ 15525{
@@ -14834,7 +15543,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
14834 ac_cv_libc_defines___progname="yes" 15543 ac_cv_libc_defines___progname="yes"
14835else 15544else
14836 echo "$as_me: failed program was:" >&5 15545 echo "$as_me: failed program was:" >&5
14837cat conftest.$ac_ext >&5 15546sed 's/^/| /' conftest.$ac_ext >&5
15547
14838 ac_cv_libc_defines___progname="no" 15548 ac_cv_libc_defines___progname="no"
14839 15549
14840fi 15550fi
@@ -14858,16 +15568,14 @@ else
14858 15568
14859 cat >conftest.$ac_ext <<_ACEOF 15569 cat >conftest.$ac_ext <<_ACEOF
14860#line $LINENO "configure" 15570#line $LINENO "configure"
14861#include "confdefs.h" 15571/* confdefs.h. */
15572_ACEOF
15573cat confdefs.h >>conftest.$ac_ext
15574cat >>conftest.$ac_ext <<_ACEOF
15575/* end confdefs.h. */
14862 15576
14863#include <stdio.h> 15577#include <stdio.h>
14864 15578
14865#ifdef F77_DUMMY_MAIN
14866# ifdef __cplusplus
14867 extern "C"
14868# endif
14869 int F77_DUMMY_MAIN() { return 1; }
14870#endif
14871int 15579int
14872main () 15580main ()
14873{ 15581{
@@ -14891,7 +15599,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
14891 ac_cv_cc_implements___FUNCTION__="yes" 15599 ac_cv_cc_implements___FUNCTION__="yes"
14892else 15600else
14893 echo "$as_me: failed program was:" >&5 15601 echo "$as_me: failed program was:" >&5
14894cat conftest.$ac_ext >&5 15602sed 's/^/| /' conftest.$ac_ext >&5
15603
14895 ac_cv_cc_implements___FUNCTION__="no" 15604 ac_cv_cc_implements___FUNCTION__="no"
14896 15605
14897fi 15606fi
@@ -14915,16 +15624,14 @@ else
14915 15624
14916 cat >conftest.$ac_ext <<_ACEOF 15625 cat >conftest.$ac_ext <<_ACEOF
14917#line $LINENO "configure" 15626#line $LINENO "configure"
14918#include "confdefs.h" 15627/* confdefs.h. */
15628_ACEOF
15629cat confdefs.h >>conftest.$ac_ext
15630cat >>conftest.$ac_ext <<_ACEOF
15631/* end confdefs.h. */
14919 15632
14920#include <stdio.h> 15633#include <stdio.h>
14921 15634
14922#ifdef F77_DUMMY_MAIN
14923# ifdef __cplusplus
14924 extern "C"
14925# endif
14926 int F77_DUMMY_MAIN() { return 1; }
14927#endif
14928int 15635int
14929main () 15636main ()
14930{ 15637{
@@ -14948,7 +15655,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
14948 ac_cv_cc_implements___func__="yes" 15655 ac_cv_cc_implements___func__="yes"
14949else 15656else
14950 echo "$as_me: failed program was:" >&5 15657 echo "$as_me: failed program was:" >&5
14951cat conftest.$ac_ext >&5 15658sed 's/^/| /' conftest.$ac_ext >&5
15659
14952 ac_cv_cc_implements___func__="no" 15660 ac_cv_cc_implements___func__="no"
14953 15661
14954fi 15662fi
@@ -14972,16 +15680,14 @@ else
14972 15680
14973 cat >conftest.$ac_ext <<_ACEOF 15681 cat >conftest.$ac_ext <<_ACEOF
14974#line $LINENO "configure" 15682#line $LINENO "configure"
14975#include "confdefs.h" 15683/* confdefs.h. */
15684_ACEOF
15685cat confdefs.h >>conftest.$ac_ext
15686cat >>conftest.$ac_ext <<_ACEOF
15687/* end confdefs.h. */
14976 15688
14977#include <getopt.h> 15689#include <getopt.h>
14978 15690
14979#ifdef F77_DUMMY_MAIN
14980# ifdef __cplusplus
14981 extern "C"
14982# endif
14983 int F77_DUMMY_MAIN() { return 1; }
14984#endif
14985int 15691int
14986main () 15692main ()
14987{ 15693{
@@ -15005,7 +15711,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15005 ac_cv_have_getopt_optreset="yes" 15711 ac_cv_have_getopt_optreset="yes"
15006else 15712else
15007 echo "$as_me: failed program was:" >&5 15713 echo "$as_me: failed program was:" >&5
15008cat conftest.$ac_ext >&5 15714sed 's/^/| /' conftest.$ac_ext >&5
15715
15009 ac_cv_have_getopt_optreset="no" 15716 ac_cv_have_getopt_optreset="no"
15010 15717
15011fi 15718fi
@@ -15029,14 +15736,12 @@ else
15029 15736
15030 cat >conftest.$ac_ext <<_ACEOF 15737 cat >conftest.$ac_ext <<_ACEOF
15031#line $LINENO "configure" 15738#line $LINENO "configure"
15032#include "confdefs.h" 15739/* confdefs.h. */
15740_ACEOF
15741cat confdefs.h >>conftest.$ac_ext
15742cat >>conftest.$ac_ext <<_ACEOF
15743/* end confdefs.h. */
15033 15744
15034#ifdef F77_DUMMY_MAIN
15035# ifdef __cplusplus
15036 extern "C"
15037# endif
15038 int F77_DUMMY_MAIN() { return 1; }
15039#endif
15040int 15745int
15041main () 15746main ()
15042{ 15747{
@@ -15060,7 +15765,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15060 ac_cv_libc_defines_sys_errlist="yes" 15765 ac_cv_libc_defines_sys_errlist="yes"
15061else 15766else
15062 echo "$as_me: failed program was:" >&5 15767 echo "$as_me: failed program was:" >&5
15063cat conftest.$ac_ext >&5 15768sed 's/^/| /' conftest.$ac_ext >&5
15769
15064 ac_cv_libc_defines_sys_errlist="no" 15770 ac_cv_libc_defines_sys_errlist="no"
15065 15771
15066fi 15772fi
@@ -15085,14 +15791,12 @@ else
15085 15791
15086 cat >conftest.$ac_ext <<_ACEOF 15792 cat >conftest.$ac_ext <<_ACEOF
15087#line $LINENO "configure" 15793#line $LINENO "configure"
15088#include "confdefs.h" 15794/* confdefs.h. */
15795_ACEOF
15796cat confdefs.h >>conftest.$ac_ext
15797cat >>conftest.$ac_ext <<_ACEOF
15798/* end confdefs.h. */
15089 15799
15090#ifdef F77_DUMMY_MAIN
15091# ifdef __cplusplus
15092 extern "C"
15093# endif
15094 int F77_DUMMY_MAIN() { return 1; }
15095#endif
15096int 15800int
15097main () 15801main ()
15098{ 15802{
@@ -15116,7 +15820,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15116 ac_cv_libc_defines_sys_nerr="yes" 15820 ac_cv_libc_defines_sys_nerr="yes"
15117else 15821else
15118 echo "$as_me: failed program was:" >&5 15822 echo "$as_me: failed program was:" >&5
15119cat conftest.$ac_ext >&5 15823sed 's/^/| /' conftest.$ac_ext >&5
15824
15120 ac_cv_libc_defines_sys_nerr="no" 15825 ac_cv_libc_defines_sys_nerr="no"
15121 15826
15122fi 15827fi
@@ -15169,7 +15874,11 @@ echo "$as_me:$LINENO: checking $ac_header usability" >&5
15169echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 15874echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
15170cat >conftest.$ac_ext <<_ACEOF 15875cat >conftest.$ac_ext <<_ACEOF
15171#line $LINENO "configure" 15876#line $LINENO "configure"
15172#include "confdefs.h" 15877/* confdefs.h. */
15878_ACEOF
15879cat confdefs.h >>conftest.$ac_ext
15880cat >>conftest.$ac_ext <<_ACEOF
15881/* end confdefs.h. */
15173$ac_includes_default 15882$ac_includes_default
15174#include <$ac_header> 15883#include <$ac_header>
15175_ACEOF 15884_ACEOF
@@ -15188,7 +15897,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
15188 ac_header_compiler=yes 15897 ac_header_compiler=yes
15189else 15898else
15190 echo "$as_me: failed program was:" >&5 15899 echo "$as_me: failed program was:" >&5
15191cat conftest.$ac_ext >&5 15900sed 's/^/| /' conftest.$ac_ext >&5
15901
15192ac_header_compiler=no 15902ac_header_compiler=no
15193fi 15903fi
15194rm -f conftest.$ac_objext conftest.$ac_ext 15904rm -f conftest.$ac_objext conftest.$ac_ext
@@ -15200,13 +15910,17 @@ echo "$as_me:$LINENO: checking $ac_header presence" >&5
15200echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 15910echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
15201cat >conftest.$ac_ext <<_ACEOF 15911cat >conftest.$ac_ext <<_ACEOF
15202#line $LINENO "configure" 15912#line $LINENO "configure"
15203#include "confdefs.h" 15913/* confdefs.h. */
15914_ACEOF
15915cat confdefs.h >>conftest.$ac_ext
15916cat >>conftest.$ac_ext <<_ACEOF
15917/* end confdefs.h. */
15204#include <$ac_header> 15918#include <$ac_header>
15205_ACEOF 15919_ACEOF
15206if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 15920if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
15207 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 15921 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
15208 ac_status=$? 15922 ac_status=$?
15209 egrep -v '^ *\+' conftest.er1 >conftest.err 15923 grep -v '^ *+' conftest.er1 >conftest.err
15210 rm -f conftest.er1 15924 rm -f conftest.er1
15211 cat conftest.err >&5 15925 cat conftest.err >&5
15212 echo "$as_me:$LINENO: \$? = $ac_status" >&5 15926 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -15223,7 +15937,8 @@ if test -z "$ac_cpp_err"; then
15223 ac_header_preproc=yes 15937 ac_header_preproc=yes
15224else 15938else
15225 echo "$as_me: failed program was:" >&5 15939 echo "$as_me: failed program was:" >&5
15226 cat conftest.$ac_ext >&5 15940sed 's/^/| /' conftest.$ac_ext >&5
15941
15227 ac_header_preproc=no 15942 ac_header_preproc=no
15228fi 15943fi
15229rm -f conftest.err conftest.$ac_ext 15944rm -f conftest.err conftest.$ac_ext
@@ -15236,14 +15951,32 @@ case $ac_header_compiler:$ac_header_preproc in
15236 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 15951 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
15237echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 15952echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
15238 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 15953 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
15239echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 15954echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
15955 (
15956 cat <<\_ASBOX
15957## ------------------------------------ ##
15958## Report this to bug-autoconf@gnu.org. ##
15959## ------------------------------------ ##
15960_ASBOX
15961 ) |
15962 sed "s/^/$as_me: WARNING: /" >&2
15963 ;;
15240 no:yes ) 15964 no:yes )
15241 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 15965 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
15242echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 15966echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
15243 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 15967 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
15244echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 15968echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
15245 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 15969 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
15246echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 15970echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
15971 (
15972 cat <<\_ASBOX
15973## ------------------------------------ ##
15974## Report this to bug-autoconf@gnu.org. ##
15975## ------------------------------------ ##
15976_ASBOX
15977 ) |
15978 sed "s/^/$as_me: WARNING: /" >&2
15979 ;;
15247esac 15980esac
15248echo "$as_me:$LINENO: checking for $ac_header" >&5 15981echo "$as_me:$LINENO: checking for $ac_header" >&5
15249echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 15982echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
@@ -15280,7 +16013,11 @@ else
15280LIBS="-lsectok $LIBS" 16013LIBS="-lsectok $LIBS"
15281cat >conftest.$ac_ext <<_ACEOF 16014cat >conftest.$ac_ext <<_ACEOF
15282#line $LINENO "configure" 16015#line $LINENO "configure"
15283#include "confdefs.h" 16016/* confdefs.h. */
16017_ACEOF
16018cat confdefs.h >>conftest.$ac_ext
16019cat >>conftest.$ac_ext <<_ACEOF
16020/* end confdefs.h. */
15284 16021
15285/* Override any gcc2 internal prototype to avoid an error. */ 16022/* Override any gcc2 internal prototype to avoid an error. */
15286#ifdef __cplusplus 16023#ifdef __cplusplus
@@ -15289,12 +16026,6 @@ extern "C"
15289/* We use char because int might match the return type of a gcc2 16026/* We use char because int might match the return type of a gcc2
15290 builtin and then its argument prototype would still apply. */ 16027 builtin and then its argument prototype would still apply. */
15291char sectok_open (); 16028char sectok_open ();
15292#ifdef F77_DUMMY_MAIN
15293# ifdef __cplusplus
15294 extern "C"
15295# endif
15296 int F77_DUMMY_MAIN() { return 1; }
15297#endif
15298int 16029int
15299main () 16030main ()
15300{ 16031{
@@ -15318,7 +16049,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15318 ac_cv_lib_sectok_sectok_open=yes 16049 ac_cv_lib_sectok_sectok_open=yes
15319else 16050else
15320 echo "$as_me: failed program was:" >&5 16051 echo "$as_me: failed program was:" >&5
15321cat conftest.$ac_ext >&5 16052sed 's/^/| /' conftest.$ac_ext >&5
16053
15322ac_cv_lib_sectok_sectok_open=no 16054ac_cv_lib_sectok_sectok_open=no
15323fi 16055fi
15324rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16056rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -15446,14 +16178,12 @@ _ACEOF
15446echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6 16178echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6
15447 cat >conftest.$ac_ext <<_ACEOF 16179 cat >conftest.$ac_ext <<_ACEOF
15448#line $LINENO "configure" 16180#line $LINENO "configure"
15449#include "confdefs.h" 16181/* confdefs.h. */
16182_ACEOF
16183cat confdefs.h >>conftest.$ac_ext
16184cat >>conftest.$ac_ext <<_ACEOF
16185/* end confdefs.h. */
15450 #include <krb5.h> 16186 #include <krb5.h>
15451#ifdef F77_DUMMY_MAIN
15452# ifdef __cplusplus
15453 extern "C"
15454# endif
15455 int F77_DUMMY_MAIN() { return 1; }
15456#endif
15457int 16187int
15458main () 16188main ()
15459{ 16189{
@@ -15484,7 +16214,8 @@ _ACEOF
15484 16214
15485else 16215else
15486 echo "$as_me: failed program was:" >&5 16216 echo "$as_me: failed program was:" >&5
15487cat conftest.$ac_ext >&5 16217sed 's/^/| /' conftest.$ac_ext >&5
16218
15488 echo "$as_me:$LINENO: result: no" >&5 16219 echo "$as_me:$LINENO: result: no" >&5
15489echo "${ECHO_T}no" >&6 16220echo "${ECHO_T}no" >&6
15490 K5LIBS="-lkrb5 -lk5crypto -lcom_err" 16221 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
@@ -15508,7 +16239,11 @@ else
15508LIBS="-lresolv $LIBS" 16239LIBS="-lresolv $LIBS"
15509cat >conftest.$ac_ext <<_ACEOF 16240cat >conftest.$ac_ext <<_ACEOF
15510#line $LINENO "configure" 16241#line $LINENO "configure"
15511#include "confdefs.h" 16242/* confdefs.h. */
16243_ACEOF
16244cat confdefs.h >>conftest.$ac_ext
16245cat >>conftest.$ac_ext <<_ACEOF
16246/* end confdefs.h. */
15512 16247
15513/* Override any gcc2 internal prototype to avoid an error. */ 16248/* Override any gcc2 internal prototype to avoid an error. */
15514#ifdef __cplusplus 16249#ifdef __cplusplus
@@ -15517,12 +16252,6 @@ extern "C"
15517/* We use char because int might match the return type of a gcc2 16252/* We use char because int might match the return type of a gcc2
15518 builtin and then its argument prototype would still apply. */ 16253 builtin and then its argument prototype would still apply. */
15519char dn_expand (); 16254char dn_expand ();
15520#ifdef F77_DUMMY_MAIN
15521# ifdef __cplusplus
15522 extern "C"
15523# endif
15524 int F77_DUMMY_MAIN() { return 1; }
15525#endif
15526int 16255int
15527main () 16256main ()
15528{ 16257{
@@ -15546,7 +16275,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15546 ac_cv_lib_resolv_dn_expand=yes 16275 ac_cv_lib_resolv_dn_expand=yes
15547else 16276else
15548 echo "$as_me: failed program was:" >&5 16277 echo "$as_me: failed program was:" >&5
15549cat conftest.$ac_ext >&5 16278sed 's/^/| /' conftest.$ac_ext >&5
16279
15550ac_cv_lib_resolv_dn_expand=no 16280ac_cv_lib_resolv_dn_expand=no
15551fi 16281fi
15552rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16282rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -15610,7 +16340,11 @@ echo "$as_me:$LINENO: checking $ac_header usability" >&5
15610echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 16340echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
15611cat >conftest.$ac_ext <<_ACEOF 16341cat >conftest.$ac_ext <<_ACEOF
15612#line $LINENO "configure" 16342#line $LINENO "configure"
15613#include "confdefs.h" 16343/* confdefs.h. */
16344_ACEOF
16345cat confdefs.h >>conftest.$ac_ext
16346cat >>conftest.$ac_ext <<_ACEOF
16347/* end confdefs.h. */
15614$ac_includes_default 16348$ac_includes_default
15615#include <$ac_header> 16349#include <$ac_header>
15616_ACEOF 16350_ACEOF
@@ -15629,7 +16363,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
15629 ac_header_compiler=yes 16363 ac_header_compiler=yes
15630else 16364else
15631 echo "$as_me: failed program was:" >&5 16365 echo "$as_me: failed program was:" >&5
15632cat conftest.$ac_ext >&5 16366sed 's/^/| /' conftest.$ac_ext >&5
16367
15633ac_header_compiler=no 16368ac_header_compiler=no
15634fi 16369fi
15635rm -f conftest.$ac_objext conftest.$ac_ext 16370rm -f conftest.$ac_objext conftest.$ac_ext
@@ -15641,13 +16376,17 @@ echo "$as_me:$LINENO: checking $ac_header presence" >&5
15641echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 16376echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
15642cat >conftest.$ac_ext <<_ACEOF 16377cat >conftest.$ac_ext <<_ACEOF
15643#line $LINENO "configure" 16378#line $LINENO "configure"
15644#include "confdefs.h" 16379/* confdefs.h. */
16380_ACEOF
16381cat confdefs.h >>conftest.$ac_ext
16382cat >>conftest.$ac_ext <<_ACEOF
16383/* end confdefs.h. */
15645#include <$ac_header> 16384#include <$ac_header>
15646_ACEOF 16385_ACEOF
15647if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 16386if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
15648 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 16387 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
15649 ac_status=$? 16388 ac_status=$?
15650 egrep -v '^ *\+' conftest.er1 >conftest.err 16389 grep -v '^ *+' conftest.er1 >conftest.err
15651 rm -f conftest.er1 16390 rm -f conftest.er1
15652 cat conftest.err >&5 16391 cat conftest.err >&5
15653 echo "$as_me:$LINENO: \$? = $ac_status" >&5 16392 echo "$as_me:$LINENO: \$? = $ac_status" >&5
@@ -15664,7 +16403,8 @@ if test -z "$ac_cpp_err"; then
15664 ac_header_preproc=yes 16403 ac_header_preproc=yes
15665else 16404else
15666 echo "$as_me: failed program was:" >&5 16405 echo "$as_me: failed program was:" >&5
15667 cat conftest.$ac_ext >&5 16406sed 's/^/| /' conftest.$ac_ext >&5
16407
15668 ac_header_preproc=no 16408 ac_header_preproc=no
15669fi 16409fi
15670rm -f conftest.err conftest.$ac_ext 16410rm -f conftest.err conftest.$ac_ext
@@ -15677,14 +16417,32 @@ case $ac_header_compiler:$ac_header_preproc in
15677 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 16417 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
15678echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 16418echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
15679 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 16419 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
15680echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 16420echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
16421 (
16422 cat <<\_ASBOX
16423## ------------------------------------ ##
16424## Report this to bug-autoconf@gnu.org. ##
16425## ------------------------------------ ##
16426_ASBOX
16427 ) |
16428 sed "s/^/$as_me: WARNING: /" >&2
16429 ;;
15681 no:yes ) 16430 no:yes )
15682 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 16431 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
15683echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 16432echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
15684 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 16433 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
15685echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 16434echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
15686 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 16435 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
15687echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; 16436echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
16437 (
16438 cat <<\_ASBOX
16439## ------------------------------------ ##
16440## Report this to bug-autoconf@gnu.org. ##
16441## ------------------------------------ ##
16442_ASBOX
16443 ) |
16444 sed "s/^/$as_me: WARNING: /" >&2
16445 ;;
15688esac 16446esac
15689echo "$as_me:$LINENO: checking for $ac_header" >&5 16447echo "$as_me:$LINENO: checking for $ac_header" >&5
15690echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 16448echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
@@ -15720,15 +16478,13 @@ else
15720LIBS="-lkrb $LIBS" 16478LIBS="-lkrb $LIBS"
15721cat >conftest.$ac_ext <<_ACEOF 16479cat >conftest.$ac_ext <<_ACEOF
15722#line $LINENO "configure" 16480#line $LINENO "configure"
15723#include "confdefs.h" 16481/* confdefs.h. */
16482_ACEOF
16483cat confdefs.h >>conftest.$ac_ext
16484cat >>conftest.$ac_ext <<_ACEOF
16485/* end confdefs.h. */
15724 16486
15725 16487
15726#ifdef F77_DUMMY_MAIN
15727# ifdef __cplusplus
15728 extern "C"
15729# endif
15730 int F77_DUMMY_MAIN() { return 1; }
15731#endif
15732int 16488int
15733main () 16489main ()
15734{ 16490{
@@ -15752,7 +16508,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15752 ac_cv_lib_krb_main=yes 16508 ac_cv_lib_krb_main=yes
15753else 16509else
15754 echo "$as_me: failed program was:" >&5 16510 echo "$as_me: failed program was:" >&5
15755cat conftest.$ac_ext >&5 16511sed 's/^/| /' conftest.$ac_ext >&5
16512
15756ac_cv_lib_krb_main=no 16513ac_cv_lib_krb_main=no
15757fi 16514fi
15758rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16515rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -15780,15 +16537,13 @@ else
15780LIBS="-lkrb4 $LIBS" 16537LIBS="-lkrb4 $LIBS"
15781cat >conftest.$ac_ext <<_ACEOF 16538cat >conftest.$ac_ext <<_ACEOF
15782#line $LINENO "configure" 16539#line $LINENO "configure"
15783#include "confdefs.h" 16540/* confdefs.h. */
16541_ACEOF
16542cat confdefs.h >>conftest.$ac_ext
16543cat >>conftest.$ac_ext <<_ACEOF
16544/* end confdefs.h. */
15784 16545
15785 16546
15786#ifdef F77_DUMMY_MAIN
15787# ifdef __cplusplus
15788 extern "C"
15789# endif
15790 int F77_DUMMY_MAIN() { return 1; }
15791#endif
15792int 16547int
15793main () 16548main ()
15794{ 16549{
@@ -15812,7 +16567,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15812 ac_cv_lib_krb4_main=yes 16567 ac_cv_lib_krb4_main=yes
15813else 16568else
15814 echo "$as_me: failed program was:" >&5 16569 echo "$as_me: failed program was:" >&5
15815cat conftest.$ac_ext >&5 16570sed 's/^/| /' conftest.$ac_ext >&5
16571
15816ac_cv_lib_krb4_main=no 16572ac_cv_lib_krb4_main=no
15817fi 16573fi
15818rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16574rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -15848,7 +16604,11 @@ else
15848LIBS="-ldes $LIBS" 16604LIBS="-ldes $LIBS"
15849cat >conftest.$ac_ext <<_ACEOF 16605cat >conftest.$ac_ext <<_ACEOF
15850#line $LINENO "configure" 16606#line $LINENO "configure"
15851#include "confdefs.h" 16607/* confdefs.h. */
16608_ACEOF
16609cat confdefs.h >>conftest.$ac_ext
16610cat >>conftest.$ac_ext <<_ACEOF
16611/* end confdefs.h. */
15852 16612
15853/* Override any gcc2 internal prototype to avoid an error. */ 16613/* Override any gcc2 internal prototype to avoid an error. */
15854#ifdef __cplusplus 16614#ifdef __cplusplus
@@ -15857,12 +16617,6 @@ extern "C"
15857/* We use char because int might match the return type of a gcc2 16617/* We use char because int might match the return type of a gcc2
15858 builtin and then its argument prototype would still apply. */ 16618 builtin and then its argument prototype would still apply. */
15859char des_cbc_encrypt (); 16619char des_cbc_encrypt ();
15860#ifdef F77_DUMMY_MAIN
15861# ifdef __cplusplus
15862 extern "C"
15863# endif
15864 int F77_DUMMY_MAIN() { return 1; }
15865#endif
15866int 16620int
15867main () 16621main ()
15868{ 16622{
@@ -15886,7 +16640,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15886 ac_cv_lib_des_des_cbc_encrypt=yes 16640 ac_cv_lib_des_des_cbc_encrypt=yes
15887else 16641else
15888 echo "$as_me: failed program was:" >&5 16642 echo "$as_me: failed program was:" >&5
15889cat conftest.$ac_ext >&5 16643sed 's/^/| /' conftest.$ac_ext >&5
16644
15890ac_cv_lib_des_des_cbc_encrypt=no 16645ac_cv_lib_des_des_cbc_encrypt=no
15891fi 16646fi
15892rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16647rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -15914,7 +16669,11 @@ else
15914LIBS="-ldes425 $LIBS" 16669LIBS="-ldes425 $LIBS"
15915cat >conftest.$ac_ext <<_ACEOF 16670cat >conftest.$ac_ext <<_ACEOF
15916#line $LINENO "configure" 16671#line $LINENO "configure"
15917#include "confdefs.h" 16672/* confdefs.h. */
16673_ACEOF
16674cat confdefs.h >>conftest.$ac_ext
16675cat >>conftest.$ac_ext <<_ACEOF
16676/* end confdefs.h. */
15918 16677
15919/* Override any gcc2 internal prototype to avoid an error. */ 16678/* Override any gcc2 internal prototype to avoid an error. */
15920#ifdef __cplusplus 16679#ifdef __cplusplus
@@ -15923,12 +16682,6 @@ extern "C"
15923/* We use char because int might match the return type of a gcc2 16682/* We use char because int might match the return type of a gcc2
15924 builtin and then its argument prototype would still apply. */ 16683 builtin and then its argument prototype would still apply. */
15925char des_cbc_encrypt (); 16684char des_cbc_encrypt ();
15926#ifdef F77_DUMMY_MAIN
15927# ifdef __cplusplus
15928 extern "C"
15929# endif
15930 int F77_DUMMY_MAIN() { return 1; }
15931#endif
15932int 16685int
15933main () 16686main ()
15934{ 16687{
@@ -15952,7 +16705,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
15952 ac_cv_lib_des425_des_cbc_encrypt=yes 16705 ac_cv_lib_des425_des_cbc_encrypt=yes
15953else 16706else
15954 echo "$as_me: failed program was:" >&5 16707 echo "$as_me: failed program was:" >&5
15955cat conftest.$ac_ext >&5 16708sed 's/^/| /' conftest.$ac_ext >&5
16709
15956ac_cv_lib_des425_des_cbc_encrypt=no 16710ac_cv_lib_des425_des_cbc_encrypt=no
15957fi 16711fi
15958rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16712rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -15988,7 +16742,11 @@ else
15988LIBS="-lresolv $LIBS" 16742LIBS="-lresolv $LIBS"
15989cat >conftest.$ac_ext <<_ACEOF 16743cat >conftest.$ac_ext <<_ACEOF
15990#line $LINENO "configure" 16744#line $LINENO "configure"
15991#include "confdefs.h" 16745/* confdefs.h. */
16746_ACEOF
16747cat confdefs.h >>conftest.$ac_ext
16748cat >>conftest.$ac_ext <<_ACEOF
16749/* end confdefs.h. */
15992 16750
15993/* Override any gcc2 internal prototype to avoid an error. */ 16751/* Override any gcc2 internal prototype to avoid an error. */
15994#ifdef __cplusplus 16752#ifdef __cplusplus
@@ -15997,12 +16755,6 @@ extern "C"
15997/* We use char because int might match the return type of a gcc2 16755/* We use char because int might match the return type of a gcc2
15998 builtin and then its argument prototype would still apply. */ 16756 builtin and then its argument prototype would still apply. */
15999char dn_expand (); 16757char dn_expand ();
16000#ifdef F77_DUMMY_MAIN
16001# ifdef __cplusplus
16002 extern "C"
16003# endif
16004 int F77_DUMMY_MAIN() { return 1; }
16005#endif
16006int 16758int
16007main () 16759main ()
16008{ 16760{
@@ -16026,7 +16778,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
16026 ac_cv_lib_resolv_dn_expand=yes 16778 ac_cv_lib_resolv_dn_expand=yes
16027else 16779else
16028 echo "$as_me: failed program was:" >&5 16780 echo "$as_me: failed program was:" >&5
16029cat conftest.$ac_ext >&5 16781sed 's/^/| /' conftest.$ac_ext >&5
16782
16030ac_cv_lib_resolv_dn_expand=no 16783ac_cv_lib_resolv_dn_expand=no
16031fi 16784fi
16032rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16785rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
@@ -16383,18 +17136,16 @@ if test -z "$disable_shadow" ; then
16383echo $ECHO_N "checking if the systems has expire shadow information... $ECHO_C" >&6 17136echo $ECHO_N "checking if the systems has expire shadow information... $ECHO_C" >&6
16384 cat >conftest.$ac_ext <<_ACEOF 17137 cat >conftest.$ac_ext <<_ACEOF
16385#line $LINENO "configure" 17138#line $LINENO "configure"
16386#include "confdefs.h" 17139/* confdefs.h. */
17140_ACEOF
17141cat confdefs.h >>conftest.$ac_ext
17142cat >>conftest.$ac_ext <<_ACEOF
17143/* end confdefs.h. */
16387 17144
16388#include <sys/types.h> 17145#include <sys/types.h>
16389#include <shadow.h> 17146#include <shadow.h>
16390 struct spwd sp; 17147 struct spwd sp;
16391 17148
16392#ifdef F77_DUMMY_MAIN
16393# ifdef __cplusplus
16394 extern "C"
16395# endif
16396 int F77_DUMMY_MAIN() { return 1; }
16397#endif
16398int 17149int
16399main () 17150main ()
16400{ 17151{
@@ -16418,7 +17169,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
16418 sp_expire_available=yes 17169 sp_expire_available=yes
16419else 17170else
16420 echo "$as_me: failed program was:" >&5 17171 echo "$as_me: failed program was:" >&5
16421cat conftest.$ac_ext >&5 17172sed 's/^/| /' conftest.$ac_ext >&5
17173
16422 17174
16423 17175
16424fi 17176fi
@@ -16497,7 +17249,11 @@ echo "$as_me: WARNING: Make sure the path to scp is in /etc/login.conf" >&2;}
16497else 17249else
16498 cat >conftest.$ac_ext <<_ACEOF 17250 cat >conftest.$ac_ext <<_ACEOF
16499#line $LINENO "configure" 17251#line $LINENO "configure"
16500#include "confdefs.h" 17252/* confdefs.h. */
17253_ACEOF
17254cat confdefs.h >>conftest.$ac_ext
17255cat >>conftest.$ac_ext <<_ACEOF
17256/* end confdefs.h. */
16501 17257
16502/* find out what STDPATH is */ 17258/* find out what STDPATH is */
16503#include <stdio.h> 17259#include <stdio.h>
@@ -16547,11 +17303,12 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
16547else 17303else
16548 echo "$as_me: program exited with status $ac_status" >&5 17304 echo "$as_me: program exited with status $ac_status" >&5
16549echo "$as_me: failed program was:" >&5 17305echo "$as_me: failed program was:" >&5
16550cat conftest.$ac_ext >&5 17306sed 's/^/| /' conftest.$ac_ext >&5
17307
16551( exit $ac_status ) 17308( exit $ac_status )
16552 user_path="/usr/bin:/bin:/usr/sbin:/sbin" 17309 user_path="/usr/bin:/bin:/usr/sbin:/sbin"
16553fi 17310fi
16554rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 17311rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
16555fi 17312fi
16556# make sure $bindir is in USER_PATH so scp will work 17313# make sure $bindir is in USER_PATH so scp will work
16557 t_bindir=`eval echo ${bindir}` 17314 t_bindir=`eval echo ${bindir}`
@@ -16800,7 +17557,11 @@ echo "$as_me:$LINENO: checking if your system defines LASTLOG_FILE" >&5
16800echo $ECHO_N "checking if your system defines LASTLOG_FILE... $ECHO_C" >&6 17557echo $ECHO_N "checking if your system defines LASTLOG_FILE... $ECHO_C" >&6
16801cat >conftest.$ac_ext <<_ACEOF 17558cat >conftest.$ac_ext <<_ACEOF
16802#line $LINENO "configure" 17559#line $LINENO "configure"
16803#include "confdefs.h" 17560/* confdefs.h. */
17561_ACEOF
17562cat confdefs.h >>conftest.$ac_ext
17563cat >>conftest.$ac_ext <<_ACEOF
17564/* end confdefs.h. */
16804 17565
16805#include <sys/types.h> 17566#include <sys/types.h>
16806#include <utmp.h> 17567#include <utmp.h>
@@ -16814,12 +17575,6 @@ cat >conftest.$ac_ext <<_ACEOF
16814# include <login.h> 17575# include <login.h>
16815#endif 17576#endif
16816 17577
16817#ifdef F77_DUMMY_MAIN
16818# ifdef __cplusplus
16819 extern "C"
16820# endif
16821 int F77_DUMMY_MAIN() { return 1; }
16822#endif
16823int 17578int
16824main () 17579main ()
16825{ 17580{
@@ -16844,7 +17599,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
16844echo "${ECHO_T}yes" >&6 17599echo "${ECHO_T}yes" >&6
16845else 17600else
16846 echo "$as_me: failed program was:" >&5 17601 echo "$as_me: failed program was:" >&5
16847cat conftest.$ac_ext >&5 17602sed 's/^/| /' conftest.$ac_ext >&5
17603
16848 17604
16849 echo "$as_me:$LINENO: result: no" >&5 17605 echo "$as_me:$LINENO: result: no" >&5
16850echo "${ECHO_T}no" >&6 17606echo "${ECHO_T}no" >&6
@@ -16852,7 +17608,11 @@ echo "${ECHO_T}no" >&6
16852echo $ECHO_N "checking if your system defines _PATH_LASTLOG... $ECHO_C" >&6 17608echo $ECHO_N "checking if your system defines _PATH_LASTLOG... $ECHO_C" >&6
16853 cat >conftest.$ac_ext <<_ACEOF 17609 cat >conftest.$ac_ext <<_ACEOF
16854#line $LINENO "configure" 17610#line $LINENO "configure"
16855#include "confdefs.h" 17611/* confdefs.h. */
17612_ACEOF
17613cat confdefs.h >>conftest.$ac_ext
17614cat >>conftest.$ac_ext <<_ACEOF
17615/* end confdefs.h. */
16856 17616
16857#include <sys/types.h> 17617#include <sys/types.h>
16858#include <utmp.h> 17618#include <utmp.h>
@@ -16863,12 +17623,6 @@ echo $ECHO_N "checking if your system defines _PATH_LASTLOG... $ECHO_C" >&6
16863# include <paths.h> 17623# include <paths.h>
16864#endif 17624#endif
16865 17625
16866#ifdef F77_DUMMY_MAIN
16867# ifdef __cplusplus
16868 extern "C"
16869# endif
16870 int F77_DUMMY_MAIN() { return 1; }
16871#endif
16872int 17626int
16873main () 17627main ()
16874{ 17628{
@@ -16893,7 +17647,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
16893echo "${ECHO_T}yes" >&6 17647echo "${ECHO_T}yes" >&6
16894else 17648else
16895 echo "$as_me: failed program was:" >&5 17649 echo "$as_me: failed program was:" >&5
16896cat conftest.$ac_ext >&5 17650sed 's/^/| /' conftest.$ac_ext >&5
17651
16897 17652
16898 echo "$as_me:$LINENO: result: no" >&5 17653 echo "$as_me:$LINENO: result: no" >&5
16899echo "${ECHO_T}no" >&6 17654echo "${ECHO_T}no" >&6
@@ -16931,7 +17686,11 @@ echo "$as_me:$LINENO: checking if your system defines UTMP_FILE" >&5
16931echo $ECHO_N "checking if your system defines UTMP_FILE... $ECHO_C" >&6 17686echo $ECHO_N "checking if your system defines UTMP_FILE... $ECHO_C" >&6
16932cat >conftest.$ac_ext <<_ACEOF 17687cat >conftest.$ac_ext <<_ACEOF
16933#line $LINENO "configure" 17688#line $LINENO "configure"
16934#include "confdefs.h" 17689/* confdefs.h. */
17690_ACEOF
17691cat confdefs.h >>conftest.$ac_ext
17692cat >>conftest.$ac_ext <<_ACEOF
17693/* end confdefs.h. */
16935 17694
16936#include <sys/types.h> 17695#include <sys/types.h>
16937#include <utmp.h> 17696#include <utmp.h>
@@ -16939,12 +17698,6 @@ cat >conftest.$ac_ext <<_ACEOF
16939# include <paths.h> 17698# include <paths.h>
16940#endif 17699#endif
16941 17700
16942#ifdef F77_DUMMY_MAIN
16943# ifdef __cplusplus
16944 extern "C"
16945# endif
16946 int F77_DUMMY_MAIN() { return 1; }
16947#endif
16948int 17701int
16949main () 17702main ()
16950{ 17703{
@@ -16969,7 +17722,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
16969echo "${ECHO_T}yes" >&6 17722echo "${ECHO_T}yes" >&6
16970else 17723else
16971 echo "$as_me: failed program was:" >&5 17724 echo "$as_me: failed program was:" >&5
16972cat conftest.$ac_ext >&5 17725sed 's/^/| /' conftest.$ac_ext >&5
17726
16973 echo "$as_me:$LINENO: result: no" >&5 17727 echo "$as_me:$LINENO: result: no" >&5
16974echo "${ECHO_T}no" >&6 17728echo "${ECHO_T}no" >&6
16975 system_utmp_path=no 17729 system_utmp_path=no
@@ -17002,7 +17756,11 @@ echo "$as_me:$LINENO: checking if your system defines WTMP_FILE" >&5
17002echo $ECHO_N "checking if your system defines WTMP_FILE... $ECHO_C" >&6 17756echo $ECHO_N "checking if your system defines WTMP_FILE... $ECHO_C" >&6
17003cat >conftest.$ac_ext <<_ACEOF 17757cat >conftest.$ac_ext <<_ACEOF
17004#line $LINENO "configure" 17758#line $LINENO "configure"
17005#include "confdefs.h" 17759/* confdefs.h. */
17760_ACEOF
17761cat confdefs.h >>conftest.$ac_ext
17762cat >>conftest.$ac_ext <<_ACEOF
17763/* end confdefs.h. */
17006 17764
17007#include <sys/types.h> 17765#include <sys/types.h>
17008#include <utmp.h> 17766#include <utmp.h>
@@ -17010,12 +17768,6 @@ cat >conftest.$ac_ext <<_ACEOF
17010# include <paths.h> 17768# include <paths.h>
17011#endif 17769#endif
17012 17770
17013#ifdef F77_DUMMY_MAIN
17014# ifdef __cplusplus
17015 extern "C"
17016# endif
17017 int F77_DUMMY_MAIN() { return 1; }
17018#endif
17019int 17771int
17020main () 17772main ()
17021{ 17773{
@@ -17040,7 +17792,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
17040echo "${ECHO_T}yes" >&6 17792echo "${ECHO_T}yes" >&6
17041else 17793else
17042 echo "$as_me: failed program was:" >&5 17794 echo "$as_me: failed program was:" >&5
17043cat conftest.$ac_ext >&5 17795sed 's/^/| /' conftest.$ac_ext >&5
17796
17044 echo "$as_me:$LINENO: result: no" >&5 17797 echo "$as_me:$LINENO: result: no" >&5
17045echo "${ECHO_T}no" >&6 17798echo "${ECHO_T}no" >&6
17046 system_wtmp_path=no 17799 system_wtmp_path=no
@@ -17074,7 +17827,11 @@ echo "$as_me:$LINENO: checking if your system defines UTMPX_FILE" >&5
17074echo $ECHO_N "checking if your system defines UTMPX_FILE... $ECHO_C" >&6 17827echo $ECHO_N "checking if your system defines UTMPX_FILE... $ECHO_C" >&6
17075cat >conftest.$ac_ext <<_ACEOF 17828cat >conftest.$ac_ext <<_ACEOF
17076#line $LINENO "configure" 17829#line $LINENO "configure"
17077#include "confdefs.h" 17830/* confdefs.h. */
17831_ACEOF
17832cat confdefs.h >>conftest.$ac_ext
17833cat >>conftest.$ac_ext <<_ACEOF
17834/* end confdefs.h. */
17078 17835
17079#include <sys/types.h> 17836#include <sys/types.h>
17080#include <utmp.h> 17837#include <utmp.h>
@@ -17085,12 +17842,6 @@ cat >conftest.$ac_ext <<_ACEOF
17085# include <paths.h> 17842# include <paths.h>
17086#endif 17843#endif
17087 17844
17088#ifdef F77_DUMMY_MAIN
17089# ifdef __cplusplus
17090 extern "C"
17091# endif
17092 int F77_DUMMY_MAIN() { return 1; }
17093#endif
17094int 17845int
17095main () 17846main ()
17096{ 17847{
@@ -17115,7 +17866,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
17115echo "${ECHO_T}yes" >&6 17866echo "${ECHO_T}yes" >&6
17116else 17867else
17117 echo "$as_me: failed program was:" >&5 17868 echo "$as_me: failed program was:" >&5
17118cat conftest.$ac_ext >&5 17869sed 's/^/| /' conftest.$ac_ext >&5
17870
17119 echo "$as_me:$LINENO: result: no" >&5 17871 echo "$as_me:$LINENO: result: no" >&5
17120echo "${ECHO_T}no" >&6 17872echo "${ECHO_T}no" >&6
17121 system_utmpx_path=no 17873 system_utmpx_path=no
@@ -17140,7 +17892,11 @@ echo "$as_me:$LINENO: checking if your system defines WTMPX_FILE" >&5
17140echo $ECHO_N "checking if your system defines WTMPX_FILE... $ECHO_C" >&6 17892echo $ECHO_N "checking if your system defines WTMPX_FILE... $ECHO_C" >&6
17141cat >conftest.$ac_ext <<_ACEOF 17893cat >conftest.$ac_ext <<_ACEOF
17142#line $LINENO "configure" 17894#line $LINENO "configure"
17143#include "confdefs.h" 17895/* confdefs.h. */
17896_ACEOF
17897cat confdefs.h >>conftest.$ac_ext
17898cat >>conftest.$ac_ext <<_ACEOF
17899/* end confdefs.h. */
17144 17900
17145#include <sys/types.h> 17901#include <sys/types.h>
17146#include <utmp.h> 17902#include <utmp.h>
@@ -17151,12 +17907,6 @@ cat >conftest.$ac_ext <<_ACEOF
17151# include <paths.h> 17907# include <paths.h>
17152#endif 17908#endif
17153 17909
17154#ifdef F77_DUMMY_MAIN
17155# ifdef __cplusplus
17156 extern "C"
17157# endif
17158 int F77_DUMMY_MAIN() { return 1; }
17159#endif
17160int 17910int
17161main () 17911main ()
17162{ 17912{
@@ -17181,7 +17931,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
17181echo "${ECHO_T}yes" >&6 17931echo "${ECHO_T}yes" >&6
17182else 17932else
17183 echo "$as_me: failed program was:" >&5 17933 echo "$as_me: failed program was:" >&5
17184cat conftest.$ac_ext >&5 17934sed 's/^/| /' conftest.$ac_ext >&5
17935
17185 echo "$as_me:$LINENO: result: no" >&5 17936 echo "$as_me:$LINENO: result: no" >&5
17186echo "${ECHO_T}no" >&6 17937echo "${ECHO_T}no" >&6
17187 system_wtmpx_path=no 17938 system_wtmpx_path=no
@@ -17204,9 +17955,9 @@ fi
17204 17955
17205 17956
17206if test ! -z "$blibpath" ; then 17957if test ! -z "$blibpath" ; then
17207 LDFLAGS="$LDFLAGS -blibpath:$blibpath" 17958 LDFLAGS="$LDFLAGS $blibflags$blibpath"
17208 { echo "$as_me:$LINENO: WARNING: Please check and edit -blibpath in LDFLAGS in Makefile" >&5 17959 { echo "$as_me:$LINENO: WARNING: Please check and edit blibpath in LDFLAGS in Makefile" >&5
17209echo "$as_me: WARNING: Please check and edit -blibpath in LDFLAGS in Makefile" >&2;} 17960echo "$as_me: WARNING: Please check and edit blibpath in LDFLAGS in Makefile" >&2;}
17210fi 17961fi
17211 17962
17212if test "$PAM_MSG" = yes ; then 17963if test "$PAM_MSG" = yes ; then
@@ -17217,7 +17968,7 @@ if test "$ac_cv_lib_pam_pam_set_item" = yes ; then
17217fi 17968fi
17218 17969
17219 17970
17220ac_config_files="$ac_config_files Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds" 17971 ac_config_files="$ac_config_files Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds"
17221 17972
17222cat >confcache <<\_ACEOF 17973cat >confcache <<\_ACEOF
17223# This file is a shell script that caches the results of configure 17974# This file is a shell script that caches the results of configure
@@ -17229,7 +17980,7 @@ cat >confcache <<\_ACEOF
17229# config.status only pays attention to the cache file if you give it 17980# config.status only pays attention to the cache file if you give it
17230# the --recheck option to rerun configure. 17981# the --recheck option to rerun configure.
17231# 17982#
17232# `ac_cv_env_foo' variables (set or unset) will be overriden when 17983# `ac_cv_env_foo' variables (set or unset) will be overridden when
17233# loading this file, other *unset* `ac_cv_foo' will be assigned the 17984# loading this file, other *unset* `ac_cv_foo' will be assigned the
17234# following values. 17985# following values.
17235 17986
@@ -17264,7 +18015,7 @@ _ACEOF
17264 t end 18015 t end
17265 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ 18016 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
17266 : end' >>confcache 18017 : end' >>confcache
17267if cmp -s $cache_file confcache; then :; else 18018if diff $cache_file confcache >/dev/null 2>&1; then :; else
17268 if test -w $cache_file; then 18019 if test -w $cache_file; then
17269 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" 18020 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
17270 cat confcache >$cache_file 18021 cat confcache >$cache_file
@@ -17295,6 +18046,21 @@ fi
17295 18046
17296DEFS=-DHAVE_CONFIG_H 18047DEFS=-DHAVE_CONFIG_H
17297 18048
18049ac_libobjs=
18050ac_ltlibobjs=
18051for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
18052 # 1. Remove the extension, and $U if already installed.
18053 ac_i=`echo "$ac_i" |
18054 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
18055 # 2. Add them.
18056 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
18057 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
18058done
18059LIBOBJS=$ac_libobjs
18060
18061LTLIBOBJS=$ac_ltlibobjs
18062
18063
17298 18064
17299: ${CONFIG_STATUS=./config.status} 18065: ${CONFIG_STATUS=./config.status}
17300ac_clean_files_save=$ac_clean_files 18066ac_clean_files_save=$ac_clean_files
@@ -17309,11 +18075,12 @@ cat >$CONFIG_STATUS <<_ACEOF
17309# configure, is in config.log if it exists. 18075# configure, is in config.log if it exists.
17310 18076
17311debug=false 18077debug=false
18078ac_cs_recheck=false
18079ac_cs_silent=false
17312SHELL=\${CONFIG_SHELL-$SHELL} 18080SHELL=\${CONFIG_SHELL-$SHELL}
17313_ACEOF 18081_ACEOF
17314 18082
17315cat >>$CONFIG_STATUS <<\_ACEOF 18083cat >>$CONFIG_STATUS <<\_ACEOF
17316
17317## --------------------- ## 18084## --------------------- ##
17318## M4sh Initialization. ## 18085## M4sh Initialization. ##
17319## --------------------- ## 18086## --------------------- ##
@@ -17322,11 +18089,13 @@ cat >>$CONFIG_STATUS <<\_ACEOF
17322if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 18089if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
17323 emulate sh 18090 emulate sh
17324 NULLCMD=: 18091 NULLCMD=:
18092 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
18093 # is contrary to our usage. Disable this feature.
18094 alias -g '${1+"$@"}'='"$@"'
17325elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 18095elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
17326 set -o posix 18096 set -o posix
17327fi 18097fi
17328 18098
17329# NLS nuisances.
17330# Support unset when possible. 18099# Support unset when possible.
17331if (FOO=FOO; unset FOO) >/dev/null 2>&1; then 18100if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
17332 as_unset=unset 18101 as_unset=unset
@@ -17334,34 +18103,42 @@ else
17334 as_unset=false 18103 as_unset=false
17335fi 18104fi
17336 18105
17337(set +x; test -n "`(LANG=C; export LANG) 2>&1`") && 18106
17338 { $as_unset LANG || test "${LANG+set}" != set; } || 18107# Work around bugs in pre-3.0 UWIN ksh.
17339 { LANG=C; export LANG; } 18108$as_unset ENV MAIL MAILPATH
17340(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") && 18109PS1='$ '
17341 { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } || 18110PS2='> '
17342 { LC_ALL=C; export LC_ALL; } 18111PS4='+ '
17343(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") && 18112
17344 { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } || 18113# NLS nuisances.
17345 { LC_TIME=C; export LC_TIME; } 18114for as_var in \
17346(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") && 18115 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
17347 { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } || 18116 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
17348 { LC_CTYPE=C; export LC_CTYPE; } 18117 LC_TELEPHONE LC_TIME
17349(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") && 18118do
17350 { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } || 18119 if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
17351 { LANGUAGE=C; export LANGUAGE; } 18120 eval $as_var=C; export $as_var
17352(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") && 18121 else
17353 { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } || 18122 $as_unset $as_var
17354 { LC_COLLATE=C; export LC_COLLATE; } 18123 fi
17355(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") && 18124done
17356 { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } || 18125
17357 { LC_NUMERIC=C; export LC_NUMERIC; } 18126# Required to use basename.
17358(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") && 18127if expr a : '\(a\)' >/dev/null 2>&1; then
17359 { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } || 18128 as_expr=expr
17360 { LC_MESSAGES=C; export LC_MESSAGES; } 18129else
18130 as_expr=false
18131fi
18132
18133if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
18134 as_basename=basename
18135else
18136 as_basename=false
18137fi
17361 18138
17362 18139
17363# Name of the executable. 18140# Name of the executable.
17364as_me=`(basename "$0") 2>/dev/null || 18141as_me=`$as_basename "$0" ||
17365$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 18142$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
17366 X"$0" : 'X\(//\)$' \| \ 18143 X"$0" : 'X\(//\)$' \| \
17367 X"$0" : 'X\(/\)$' \| \ 18144 X"$0" : 'X\(/\)$' \| \
@@ -17372,6 +18149,7 @@ echo X/"$0" |
17372 /^X\/\(\/\).*/{ s//\1/; q; } 18149 /^X\/\(\/\).*/{ s//\1/; q; }
17373 s/.*/./; q'` 18150 s/.*/./; q'`
17374 18151
18152
17375# PATH needs CR, and LINENO needs CR and PATH. 18153# PATH needs CR, and LINENO needs CR and PATH.
17376# Avoid depending upon Character Ranges. 18154# Avoid depending upon Character Ranges.
17377as_cr_letters='abcdefghijklmnopqrstuvwxyz' 18155as_cr_letters='abcdefghijklmnopqrstuvwxyz'
@@ -17382,15 +18160,15 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
17382 18160
17383# The user is always right. 18161# The user is always right.
17384if test "${PATH_SEPARATOR+set}" != set; then 18162if test "${PATH_SEPARATOR+set}" != set; then
17385 echo "#! /bin/sh" >conftest.sh 18163 echo "#! /bin/sh" >conf$$.sh
17386 echo "exit 0" >>conftest.sh 18164 echo "exit 0" >>conf$$.sh
17387 chmod +x conftest.sh 18165 chmod +x conf$$.sh
17388 if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then 18166 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
17389 PATH_SEPARATOR=';' 18167 PATH_SEPARATOR=';'
17390 else 18168 else
17391 PATH_SEPARATOR=: 18169 PATH_SEPARATOR=:
17392 fi 18170 fi
17393 rm -f conftest.sh 18171 rm -f conf$$.sh
17394fi 18172fi
17395 18173
17396 18174
@@ -17439,6 +18217,8 @@ do
17439 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 18217 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
17440 test "x$as_lineno_1" != "x$as_lineno_2" && 18218 test "x$as_lineno_1" != "x$as_lineno_2" &&
17441 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then 18219 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
18220 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
18221 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
17442 CONFIG_SHELL=$as_dir/$as_base 18222 CONFIG_SHELL=$as_dir/$as_base
17443 export CONFIG_SHELL 18223 export CONFIG_SHELL
17444 exec "$CONFIG_SHELL" "$0" ${1+"$@"} 18224 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
@@ -17512,6 +18292,12 @@ else
17512fi 18292fi
17513rm -f conf$$ conf$$.exe conf$$.file 18293rm -f conf$$ conf$$.exe conf$$.file
17514 18294
18295if mkdir -p . 2>/dev/null; then
18296 as_mkdir_p=:
18297else
18298 as_mkdir_p=false
18299fi
18300
17515as_executable_p="test -f" 18301as_executable_p="test -f"
17516 18302
17517# Sed expression to map a string onto a valid CPP name. 18303# Sed expression to map a string onto a valid CPP name.
@@ -17528,7 +18314,7 @@ as_nl='
17528IFS=" $as_nl" 18314IFS=" $as_nl"
17529 18315
17530# CDPATH. 18316# CDPATH.
17531$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; } 18317$as_unset CDPATH
17532 18318
17533exec 6>&1 18319exec 6>&1
17534 18320
@@ -17545,7 +18331,7 @@ _ASBOX
17545cat >&5 <<_CSEOF 18331cat >&5 <<_CSEOF
17546 18332
17547This file was extended by $as_me, which was 18333This file was extended by $as_me, which was
17548generated by GNU Autoconf 2.53. Invocation command line was 18334generated by GNU Autoconf 2.57. Invocation command line was
17549 18335
17550 CONFIG_FILES = $CONFIG_FILES 18336 CONFIG_FILES = $CONFIG_FILES
17551 CONFIG_HEADERS = $CONFIG_HEADERS 18337 CONFIG_HEADERS = $CONFIG_HEADERS
@@ -17585,6 +18371,7 @@ Usage: $0 [OPTIONS] [FILE]...
17585 18371
17586 -h, --help print this help, then exit 18372 -h, --help print this help, then exit
17587 -V, --version print version number, then exit 18373 -V, --version print version number, then exit
18374 -q, --quiet do not print progress messages
17588 -d, --debug don't remove temporary files 18375 -d, --debug don't remove temporary files
17589 --recheck update $as_me by reconfiguring in the same conditions 18376 --recheck update $as_me by reconfiguring in the same conditions
17590 --file=FILE[:TEMPLATE] 18377 --file=FILE[:TEMPLATE]
@@ -17604,7 +18391,7 @@ _ACEOF
17604cat >>$CONFIG_STATUS <<_ACEOF 18391cat >>$CONFIG_STATUS <<_ACEOF
17605ac_cs_version="\\ 18392ac_cs_version="\\
17606config.status 18393config.status
17607configured by $0, generated by GNU Autoconf 2.53, 18394configured by $0, generated by GNU Autoconf 2.57,
17608 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" 18395 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
17609 18396
17610Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 18397Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
@@ -17625,25 +18412,25 @@ do
17625 --*=*) 18412 --*=*)
17626 ac_option=`expr "x$1" : 'x\([^=]*\)='` 18413 ac_option=`expr "x$1" : 'x\([^=]*\)='`
17627 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` 18414 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
17628 shift 18415 ac_shift=:
17629 set dummy "$ac_option" "$ac_optarg" ${1+"$@"} 18416 ;;
17630 shift 18417 -*)
18418 ac_option=$1
18419 ac_optarg=$2
18420 ac_shift=shift
17631 ;; 18421 ;;
17632 -*);;
17633 *) # This is not an option, so the user has probably given explicit 18422 *) # This is not an option, so the user has probably given explicit
17634 # arguments. 18423 # arguments.
18424 ac_option=$1
17635 ac_need_defaults=false;; 18425 ac_need_defaults=false;;
17636 esac 18426 esac
17637 18427
17638 case $1 in 18428 case $ac_option in
17639 # Handling of the options. 18429 # Handling of the options.
17640_ACEOF 18430_ACEOF
17641cat >>$CONFIG_STATUS <<_ACEOF
17642 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
17643 echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
17644 exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
17645_ACEOF
17646cat >>$CONFIG_STATUS <<\_ACEOF 18431cat >>$CONFIG_STATUS <<\_ACEOF
18432 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
18433 ac_cs_recheck=: ;;
17647 --version | --vers* | -V ) 18434 --version | --vers* | -V )
17648 echo "$ac_cs_version"; exit 0 ;; 18435 echo "$ac_cs_version"; exit 0 ;;
17649 --he | --h) 18436 --he | --h)
@@ -17658,13 +18445,16 @@ Try \`$0 --help' for more information." >&2;}
17658 --debug | --d* | -d ) 18445 --debug | --d* | -d )
17659 debug=: ;; 18446 debug=: ;;
17660 --file | --fil | --fi | --f ) 18447 --file | --fil | --fi | --f )
17661 shift 18448 $ac_shift
17662 CONFIG_FILES="$CONFIG_FILES $1" 18449 CONFIG_FILES="$CONFIG_FILES $ac_optarg"
17663 ac_need_defaults=false;; 18450 ac_need_defaults=false;;
17664 --header | --heade | --head | --hea ) 18451 --header | --heade | --head | --hea )
17665 shift 18452 $ac_shift
17666 CONFIG_HEADERS="$CONFIG_HEADERS $1" 18453 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
17667 ac_need_defaults=false;; 18454 ac_need_defaults=false;;
18455 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
18456 | -silent | --silent | --silen | --sile | --sil | --si | --s)
18457 ac_cs_silent=: ;;
17668 18458
17669 # This is an error. 18459 # This is an error.
17670 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 18460 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
@@ -17679,6 +18469,20 @@ Try \`$0 --help' for more information." >&2;}
17679 shift 18469 shift
17680done 18470done
17681 18471
18472ac_configure_extra_args=
18473
18474if $ac_cs_silent; then
18475 exec 6>/dev/null
18476 ac_configure_extra_args="$ac_configure_extra_args --silent"
18477fi
18478
18479_ACEOF
18480cat >>$CONFIG_STATUS <<_ACEOF
18481if \$ac_cs_recheck; then
18482 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
18483 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
18484fi
18485
17682_ACEOF 18486_ACEOF
17683 18487
17684 18488
@@ -17710,6 +18514,9 @@ if $ac_need_defaults; then
17710 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers 18514 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
17711fi 18515fi
17712 18516
18517# Have a temporary directory for convenience. Make it in the build tree
18518# simply because there is no reason to put it here, and in addition,
18519# creating and moving files from /tmp can sometimes cause problems.
17713# Create a temporary directory, and hook for its removal unless debugging. 18520# Create a temporary directory, and hook for its removal unless debugging.
17714$debug || 18521$debug ||
17715{ 18522{
@@ -17718,17 +18525,17 @@ $debug ||
17718} 18525}
17719 18526
17720# Create a (secure) tmp directory for tmp files. 18527# Create a (secure) tmp directory for tmp files.
17721: ${TMPDIR=/tmp} 18528
17722{ 18529{
17723 tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` && 18530 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
17724 test -n "$tmp" && test -d "$tmp" 18531 test -n "$tmp" && test -d "$tmp"
17725} || 18532} ||
17726{ 18533{
17727 tmp=$TMPDIR/cs$$-$RANDOM 18534 tmp=./confstat$$-$RANDOM
17728 (umask 077 && mkdir $tmp) 18535 (umask 077 && mkdir $tmp)
17729} || 18536} ||
17730{ 18537{
17731 echo "$me: cannot create a temporary directory in $TMPDIR" >&2 18538 echo "$me: cannot create a temporary directory in ." >&2
17732 { (exit 1); exit 1; } 18539 { (exit 1); exit 1; }
17733} 18540}
17734 18541
@@ -17805,6 +18612,7 @@ s,@TEST_MINUS_S_SH@,$TEST_MINUS_S_SH,;t t
17805s,@SH@,$SH,;t t 18612s,@SH@,$SH,;t t
17806s,@LOGIN_PROGRAM_FALLBACK@,$LOGIN_PROGRAM_FALLBACK,;t t 18613s,@LOGIN_PROGRAM_FALLBACK@,$LOGIN_PROGRAM_FALLBACK,;t t
17807s,@LD@,$LD,;t t 18614s,@LD@,$LD,;t t
18615s,@EGREP@,$EGREP,;t t
17808s,@LIBWRAP@,$LIBWRAP,;t t 18616s,@LIBWRAP@,$LIBWRAP,;t t
17809s,@LIBPAM@,$LIBPAM,;t t 18617s,@LIBPAM@,$LIBPAM,;t t
17810s,@INSTALL_SSH_RAND_HELPER@,$INSTALL_SSH_RAND_HELPER,;t t 18618s,@INSTALL_SSH_RAND_HELPER@,$INSTALL_SSH_RAND_HELPER,;t t
@@ -17836,6 +18644,8 @@ s,@MANTYPE@,$MANTYPE,;t t
17836s,@mansubdir@,$mansubdir,;t t 18644s,@mansubdir@,$mansubdir,;t t
17837s,@user_path@,$user_path,;t t 18645s,@user_path@,$user_path,;t t
17838s,@piddir@,$piddir,;t t 18646s,@piddir@,$piddir,;t t
18647s,@LIBOBJS@,$LIBOBJS,;t t
18648s,@LTLIBOBJS@,$LTLIBOBJS,;t t
17839CEOF 18649CEOF
17840 18650
17841_ACEOF 18651_ACEOF
@@ -17906,25 +18716,30 @@ echo X"$ac_file" |
17906 /^X\(\/\/\)$/{ s//\1/; q; } 18716 /^X\(\/\/\)$/{ s//\1/; q; }
17907 /^X\(\/\).*/{ s//\1/; q; } 18717 /^X\(\/\).*/{ s//\1/; q; }
17908 s/.*/./; q'` 18718 s/.*/./; q'`
17909 { case "$ac_dir" in 18719 { if $as_mkdir_p; then
17910 [\\/]* | ?:[\\/]* ) as_incr_dir=;; 18720 mkdir -p "$ac_dir"
17911 *) as_incr_dir=.;; 18721 else
17912esac 18722 as_dir="$ac_dir"
17913as_dummy="$ac_dir" 18723 as_dirs=
17914for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do 18724 while test ! -d "$as_dir"; do
17915 case $as_mkdir_dir in 18725 as_dirs="$as_dir $as_dirs"
17916 # Skip DOS drivespec 18726 as_dir=`(dirname "$as_dir") 2>/dev/null ||
17917 ?:) as_incr_dir=$as_mkdir_dir ;; 18727$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
17918 *) 18728 X"$as_dir" : 'X\(//\)[^/]' \| \
17919 as_incr_dir=$as_incr_dir/$as_mkdir_dir 18729 X"$as_dir" : 'X\(//\)$' \| \
17920 test -d "$as_incr_dir" || 18730 X"$as_dir" : 'X\(/\)' \| \
17921 mkdir "$as_incr_dir" || 18731 . : '\(.\)' 2>/dev/null ||
17922 { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5 18732echo X"$as_dir" |
17923echo "$as_me: error: cannot create \"$ac_dir\"" >&2;} 18733 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
17924 { (exit 1); exit 1; }; } 18734 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
17925 ;; 18735 /^X\(\/\/\)$/{ s//\1/; q; }
17926 esac 18736 /^X\(\/\).*/{ s//\1/; q; }
17927done; } 18737 s/.*/./; q'`
18738 done
18739 test ! -n "$as_dirs" || mkdir $as_dirs
18740 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
18741echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
18742 { (exit 1); exit 1; }; }; }
17928 18743
17929 ac_builddir=. 18744 ac_builddir=.
17930 18745
@@ -17954,7 +18769,7 @@ esac
17954# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be 18769# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
17955# absolute. 18770# absolute.
17956ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` 18771ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
17957ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd` 18772ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
17958ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` 18773ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
17959ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` 18774ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
17960 18775
@@ -18144,7 +18959,7 @@ _ACEOF
18144# Break up conftest.defines because some shells have a limit on the size 18959# Break up conftest.defines because some shells have a limit on the size
18145# of here documents, and old seds have small limits too (100 cmds). 18960# of here documents, and old seds have small limits too (100 cmds).
18146echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS 18961echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
18147echo ' if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS 18962echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
18148echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS 18963echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
18149echo ' :' >>$CONFIG_STATUS 18964echo ' :' >>$CONFIG_STATUS
18150rm -f conftest.tail 18965rm -f conftest.tail
@@ -18168,7 +18983,7 @@ do
18168 mv conftest.tail conftest.defines 18983 mv conftest.tail conftest.defines
18169done 18984done
18170rm -f conftest.defines 18985rm -f conftest.defines
18171echo ' fi # egrep' >>$CONFIG_STATUS 18986echo ' fi # grep' >>$CONFIG_STATUS
18172echo >>$CONFIG_STATUS 18987echo >>$CONFIG_STATUS
18173 18988
18174# Break up conftest.undefs because some shells have a limit on the size 18989# Break up conftest.undefs because some shells have a limit on the size
@@ -18208,7 +19023,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF
18208 cat $tmp/in >>$tmp/config.h 19023 cat $tmp/in >>$tmp/config.h
18209 rm -f $tmp/in 19024 rm -f $tmp/in
18210 if test x"$ac_file" != x-; then 19025 if test x"$ac_file" != x-; then
18211 if cmp -s $ac_file $tmp/config.h 2>/dev/null; then 19026 if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
18212 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 19027 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
18213echo "$as_me: $ac_file is unchanged" >&6;} 19028echo "$as_me: $ac_file is unchanged" >&6;}
18214 else 19029 else
@@ -18224,25 +19039,30 @@ echo X"$ac_file" |
18224 /^X\(\/\/\)$/{ s//\1/; q; } 19039 /^X\(\/\/\)$/{ s//\1/; q; }
18225 /^X\(\/\).*/{ s//\1/; q; } 19040 /^X\(\/\).*/{ s//\1/; q; }
18226 s/.*/./; q'` 19041 s/.*/./; q'`
18227 { case "$ac_dir" in 19042 { if $as_mkdir_p; then
18228 [\\/]* | ?:[\\/]* ) as_incr_dir=;; 19043 mkdir -p "$ac_dir"
18229 *) as_incr_dir=.;; 19044 else
18230esac 19045 as_dir="$ac_dir"
18231as_dummy="$ac_dir" 19046 as_dirs=
18232for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do 19047 while test ! -d "$as_dir"; do
18233 case $as_mkdir_dir in 19048 as_dirs="$as_dir $as_dirs"
18234 # Skip DOS drivespec 19049 as_dir=`(dirname "$as_dir") 2>/dev/null ||
18235 ?:) as_incr_dir=$as_mkdir_dir ;; 19050$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
18236 *) 19051 X"$as_dir" : 'X\(//\)[^/]' \| \
18237 as_incr_dir=$as_incr_dir/$as_mkdir_dir 19052 X"$as_dir" : 'X\(//\)$' \| \
18238 test -d "$as_incr_dir" || 19053 X"$as_dir" : 'X\(/\)' \| \
18239 mkdir "$as_incr_dir" || 19054 . : '\(.\)' 2>/dev/null ||
18240 { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5 19055echo X"$as_dir" |
18241echo "$as_me: error: cannot create \"$ac_dir\"" >&2;} 19056 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
18242 { (exit 1); exit 1; }; } 19057 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
18243 ;; 19058 /^X\(\/\/\)$/{ s//\1/; q; }
18244 esac 19059 /^X\(\/\).*/{ s//\1/; q; }
18245done; } 19060 s/.*/./; q'`
19061 done
19062 test ! -n "$as_dirs" || mkdir $as_dirs
19063 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
19064echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
19065 { (exit 1); exit 1; }; }; }
18246 19066
18247 rm -f $ac_file 19067 rm -f $ac_file
18248 mv $tmp/config.h $ac_file 19068 mv $tmp/config.h $ac_file
@@ -18272,8 +19092,11 @@ ac_clean_files=$ac_clean_files_save
18272# need to make the FD available again. 19092# need to make the FD available again.
18273if test "$no_create" != yes; then 19093if test "$no_create" != yes; then
18274 ac_cs_success=: 19094 ac_cs_success=:
19095 ac_config_status_args=
19096 test "$silent" = yes &&
19097 ac_config_status_args="$ac_config_status_args --quiet"
18275 exec 5>/dev/null 19098 exec 5>/dev/null
18276 $SHELL $CONFIG_STATUS || ac_cs_success=false 19099 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
18277 exec 5>>config.log 19100 exec 5>>config.log
18278 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 19101 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
18279 # would make configure fail if this is the last instruction. 19102 # would make configure fail if this is the last instruction.