You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4924 lines
146 KiB
4924 lines
146 KiB
Index: main.c |
|
--- main.c Sat Jul 8 20:26:46 2000 |
|
+++ main.c Mon Nov 27 08:28:03 2000 |
|
@@ -151,7 +151,7 @@ |
|
} |
|
editproto = lgetenv("LESSEDIT"); |
|
if (editproto == NULL || *editproto == '\0') |
|
- editproto = "%E ?lm+%lm. %f"; |
|
+ editproto = "%E ?lm+%lm. '%f'"; |
|
#endif |
|
|
|
/* |
|
|
|
============================================================================= |
|
|
|
The following patch changes the order in which "less" tries to find |
|
workable terminal libraries. By default it prefers curses and especially |
|
ncurses. That is fine in general, because ncurses is superior in |
|
features and stability to mostly all terminal libraries. Unfortunately, |
|
ncurses _always_ renders on a new blank and second screen and so cannot |
|
be used for "ls -l | less -E -r" or similar commands on an xterm where |
|
the input to display is less than a terminal height (because in this |
|
case the screen will flicker once and then you're back at your shell |
|
prompt without seeing the contents). On the other hand, less does not |
|
need such a sophisticated terminal library, so allow it to prefer |
|
termlib or termcap before the curses variants. As a side-effect we can |
|
remove the ncurses dependency from the package, too. -- rse |
|
|
|
Index: configure.ac |
|
--- configure.ac.orig 2003-01-18 05:55:15.000000000 +0100 |
|
+++ configure.ac 2004-01-09 09:51:56.000000000 +0100 |
|
@@ -49,11 +49,10 @@ |
|
fi |
|
fi |
|
|
|
-if test $curses_broken = 0; then |
|
-# -- Try xcurses. |
|
+# -- Try termlib. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_xcurses = yes; then |
|
- TERMLIBS="-lxcurses" |
|
+ if test $have_termlib = yes; then |
|
+ TERMLIBS="-lcurses -ltermlib" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
AC_TRY_LINK(, [tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);], |
|
@@ -63,10 +62,10 @@ |
|
fi |
|
fi |
|
|
|
-# -- Try ncurses. |
|
+# -- Try termcap. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_ncurses = yes; then |
|
- TERMLIBS="-lncurses" |
|
+ if test $have_termcap = yes; then |
|
+ TERMLIBS="-ltermcap" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
AC_TRY_LINK(, [tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);], |
|
@@ -76,10 +75,12 @@ |
|
fi |
|
fi |
|
|
|
-# -- Try curses. |
|
+if test $curses_broken = 0; then |
|
+# -- Try curses & termcap. |
|
if test "x$TERMLIBS" = x; then |
|
if test $have_curses = yes; then |
|
- TERMLIBS="-lcurses" |
|
+ if test $have_termcap = yes; then |
|
+ TERMLIBS="-lcurses -ltermcap" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
AC_TRY_LINK(, [tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);], |
|
@@ -87,13 +88,13 @@ |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
+ fi |
|
fi |
|
|
|
-# -- Try curses & termcap. |
|
+# -- Try xcurses. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_curses = yes; then |
|
- if test $have_termcap = yes; then |
|
- TERMLIBS="-lcurses -ltermcap" |
|
+ if test $have_xcurses = yes; then |
|
+ TERMLIBS="-lxcurses" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
AC_TRY_LINK(, [tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);], |
|
@@ -101,14 +102,12 @@ |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
- fi |
|
-fi |
|
fi |
|
|
|
-# -- Try termcap. |
|
+# -- Try ncurses. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_termcap = yes; then |
|
- TERMLIBS="-ltermcap" |
|
+ if test $have_ncurses = yes; then |
|
+ TERMLIBS="-lncurses" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
AC_TRY_LINK(, [tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);], |
|
@@ -118,10 +117,10 @@ |
|
fi |
|
fi |
|
|
|
-# -- Try termlib. |
|
+# -- Try curses. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_termlib = yes; then |
|
- TERMLIBS="-lcurses -ltermlib" |
|
+ if test $have_curses = yes; then |
|
+ TERMLIBS="-lcurses" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
AC_TRY_LINK(, [tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);], |
|
@@ -130,6 +129,7 @@ |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
fi |
|
+fi |
|
|
|
if test "x$TERMLIBS" = x; then |
|
AC_MSG_RESULT(Cannot find terminal libraries - configure failed) |
|
Index: configure |
|
--- configure.orig 2003-01-18 05:56:49.000000000 +0100 |
|
+++ configure 2004-01-09 09:52:18.000000000 +0100 |
|
@@ -1,9 +1,8 @@ |
|
#! /bin/sh |
|
# Guess values for system-dependent variables and create Makefiles. |
|
-# Generated by GNU Autoconf 2.54 for less 1. |
|
+# Generated by GNU Autoconf 2.59 (OpenPKG-CURRENT) for less 1. |
|
# |
|
-# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 |
|
-# Free Software Foundation, Inc. |
|
+# Copyright (C) 2003 Free Software Foundation, Inc. |
|
# This configure script is free software; the Free Software Foundation |
|
# gives unlimited permission to copy, distribute and modify it. |
|
## --------------------- ## |
|
@@ -20,9 +19,10 @@ |
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then |
|
set -o posix |
|
fi |
|
+DUALCASE=1; export DUALCASE # for MKS sh |
|
|
|
# Support unset when possible. |
|
-if (FOO=FOO; unset FOO) >/dev/null 2>&1; then |
|
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then |
|
as_unset=unset |
|
else |
|
as_unset=false |
|
@@ -36,9 +36,12 @@ |
|
PS4='+ ' |
|
|
|
# NLS nuisances. |
|
-for as_var in LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE LC_NUMERIC LC_MESSAGES LC_TIME |
|
+for as_var in \ |
|
+ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ |
|
+ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ |
|
+ LC_TELEPHONE LC_TIME |
|
do |
|
- if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then |
|
+ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then |
|
eval $as_var=C; export $as_var |
|
else |
|
$as_unset $as_var |
|
@@ -82,15 +85,15 @@ |
|
|
|
# The user is always right. |
|
if test "${PATH_SEPARATOR+set}" != set; then |
|
- echo "#! /bin/sh" >conftest.sh |
|
- echo "exit 0" >>conftest.sh |
|
- chmod +x conftest.sh |
|
- if (PATH="/nonexistent;."; conftest.sh) >/dev/null 2>&1; then |
|
+ echo "#! /bin/sh" >conf$$.sh |
|
+ echo "exit 0" >>conf$$.sh |
|
+ chmod +x conf$$.sh |
|
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then |
|
PATH_SEPARATOR=';' |
|
else |
|
PATH_SEPARATOR=: |
|
fi |
|
- rm -f conftest.sh |
|
+ rm -f conf$$.sh |
|
fi |
|
|
|
|
|
@@ -215,16 +218,17 @@ |
|
if mkdir -p . 2>/dev/null; then |
|
as_mkdir_p=: |
|
else |
|
+ test -d ./-p && rmdir ./-p |
|
as_mkdir_p=false |
|
fi |
|
|
|
as_executable_p="test -f" |
|
|
|
# Sed expression to map a string onto a valid CPP name. |
|
-as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" |
|
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" |
|
|
|
# Sed expression to map a string onto a valid variable name. |
|
-as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g" |
|
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" |
|
|
|
|
|
# IFS |
|
@@ -664,7 +668,7 @@ |
|
|
|
# Be sure to have absolute paths. |
|
for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ |
|
- localstatedir libdir includedir oldincludedir infodir mandir |
|
+ localstatedir libdir includedir oldincludedir infodir mandir |
|
do |
|
eval ac_val=$`echo $ac_var` |
|
case $ac_val in |
|
@@ -704,10 +708,10 @@ |
|
# Try the directory containing this script, then its parent. |
|
ac_confdir=`(dirname "$0") 2>/dev/null || |
|
$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
|
- X"$0" : 'X\(//\)[^/]' \| \ |
|
- X"$0" : 'X\(//\)$' \| \ |
|
- X"$0" : 'X\(/\)' \| \ |
|
- . : '\(.\)' 2>/dev/null || |
|
+ X"$0" : 'X\(//\)[^/]' \| \ |
|
+ X"$0" : 'X\(//\)$' \| \ |
|
+ X"$0" : 'X\(/\)' \| \ |
|
+ . : '\(.\)' 2>/dev/null || |
|
echo X"$0" | |
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } |
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; } |
|
@@ -799,9 +803,9 @@ |
|
cat <<_ACEOF |
|
Installation directories: |
|
--prefix=PREFIX install architecture-independent files in PREFIX |
|
- [$ac_default_prefix] |
|
+ [$ac_default_prefix] |
|
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX |
|
- [PREFIX] |
|
+ [PREFIX] |
|
|
|
By default, \`make install' will install all the files in |
|
\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify |
|
@@ -891,12 +895,45 @@ |
|
ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix |
|
ac_top_srcdir=$ac_top_builddir$srcdir ;; |
|
esac |
|
-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be |
|
-# absolute. |
|
-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` |
|
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd` |
|
-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` |
|
-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` |
|
+ |
|
+# Do not use `cd foo && pwd` to compute absolute paths, because |
|
+# the directories may not exist. |
|
+case `pwd` in |
|
+.) ac_abs_builddir="$ac_dir";; |
|
+*) |
|
+ case "$ac_dir" in |
|
+ .) ac_abs_builddir=`pwd`;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; |
|
+ *) ac_abs_builddir=`pwd`/"$ac_dir";; |
|
+ esac;; |
|
+esac |
|
+case $ac_abs_builddir in |
|
+.) ac_abs_top_builddir=${ac_top_builddir}.;; |
|
+*) |
|
+ case ${ac_top_builddir}. in |
|
+ .) ac_abs_top_builddir=$ac_abs_builddir;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; |
|
+ *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; |
|
+ esac;; |
|
+esac |
|
+case $ac_abs_builddir in |
|
+.) ac_abs_srcdir=$ac_srcdir;; |
|
+*) |
|
+ case $ac_srcdir in |
|
+ .) ac_abs_srcdir=$ac_abs_builddir;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; |
|
+ *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; |
|
+ esac;; |
|
+esac |
|
+case $ac_abs_builddir in |
|
+.) ac_abs_top_srcdir=$ac_top_srcdir;; |
|
+*) |
|
+ case $ac_top_srcdir in |
|
+ .) ac_abs_top_srcdir=$ac_abs_builddir;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; |
|
+ *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; |
|
+ esac;; |
|
+esac |
|
|
|
cd $ac_dir |
|
# Check for guested configure; otherwise get Cygnus style configure. |
|
@@ -907,7 +944,7 @@ |
|
echo |
|
$SHELL $ac_srcdir/configure --help=recursive |
|
elif test -f $ac_srcdir/configure.ac || |
|
- test -f $ac_srcdir/configure.in; then |
|
+ test -f $ac_srcdir/configure.in; then |
|
echo |
|
$ac_configure --help |
|
else |
|
@@ -921,10 +958,9 @@ |
|
if $ac_init_version; then |
|
cat <<\_ACEOF |
|
less configure 1 |
|
-generated by GNU Autoconf 2.54 |
|
+generated by GNU Autoconf 2.59 (OpenPKG-CURRENT) |
|
|
|
-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 |
|
-Free Software Foundation, Inc. |
|
+Copyright (C) 2003 Free Software Foundation, Inc. |
|
This configure script is free software; the Free Software Foundation |
|
gives unlimited permission to copy, distribute and modify it. |
|
_ACEOF |
|
@@ -936,7 +972,7 @@ |
|
running configure, to aid debugging if configure makes a mistake. |
|
|
|
It was created by less $as_me 1, which was |
|
-generated by GNU Autoconf 2.54. Invocation command line was |
|
+generated by GNU Autoconf 2.59 (OpenPKG-CURRENT). Invocation command line was |
|
|
|
$ $0 $@ |
|
|
|
@@ -988,24 +1024,54 @@ |
|
|
|
# Keep a trace of the command line. |
|
# Strip out --no-create and --no-recursion so they do not pile up. |
|
+# Strip out --silent because we don't want to record it for future runs. |
|
# Also quote any args containing shell meta-characters. |
|
+# Make two passes to allow for proper duplicate-argument suppression. |
|
ac_configure_args= |
|
+ac_configure_args0= |
|
+ac_configure_args1= |
|
ac_sep= |
|
-for ac_arg |
|
+ac_must_keep_next=false |
|
+for ac_pass in 1 2 |
|
do |
|
- case $ac_arg in |
|
- -no-create | --no-create | --no-creat | --no-crea | --no-cre \ |
|
- | --no-cr | --no-c | -n ) continue ;; |
|
- -no-recursion | --no-recursion | --no-recursio | --no-recursi \ |
|
- | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) |
|
- continue ;; |
|
- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) |
|
- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; |
|
- esac |
|
- ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" |
|
- # Get rid of the leading space. |
|
- ac_sep=" " |
|
+ for ac_arg |
|
+ do |
|
+ case $ac_arg in |
|
+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; |
|
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ |
|
+ | -silent | --silent | --silen | --sile | --sil) |
|
+ continue ;; |
|
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) |
|
+ ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; |
|
+ esac |
|
+ case $ac_pass in |
|
+ 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; |
|
+ 2) |
|
+ ac_configure_args1="$ac_configure_args1 '$ac_arg'" |
|
+ if test $ac_must_keep_next = true; then |
|
+ ac_must_keep_next=false # Got value, back to normal. |
|
+ else |
|
+ case $ac_arg in |
|
+ *=* | --config-cache | -C | -disable-* | --disable-* \ |
|
+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ |
|
+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ |
|
+ | -with-* | --with-* | -without-* | --without-* | --x) |
|
+ case "$ac_configure_args0 " in |
|
+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; |
|
+ esac |
|
+ ;; |
|
+ -* ) ac_must_keep_next=true ;; |
|
+ esac |
|
+ fi |
|
+ ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" |
|
+ # Get rid of the leading space. |
|
+ ac_sep=" " |
|
+ ;; |
|
+ esac |
|
+ done |
|
done |
|
+$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } |
|
+$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } |
|
|
|
# When interrupted or exit'd, cleanup temporary files, and complete |
|
# config.log. We remove comments because anyway the quotes in there |
|
@@ -1029,12 +1095,12 @@ |
|
case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in |
|
*ac_space=\ *) |
|
sed -n \ |
|
- "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; |
|
- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" |
|
+ "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; |
|
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" |
|
;; |
|
*) |
|
sed -n \ |
|
- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" |
|
+ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" |
|
;; |
|
esac; |
|
} |
|
@@ -1063,7 +1129,7 @@ |
|
for ac_var in $ac_subst_files |
|
do |
|
eval ac_val=$`echo $ac_var` |
|
- echo "$ac_var='"'"'$ac_val'"'"'" |
|
+ echo "$ac_var='"'"'$ac_val'"'"'" |
|
done | sort |
|
echo |
|
fi |
|
@@ -1082,7 +1148,7 @@ |
|
echo "$as_me: caught signal $ac_signal" |
|
echo "$as_me: exit $exit_status" |
|
} >&5 |
|
- rm -f core core.* *.core && |
|
+ rm -f core *.core && |
|
rm -rf conftest* confdefs* conf$$* $ac_clean_files && |
|
exit $exit_status |
|
' 0 |
|
@@ -1162,7 +1228,7 @@ |
|
# value. |
|
ac_cache_corrupted=false |
|
for ac_var in `(set) 2>&1 | |
|
- sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do |
|
+ sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do |
|
eval ac_old_set=\$ac_cv_env_${ac_var}_set |
|
eval ac_new_set=\$ac_env_${ac_var}_set |
|
eval ac_old_val="\$ac_cv_env_${ac_var}_value" |
|
@@ -1179,13 +1245,13 @@ |
|
,);; |
|
*) |
|
if test "x$ac_old_val" != "x$ac_new_val"; then |
|
- { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 |
|
+ { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 |
|
echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} |
|
- { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 |
|
+ { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 |
|
echo "$as_me: former value: $ac_old_val" >&2;} |
|
- { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 |
|
+ { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 |
|
echo "$as_me: current value: $ac_new_val" >&2;} |
|
- ac_cache_corrupted=: |
|
+ ac_cache_corrupted=: |
|
fi;; |
|
esac |
|
# Pass precious variables to config.status. |
|
@@ -1555,8 +1621,10 @@ |
|
fi |
|
|
|
|
|
-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH" >&5 |
|
-echo "$as_me: error: no acceptable C compiler found in \$PATH" >&2;} |
|
+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH |
|
+See \`config.log' for more details." >&5 |
|
+echo "$as_me: error: no acceptable C compiler found in \$PATH |
|
+See \`config.log' for more details." >&2;} |
|
{ (exit 1); exit 1; }; } |
|
|
|
# Provide some information about the compiler. |
|
@@ -1580,8 +1648,11 @@ |
|
(exit $ac_status); } |
|
|
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -1592,12 +1663,12 @@ |
|
} |
|
_ACEOF |
|
ac_clean_files_save=$ac_clean_files |
|
-ac_clean_files="$ac_clean_files a.out a.exe" |
|
+ac_clean_files="$ac_clean_files a.out a.exe b.out" |
|
# Try to create an executable without -o first, disregard a.out. |
|
# It will help us diagnose broken compilers, and finding out an intuition |
|
# of exeext. |
|
-echo "$as_me:$LINENO: checking for C compiler default output" >&5 |
|
-echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 |
|
+echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 |
|
+echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 |
|
ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 |
|
(eval $ac_link_default) 2>&5 |
|
@@ -1611,27 +1682,39 @@ |
|
# Be careful to initialize this variable, since it used to be cached. |
|
# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. |
|
ac_cv_exeext= |
|
-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.*; do |
|
+# b.out is created by i960 compilers. |
|
+for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out |
|
+do |
|
test -f "$ac_file" || continue |
|
case $ac_file in |
|
- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; |
|
- a.out ) # We found the default executable, but exeext='' is most |
|
- # certainly right. |
|
- break;; |
|
- *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` |
|
- # FIXME: I believe we export ac_cv_exeext for Libtool --akim. |
|
- export ac_cv_exeext |
|
- break;; |
|
- * ) break;; |
|
+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) |
|
+ ;; |
|
+ conftest.$ac_ext ) |
|
+ # This is the source file. |
|
+ ;; |
|
+ [ab].out ) |
|
+ # We found the default executable, but exeext='' is most |
|
+ # certainly right. |
|
+ break;; |
|
+ *.* ) |
|
+ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` |
|
+ # FIXME: I believe we export ac_cv_exeext for Libtool, |
|
+ # but it would be cool to find out if it's true. Does anybody |
|
+ # maintain Libtool? --akim. |
|
+ export ac_cv_exeext |
|
+ break;; |
|
+ * ) |
|
+ break;; |
|
esac |
|
done |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
{ { echo "$as_me:$LINENO: error: C compiler cannot create executables |
|
-check \`config.log' for details." >&5 |
|
+See \`config.log' for more details." >&5 |
|
echo "$as_me: error: C compiler cannot create executables |
|
-check \`config.log' for details." >&2;} |
|
+See \`config.log' for more details." >&2;} |
|
{ (exit 77); exit 77; }; } |
|
fi |
|
|
|
@@ -1658,9 +1741,11 @@ |
|
cross_compiling=yes |
|
else |
|
{ { echo "$as_me:$LINENO: error: cannot run C compiled programs. |
|
-If you meant to cross compile, use \`--host'." >&5 |
|
+If you meant to cross compile, use \`--host'. |
|
+See \`config.log' for more details." >&5 |
|
echo "$as_me: error: cannot run C compiled programs. |
|
-If you meant to cross compile, use \`--host'." >&2;} |
|
+If you meant to cross compile, use \`--host'. |
|
+See \`config.log' for more details." >&2;} |
|
{ (exit 1); exit 1; }; } |
|
fi |
|
fi |
|
@@ -1668,7 +1753,7 @@ |
|
echo "$as_me:$LINENO: result: yes" >&5 |
|
echo "${ECHO_T}yes" >&6 |
|
|
|
-rm -f a.out a.exe conftest$ac_cv_exeext |
|
+rm -f a.out a.exe conftest$ac_cv_exeext b.out |
|
ac_clean_files=$ac_clean_files_save |
|
# Check the compiler produces executables we can run. If not, either |
|
# the compiler is broken, or we cross compile. |
|
@@ -1693,14 +1778,16 @@ |
|
case $ac_file in |
|
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; |
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` |
|
- export ac_cv_exeext |
|
- break;; |
|
+ export ac_cv_exeext |
|
+ break;; |
|
* ) break;; |
|
esac |
|
done |
|
else |
|
- { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link" >&5 |
|
-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link" >&2;} |
|
+ { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link |
|
+See \`config.log' for more details." >&5 |
|
+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link |
|
+See \`config.log' for more details." >&2;} |
|
{ (exit 1); exit 1; }; } |
|
fi |
|
|
|
@@ -1717,8 +1804,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -1743,9 +1833,12 @@ |
|
done |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile" >&5 |
|
-echo "$as_me: error: cannot compute suffix of object files: cannot compile" >&2;} |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile |
|
+See \`config.log' for more details." >&5 |
|
+echo "$as_me: error: cannot compute suffix of object files: cannot compile |
|
+See \`config.log' for more details." >&2;} |
|
{ (exit 1); exit 1; }; } |
|
fi |
|
|
|
@@ -1761,8 +1854,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -1777,11 +1873,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -1790,10 +1896,11 @@ |
|
ac_compiler_gnu=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_compiler_gnu=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
ac_cv_c_compiler_gnu=$ac_compiler_gnu |
|
|
|
fi |
|
@@ -1809,8 +1916,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -1822,11 +1932,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -1835,10 +1955,11 @@ |
|
ac_cv_prog_cc_g=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_prog_cc_g=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 |
|
echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 |
|
@@ -1865,8 +1986,11 @@ |
|
ac_cv_prog_cc_stdc=no |
|
ac_save_CC=$CC |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <stdarg.h> |
|
#include <stdio.h> |
|
#include <sys/types.h> |
|
@@ -1889,6 +2013,16 @@ |
|
va_end (v); |
|
return s; |
|
} |
|
+ |
|
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has |
|
+ function prototypes and stuff, but not '\xHH' hex character constants. |
|
+ These don't provoke an error unfortunately, instead are silently treated |
|
+ as 'x'. The following induces an error, until -std1 is added to get |
|
+ proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an |
|
+ array size at least. It's necessary to write '\x00'==0 to get something |
|
+ that's true only with -std1. */ |
|
+int osf4_cc_array ['\x00' == 0 ? 1 : -1]; |
|
+ |
|
int test (int i, double x); |
|
struct s1 {int (*f) (int a);}; |
|
struct s2 {int (*f) (double a);}; |
|
@@ -1915,11 +2049,21 @@ |
|
CC="$ac_save_CC $ac_arg" |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -1929,9 +2073,10 @@ |
|
break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext |
|
+rm -f conftest.err conftest.$ac_objext |
|
done |
|
rm -f conftest.$ac_ext conftest.$ac_objext |
|
CC=$ac_save_CC |
|
@@ -1959,19 +2104,28 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); }; }; then |
|
for ac_declaration in \ |
|
- ''\ |
|
- '#include <stdlib.h>' \ |
|
+ '' \ |
|
'extern "C" void std::exit (int) throw (); using std::exit;' \ |
|
'extern "C" void std::exit (int); using std::exit;' \ |
|
'extern "C" void exit (int) throw ();' \ |
|
@@ -1979,10 +2133,13 @@ |
|
'void exit (int);' |
|
do |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
-#include <stdlib.h> |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_declaration |
|
+#include <stdlib.h> |
|
int |
|
main () |
|
{ |
|
@@ -1993,11 +2150,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2006,13 +2173,17 @@ |
|
: |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
continue |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_declaration |
|
int |
|
main () |
|
@@ -2024,11 +2195,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2037,9 +2218,10 @@ |
|
break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
done |
|
rm -f conftest* |
|
if test -n "$ac_declaration"; then |
|
@@ -2050,9 +2232,10 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
ac_ext=c |
|
ac_cpp='$CPP $CPPFLAGS' |
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
|
@@ -2068,8 +2251,11 @@ |
|
ac_func_search_save_LIBS=$LIBS |
|
ac_cv_search_strerror=no |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -2088,11 +2274,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2101,15 +2297,20 @@ |
|
ac_cv_search_strerror="none required" |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
if test "$ac_cv_search_strerror" = no; then |
|
for ac_lib in cposix; do |
|
LIBS="-l$ac_lib $ac_func_search_save_LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -2128,11 +2329,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2142,9 +2353,11 @@ |
|
break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
done |
|
fi |
|
LIBS=$ac_func_search_save_LIBS |
|
@@ -2179,13 +2392,22 @@ |
|
do |
|
# Use a header file that comes with gcc, so configuring glibc |
|
# with a fresh cross-compiler works. |
|
+ # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|
+ # <limits.h> exists even on freestanding compilers. |
|
# On the NeXT, cc -E runs the code through the compiler's parser, |
|
# not just through cpp. "Syntax error" is here to catch this case. |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
-#include <assert.h> |
|
- Syntax error |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
+#ifdef __STDC__ |
|
+# include <limits.h> |
|
+#else |
|
+# include <assert.h> |
|
+#endif |
|
+ Syntax error |
|
_ACEOF |
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 |
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 |
|
@@ -2197,6 +2419,7 @@ |
|
(exit $ac_status); } >/dev/null; then |
|
if test -s conftest.err; then |
|
ac_cpp_err=$ac_c_preproc_warn_flag |
|
+ ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
|
else |
|
ac_cpp_err= |
|
fi |
|
@@ -2207,7 +2430,8 @@ |
|
: |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
- cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
# Broken: fails on valid input. |
|
continue |
|
fi |
|
@@ -2216,8 +2440,11 @@ |
|
# OK, works on sane cases. Now check whether non-existent headers |
|
# can be detected and how. |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <ac_nonexistent.h> |
|
_ACEOF |
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 |
|
@@ -2230,6 +2457,7 @@ |
|
(exit $ac_status); } >/dev/null; then |
|
if test -s conftest.err; then |
|
ac_cpp_err=$ac_c_preproc_warn_flag |
|
+ ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
|
else |
|
ac_cpp_err= |
|
fi |
|
@@ -2241,7 +2469,8 @@ |
|
continue |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
- cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
# Passes both tests. |
|
ac_preproc_ok=: |
|
break |
|
@@ -2270,13 +2499,22 @@ |
|
do |
|
# Use a header file that comes with gcc, so configuring glibc |
|
# with a fresh cross-compiler works. |
|
+ # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|
+ # <limits.h> exists even on freestanding compilers. |
|
# On the NeXT, cc -E runs the code through the compiler's parser, |
|
# not just through cpp. "Syntax error" is here to catch this case. |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
-#include <assert.h> |
|
- Syntax error |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
+#ifdef __STDC__ |
|
+# include <limits.h> |
|
+#else |
|
+# include <assert.h> |
|
+#endif |
|
+ Syntax error |
|
_ACEOF |
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 |
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 |
|
@@ -2288,6 +2526,7 @@ |
|
(exit $ac_status); } >/dev/null; then |
|
if test -s conftest.err; then |
|
ac_cpp_err=$ac_c_preproc_warn_flag |
|
+ ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
|
else |
|
ac_cpp_err= |
|
fi |
|
@@ -2298,7 +2537,8 @@ |
|
: |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
- cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
# Broken: fails on valid input. |
|
continue |
|
fi |
|
@@ -2307,8 +2547,11 @@ |
|
# OK, works on sane cases. Now check whether non-existent headers |
|
# can be detected and how. |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <ac_nonexistent.h> |
|
_ACEOF |
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 |
|
@@ -2321,6 +2564,7 @@ |
|
(exit $ac_status); } >/dev/null; then |
|
if test -s conftest.err; then |
|
ac_cpp_err=$ac_c_preproc_warn_flag |
|
+ ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
|
else |
|
ac_cpp_err= |
|
fi |
|
@@ -2332,7 +2576,8 @@ |
|
continue |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
- cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
# Passes both tests. |
|
ac_preproc_ok=: |
|
break |
|
@@ -2345,8 +2590,10 @@ |
|
if $ac_preproc_ok; then |
|
: |
|
else |
|
- { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check" >&5 |
|
-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} |
|
+ { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check |
|
+See \`config.log' for more details." >&5 |
|
+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check |
|
+See \`config.log' for more details." >&2;} |
|
{ (exit 1); exit 1; }; } |
|
fi |
|
|
|
@@ -2380,8 +2627,11 @@ |
|
else |
|
ac_pattern="Autoconf.*'x'" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sgtty.h> |
|
Autoconf TIOCGETP |
|
_ACEOF |
|
@@ -2396,8 +2646,11 @@ |
|
|
|
if test $ac_cv_prog_gcc_traditional = no; then |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <termio.h> |
|
Autoconf TCGETA |
|
_ACEOF |
|
@@ -2452,6 +2705,7 @@ |
|
# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag |
|
# AFS /usr/afsws/bin/install, which mishandles nonexistent args |
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" |
|
+# OS/2's system install, which has a completely different semantic |
|
# ./install, which can be erroneously created by make from ./install.sh. |
|
echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 |
|
echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 |
|
@@ -2468,6 +2722,7 @@ |
|
case $as_dir/ in |
|
./ | .// | /cC/* | \ |
|
/etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ |
|
+ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ |
|
/usr/ucb/* ) ;; |
|
*) |
|
# OSF1 and SCO ODT 3.0 have their own names for install. |
|
@@ -2475,20 +2730,20 @@ |
|
# by default. |
|
for ac_prog in ginstall scoinst install; do |
|
for ac_exec_ext in '' $ac_executable_extensions; do |
|
- if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then |
|
- if test $ac_prog = install && |
|
- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then |
|
- # AIX install. It has an incompatible calling convention. |
|
- : |
|
- elif test $ac_prog = install && |
|
- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then |
|
- # program-specific install script used by HP pwplus--don't use. |
|
- : |
|
- else |
|
- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" |
|
- break 3 |
|
- fi |
|
- fi |
|
+ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then |
|
+ if test $ac_prog = install && |
|
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then |
|
+ # AIX install. It has an incompatible calling convention. |
|
+ : |
|
+ elif test $ac_prog = install && |
|
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then |
|
+ # program-specific install script used by HP pwplus--don't use. |
|
+ : |
|
+ else |
|
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" |
|
+ break 3 |
|
+ fi |
|
+ fi |
|
done |
|
done |
|
;; |
|
@@ -2538,9 +2793,12 @@ |
|
while :; do |
|
# IRIX 6.2 and later do not support large files by default, |
|
# so use the C compiler's -n32 option if that helps. |
|
- cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+ cat >conftest.$ac_ext <<_ACEOF |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sys/types.h> |
|
/* Check that off_t can represent 2**63 - 1 correctly. |
|
We can't simply define LARGE_OFF_T to be 9223372036854775807, |
|
@@ -2560,11 +2818,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2573,17 +2841,28 @@ |
|
break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext |
|
+rm -f conftest.err conftest.$ac_objext |
|
CC="$CC -n32" |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2592,10 +2871,11 @@ |
|
ac_cv_sys_largefile_CC=' -n32'; break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext |
|
- break |
|
+rm -f conftest.err conftest.$ac_objext |
|
+ break |
|
done |
|
CC=$ac_save_CC |
|
rm -f conftest.$ac_ext |
|
@@ -2615,8 +2895,11 @@ |
|
while :; do |
|
ac_cv_sys_file_offset_bits=no |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sys/types.h> |
|
/* Check that off_t can represent 2**63 - 1 correctly. |
|
We can't simply define LARGE_OFF_T to be 9223372036854775807, |
|
@@ -2636,11 +2919,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2649,12 +2942,16 @@ |
|
break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#define _FILE_OFFSET_BITS 64 |
|
#include <sys/types.h> |
|
/* Check that off_t can represent 2**63 - 1 correctly. |
|
@@ -2675,11 +2972,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2688,9 +2995,10 @@ |
|
ac_cv_sys_file_offset_bits=64; break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
break |
|
done |
|
fi |
|
@@ -2712,8 +3020,11 @@ |
|
while :; do |
|
ac_cv_sys_large_files=no |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sys/types.h> |
|
/* Check that off_t can represent 2**63 - 1 correctly. |
|
We can't simply define LARGE_OFF_T to be 9223372036854775807, |
|
@@ -2733,11 +3044,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2746,12 +3067,16 @@ |
|
break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#define _LARGE_FILES 1 |
|
#include <sys/types.h> |
|
/* Check that off_t can represent 2**63 - 1 correctly. |
|
@@ -2772,11 +3097,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2785,9 +3120,10 @@ |
|
ac_cv_sys_large_files=1; break |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
break |
|
done |
|
fi |
|
@@ -2813,8 +3149,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lxcurses $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -2833,11 +3172,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2846,10 +3195,12 @@ |
|
ac_cv_lib_xcurses_initscr=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_xcurses_initscr=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_xcurses_initscr" >&5 |
|
@@ -2868,8 +3219,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lncurses $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -2888,11 +3242,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2901,10 +3265,12 @@ |
|
ac_cv_lib_ncurses_initscr=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_ncurses_initscr=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_initscr" >&5 |
|
@@ -2923,8 +3289,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lcurses $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -2943,11 +3312,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -2956,10 +3335,12 @@ |
|
ac_cv_lib_curses_initscr=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_curses_initscr=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_curses_initscr" >&5 |
|
@@ -2978,8 +3359,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-ltermcap $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -2998,11 +3382,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3011,10 +3405,12 @@ |
|
ac_cv_lib_termcap_tgetent=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_termcap_tgetent=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_tgetent" >&5 |
|
@@ -3033,8 +3429,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-ltermlib $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -3053,11 +3452,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3066,10 +3475,12 @@ |
|
ac_cv_lib_termlib_tgetent=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_termlib_tgetent=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_termlib_tgetent" >&5 |
|
@@ -3091,8 +3502,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lgen $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -3111,11 +3525,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3124,10 +3548,12 @@ |
|
ac_cv_lib_gen_regcmp=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_gen_regcmp=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_gen_regcmp" >&5 |
|
@@ -3150,8 +3576,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lintl $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -3170,11 +3599,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3183,10 +3622,12 @@ |
|
ac_cv_lib_intl_regcmp=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_intl_regcmp=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_intl_regcmp" >&5 |
|
@@ -3209,8 +3650,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lPW $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -3229,11 +3673,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3242,10 +3696,12 @@ |
|
ac_cv_lib_PW_regcmp=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_PW_regcmp=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_PW_regcmp" >&5 |
|
@@ -3276,16 +3732,18 @@ |
|
fi |
|
fi |
|
|
|
-if test $curses_broken = 0; then |
|
-# -- Try xcurses. |
|
+# -- Try termlib. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_xcurses = yes; then |
|
- TERMLIBS="-lxcurses" |
|
+ if test $have_termlib = yes; then |
|
+ TERMLIBS="-lcurses -ltermlib" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3297,11 +3755,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3310,24 +3778,29 @@ |
|
termok=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
termok=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
fi |
|
|
|
-# -- Try ncurses. |
|
+# -- Try termcap. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_ncurses = yes; then |
|
- TERMLIBS="-lncurses" |
|
+ if test $have_termcap = yes; then |
|
+ TERMLIBS="-ltermcap" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3339,11 +3812,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3352,24 +3835,31 @@ |
|
termok=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
termok=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
fi |
|
|
|
-# -- Try curses. |
|
+if test $curses_broken = 0; then |
|
+# -- Try curses & termcap. |
|
if test "x$TERMLIBS" = x; then |
|
if test $have_curses = yes; then |
|
- TERMLIBS="-lcurses" |
|
+ if test $have_termcap = yes; then |
|
+ TERMLIBS="-lcurses -ltermcap" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3381,11 +3871,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3394,25 +3894,30 @@ |
|
termok=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
termok=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
+ fi |
|
fi |
|
|
|
-# -- Try curses & termcap. |
|
+# -- Try xcurses. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_curses = yes; then |
|
- if test $have_termcap = yes; then |
|
- TERMLIBS="-lcurses -ltermcap" |
|
+ if test $have_xcurses = yes; then |
|
+ TERMLIBS="-lxcurses" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3424,11 +3929,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3437,26 +3952,29 @@ |
|
termok=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
termok=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
- fi |
|
-fi |
|
fi |
|
|
|
-# -- Try termcap. |
|
+# -- Try ncurses. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_termcap = yes; then |
|
- TERMLIBS="-ltermcap" |
|
+ if test $have_ncurses = yes; then |
|
+ TERMLIBS="-lncurses" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3468,11 +3986,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3481,24 +4009,29 @@ |
|
termok=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
termok=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
fi |
|
|
|
-# -- Try termlib. |
|
+# -- Try curses. |
|
if test "x$TERMLIBS" = x; then |
|
- if test $have_termlib = yes; then |
|
- TERMLIBS="-lcurses -ltermlib" |
|
+ if test $have_curses = yes; then |
|
+ TERMLIBS="-lcurses" |
|
SAVE_LIBS=$LIBS |
|
LIBS="$LIBS $TERMLIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3510,11 +4043,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3523,14 +4066,17 @@ |
|
termok=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
termok=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$SAVE_LIBS |
|
if test $termok = no; then TERMLIBS=""; fi |
|
fi |
|
fi |
|
+fi |
|
|
|
if test "x$TERMLIBS" = x; then |
|
echo "$as_me:$LINENO: result: Cannot find terminal libraries - configure failed" >&5 |
|
@@ -3548,44 +4094,63 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <stdlib.h> |
|
#include <stdarg.h> |
|
#include <string.h> |
|
#include <float.h> |
|
|
|
+int |
|
+main () |
|
+{ |
|
+ |
|
+ ; |
|
+ return 0; |
|
+} |
|
_ACEOF |
|
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 |
|
- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 |
|
+rm -f conftest.$ac_objext |
|
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
grep -v '^ *+' conftest.er1 >conftest.err |
|
rm -f conftest.er1 |
|
cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
- (exit $ac_status); } >/dev/null; then |
|
- if test -s conftest.err; then |
|
- ac_cpp_err=$ac_c_preproc_warn_flag |
|
- else |
|
- ac_cpp_err= |
|
- fi |
|
-else |
|
- ac_cpp_err=yes |
|
-fi |
|
-if test -z "$ac_cpp_err"; then |
|
+ (exit $ac_status); } && |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; }; then |
|
ac_cv_header_stdc=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
- cat conftest.$ac_ext >&5 |
|
- ac_cv_header_stdc=no |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
+ac_cv_header_stdc=no |
|
fi |
|
-rm -f conftest.err conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
|
|
if test $ac_cv_header_stdc = yes; then |
|
# SunOS 4.x string.h does not declare mem*, contrary to ANSI. |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <string.h> |
|
|
|
_ACEOF |
|
@@ -3602,8 +4167,11 @@ |
|
if test $ac_cv_header_stdc = yes; then |
|
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <stdlib.h> |
|
|
|
_ACEOF |
|
@@ -3623,16 +4191,20 @@ |
|
: |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <ctype.h> |
|
#if ((' ' & 0x0FF) == 0x020) |
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') |
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) |
|
#else |
|
-# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \ |
|
- || ('j' <= (c) && (c) <= 'r') \ |
|
- || ('s' <= (c) && (c) <= 'z')) |
|
+# define ISLOWER(c) \ |
|
+ (('a' <= (c) && (c) <= 'i') \ |
|
+ || ('j' <= (c) && (c) <= 'r') \ |
|
+ || ('s' <= (c) && (c) <= 'z')) |
|
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) |
|
#endif |
|
|
|
@@ -3643,7 +4215,7 @@ |
|
int i; |
|
for (i = 0; i < 256; i++) |
|
if (XOR (islower (i), ISLOWER (i)) |
|
- || toupper (i) != TOUPPER (i)) |
|
+ || toupper (i) != TOUPPER (i)) |
|
exit(2); |
|
exit (0); |
|
} |
|
@@ -3663,11 +4235,12 @@ |
|
else |
|
echo "$as_me: program exited with status $ac_status" >&5 |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
( exit $ac_status ) |
|
ac_cv_header_stdc=no |
|
fi |
|
-rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
|
+rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
fi |
|
fi |
|
@@ -3692,7 +4265,7 @@ |
|
|
|
|
|
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ |
|
- inttypes.h stdint.h unistd.h |
|
+ inttypes.h stdint.h unistd.h |
|
do |
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
|
echo "$as_me:$LINENO: checking for $ac_header" >&5 |
|
@@ -3701,19 +4274,32 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_includes_default |
|
|
|
#include <$ac_header> |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3722,10 +4308,11 @@ |
|
eval "$as_ac_Header=yes" |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
eval "$as_ac_Header=no" |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 |
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 |
|
@@ -3771,18 +4358,31 @@ |
|
echo "$as_me:$LINENO: checking $ac_header usability" >&5 |
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_includes_default |
|
#include <$ac_header> |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -3791,10 +4391,11 @@ |
|
ac_header_compiler=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_header_compiler=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 |
|
echo "${ECHO_T}$ac_header_compiler" >&6 |
|
|
|
@@ -3802,8 +4403,11 @@ |
|
echo "$as_me:$LINENO: checking $ac_header presence" >&5 |
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <$ac_header> |
|
_ACEOF |
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 |
|
@@ -3816,6 +4420,7 @@ |
|
(exit $ac_status); } >/dev/null; then |
|
if test -s conftest.err; then |
|
ac_cpp_err=$ac_c_preproc_warn_flag |
|
+ ac_cpp_err=$ac_cpp_err$ac_c_werror_flag |
|
else |
|
ac_cpp_err= |
|
fi |
|
@@ -3826,7 +4431,8 @@ |
|
ac_header_preproc=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
- cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_header_preproc=no |
|
fi |
|
rm -f conftest.err conftest.$ac_ext |
|
@@ -3834,26 +4440,43 @@ |
|
echo "${ECHO_T}$ac_header_preproc" >&6 |
|
|
|
# So? What about this header? |
|
-case $ac_header_compiler:$ac_header_preproc in |
|
- yes:no ) |
|
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in |
|
+ yes:no: ) |
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 |
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} |
|
- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 |
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; |
|
- no:yes ) |
|
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 |
|
+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} |
|
+ ac_header_preproc=yes |
|
+ ;; |
|
+ no:yes:* ) |
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 |
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} |
|
- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 |
|
-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} |
|
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 |
|
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} |
|
+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 |
|
+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} |
|
+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 |
|
+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} |
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 |
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; |
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} |
|
+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 |
|
+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} |
|
+ ( |
|
+ cat <<\_ASBOX |
|
+## ------------------------------- ## |
|
+## Report this to the less lists. ## |
|
+## ------------------------------- ## |
|
+_ASBOX |
|
+ ) | |
|
+ sed "s/^/$as_me: WARNING: /" >&2 |
|
+ ;; |
|
esac |
|
echo "$as_me:$LINENO: checking for $ac_header" >&5 |
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 |
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
- eval "$as_ac_Header=$ac_header_preproc" |
|
+ eval "$as_ac_Header=\$ac_header_preproc" |
|
fi |
|
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 |
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 |
|
@@ -3876,8 +4499,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sys/types.h> |
|
#include <sys/stat.h> |
|
|
|
@@ -3931,8 +4557,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -3990,11 +4619,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4003,10 +4642,11 @@ |
|
ac_cv_c_const=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_c_const=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 |
|
echo "${ECHO_T}$ac_cv_c_const" >&6 |
|
@@ -4024,8 +4664,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_includes_default |
|
int |
|
main () |
|
@@ -4040,11 +4683,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4053,10 +4706,11 @@ |
|
ac_cv_type_off_t=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_type_off_t=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 |
|
echo "${ECHO_T}$ac_cv_type_off_t" >&6 |
|
@@ -4076,8 +4730,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_includes_default |
|
int |
|
main () |
|
@@ -4092,11 +4749,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4105,10 +4772,11 @@ |
|
ac_cv_type_size_t=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_type_size_t=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 |
|
echo "${ECHO_T}$ac_cv_type_size_t" >&6 |
|
@@ -4128,8 +4796,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sys/types.h> |
|
#include <sys/time.h> |
|
#include <time.h> |
|
@@ -4145,11 +4816,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4158,10 +4839,11 @@ |
|
ac_cv_header_time=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_header_time=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 |
|
echo "${ECHO_T}$ac_cv_header_time" >&6 |
|
@@ -4229,8 +4911,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
$ac_includes_default |
|
int |
|
main () |
|
@@ -4245,11 +4930,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4258,10 +4953,11 @@ |
|
ac_cv_type_off_t=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_type_off_t=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 |
|
echo "${ECHO_T}$ac_cv_type_off_t" >&6 |
|
@@ -4278,8 +4974,11 @@ |
|
echo "$as_me:$LINENO: checking for void" >&5 |
|
echo $ECHO_N "checking for void... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -4291,11 +4990,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4308,16 +5017,20 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
echo "$as_me:$LINENO: checking for const" >&5 |
|
echo $ECHO_N "checking for const... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -4329,11 +5042,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4346,16 +5069,20 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
echo "$as_me:$LINENO: checking for time_t" >&5 |
|
echo $ECHO_N "checking for time_t... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <time.h> |
|
int |
|
main () |
|
@@ -4367,11 +5094,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4384,11 +5121,12 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
|
|
# Checks for library functions. |
|
echo "$as_me:$LINENO: checking return type of signal handlers" >&5 |
|
@@ -4397,8 +5135,11 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <sys/types.h> |
|
#include <signal.h> |
|
#ifdef signal |
|
@@ -4420,11 +5161,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
|
- (eval $ac_compile) 2>&5 |
|
+ (eval $ac_compile) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest.$ac_objext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest.$ac_objext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4433,10 +5184,11 @@ |
|
ac_cv_type_signal=void |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_type_signal=int |
|
fi |
|
-rm -f conftest.$ac_objext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 |
|
echo "${ECHO_T}$ac_cv_type_signal" >&6 |
|
@@ -4465,43 +5217,73 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
+/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func. |
|
+ For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|
+#define $ac_func innocuous_$ac_func |
|
+ |
|
/* System header to define __stub macros and hopefully few prototypes, |
|
- which can conflict with char $ac_func (); below. */ |
|
-#include <assert.h> |
|
+ which can conflict with char $ac_func (); below. |
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|
+ <limits.h> exists even on freestanding compilers. */ |
|
+ |
|
+#ifdef __STDC__ |
|
+# include <limits.h> |
|
+#else |
|
+# include <assert.h> |
|
+#endif |
|
+ |
|
+#undef $ac_func |
|
+ |
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
extern "C" |
|
+{ |
|
#endif |
|
/* We use char because int might match the return type of a gcc2 |
|
builtin and then its argument prototype would still apply. */ |
|
char $ac_func (); |
|
-char (*f) (); |
|
- |
|
-int |
|
-main () |
|
-{ |
|
/* The GNU C library defines this for functions which it implements |
|
to always fail with ENOSYS. Some functions are actually named |
|
something starting with __ and the normal name is an alias. */ |
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func) |
|
choke me |
|
#else |
|
-f = $ac_func; |
|
+char (*f) () = $ac_func; |
|
+#endif |
|
+#ifdef __cplusplus |
|
+} |
|
#endif |
|
|
|
+int |
|
+main () |
|
+{ |
|
+return f != $ac_func; |
|
; |
|
return 0; |
|
} |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4510,10 +5292,12 @@ |
|
eval "$as_ac_var=yes" |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
eval "$as_ac_var=no" |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 |
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 |
|
@@ -4533,43 +5317,73 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
+/* Define tcgetattr to an innocuous variant, in case <limits.h> declares tcgetattr. |
|
+ For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|
+#define tcgetattr innocuous_tcgetattr |
|
+ |
|
/* System header to define __stub macros and hopefully few prototypes, |
|
- which can conflict with char tcgetattr (); below. */ |
|
-#include <assert.h> |
|
+ which can conflict with char tcgetattr (); below. |
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|
+ <limits.h> exists even on freestanding compilers. */ |
|
+ |
|
+#ifdef __STDC__ |
|
+# include <limits.h> |
|
+#else |
|
+# include <assert.h> |
|
+#endif |
|
+ |
|
+#undef tcgetattr |
|
+ |
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
extern "C" |
|
+{ |
|
#endif |
|
/* We use char because int might match the return type of a gcc2 |
|
builtin and then its argument prototype would still apply. */ |
|
char tcgetattr (); |
|
-char (*f) (); |
|
- |
|
-int |
|
-main () |
|
-{ |
|
/* The GNU C library defines this for functions which it implements |
|
to always fail with ENOSYS. Some functions are actually named |
|
something starting with __ and the normal name is an alias. */ |
|
#if defined (__stub_tcgetattr) || defined (__stub___tcgetattr) |
|
choke me |
|
#else |
|
-f = tcgetattr; |
|
+char (*f) () = tcgetattr; |
|
+#endif |
|
+#ifdef __cplusplus |
|
+} |
|
#endif |
|
|
|
+int |
|
+main () |
|
+{ |
|
+return f != tcgetattr; |
|
; |
|
return 0; |
|
} |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4578,10 +5392,12 @@ |
|
ac_cv_func_tcgetattr=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_func_tcgetattr=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_func_tcgetattr" >&5 |
|
echo "${ECHO_T}$ac_cv_func_tcgetattr" >&6 |
|
@@ -4596,8 +5412,11 @@ |
|
echo "$as_me:$LINENO: checking for fileno" >&5 |
|
echo $ECHO_N "checking for fileno... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#if HAVE_STDIO_H |
|
#include <stdio.h> |
|
@@ -4612,11 +5431,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4629,17 +5458,22 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
|
|
echo "$as_me:$LINENO: checking for strerror" >&5 |
|
echo $ECHO_N "checking for strerror... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#if HAVE_STDIO_H |
|
#include <stdio.h> |
|
@@ -4660,11 +5494,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4677,17 +5521,22 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
|
|
echo "$as_me:$LINENO: checking for sys_errlist" >&5 |
|
echo $ECHO_N "checking for sys_errlist... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -4699,11 +5548,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4716,17 +5575,22 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
|
|
echo "$as_me:$LINENO: checking for sigset_t" >&5 |
|
echo $ECHO_N "checking for sigset_t... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#include <signal.h> |
|
|
|
@@ -4740,11 +5604,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4757,17 +5631,22 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
|
|
echo "$as_me:$LINENO: checking for sigemptyset" >&5 |
|
echo $ECHO_N "checking for sigemptyset... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#include <signal.h> |
|
|
|
@@ -4781,11 +5660,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4798,18 +5687,23 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
|
|
have_errno=no |
|
echo "$as_me:$LINENO: checking for errno" >&5 |
|
echo $ECHO_N "checking for errno... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#if HAVE_ERRNO_H |
|
#include <errno.h> |
|
@@ -4824,11 +5718,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4841,13 +5745,18 @@ |
|
have_errno=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
if test $have_errno = no; then |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#if HAVE_ERRNO_H |
|
#include <errno.h> |
|
@@ -4862,11 +5771,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4882,18 +5801,23 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
|
|
echo "$as_me:$LINENO: checking for locale" >&5 |
|
echo $ECHO_N "checking for locale... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
#include <locale.h> |
|
#include <ctype.h> |
|
int |
|
@@ -4906,11 +5830,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4923,16 +5857,21 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
echo "$as_me:$LINENO: checking for ctype functions" >&5 |
|
echo $ECHO_N "checking for ctype functions... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#if HAVE_CTYPE_H |
|
#include <ctype.h> |
|
@@ -4947,11 +5886,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -4964,19 +5913,24 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
|
|
# Checks for external variable ospeed in the termcap library. |
|
have_ospeed=no |
|
echo "$as_me:$LINENO: checking termcap for ospeed" >&5 |
|
echo $ECHO_N "checking termcap for ospeed... $ECHO_C" >&6 |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#include <sys/types.h> |
|
#if HAVE_TERMIOS_H |
|
@@ -4995,11 +5949,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5012,13 +5976,18 @@ |
|
have_ospeed=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
if test $have_ospeed = no; then |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
int |
|
main () |
|
@@ -5030,11 +5999,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5050,11 +6029,13 @@ |
|
|
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
|
|
# Checks for regular expression functions. |
|
@@ -5079,8 +6060,11 @@ |
|
have_posix_regex=unknown |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#include <sys/types.h> |
|
#include <regex.h> |
|
@@ -5109,11 +6093,12 @@ |
|
else |
|
echo "$as_me: program exited with status $ac_status" >&5 |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
( exit $ac_status ) |
|
have_posix_regex=no |
|
fi |
|
-rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
|
+rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext |
|
fi |
|
if test $have_posix_regex = yes; then |
|
echo "$as_me:$LINENO: result: using POSIX regcomp" >&5 |
|
@@ -5125,8 +6110,11 @@ |
|
have_regex=yes |
|
elif test $have_posix_regex = unknown; then |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#include <sys/types.h> |
|
#include <regex.h> |
|
@@ -5140,11 +6128,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5158,9 +6156,11 @@ |
|
have_regex=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
else |
|
echo "$as_me:$LINENO: result: no" >&5 |
|
echo "${ECHO_T}no" >&6 |
|
@@ -5178,8 +6178,11 @@ |
|
ac_check_lib_save_LIBS=$LIBS |
|
LIBS="-lpcre $LIBS" |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
@@ -5198,11 +6201,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5211,10 +6224,12 @@ |
|
ac_cv_lib_pcre_pcre_compile=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_lib_pcre_pcre_compile=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
LIBS=$ac_check_lib_save_LIBS |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_lib_pcre_pcre_compile" >&5 |
|
@@ -5238,43 +6253,73 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
+/* Define regcmp to an innocuous variant, in case <limits.h> declares regcmp. |
|
+ For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|
+#define regcmp innocuous_regcmp |
|
+ |
|
/* System header to define __stub macros and hopefully few prototypes, |
|
- which can conflict with char regcmp (); below. */ |
|
-#include <assert.h> |
|
+ which can conflict with char regcmp (); below. |
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|
+ <limits.h> exists even on freestanding compilers. */ |
|
+ |
|
+#ifdef __STDC__ |
|
+# include <limits.h> |
|
+#else |
|
+# include <assert.h> |
|
+#endif |
|
+ |
|
+#undef regcmp |
|
+ |
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
extern "C" |
|
+{ |
|
#endif |
|
/* We use char because int might match the return type of a gcc2 |
|
builtin and then its argument prototype would still apply. */ |
|
char regcmp (); |
|
-char (*f) (); |
|
- |
|
-int |
|
-main () |
|
-{ |
|
/* The GNU C library defines this for functions which it implements |
|
to always fail with ENOSYS. Some functions are actually named |
|
something starting with __ and the normal name is an alias. */ |
|
#if defined (__stub_regcmp) || defined (__stub___regcmp) |
|
choke me |
|
#else |
|
-f = regcmp; |
|
+char (*f) () = regcmp; |
|
+#endif |
|
+#ifdef __cplusplus |
|
+} |
|
#endif |
|
|
|
+int |
|
+main () |
|
+{ |
|
+return f != regcmp; |
|
; |
|
return 0; |
|
} |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5283,10 +6328,12 @@ |
|
ac_cv_func_regcmp=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_func_regcmp=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_func_regcmp" >&5 |
|
echo "${ECHO_T}$ac_cv_func_regcmp" >&6 |
|
@@ -5304,8 +6351,11 @@ |
|
if test $have_regex = no; then |
|
if test $WANT_REGEX = auto -o $WANT_REGEX = regcomp; then |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
|
|
#include "regexp.h" |
|
int |
|
@@ -5318,11 +6368,21 @@ |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5335,9 +6395,11 @@ |
|
have_regex=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
fi |
|
|
|
@@ -5363,43 +6425,73 @@ |
|
echo $ECHO_N "(cached) $ECHO_C" >&6 |
|
else |
|
cat >conftest.$ac_ext <<_ACEOF |
|
-#line $LINENO "configure" |
|
-#include "confdefs.h" |
|
+/* confdefs.h. */ |
|
+_ACEOF |
|
+cat confdefs.h >>conftest.$ac_ext |
|
+cat >>conftest.$ac_ext <<_ACEOF |
|
+/* end confdefs.h. */ |
|
+/* Define re_comp to an innocuous variant, in case <limits.h> declares re_comp. |
|
+ For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|
+#define re_comp innocuous_re_comp |
|
+ |
|
/* System header to define __stub macros and hopefully few prototypes, |
|
- which can conflict with char re_comp (); below. */ |
|
-#include <assert.h> |
|
+ which can conflict with char re_comp (); below. |
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|
+ <limits.h> exists even on freestanding compilers. */ |
|
+ |
|
+#ifdef __STDC__ |
|
+# include <limits.h> |
|
+#else |
|
+# include <assert.h> |
|
+#endif |
|
+ |
|
+#undef re_comp |
|
+ |
|
/* Override any gcc2 internal prototype to avoid an error. */ |
|
#ifdef __cplusplus |
|
extern "C" |
|
+{ |
|
#endif |
|
/* We use char because int might match the return type of a gcc2 |
|
builtin and then its argument prototype would still apply. */ |
|
char re_comp (); |
|
-char (*f) (); |
|
- |
|
-int |
|
-main () |
|
-{ |
|
/* The GNU C library defines this for functions which it implements |
|
to always fail with ENOSYS. Some functions are actually named |
|
something starting with __ and the normal name is an alias. */ |
|
#if defined (__stub_re_comp) || defined (__stub___re_comp) |
|
choke me |
|
#else |
|
-f = re_comp; |
|
+char (*f) () = re_comp; |
|
+#endif |
|
+#ifdef __cplusplus |
|
+} |
|
#endif |
|
|
|
+int |
|
+main () |
|
+{ |
|
+return f != re_comp; |
|
; |
|
return 0; |
|
} |
|
_ACEOF |
|
rm -f conftest.$ac_objext conftest$ac_exeext |
|
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 |
|
- (eval $ac_link) 2>&5 |
|
+ (eval $ac_link) 2>conftest.er1 |
|
ac_status=$? |
|
+ grep -v '^ *+' conftest.er1 >conftest.err |
|
+ rm -f conftest.er1 |
|
+ cat conftest.err >&5 |
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
(exit $ac_status); } && |
|
- { ac_try='test -s conftest$ac_exeext' |
|
+ { ac_try='test -z "$ac_c_werror_flag" |
|
+ || test ! -s conftest.err' |
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
+ (eval $ac_try) 2>&5 |
|
+ ac_status=$? |
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
|
+ (exit $ac_status); }; } && |
|
+ { ac_try='test -s conftest$ac_exeext' |
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
|
(eval $ac_try) 2>&5 |
|
ac_status=$? |
|
@@ -5408,10 +6500,12 @@ |
|
ac_cv_func_re_comp=yes |
|
else |
|
echo "$as_me: failed program was:" >&5 |
|
-cat conftest.$ac_ext >&5 |
|
+sed 's/^/| /' conftest.$ac_ext >&5 |
|
+ |
|
ac_cv_func_re_comp=no |
|
fi |
|
-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext |
|
+rm -f conftest.err conftest.$ac_objext \ |
|
+ conftest$ac_exeext conftest.$ac_ext |
|
fi |
|
echo "$as_me:$LINENO: result: $ac_cv_func_re_comp" >&5 |
|
echo "${ECHO_T}$ac_cv_func_re_comp" >&6 |
|
@@ -5481,13 +6575,13 @@ |
|
# `set' does not quote correctly, so add quotes (double-quote |
|
# substitution turns \\\\ into \\, and sed turns \\ into \). |
|
sed -n \ |
|
- "s/'/'\\\\''/g; |
|
- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" |
|
+ "s/'/'\\\\''/g; |
|
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" |
|
;; |
|
*) |
|
# `set' quotes correctly as required by POSIX, so do not add quotes. |
|
sed -n \ |
|
- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" |
|
+ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" |
|
;; |
|
esac; |
|
} | |
|
@@ -5498,7 +6592,7 @@ |
|
t end |
|
/^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ |
|
: end' >>confcache |
|
-if cmp -s $cache_file confcache; then :; else |
|
+if diff $cache_file confcache >/dev/null 2>&1; then :; else |
|
if test -w $cache_file; then |
|
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" |
|
cat confcache >$cache_file |
|
@@ -5517,13 +6611,13 @@ |
|
# trailing colons and then remove the whole line if VPATH becomes empty |
|
# (actually we leave an empty line to preserve line numbers). |
|
if test "x$srcdir" = x.; then |
|
- ac_vpsub='/^[ ]*VPATH[ ]*=/{ |
|
+ ac_vpsub='/^[ ]*VPATH[ ]*=/{ |
|
s/:*\$(srcdir):*/:/; |
|
s/:*\${srcdir}:*/:/; |
|
s/:*@srcdir@:*/:/; |
|
-s/^\([^=]*=[ ]*\):*/\1/; |
|
+s/^\([^=]*=[ ]*\):*/\1/; |
|
s/:*$//; |
|
-s/^[^=]*=[ ]*$//; |
|
+s/^[^=]*=[ ]*$//; |
|
}' |
|
fi |
|
|
|
@@ -5534,7 +6628,7 @@ |
|
for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue |
|
# 1. Remove the extension, and $U if already installed. |
|
ac_i=`echo "$ac_i" | |
|
- sed 's/\$U\././;s/\.o$//;s/\.obj$//'` |
|
+ sed 's/\$U\././;s/\.o$//;s/\.obj$//'` |
|
# 2. Add them. |
|
ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" |
|
ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' |
|
@@ -5558,6 +6652,8 @@ |
|
# configure, is in config.log if it exists. |
|
|
|
debug=false |
|
+ac_cs_recheck=false |
|
+ac_cs_silent=false |
|
SHELL=\${CONFIG_SHELL-$SHELL} |
|
_ACEOF |
|
|
|
@@ -5576,9 +6672,10 @@ |
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then |
|
set -o posix |
|
fi |
|
+DUALCASE=1; export DUALCASE # for MKS sh |
|
|
|
# Support unset when possible. |
|
-if (FOO=FOO; unset FOO) >/dev/null 2>&1; then |
|
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then |
|
as_unset=unset |
|
else |
|
as_unset=false |
|
@@ -5592,9 +6689,12 @@ |
|
PS4='+ ' |
|
|
|
# NLS nuisances. |
|
-for as_var in LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE LC_NUMERIC LC_MESSAGES LC_TIME |
|
+for as_var in \ |
|
+ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ |
|
+ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ |
|
+ LC_TELEPHONE LC_TIME |
|
do |
|
- if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then |
|
+ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then |
|
eval $as_var=C; export $as_var |
|
else |
|
$as_unset $as_var |
|
@@ -5638,15 +6738,15 @@ |
|
|
|
# The user is always right. |
|
if test "${PATH_SEPARATOR+set}" != set; then |
|
- echo "#! /bin/sh" >conftest.sh |
|
- echo "exit 0" >>conftest.sh |
|
- chmod +x conftest.sh |
|
- if (PATH="/nonexistent;."; conftest.sh) >/dev/null 2>&1; then |
|
+ echo "#! /bin/sh" >conf$$.sh |
|
+ echo "exit 0" >>conf$$.sh |
|
+ chmod +x conf$$.sh |
|
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then |
|
PATH_SEPARATOR=';' |
|
else |
|
PATH_SEPARATOR=: |
|
fi |
|
- rm -f conftest.sh |
|
+ rm -f conf$$.sh |
|
fi |
|
|
|
|
|
@@ -5773,16 +6873,17 @@ |
|
if mkdir -p . 2>/dev/null; then |
|
as_mkdir_p=: |
|
else |
|
+ test -d ./-p && rmdir ./-p |
|
as_mkdir_p=false |
|
fi |
|
|
|
as_executable_p="test -f" |
|
|
|
# Sed expression to map a string onto a valid CPP name. |
|
-as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" |
|
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" |
|
|
|
# Sed expression to map a string onto a valid variable name. |
|
-as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g" |
|
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" |
|
|
|
|
|
# IFS |
|
@@ -5809,7 +6910,7 @@ |
|
cat >&5 <<_CSEOF |
|
|
|
This file was extended by less $as_me 1, which was |
|
-generated by GNU Autoconf 2.54. Invocation command line was |
|
+generated by GNU Autoconf 2.59 (OpenPKG-CURRENT). Invocation command line was |
|
|
|
CONFIG_FILES = $CONFIG_FILES |
|
CONFIG_HEADERS = $CONFIG_HEADERS |
|
@@ -5849,12 +6950,13 @@ |
|
|
|
-h, --help print this help, then exit |
|
-V, --version print version number, then exit |
|
+ -q, --quiet do not print progress messages |
|
-d, --debug don't remove temporary files |
|
--recheck update $as_me by reconfiguring in the same conditions |
|
--file=FILE[:TEMPLATE] |
|
- instantiate the configuration file FILE |
|
+ instantiate the configuration file FILE |
|
--header=FILE[:TEMPLATE] |
|
- instantiate the configuration header FILE |
|
+ instantiate the configuration header FILE |
|
|
|
Configuration files: |
|
$config_files |
|
@@ -5868,11 +6970,10 @@ |
|
cat >>$CONFIG_STATUS <<_ACEOF |
|
ac_cs_version="\\ |
|
less config.status 1 |
|
-configured by $0, generated by GNU Autoconf 2.54, |
|
+configured by $0, generated by GNU Autoconf 2.59 (OpenPKG-CURRENT), |
|
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" |
|
|
|
-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 |
|
-Free Software Foundation, Inc. |
|
+Copyright (C) 2003 Free Software Foundation, Inc. |
|
This config.status script is free software; the Free Software Foundation |
|
gives unlimited permission to copy, distribute and modify it." |
|
srcdir=$srcdir |
|
@@ -5905,12 +7006,9 @@ |
|
case $ac_option in |
|
# Handling of the options. |
|
_ACEOF |
|
-cat >>$CONFIG_STATUS <<_ACEOF |
|
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) |
|
- echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion" |
|
- exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;; |
|
-_ACEOF |
|
cat >>$CONFIG_STATUS <<\_ACEOF |
|
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) |
|
+ ac_cs_recheck=: ;; |
|
--version | --vers* | -V ) |
|
echo "$ac_cs_version"; exit 0 ;; |
|
--he | --h) |
|
@@ -5932,6 +7030,9 @@ |
|
$ac_shift |
|
CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" |
|
ac_need_defaults=false;; |
|
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ |
|
+ | -silent | --silent | --silen | --sile | --sil | --si | --s) |
|
+ ac_cs_silent=: ;; |
|
|
|
# This is an error. |
|
-*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 |
|
@@ -5946,6 +7047,20 @@ |
|
shift |
|
done |
|
|
|
+ac_configure_extra_args= |
|
+ |
|
+if $ac_cs_silent; then |
|
+ exec 6>/dev/null |
|
+ ac_configure_extra_args="$ac_configure_extra_args --silent" |
|
+fi |
|
+ |
|
+_ACEOF |
|
+cat >>$CONFIG_STATUS <<_ACEOF |
|
+if \$ac_cs_recheck; then |
|
+ echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 |
|
+ exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion |
|
+fi |
|
+ |
|
_ACEOF |
|
|
|
|
|
@@ -5974,6 +7089,9 @@ |
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers |
|
fi |
|
|
|
+# Have a temporary directory for convenience. Make it in the build tree |
|
+# simply because there is no reason to put it here, and in addition, |
|
+# creating and moving files from /tmp can sometimes cause problems. |
|
# Create a temporary directory, and hook for its removal unless debugging. |
|
$debug || |
|
{ |
|
@@ -5982,17 +7100,17 @@ |
|
} |
|
|
|
# Create a (secure) tmp directory for tmp files. |
|
-: ${TMPDIR=/tmp} |
|
+ |
|
{ |
|
- tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` && |
|
+ tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && |
|
test -n "$tmp" && test -d "$tmp" |
|
} || |
|
{ |
|
- tmp=$TMPDIR/cs$$-$RANDOM |
|
+ tmp=./confstat$$-$RANDOM |
|
(umask 077 && mkdir $tmp) |
|
} || |
|
{ |
|
- echo "$me: cannot create a temporary directory in $TMPDIR" >&2 |
|
+ echo "$me: cannot create a temporary directory in ." >&2 |
|
{ (exit 1); exit 1; } |
|
} |
|
|
|
@@ -6084,9 +7202,9 @@ |
|
(echo ':t |
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed |
|
if test -z "$ac_sed_cmds"; then |
|
- ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" |
|
+ ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" |
|
else |
|
- ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" |
|
+ ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" |
|
fi |
|
ac_sed_frag=`expr $ac_sed_frag + 1` |
|
ac_beg=$ac_end |
|
@@ -6104,21 +7222,21 @@ |
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". |
|
case $ac_file in |
|
- | *:- | *:-:* ) # input from stdin |
|
- cat >$tmp/stdin |
|
- ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` |
|
- ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
+ cat >$tmp/stdin |
|
+ ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` |
|
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` |
|
- ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
* ) ac_file_in=$ac_file.in ;; |
|
esac |
|
|
|
# Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. |
|
ac_dir=`(dirname "$ac_file") 2>/dev/null || |
|
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
|
- X"$ac_file" : 'X\(//\)[^/]' \| \ |
|
- X"$ac_file" : 'X\(//\)$' \| \ |
|
- X"$ac_file" : 'X\(/\)' \| \ |
|
- . : '\(.\)' 2>/dev/null || |
|
+ X"$ac_file" : 'X\(//\)[^/]' \| \ |
|
+ X"$ac_file" : 'X\(//\)$' \| \ |
|
+ X"$ac_file" : 'X\(/\)' \| \ |
|
+ . : '\(.\)' 2>/dev/null || |
|
echo X"$ac_file" | |
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } |
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; } |
|
@@ -6134,10 +7252,10 @@ |
|
as_dirs="$as_dir $as_dirs" |
|
as_dir=`(dirname "$as_dir") 2>/dev/null || |
|
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
|
- X"$as_dir" : 'X\(//\)[^/]' \| \ |
|
- X"$as_dir" : 'X\(//\)$' \| \ |
|
- X"$as_dir" : 'X\(/\)' \| \ |
|
- . : '\(.\)' 2>/dev/null || |
|
+ X"$as_dir" : 'X\(//\)[^/]' \| \ |
|
+ X"$as_dir" : 'X\(//\)$' \| \ |
|
+ X"$as_dir" : 'X\(/\)' \| \ |
|
+ . : '\(.\)' 2>/dev/null || |
|
echo X"$as_dir" | |
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } |
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; } |
|
@@ -6175,12 +7293,45 @@ |
|
ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix |
|
ac_top_srcdir=$ac_top_builddir$srcdir ;; |
|
esac |
|
-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be |
|
-# absolute. |
|
-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` |
|
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd` |
|
-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` |
|
-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` |
|
+ |
|
+# Do not use `cd foo && pwd` to compute absolute paths, because |
|
+# the directories may not exist. |
|
+case `pwd` in |
|
+.) ac_abs_builddir="$ac_dir";; |
|
+*) |
|
+ case "$ac_dir" in |
|
+ .) ac_abs_builddir=`pwd`;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; |
|
+ *) ac_abs_builddir=`pwd`/"$ac_dir";; |
|
+ esac;; |
|
+esac |
|
+case $ac_abs_builddir in |
|
+.) ac_abs_top_builddir=${ac_top_builddir}.;; |
|
+*) |
|
+ case ${ac_top_builddir}. in |
|
+ .) ac_abs_top_builddir=$ac_abs_builddir;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; |
|
+ *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; |
|
+ esac;; |
|
+esac |
|
+case $ac_abs_builddir in |
|
+.) ac_abs_srcdir=$ac_srcdir;; |
|
+*) |
|
+ case $ac_srcdir in |
|
+ .) ac_abs_srcdir=$ac_abs_builddir;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; |
|
+ *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; |
|
+ esac;; |
|
+esac |
|
+case $ac_abs_builddir in |
|
+.) ac_abs_top_srcdir=$ac_top_srcdir;; |
|
+*) |
|
+ case $ac_top_srcdir in |
|
+ .) ac_abs_top_srcdir=$ac_abs_builddir;; |
|
+ [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; |
|
+ *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; |
|
+ esac;; |
|
+esac |
|
|
|
|
|
case $INSTALL in |
|
@@ -6202,7 +7353,7 @@ |
|
configure_input="$ac_file. " |
|
fi |
|
configure_input=$configure_input"Generated from `echo $ac_file_in | |
|
- sed 's,.*/,,'` by configure." |
|
+ sed 's,.*/,,'` by configure." |
|
|
|
# First look for the input files in the build tree, otherwise in the |
|
# src tree. |
|
@@ -6211,24 +7362,24 @@ |
|
case $f in |
|
-) echo $tmp/stdin ;; |
|
[\\/$]*) |
|
- # Absolute (can't be DOS-style, as IFS=:) |
|
- test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
+ # Absolute (can't be DOS-style, as IFS=:) |
|
+ test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
echo "$as_me: error: cannot find input file: $f" >&2;} |
|
{ (exit 1); exit 1; }; } |
|
- echo $f;; |
|
+ echo "$f";; |
|
*) # Relative |
|
- if test -f "$f"; then |
|
- # Build tree |
|
- echo $f |
|
- elif test -f "$srcdir/$f"; then |
|
- # Source tree |
|
- echo $srcdir/$f |
|
- else |
|
- # /dev/null tree |
|
- { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
+ if test -f "$f"; then |
|
+ # Build tree |
|
+ echo "$f" |
|
+ elif test -f "$srcdir/$f"; then |
|
+ # Source tree |
|
+ echo "$srcdir/$f" |
|
+ else |
|
+ # /dev/null tree |
|
+ { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
echo "$as_me: error: cannot find input file: $f" >&2;} |
|
{ (exit 1); exit 1; }; } |
|
- fi;; |
|
+ fi;; |
|
esac |
|
done` || { (exit 1); exit 1; } |
|
_ACEOF |
|
@@ -6270,12 +7421,12 @@ |
|
# NAME is the cpp macro being defined and VALUE is the value it is being given. |
|
# |
|
# ac_d sets the value in "#define NAME VALUE" lines. |
|
-ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' |
|
-ac_dB='[ ].*$,\1#\2' |
|
+ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' |
|
+ac_dB='[ ].*$,\1#\2' |
|
ac_dC=' ' |
|
ac_dD=',;t' |
|
# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". |
|
-ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' |
|
+ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' |
|
ac_uB='$,\1#\2define\3' |
|
ac_uC=' ' |
|
ac_uD=',;t' |
|
@@ -6284,11 +7435,11 @@ |
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". |
|
case $ac_file in |
|
- | *:- | *:-:* ) # input from stdin |
|
- cat >$tmp/stdin |
|
- ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` |
|
- ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
+ cat >$tmp/stdin |
|
+ ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` |
|
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` |
|
- ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; |
|
* ) ac_file_in=$ac_file.in ;; |
|
esac |
|
|
|
@@ -6302,28 +7453,29 @@ |
|
case $f in |
|
-) echo $tmp/stdin ;; |
|
[\\/$]*) |
|
- # Absolute (can't be DOS-style, as IFS=:) |
|
- test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
+ # Absolute (can't be DOS-style, as IFS=:) |
|
+ test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
echo "$as_me: error: cannot find input file: $f" >&2;} |
|
{ (exit 1); exit 1; }; } |
|
- echo $f;; |
|
+ # Do quote $f, to prevent DOS paths from being IFS'd. |
|
+ echo "$f";; |
|
*) # Relative |
|
- if test -f "$f"; then |
|
- # Build tree |
|
- echo $f |
|
- elif test -f "$srcdir/$f"; then |
|
- # Source tree |
|
- echo $srcdir/$f |
|
- else |
|
- # /dev/null tree |
|
- { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
+ if test -f "$f"; then |
|
+ # Build tree |
|
+ echo "$f" |
|
+ elif test -f "$srcdir/$f"; then |
|
+ # Source tree |
|
+ echo "$srcdir/$f" |
|
+ else |
|
+ # /dev/null tree |
|
+ { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 |
|
echo "$as_me: error: cannot find input file: $f" >&2;} |
|
{ (exit 1); exit 1; }; } |
|
- fi;; |
|
+ fi;; |
|
esac |
|
done` || { (exit 1); exit 1; } |
|
# Remove the trailing spaces. |
|
- sed 's/[ ]*$//' $ac_file_inputs >$tmp/in |
|
+ sed 's/[ ]*$//' $ac_file_inputs >$tmp/in |
|
|
|
_ACEOF |
|
|
|
@@ -6346,9 +7498,9 @@ |
|
s,[\\$`],\\&,g |
|
t clear |
|
: clear |
|
-s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp |
|
+s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp |
|
t end |
|
-s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp |
|
+s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp |
|
: end |
|
_ACEOF |
|
# If some macros were called several times there might be several times |
|
@@ -6362,13 +7514,13 @@ |
|
# example, in the case of _POSIX_SOURCE, which is predefined and required |
|
# on some systems where configure will not decide to define it. |
|
cat >>conftest.undefs <<\_ACEOF |
|
-s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, |
|
+s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, |
|
_ACEOF |
|
|
|
# Break up conftest.defines because some shells have a limit on the size |
|
# of here documents, and old seds have small limits too (100 cmds). |
|
echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS |
|
-echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS |
|
+echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS |
|
echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS |
|
echo ' :' >>$CONFIG_STATUS |
|
rm -f conftest.tail |
|
@@ -6377,7 +7529,7 @@ |
|
# Write a limited-size here document to $tmp/defines.sed. |
|
echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS |
|
# Speed up: don't consider the non `#define' lines. |
|
- echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS |
|
+ echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS |
|
# Work around the forget-to-reset-the-flag bug. |
|
echo 't clr' >>$CONFIG_STATUS |
|
echo ': clr' >>$CONFIG_STATUS |
|
@@ -6404,7 +7556,7 @@ |
|
# Write a limited-size here document to $tmp/undefs.sed. |
|
echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS |
|
# Speed up: don't consider the non `#undef' |
|
- echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS |
|
+ echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS |
|
# Work around the forget-to-reset-the-flag bug. |
|
echo 't clr' >>$CONFIG_STATUS |
|
echo ': clr' >>$CONFIG_STATUS |
|
@@ -6432,16 +7584,16 @@ |
|
cat $tmp/in >>$tmp/config.h |
|
rm -f $tmp/in |
|
if test x"$ac_file" != x-; then |
|
- if cmp -s $ac_file $tmp/config.h 2>/dev/null; then |
|
+ if diff $ac_file $tmp/config.h >/dev/null 2>&1; then |
|
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5 |
|
echo "$as_me: $ac_file is unchanged" >&6;} |
|
else |
|
ac_dir=`(dirname "$ac_file") 2>/dev/null || |
|
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
|
- X"$ac_file" : 'X\(//\)[^/]' \| \ |
|
- X"$ac_file" : 'X\(//\)$' \| \ |
|
- X"$ac_file" : 'X\(/\)' \| \ |
|
- . : '\(.\)' 2>/dev/null || |
|
+ X"$ac_file" : 'X\(//\)[^/]' \| \ |
|
+ X"$ac_file" : 'X\(//\)$' \| \ |
|
+ X"$ac_file" : 'X\(/\)' \| \ |
|
+ . : '\(.\)' 2>/dev/null || |
|
echo X"$ac_file" | |
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } |
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; } |
|
@@ -6457,10 +7609,10 @@ |
|
as_dirs="$as_dir $as_dirs" |
|
as_dir=`(dirname "$as_dir") 2>/dev/null || |
|
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
|
- X"$as_dir" : 'X\(//\)[^/]' \| \ |
|
- X"$as_dir" : 'X\(//\)$' \| \ |
|
- X"$as_dir" : 'X\(/\)' \| \ |
|
- . : '\(.\)' 2>/dev/null || |
|
+ X"$as_dir" : 'X\(//\)[^/]' \| \ |
|
+ X"$as_dir" : 'X\(//\)$' \| \ |
|
+ X"$as_dir" : 'X\(/\)' \| \ |
|
+ . : '\(.\)' 2>/dev/null || |
|
echo X"$as_dir" | |
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } |
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; } |
|
@@ -6501,8 +7653,11 @@ |
|
# need to make the FD available again. |
|
if test "$no_create" != yes; then |
|
ac_cs_success=: |
|
+ ac_config_status_args= |
|
+ test "$silent" = yes && |
|
+ ac_config_status_args="$ac_config_status_args --quiet" |
|
exec 5>/dev/null |
|
- $SHELL $CONFIG_STATUS || ac_cs_success=false |
|
+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false |
|
exec 5>>config.log |
|
# Use ||, not &&, to avoid exiting from the if with $? = 1, which |
|
# would make configure fail if this is the last instruction.
|
|
|