mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 08:29:54 +02:00
commit bash-20090827 snapshot
This commit is contained in:
+31
-3
@@ -8128,7 +8128,7 @@ lib/sh/casemod.c
|
||||
multibyte character
|
||||
|
||||
lib/readline/mbutil.c
|
||||
- fix _rl_find_next_mbchar_internalto not call mbrtowc at the end of
|
||||
- fix _rl_find_next_mbchar_internal to not call mbrtowc at the end of
|
||||
the string, since implementations return different values -- just
|
||||
break the loop immediately
|
||||
|
||||
@@ -8195,7 +8195,7 @@ builtins/read.def
|
||||
builtins/command.def
|
||||
- move section of code that sets PATH from -p option before the
|
||||
verbose-handling section, so command -v and command -V honor
|
||||
the PATH set by command -p. Bug and fix from
|
||||
the PATH set by command -p. Bug report and fix from
|
||||
ohki@gssm.otsuka.tsukuba.ac.jp
|
||||
|
||||
7/9
|
||||
@@ -8533,7 +8533,7 @@ shell.c
|
||||
shell startup
|
||||
|
||||
configure.in
|
||||
- new configure `enable' option --enable-exended-tglob-default, to
|
||||
- new configure `enable' option --enable-exended-glob-default, to
|
||||
set the initial default value of the `extglob' shell option
|
||||
|
||||
config.h
|
||||
@@ -8674,3 +8674,31 @@ braces.c
|
||||
{01..100} will have three digits in all the elements of the
|
||||
expanded list. Fixes bug reported by Jeff Haemer
|
||||
<jeffrey.haemer@gmail.com>
|
||||
|
||||
8/24
|
||||
----
|
||||
{arrayfunc,variables}.c
|
||||
- when inserting a value into an associative array using syntax like
|
||||
T=v where T is an already-declared associative array using key "0",
|
||||
make sure the key is in newly-allocated memory so it can be freed
|
||||
when the variable is unset. Fixes bug reported as redhat 518644
|
||||
by Jon Fairbairn
|
||||
|
||||
8/26
|
||||
----
|
||||
lib/readline/funmap.c
|
||||
- add "old-menu-complete" binding for rl_old_menu_complete
|
||||
|
||||
lib/readline/readline.h
|
||||
- add extern declaration for rl_old_menu_complete
|
||||
|
||||
subst.c
|
||||
- fix memory leak when processing ${!prefix@}. Need to dispose all
|
||||
words in the word list created from all matching variable. Fixes
|
||||
bug reported by muszi@muszi.kite.hu.
|
||||
|
||||
8/29
|
||||
----
|
||||
execute_cmd.c
|
||||
- add fflush(stdout) and fflush(stderr) to child coproc code before
|
||||
calling exit after execute_in_subshell
|
||||
|
||||
+38
-2
@@ -8195,7 +8195,7 @@ builtins/read.def
|
||||
builtins/command.def
|
||||
- move section of code that sets PATH from -p option before the
|
||||
verbose-handling section, so command -v and command -V honor
|
||||
the PATH set by command -p. Bug and fix from
|
||||
the PATH set by command -p. Bug report and fix from
|
||||
ohki@gssm.otsuka.tsukuba.ac.jp
|
||||
|
||||
7/9
|
||||
@@ -8533,7 +8533,7 @@ shell.c
|
||||
shell startup
|
||||
|
||||
configure.in
|
||||
- new configure `enable' option --enable-exended-tglob-default, to
|
||||
- new configure `enable' option --enable-exended-glob-default, to
|
||||
set the initial default value of the `extglob' shell option
|
||||
|
||||
config.h
|
||||
@@ -8666,3 +8666,39 @@ error.c
|
||||
calling exit_shell (if set -e is enabled), so any exit or ERR
|
||||
trap gets the right value of $?. Suggestion from Stefano
|
||||
Lattarini <stefano.lattarini@gmail.com>
|
||||
|
||||
braces.c
|
||||
- fix expand_seqterm so that a non-zero-prefixed term that's longer
|
||||
than a zero-prefixed term determines the length of each term
|
||||
in the brace-expanded sequence. This means that things like
|
||||
{01..100} will have three digits in all the elements of the
|
||||
expanded list. Fixes bug reported by Jeff Haemer
|
||||
<jeffrey.haemer@gmail.com>
|
||||
|
||||
8/24
|
||||
----
|
||||
{arrayfunc,variables}.c
|
||||
- when inserting a value into an associative array using syntax like
|
||||
T=v where T is an already-declared associative array using key "0",
|
||||
make sure the key is in newly-allocated memory so it can be freed
|
||||
when the variable is unset. Fixes bug reported as redhat 518644
|
||||
by Jon Fairbairn
|
||||
|
||||
8/26
|
||||
----
|
||||
lib/readline/funmap.c
|
||||
- add "old-menu-complete" binding for rl_old_menu_complete
|
||||
|
||||
lib/readline/readline.h
|
||||
- add extern declaration for rl_old_menu_complete
|
||||
|
||||
subst.c
|
||||
- fix memory leak when processing ${!prefix@}. Need to dispose all
|
||||
words in the word list created from all matching variable. Fixes
|
||||
bug reported by muszi@muszi.kite.hu.
|
||||
|
||||
8/29
|
||||
----
|
||||
execute_cmd.c
|
||||
- add fflush(stdout) and fflush(stderr) to child coproc code before
|
||||
calling exit after execute_in_subshell
|
||||
|
||||
+1
-1
@@ -98,7 +98,7 @@ convert_var_to_assoc (var)
|
||||
oldval = value_cell (var);
|
||||
hash = assoc_create (0);
|
||||
if (oldval)
|
||||
assoc_insert (hash, "0", oldval);
|
||||
assoc_insert (hash, savestring ("0"), oldval);
|
||||
|
||||
FREE (value_cell (var));
|
||||
var_setassoc (var, hash);
|
||||
|
||||
+473
-384
File diff suppressed because it is too large
Load Diff
+284
-270
@@ -452,7 +452,7 @@ m4trace:configure.in:387: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
|
||||
m4trace:configure.in:387: -1- AC_SUBST_TRACE([OBJEXT])
|
||||
m4trace:configure.in:387: -1- m4_pattern_allow([^OBJEXT$])
|
||||
m4trace:configure.in:391: -1- _m4_warn([obsolete], [The macro `AC_MINIX' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/specific.m4:456: AC_MINIX is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/specific.m4:459: AC_MINIX is expanded from...
|
||||
configure.in:391: the top level])
|
||||
m4trace:configure.in:391: -1- AC_SUBST([CPP])
|
||||
m4trace:configure.in:391: -1- AC_SUBST_TRACE([CPP])
|
||||
@@ -504,7 +504,7 @@ m4trace:configure.in:391: -1- AC_DEFINE_TRACE_LITERAL([_MINIX])
|
||||
m4trace:configure.in:391: -1- m4_pattern_allow([^_MINIX$])
|
||||
m4trace:configure.in:391: -1- AH_OUTPUT([_MINIX], [/* Define to 1 if on MINIX. */
|
||||
#undef _MINIX])
|
||||
m4trace:configure.in:391: -1- AH_OUTPUT([__EXTENSIONS__], [/* Enable extensions on AIX 3, Interix. */
|
||||
m4trace:configure.in:391: -1- AH_OUTPUT([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */
|
||||
#ifndef _ALL_SOURCE
|
||||
# undef _ALL_SOURCE
|
||||
#endif
|
||||
@@ -580,9 +580,9 @@ m4trace:configure.in:491: -1- AC_SUBST([LDFLAGS_FOR_BUILD])
|
||||
m4trace:configure.in:491: -1- AC_SUBST_TRACE([LDFLAGS_FOR_BUILD])
|
||||
m4trace:configure.in:491: -1- m4_pattern_allow([^LDFLAGS_FOR_BUILD$])
|
||||
m4trace:configure.in:505: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1776: RL_LIB_READLINE_VERSION is expanded from...
|
||||
configure.in:505: the top level])
|
||||
m4trace:configure.in:505: -1- AC_DEFINE_TRACE_LITERAL([RL_READLINE_VERSION])
|
||||
@@ -685,14 +685,22 @@ m4trace:configure.in:641: -1- AH_OUTPUT([inline], [/* Define to `__inline__\' or
|
||||
#undef inline
|
||||
#endif])
|
||||
m4trace:configure.in:642: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
#if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
#elif ! defined __LITTLE_ENDIAN__
|
||||
# undef WORDS_BIGENDIAN
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# undef WORDS_BIGENDIAN
|
||||
# endif
|
||||
#endif])
|
||||
m4trace:configure.in:642: -1- AC_DEFINE_TRACE_LITERAL([WORDS_BIGENDIAN])
|
||||
m4trace:configure.in:642: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
|
||||
m4trace:configure.in:642: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD])
|
||||
m4trace:configure.in:642: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
|
||||
m4trace:configure.in:642: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD])
|
||||
m4trace:configure.in:643: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRINGIZE])
|
||||
m4trace:configure.in:643: -1- m4_pattern_allow([^HAVE_STRINGIZE$])
|
||||
m4trace:configure.in:643: -1- AH_OUTPUT([HAVE_STRINGIZE], [/* Define to 1 if cpp supports the ANSI @%:@ stringizing operator. */
|
||||
@@ -765,7 +773,7 @@ m4trace:configure.in:651: -1- AC_SUBST([MSGMERGE])
|
||||
m4trace:configure.in:651: -1- AC_SUBST_TRACE([MSGMERGE])
|
||||
m4trace:configure.in:651: -1- m4_pattern_allow([^MSGMERGE$])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/status.m4:1021: AC_OUTPUT_COMMANDS is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/status.m4:1022: AC_OUTPUT_COMMANDS is expanded from...
|
||||
aclocal.m4:3677: AM_PO_SUBDIRS is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
configure.in:651: the top level])
|
||||
@@ -823,10 +831,10 @@ m4trace:configure.in:651: -1- AC_SUBST([GLIBC21])
|
||||
m4trace:configure.in:651: -1- AC_SUBST_TRACE([GLIBC21])
|
||||
m4trace:configure.in:651: -1- m4_pattern_allow([^GLIBC21$])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2583: gt_INTDIV0 is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
@@ -836,10 +844,10 @@ m4trace:configure.in:651: -1- m4_pattern_allow([^INTDIV0_RAISES_SIGFPE$])
|
||||
m4trace:configure.in:651: -1- AH_OUTPUT([INTDIV0_RAISES_SIGFPE], [/* Define if integer division by zero raises signal SIGFPE. */
|
||||
#undef INTDIV0_RAISES_SIGFPE])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2685: jm_AC_HEADER_INTTYPES_H is expanded from...
|
||||
aclocal.m4:3986: jm_AC_TYPE_UINTMAX_T is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
@@ -851,10 +859,10 @@ m4trace:configure.in:651: -1- AH_OUTPUT([HAVE_INTTYPES_H_WITH_UINTMAX], [/* Defi
|
||||
declares uintmax_t. */
|
||||
#undef HAVE_INTTYPES_H_WITH_UINTMAX])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:3956: jm_AC_HEADER_STDINT_H is expanded from...
|
||||
aclocal.m4:3986: jm_AC_TYPE_UINTMAX_T is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
@@ -866,10 +874,10 @@ m4trace:configure.in:651: -1- AH_OUTPUT([HAVE_STDINT_H_WITH_UINTMAX], [/* Define
|
||||
uintmax_t. */
|
||||
#undef HAVE_STDINT_H_WITH_UINTMAX])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:4013: jm_AC_TYPE_UNSIGNED_LONG_LONG is expanded from...
|
||||
aclocal.m4:3986: jm_AC_TYPE_UINTMAX_T is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
@@ -889,10 +897,10 @@ m4trace:configure.in:651: -1- m4_pattern_allow([^HAVE_UINTMAX_T$])
|
||||
m4trace:configure.in:651: -1- AH_OUTPUT([HAVE_UINTMAX_T], [/* Define if you have the \'uintmax_t\' type in <stdint.h> or <inttypes.h>. */
|
||||
#undef HAVE_UINTMAX_T])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2658: gt_HEADER_INTTYPES_H is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
@@ -902,10 +910,10 @@ m4trace:configure.in:651: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
|
||||
m4trace:configure.in:651: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define if <inttypes.h> exists and doesn\'t clash with <sys/types.h>. */
|
||||
#undef HAVE_INTTYPES_H])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2713: gt_INTTYPES_PRI is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
@@ -981,20 +989,20 @@ m4trace:configure.in:651: -1- AH_OUTPUT([HAVE___ARGZ_NEXT], [/* Define to 1 if y
|
||||
m4trace:configure.in:651: -1- AH_OUTPUT([HAVE___FSETLOCKING], [/* Define to 1 if you have the `__fsetlocking\' function. */
|
||||
#undef HAVE___FSETLOCKING])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2491: AM_ICONV_LINK is expanded from...
|
||||
aclocal.m4:2546: AM_ICONV is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
configure.in:651: the top level])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2491: AM_ICONV_LINK is expanded from...
|
||||
aclocal.m4:2546: AM_ICONV is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
@@ -1011,9 +1019,9 @@ m4trace:configure.in:651: -1- AC_SUBST([LTLIBICONV])
|
||||
m4trace:configure.in:651: -1- AC_SUBST_TRACE([LTLIBICONV])
|
||||
m4trace:configure.in:651: -1- m4_pattern_allow([^LTLIBICONV$])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:2546: AM_ICONV is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
@@ -1023,10 +1031,10 @@ m4trace:configure.in:651: -1- m4_pattern_allow([^ICONV_CONST$])
|
||||
m4trace:configure.in:651: -1- AH_OUTPUT([ICONV_CONST], [/* Define as const if the declaration of iconv() needs const. */
|
||||
#undef ICONV_CONST])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2010: AM_LANGINFO_CODESET is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
@@ -1036,10 +1044,10 @@ m4trace:configure.in:651: -1- m4_pattern_allow([^HAVE_LANGINFO_CODESET$])
|
||||
m4trace:configure.in:651: -1- AH_OUTPUT([HAVE_LANGINFO_CODESET], [/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
|
||||
#undef HAVE_LANGINFO_CODESET])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2780: AM_LC_MESSAGES is expanded from...
|
||||
aclocal.m4:2369: AM_INTL_SUBDIR is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
@@ -1055,24 +1063,24 @@ m4trace:configure.in:651: -1- AC_SUBST([USE_NLS])
|
||||
m4trace:configure.in:651: -1- AC_SUBST_TRACE([USE_NLS])
|
||||
m4trace:configure.in:651: -1- m4_pattern_allow([^USE_NLS$])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
configure.in:651: the top level])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
configure.in:651: the top level])
|
||||
m4trace:configure.in:651: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:2081: AM_GNU_GETTEXT is expanded from...
|
||||
configure.in:651: the top level])
|
||||
m4trace:configure.in:651: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS])
|
||||
@@ -1265,6 +1273,9 @@ m4trace:configure.in:707: -1- AC_LIBSOURCE([vprint.c])
|
||||
m4trace:configure.in:707: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS vprint.$ac_objext"])
|
||||
m4trace:configure.in:707: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
||||
m4trace:configure.in:707: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
||||
m4trace:configure.in:711: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/types.m4:699: AC_TYPE_SIGNAL is expanded from...
|
||||
configure.in:711: the top level])
|
||||
m4trace:configure.in:711: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
|
||||
m4trace:configure.in:711: -1- m4_pattern_allow([^RETSIGTYPE$])
|
||||
m4trace:configure.in:711: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
|
||||
@@ -1526,57 +1537,57 @@ m4trace:configure.in:752: -1- AH_OUTPUT([HAVE_DECL_STRTOLD], [/* Define to 1 if
|
||||
don\'t. */
|
||||
#undef HAVE_DECL_STRTOLD])
|
||||
m4trace:configure.in:752: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2643: AC_CHECK_DECL is expanded from...
|
||||
../../lib/autoconf/general.m4:2665: AC_CHECK_DECLS is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2644: AC_CHECK_DECL is expanded from...
|
||||
../../lib/autoconf/general.m4:2666: AC_CHECK_DECLS is expanded from...
|
||||
configure.in:752: the top level])
|
||||
m4trace:configure.in:752: -1- AC_DEFINE_TRACE_LITERAL([STRTOLD_BROKEN])
|
||||
m4trace:configure.in:752: -1- m4_pattern_allow([^STRTOLD_BROKEN$])
|
||||
m4trace:configure.in:752: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_STRTOLD])
|
||||
m4trace:configure.in:752: -1- m4_pattern_allow([^HAVE_DECL_STRTOLD$])
|
||||
m4trace:configure.in:769: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:103: BASH_CHECK_DECL is expanded from...
|
||||
configure.in:769: the top level])
|
||||
m4trace:configure.in:770: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:103: BASH_CHECK_DECL is expanded from...
|
||||
configure.in:770: the top level])
|
||||
m4trace:configure.in:771: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:103: BASH_CHECK_DECL is expanded from...
|
||||
configure.in:771: the top level])
|
||||
m4trace:configure.in:772: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:103: BASH_CHECK_DECL is expanded from...
|
||||
configure.in:772: the top level])
|
||||
m4trace:configure.in:773: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:103: BASH_CHECK_DECL is expanded from...
|
||||
configure.in:773: the top level])
|
||||
m4trace:configure.in:774: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:103: BASH_CHECK_DECL is expanded from...
|
||||
configure.in:774: the top level])
|
||||
m4trace:configure.in:776: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */
|
||||
@@ -1683,19 +1694,19 @@ m4trace:configure.in:804: -1- AH_OUTPUT([HAVE_TOWUPPER], [/* Define to 1 if you
|
||||
m4trace:configure.in:804: -1- AH_OUTPUT([HAVE_ISWCTYPE], [/* Define to 1 if you have the `iswctype\' function. */
|
||||
#undef HAVE_ISWCTYPE])
|
||||
m4trace:configure.in:804: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:1689: BASH_CHECK_MULTIBYTE is expanded from...
|
||||
configure.in:804: the top level])
|
||||
m4trace:configure.in:804: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LANGINFO_CODESET])
|
||||
m4trace:configure.in:804: -1- m4_pattern_allow([^HAVE_LANGINFO_CODESET$])
|
||||
m4trace:configure.in:804: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:1689: BASH_CHECK_MULTIBYTE is expanded from...
|
||||
configure.in:804: the top level])
|
||||
m4trace:configure.in:804: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCHAR_T])
|
||||
@@ -1703,10 +1714,10 @@ m4trace:configure.in:804: -1- m4_pattern_allow([^HAVE_WCHAR_T$])
|
||||
m4trace:configure.in:804: -1- AH_OUTPUT([HAVE_WCHAR_T], [/* systems should define this type here */
|
||||
#undef HAVE_WCHAR_T])
|
||||
m4trace:configure.in:804: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:1689: BASH_CHECK_MULTIBYTE is expanded from...
|
||||
configure.in:804: the top level])
|
||||
m4trace:configure.in:804: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCTYPE_T])
|
||||
@@ -1714,10 +1725,10 @@ m4trace:configure.in:804: -1- m4_pattern_allow([^HAVE_WCTYPE_T$])
|
||||
m4trace:configure.in:804: -1- AH_OUTPUT([HAVE_WCTYPE_T], [/* systems should define this type here */
|
||||
#undef HAVE_WCTYPE_T])
|
||||
m4trace:configure.in:804: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:1689: BASH_CHECK_MULTIBYTE is expanded from...
|
||||
configure.in:804: the top level])
|
||||
m4trace:configure.in:804: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WINT_T])
|
||||
@@ -1737,7 +1748,7 @@ m4trace:configure.in:809: -1- AH_OUTPUT([HAVE_DLCLOSE], [/* Define to 1 if you h
|
||||
m4trace:configure.in:809: -1- AH_OUTPUT([HAVE_DLSYM], [/* Define to 1 if you have the `dlsym\' function. */
|
||||
#undef HAVE_DLSYM])
|
||||
m4trace:configure.in:813: -1- _m4_warn([obsolete], [The macro `AC_DECL_SYS_SIGLIST' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/specific.m4:62: AC_DECL_SYS_SIGLIST is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/specific.m4:63: AC_DECL_SYS_SIGLIST is expanded from...
|
||||
configure.in:813: the top level])
|
||||
m4trace:configure.in:813: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_SIGLIST])
|
||||
m4trace:configure.in:813: -1- m4_pattern_allow([^HAVE_DECL_SYS_SIGLIST$])
|
||||
@@ -1747,10 +1758,10 @@ m4trace:configure.in:813: -1- AH_OUTPUT([HAVE_DECL_SYS_SIGLIST], [/* Define to 1
|
||||
m4trace:configure.in:813: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_SIGLIST])
|
||||
m4trace:configure.in:813: -1- m4_pattern_allow([^HAVE_DECL_SYS_SIGLIST$])
|
||||
m4trace:configure.in:817: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:563: BASH_FUNC_INET_ATON is expanded from...
|
||||
configure.in:817: the top level])
|
||||
m4trace:configure.in:817: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INET_ATON])
|
||||
@@ -1768,9 +1779,9 @@ m4trace:configure.in:828: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
|
||||
m4trace:configure.in:828: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPEERNAME])
|
||||
m4trace:configure.in:828: -1- m4_pattern_allow([^HAVE_GETPEERNAME$])
|
||||
m4trace:configure.in:832: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:732: BASH_FUNC_GETHOSTBYNAME is expanded from...
|
||||
configure.in:832: the top level])
|
||||
m4trace:configure.in:832: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETHOSTBYNAME])
|
||||
@@ -1821,32 +1832,35 @@ m4trace:configure.in:843: -1- m4_pattern_allow([^time_t$])
|
||||
m4trace:configure.in:843: -1- AH_OUTPUT([time_t], [/* Define to `long\' if <sys/types.h> does not define. */
|
||||
#undef time_t])
|
||||
m4trace:configure.in:845: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:472: BASH_TYPE_LONG_LONG is expanded from...
|
||||
configure.in:845: the top level])
|
||||
m4trace:configure.in:845: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LONG_LONG])
|
||||
m4trace:configure.in:845: -1- m4_pattern_allow([^HAVE_LONG_LONG$])
|
||||
m4trace:configure.in:846: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:486: BASH_TYPE_UNSIGNED_LONG_LONG is expanded from...
|
||||
configure.in:846: the top level])
|
||||
m4trace:configure.in:846: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNSIGNED_LONG_LONG])
|
||||
m4trace:configure.in:846: -1- m4_pattern_allow([^HAVE_UNSIGNED_LONG_LONG$])
|
||||
m4trace:configure.in:848: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/types.m4:699: AC_TYPE_SIGNAL is expanded from...
|
||||
configure.in:848: the top level])
|
||||
m4trace:configure.in:848: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
|
||||
m4trace:configure.in:848: -1- m4_pattern_allow([^RETSIGTYPE$])
|
||||
m4trace:configure.in:848: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
|
||||
#undef RETSIGTYPE])
|
||||
m4trace:configure.in:849: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:537: BASH_TYPE_SIG_ATOMIC_T is expanded from...
|
||||
configure.in:849: the top level])
|
||||
m4trace:configure.in:849: -1- AC_DEFINE_TRACE_LITERAL([sig_atomic_t])
|
||||
@@ -1980,63 +1994,63 @@ m4trace:configure.in:871: -1- AH_OUTPUT([STAT_MACROS_BROKEN], [/* Define to 1 if
|
||||
m4trace:configure.in:876: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HASH_BANG_EXEC])
|
||||
m4trace:configure.in:876: -1- m4_pattern_allow([^HAVE_HASH_BANG_EXEC$])
|
||||
m4trace:configure.in:881: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:549: BASH_FUNC_LSTAT is expanded from...
|
||||
configure.in:881: the top level])
|
||||
m4trace:configure.in:881: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LSTAT])
|
||||
m4trace:configure.in:881: -1- m4_pattern_allow([^HAVE_LSTAT$])
|
||||
m4trace:configure.in:885: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1890: BASH_FUNC_CTYPE_NONASCII is expanded from...
|
||||
configure.in:885: the top level])
|
||||
m4trace:configure.in:885: -1- AC_DEFINE_TRACE_LITERAL([CTYPE_NON_ASCII])
|
||||
m4trace:configure.in:885: -1- m4_pattern_allow([^CTYPE_NON_ASCII$])
|
||||
m4trace:configure.in:886: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:270: BASH_FUNC_DUP2_CLOEXEC_CHECK is expanded from...
|
||||
configure.in:886: the top level])
|
||||
m4trace:configure.in:886: -1- AC_DEFINE_TRACE_LITERAL([DUP2_BROKEN])
|
||||
m4trace:configure.in:886: -1- m4_pattern_allow([^DUP2_BROKEN$])
|
||||
m4trace:configure.in:887: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1235: BASH_SYS_PGRP_SYNC is expanded from...
|
||||
configure.in:887: the top level])
|
||||
m4trace:configure.in:887: -1- AC_DEFINE_TRACE_LITERAL([PGRP_PIPE])
|
||||
m4trace:configure.in:887: -1- m4_pattern_allow([^PGRP_PIPE$])
|
||||
m4trace:configure.in:888: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1195: BASH_SYS_SIGNAL_VINTAGE is expanded from...
|
||||
configure.in:888: the top level])
|
||||
m4trace:configure.in:888: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2517: AC_LINK_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2518: AC_LINK_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1195: BASH_SYS_SIGNAL_VINTAGE is expanded from...
|
||||
configure.in:888: the top level])
|
||||
m4trace:configure.in:888: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2517: AC_LINK_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2517: AC_LINK_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2518: AC_LINK_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2518: AC_LINK_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1195: BASH_SYS_SIGNAL_VINTAGE is expanded from...
|
||||
configure.in:888: the top level])
|
||||
m4trace:configure.in:888: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_SIGNALS])
|
||||
@@ -2046,42 +2060,42 @@ m4trace:configure.in:888: -1- m4_pattern_allow([^HAVE_BSD_SIGNALS$])
|
||||
m4trace:configure.in:888: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USG_SIGHOLD])
|
||||
m4trace:configure.in:888: -1- m4_pattern_allow([^HAVE_USG_SIGHOLD$])
|
||||
m4trace:configure.in:891: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:253: BASH_SYS_ERRLIST is expanded from...
|
||||
configure.in:891: the top level])
|
||||
m4trace:configure.in:891: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_ERRLIST])
|
||||
m4trace:configure.in:891: -1- m4_pattern_allow([^HAVE_SYS_ERRLIST$])
|
||||
m4trace:configure.in:892: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:211: BASH_SYS_SIGLIST is expanded from...
|
||||
configure.in:892: the top level])
|
||||
m4trace:configure.in:892: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_SIGLIST])
|
||||
m4trace:configure.in:892: -1- m4_pattern_allow([^HAVE_SYS_SIGLIST$])
|
||||
m4trace:configure.in:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:167: BASH_DECL_UNDER_SYS_SIGLIST is expanded from...
|
||||
aclocal.m4:184: BASH_UNDER_SYS_SIGLIST is expanded from...
|
||||
configure.in:893: the top level])
|
||||
m4trace:configure.in:893: -1- AC_DEFINE_TRACE_LITERAL([UNDER_SYS_SIGLIST_DECLARED])
|
||||
m4trace:configure.in:893: -1- m4_pattern_allow([^UNDER_SYS_SIGLIST_DECLARED$])
|
||||
m4trace:configure.in:893: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:184: BASH_UNDER_SYS_SIGLIST is expanded from...
|
||||
configure.in:893: the top level])
|
||||
m4trace:configure.in:893: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNDER_SYS_SIGLIST])
|
||||
m4trace:configure.in:893: -1- m4_pattern_allow([^HAVE_UNDER_SYS_SIGLIST$])
|
||||
m4trace:configure.in:896: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:366: BASH_TYPE_SIGHANDLER is expanded from...
|
||||
configure.in:896: the top level])
|
||||
m4trace:configure.in:896: -1- AC_DEFINE_TRACE_LITERAL([VOID_SIGHANDLER])
|
||||
@@ -2103,18 +2117,18 @@ m4trace:configure.in:903: -1- m4_pattern_allow([^HAVE_SOCKLEN_T$])
|
||||
m4trace:configure.in:903: -1- AC_DEFINE_TRACE_LITERAL([socklen_t])
|
||||
m4trace:configure.in:903: -1- m4_pattern_allow([^socklen_t$])
|
||||
m4trace:configure.in:905: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:507: BASH_TYPE_RLIMIT is expanded from...
|
||||
configure.in:905: the top level])
|
||||
m4trace:configure.in:905: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2461: AC_COMPILE_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2462: AC_COMPILE_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:507: BASH_TYPE_RLIMIT is expanded from...
|
||||
configure.in:905: the top level])
|
||||
m4trace:configure.in:905: -1- AC_DEFINE_TRACE_LITERAL([RLIMTYPE])
|
||||
@@ -2126,42 +2140,42 @@ m4trace:configure.in:908: -2- m4_pattern_allow([^TERMIOS_LDISC$])
|
||||
m4trace:configure.in:909: -2- AC_DEFINE_TRACE_LITERAL([TERMIO_LDISC])
|
||||
m4trace:configure.in:909: -2- m4_pattern_allow([^TERMIO_LDISC$])
|
||||
m4trace:configure.in:910: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1042: BASH_STRUCT_DIRENT_D_INO is expanded from...
|
||||
configure.in:910: the top level])
|
||||
m4trace:configure.in:910: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_INO])
|
||||
m4trace:configure.in:910: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_INO$])
|
||||
m4trace:configure.in:911: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1075: BASH_STRUCT_DIRENT_D_FILENO is expanded from...
|
||||
configure.in:911: the top level])
|
||||
m4trace:configure.in:911: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_FILENO])
|
||||
m4trace:configure.in:911: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_FILENO$])
|
||||
m4trace:configure.in:912: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1108: BASH_STRUCT_DIRENT_D_NAMLEN is expanded from...
|
||||
configure.in:912: the top level])
|
||||
m4trace:configure.in:912: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_NAMLEN])
|
||||
m4trace:configure.in:912: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_NAMLEN$])
|
||||
m4trace:configure.in:913: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1173: BASH_STRUCT_WINSIZE is expanded from...
|
||||
configure.in:913: the top level])
|
||||
m4trace:configure.in:913: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2461: AC_COMPILE_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2462: AC_COMPILE_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1173: BASH_STRUCT_WINSIZE is expanded from...
|
||||
configure.in:913: the top level])
|
||||
m4trace:configure.in:913: -1- AC_DEFINE_TRACE_LITERAL([STRUCT_WINSIZE_IN_SYS_IOCTL])
|
||||
@@ -2202,25 +2216,25 @@ m4trace:configure.in:917: -1- AH_OUTPUT([HAVE_TZNAME], [/* Define to 1 if you do
|
||||
m4trace:configure.in:918: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_TIMEZONE])
|
||||
m4trace:configure.in:918: -1- m4_pattern_allow([^HAVE_STRUCT_TIMEZONE$])
|
||||
m4trace:configure.in:921: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:299: BASH_FUNC_STRSIGNAL is expanded from...
|
||||
configure.in:921: the top level])
|
||||
m4trace:configure.in:921: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRSIGNAL])
|
||||
m4trace:configure.in:921: -1- m4_pattern_allow([^HAVE_STRSIGNAL$])
|
||||
m4trace:configure.in:922: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:313: BASH_FUNC_OPENDIR_CHECK is expanded from...
|
||||
configure.in:922: the top level])
|
||||
m4trace:configure.in:922: -1- AC_DEFINE_TRACE_LITERAL([OPENDIR_NOT_ROBUST])
|
||||
m4trace:configure.in:922: -1- m4_pattern_allow([^OPENDIR_NOT_ROBUST$])
|
||||
m4trace:configure.in:923: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:683: BASH_FUNC_ULIMIT_MAXFDS is expanded from...
|
||||
configure.in:923: the top level])
|
||||
m4trace:configure.in:923: -1- AC_DEFINE_TRACE_LITERAL([ULIMIT_MAXFDS])
|
||||
@@ -2237,17 +2251,17 @@ m4trace:configure.in:924: -1- AH_OUTPUT([HAVE_DECL_FPURGE], [/* Define to 1 if y
|
||||
m4trace:configure.in:924: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_FPURGE])
|
||||
m4trace:configure.in:924: -1- m4_pattern_allow([^HAVE_DECL_FPURGE$])
|
||||
m4trace:configure.in:925: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:579: BASH_FUNC_GETENV is expanded from...
|
||||
configure.in:925: the top level])
|
||||
m4trace:configure.in:925: -1- AC_DEFINE_TRACE_LITERAL([CAN_REDEFINE_GETENV])
|
||||
m4trace:configure.in:925: -1- m4_pattern_allow([^CAN_REDEFINE_GETENV$])
|
||||
m4trace:configure.in:927: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:702: BASH_FUNC_GETCWD is expanded from...
|
||||
configure.in:927: the top level])
|
||||
m4trace:configure.in:927: -1- AC_DEFINE_TRACE_LITERAL([GETCWD_BROKEN])
|
||||
@@ -2257,26 +2271,26 @@ m4trace:configure.in:927: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS getcwd.$ac_
|
||||
m4trace:configure.in:927: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
||||
m4trace:configure.in:927: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
||||
m4trace:configure.in:929: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:778: BASH_FUNC_POSIX_SETJMP is expanded from...
|
||||
configure.in:929: the top level])
|
||||
m4trace:configure.in:929: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_SIGSETJMP])
|
||||
m4trace:configure.in:929: -1- m4_pattern_allow([^HAVE_POSIX_SIGSETJMP$])
|
||||
m4trace:configure.in:930: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:829: BASH_FUNC_STRCOLL is expanded from...
|
||||
configure.in:930: the top level])
|
||||
m4trace:configure.in:930: -1- AC_DEFINE_TRACE_LITERAL([STRCOLL_BROKEN])
|
||||
m4trace:configure.in:930: -1- m4_pattern_allow([^STRCOLL_BROKEN$])
|
||||
m4trace:configure.in:936: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:624: BASH_FUNC_STD_PUTENV is expanded from...
|
||||
configure.in:936: the top level])
|
||||
m4trace:configure.in:936: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_PUTENV])
|
||||
@@ -2284,10 +2298,10 @@ m4trace:configure.in:936: -1- m4_pattern_allow([^HAVE_STD_PUTENV$])
|
||||
m4trace:configure.in:938: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_PUTENV])
|
||||
m4trace:configure.in:938: -1- m4_pattern_allow([^HAVE_STD_PUTENV$])
|
||||
m4trace:configure.in:941: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2526: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2527: AC_TRY_LINK is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
|
||||
aclocal.m4:654: BASH_FUNC_STD_UNSETENV is expanded from...
|
||||
configure.in:941: the top level])
|
||||
m4trace:configure.in:941: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_UNSETENV])
|
||||
@@ -2295,33 +2309,33 @@ m4trace:configure.in:941: -1- m4_pattern_allow([^HAVE_STD_UNSETENV$])
|
||||
m4trace:configure.in:943: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STD_UNSETENV])
|
||||
m4trace:configure.in:943: -1- m4_pattern_allow([^HAVE_STD_UNSETENV$])
|
||||
m4trace:configure.in:946: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:878: BASH_FUNC_PRINTF_A_FORMAT is expanded from...
|
||||
configure.in:946: the top level])
|
||||
m4trace:configure.in:946: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PRINTF_A_FORMAT])
|
||||
m4trace:configure.in:946: -1- m4_pattern_allow([^HAVE_PRINTF_A_FORMAT$])
|
||||
m4trace:configure.in:949: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1297: BASH_SYS_REINSTALL_SIGHANDLERS is expanded from...
|
||||
configure.in:949: the top level])
|
||||
m4trace:configure.in:949: -1- AC_DEFINE_TRACE_LITERAL([MUST_REINSTALL_SIGHANDLERS])
|
||||
m4trace:configure.in:949: -1- m4_pattern_allow([^MUST_REINSTALL_SIGHANDLERS$])
|
||||
m4trace:configure.in:950: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1356: BASH_SYS_JOB_CONTROL_MISSING is expanded from...
|
||||
configure.in:950: the top level])
|
||||
m4trace:configure.in:950: -1- AC_DEFINE_TRACE_LITERAL([JOB_CONTROL_MISSING])
|
||||
m4trace:configure.in:950: -1- m4_pattern_allow([^JOB_CONTROL_MISSING$])
|
||||
m4trace:configure.in:951: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1415: BASH_SYS_NAMED_PIPES is expanded from...
|
||||
configure.in:951: the top level])
|
||||
m4trace:configure.in:951: -1- AC_DEFINE_TRACE_LITERAL([NAMED_PIPES_MISSING])
|
||||
@@ -2331,33 +2345,33 @@ m4trace:configure.in:954: -1- m4_pattern_allow([^GWINSZ_IN_SYS_IOCTL$])
|
||||
m4trace:configure.in:954: -1- AH_OUTPUT([GWINSZ_IN_SYS_IOCTL], [/* Define to 1 if `TIOCGWINSZ\' requires <sys/ioctl.h>. */
|
||||
#undef GWINSZ_IN_SYS_IOCTL])
|
||||
m4trace:configure.in:955: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1496: BASH_HAVE_TIOCSTAT is expanded from...
|
||||
configure.in:955: the top level])
|
||||
m4trace:configure.in:955: -1- AC_DEFINE_TRACE_LITERAL([TIOCSTAT_IN_SYS_IOCTL])
|
||||
m4trace:configure.in:955: -1- m4_pattern_allow([^TIOCSTAT_IN_SYS_IOCTL$])
|
||||
m4trace:configure.in:956: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1508: BASH_HAVE_FIONREAD is expanded from...
|
||||
configure.in:956: the top level])
|
||||
m4trace:configure.in:956: -1- AC_DEFINE_TRACE_LITERAL([FIONREAD_IN_SYS_IOCTL])
|
||||
m4trace:configure.in:956: -1- m4_pattern_allow([^FIONREAD_IN_SYS_IOCTL$])
|
||||
m4trace:configure.in:958: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1934: BASH_CHECK_WCONTINUED is expanded from...
|
||||
configure.in:958: the top level])
|
||||
m4trace:configure.in:958: -1- AC_DEFINE_TRACE_LITERAL([WCONTINUED_BROKEN])
|
||||
m4trace:configure.in:958: -1- m4_pattern_allow([^WCONTINUED_BROKEN$])
|
||||
m4trace:configure.in:961: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1526: BASH_CHECK_SPEED_T is expanded from...
|
||||
configure.in:961: the top level])
|
||||
m4trace:configure.in:961: -1- AC_DEFINE_TRACE_LITERAL([SPEED_T_IN_SYS_TYPES])
|
||||
@@ -2365,9 +2379,9 @@ m4trace:configure.in:961: -1- m4_pattern_allow([^SPEED_T_IN_SYS_TYPES$])
|
||||
m4trace:configure.in:962: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPW_DECLS])
|
||||
m4trace:configure.in:962: -1- m4_pattern_allow([^HAVE_GETPW_DECLS$])
|
||||
m4trace:configure.in:963: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2591: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2592: AC_TRY_RUN is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1653: BASH_CHECK_RTSIGS is expanded from...
|
||||
configure.in:963: the top level])
|
||||
m4trace:configure.in:963: -1- AC_DEFINE_TRACE_LITERAL([UNUSABLE_RT_SIGNALS])
|
||||
@@ -2376,18 +2390,18 @@ m4trace:configure.in:964: -1- AC_SUBST([SIGLIST_O])
|
||||
m4trace:configure.in:964: -1- AC_SUBST_TRACE([SIGLIST_O])
|
||||
m4trace:configure.in:964: -1- m4_pattern_allow([^SIGLIST_O$])
|
||||
m4trace:configure.in:968: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1605: BASH_CHECK_KERNEL_RLIMIT is expanded from...
|
||||
configure.in:968: the top level])
|
||||
m4trace:configure.in:968: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2461: AC_COMPILE_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2469: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:508: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:2462: AC_COMPILE_IFELSE is expanded from...
|
||||
../../lib/autoconf/general.m4:2470: AC_TRY_COMPILE is expanded from...
|
||||
../../lib/m4sugar/m4sh.m4:505: AS_IF is expanded from...
|
||||
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
|
||||
aclocal.m4:1605: BASH_CHECK_KERNEL_RLIMIT is expanded from...
|
||||
configure.in:968: the top level])
|
||||
m4trace:configure.in:968: -1- AC_DEFINE_TRACE_LITERAL([RLIMIT_NEEDS_KERNEL])
|
||||
|
||||
+7
-2
@@ -1967,7 +1967,7 @@ execute_coproc (command, pipe_in, pipe_out, fds_to_close)
|
||||
int pipe_in, pipe_out;
|
||||
struct fd_bitmap *fds_to_close;
|
||||
{
|
||||
int rpipe[2], wpipe[2];
|
||||
int rpipe[2], wpipe[2], estat;
|
||||
pid_t coproc_pid;
|
||||
Coproc *cp;
|
||||
char *tcmd;
|
||||
@@ -1996,7 +1996,12 @@ execute_coproc (command, pipe_in, pipe_out, fds_to_close)
|
||||
close (rpipe[0]);
|
||||
close (wpipe[1]);
|
||||
|
||||
exit (execute_in_subshell (command, 1, wpipe[0], rpipe[1], fds_to_close));
|
||||
estat = execute_in_subshell (command, 1, wpipe[0], rpipe[1], fds_to_close);
|
||||
|
||||
fflush (stdout);
|
||||
fflush (stderr);
|
||||
|
||||
exit (estat);
|
||||
}
|
||||
|
||||
close (rpipe[1]);
|
||||
|
||||
@@ -883,9 +883,29 @@ execute_command_internal (command, asynchronous, pipe_in, pipe_out,
|
||||
|
||||
#if defined (DPAREN_ARITHMETIC)
|
||||
case cm_arith:
|
||||
was_error_trap = signal_is_trapped (ERROR_TRAP) && signal_is_ignored (ERROR_TRAP) == 0;
|
||||
if (ignore_return)
|
||||
command->value.Arith->flags |= CMD_IGNORE_RETURN;
|
||||
line_number_for_err_trap = save_line_number = line_number;
|
||||
exec_result = execute_arith_command (command->value.Arith);
|
||||
line_number = save_line_number;
|
||||
|
||||
if (was_error_trap && ignore_return == 0 && invert == 0 && exec_result != EXECUTION_SUCCESS)
|
||||
{
|
||||
last_command_exit_value = exec_result;
|
||||
save_line_number = line_number;
|
||||
line_number = line_number_for_err_trap;
|
||||
run_error_trap ();
|
||||
line_number = save_line_number;
|
||||
}
|
||||
|
||||
if (ignore_return == 0 && invert == 0 && exit_immediately_on_error && exec_result != EXECUTION_SUCCESS)
|
||||
{
|
||||
last_command_exit_value = exec_result;
|
||||
run_pending_traps ();
|
||||
jump_to_top_level (ERREXIT);
|
||||
}
|
||||
|
||||
break;
|
||||
#endif
|
||||
|
||||
|
||||
@@ -2226,12 +2226,12 @@ rl_filename_completion_function (text, state)
|
||||
}
|
||||
|
||||
/* An initial implementation of a menu completion function a la tcsh. The
|
||||
first time (if the last readline command was not rl_menu_complete), we
|
||||
first time (if the last readline command was not rl_old_menu_complete), we
|
||||
generate the list of matches. This code is very similar to the code in
|
||||
rl_complete_internal -- there should be a way to combine the two. Then,
|
||||
for each item in the list of matches, we insert the match in an undoable
|
||||
fashion, with the appropriate character appended (this happens on the
|
||||
second and subsequent consecutive calls to rl_menu_complete). When we
|
||||
second and subsequent consecutive calls to rl_old_menu_complete). When we
|
||||
hit the end of the match list, we restore the original unmatched text,
|
||||
ring the bell, and reset the counter to zero. */
|
||||
int
|
||||
@@ -2251,7 +2251,7 @@ rl_old_menu_complete (count, invoking_key)
|
||||
|
||||
/* The first time through, we generate the list of matches and set things
|
||||
up to insert them. */
|
||||
if (rl_last_func != rl_menu_complete)
|
||||
if (rl_last_func != rl_old_menu_complete)
|
||||
{
|
||||
/* Clean up from previous call, if any. */
|
||||
FREE (orig_text);
|
||||
|
||||
@@ -111,6 +111,7 @@ static const FUNMAP default_funmap[] = {
|
||||
{ "non-incremental-reverse-search-history", rl_noninc_reverse_search },
|
||||
{ "non-incremental-forward-search-history-again", rl_noninc_forward_search_again },
|
||||
{ "non-incremental-reverse-search-history-again", rl_noninc_reverse_search_again },
|
||||
{ "old-menu-complete", rl_old_menu_complete },
|
||||
{ "overwrite-mode", rl_overwrite_mode },
|
||||
#ifdef __CYGWIN__
|
||||
{ "paste-from-clipboard", rl_paste_from_clipboard },
|
||||
|
||||
@@ -151,6 +151,7 @@ extern int rl_dump_variables PARAMS((int, int));
|
||||
extern int rl_complete PARAMS((int, int));
|
||||
extern int rl_possible_completions PARAMS((int, int));
|
||||
extern int rl_insert_completions PARAMS((int, int));
|
||||
extern int rl_old_menu_complete PARAMS((int, int));
|
||||
extern int rl_menu_complete PARAMS((int, int));
|
||||
extern int rl_backward_menu_complete PARAMS((int, int));
|
||||
|
||||
|
||||
@@ -6768,7 +6768,7 @@ parameter_brace_expand (string, indexp, quoted, quoted_dollar_atp, contains_doll
|
||||
*contains_dollar_at = 1;
|
||||
}
|
||||
free (x);
|
||||
free (xlist);
|
||||
dispose_words (xlist);
|
||||
free (temp1);
|
||||
*indexp = sindex;
|
||||
|
||||
|
||||
@@ -75,6 +75,7 @@ bin . bin sbin sbin bin bin ucb
|
||||
\usr/local/bin . \bin \sbin \usr/sbin \usr/bin \bin \usr/ucb
|
||||
\usr\local\bin . \bin \sbin \usr\sbin \usr\bin \bin \usr\ucb
|
||||
\usr\local\bin . \bin \sbin \usr\sbin \usr\bin \bin \usr\ucb
|
||||
([a]=1)
|
||||
|
||||
qux foo
|
||||
/usr/local/bin/qux /usr/sbin/foo
|
||||
|
||||
+7
-1
@@ -166,6 +166,13 @@ zecho "${xpath[@]/\//\\}"
|
||||
zecho "${xpath[@]//\//\\}"
|
||||
zecho "${xpath[@]//[\/]/\\}"
|
||||
|
||||
# test assignment to key "0"
|
||||
unset T
|
||||
declare -A T
|
||||
T='([a]=1)'
|
||||
echo "${T[@]}"
|
||||
unset T
|
||||
|
||||
${THIS_SH} ./assoc1.sub
|
||||
|
||||
${THIS_SH} ./assoc2.sub
|
||||
@@ -177,4 +184,3 @@ ${THIS_SH} ./assoc4.sub
|
||||
${THIS_SH} ./assoc5.sub
|
||||
|
||||
${THIS_SH} ./assoc6.sub
|
||||
|
||||
|
||||
+1
-1
@@ -2226,7 +2226,7 @@ bind_variable_internal (name, value, table, hflags, aflags)
|
||||
}
|
||||
else if (assoc_p (entry))
|
||||
{
|
||||
assoc_insert (assoc_cell (entry), "0", newval);
|
||||
assoc_insert (assoc_cell (entry), savestring ("0"), newval);
|
||||
free (newval);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user