commit bash-20051215 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 22:43:09 -05:00
parent af12dacd16
commit 5e4a95c794
20 changed files with 15364 additions and 4056 deletions
+109 -12
View File
@@ -1,7 +1,7 @@
@%:@! /bin/sh
@%:@ From configure.in for Bash 3.1, version 3.182.
@%:@ From configure.in for Bash 3.1, version 3.183.
@%:@ Guess values for system-dependent variables and create Makefiles.
@%:@ Generated by GNU Autoconf 2.59 for bash 3.1-rc2.
@%:@ Generated by GNU Autoconf 2.59 for bash 3.2-devel.
@%:@
@%:@ Report bugs to <bug-bash@gnu.org>.
@%:@
@@ -270,8 +270,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='bash'
PACKAGE_TARNAME='bash'
PACKAGE_VERSION='3.1-rc2'
PACKAGE_STRING='bash 3.1-rc2'
PACKAGE_VERSION='3.2-devel'
PACKAGE_STRING='bash 3.2-devel'
PACKAGE_BUGREPORT='bug-bash@gnu.org'
ac_unique_file="shell.h"
@@ -785,7 +785,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures bash 3.1-rc2 to adapt to many kinds of systems.
\`configure' configures bash 3.2-devel to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -846,7 +846,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of bash 3.1-rc2:";;
short | recursive ) echo "Configuration of bash 3.2-devel:";;
esac
cat <<\_ACEOF
@@ -1039,7 +1039,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
bash configure 3.1-rc2
bash configure 3.2-devel
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@@ -1053,7 +1053,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by bash $as_me 3.1-rc2, which was
It was created by bash $as_me 3.2-devel, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@@ -1421,8 +1421,8 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
ac_config_headers="$ac_config_headers config.h"
BASHVERS=3.1
RELSTATUS=rc2
BASHVERS=3.2
RELSTATUS=devel
case "$RELSTATUS" in
alp*|bet*|dev*|rc*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;;
@@ -16110,6 +16110,103 @@ _ACEOF
fi
echo "$as_me:$LINENO: checking for wctype" >&5
echo $ECHO_N "checking for wctype... $ECHO_C" >&6
if test "${ac_cv_func_wctype+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
/* Define wctype to an innocuous variant, in case <limits.h> declares wctype.
For example, HP-UX 11i <limits.h> declares gettimeofday. */
#define wctype innocuous_wctype
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char wctype (); 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 wctype
/* 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 wctype ();
/* 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_wctype) || defined (__stub___wctype)
choke me
#else
char (*f) () = wctype;
#endif
#ifdef __cplusplus
}
#endif
int
main ()
{
return f != wctype;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&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 -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=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_wctype=yes
else
echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_cv_func_wctype=no
fi
rm -f conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:$LINENO: result: $ac_cv_func_wctype" >&5
echo "${ECHO_T}$ac_cv_func_wctype" >&6
if test $ac_cv_func_wctype = yes; then
cat >>confdefs.h <<\_ACEOF
@%:@define HAVE_WCTYPE 1
_ACEOF
fi
echo "$as_me:$LINENO: checking for mbstate_t" >&5
echo $ECHO_N "checking for mbstate_t... $ECHO_C" >&6
@@ -27212,7 +27309,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
This file was extended by bash $as_me 3.1-rc2, which was
This file was extended by bash $as_me 3.2-devel, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -27275,7 +27372,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
bash config.status 3.1-rc2
bash config.status 3.2-devel
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
+53 -52
View File
@@ -1,4 +1,4 @@
m4trace:configure.in:30: -1- AC_INIT([bash], [3.1-rc2], [bug-bash@gnu.org])
m4trace:configure.in:30: -1- AC_INIT([bash], [3.2-devel], [bug-bash@gnu.org])
m4trace:configure.in:30: -1- m4_pattern_forbid([^_?A[CHUM]_])
m4trace:configure.in:30: -1- m4_pattern_forbid([_AC_])
m4trace:configure.in:30: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
@@ -64,7 +64,7 @@ m4trace:configure.in:52: -1- AC_SUBST([host_vendor], [`echo $ac_cv_host | sed 's
m4trace:configure.in:52: -1- AC_SUBST([host_os], [`echo $ac_cv_host | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\3/'`])
m4trace:configure.in:102: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
aclocal.m4:1929: AM_PATH_LISPDIR is expanded from...
aclocal.m4:1932: AM_PATH_LISPDIR is expanded from...
configure.in:102: the top level])
m4trace:configure.in:102: -1- AC_SUBST([EMACS])
m4trace:configure.in:102: -1- AC_SUBST([lispdir])
@@ -315,7 +315,7 @@ m4trace:configure.in:481: -1- AC_CHECK_LIB([ncurses], [tgetent], [bash_cv_termca
m4trace:configure.in:481: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2289: AC_TRY_RUN is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
aclocal.m4:1822: RL_LIB_READLINE_VERSION is expanded from...
aclocal.m4:1825: RL_LIB_READLINE_VERSION is expanded from...
configure.in:481: the top level])
m4trace:configure.in:481: -1- AC_DEFINE_TRACE_LITERAL([RL_READLINE_VERSION])
m4trace:configure.in:481: -1- AH_OUTPUT([RL_READLINE_VERSION], [/* encoded version of the installed readline library */
@@ -397,16 +397,16 @@ m4trace:configure.in:625: -1- AC_SUBST([XGETTEXT])
m4trace:configure.in:625: -1- AC_SUBST([MSGMERGE])
m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete.
You should run autoupdate.], [autoconf/status.m4:318: AC_OUTPUT_COMMANDS is expanded from...
aclocal.m4:3785: AM_PO_SUBDIRS is expanded from...
aclocal.m4:3788: AM_PO_SUBDIRS is expanded from...
configure.in:625: AM_PO_SUBDIRS is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -3- _m4_warn([obsolete], [The macro `_AC_OUTPUT_COMMANDS_CNT' is obsolete.
You should run autoupdate.], [autoconf/status.m4:321: _AC_OUTPUT_COMMANDS_CNT is expanded from...
autoconf/status.m4:318: AC_OUTPUT_COMMANDS is expanded from...
aclocal.m4:3785: AM_PO_SUBDIRS is expanded from...
aclocal.m4:3788: AM_PO_SUBDIRS is expanded from...
configure.in:625: AM_PO_SUBDIRS is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_TYPE_OFF_T
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([off_t])
@@ -459,11 +459,11 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is ob
You should run autoupdate.], [autoconf/general.m4:2289: AC_TRY_RUN is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2578: gt_INTDIV0 is expanded from...
aclocal.m4:2581: gt_INTDIV0 is expanded from...
configure.in:625: gt_INTDIV0 is required by...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([INTDIV0_RAISES_SIGFPE])
m4trace:configure.in:625: -1- AH_OUTPUT([INTDIV0_RAISES_SIGFPE], [/* Define if integer division by zero raises signal SIGFPE. */
@@ -472,13 +472,13 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' i
You should run autoupdate.], [autoconf/general.m4:2180: AC_TRY_COMPILE is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2633: jm_AC_HEADER_INTTYPES_H is expanded from...
aclocal.m4:2636: jm_AC_HEADER_INTTYPES_H is expanded from...
configure.in:625: jm_AC_HEADER_INTTYPES_H is required by...
aclocal.m4:3936: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:3939: jm_AC_TYPE_UINTMAX_T is expanded from...
configure.in:625: jm_AC_TYPE_UINTMAX_T is required by...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INTTYPES_H_WITH_UINTMAX])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_INTTYPES_H_WITH_UINTMAX], [/* Define if <inttypes.h> exists, doesn\'t clash with <sys/types.h>, and
@@ -488,13 +488,13 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' i
You should run autoupdate.], [autoconf/general.m4:2180: AC_TRY_COMPILE is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:3904: jm_AC_HEADER_STDINT_H is expanded from...
aclocal.m4:3907: jm_AC_HEADER_STDINT_H is expanded from...
configure.in:625: jm_AC_HEADER_STDINT_H is required by...
aclocal.m4:3936: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:3939: jm_AC_TYPE_UINTMAX_T is expanded from...
configure.in:625: jm_AC_TYPE_UINTMAX_T is required by...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDINT_H_WITH_UINTMAX])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_STDINT_H_WITH_UINTMAX], [/* Define if <stdint.h> exists, doesn\'t clash with <sys/types.h>, and declares
@@ -504,13 +504,13 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is o
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:3959: jm_AC_TYPE_UNSIGNED_LONG_LONG is expanded from...
aclocal.m4:3962: jm_AC_TYPE_UNSIGNED_LONG_LONG is expanded from...
configure.in:625: jm_AC_TYPE_UNSIGNED_LONG_LONG is required by...
aclocal.m4:3936: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:3939: jm_AC_TYPE_UINTMAX_T is expanded from...
configure.in:625: jm_AC_TYPE_UINTMAX_T is required by...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNSIGNED_LONG_LONG])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_UNSIGNED_LONG_LONG], [/* Define if you have the unsigned long long type. */
@@ -526,11 +526,11 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' i
You should run autoupdate.], [autoconf/general.m4:2180: AC_TRY_COMPILE is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2605: gt_HEADER_INTTYPES_H is expanded from...
aclocal.m4:2608: gt_HEADER_INTTYPES_H is expanded from...
configure.in:625: gt_HEADER_INTTYPES_H is required by...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INTTYPES_H])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define if <inttypes.h> exists and doesn\'t clash with <sys/types.h>. */
@@ -539,11 +539,11 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' i
You should run autoupdate.], [autoconf/general.m4:2180: AC_TRY_COMPILE is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2665: gt_INTTYPES_PRI is expanded from...
aclocal.m4:2668: gt_INTTYPES_PRI is expanded from...
configure.in:625: gt_INTTYPES_PRI is required by...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([PRI_MACROS_BROKEN])
m4trace:configure.in:625: -1- AH_OUTPUT([PRI_MACROS_BROKEN], [/* Define if <inttypes.h> exists and defines unusable PRI* macros. */
@@ -622,21 +622,21 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is o
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2478: AM_ICONV_LINK is expanded from...
aclocal.m4:2506: AM_ICONV is expanded from...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2481: AM_ICONV_LINK is expanded from...
aclocal.m4:2509: AM_ICONV is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2478: AM_ICONV_LINK is expanded from...
aclocal.m4:2506: AM_ICONV is expanded from...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2481: AM_ICONV_LINK is expanded from...
aclocal.m4:2509: AM_ICONV is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_ICONV], [/* Define if you have the iconv() function. */
@@ -646,10 +646,10 @@ m4trace:configure.in:625: -1- AC_SUBST([LTLIBICONV])
m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2180: AC_TRY_COMPILE is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
aclocal.m4:2506: AM_ICONV is expanded from...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2509: AM_ICONV is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([ICONV_CONST])
m4trace:configure.in:625: -1- AH_OUTPUT([ICONV_CONST], [/* Define as const if the declaration of iconv() needs const. */
@@ -658,10 +658,10 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is o
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:1956: AM_LANGINFO_CODESET is expanded from...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:1959: AM_LANGINFO_CODESET is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LANGINFO_CODESET])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_LANGINFO_CODESET], [/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
@@ -670,10 +670,10 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is o
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2723: AM_LC_MESSAGES is expanded from...
aclocal.m4:2367: AM_INTL_SUBDIR is expanded from...
aclocal.m4:2726: AM_LC_MESSAGES is expanded from...
aclocal.m4:2370: AM_INTL_SUBDIR is expanded from...
configure.in:625: AM_INTL_SUBDIR is required by...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LC_MESSAGES])
m4trace:configure.in:625: -1- AH_OUTPUT([HAVE_LC_MESSAGES], [/* Define if your <locale.h> file defines LC_MESSAGES. */
@@ -684,19 +684,19 @@ m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is o
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:2297: AM_GNU_GETTEXT is expanded from...
aclocal.m4:2300: AM_GNU_GETTEXT is expanded from...
configure.in:625: the top level])
m4trace:configure.in:625: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS])
m4trace:configure.in:625: -1- AH_OUTPUT([ENABLE_NLS], [/* Define to 1 if translation of program messages to the user\'s native
@@ -1212,18 +1212,19 @@ m4trace:configure.in:773: -2- AC_DEFINE_TRACE_LITERAL([HAVE_MBRLEN])
m4trace:configure.in:773: -2- AC_DEFINE_TRACE_LITERAL([HAVE_WCTOMB])
m4trace:configure.in:773: -2- AC_DEFINE_TRACE_LITERAL([HAVE_WCWIDTH])
m4trace:configure.in:773: -2- AC_DEFINE_TRACE_LITERAL([HAVE_WCSDUP])
m4trace:configure.in:773: -2- AC_DEFINE_TRACE_LITERAL([HAVE_WCTYPE])
m4trace:configure.in:773: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2180: AC_TRY_COMPILE is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:1703: BASH_CHECK_MULTIBYTE is expanded from...
aclocal.m4:1706: BASH_CHECK_MULTIBYTE is expanded from...
configure.in:773: the top level])
m4trace:configure.in:773: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MBSTATE_T])
m4trace:configure.in:773: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
aclocal.m4:1703: BASH_CHECK_MULTIBYTE is expanded from...
aclocal.m4:1706: BASH_CHECK_MULTIBYTE is expanded from...
configure.in:773: the top level])
m4trace:configure.in:773: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LANGINFO_CODESET])
m4trace:configure.in:777: -1- AC_CHECK_LIB([dl], [dlopen])
@@ -1467,7 +1468,7 @@ m4trace:configure.in:849: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LSTAT])
m4trace:configure.in:853: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2289: AC_TRY_RUN is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
aclocal.m4:1866: BASH_FUNC_CTYPE_NONASCII is expanded from...
aclocal.m4:1869: BASH_FUNC_CTYPE_NONASCII is expanded from...
configure.in:853: the top level])
m4trace:configure.in:853: -1- AC_DEFINE_TRACE_LITERAL([CTYPE_NON_ASCII])
m4trace:configure.in:854: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
@@ -1721,7 +1722,7 @@ m4trace:configure.in:923: -1- AC_DEFINE_TRACE_LITERAL([FIONREAD_IN_SYS_IOCTL])
m4trace:configure.in:925: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
You should run autoupdate.], [autoconf/general.m4:2289: AC_TRY_RUN is expanded from...
autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
aclocal.m4:1899: BASH_CHECK_WCONTINUED is expanded from...
aclocal.m4:1902: BASH_CHECK_WCONTINUED is expanded from...
configure.in:925: the top level])
m4trace:configure.in:925: -1- AC_DEFINE_TRACE_LITERAL([WCONTINUED_BROKEN])
m4trace:configure.in:928: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.