Mercurial > hg > octave-kai > gnulib-hg
annotate m4/ChangeLog @ 6184:f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
old glibc regex code mishandles strings longer than 2**31 bytes.
This patch fixes this when the regex code is used in gnulib
(i.e., outside glibc).
* lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
governing whether the rest of this patch is active. By default,
the macro is disabled and the patch has no effect.
(regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
(__re_idx_t, __re_size_t, __re_long_size_t): New types.
(struct re_pattern_buffer, re_search, re_search_2, re_match):
(re_match_2, re_set_registers): Use the new types.
* lib/regex_internal.h (Idx, re_hashval_t): New types.
(REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
New macros.
(re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
(re_string_context_at, bin_tree_t, re_dfastate_t):
(struct re_state_table_entry, state_array_t, re_sub_match_last_t):
(re_sub_match_top_t, re_match_context_t, re_sift_context_t):
(struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
(re_string_char_size_at, re_string_wchar_at):
(re_string_elem_size_at):
Use the new types and macros to port to 64-bit hosts.
Use unsigned types for internal values, so that the code
mostly works even for arrays larger than SSIZE_MAX.
* lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
(search_duplicated_node, calc_eclosure_iter, fetch_number):
(parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
(build_equiv_class, build_charclass, re_compile_fastmap_iter):
(free_dfa_content, create_initial_state, optimize_utf8, analyze):
(optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
(calc_inveclosure, parse_dup_op, build_range_exp):
(build_collating_symbol, parse_bracket_exp, build_charclass_op):
(fetch_number, create_token_tree, mark_opt_subexp):
Likewise.
* lib/regex_internal.c
(re_string_construct_common, create_ci_newstate):
(create_cd_newstate, re_string_allocate, re_string_construct):
(re_string_realloc_buffers, build_wcs_upper_buffer):
(re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
(re_string_reconstruct, re_string_peek_byte_case):
(re_string_fetch_byte_case, re_string_context_at):
(re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
(re_node_set_init_copy, re_node_set_add_intersect):
(re_node_set_init_union, re_node_set_merge, re_node_set_insert):
(re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
(re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
(re_acquire_state, re_acquire_state_context, register_state):
Likewise.
* lib/regex.c
(match_ctx_init, match_ctx_add_entry, search_cur_bkref_entry):
(match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
(re_search_internal, re_search_2_stub, re_search_stub)
(re_copy_regs, check_matching, check_halt_state_context, update_regs):
(push_fail_stack, sift_states_iter_mb, build_sifted_states):
(update_cur_sifted_state, check_dst_limits):
(check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
(check_subexp_limits, sift_states_bkref, merge_state_array):
(check_subexp_matching_top, get_subexp, get_subexp_sub):
(find_subexp_node, check_arrival, check_arrival_add_next_nodes):
(check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
(expand_bkref_cache, check_node_accept_bytes):
(group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
(re_search, re_match_2, re_search_2, prune_impossible_nodes):
(acquire_init_state_context, check_halt_node_context):
(proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
(sift_states_backward, clean_state_log_if_needed):
(sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
(find_recover_state, transit_state_sb, transit_state_mb):
(transit_state_bkref, build_trtable, match_ctx_clean):
Likewise.
* lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
to work around an assumption that REG_MISSING is negative.
* m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
_REGEX_LARGE_OFFSETS). Test for regoff_t/off_t bug in 64-bit
and large-file glibc and in 32-bit large-file Solaris.
* config/srclist.txt: Add glibc bug 1281.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 31 Aug 2005 22:51:09 +0000 |
parents | 526c97a9fd70 |
children | 2146c09cc8f4 |
rev | line source |
---|---|
6184
f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6177
diff
changeset
|
1 2005-08-31 Paul Eggert <eggert@cs.ucla.edu> |
f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6177
diff
changeset
|
2 |
f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6177
diff
changeset
|
3 * regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define |
f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6177
diff
changeset
|
4 _REGEX_LARGE_OFFSETS). Test for regoff_t/off_t bug in 64-bit |
f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6177
diff
changeset
|
5 and large-file glibc and in 32-bit large-file Solaris. |
f1728546eca4
On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6177
diff
changeset
|
6 |
6177
526c97a9fd70
Put all dummy definitions of gnulib-tool's specification macros into
Bruno Haible <bruno@clisp.org>
parents:
6155
diff
changeset
|
7 2005-08-28 Bruno Haible <bruno@clisp.org> |
526c97a9fd70
Put all dummy definitions of gnulib-tool's specification macros into
Bruno Haible <bruno@clisp.org>
parents:
6155
diff
changeset
|
8 |
526c97a9fd70
Put all dummy definitions of gnulib-tool's specification macros into
Bruno Haible <bruno@clisp.org>
parents:
6155
diff
changeset
|
9 * gnulib-tool.m4: New file. |
526c97a9fd70
Put all dummy definitions of gnulib-tool's specification macros into
Bruno Haible <bruno@clisp.org>
parents:
6155
diff
changeset
|
10 |
6139 | 11 2005-08-27 Jim Meyering <jim@meyering.net> |
12 | |
6148 | 13 * stdlib-safer.m4: New file. From coreutils. |
14 * stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h. | |
6139 | 15 * fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the |
16 AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ. | |
17 * unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c. | |
6144 | 18 Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list. |
6139 | 19 |
6124
2e48e4301246
* getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
Simon Josefsson <simon@josefsson.org>
parents:
6122
diff
changeset
|
20 2005-08-24 Simon Josefsson <jas@extundo.com> |
2e48e4301246
* getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
Simon Josefsson <simon@josefsson.org>
parents:
6122
diff
changeset
|
21 |
2e48e4301246
* getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
Simon Josefsson <simon@josefsson.org>
parents:
6122
diff
changeset
|
22 * getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and |
2e48e4301246
* getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
Simon Josefsson <simon@josefsson.org>
parents:
6122
diff
changeset
|
23 __fsetlocking. |
2e48e4301246
* getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
Simon Josefsson <simon@josefsson.org>
parents:
6122
diff
changeset
|
24 |
6121
61e0b7c597d5
* m4/regex.m4: Add AC_PREREQ(2.50).
Paul Eggert <eggert@cs.ucla.edu>
parents:
6120
diff
changeset
|
25 2005-08-25 Stepan Kasal <kasal@ucw.cz> |
61e0b7c597d5
* m4/regex.m4: Add AC_PREREQ(2.50).
Paul Eggert <eggert@cs.ucla.edu>
parents:
6120
diff
changeset
|
26 |
61e0b7c597d5
* m4/regex.m4: Add AC_PREREQ(2.50).
Paul Eggert <eggert@cs.ucla.edu>
parents:
6120
diff
changeset
|
27 * regex.m4: Add AC_PREREQ(2.50). |
61e0b7c597d5
* m4/regex.m4: Add AC_PREREQ(2.50).
Paul Eggert <eggert@cs.ucla.edu>
parents:
6120
diff
changeset
|
28 (gl_REGEX): If --with-included-regex was given, skip the autodetection. |
61e0b7c597d5
* m4/regex.m4: Add AC_PREREQ(2.50).
Paul Eggert <eggert@cs.ucla.edu>
parents:
6120
diff
changeset
|
29 |
6120 | 30 2005-08-25 Bruno Haible <bruno@clisp.org> |
31 | |
6122
eb03242e56c7
Use m4_pushdef/m4_popdef and AS_TR_SH, AS_TR_CPP.
Bruno Haible <bruno@clisp.org>
parents:
6121
diff
changeset
|
32 * minmax.m4: Require autoconf 2.52. |
eb03242e56c7
Use m4_pushdef/m4_popdef and AS_TR_SH, AS_TR_CPP.
Bruno Haible <bruno@clisp.org>
parents:
6121
diff
changeset
|
33 (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead |
eb03242e56c7
Use m4_pushdef/m4_popdef and AS_TR_SH, AS_TR_CPP.
Bruno Haible <bruno@clisp.org>
parents:
6121
diff
changeset
|
34 of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust |
eb03242e56c7
Use m4_pushdef/m4_popdef and AS_TR_SH, AS_TR_CPP.
Bruno Haible <bruno@clisp.org>
parents:
6121
diff
changeset
|
35 alternatives of translit over the alphabet. |
eb03242e56c7
Use m4_pushdef/m4_popdef and AS_TR_SH, AS_TR_CPP.
Bruno Haible <bruno@clisp.org>
parents:
6121
diff
changeset
|
36 Based on a patch from Stepan Kasal <kasal@ucw.cz>. |
6120 | 37 |
6102
781f0829b119
* srclist.txt: Comment out lib/regex.c. Add glibc bug 1238.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6096
diff
changeset
|
38 2005-08-24 Paul Eggert <eggert@cs.ucla.edu> |
781f0829b119
* srclist.txt: Comment out lib/regex.c. Add glibc bug 1238.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6096
diff
changeset
|
39 |
781f0829b119
* srclist.txt: Comment out lib/regex.c. Add glibc bug 1238.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6096
diff
changeset
|
40 * regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing |
781f0829b119
* srclist.txt: Comment out lib/regex.c. Add glibc bug 1238.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6096
diff
changeset
|
41 for GNU regex features. |
781f0829b119
* srclist.txt: Comment out lib/regex.c. Add glibc bug 1238.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6096
diff
changeset
|
42 |
6089 | 43 2005-08-24 Jim Meyering <jim@meyering.net> |
44 | |
6096 | 45 Sync from coreutils. |
46 * fcntl-safer.m4: New file. | |
47 | |
6089 | 48 * xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source |
49 and object files for this module. | |
50 | |
6083
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
51 2005-08-23 Paul Eggert <eggert@cs.ucla.edu> |
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
52 |
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
53 * regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used. |
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
54 All contents moved to gl_REGEX. |
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
55 (gl_REGEX): Don't bother checking whether lib/regex.c exists; |
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
56 assume that it does. |
7f315cf586d6
* regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6080
diff
changeset
|
57 |
6080
371903e6dfee
* m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6058
diff
changeset
|
58 2005-08-20 Bruno Haible <bruno@clisp.org> |
371903e6dfee
* m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6058
diff
changeset
|
59 |
371903e6dfee
* m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6058
diff
changeset
|
60 * regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE. |
371903e6dfee
* m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6058
diff
changeset
|
61 |
6058 | 62 2005-08-17 Bruno Haible <bruno@clisp.org> |
63 | |
64 * strcasestr.m4: New file. | |
65 | |
6057
a878a8d58823
Make strstr() work in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6052
diff
changeset
|
66 2005-08-17 Bruno Haible <bruno@clisp.org> |
a878a8d58823
Make strstr() work in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6052
diff
changeset
|
67 |
a878a8d58823
Make strstr() work in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6052
diff
changeset
|
68 * strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always. |
a878a8d58823
Make strstr() work in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6052
diff
changeset
|
69 (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC. |
a878a8d58823
Make strstr() work in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6052
diff
changeset
|
70 |
6052
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
71 2005-08-16 Paul Eggert <eggert@cs.ucla.edu> |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
72 |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
73 * getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
74 of gl_GETOPT_SUBSTITUTE. That way, if both gl_GETOPT_SUBSTITUTE |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
75 and gl_GETOPT are both invoked via different paths (as happens |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
76 with GNU tar CVS because it uses both argp and getopt), the former |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
77 wins. |
29087842aa86
* m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
Paul Eggert <eggert@cs.ucla.edu>
parents:
6048
diff
changeset
|
78 |
6048
5943d7de8c5d
Make strcasecmp() work right in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6046
diff
changeset
|
79 2005-08-16 Bruno Haible <bruno@clisp.org> |
5943d7de8c5d
Make strcasecmp() work right in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6046
diff
changeset
|
80 |
5943d7de8c5d
Make strcasecmp() work right in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6046
diff
changeset
|
81 * strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function always. |
5943d7de8c5d
Make strcasecmp() work right in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6046
diff
changeset
|
82 (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC. |
5943d7de8c5d
Make strcasecmp() work right in multibyte locales.
Bruno Haible <bruno@clisp.org>
parents:
6046
diff
changeset
|
83 |
6046 | 84 2005-08-16 Bruno Haible <bruno@clisp.org> |
85 | |
86 * mbfile.m4: New file. | |
87 | |
6045 | 88 2005-08-16 Bruno Haible <bruno@clisp.org> |
89 | |
90 * mbiter.m4: New file. | |
91 | |
6044 | 92 2005-08-16 Bruno Haible <bruno@clisp.org> |
93 | |
94 * mbchar.m4: New file. | |
95 | |
6042 | 96 2005-08-16 Bruno Haible <bruno@clisp.org> |
97 | |
98 * tls.m4: New file, from GNU gettext. | |
99 | |
100 2005-08-12 Bruno Haible <bruno@clisp.org> | |
101 | |
102 * readline.m4 (gl_FUNC_READLINE): Look for ncurses first. | |
103 | |
6025
5c7eb3550ce5
* readline.m4: Look for termcap, curses or ncurses if required.
Simon Josefsson <simon@josefsson.org>
parents:
6023
diff
changeset
|
104 2005-08-12 Simon Josefsson <jas@extundo.com> |
5c7eb3550ce5
* readline.m4: Look for termcap, curses or ncurses if required.
Simon Josefsson <simon@josefsson.org>
parents:
6023
diff
changeset
|
105 |
5c7eb3550ce5
* readline.m4: Look for termcap, curses or ncurses if required.
Simon Josefsson <simon@josefsson.org>
parents:
6023
diff
changeset
|
106 * readline.m4: Look for termcap, curses or ncurses if required. |
5c7eb3550ce5
* readline.m4: Look for termcap, curses or ncurses if required.
Simon Josefsson <simon@josefsson.org>
parents:
6023
diff
changeset
|
107 |
6023 | 108 2005-08-11 Simon Josefsson <jas@extundo.com> |
109 | |
110 * readline.m4: New file. | |
111 | |
6020
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
112 2005-08-10 Simon Josefsson <jas@extundo.com> |
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
113 |
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
114 * strnlen.m4: New file. |
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
115 |
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
116 * strndup.m4: Don't check for strnlen declaration, done in |
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
117 strnlen.m4. |
b9cb7a737790
2005-08-10 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6018
diff
changeset
|
118 |
6018
954deae9185d
Really require autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
6011
diff
changeset
|
119 2005-08-10 Stepan Kasal <kasal@ucw.cz> |
954deae9185d
Really require autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
6011
diff
changeset
|
120 |
954deae9185d
Really require autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
6011
diff
changeset
|
121 * onceonly_2_57.m4: Really require Autoconf 2.57. |
954deae9185d
Really require autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
6011
diff
changeset
|
122 |
6011
cf3d0bf4fc6f
2005-08-02 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6007
diff
changeset
|
123 2005-08-02 Simon Josefsson <jas@extundo.com> |
cf3d0bf4fc6f
2005-08-02 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6007
diff
changeset
|
124 |
cf3d0bf4fc6f
2005-08-02 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6007
diff
changeset
|
125 * getline.m4: Separate out getdelim stuff into separate module. |
cf3d0bf4fc6f
2005-08-02 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6007
diff
changeset
|
126 |
cf3d0bf4fc6f
2005-08-02 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6007
diff
changeset
|
127 * getdelim.m4: New file. |
cf3d0bf4fc6f
2005-08-02 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
6007
diff
changeset
|
128 |
6007
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
129 2005-07-26 Paul Eggert <eggert@cs.ucla.edu> |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
130 |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
131 Add support to getopt for Emacs, which doesn't use LIBOBJS in the |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
132 normal way. |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
133 * getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro. |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
134 (gl_GETOPT_SUBSTITUTE): Use it. Invoke gl_PREREQ_GETOPT. |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
135 (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros. |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
136 (gl_GETOPT): Use the new macros. Most of the implementation |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
137 is moved to the new macros. This is for programs like Emacs |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
138 that don't want all the functionality of gl_GETOPT. |
5b580599ba01
Add support to getopt for Emacs, which doesn't use LIBOBJS in the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6005
diff
changeset
|
139 |
6005
2dd8d7b4185f
Portability fixes for IRIX, Solaris, HP-UX, AIX, OSF/1.
Bruno Haible <bruno@clisp.org>
parents:
6003
diff
changeset
|
140 2005-07-26 Bruno Haible <bruno@clisp.org> |
2dd8d7b4185f
Portability fixes for IRIX, Solaris, HP-UX, AIX, OSF/1.
Bruno Haible <bruno@clisp.org>
parents:
6003
diff
changeset
|
141 |
2dd8d7b4185f
Portability fixes for IRIX, Solaris, HP-UX, AIX, OSF/1.
Bruno Haible <bruno@clisp.org>
parents:
6003
diff
changeset
|
142 * lock.m4: Update from GNU gettext. |
2dd8d7b4185f
Portability fixes for IRIX, Solaris, HP-UX, AIX, OSF/1.
Bruno Haible <bruno@clisp.org>
parents:
6003
diff
changeset
|
143 |
6003
d2b8c6783b35
* regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_ELSE instead of the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6002
diff
changeset
|
144 2005-07-25 Paul Eggert <eggert@cs.ucla.edu> |
d2b8c6783b35
* regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_ELSE instead of the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6002
diff
changeset
|
145 |
6155
63c7f1332e8a
Fix, spotted by Stepan Kasal.
Bruno Haible <bruno@clisp.org>
parents:
6148
diff
changeset
|
146 * regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the |
6003
d2b8c6783b35
* regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_ELSE instead of the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6002
diff
changeset
|
147 obsolescent AC_TRY_RUN. Include the default includes files, for 'exit'. |
d2b8c6783b35
* regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_ELSE instead of the
Paul Eggert <eggert@cs.ucla.edu>
parents:
6002
diff
changeset
|
148 |
6002
29720e2b877f
New gnulib module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents:
5994
diff
changeset
|
149 2005-07-24 Bruno Haible <bruno@clisp.org> |
29720e2b877f
New gnulib module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents:
5994
diff
changeset
|
150 |
29720e2b877f
New gnulib module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents:
5994
diff
changeset
|
151 * visibility.m4: New file. |
29720e2b877f
New gnulib module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents:
5994
diff
changeset
|
152 |
5994 | 153 2005-07-18 Bruno Haible <bruno@clisp.org> |
154 | |
155 * lock.m4: New file, from GNU gettext. | |
156 | |
5989
c0415917431f
Don't use poll() on MacOS X 10.4.
Bruno Haible <bruno@clisp.org>
parents:
5988
diff
changeset
|
157 2005-06-01 Bruno Haible <bruno@clisp.org> |
c0415917431f
Don't use poll() on MacOS X 10.4.
Bruno Haible <bruno@clisp.org>
parents:
5988
diff
changeset
|
158 |
c0415917431f
Don't use poll() on MacOS X 10.4.
Bruno Haible <bruno@clisp.org>
parents:
5988
diff
changeset
|
159 * poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug. |
c0415917431f
Don't use poll() on MacOS X 10.4.
Bruno Haible <bruno@clisp.org>
parents:
5988
diff
changeset
|
160 When using lib/poll.c, define poll as rpl_poll. |
c0415917431f
Don't use poll() on MacOS X 10.4.
Bruno Haible <bruno@clisp.org>
parents:
5988
diff
changeset
|
161 |
5988
60262f4b3d5f
* modules/argp (Depends-on): Remove unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5986
diff
changeset
|
162 2005-07-14 Bruno Haible <bruno@clisp.org> |
60262f4b3d5f
* modules/argp (Depends-on): Remove unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5986
diff
changeset
|
163 |
60262f4b3d5f
* modules/argp (Depends-on): Remove unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5986
diff
changeset
|
164 * argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO. |
60262f4b3d5f
* modules/argp (Depends-on): Remove unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5986
diff
changeset
|
165 Instead, test for *_unlocked function declarations directly. |
60262f4b3d5f
* modules/argp (Depends-on): Remove unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5986
diff
changeset
|
166 |
5986
f84b6f02ec36
* m4/glob.m4 (gl_GLOB): Cache glob interface check result. Add check for
Derek R. Price <derek@ximbiot.com>
parents:
5980
diff
changeset
|
167 2005-07-14 Derek Price <derek@ximbiot.com> |
f84b6f02ec36
* m4/glob.m4 (gl_GLOB): Cache glob interface check result. Add check for
Derek R. Price <derek@ximbiot.com>
parents:
5980
diff
changeset
|
168 |
f84b6f02ec36
* m4/glob.m4 (gl_GLOB): Cache glob interface check result. Add check for
Derek R. Price <derek@ximbiot.com>
parents:
5980
diff
changeset
|
169 * glob.m4 (gl_GLOB): Cache glob interface check result. Add check for |
f84b6f02ec36
* m4/glob.m4 (gl_GLOB): Cache glob interface check result. Add check for
Derek R. Price <derek@ximbiot.com>
parents:
5980
diff
changeset
|
170 glob symlink bug. |
f84b6f02ec36
* m4/glob.m4 (gl_GLOB): Cache glob interface check result. Add check for
Derek R. Price <derek@ximbiot.com>
parents:
5980
diff
changeset
|
171 |
5980
5375b994ef54
Make it work also if size_t is smaller than unsigned int.
Bruno Haible <bruno@clisp.org>
parents:
5969
diff
changeset
|
172 2005-07-10 Bruno Haible <bruno@clisp.org> |
5375b994ef54
Make it work also if size_t is smaller than unsigned int.
Bruno Haible <bruno@clisp.org>
parents:
5969
diff
changeset
|
173 |
5375b994ef54
Make it work also if size_t is smaller than unsigned int.
Bruno Haible <bruno@clisp.org>
parents:
5969
diff
changeset
|
174 * size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t. |
5375b994ef54
Make it work also if size_t is smaller than unsigned int.
Bruno Haible <bruno@clisp.org>
parents:
5969
diff
changeset
|
175 Needed when size_t is smaller than 'unsigned int'. |
5375b994ef54
Make it work also if size_t is smaller than unsigned int.
Bruno Haible <bruno@clisp.org>
parents:
5969
diff
changeset
|
176 Reported by Paul Eggert. |
5375b994ef54
Make it work also if size_t is smaller than unsigned int.
Bruno Haible <bruno@clisp.org>
parents:
5969
diff
changeset
|
177 |
5968
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
178 2005-07-07 Paul Eggert <eggert@cs.ucla.edu> |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
179 |
5969
f675fdd9e8a7
* m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on pathconf.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5968
diff
changeset
|
180 * backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on pathconf. |
f675fdd9e8a7
* m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on pathconf.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5968
diff
changeset
|
181 * same.m4 (gl_SAME): Likewise. |
f675fdd9e8a7
* m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on pathconf.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5968
diff
changeset
|
182 Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase. |
f675fdd9e8a7
* m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on pathconf.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5968
diff
changeset
|
183 |
5968
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
184 * regex.m4: Adjust to new libc regex implementation. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
185 (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
186 all the .c and .h parts of (the new) regex. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
187 Quote the m4 stuff better. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
188 Check for RE_ICASE bug of old gnulib. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
189 Check for REG_STARTEND of recent libc. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
190 Rename local variables from jm_* to gl_*. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
191 Quote operand of "test -f". |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
192 Say "recent enough" version of libc, not "version 2". |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
193 (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
194 prerequisite module. Remove AC_HEADER_STDC; no longer needed. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
195 Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
196 Remove check for btowc, isascii. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
197 Require AM_LANGINFO_CODESET. |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5964
diff
changeset
|
198 |
5964
111f78a51516
Avoid false positive on mingw.
Bruno Haible <bruno@clisp.org>
parents:
5960
diff
changeset
|
199 2005-07-05 Bruno Haible <bruno@clisp.org> |
111f78a51516
Avoid false positive on mingw.
Bruno Haible <bruno@clisp.org>
parents:
5960
diff
changeset
|
200 |
111f78a51516
Avoid false positive on mingw.
Bruno Haible <bruno@clisp.org>
parents:
5960
diff
changeset
|
201 * mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current |
111f78a51516
Avoid false positive on mingw.
Bruno Haible <bruno@clisp.org>
parents:
5960
diff
changeset
|
202 autoconf CVS. Needed for mingw. |
111f78a51516
Avoid false positive on mingw.
Bruno Haible <bruno@clisp.org>
parents:
5960
diff
changeset
|
203 |
5960
2a0d593683dc
Remove the dependency of the strftime module on the tzset module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5956
diff
changeset
|
204 2005-07-03 Paul Eggert <eggert@cs.ucla.edu> |
2a0d593683dc
Remove the dependency of the strftime module on the tzset module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5956
diff
changeset
|
205 |
2a0d593683dc
Remove the dependency of the strftime module on the tzset module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5956
diff
changeset
|
206 Remove the dependency of the strftime module on the tzset module. |
2a0d593683dc
Remove the dependency of the strftime module on the tzset module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5956
diff
changeset
|
207 * strftime.m4 (gl_FUNC_STRFTIME): Don't require gl_FUNC_TZSET_CLOBBER. |
2a0d593683dc
Remove the dependency of the strftime module on the tzset module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5956
diff
changeset
|
208 |
5956
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
209 2005-07-02 Jim Meyering <jim@meyering.net> |
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
210 |
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
211 * chown.m4, cloexec.m4, dup2.m4, fsusage.m4: |
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
212 * getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4: |
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
213 * pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4: |
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
214 Don't check for fcntl.h, and don't test for HAVE_FCNTL_H. |
ccf4c39a6263
Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
Jim Meyering <jim@meyering.net>
parents:
5939
diff
changeset
|
215 |
5939
7e7ddabe954a
2005-06-28 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5933
diff
changeset
|
216 2005-06-28 Simon Josefsson <jas@extundo.com> |
7e7ddabe954a
2005-06-28 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5933
diff
changeset
|
217 |
7e7ddabe954a
2005-06-28 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5933
diff
changeset
|
218 * check-version.m4: New file, suggested by Jim Meyering |
7e7ddabe954a
2005-06-28 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5933
diff
changeset
|
219 <jim@meyering.net>. |
7e7ddabe954a
2005-06-28 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5933
diff
changeset
|
220 |
5933
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
221 2005-06-24 Derek Price <derek@ximbiot.com> |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
222 and Bruno Haible <bruno@clisp.org> |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
223 |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
224 Remove stat module & update lstat. |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
225 * lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
226 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
227 * stat.m4: Remove this file. |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5929
diff
changeset
|
228 |
5929
1bd98d92c928
* bison.m4: Note that precious decls of YACC & YFLAGS will be
Derek R. Price <derek@ximbiot.com>
parents:
5926
diff
changeset
|
229 2005-06-20 Derek Price <derek@ximbiot.com> |
1bd98d92c928
* bison.m4: Note that precious decls of YACC & YFLAGS will be
Derek R. Price <derek@ximbiot.com>
parents:
5926
diff
changeset
|
230 |
1bd98d92c928
* bison.m4: Note that precious decls of YACC & YFLAGS will be
Derek R. Price <derek@ximbiot.com>
parents:
5926
diff
changeset
|
231 * bison.m4: Note that precious decls of YACC & YFLAGS will be |
1bd98d92c928
* bison.m4: Note that precious decls of YACC & YFLAGS will be
Derek R. Price <derek@ximbiot.com>
parents:
5926
diff
changeset
|
232 unnecessary for Autoconfs > 2.59c. |
1bd98d92c928
* bison.m4: Note that precious decls of YACC & YFLAGS will be
Derek R. Price <derek@ximbiot.com>
parents:
5926
diff
changeset
|
233 |
5926
3508054a2863
* bison.m4: Declare YACC & YFLAGS precious.
Derek R. Price <derek@ximbiot.com>
parents:
5913
diff
changeset
|
234 2005-06-16 Derek Price <derek@ximbiot.com> |
3508054a2863
* bison.m4: Declare YACC & YFLAGS precious.
Derek R. Price <derek@ximbiot.com>
parents:
5913
diff
changeset
|
235 |
3508054a2863
* bison.m4: Declare YACC & YFLAGS precious.
Derek R. Price <derek@ximbiot.com>
parents:
5913
diff
changeset
|
236 * bison.m4: Declare YACC & YFLAGS precious. |
3508054a2863
* bison.m4: Declare YACC & YFLAGS precious.
Derek R. Price <derek@ximbiot.com>
parents:
5913
diff
changeset
|
237 |
5913 | 238 2005-06-08 Bruno Haible <bruno@clisp.org> |
239 | |
240 * csharpcomp.m4: New file, from GNU gettext. | |
241 | |
5907 | 242 2005-06-02 Paul Eggert <eggert@cs.ucla.edu> |
243 | |
244 Sync from coreutils. | |
245 * mkdir-p.m4: Renamed from makepath.m4. | |
246 (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH. All uses changed. | |
247 Rename files from makepath.c to mkdir-p.c, and from | |
248 makepath.h to mkdir-p.h. | |
249 * filenamecat.m4: Renamed from path-concat.m4. | |
250 (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT. All uses changed. | |
251 Rename files from path-concat.c to filenamecat.c, | |
252 and from path-concat.h to filenamecat.h. | |
253 * getcwd-path-max.m4: Don't use "path" or "filename" to mean | |
254 "file name" in local variables or comments. | |
255 * rename.m4: Likewise. | |
256 | |
5902 | 257 2005-06-01 Bruno Haible <bruno@clisp.org> |
258 | |
259 * csharp.m4: New file, from GNU gettext. | |
260 * csharpexec.m4: New file, from GNU gettext. | |
261 | |
5901 | 262 2005-05-31 Derek Price <derek@ximbiot.com> |
263 Paul Eggert <eggert@cs.ucla.edu> | |
264 | |
265 Sync from cvs. | |
266 * glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment. | |
267 | |
5898
429b55c14554
* MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
Derek R. Price <derek@ximbiot.com>
parents:
5894
diff
changeset
|
268 2005-05-29 Derek Price <derek@ximbiot.com> |
429b55c14554
* MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
Derek R. Price <derek@ximbiot.com>
parents:
5894
diff
changeset
|
269 Paul Eggert <eggert@cs.ucla.edu> |
429b55c14554
* MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
Derek R. Price <derek@ximbiot.com>
parents:
5894
diff
changeset
|
270 |
429b55c14554
* MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
Derek R. Price <derek@ximbiot.com>
parents:
5894
diff
changeset
|
271 * glob.m4: New file. |
429b55c14554
* MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
Derek R. Price <derek@ximbiot.com>
parents:
5894
diff
changeset
|
272 |
5894
d09af5fbd9f2
* modules/fts (Files): Remove m4/inttypes-pri.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5891
diff
changeset
|
273 2005-05-27 Paul Eggert <eggert@cs.ucla.edu> |
d09af5fbd9f2
* modules/fts (Files): Remove m4/inttypes-pri.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5891
diff
changeset
|
274 |
d09af5fbd9f2
* modules/fts (Files): Remove m4/inttypes-pri.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5891
diff
changeset
|
275 * fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h, |
d09af5fbd9f2
* modules/fts (Files): Remove m4/inttypes-pri.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5891
diff
changeset
|
276 and don't require gt_INTTYPES_PRI. |
d09af5fbd9f2
* modules/fts (Files): Remove m4/inttypes-pri.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5891
diff
changeset
|
277 |
5891
b24317d45623
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
Derek R. Price <derek@ximbiot.com>
parents:
5887
diff
changeset
|
278 2005-05-26 Paul Eggert <eggert@cs.ucla.edu> |
b24317d45623
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
Derek R. Price <derek@ximbiot.com>
parents:
5887
diff
changeset
|
279 |
b24317d45623
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
Derek R. Price <derek@ximbiot.com>
parents:
5887
diff
changeset
|
280 * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define |
b24317d45623
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
Derek R. Price <derek@ximbiot.com>
parents:
5887
diff
changeset
|
281 _POSIX_PTHREAD_SEMANTICS for Solaris. |
b24317d45623
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
Derek R. Price <derek@ximbiot.com>
parents:
5887
diff
changeset
|
282 |
5887
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
283 2005-05-25 Derek Price <derek@ximbiot.com> |
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
284 Paul Eggert <eggert@cs.ucla.edu> |
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
285 |
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
286 * getlogin_r.m4: New files. |
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
287 |
5882
4166e2857787
Add autoconf tests for the 'minmax' module.
Bruno Haible <bruno@clisp.org>
parents:
5872
diff
changeset
|
288 2005-05-22 Bruno Haible <bruno@clisp.org> |
4166e2857787
Add autoconf tests for the 'minmax' module.
Bruno Haible <bruno@clisp.org>
parents:
5872
diff
changeset
|
289 |
4166e2857787
Add autoconf tests for the 'minmax' module.
Bruno Haible <bruno@clisp.org>
parents:
5872
diff
changeset
|
290 * minmax.m4: New file. |
4166e2857787
Add autoconf tests for the 'minmax' module.
Bruno Haible <bruno@clisp.org>
parents:
5872
diff
changeset
|
291 Based on a patch by Derek Price <derek@ximbiot.com>. |
4166e2857787
Add autoconf tests for the 'minmax' module.
Bruno Haible <bruno@clisp.org>
parents:
5872
diff
changeset
|
292 |
5872 | 293 2005-05-20 Paul Eggert <eggert@cs.ucla.edu> |
294 | |
295 * fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS. | |
296 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros. | |
297 | |
5871
8b95519c71b9
* lib/chown.c (rpl_chown): Return -1 on failure.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5869
diff
changeset
|
298 2005-05-20 Eric Blake <ebb9@byu.net> (tiny change) |
8b95519c71b9
* lib/chown.c (rpl_chown): Return -1 on failure.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5869
diff
changeset
|
299 |
8b95519c71b9
* lib/chown.c (rpl_chown): Return -1 on failure.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5869
diff
changeset
|
300 * chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs |
8b95519c71b9
* lib/chown.c (rpl_chown): Return -1 on failure.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5869
diff
changeset
|
301 of -1. |
8b95519c71b9
* lib/chown.c (rpl_chown): Return -1 on failure.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5869
diff
changeset
|
302 |
5869 | 303 2005-05-18 Paul Eggert <eggert@cs.ucla.edu> |
304 | |
305 * canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]): | |
306 Don't check for stddef.h. | |
307 * fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we | |
308 don't use its results. | |
309 Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h, | |
310 since we include them unconditionally. Don't require | |
311 AM_STDBOOL_H, since stdbool is a prerequisite. | |
312 Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t | |
313 since we assume C89 or better. | |
314 Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT, | |
315 as we don't use their results. | |
316 Don't check for fchdir, memmove, memset, strrchr, as we use | |
317 them unconditionally. | |
318 * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define | |
319 GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it. | |
320 | |
5865 | 321 2005-05-18 Jim Meyering <jim@meyering.net> |
322 | |
323 * fts.m4 (AC_LIBSOURCES): Add intprops.h to the list. | |
324 Reported by Yoann Vandoorselaere. | |
325 | |
5859 | 326 2005-05-17 Jim Meyering <jim@meyering.net> |
327 | |
328 * fts.m4: New file, from coreutils. | |
329 | |
5852 | 330 2005-05-14 Paul Eggert <eggert@cs.ucla.edu> |
331 | |
332 Sync from coreutils. | |
333 * unlinkdir.m4: New file. | |
334 | |
5838
dcdcb5e92aa2
* getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
Paul Eggert <eggert@cs.ucla.edu>
parents:
5832
diff
changeset
|
335 2005-05-10 Derek Price <derek@ximbiot.com> |
dcdcb5e92aa2
* getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
Paul Eggert <eggert@cs.ucla.edu>
parents:
5832
diff
changeset
|
336 |
dcdcb5e92aa2
* getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
Paul Eggert <eggert@cs.ucla.edu>
parents:
5832
diff
changeset
|
337 * getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when |
dcdcb5e92aa2
* getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
Paul Eggert <eggert@cs.ucla.edu>
parents:
5832
diff
changeset
|
338 possible. |
dcdcb5e92aa2
* getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
Paul Eggert <eggert@cs.ucla.edu>
parents:
5832
diff
changeset
|
339 |
5832
23fa52025e8d
getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
Simon Josefsson <simon@josefsson.org>
parents:
5825
diff
changeset
|
340 2005-05-10 Simon Josefsson <jas@extundo.com> |
23fa52025e8d
getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
Simon Josefsson <simon@josefsson.org>
parents:
5825
diff
changeset
|
341 |
23fa52025e8d
getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
Simon Josefsson <simon@josefsson.org>
parents:
5825
diff
changeset
|
342 * getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from |
23fa52025e8d
getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
Simon Josefsson <simon@josefsson.org>
parents:
5825
diff
changeset
|
343 Yoann Vandoorselaere <yoann.v@prelude-ids.com>. |
23fa52025e8d
getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
Simon Josefsson <simon@josefsson.org>
parents:
5825
diff
changeset
|
344 |
5825 | 345 2005-05-09 Yoann Vandoorselaere <yoann.v@prelude-ids.com> |
346 Bruno Haible <bruno@clisp.org> | |
347 | |
348 * inet_ntop.m4: New file. | |
349 | |
5819
16b0f8ffe787
* getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
Paul Eggert <eggert@cs.ucla.edu>
parents:
5816
diff
changeset
|
350 2005-05-05 Paul Eggert <eggert@cs.ucla.edu> |
16b0f8ffe787
* getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
Paul Eggert <eggert@cs.ucla.edu>
parents:
5816
diff
changeset
|
351 |
16b0f8ffe787
* getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
Paul Eggert <eggert@cs.ucla.edu>
parents:
5816
diff
changeset
|
352 * getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid |
16b0f8ffe787
* getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
Paul Eggert <eggert@cs.ucla.edu>
parents:
5816
diff
changeset
|
353 needless checks. |
16b0f8ffe787
* getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
Paul Eggert <eggert@cs.ucla.edu>
parents:
5816
diff
changeset
|
354 |
5813 | 355 2005-05-01 Paul Eggert <eggert@cs.ucla.edu> |
356 | |
357 * euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require AC_HEADER_STAT. | |
358 * lchown.m4 (gl_FUNC_CHOWN): Likewise. | |
359 (gl_PREREQ_CHOWN): Remove. | |
360 * lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling | |
361 it. Don't require AC_HEADER_STAT. | |
362 (gl_PREREQ_LSTAT): Remove. | |
363 * mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once. | |
364 Don't require AC_HEADER_STAT. | |
365 * rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT. | |
366 (gl_PREREQ_RMDIR): Remove. | |
367 * canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't | |
368 mention stat-macros.h or AC_HEADER_STAT, since we'll make | |
369 the stat-macros module a prerequisite. | |
370 * file-type.m4 (gl_FILE_TYPE): Likewise. | |
371 * filemode.m4 (gl_FILEMODE): Likewise. | |
372 * makepath.m4 (gl_MAKEPATH): Likewise. | |
373 * modechange.m4 (gl_MODECHANGE): Likewise. | |
374 * clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for | |
375 variable names. | |
376 * rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from | |
377 fetish_FUNC_RMDIR_NOTEMPTY. All uses changed. Use gl_ for | |
378 variable prefixes. | |
379 * fcntl-safer.m4: Remove. | |
380 * stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ. | |
381 * unistd-safer.m4 (gl_UNISTD_SAFER): Likewise. | |
382 Invoke gl_PREREQ_FD_SAFER. | |
383 (gl_PREREQ_FD_SAFER): New macro. | |
384 * nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt. | |
385 * readutmp.m4 (gl_READUTMP): Require AC_C_INLINE. | |
386 Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible. | |
387 Remove duplicate call to AC_LIBOBJ(readutmp). | |
388 (gl_PREREQ_READUTMP): Remove. All uses inlined. | |
389 | |
390 * mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for | |
391 MAP_ANON. Problem reported by Moriyoshi Koizumi to bug-cvs. | |
392 | |
5810 | 393 2005-05-01 Oskar Liljeblad <oskar@osk.mine.nu> |
394 | |
395 * byteswap.m4: New file. | |
396 | |
5816
868ca8ddb0e5
Add missing entry for last gettext.m4 update.
Bruno Haible <bruno@clisp.org>
parents:
5813
diff
changeset
|
397 2005-04-25 karl |
868ca8ddb0e5
Add missing entry for last gettext.m4 update.
Bruno Haible <bruno@clisp.org>
parents:
5813
diff
changeset
|
398 |
868ca8ddb0e5
Add missing entry for last gettext.m4 update.
Bruno Haible <bruno@clisp.org>
parents:
5813
diff
changeset
|
399 * gettext.m4: Update from GNU gettext 0.14.4. |
868ca8ddb0e5
Add missing entry for last gettext.m4 update.
Bruno Haible <bruno@clisp.org>
parents:
5813
diff
changeset
|
400 |
5800
0f2f00214187
getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
Simon Josefsson <simon@josefsson.org>
parents:
5782
diff
changeset
|
401 2005-04-15 Simon Josefsson <jas@extundo.com> |
0f2f00214187
getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
Simon Josefsson <simon@josefsson.org>
parents:
5782
diff
changeset
|
402 |
0f2f00214187
getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
Simon Josefsson <simon@josefsson.org>
parents:
5782
diff
changeset
|
403 * getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES. |
0f2f00214187
getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
Simon Josefsson <simon@josefsson.org>
parents:
5782
diff
changeset
|
404 |
5782 | 405 2005-03-28 Eric Blake <ebb9@byu.net> (tiny change) |
406 | |
407 * getcwd-path-max.m4: Return success on systems such as Cygwin | |
408 where no absolute path name can be longer than PATH_MAX. | |
409 | |
5728 | 410 2005-03-22 Jim Meyering <jim@meyering.net> |
411 | |
412 * stat-macros.m4 (gl_STAT_MACROS): New file/macro. | |
413 | |
5721
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
414 2005-03-21 Jim Meyering <jim@meyering.net> |
5728 | 415 and Paul Eggert <eggert@cs.ucla.edu> |
5721
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
416 |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
417 * acl.m4, backupfile.m4, c-strtod.m4, canon-host.m4, canonicalize.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
418 cloexec.m4, closeout.m4, dirfd.m4, dirname.m4, exclude.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
419 exitfail.m4, file-type.m4, filemode.m4, fpending.m4, fsusage.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
420 getcwd.m4, getdate.m4, getline.m4, getpagesize.m4, getpass.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
421 getugroups.m4, group-member.m4, hard-locale.m4, hash.m4, human.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
422 idcache.m4, inttostr.m4, long-options.m4, makepath.m4, md5.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
423 memcasecmp.m4, memcoll.m4, modechange.m4, mountlist.m4, nanosleep.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
424 path-concat.m4, pathmax.m4, physmem.m4, posixtm.m4, posixver.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
425 quote.m4, quotearg.m4, readtokens.m4, readutmp.m4, safe-read.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
426 safe-write.m4, same.m4, savedir.m4, settime.m4, sha1.m4, sig2str.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
427 strdup.m4, strftime.m4, strndup.m4, strverscmp.m4, timespec.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
428 unlocked-io.m4, userspec.m4, utimecmp.m4, utimens.m4, xalloc.m4, |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
429 xnanosleep.m4, xstrtol.m4, yesno.m4: |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
430 Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
431 for these modules. |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
432 |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
433 2005-03-21 Jim Meyering <jim@meyering.net> |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
434 |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
435 * chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR. |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
436 * memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl. |
abd018cd6020
Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5713
diff
changeset
|
437 |
5713
b91d73b06792
Rename HAVE_LONGLONG_64BIT to HAVE_LONG_LONG_64BIT.
Bruno Haible <bruno@clisp.org>
parents:
5700
diff
changeset
|
438 2005-03-16 Bruno Haible <bruno@clisp.org> |
b91d73b06792
Rename HAVE_LONGLONG_64BIT to HAVE_LONG_LONG_64BIT.
Bruno Haible <bruno@clisp.org>
parents:
5700
diff
changeset
|
439 |
b91d73b06792
Rename HAVE_LONGLONG_64BIT to HAVE_LONG_LONG_64BIT.
Bruno Haible <bruno@clisp.org>
parents:
5700
diff
changeset
|
440 * stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of |
b91d73b06792
Rename HAVE_LONGLONG_64BIT to HAVE_LONG_LONG_64BIT.
Bruno Haible <bruno@clisp.org>
parents:
5700
diff
changeset
|
441 HAVE_LONGLONG_64BIT. |
b91d73b06792
Rename HAVE_LONGLONG_64BIT to HAVE_LONG_LONG_64BIT.
Bruno Haible <bruno@clisp.org>
parents:
5700
diff
changeset
|
442 |
5700
eea92bfb3f7d
Upgrade to GNU gettext 0.14.3.
Bruno Haible <bruno@clisp.org>
parents:
5698
diff
changeset
|
443 2005-03-14 Bruno Haible <bruno@clisp.org> |
eea92bfb3f7d
Upgrade to GNU gettext 0.14.3.
Bruno Haible <bruno@clisp.org>
parents:
5698
diff
changeset
|
444 |
eea92bfb3f7d
Upgrade to GNU gettext 0.14.3.
Bruno Haible <bruno@clisp.org>
parents:
5698
diff
changeset
|
445 * lib-link.m4, gettext.m4, nls.m4, po.m4: |
eea92bfb3f7d
Upgrade to GNU gettext 0.14.3.
Bruno Haible <bruno@clisp.org>
parents:
5698
diff
changeset
|
446 Update from GNU gettext 0.14.3. |
eea92bfb3f7d
Upgrade to GNU gettext 0.14.3.
Bruno Haible <bruno@clisp.org>
parents:
5698
diff
changeset
|
447 |
5698 | 448 2005-03-10 Jim Meyering <jim@meyering.net> |
449 | |
450 * save-cwd.m4 (gl_SAVE_CWD): Check for fchdir. | |
451 | |
5688
5421c00f20ab
Don't define MAP_FILE and MAP_FAILED before <sys/mman.h> has been included.
Bruno Haible <bruno@clisp.org>
parents:
5680
diff
changeset
|
452 2005-03-07 Bruno Haible <bruno@clisp.org> |
5421c00f20ab
Don't define MAP_FILE and MAP_FAILED before <sys/mman.h> has been included.
Bruno Haible <bruno@clisp.org>
parents:
5680
diff
changeset
|
453 |
5421c00f20ab
Don't define MAP_FILE and MAP_FAILED before <sys/mman.h> has been included.
Bruno Haible <bruno@clisp.org>
parents:
5680
diff
changeset
|
454 * mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions. |
5421c00f20ab
Don't define MAP_FILE and MAP_FAILED before <sys/mman.h> has been included.
Bruno Haible <bruno@clisp.org>
parents:
5680
diff
changeset
|
455 |
5680
cded3c80cba6
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5673
diff
changeset
|
456 2005-03-03 Bruno Haible <bruno@clisp.org> |
cded3c80cba6
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5673
diff
changeset
|
457 |
cded3c80cba6
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5673
diff
changeset
|
458 * inttypes.m4, isc-posix.m4, once-only.m4: |
cded3c80cba6
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5673
diff
changeset
|
459 Use an all-permissive copyright notice, recommended by RMS. |
cded3c80cba6
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5673
diff
changeset
|
460 |
5673
dbfd56933568
New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents:
5672
diff
changeset
|
461 2005-03-03 Derek R. Price <derek@ximbiot.com> |
dbfd56933568
New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents:
5672
diff
changeset
|
462 |
dbfd56933568
New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents:
5672
diff
changeset
|
463 * mmap-anon.m4: New file. |
dbfd56933568
New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents:
5672
diff
changeset
|
464 * pagealign_alloc.m4: New file. |
dbfd56933568
New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents:
5672
diff
changeset
|
465 |
5672 | 466 2005-01-28 Bruno Haible <bruno@clisp.org> |
467 | |
468 * stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because of | |
469 AIX, the replacement has to be done only after <string.h> is included, | |
470 therefore not in config.h. stpncpy.h does the replacement, and | |
471 stpncpy.c uses it. | |
472 | |
5665
ec3cc8a95f16
Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5662
diff
changeset
|
473 2005-03-01 Paul Eggert <eggert@cs.ucla.edu> |
ec3cc8a95f16
Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5662
diff
changeset
|
474 |
ec3cc8a95f16
Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5662
diff
changeset
|
475 * xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting |
ec3cc8a95f16
Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5662
diff
changeset
|
476 to detect nanosleep bug. |
ec3cc8a95f16
Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5662
diff
changeset
|
477 |
5662
42df9db003cc
* modules/gethrxtime: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5660
diff
changeset
|
478 2005-02-25 Paul Eggert <eggert@cs.ucla.edu> |
42df9db003cc
* modules/gethrxtime: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5660
diff
changeset
|
479 |
42df9db003cc
* modules/gethrxtime: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5660
diff
changeset
|
480 * gethrxtime.m4, xnanosleep.m4: New files. |
42df9db003cc
* modules/gethrxtime: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5660
diff
changeset
|
481 * gettime.m4 (gl_GETTIME): Check for nanotime. |
42df9db003cc
* modules/gethrxtime: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5660
diff
changeset
|
482 |
5659
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
483 2005-02-24 Bruno Haible <bruno@clisp.org> |
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
484 |
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
485 * gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4: |
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
486 * lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4: |
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
487 * progtest.m4: |
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
488 Update from GNU gettext 0.14.2. |
5660
3f8923dcc4e6
Module 'gettext': New file glibc2.m4.
Bruno Haible <bruno@clisp.org>
parents:
5659
diff
changeset
|
489 * glibc2.m4: New file, from GNU gettext 0.14.2. |
5659
be44f23226e0
Update from GNU gettext 0.14.2.
Bruno Haible <bruno@clisp.org>
parents:
5654
diff
changeset
|
490 |
5654
dca89d2346b3
2005-02-22 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5651
diff
changeset
|
491 2005-02-22 Simon Josefsson <jas@extundo.com> |
dca89d2346b3
2005-02-22 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5651
diff
changeset
|
492 |
dca89d2346b3
2005-02-22 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5651
diff
changeset
|
493 * iconvme.m4: New file. |
dca89d2346b3
2005-02-22 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents:
5651
diff
changeset
|
494 |
5651 | 495 2005-02-23 Jim Meyering <jim@meyering.net> |
496 | |
497 * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's change. | |
498 Thanks to Bruno Haible for catching it. | |
499 | |
5649 | 500 2005-02-22 Jim Meyering <jim@meyering.net> |
501 | |
502 * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo: s/ifndef/ifdef/. | |
503 | |
5637
2b20ff1c4169
* modules/chdir-long (Depends-on): Add memrchr.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5629
diff
changeset
|
504 2005-02-03 Paul Eggert <eggert@cs.ucla.edu> |
2b20ff1c4169
* modules/chdir-long (Depends-on): Add memrchr.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5629
diff
changeset
|
505 |
2b20ff1c4169
* modules/chdir-long (Depends-on): Add memrchr.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5629
diff
changeset
|
506 * memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h. |
2b20ff1c4169
* modules/chdir-long (Depends-on): Add memrchr.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5629
diff
changeset
|
507 |
5629 | 508 2005-01-28 Paul Eggert <eggert@cs.ucla.edu> |
509 | |
510 Sync from coreutils. | |
511 * getloadavg.m4, glibc.m4, search-libs.m4: Remove. | |
512 | |
513 Remove files that are specific to coreutils. | |
514 * check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove. | |
515 | |
5628 | 516 2005-01-28 Bruno Haible <bruno@clisp.org> |
517 | |
518 * javacomp.m4: New file, from GNU gettext. | |
519 | |
5624 | 520 2005-01-26 Bruno Haible <bruno@clisp.org> |
521 | |
522 * javaexec.m4: New file, from GNU gettext. | |
523 | |
5614 | 524 2005-01-24 Sergey Poznyakoff <gray@Mirddin.farlep.net> |
525 | |
526 * sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H | |
527 must be defined if the header file was not found, in order | |
528 to provide a replacement. Reported by Todd Vierling <tv@duh.org> | |
529 | |
5611
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
530 2005-01-23 Paul Eggert <eggert@cs.ucla.edu> |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
531 |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
532 * acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
533 backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
534 c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
535 clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
536 dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
537 exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
538 file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
539 free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
540 getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
541 getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
542 getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
543 gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
544 group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
545 idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
546 link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
547 makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
548 memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
549 memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
550 modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
551 path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
552 posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
553 readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
554 restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
555 savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
556 sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
557 stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
558 strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
559 strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
560 strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
561 time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
562 uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
563 unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
564 utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
565 xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
566 xstrtol.m4, xstrtoumax.m4, yesno.m4: |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
567 Use an all-permissive copyright notice, recommended by RMS. |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5605
diff
changeset
|
568 |
5605
2b5872ebae54
* lib/save-cwd.c (save_cwd): Remove code to support the case
Paul Eggert <eggert@cs.ucla.edu>
parents:
5597
diff
changeset
|
569 2005-01-20 Paul Eggert <eggert@cs.ucla.edu> |
2b5872ebae54
* lib/save-cwd.c (save_cwd): Remove code to support the case
Paul Eggert <eggert@cs.ucla.edu>
parents:
5597
diff
changeset
|
570 |
2b5872ebae54
* lib/save-cwd.c (save_cwd): Remove code to support the case
Paul Eggert <eggert@cs.ucla.edu>
parents:
5597
diff
changeset
|
571 * save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume it. |
2b5872ebae54
* lib/save-cwd.c (save_cwd): Remove code to support the case
Paul Eggert <eggert@cs.ucla.edu>
parents:
5597
diff
changeset
|
572 |
5597 | 573 2005-01-18 Paul Eggert <eggert@cs.ucla.edu> |
574 | |
575 Merge from coreutils. | |
576 * ullong_max.m4: New file. | |
577 * jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX. | |
578 (gl_MACROS): Assume localeconv exists. | |
579 | |
580 2005-01-18 Jim Meyering <jim@meyering.net> | |
581 | |
582 Merge from coreutils. | |
583 * chdir-long.m4, openat.m4: New files. | |
584 * save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c, | |
585 save-cwd.h. Add AC_LIBOBJ for save-cwd. | |
586 * chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown | |
587 is sane and DOES follow symlinks. Besides, testing 20 different | |
588 systems found no broken chown implementations. | |
589 Prompted by a change in rsync's copy of this macro. | |
590 * jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG. | |
591 | |
592 * lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES. | |
593 | |
594 * utimes.m4: Work around tests/touch/empty-file failure on a system | |
595 (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes' | |
596 NULL-means-set-to-current-time semantics. | |
597 Remove temporary file immediately, rather than waiting | |
598 for configure's at-exit trap code to do it. | |
599 | |
5586
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
600 2005-01-18 Bruno Haible <bruno@clisp.org> |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
601 |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
602 * allocsa.m4, codeset.m4, copy-file.m4, eaccess.m4, eealloc.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
603 * eoverflow.m4, execute.m4, fatal-signal.m4, findprog.m4, glibc21.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
604 * iconv.m4, intmax_t.m4, inttypes_h.m4, lib-ld.m4, lib-link.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
605 * lib-prefix.m4, linebreak.m4, localcharset.m4, longdouble.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
606 * longlong.m4, mbrtowc.m4, mbstate_t.m4, mbswidth.m4, mkdtemp.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
607 * pipe.m4, readlink.m4, safe-read.m4, safe-write.m4, setenv.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
608 * sig_atomic_t.m4, signalblocking.m4, signed.m4, size_max.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
609 * ssize_t.m4, stdbool.m4, stdint_h.m4, stpcpy.m4, stpncpy.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
610 * strcase.m4, strcspn.m4, strpbrk.m4, strstr.m4, ucs4-utf.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
611 * uintmax_t.m4, ulonglong.m4, unicodeio.m4, utf-ucs4.m4, vasnprintf.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
612 * vasprintf.m4, wait-process.m4, wchar_t.m4, wint_t.m4, xsize.m4: |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
613 Use an all-permissive copyright notice, recommended by RMS. |
c8361c3b88ee
Use an all-permissive copyright notice.
Bruno Haible <bruno@clisp.org>
parents:
5584
diff
changeset
|
614 |
5584
f43f068c9228
Move some conditionals from the .c file to the .m4 file.
Bruno Haible <bruno@clisp.org>
parents:
5571
diff
changeset
|
615 2005-01-06 Bruno Haible <bruno@clisp.org> |
f43f068c9228
Move some conditionals from the .c file to the .m4 file.
Bruno Haible <bruno@clisp.org>
parents:
5571
diff
changeset
|
616 |
f43f068c9228
Move some conditionals from the .c file to the .m4 file.
Bruno Haible <bruno@clisp.org>
parents:
5571
diff
changeset
|
617 * stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here. |
f43f068c9228
Move some conditionals from the .c file to the .m4 file.
Bruno Haible <bruno@clisp.org>
parents:
5571
diff
changeset
|
618 |
5571 | 619 2005-01-04 Jim Meyering <jim@meyering.net> |
620 | |
621 Changes imported from coreutils. | |
622 * mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX" | |
623 as the mkstemp template, use a temporary directory and an | |
624 8.3-friendly template to avoid trouble on systems like DJGPP. | |
625 Reported by Juan M. Guerrero via Stepan Kasal. | |
626 * (gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of close. | |
627 Remove the temporary directory right away, rather than waiting | |
628 for configure's at-exit trap code to do it. | |
629 Suggestion from Stepan Kasal. | |
630 | |
5559
9ea03dc062ed
* c-strtod.m4 (gl_C99_STRTOLD): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5553
diff
changeset
|
631 2004-12-24 Paul Eggert <eggert@cs.ucla.edu> |
9ea03dc062ed
* c-strtod.m4 (gl_C99_STRTOLD): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5553
diff
changeset
|
632 |
9ea03dc062ed
* c-strtod.m4 (gl_C99_STRTOLD): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5553
diff
changeset
|
633 * c-strtod.m4 (gl_C99_STRTOLD): New macro. |
9ea03dc062ed
* c-strtod.m4 (gl_C99_STRTOLD): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5553
diff
changeset
|
634 (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold). |
9ea03dc062ed
* c-strtod.m4 (gl_C99_STRTOLD): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5553
diff
changeset
|
635 |
5553
e9986aaeca84
* getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5537
diff
changeset
|
636 2004-12-23 Paul Eggert <eggert@cs.ucla.edu> |
e9986aaeca84
* getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5537
diff
changeset
|
637 |
e9986aaeca84
* getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5537
diff
changeset
|
638 * getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA. |
e9986aaeca84
* getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5537
diff
changeset
|
639 |
5537
0fc3beabfb42
Portability fix: Don't assume sigaction(). (mingw doesn't have it.)
Bruno Haible <bruno@clisp.org>
parents:
5519
diff
changeset
|
640 2004-12-18 Bruno Haible <bruno@clisp.org> |
0fc3beabfb42
Portability fix: Don't assume sigaction(). (mingw doesn't have it.)
Bruno Haible <bruno@clisp.org>
parents:
5519
diff
changeset
|
641 |
0fc3beabfb42
Portability fix: Don't assume sigaction(). (mingw doesn't have it.)
Bruno Haible <bruno@clisp.org>
parents:
5519
diff
changeset
|
642 * fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction. |
0fc3beabfb42
Portability fix: Don't assume sigaction(). (mingw doesn't have it.)
Bruno Haible <bruno@clisp.org>
parents:
5519
diff
changeset
|
643 |
5519
03a0d1bbbe01
* ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change: spurious "-l"s.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5517
diff
changeset
|
644 2004-12-07 Paul Eggert <eggert@cs.ucla.edu> |
03a0d1bbbe01
* ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change: spurious "-l"s.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5517
diff
changeset
|
645 |
03a0d1bbbe01
* ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change: spurious "-l"s.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5517
diff
changeset
|
646 * ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change: |
03a0d1bbbe01
* ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change: spurious "-l"s.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5517
diff
changeset
|
647 spurious "-l"s. Problem reported by Stepan Kasal. |
03a0d1bbbe01
* ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change: spurious "-l"s.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5517
diff
changeset
|
648 |
5516
bdc3627d4046
* ls-mnt-fs.m4 (AC_FUNC_GETMNTENT): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5510
diff
changeset
|
649 2004-12-06 Paul Eggert <eggert@cs.ucla.edu> |
bdc3627d4046
* ls-mnt-fs.m4 (AC_FUNC_GETMNTENT): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5510
diff
changeset
|
650 |
5517 | 651 * ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug |
5516
bdc3627d4046
* ls-mnt-fs.m4 (AC_FUNC_GETMNTENT): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5510
diff
changeset
|
652 in Autoconf 2.59. Problem reported by Mark D. Baushke. |
bdc3627d4046
* ls-mnt-fs.m4 (AC_FUNC_GETMNTENT): New macro.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5510
diff
changeset
|
653 |
5510
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
654 2004-12-04 Paul Eggert <eggert@cs.ucla.edu> |
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
655 |
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
656 Changes imported from coreutils. |
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
657 * hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale |
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
658 exist. |
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
659 * human.m4 (gl_HUMAN): Assume locale.h and localeconv exist. |
fd10cf72c81b
Import chamges from coreutils, so that the code now assumes
Paul Eggert <eggert@cs.ucla.edu>
parents:
5505
diff
changeset
|
660 |
5505
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
661 2004-11-30 Paul Eggert <eggert@cs.ucla.edu> |
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
662 |
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
663 * getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): |
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
664 Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working. |
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
665 |
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
666 * readutmp.m4 (gl_READUTMP): Don't check for sys/param.h. |
30468a4ba75e
Import getcwd and readutmp changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5498
diff
changeset
|
667 |
5498 | 668 2004-11-30 Simon Josefsson <jas@extundo.com> |
669 | |
670 * base64.m4: New file. | |
671 | |
5496
f1a56aa674d2
Add copyright and copying conditions.
Simon Josefsson <simon@josefsson.org>
parents:
5491
diff
changeset
|
672 2004-11-30 Simon Josefsson <jas@extundo.com> |
f1a56aa674d2
Add copyright and copying conditions.
Simon Josefsson <simon@josefsson.org>
parents:
5491
diff
changeset
|
673 |
f1a56aa674d2
Add copyright and copying conditions.
Simon Josefsson <simon@josefsson.org>
parents:
5491
diff
changeset
|
674 * restrict.m4: Add copyright and copying conditions. |
f1a56aa674d2
Add copyright and copying conditions.
Simon Josefsson <simon@josefsson.org>
parents:
5491
diff
changeset
|
675 |
5491
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
676 2004-11-25 Paul Eggert <eggert@cs.ucla.edu> |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
677 |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
678 * getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
679 GL_FUNC_GETCWD_PATH_MAX for consistency. All uses changed. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
680 Use the _ONCE methods, for efficiency. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
681 Check for fcntl.h. In test program, include <errno.h> |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
682 and <fcntl.h> if available. Remove old K&R cruft from |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
683 test program. Check for common errors in GNU/Linux, |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
684 OpenBSD, and Solaris. Just set gl_cv_func_getcwd_path_max; |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
685 don't do AC_LIBOBJ, as that's getcwd.m4's job. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
686 * getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
687 AC_FUNC_GETCWD_NULL. All used changed. Change cache variable |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
688 name accordingly. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
689 (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros. Revamp to |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
690 accommodate new getcwd.c. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
691 * jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
692 * prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
693 * xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
694 that's all we need now. |
b3d5c90efc81
Merge from coreutils for getcwd and HP-UX 11.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5487
diff
changeset
|
695 |
5487
510bdfdd7f6f
* utimens.m4 (gl_UTIMENS): Check for futimes function.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5475
diff
changeset
|
696 2004-11-23 Paul Eggert <eggert@cs.ucla.edu> |
510bdfdd7f6f
* utimens.m4 (gl_UTIMENS): Check for futimes function.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5475
diff
changeset
|
697 |
510bdfdd7f6f
* utimens.m4 (gl_UTIMENS): Check for futimes function.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5475
diff
changeset
|
698 * utimens.m4 (gl_UTIMENS): Check for futimes function. |
510bdfdd7f6f
* utimens.m4 (gl_UTIMENS): Check for futimes function.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5475
diff
changeset
|
699 |
5475 | 700 2004-11-23 Sergey Poznyakoff <gray@Mirddin.farlep.net> |
701 | |
702 * argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally: | |
703 argp-parse.c depends on getopt internals, that means we should | |
704 always use our getopt, to be on the safe side. | |
705 * getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in | |
706 order not to spoil the result of an eventual previous invocation | |
707 of gl_GETOPT_SUBSTITUTE. | |
708 | |
5466
19276ed23d4a
* calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations
Paul Eggert <eggert@cs.ucla.edu>
parents:
5458
diff
changeset
|
709 2004-11-17 Paul Eggert <eggert@cs.ucla.edu> |
19276ed23d4a
* calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations
Paul Eggert <eggert@cs.ucla.edu>
parents:
5458
diff
changeset
|
710 |
19276ed23d4a
* calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations
Paul Eggert <eggert@cs.ucla.edu>
parents:
5458
diff
changeset
|
711 * calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations |
19276ed23d4a
* calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations
Paul Eggert <eggert@cs.ucla.edu>
parents:
5458
diff
changeset
|
712 that mishandle size_t overflow. |
19276ed23d4a
* calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations
Paul Eggert <eggert@cs.ucla.edu>
parents:
5458
diff
changeset
|
713 |
5458 | 714 2004-11-16 Paul Eggert <eggert@cs.ucla.edu> |
715 | |
716 * canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo. | |
717 | |
718 2004-11-13 Jim Meyering <jim@meyering.net> | |
719 | |
720 * jm-macros.m4: Do require gl_FUNC_FPENDING. | |
721 | |
5425
354b1085b8bd
(gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
Paul Eggert <eggert@cs.ucla.edu>
parents:
5423
diff
changeset
|
722 2004-11-11 Paul Eggert <eggert@cs.ucla.edu> |
354b1085b8bd
(gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
Paul Eggert <eggert@cs.ucla.edu>
parents:
5423
diff
changeset
|
723 |
354b1085b8bd
(gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
Paul Eggert <eggert@cs.ucla.edu>
parents:
5423
diff
changeset
|
724 * getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead |
354b1085b8bd
(gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
Paul Eggert <eggert@cs.ucla.edu>
parents:
5423
diff
changeset
|
725 of replacing opterr, getopt, etc. This should handle the |
354b1085b8bd
(gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
Paul Eggert <eggert@cs.ucla.edu>
parents:
5423
diff
changeset
|
726 powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson. |
354b1085b8bd
(gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
Paul Eggert <eggert@cs.ucla.edu>
parents:
5423
diff
changeset
|
727 |
5423 | 728 2004-11-11 Simon Josefsson <jas@extundo.com> |
729 | |
5437 | 730 * strtok_r.m4: New file. |
731 | |
5423 | 732 * getopt.m4: Replace opterr. |
733 | |
5413 | 734 2004-11-10 Paul Eggert <eggert@cs.ucla.edu> |
735 | |
736 * prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV. | |
737 | |
738 2004-11-10 Jim Meyering <jim@meyering.net> | |
739 | |
740 * jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING. | |
741 | |
5408 | 742 2004-11-08 Simon Josefsson <jas@extundo.com> |
743 | |
744 * getaddrinfo.m4: New file. | |
745 | |
5401
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
746 2004-11-09 Paul Eggert <eggert@cs.ucla.edu> |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
747 |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
748 * strftime.m4 (_gl_STRFTIME_PREREQS): Remove. Move its body to |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
749 gl_FUNC_STRFTIME. |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
750 (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
751 and AC_REQUIRE when possible, to avoid duplicate checks. |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
752 Check for <wchar.h>. |
cb3afa6ab9f9
* strftime.m4: Check for wchar.h and clean up a bit.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5399
diff
changeset
|
753 |
5399
db859922c585
Detect support for IPv4 and IPv6 protocol families.
Bruno Haible <bruno@clisp.org>
parents:
5390
diff
changeset
|
754 2004-11-09 Bruno Haible <bruno@clisp.org> |
db859922c585
Detect support for IPv4 and IPv6 protocol families.
Bruno Haible <bruno@clisp.org>
parents:
5390
diff
changeset
|
755 |
db859922c585
Detect support for IPv4 and IPv6 protocol families.
Bruno Haible <bruno@clisp.org>
parents:
5390
diff
changeset
|
756 * sockpfaf.m4: New file. |
db859922c585
Detect support for IPv4 and IPv6 protocol families.
Bruno Haible <bruno@clisp.org>
parents:
5390
diff
changeset
|
757 |
5390
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
758 2004-11-03 Albert Chin <china@thewrittenword.com> |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
759 Paul Eggert <eggert@cs.ucla.edu> |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
760 |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
761 * uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
762 equivalent, substitute $ac_type for equivalent type rather than |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
763 blindly using uint32_t *always* which won't work if uint32_t is not |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
764 available. Define _UINT32_T to work around typedef of uint32_t if |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
765 <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
766 2.5.1. |
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
767 |
5383
15aea99e0b17
* jm-macros.m4: Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5381
diff
changeset
|
768 2004-11-02 Paul Eggert <eggert@cs.ucla.edu> |
15aea99e0b17
* jm-macros.m4: Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5381
diff
changeset
|
769 |
15aea99e0b17
* jm-macros.m4: Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5381
diff
changeset
|
770 * jm-macros.m4: Sync from coreutils. |
15aea99e0b17
* jm-macros.m4: Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5381
diff
changeset
|
771 (gl_MACROS): Check for mbrlen, for pathchk. |
15aea99e0b17
* jm-macros.m4: Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5381
diff
changeset
|
772 (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk. |
5390
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
773 |
5381
20b173a370ec
Provide a return value for unsetenv() if the system doesn't.
Bruno Haible <bruno@clisp.org>
parents:
5380
diff
changeset
|
774 2004-11-02 Bruno Haible <bruno@clisp.org> |
20b173a370ec
Provide a return value for unsetenv() if the system doesn't.
Bruno Haible <bruno@clisp.org>
parents:
5380
diff
changeset
|
775 |
20b173a370ec
Provide a return value for unsetenv() if the system doesn't.
Bruno Haible <bruno@clisp.org>
parents:
5380
diff
changeset
|
776 * setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv() |
20b173a370ec
Provide a return value for unsetenv() if the system doesn't.
Bruno Haible <bruno@clisp.org>
parents:
5380
diff
changeset
|
777 returns void. |
20b173a370ec
Provide a return value for unsetenv() if the system doesn't.
Bruno Haible <bruno@clisp.org>
parents:
5380
diff
changeset
|
778 |
5380
9cd2693d18a3
getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
Simon Josefsson <simon@josefsson.org>
parents:
5365
diff
changeset
|
779 2004-11-01 Paul Eggert <eggert@cs.ucla.edu> |
9cd2693d18a3
getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
Simon Josefsson <simon@josefsson.org>
parents:
5365
diff
changeset
|
780 |
9cd2693d18a3
getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
Simon Josefsson <simon@josefsson.org>
parents:
5365
diff
changeset
|
781 * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of |
9cd2693d18a3
getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
Simon Josefsson <simon@josefsson.org>
parents:
5365
diff
changeset
|
782 fflush_unlocked, flockfile, funlockfile, funlockfile, |
9cd2693d18a3
getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
Simon Josefsson <simon@josefsson.org>
parents:
5365
diff
changeset
|
783 fputs_unlocked, putc_unlocked. |
9cd2693d18a3
getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
Simon Josefsson <simon@josefsson.org>
parents:
5365
diff
changeset
|
784 |
5365
192b28b0d8e2
getpagesize module shouldn't assume sys/param.h exists.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5355
diff
changeset
|
785 2004-10-22 Paul Eggert <eggert@cs.ucla.edu> |
192b28b0d8e2
getpagesize module shouldn't assume sys/param.h exists.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5355
diff
changeset
|
786 |
192b28b0d8e2
getpagesize module shouldn't assume sys/param.h exists.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5355
diff
changeset
|
787 * getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>. |
192b28b0d8e2
getpagesize module shouldn't assume sys/param.h exists.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5355
diff
changeset
|
788 |
5355
774ea1c956d0
* getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
5340
diff
changeset
|
789 2004-10-15 Paul Eggert <eggert@cs.ucla.edu> |
774ea1c956d0
* getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
5340
diff
changeset
|
790 |
774ea1c956d0
* getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
5340
diff
changeset
|
791 * getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD |
774ea1c956d0
* getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
5340
diff
changeset
|
792 implementation of getopt_long. Problem reported by Alexander Taler in: |
774ea1c956d0
* getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
5340
diff
changeset
|
793 http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html |
774ea1c956d0
* getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
5340
diff
changeset
|
794 |
5340 | 795 2004-10-11 Yoann Vandoorselaere <yoann@prelude-ids.org> |
796 | |
797 * vsnprintf.m4: New file. | |
798 | |
5326
6523edcee696
Don't redeclare strsep if the system already has it.
Bruno Haible <bruno@clisp.org>
parents:
5321
diff
changeset
|
799 2004-10-05 Bruno Haible <bruno@clisp.org> |
6523edcee696
Don't redeclare strsep if the system already has it.
Bruno Haible <bruno@clisp.org>
parents:
5321
diff
changeset
|
800 |
6523edcee696
Don't redeclare strsep if the system already has it.
Bruno Haible <bruno@clisp.org>
parents:
5321
diff
changeset
|
801 * strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check |
6523edcee696
Don't redeclare strsep if the system already has it.
Bruno Haible <bruno@clisp.org>
parents:
5321
diff
changeset
|
802 for the declaration of strsep. |
6523edcee696
Don't redeclare strsep if the system already has it.
Bruno Haible <bruno@clisp.org>
parents:
5321
diff
changeset
|
803 |
5318
7c24a825b51d
Remove dependencies on unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5310
diff
changeset
|
804 2004-10-04 Paul Eggert <eggert@cs.ucla.edu> |
7c24a825b51d
Remove dependencies on unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5310
diff
changeset
|
805 |
5321
fe390d57473a
Rename xclone to xmemdup. Remove obsolete xalloc macros.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5318
diff
changeset
|
806 * xalloc.m4 (gl_PREREQ_XSTRDUP): Remove. All uses removed. |
fe390d57473a
Rename xclone to xmemdup. Remove obsolete xalloc macros.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5318
diff
changeset
|
807 |
5318
7c24a825b51d
Remove dependencies on unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5310
diff
changeset
|
808 * unlocked-io.m4: Add copyright notice. |
7c24a825b51d
Remove dependencies on unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5310
diff
changeset
|
809 (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO. |
7c24a825b51d
Remove dependencies on unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5310
diff
changeset
|
810 |
7c24a825b51d
Remove dependencies on unlocked-io.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5310
diff
changeset
|
811 2004-10-04 Simon Josefsson <jas@extundo.com> |
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
5292
diff
changeset
|
812 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
5292
diff
changeset
|
813 * memmem.m4: New file. |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
5292
diff
changeset
|
814 |
5292 | 815 2004-10-01 Yoann Vandoorselaere <yoann@prelude-ids.org> |
816 | |
817 * strsep.m4: New file. | |
818 | |
5282
149d795beeb2
New snprintf module from Simon Josefsson.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5224
diff
changeset
|
819 2004-09-30 Simon Josefsson <jas@extundo.com> |
149d795beeb2
New snprintf module from Simon Josefsson.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5224
diff
changeset
|
820 |
149d795beeb2
New snprintf module from Simon Josefsson.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5224
diff
changeset
|
821 * snprintf.m4: New file. |
149d795beeb2
New snprintf module from Simon Josefsson.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5224
diff
changeset
|
822 |
5224
b6d1a221c907
Provide a substitute for EOVERFLOW if <errno.h> doesn't define it.
Bruno Haible <bruno@clisp.org>
parents:
5219
diff
changeset
|
823 2004-09-09 Bruno Haible <bruno@clisp.org> |
b6d1a221c907
Provide a substitute for EOVERFLOW if <errno.h> doesn't define it.
Bruno Haible <bruno@clisp.org>
parents:
5219
diff
changeset
|
824 |
b6d1a221c907
Provide a substitute for EOVERFLOW if <errno.h> doesn't define it.
Bruno Haible <bruno@clisp.org>
parents:
5219
diff
changeset
|
825 * eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with |
b6d1a221c907
Provide a substitute for EOVERFLOW if <errno.h> doesn't define it.
Bruno Haible <bruno@clisp.org>
parents:
5219
diff
changeset
|
826 modifications. |
b6d1a221c907
Provide a substitute for EOVERFLOW if <errno.h> doesn't define it.
Bruno Haible <bruno@clisp.org>
parents:
5219
diff
changeset
|
827 * vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW. |
b6d1a221c907
Provide a substitute for EOVERFLOW if <errno.h> doesn't define it.
Bruno Haible <bruno@clisp.org>
parents:
5219
diff
changeset
|
828 |
5219 | 829 2004-09-08 Bruno Haible <bruno@clisp.org> |
830 | |
831 * stdint.m4: New file, taken from GNU clisp with modifications. | |
832 | |
5209
ef929daf6639
Import userspec from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5197
diff
changeset
|
833 2004-08-19 Paul Eggert <eggert@cs.ucla.edu> |
ef929daf6639
Import userspec from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5197
diff
changeset
|
834 |
ef929daf6639
Import userspec from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5197
diff
changeset
|
835 * userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA. |
ef929daf6639
Import userspec from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5197
diff
changeset
|
836 |
5197 | 837 2004-08-12 Paul Eggert <eggert@cs.ucla.edu> |
838 | |
839 * argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody | |
840 uses HAVE_ARGP_H or HAVE_ARGP_PARSE. | |
841 Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS. | |
842 Check for program_invocation_name, program_invocation_short_name, | |
843 flockfile, funlockfile, features.h, _getopt_long_only_r. | |
844 | |
845 2004-08-12 Simon Josefsson <jas@extundo.com> | |
846 | |
847 * getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro, | |
848 as discussed with Paul Eggert in threads rooted at | |
849 <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html> | |
850 and | |
851 <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>. | |
852 Before, the test was empty, and relied on ELIDE_CODE in source | |
853 code.) | |
854 (gl_PREREQ_GETOPT): New macro. | |
855 (gl_GETOPT): Use them. | |
856 | |
5183
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
857 2004-08-11 Paul Eggert <eggert@cs.ucla.edu> |
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
858 |
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
859 Merge from coreutils. |
5390
b5cb1c9cb639
* uint32_t.m4 (gl_AC_TYPE_UINT32_T): Fix typo and define _UINT32_T.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5383
diff
changeset
|
860 |
5183
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
861 * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy. |
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
862 |
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
863 * obstack.m4 (gl_PREREQ_OBSTACK): Require |
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
864 gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T. |
734e87cf734b
Merge fnmatch and obstack from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5170
diff
changeset
|
865 |
5165
9d7fe6ace357
Add uint32_t.m4, uintptr_t.m4, and finish renaming sha->sha1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5163
diff
changeset
|
866 2004-08-09 Paul Eggert <eggert@cs.ucla.edu> |
9d7fe6ace357
Add uint32_t.m4, uintptr_t.m4, and finish renaming sha->sha1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5163
diff
changeset
|
867 |
9d7fe6ace357
Add uint32_t.m4, uintptr_t.m4, and finish renaming sha->sha1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5163
diff
changeset
|
868 * uint32_t.m4, uintptr_t.m4: New files. |
9d7fe6ace357
Add uint32_t.m4, uintptr_t.m4, and finish renaming sha->sha1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5163
diff
changeset
|
869 * sha1.m4: Renamed from sha.m4. |
9d7fe6ace357
Add uint32_t.m4, uintptr_t.m4, and finish renaming sha->sha1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5163
diff
changeset
|
870 (gl_SHA1): Renamed from gl_SHA. All uses changed. |
9d7fe6ace357
Add uint32_t.m4, uintptr_t.m4, and finish renaming sha->sha1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5163
diff
changeset
|
871 |
5170
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5168
diff
changeset
|
872 2004-08-08 Simon Josefsson <jas@extundo.com> |
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5168
diff
changeset
|
873 |
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5168
diff
changeset
|
874 * getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU): |
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5168
diff
changeset
|
875 Check getpass declaration. |
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5168
diff
changeset
|
876 |
5159 | 877 2004-08-06 Paul Eggert <eggert@cs.ucla.edu> |
878 | |
879 More merge from coreutils. | |
880 | |
881 * utimens.m4, utimecmp.m4: New files. | |
882 * backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4, | |
883 fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4, | |
884 prereq.m4, sha.m4: Import changes from coreutils. | |
885 | |
5119
7b7f24e67129
Merge from coreutils (first part).
Paul Eggert <eggert@cs.ucla.edu>
parents:
5111
diff
changeset
|
886 2004-08-05 Paul Eggert <eggert@cs.ucla.edu> |
7b7f24e67129
Merge from coreutils (first part).
Paul Eggert <eggert@cs.ucla.edu>
parents:
5111
diff
changeset
|
887 |
5137
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
888 Merge from coreutils. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
889 |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
890 * c-strtod.m4, canonicalize.m4, fcntl-safer.m4, getcwd-path-max.m4: |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
891 New files. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
892 |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
893 * dos.m4 (gl_AC_DOS): filesystem -> file system renaming. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
894 FILESYSTEM_PREFIX_LEN -> |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
895 FILE_SYSTEM_PREFIX_LEN. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
896 FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX -> |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
897 FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
898 FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR -> |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
899 FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
900 |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
901 * path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
902 prerequisite modules now handle the DOS stuff. |
ba885205d891
More merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5119
diff
changeset
|
903 Don't check for unistd.h. |
5119
7b7f24e67129
Merge from coreutils (first part).
Paul Eggert <eggert@cs.ucla.edu>
parents:
5111
diff
changeset
|
904 |
5160
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
905 2004-08-03 Simon Josefsson <jas@extundo.com> |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
906 |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
907 * strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it. |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
908 |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
909 2004-08-02 Simon Josefsson <jas@extundo.com> |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
910 |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
911 * getsubopt.m4: New file. |
e70798064461
Only declare strdup if it isn't declared by the system.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5159
diff
changeset
|
912 |
5111 | 913 2004-08-03 Paul Eggert <eggert@cs.ucla.edu> |
914 | |
915 * fatal.m4: Remove, as the "fatal" module wasn't used or working. | |
916 | |
5103
ec9fb052682f
s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g
Paul Eggert <eggert@cs.ucla.edu>
parents:
5092
diff
changeset
|
917 2004-07-13 Robert Millan <robertmh@gnu.org> |
ec9fb052682f
s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g
Paul Eggert <eggert@cs.ucla.edu>
parents:
5092
diff
changeset
|
918 |
ec9fb052682f
s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g
Paul Eggert <eggert@cs.ucla.edu>
parents:
5092
diff
changeset
|
919 * host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g. |
ec9fb052682f
s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g
Paul Eggert <eggert@cs.ucla.edu>
parents:
5092
diff
changeset
|
920 |
5092
524f03b4532e
Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5081
diff
changeset
|
921 2004-06-22 Paul Eggert <eggert@cs.ucla.edu> |
524f03b4532e
Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5081
diff
changeset
|
922 |
524f03b4532e
Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5081
diff
changeset
|
923 * argz.m4: New file, which is autoupdated from libtool. |
524f03b4532e
Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5081
diff
changeset
|
924 |
5081
af4fd5060a09
* modules/calloc: New file.
Jim Meyering <jim@meyering.net>
parents:
5078
diff
changeset
|
925 2004-06-01 Jim Meyering <jim@meyering.net> |
af4fd5060a09
* modules/calloc: New file.
Jim Meyering <jim@meyering.net>
parents:
5078
diff
changeset
|
926 |
af4fd5060a09
* modules/calloc: New file.
Jim Meyering <jim@meyering.net>
parents:
5078
diff
changeset
|
927 * calloc.m4: New file. |
af4fd5060a09
* modules/calloc: New file.
Jim Meyering <jim@meyering.net>
parents:
5078
diff
changeset
|
928 |
5078
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
929 2004-06-01 Paul Eggert <eggert@cs.ucla.edu> |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
930 |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
931 Merge from coreutils CVS. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
932 |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
933 * backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4, |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
934 makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4, |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
935 putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4, |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
936 strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4, |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
937 xstrtol.m4: Fix copyright date and/or serial number. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
938 |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
939 * chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
940 See if we need an fchown replacement. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
941 (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
942 (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK, |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
943 and use the replacement function if we detect either defect. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
944 |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
945 * prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR, |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
946 gl_UTIMECMP. |
146129232fe0
Merge from coreutils CVS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5075
diff
changeset
|
947 |
5075
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
948 2004-05-31 Paul Eggert <eggert@cs.ucla.edu> |
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
949 |
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
950 * stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI |
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
951 C B3910B A.05.55 [Dec 04 2003]. Problem reported by Jim Meyering. |
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
952 Also, fix a typo in a diagnostic. |
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
953 |
5074
5f558ceff8fb
Remove dependency of hash and xalloc modules on the malloc and realloc
Paul Eggert <eggert@cs.ucla.edu>
parents:
5072
diff
changeset
|
954 2004-05-30 Paul Eggert <eggert@cs.ucla.edu> |
5f558ceff8fb
Remove dependency of hash and xalloc modules on the malloc and realloc
Paul Eggert <eggert@cs.ucla.edu>
parents:
5072
diff
changeset
|
955 |
5f558ceff8fb
Remove dependency of hash and xalloc modules on the malloc and realloc
Paul Eggert <eggert@cs.ucla.edu>
parents:
5072
diff
changeset
|
956 * xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC |
5f558ceff8fb
Remove dependency of hash and xalloc modules on the malloc and realloc
Paul Eggert <eggert@cs.ucla.edu>
parents:
5072
diff
changeset
|
957 or AC_FUNC_REALLOC. |
5f558ceff8fb
Remove dependency of hash and xalloc modules on the malloc and realloc
Paul Eggert <eggert@cs.ucla.edu>
parents:
5072
diff
changeset
|
958 |
5072
d7698ffc0e5e
* free.m4: Replace free if it not known to work, not the other way round.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5067
diff
changeset
|
959 2004-05-20 Andreas Schwab <schwab@suse.de> |
d7698ffc0e5e
* free.m4: Replace free if it not known to work, not the other way round.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5067
diff
changeset
|
960 |
d7698ffc0e5e
* free.m4: Replace free if it not known to work, not the other way round.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5067
diff
changeset
|
961 * free.m4: Replace free if it not known to work, not the other |
d7698ffc0e5e
* free.m4: Replace free if it not known to work, not the other way round.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5067
diff
changeset
|
962 way round. |
d7698ffc0e5e
* free.m4: Replace free if it not known to work, not the other way round.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5067
diff
changeset
|
963 |
5067
1407b63897fd
Simplify argp by assuming alloca module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5063
diff
changeset
|
964 2004-05-17 Derek R. Price <derek@ximbiot.com> |
1407b63897fd
Simplify argp by assuming alloca module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5063
diff
changeset
|
965 Paul Eggert <eggert@cs.ucla.edu> |
1407b63897fd
Simplify argp by assuming alloca module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5063
diff
changeset
|
966 |
1407b63897fd
Simplify argp by assuming alloca module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5063
diff
changeset
|
967 * argp: Depend on alloca. |
1407b63897fd
Simplify argp by assuming alloca module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5063
diff
changeset
|
968 |
5063
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
969 2004-05-16 Paul Eggert <eggert@cs.ucla.edu> |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
970 |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
971 * alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always, |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
972 for backward compatibility with older code. We need our own |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
973 alloca.h if _AIX is defined. Define HAVE_ALLOCA if we discover |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
974 it under some other name, and our alloca.h will define it. |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
975 |
5059
eb3efcec6ae2
Don't assume that gettimeofday and settimeofday exist or work.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5045
diff
changeset
|
976 2004-05-13 Paul Eggert <eggert@cs.ucla.edu> |
eb3efcec6ae2
Don't assume that gettimeofday and settimeofday exist or work.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5045
diff
changeset
|
977 |
5063
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
978 * gettime.m4 (gl_GETTIME): Require gl_TIMESPEC. |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
979 Check for gettimeofday. |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
980 * settime.m4 (gl_SETTIME): Require gl_TIMESPEC. |
1aecdc8063ba
alloca cleanup: always include <alloca.h>.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5059
diff
changeset
|
981 Check for settimeofday, stime. |
5075
da468be96043
Detect _Bool bug in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].
Paul Eggert <eggert@cs.ucla.edu>
parents:
5074
diff
changeset
|
982 |
5045
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
983 2004-04-20 Paul Eggert <eggert@twinsun.com> |
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
984 |
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
985 * host-os.m4: Add a copyright notice. |
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
986 |
5028 | 987 2004-04-20 Jim Meyering <jim@meyering.net> |
988 | |
5039 | 989 Change UTILS_ to gl_ in AC_DEFINE'd names. |
990 Change utils_- and jm_-prefixed variables, too. | |
991 * mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from | |
992 UTILS_FUNC_MKDIR_TRAILING_SLASH. | |
993 * mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP. | |
994 | |
5028 | 995 * dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD. |
996 Don't emit trailing blanks. | |
5036 | 997 Also rename jm_-prefixed variables to have gl_ prefix. |
5041 | 998 |
5045
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
999 * host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS. |
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
1000 Also rename jm_-prefixed variables to have gl_ prefix. |
325f3a7a5d79
Rename utils_ to gl_ in host-os.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5043
diff
changeset
|
1001 |
5041 | 1002 * jm-macros.m4: Reflect the renamings. |
5043 | 1003 * prereq.m4: Likewise. |
5028 | 1004 |
5025 | 1005 2004-04-19 Jim Meyering <jim@meyering.net> |
1006 | |
1007 * readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE, | |
1008 now that readutmp.c may call `free (0)'. | |
1009 | |
5018 | 1010 2004-04-19 Bruno Haible <bruno@clisp.org> |
1011 | |
1012 * mbrtowc.m4: Change jm_ to gl_ in cache variables as well. | |
5019 | 1013 * inttypes_h.m4: Likewise. |
1014 * stdint_h.m4: Likewise. | |
5020 | 1015 * intmax_t.m4: Likewise. |
5019 | 1016 * uintmax_t.m4: Likewise. |
5018 | 1017 |
5016
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1018 2004-04-18 Jim Meyering <jim@meyering.net> |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1019 |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1020 * prereq.m4: Don't forbid jm_ prefix. |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1021 |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1022 * afs.m4, allocsa.m4, assert.m4, backupfile.m4, bison.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1023 * check-decl.m4, chown.m4, d-ino.m4, d-type.m4, dirname.m4, dos.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1024 * error.m4, fpending.m4, fstypename.m4, fsusage.m4, ftruncate.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1025 * getdate.m4, getgroups.m4, gettext.m4, glibc21.m4, group-member.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1026 * human.m4, intmax.m4, intmax_t.m4, inttostr.m4, inttypes.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1027 * inttypes_h.m4, jm-macros.m4, jm-winsz1.m4, jm-winsz2.m4, lchown.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1028 * lib-check.m4, link-follow.m4, localcharset.m4, longlong.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1029 * ls-mntd-fs.m4, lstat.m4, makepath.m4, mbrtowc.m4, mbswidth.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1030 * memchr.m4, memcmp.m4, mkdtemp.m4, mkstemp.m4, mountlist.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1031 * nanosleep.m4, path-concat.m4, perl.m4, prereq.m4, putenv.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1032 * quotearg.m4, regex.m4, stat.m4, stdint_h.m4, strftime.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1033 * strtoimax.m4, strtoll.m4, strtoull.m4, strtoumax.m4, timespec.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1034 * uintmax_t.m4, ulonglong.m4, unlink-busy.m4, unlocked-io.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1035 * uptime.m4, utimbuf.m4, utime.m4, utimes-null.m4, vasnprintf.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1036 * xstrtoimax.m4, xstrtol.m4, xstrtoumax.m4: |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1037 Change jm_ to gl_ in AC_DEFINE'd names. Update all uses. |
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
5015
diff
changeset
|
1038 |
5015 | 1039 2004-04-16 Jim Meyering <jim@meyering.net> |
1040 | |
1041 * prereq.m4 (jm_PREREQ_STAT): Remove macro. It is specific to | |
1042 coreutils' stat program. | |
1043 (gl_PREREQ): Don't require jm_PREREQ_STAT. | |
1044 | |
4991 | 1045 2004-03-31 Jim Meyering <jim@meyering.net> |
1046 | |
1047 * prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC. | |
4993 | 1048 Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC. |
4991 | 1049 * xalloc.m4: Likewise. |
1050 | |
4987
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1051 2004-03-30 Jim Meyering <jim@meyering.net> |
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1052 |
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1053 * realloc.m4: Remove file, since now it does no more than |
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1054 AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via |
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1055 the `configure.ac' section of module/realloc. |
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1056 * malloc.m4: Likewise, but for AC_FUNC_MALLOC. |
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1057 |
4983 | 1058 2004-03-30 Paul Eggert <eggert@twinsun.com> |
1059 | |
4996 | 1060 Merge from coreutils. |
5015 | 1061 |
4983 | 1062 * inttostr.m4: New file. |
4996 | 1063 * getdate.m4 (gl_GETDATE): Remove time-related stuff. |
1064 Require AM_STDBOOL_H and gl_TIMESPEC instead. | |
1065 Require gl_CLOCK_TIME. | |
1066 * clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE. | |
1067 | |
1068 2004-03-30 Jim Meyering <jim@meyering.net> | |
1069 | |
1070 Merge from coreutils. | |
1071 | |
1072 Avoid a configure-time warning about sys/ucred.h on OSF V4.0. | |
1073 * ls-mntd-fs.m4: Test for sys/ucred.h separately, since | |
1074 on some systems one must include <grp.h> before it. | |
1075 Reported by Christian Krackowizer. | |
4983 | 1076 |
4979
6b9af4133e6f
Merge changes to getloadavg.c from coreutils and Emacs; this
Paul Eggert <eggert@cs.ucla.edu>
parents:
4976
diff
changeset
|
1077 2004-03-29 Paul Eggert <eggert@twinsun.com> |
6b9af4133e6f
Merge changes to getloadavg.c from coreutils and Emacs; this
Paul Eggert <eggert@cs.ucla.edu>
parents:
4976
diff
changeset
|
1078 |
6b9af4133e6f
Merge changes to getloadavg.c from coreutils and Emacs; this
Paul Eggert <eggert@cs.ucla.edu>
parents:
4976
diff
changeset
|
1079 * cloexec.m4: New file. |
6b9af4133e6f
Merge changes to getloadavg.c from coreutils and Emacs; this
Paul Eggert <eggert@cs.ucla.edu>
parents:
4976
diff
changeset
|
1080 |
4976
4df6aeb9a5c5
Fix portability problem with Tru64 and BSD/OS.
Bruno Haible <bruno@clisp.org>
parents:
4969
diff
changeset
|
1081 2004-03-18 Paul Eggert <eggert@twinsun.com> |
5728 | 1082 Bruno Haible <bruno@clisp.org> |
4976
4df6aeb9a5c5
Fix portability problem with Tru64 and BSD/OS.
Bruno Haible <bruno@clisp.org>
parents:
4969
diff
changeset
|
1083 |
4df6aeb9a5c5
Fix portability problem with Tru64 and BSD/OS.
Bruno Haible <bruno@clisp.org>
parents:
4969
diff
changeset
|
1084 * mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares |
4df6aeb9a5c5
Fix portability problem with Tru64 and BSD/OS.
Bruno Haible <bruno@clisp.org>
parents:
4969
diff
changeset
|
1085 mbswidth. |
4df6aeb9a5c5
Fix portability problem with Tru64 and BSD/OS.
Bruno Haible <bruno@clisp.org>
parents:
4969
diff
changeset
|
1086 |
4969
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1087 2004-03-07 Paul Eggert <eggert@twinsun.com> |
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1088 |
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1089 * c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK. |
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1090 All uses changed. Check for sa_sigaction member; this fixes |
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1091 a bug first reported by Jason Andrade in |
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1092 <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>. |
0db24850c598
Fix c-stack.c portability bug on IRIX 5.3.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4961
diff
changeset
|
1093 |
4961
d2eab0a08b37
Improved strdup, from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
4954
diff
changeset
|
1094 2004-01-18 Simon Josefsson <jas@extundo.com> |
d2eab0a08b37
Improved strdup, from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
4954
diff
changeset
|
1095 |
d2eab0a08b37
Improved strdup, from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
4954
diff
changeset
|
1096 * strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared. |
d2eab0a08b37
Improved strdup, from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
4954
diff
changeset
|
1097 |
4954 | 1098 2004-02-18 Bruno Haible <bruno@clisp.org> |
1099 | |
1100 * xsize.m4 (gl_XSIZE): Require AC_C_INLINE. | |
1101 Reported by Derek Robert Price <derek@ximbiot.com>. | |
1102 | |
4945
07fb9f5d51e6
update from gettext 0.14.1
Karl Berry <karl@freefriends.org>
parents:
4940
diff
changeset
|
1103 2004-02-06 Karl Berry <karl@gnu.org> |
07fb9f5d51e6
update from gettext 0.14.1
Karl Berry <karl@freefriends.org>
parents:
4940
diff
changeset
|
1104 |
07fb9f5d51e6
update from gettext 0.14.1
Karl Berry <karl@freefriends.org>
parents:
4940
diff
changeset
|
1105 * po.m4: update from gettext 0.14.1. |
07fb9f5d51e6
update from gettext 0.14.1
Karl Berry <karl@freefriends.org>
parents:
4940
diff
changeset
|
1106 |
4940 | 1107 2004-02-03 Bruno Haible <bruno@clisp.org> |
1108 | |
1109 * pipe.m4: New file, from GNU gettext. | |
1110 | |
4936 | 1111 2004-01-27 Bruno Haible <bruno@clisp.org> |
1112 | |
1113 * execute.m4: New file, from GNU gettext. | |
1114 | |
4924 | 1115 2003-11-24 Bruno Haible <bruno@clisp.org> |
1116 | |
1117 * allocsa.m4: New file, from GNU gettext. | |
1118 | |
4919 | 1119 2003-11-24 Bruno Haible <bruno@clisp.org> |
1120 | |
1121 * eealloc.m4: New file, from GNU gettext. | |
1122 | |
4910 | 1123 2004-01-15 Paul Eggert <eggert@twinsun.com> |
1124 | |
1125 Merge from coreutils. | |
1126 | |
1127 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t. | |
1128 * posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION. | |
1129 (gl_DEFAULT_POSIX2_VERSION): Move | |
1130 the documentation from 'configure' into 'config.hin', | |
1131 so that 'configure --help' isn't burdened by it and | |
1132 we don't have to worry about its formatting there. | |
1133 Reword the documentation so that it's more succinct | |
1134 and can be run together into a single paragraph. | |
1135 * same.m4 (gl_SAME): Check for pathconf. | |
1136 | |
1137 2004-01-15 Jim Meyering <jim@meyering.net> | |
1138 | |
1139 Merge from coreutils. | |
1140 | |
1141 * clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME | |
1142 if no library is required. | |
1143 * jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX. | |
1144 * jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE. | |
1145 * jm-macros.m4 (jm_MACROS): Require autoconf-2.58. | |
1146 (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58. | |
1147 * jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW. | |
1148 * lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the | |
1149 value, $ac_cv_search_crypt, if it's "none required". | |
1150 * posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro. | |
1151 * prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG, | |
1152 not gl_FUNC_GETLOADAVG. | |
1153 * prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH, | |
1154 gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS. | |
1155 | |
1156 2004-01-15 Alexandre Duret-Lutz <adl@gnu.org> | |
1157 | |
1158 Merge from coreutils. | |
1159 | |
1160 * nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the | |
1161 value, $ac_cv_search_nanosleep, if it's "none required". | |
1162 | |
4895 | 1163 2003-12-03 Bruno Haible <bruno@clisp.org> |
1164 | |
1165 * gettext.m4: Upgrade from gettext-0.13. | |
1166 * po.m4: Upgrade from gettext-0.13. | |
1167 * size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here. | |
1168 * intmax.m4: New file, from gettext-0.13. | |
1169 * printf-posix.m4: New file, from gettext-0.13. | |
1170 | |
4886
e4317f1f2e2c
Use size_t instead of ssize_t.
Bruno Haible <bruno@clisp.org>
parents:
4872
diff
changeset
|
1171 2003-11-25 Bruno Haible <bruno@clisp.org> |
e4317f1f2e2c
Use size_t instead of ssize_t.
Bruno Haible <bruno@clisp.org>
parents:
4872
diff
changeset
|
1172 |
e4317f1f2e2c
Use size_t instead of ssize_t.
Bruno Haible <bruno@clisp.org>
parents:
4872
diff
changeset
|
1173 * vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require |
e4317f1f2e2c
Use size_t instead of ssize_t.
Bruno Haible <bruno@clisp.org>
parents:
4872
diff
changeset
|
1174 gt_TYPE_SSIZE_T. |
e4317f1f2e2c
Use size_t instead of ssize_t.
Bruno Haible <bruno@clisp.org>
parents:
4872
diff
changeset
|
1175 |
4872
c5afc99b8ce5
Use xsize.h to protect against memory size overflows.
Bruno Haible <bruno@clisp.org>
parents:
4865
diff
changeset
|
1176 2003-11-17 Bruno Haible <bruno@clisp.org> |
c5afc99b8ce5
Use xsize.h to protect against memory size overflows.
Bruno Haible <bruno@clisp.org>
parents:
4865
diff
changeset
|
1177 |
c5afc99b8ce5
Use xsize.h to protect against memory size overflows.
Bruno Haible <bruno@clisp.org>
parents:
4865
diff
changeset
|
1178 * vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T. |
c5afc99b8ce5
Use xsize.h to protect against memory size overflows.
Bruno Haible <bruno@clisp.org>
parents:
4865
diff
changeset
|
1179 |
4865
8690f8e0e0bf
Remove dependency of xalloc.h on SIZE_MAX and PTRDIFF_MAX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4862
diff
changeset
|
1180 2003-11-12 Paul Eggert <eggert@twinsun.com> |
8690f8e0e0bf
Remove dependency of xalloc.h on SIZE_MAX and PTRDIFF_MAX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4862
diff
changeset
|
1181 |
8690f8e0e0bf
Remove dependency of xalloc.h on SIZE_MAX and PTRDIFF_MAX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4862
diff
changeset
|
1182 * xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or |
8690f8e0e0bf
Remove dependency of xalloc.h on SIZE_MAX and PTRDIFF_MAX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4862
diff
changeset
|
1183 gl_PTRDIFF_MAX. |
8690f8e0e0bf
Remove dependency of xalloc.h on SIZE_MAX and PTRDIFF_MAX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4862
diff
changeset
|
1184 |
4862
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1185 2003-11-11 Bruno Haible <bruno@clisp.org> |
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1186 |
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1187 * size_max.m4: New file. |
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1188 * ptrdiff_max.m4: New file. |
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1189 * xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX. |
4872
c5afc99b8ce5
Use xsize.h to protect against memory size overflows.
Bruno Haible <bruno@clisp.org>
parents:
4865
diff
changeset
|
1190 * xalloc.m4 (gl_PREREQ_XALLOC): New macro. |
4862
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1191 (gl_XALLOC): Invoke it. |
1f6c3678919c
Rely on SIZE_MAX and PTRDIFF_MAX as defined by ISO C 99.
Bruno Haible <bruno@clisp.org>
parents:
4852
diff
changeset
|
1192 |
4852 | 1193 2003-11-04 Bruno Haible <bruno@clisp.org> |
1194 | |
1195 * xsize.m4: New file. | |
1196 | |
4847 | 1197 2003-11-03 Bruno Haible <bruno@clisp.org> |
1198 | |
1199 * wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid. | |
1200 | |
4834
6310eac53465
Change netbsd*-gnu pattern back to netbsd*-gnu*.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4830
diff
changeset
|
1201 2003-10-30 Paul Eggert <eggert@cs.ucla.edu> |
6310eac53465
Change netbsd*-gnu pattern back to netbsd*-gnu*.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4830
diff
changeset
|
1202 |
6310eac53465
Change netbsd*-gnu pattern back to netbsd*-gnu*.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4830
diff
changeset
|
1203 * host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to |
6310eac53465
Change netbsd*-gnu pattern back to netbsd*-gnu*.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4830
diff
changeset
|
1204 netbsd*-gnu*. Suggested by Robert Millan. |
6310eac53465
Change netbsd*-gnu pattern back to netbsd*-gnu*.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4830
diff
changeset
|
1205 |
4830
410ea3e253b9
Revamp xalloc_oversized so that its count arg need not fit into size_t.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4829
diff
changeset
|
1206 2003-10-29 Paul Eggert <eggert@twinsun.com> |
410ea3e253b9
Revamp xalloc_oversized so that its count arg need not fit into size_t.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4829
diff
changeset
|
1207 |
410ea3e253b9
Revamp xalloc_oversized so that its count arg need not fit into size_t.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4829
diff
changeset
|
1208 * xalloc.m4 (gl_XALLOC): Undo previous change. |
410ea3e253b9
Revamp xalloc_oversized so that its count arg need not fit into size_t.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4829
diff
changeset
|
1209 |
4829
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1210 2003-10-29 Paul Eggert <eggert@twinsun.com> |
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1211 |
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1212 * host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu. Add comments |
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1213 to it, and to knetbsd*-gnu and kfreebsd*-gnu. Remove the '*' from |
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1214 after the 'gnu' in these cases. This fixes some bugs in the |
4834
6310eac53465
Change netbsd*-gnu pattern back to netbsd*-gnu*.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4830
diff
changeset
|
1215 previous change, and is based on suggestions by Robert Millan. |
4829
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1216 |
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1217 2003-10-28 Paul Eggert <eggert@twinsun.com> |
4823
3e73a3fa2621
Identify GNU/KFreeBSD and GNU/KNetBSD using their new names (which have a
Paul Eggert <eggert@cs.ucla.edu>
parents:
4819
diff
changeset
|
1218 |
3e73a3fa2621
Identify GNU/KFreeBSD and GNU/KNetBSD using their new names (which have a
Paul Eggert <eggert@cs.ucla.edu>
parents:
4819
diff
changeset
|
1219 * host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and |
4829
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1220 GNU/KNetBSD. These implementations use glibc atop the FreeBSD and |
2fa22df65c21
host-os.m4 (UTILS_HOST_OS): Fix bugs in previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4823
diff
changeset
|
1221 NetBSD kernels. Requested by Richard Stallman. |
4823
3e73a3fa2621
Identify GNU/KFreeBSD and GNU/KNetBSD using their new names (which have a
Paul Eggert <eggert@cs.ucla.edu>
parents:
4819
diff
changeset
|
1222 |
4819
9449e9d024f2
xalloc.h now uses inline, so includers need to configure this.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4809
diff
changeset
|
1223 2003-10-26 Paul Eggert <eggert@twinsun.com> |
9449e9d024f2
xalloc.h now uses inline, so includers need to configure this.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4809
diff
changeset
|
1224 |
9449e9d024f2
xalloc.h now uses inline, so includers need to configure this.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4809
diff
changeset
|
1225 * xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h |
9449e9d024f2
xalloc.h now uses inline, so includers need to configure this.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4809
diff
changeset
|
1226 now uses inline. |
9449e9d024f2
xalloc.h now uses inline, so includers need to configure this.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4809
diff
changeset
|
1227 |
4809
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1228 2003-10-23 Paul Eggert <eggert@twinsun.com> |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1229 |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1230 * getline.m4 (AM_FUNC_GETLINE): |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1231 Don't include getndelim2.o twice into LIBOBJS; this breaks on some |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1232 hosts. Problem reported by Derek Robert Price in |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1233 <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>. |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1234 This patch can be withdrawn after Autoconf 2.58 is required for gnulib. |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1235 * getndelim2.m4 (gl_GETNDELIM2): Likewise. |
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1236 |
4802 | 1237 2003-10-20 Bruno Haible <bruno@clisp.org> |
1238 | |
1239 * wait-process.m4: New file. | |
1240 | |
4786
83d8d561903a
Improved 'fatal-signal' module.
Bruno Haible <bruno@clisp.org>
parents:
4783
diff
changeset
|
1241 2003-10-14 Bruno Haible <bruno@clisp.org> |
83d8d561903a
Improved 'fatal-signal' module.
Bruno Haible <bruno@clisp.org>
parents:
4783
diff
changeset
|
1242 |
83d8d561903a
Improved 'fatal-signal' module.
Bruno Haible <bruno@clisp.org>
parents:
4783
diff
changeset
|
1243 * sig_atomic_t: New file, from GNU gettext. |
83d8d561903a
Improved 'fatal-signal' module.
Bruno Haible <bruno@clisp.org>
parents:
4783
diff
changeset
|
1244 * fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T. |
83d8d561903a
Improved 'fatal-signal' module.
Bruno Haible <bruno@clisp.org>
parents:
4783
diff
changeset
|
1245 |
4783
d1dc5d9bf1ba
Revamp xalloc interface so that it can check for address arithmetic overflow.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4781
diff
changeset
|
1246 2003-10-12 Paul Eggert <eggert@twinsun.com> |
d1dc5d9bf1ba
Revamp xalloc interface so that it can check for address arithmetic overflow.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4781
diff
changeset
|
1247 |
d1dc5d9bf1ba
Revamp xalloc interface so that it can check for address arithmetic overflow.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4781
diff
changeset
|
1248 * xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE. |
d1dc5d9bf1ba
Revamp xalloc interface so that it can check for address arithmetic overflow.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4781
diff
changeset
|
1249 |
4781
d762cb7714db
A little more dependencies of the 'argp' module.
Bruno Haible <bruno@clisp.org>
parents:
4778
diff
changeset
|
1250 2003-10-10 Simon Josefsson <jas@extundo.com> |
d762cb7714db
A little more dependencies of the 'argp' module.
Bruno Haible <bruno@clisp.org>
parents:
4778
diff
changeset
|
1251 |
d762cb7714db
A little more dependencies of the 'argp' module.
Bruno Haible <bruno@clisp.org>
parents:
4778
diff
changeset
|
1252 * argp.m4: Add AC_C_INLINE. |
d762cb7714db
A little more dependencies of the 'argp' module.
Bruno Haible <bruno@clisp.org>
parents:
4778
diff
changeset
|
1253 |
4778
d68794da5ecb
Merge getpass from libc, plus a few fixes.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4770
diff
changeset
|
1254 2003-10-08 Paul Eggert <eggert@twinsun.com> |
d68794da5ecb
Merge getpass from libc, plus a few fixes.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4770
diff
changeset
|
1255 |
d68794da5ecb
Merge getpass from libc, plus a few fixes.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4770
diff
changeset
|
1256 * getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h. |
d68794da5ecb
Merge getpass from libc, plus a few fixes.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4770
diff
changeset
|
1257 |
4770 | 1258 2003-10-06 Bruno Haible <bruno@clisp.org> |
1259 | |
1260 * fatal-signal.m4: New file. | |
1261 * signalblocking.m4: New file, from GNU gettext. | |
1262 | |
4753 | 1263 2003-09-27 Paul Eggert <eggert@twinsun.com> |
1264 | |
1265 * free.m4: New file. | |
1266 | |
4746
7f0802de0710
Better handling of collision with AIX stpncpy() function.
Bruno Haible <bruno@clisp.org>
parents:
4730
diff
changeset
|
1267 2003-09-26 Bruno Haible <bruno@clisp.org> |
7f0802de0710
Better handling of collision with AIX stpncpy() function.
Bruno Haible <bruno@clisp.org>
parents:
4730
diff
changeset
|
1268 |
4747
7113ffd9623a
Better avoid collision with AIX stpncpy().
Bruno Haible <bruno@clisp.org>
parents:
4746
diff
changeset
|
1269 * stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX stpncpy(). |
7113ffd9623a
Better avoid collision with AIX stpncpy().
Bruno Haible <bruno@clisp.org>
parents:
4746
diff
changeset
|
1270 Don't define stpncpy through config.h; it's now done through stpncpy.h. |
4746
7f0802de0710
Better handling of collision with AIX stpncpy() function.
Bruno Haible <bruno@clisp.org>
parents:
4730
diff
changeset
|
1271 |
4730
64e0a1bfa9bb
New module 'getdomainname'.
Bruno Haible <bruno@clisp.org>
parents:
4719
diff
changeset
|
1272 2003-09-25 Simon Josefsson <jas@extundo.com> |
4809
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1273 Bruno Haible <bruno@clisp.org> |
4730
64e0a1bfa9bb
New module 'getdomainname'.
Bruno Haible <bruno@clisp.org>
parents:
4719
diff
changeset
|
1274 |
64e0a1bfa9bb
New module 'getdomainname'.
Bruno Haible <bruno@clisp.org>
parents:
4719
diff
changeset
|
1275 * getdomainname.m4: New file. |
64e0a1bfa9bb
New module 'getdomainname'.
Bruno Haible <bruno@clisp.org>
parents:
4719
diff
changeset
|
1276 |
4719
e6ff70bf10f9
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4708
diff
changeset
|
1277 2003-09-17 Paul Eggert <eggert@twinsun.com> |
e6ff70bf10f9
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4708
diff
changeset
|
1278 |
e6ff70bf10f9
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4708
diff
changeset
|
1279 * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first, |
e6ff70bf10f9
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4708
diff
changeset
|
1280 to avoid spurious warnings like "AC_RUN_IFELSE was called before |
e6ff70bf10f9
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4708
diff
changeset
|
1281 gl_USE_SYSTEM_EXTENSIONS" from autoreconf. |
e6ff70bf10f9
* extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4708
diff
changeset
|
1282 |
4701
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1283 2003-09-12 Paul Eggert <eggert@twinsun.com> |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1284 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1285 * error.m4: Require AC_FUNC_STRERROR_R rather than invoking it. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1286 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1287 * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1288 and AC_MINIX, too, so that their extensions are available. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1289 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1290 * prereq.m4 (jm_PREREQ_ADDEXT): Remove. All uses removed. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1291 This macro has been superseded by gl_BACKUPFILE. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1292 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1293 More patches to assume C89 or better. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1294 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1295 * error.m4 (gl_ERROR): Don't check for vprintf. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1296 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1297 * check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h> |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1298 unconditionally. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1299 * closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1300 * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1301 Include <string.h>, <stdlib.h> unconditionally. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1302 * lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1303 * readdir.m4 (GL_FUNC_READDIR): Don't check for string.h. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1304 * readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C headers |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1305 or for string.h. |
4708 | 1306 * strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h |
4701
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1307 or strtoul. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1308 |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1309 * mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C headers. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1310 * strdup.m4 (gl_PREREQ_STRDUP): Likewise. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1311 * userspec.m4 (gl_USERSPEC): Likewise. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1312 * xalloc.m4 (gl_PREREQ_XMALLOC): Likewise. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1313 * xstrtod.m4 (gl_XSTRTOD): Likewise. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1314 * xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1315 * strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h, |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1316 memcpy, memset. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1317 (jm_FUNC_GNU_STRFTIME): Don't require standard C headers. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1318 * strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1319 * strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h, strtol. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1320 * strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1321 * userspec.m4 (gl_USERSPEC): Do not check for string.h. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1322 * xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol, |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1323 strtoul. |
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1324 |
4688 | 1325 2003-09-11 Paul Eggert <eggert@twinsun.com> |
1326 | |
4701
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1327 More patches to assume C89 or better. |
4688 | 1328 * strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check. |
1329 * strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h, | |
1330 string.h, memchr, STDC_HEADERS. | |
4701
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1331 |
4683
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1332 2003-09-10 Bruno Haible <bruno@clisp.org> |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1333 |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1334 * strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check. |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1335 * strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check. |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1336 * strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check. |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1337 * unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check. |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1338 * setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove |
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1339 <stdlib.h> and <string.h> checks. |
4684 | 1340 * xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check. |
1341 * yesno.m4 (gl_YESNO): Remove <stdlib.h> check. | |
4683
4452e4c45cc4
Assume ANSI C <string.h>, <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
4677
diff
changeset
|
1342 |
4670 | 1343 2003-09-09 Paul Eggert <eggert@twinsun.com> |
1344 | |
4701
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1345 More patches to assume C89 or better. |
4677
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1346 * getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h. |
4670 | 1347 * getopt.m4 (gl_GETOPT): Don't check for string.h. |
1348 * getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers | |
1349 or for string.h. | |
1350 * getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for stdlib.h. | |
1351 * group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard C | |
1352 headers. | |
1353 * hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h, | |
1354 string.h. | |
1355 * hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free. | |
1356 * human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv. | |
1357 * idcache.m4 (gl_IDCACHE): Do not check for standard C headers, | |
1358 or for string.h. | |
1359 * long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h. | |
4987
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1360 * makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard |
4670 | 1361 C headers. |
1362 * md5.m4 (gl_MD5): Don't check for limits.h, standard C headers, | |
1363 memcpy. | |
1364 * sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy. | |
4987
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1365 * memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h. |
4670 | 1366 * memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h. |
1367 * memcoll.m4 (gl_MEMCOLL): Likewise. | |
1368 * memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h. | |
1369 * mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h, | |
1370 string.h, free. | |
1371 * mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers. | |
1372 * modechange.m4 (gl_MODECHANGE): Don't check for standard C headers. | |
1373 * mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard | |
4987
f33498f10f7d
* realloc.m4: Remove file, since now it does no more than
Jim Meyering <jim@meyering.net>
parents:
4983
diff
changeset
|
1374 C headers, or for string.h. |
4670 | 1375 * obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h. |
1376 (gl_PREREQ_OBSTACK): Don't check for stdlib.h. | |
1377 * path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C | |
1378 headers, memory.h, stdlib.h, string.h, strings.h. | |
4677
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1379 * posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1380 * posixver.m4 (gl_POSIXVER): Don't check for getenv. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1381 * putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy, |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1382 strchr. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1383 * readtokens.m4 (gl_READTOKENS): Don't check for standard C |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1384 headers, memory.h, string.h. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1385 * regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1386 * rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h, |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1387 free. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1388 * rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C headers. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1389 * same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1390 * save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers. |
4670 | 1391 * savedir.m4 (gl_SAVEDIR): Don't check for standard C headers. |
4677
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1392 * strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h. |
b95345dafad0
Remove K&R cruft, day two.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4670
diff
changeset
|
1393 * xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h. |
4701
1065f1b8e8ec
More changes, mostly C89 related.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4688
diff
changeset
|
1394 |
4670 | 1395 2003-09-09 Derek Robert Price <derek@ximbiot.com> |
1396 | |
1397 * getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the | |
1398 C89 spec. | |
1399 | |
4646
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1400 2003-09-08 Paul Eggert <eggert@twinsun.com> |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1401 |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1402 Assume C89 or better; remove K&R cruft. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1403 * alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1404 * backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h, |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1405 string.h, getenv, malloc. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1406 * dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1407 headers. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1408 * canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1409 * error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1410 do not check for strerror. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1411 * exclude.m4: Do not check for stdlib.h, string.h, strings.h. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1412 * exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1413 * fatal.m4 (gl_FATAL): Do not require STDC headers, and |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1414 do not check for doprnt or vprintf. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1415 * fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove. All uses removed. |
b2ea1caa494d
Remove K&R cruft (alloca.m4 through getdate.m4).
Paul Eggert <eggert@cs.ucla.edu>
parents:
4621
diff
changeset
|
1416 * getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h. |
4670 | 1417 |
4621
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1418 2003-09-06 Paul Eggert <eggert@twinsun.com> |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1419 |
4670 | 1420 * time_r.m4: New file. |
4621
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1421 * mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h. |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1422 * timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime is. |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1423 Check for timegm declaration. |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1424 (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME. |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1425 Do not check for gmtime_r. |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1426 Replace mktime if __mktime_internal does not exist and if mktime |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1427 hasn't been replaced already. |
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
1428 |
4616 | 1429 2003-08-31 Simon Josefsson <jas@extundo.com> |
1430 | |
1431 * timegm.m4: New file. | |
1432 | |
4612
3e3decc75fcd
Avoid havoc with AIX 3.2.5 xlc.
Bruno Haible <bruno@clisp.org>
parents:
4610
diff
changeset
|
1433 2003-08-26 Bruno Haible <bruno@clisp.org> |
3e3decc75fcd
Avoid havoc with AIX 3.2.5 xlc.
Bruno Haible <bruno@clisp.org>
parents:
4610
diff
changeset
|
1434 |
3e3decc75fcd
Avoid havoc with AIX 3.2.5 xlc.
Bruno Haible <bruno@clisp.org>
parents:
4610
diff
changeset
|
1435 * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here. |
3e3decc75fcd
Avoid havoc with AIX 3.2.5 xlc.
Bruno Haible <bruno@clisp.org>
parents:
4610
diff
changeset
|
1436 This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch' |
3e3decc75fcd
Avoid havoc with AIX 3.2.5 xlc.
Bruno Haible <bruno@clisp.org>
parents:
4610
diff
changeset
|
1437 followed by '#define fnmatch fnmatch_posix' gives an error. |
3e3decc75fcd
Avoid havoc with AIX 3.2.5 xlc.
Bruno Haible <bruno@clisp.org>
parents:
4610
diff
changeset
|
1438 |
4610 | 1439 2003-08-27 Jim Meyering <jim@meyering.net> |
1440 | |
1441 * mkstemp.m4: Require that the system mkstemp be able to create | |
1442 70 temporary files, not just 30. Tru64 V4.0F's mkstemp function | |
1443 would fail after 32. Reported by Danny Levinson. Details here: | |
1444 http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html | |
1445 | |
4602 | 1446 2003-08-20 Karl Berry <karl@gnu.org> |
1447 | |
1448 * lib-ld.m4: serial 1003 from gettext, no changes besides serial. | |
1449 | |
4600 | 1450 2003-08-19 Jim Meyering <jim@meyering.net> |
1451 | |
1452 * lib-ld.m4: Revert yesterday's change, per Bruno's request here: | |
1453 http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html | |
1454 | |
4598 | 1455 2003-08-19 Bruno Haible <bruno@clisp.org> |
1456 | |
1457 * xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any more. | |
1458 | |
4600 | 1459 2003-08-18 Jim Meyering <jim@meyering.net> |
1460 | |
1461 * getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB). | |
1462 * lib-ld.m4: Likewise. | |
1463 | |
4594 | 1464 2003-08-17 Simon Josefsson <jas@extundo.com> |
1465 | |
1466 * argp.m4: New file. | |
1467 | |
4587
db90c263cc55
Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents:
4581
diff
changeset
|
1468 2003-08-17 Simon Josefsson <jas@extundo.com> |
db90c263cc55
Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents:
4581
diff
changeset
|
1469 |
db90c263cc55
Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents:
4581
diff
changeset
|
1470 * xstrndup.m4: New file. |
db90c263cc55
Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents:
4581
diff
changeset
|
1471 |
4581
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1472 2003-08-16 Jim Meyering <jim@meyering.net> |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1473 |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1474 * utimes.m4 (gl_FUNC_UTIMES): New file. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1475 * utimes.m4: Removed. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1476 * utimes-null.m4: Renamed from utimes.m4. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1477 |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1478 * c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1479 to 1MB, so as not to render systems with no stack size limit (e.g., |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1480 linux-2.2.x) unusable. Suggestion and code from Bruno Haible. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1481 Include <unistd.h>. On some systems, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1482 it is required for the definition of _SC_PAGESIZE. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1483 |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1484 2003-08-16 Paul Eggert <eggert@twinsun.com> |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1485 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1486 Merges from coreutils, etc. |
4581
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1487 * rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1488 error in gl_FUNC_MATCH. This fixes a bug I introduced on 2003-05-28. |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1489 * readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE, |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1490 fixing a typo. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1491 * host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1492 * hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1493 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1494 2003-08-16 Jim Meyering <jim@meyering.net> |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1495 and Paul Eggert <eggert@cs.ucla.edu> |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1496 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1497 Merges from coreutils, etc. |
4581
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1498 |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1499 * jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1500 using the latest version from cvs. This avoids problems with #line |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1501 directives using a vendor (Sun) compiler. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1502 (jm_MACROS): Bump prerequisite from 2.52g to 2.57. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1503 Don't set GETGROUPS_LIB here; now it's |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1504 done via getgroups.m4's wrapper function. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1505 AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1506 rather than just in sh-util/configure.in, so that the |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1507 now-shared-by-fileutils-and-textutils lib/Makefile.am are all the |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1508 same. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1509 Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1510 AC_FUNC_GETLOADAVG where to find getloadavg.c. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1511 Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1512 UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1513 gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1514 Remove code that is now done by the newly-required macros. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1515 Append $(EXEEXT) to DF_PROG. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1516 AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1517 Do not invoke or require the following here, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1518 since prereq.m4 or some gnulib .m4 now does this for us: |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1519 gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1520 jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1521 jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1522 jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1523 jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1524 AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1525 vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1526 AC_FUNC_OBSTACK. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1527 Do not replace the following functions, as this is now the job |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1528 of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1529 getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1530 strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1531 atexit getpass, strdup, getpagesize. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1532 Replace 'raise'. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1533 Do not check for the following functions, as this is now the job |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1534 of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1535 getcwd, getmntinfo, resolvepath. But check for sysctl, setreuid, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1536 setregid. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1537 (jm_CHECK_ALL_HEADERS): Do not check for fenv.h. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1538 Check for sys/sysctl.h. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1539 (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE, |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1540 jm_CHECK_TYPE_STRUCT_TIMESPEC. Invoke gt_TYPE_SSIZE_T instead |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1541 of checking for ssize_t ourselves. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1542 |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1543 * prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1544 Require every macro that gnulib/modules/* suggests for us. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1545 (jm_PREREQ_ADDEXT): New macro. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1546 (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1547 Require jm_AC_TYPE_LONG_LONG instead of invoking it. |
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1548 |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1549 * physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro. |
4581
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1550 (gl_PHYSMEM): Use it. |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1551 Also check for `table' function. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1552 Check for new headers and functions. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1553 Add check for sys/sysmp.h. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1554 With suggestions from Kaveh Ghazi. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1555 Ignore headers that are present but cannot be compiled. This |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1556 avoids spurious warnings on Solaris 9 sparc with Forte Developer 7 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1557 C 5.4. |
4581
c7968d8641ac
Document merges from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4574
diff
changeset
|
1558 |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1559 2003-08-16 Jim Meyering <jim@meyering.net> |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1560 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1561 Merges from coreutils. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1562 * readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_) |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1563 prefix. Adjust cache variables similarly. Create 500 rather than |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1564 just 300 files, to exercise bug on Darwin6.5, too. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1565 * perl.m4 (jm_PERL): Use $am_missing_run, not undefined $missing_dir. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1566 * jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not AM_SYS_POSIX_TERMIOS. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1567 Reported by mkc@mathdogs.com. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1568 Also change use of $am_cv_sys_posix_termios |
4809
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
1569 to $ac_cv_sys_posix_termios. Reported by Andreas Schwab. |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1570 * getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1571 and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1572 * fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point in |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1573 /proc/mounts until it finds one with matching device number. This is |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1574 unnecessary when the FILE argument *is* a mount point. No stat call |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1575 is necessary in that case. So, disable the statvfs-testing code on |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1576 systems with GNU libc. Reported by Andrei Gaponenko via Tim Waugh |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1577 as RedHat bug# 84846. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1578 * c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1579 to 1MB, so as not to render systems with no stack size limit (e.g., |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1580 linux-2.2.x) unusable. Suggestion and code from Bruno Haible. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1581 Include <unistd.h>. On some systems, |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1582 it is required for the definition of _SC_PAGESIZE. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1583 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1584 2003-08-15 Jim Meyering <jim@meyering.net> |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1585 and Paul Eggert <eggert@cs.ucla.edu> |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1586 |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1587 Merges from coreutils, etc. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1588 * strftime.m4 (_jm_STRFTIME_PREREQS): |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1589 Require gl_FUNC_TZSET_CLOBBER. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1590 * readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit, ut_exit.e_exit, |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1591 ut_exit.ut_termination, and ut_exit.e_termination members. |
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1592 |
4549 | 1593 2003-08-14 Paul Eggert <eggert@twinsun.com> |
1594 | |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1595 Help the merge from coreutils. |
4549 | 1596 * gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro. |
1597 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it. | |
1598 * tzset.m4: Use it too. | |
1599 | |
1600 2003-08-14 Jim Meyering <jim@meyering.net> | |
1601 | |
4574
e374460ac6ae
Merge from coreutils, etc.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4549
diff
changeset
|
1602 Merge from coreutils. |
4549 | 1603 * tzset.m4: New file. |
1604 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the MOUNTED_VMOUNT | |
1605 test to precede the MOUNTED_GETMNTENT1 tests, since otherwise, AIX 5.1 | |
1606 systems would end up using the latter. MOUNTED_GETMNTENT1 support | |
1607 is inadequate on such systems: 1) detecting whether a file system | |
1608 is remote doesn't work 2) the MOUNTED_VMOUNT code reports the | |
1609 HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1 code reports | |
1610 merely /MOUNT_POINT. Reported by Mike Jetzer. | |
1611 | |
4536
3358eb550c86
Leave whitespace alone when importing, undoing that part of yesterday's
Paul Eggert <eggert@cs.ucla.edu>
parents:
4533
diff
changeset
|
1612 2003-08-13 Paul Eggert <eggert@twinsun.com> |
3358eb550c86
Leave whitespace alone when importing, undoing that part of yesterday's
Paul Eggert <eggert@cs.ucla.edu>
parents:
4533
diff
changeset
|
1613 |
4537
940fdf291f5b
Ignore trailing white space and empty lines
Paul Eggert <eggert@cs.ucla.edu>
parents:
4536
diff
changeset
|
1614 * exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC. |
940fdf291f5b
Ignore trailing white space and empty lines
Paul Eggert <eggert@cs.ucla.edu>
parents:
4536
diff
changeset
|
1615 Check for isascii. |
940fdf291f5b
Ignore trailing white space and empty lines
Paul Eggert <eggert@cs.ucla.edu>
parents:
4536
diff
changeset
|
1616 |
4536
3358eb550c86
Leave whitespace alone when importing, undoing that part of yesterday's
Paul Eggert <eggert@cs.ucla.edu>
parents:
4533
diff
changeset
|
1617 * gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4, |
3358eb550c86
Leave whitespace alone when importing, undoing that part of yesterday's
Paul Eggert <eggert@cs.ucla.edu>
parents:
4533
diff
changeset
|
1618 lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4: |
3358eb550c86
Leave whitespace alone when importing, undoing that part of yesterday's
Paul Eggert <eggert@cs.ucla.edu>
parents:
4533
diff
changeset
|
1619 Undo previous (whitespace-only) change. |
3358eb550c86
Leave whitespace alone when importing, undoing that part of yesterday's
Paul Eggert <eggert@cs.ucla.edu>
parents:
4533
diff
changeset
|
1620 |
4528
ae85e65ee361
Get m4 files from the gettext distribution.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4523
diff
changeset
|
1621 2003-08-12 Paul Eggert <eggert@twinsun.com> |
ae85e65ee361
Get m4 files from the gettext distribution.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4523
diff
changeset
|
1622 |
4533
dde0ece94ba0
Normalize leading white space and remove trailing white space.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4531
diff
changeset
|
1623 * gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4, |
dde0ece94ba0
Normalize leading white space and remove trailing white space.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4531
diff
changeset
|
1624 lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4: |
dde0ece94ba0
Normalize leading white space and remove trailing white space.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4531
diff
changeset
|
1625 Normalize leading white space and remove trailing white space. |
dde0ece94ba0
Normalize leading white space and remove trailing white space.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4531
diff
changeset
|
1626 |
4531
67c56a27d86c
Merge euidaccess etc. from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4528
diff
changeset
|
1627 Merge from coreutils |
67c56a27d86c
Merge euidaccess etc. from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4528
diff
changeset
|
1628 * euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl. |
67c56a27d86c
Merge euidaccess etc. from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4528
diff
changeset
|
1629 |
4528
ae85e65ee361
Get m4 files from the gettext distribution.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4523
diff
changeset
|
1630 * lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext |
ae85e65ee361
Get m4 files from the gettext distribution.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4523
diff
changeset
|
1631 0.12.1. These files are now being upgraded automatically by |
ae85e65ee361
Get m4 files from the gettext distribution.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4523
diff
changeset
|
1632 ../config/srclist-update. |
ae85e65ee361
Get m4 files from the gettext distribution.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4523
diff
changeset
|
1633 |
4523
6cc4874a100b
Work around the lack of wcslen() on Solaris 2.5.1.
Bruno Haible <bruno@clisp.org>
parents:
4520
diff
changeset
|
1634 2003-08-11 Bruno Haible <bruno@clisp.org> |
6cc4874a100b
Work around the lack of wcslen() on Solaris 2.5.1.
Bruno Haible <bruno@clisp.org>
parents:
4520
diff
changeset
|
1635 |
6cc4874a100b
Work around the lack of wcslen() on Solaris 2.5.1.
Bruno Haible <bruno@clisp.org>
parents:
4520
diff
changeset
|
1636 * vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen. |
6cc4874a100b
Work around the lack of wcslen() on Solaris 2.5.1.
Bruno Haible <bruno@clisp.org>
parents:
4520
diff
changeset
|
1637 |
4520
75f865328a1a
regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4515
diff
changeset
|
1638 2003-08-09 Paul Eggert <eggert@twinsun.com> |
75f865328a1a
regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4515
diff
changeset
|
1639 |
75f865328a1a
regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4515
diff
changeset
|
1640 * regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371"; |
75f865328a1a
regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4515
diff
changeset
|
1641 apparently Emacs's Unicode mode got confused before my 2003-08-05 |
75f865328a1a
regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4515
diff
changeset
|
1642 checkin. |
75f865328a1a
regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4515
diff
changeset
|
1643 |
4515
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1644 2003-08-08 Paul Eggert <eggert@twinsun.com> |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1645 |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1646 * extensions.m4: New file. |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1647 * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1648 Require gl_USE_SYSTEM_EXTENSIONS. |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1649 * unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1650 Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE. |
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1651 |
4513 | 1652 2003-08-07 Paul Eggert <eggert@twinsun.com> |
1653 | |
1654 * restrict.m4: New file. | |
1655 * regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT. | |
1656 | |
4512
c761847c9afa
Make the module 'getndelim2' compatible with the module 'getline'.
Bruno Haible <bruno@clisp.org>
parents:
4510
diff
changeset
|
1657 2003-08-07 Bruno Haible <bruno@clisp.org> |
c761847c9afa
Make the module 'getndelim2' compatible with the module 'getline'.
Bruno Haible <bruno@clisp.org>
parents:
4510
diff
changeset
|
1658 |
c761847c9afa
Make the module 'getndelim2' compatible with the module 'getline'.
Bruno Haible <bruno@clisp.org>
parents:
4510
diff
changeset
|
1659 * getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This makes |
c761847c9afa
Make the module 'getndelim2' compatible with the module 'getline'.
Bruno Haible <bruno@clisp.org>
parents:
4510
diff
changeset
|
1660 the module 'getndelim2' compatible with the module 'getline'. |
c761847c9afa
Make the module 'getndelim2' compatible with the module 'getline'.
Bruno Haible <bruno@clisp.org>
parents:
4510
diff
changeset
|
1661 |
4510
fcbd4b9dad53
regex.m4: Replace a single non-ASCII byte with "\201".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
1662 2003-08-05 Paul Eggert <eggert@twinsun.com> |
fcbd4b9dad53
regex.m4: Replace a single non-ASCII byte with "\201".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
1663 |
fcbd4b9dad53
regex.m4: Replace a single non-ASCII byte with "\201".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
1664 * regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII |
fcbd4b9dad53
regex.m4: Replace a single non-ASCII byte with "\201".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
1665 byte with "\201" to avoid glitches when editing that source file |
fcbd4b9dad53
regex.m4: Replace a single non-ASCII byte with "\201".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
1666 with multi-gnome-terminal. |
fcbd4b9dad53
regex.m4: Replace a single non-ASCII byte with "\201".
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
1667 |
4490 | 1668 2003-07-31 Bruno Haible <bruno@clisp.org> |
1669 | |
1670 * getpass.m4 (gl_FUNC_GETPASS_GNU): New macro. | |
1671 | |
4463 | 1672 2003-07-18 Bruno Haible <bruno@clisp.org> |
1673 | |
1674 * getndelim2.m4: New file. | |
1675 * getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and | |
1676 invoke gl_PREREQ_GETNDELIM2. | |
1677 (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by | |
1678 gl_PREREQ_GETNDELIM2. | |
1679 * getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by | |
1680 gl_GETNDELIM2. | |
1681 | |
4461 | 1682 2003-07-17 Bruno Haible <bruno@clisp.org> |
1683 | |
1684 * Makefile.am.in: Remove file. | |
1685 * Makefile.am: Remove file. | |
1686 * Makefile.in: Remove file. | |
1687 | |
4460 | 1688 2003-07-17 Bruno Haible <bruno@clisp.org> |
1689 | |
1690 * getnline.m4: New file. | |
1691 | |
4436 | 1692 2003-07-14 Simon Josefsson <jas@extundo.com> |
1693 | |
1694 * mempcpy.m4: New file. | |
1695 | |
4427 | 1696 2003-07-10 Jim Meyering <jim@meyering.net> |
1697 | |
1698 * clock_time.m4: Remove trailing blank. | |
1699 * intmax_t.m4: Likewise. | |
1700 | |
4413
232d849d4565
* lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
Paul Eggert <eggert@cs.ucla.edu>
parents:
4412
diff
changeset
|
1701 2003-07-01 Paul Eggert <eggert@twinsun.com> |
232d849d4565
* lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
Paul Eggert <eggert@cs.ucla.edu>
parents:
4412
diff
changeset
|
1702 |
232d849d4565
* lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
Paul Eggert <eggert@cs.ucla.edu>
parents:
4412
diff
changeset
|
1703 * xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since |
232d849d4565
* lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
Paul Eggert <eggert@cs.ucla.edu>
parents:
4412
diff
changeset
|
1704 xreadlink.c now includes it unconditionally. |
232d849d4565
* lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
Paul Eggert <eggert@cs.ucla.edu>
parents:
4412
diff
changeset
|
1705 |
4412 | 1706 2003-07-01 Bruno Haible <bruno@clisp.org> |
1707 | |
1708 * ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>. <sys/types.h> | |
1709 should be sufficient. | |
1710 Reported by Paul Eggert. | |
1711 | |
4405 | 1712 2003-06-25 Bruno Haible <bruno@clisp.org> |
1713 | |
1714 * readlink.m4: New file. | |
1715 | |
4404
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1716 2003-06-22 Bruno Haible <bruno@clisp.org> |
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1717 |
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1718 Portability to mingw32. |
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1719 * ssize_t.m4: New file, from GNU gettext. |
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1720 * safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T. |
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1721 * xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T. |
d53571cbde51
Test for ssize_t. Needed for portability to mingw32.
Bruno Haible <bruno@clisp.org>
parents:
4392
diff
changeset
|
1722 |
4392 | 1723 2003-06-11 Bruno Haible <bruno@clisp.org> |
1724 | |
1725 * sysexits.m4: New file. | |
1726 | |
4387 | 1727 2003-06-10 Simon Josefsson <jas@extundo.com> |
1728 | |
1729 * strchrnul.m4: New file. | |
1730 | |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1731 2003-06-07 Bruno Haible <bruno@clisp.org> |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1732 |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1733 * fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX, |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1734 gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1735 AC_CONFIG_LINKS. Needed to allow for a different name of the lib |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1736 directory. |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1737 * poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1738 AC_CONFIG_LINKS. Needed to allow for a different name of the lib |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1739 directory. |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4351
diff
changeset
|
1740 |
4347
df44e79ce676
.h files should stand alone, but we shouldn't include <sys/types.h>
Paul Eggert <eggert@cs.ucla.edu>
parents:
4335
diff
changeset
|
1741 2003-06-04 Paul Eggert <eggert@twinsun.com> |
df44e79ce676
.h files should stand alone, but we shouldn't include <sys/types.h>
Paul Eggert <eggert@cs.ucla.edu>
parents:
4335
diff
changeset
|
1742 |
4351
d0d257fdad20
Merge human.c changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4348
diff
changeset
|
1743 * human.m4 (gl_HUMAN): Require AM_STDBOOL_H. Check for |
d0d257fdad20
Merge human.c changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4348
diff
changeset
|
1744 locale.h, localeconv. This merges changes from coreutils. |
d0d257fdad20
Merge human.c changes from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4348
diff
changeset
|
1745 |
4348
fc8667232bcc
Ensure we use gnulib mktime rather than glibc's mktime, on hosts
Paul Eggert <eggert@cs.ucla.edu>
parents:
4347
diff
changeset
|
1746 * mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS. |
fc8667232bcc
Ensure we use gnulib mktime rather than glibc's mktime, on hosts
Paul Eggert <eggert@cs.ucla.edu>
parents:
4347
diff
changeset
|
1747 It can be removed after the next Autoconf is released. |
4347
df44e79ce676
.h files should stand alone, but we shouldn't include <sys/types.h>
Paul Eggert <eggert@cs.ucla.edu>
parents:
4335
diff
changeset
|
1748 * exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner |
df44e79ce676
.h files should stand alone, but we shouldn't include <sys/types.h>
Paul Eggert <eggert@cs.ucla.edu>
parents:
4335
diff
changeset
|
1749 needed. |
df44e79ce676
.h files should stand alone, but we shouldn't include <sys/types.h>
Paul Eggert <eggert@cs.ucla.edu>
parents:
4335
diff
changeset
|
1750 |
4335 | 1751 2003-05-30 Bruno Haible <bruno@clisp.org> |
1752 | |
1753 * gettext.m4: Upgrade to gettext-0.12.1. | |
1754 * nls.m4: New file, from gettext-0.12.1. | |
1755 * po.m4: New file, from gettext-0.12.1. | |
1756 * progtest.m4: Upgrade to gettext-0.12.1. | |
1757 | |
4333 | 1758 2003-05-28 Paul Eggert <eggert@twinsun.com> |
1759 | |
1760 Assume the headers required for C89 freestanding compilers. | |
1761 * backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h. | |
1762 * fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise. | |
1763 * human.m4 (gl_HUMAN): Likewise. | |
1764 * pathmax.m4 (gl_PATHMAX): Likewise. | |
1765 * rpmatch.m4 (gl_FUNC_RPMATCH): Likewise. | |
1766 * userspec.m4 (gl_USERSPEC): Likewise. | |
1767 * xreadlink.m4 (gl_XREADLINK): Likewise. | |
4515
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
1768 * xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise. |
4333 | 1769 * quote.m4 (gl_QUOTE): Don't check for stddef.h. |
1770 | |
4328 | 1771 2003-05-26 Jim Meyering <jim@meyering.net> |
1772 | |
1773 Merge in a change from coreutils: | |
1774 * dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one | |
1775 that is guaranteed to be `no'. Use `no_such_member' to indicate | |
1776 that condition, rather than `-1' which is slightly misleading. | |
1777 Change the name of the cache variable to have the gl_ prefix. | |
1778 Prompted by a patch from Richard Dawe for DJGPP. | |
1779 | |
4321 | 1780 2003-05-17 Bruno Haible <bruno@clisp.org> |
1781 | |
1782 * dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an invalid | |
1783 expansion for AC_EGREP_CPP. | |
1784 * strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise. | |
1785 * strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise. | |
1786 Suggested by Akim Demaille <akim@epita.fr> in | |
1787 http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html | |
1788 | |
4306
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1789 2003-04-21 Paul Eggert <eggert@twinsun.com> |
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1790 |
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1791 * error.m4 (gl_ERROR): Do not put under dynamic conditions some |
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1792 code which expansion is under static control. Patch imported from |
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1793 Akim Demaille's patch to Bison; see |
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1794 <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>. |
f59d87c2ceb4
* error.m4 (gl_ERROR): Do not put under dynamic conditions some
Paul Eggert <eggert@cs.ucla.edu>
parents:
4303
diff
changeset
|
1795 |
4303
c842eddb3b4f
Use AC_FUNC_VPRINTF instead of bogus test for function 'doprnt' that no system
Bruno Haible <bruno@clisp.org>
parents:
4294
diff
changeset
|
1796 2003-04-14 Bruno Haible <bruno@clisp.org> |
c842eddb3b4f
Use AC_FUNC_VPRINTF instead of bogus test for function 'doprnt' that no system
Bruno Haible <bruno@clisp.org>
parents:
4294
diff
changeset
|
1797 |
c842eddb3b4f
Use AC_FUNC_VPRINTF instead of bogus test for function 'doprnt' that no system
Bruno Haible <bruno@clisp.org>
parents:
4294
diff
changeset
|
1798 * error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF. |
c842eddb3b4f
Use AC_FUNC_VPRINTF instead of bogus test for function 'doprnt' that no system
Bruno Haible <bruno@clisp.org>
parents:
4294
diff
changeset
|
1799 |
4294 | 1800 2003-04-10 Bruno Haible <bruno@clisp.org> |
1801 | |
1802 * findprog.m4: New file. | |
1803 * eaccess.m4: New file. | |
1804 | |
4286 | 1805 2003-04-04 Bruno Haible <bruno@clisp.org> |
1806 | |
1807 * linebreak.m4: New file. | |
1808 | |
4275
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4268
diff
changeset
|
1809 2003-04-03 Bruno Haible <bruno@clisp.org> |
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4268
diff
changeset
|
1810 |
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4268
diff
changeset
|
1811 * utf-ucs4.m4: New file. |
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4268
diff
changeset
|
1812 * ucs4-utf.m4: New file. |
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4268
diff
changeset
|
1813 |
4268 | 1814 2003-03-30 Bruno Haible <bruno@clisp.org> |
1815 | |
1816 * copy-file.m4 (gl_COPY_FILE): Add check for chown(). | |
1817 | |
4266 | 1818 2003-03-28 Bruno Haible <bruno@clisp.org> |
1819 | |
1820 * copy-file.m4: New file. | |
1821 | |
4262
4df9cc2741fb
Use new documented autoconf macros.
Bruno Haible <bruno@clisp.org>
parents:
4259
diff
changeset
|
1822 2003-03-18 Bruno Haible <bruno@clisp.org> |
4df9cc2741fb
Use new documented autoconf macros.
Bruno Haible <bruno@clisp.org>
parents:
4259
diff
changeset
|
1823 |
4df9cc2741fb
Use new documented autoconf macros.
Bruno Haible <bruno@clisp.org>
parents:
4259
diff
changeset
|
1824 * onceonly.m4: Use m4_defn instead of defn, for better error checking. |
4df9cc2741fb
Use new documented autoconf macros.
Bruno Haible <bruno@clisp.org>
parents:
4259
diff
changeset
|
1825 * onceonly_2_57.m4: Likewise. |
4df9cc2741fb
Use new documented autoconf macros.
Bruno Haible <bruno@clisp.org>
parents:
4259
diff
changeset
|
1826 |
4259
5281b6fad974
Require autoconf 2.54 or newer.
Bruno Haible <bruno@clisp.org>
parents:
4258
diff
changeset
|
1827 2003-03-17 Bruno Haible <bruno@clisp.org> |
5281b6fad974
Require autoconf 2.54 or newer.
Bruno Haible <bruno@clisp.org>
parents:
4258
diff
changeset
|
1828 |
5281b6fad974
Require autoconf 2.54 or newer.
Bruno Haible <bruno@clisp.org>
parents:
4258
diff
changeset
|
1829 * onceonly.m4: Require autoconf 2.54 or newer. |
5281b6fad974
Require autoconf 2.54 or newer.
Bruno Haible <bruno@clisp.org>
parents:
4258
diff
changeset
|
1830 (m4_quote): Remove macro. |
4262
4df9cc2741fb
Use new documented autoconf macros.
Bruno Haible <bruno@clisp.org>
parents:
4259
diff
changeset
|
1831 * onceonly_2_57.m4: Require autoconf 2.54 or newer. |
4259
5281b6fad974
Require autoconf 2.54 or newer.
Bruno Haible <bruno@clisp.org>
parents:
4258
diff
changeset
|
1832 |
4257 | 1833 2003-03-14 Bruno Haible <bruno@clisp.org> |
1834 | |
4258
0b9877dac823
Use defn([...]) for quoting.
Bruno Haible <bruno@clisp.org>
parents:
4257
diff
changeset
|
1835 * onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, |
0b9877dac823
Use defn([...]) for quoting.
Bruno Haible <bruno@clisp.org>
parents:
4257
diff
changeset
|
1836 AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly. |
4257 | 1837 |
4255
fe0f8778e46d
Merge changes from Bison.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4242
diff
changeset
|
1838 2003-03-13 Paul Eggert <eggert@twinsun.com> |
fe0f8778e46d
Merge changes from Bison.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4242
diff
changeset
|
1839 |
fe0f8778e46d
Merge changes from Bison.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4242
diff
changeset
|
1840 * onceonly.m4 (m4_quote): New macro. |
fe0f8778e46d
Merge changes from Bison.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4242
diff
changeset
|
1841 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE): |
fe0f8778e46d
Merge changes from Bison.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4242
diff
changeset
|
1842 Quote AC_FOREACH variable-expansions properly. |
fe0f8778e46d
Merge changes from Bison.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4242
diff
changeset
|
1843 |
4257 | 1844 2003-02-19 Paolo Bonzini <bonzini@gnu.org> |
4242
eec6ba9ed532
New module poll, from Paolo Bonzini <bonzini@gnu.org>.
Bruno Haible <bruno@clisp.org>
parents:
4239
diff
changeset
|
1845 |
eec6ba9ed532
New module poll, from Paolo Bonzini <bonzini@gnu.org>.
Bruno Haible <bruno@clisp.org>
parents:
4239
diff
changeset
|
1846 * poll.m4: New file. |
eec6ba9ed532
New module poll, from Paolo Bonzini <bonzini@gnu.org>.
Bruno Haible <bruno@clisp.org>
parents:
4239
diff
changeset
|
1847 |
4257 | 1848 2003-02-18 Paolo Bonzini <bonzini@gnu.org> |
4239
b33b8603715c
Transcendental functions for 'long double', from Paolo Bonzini.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
1849 |
b33b8603715c
Transcendental functions for 'long double', from Paolo Bonzini.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
1850 * mathl.m4: New file. |
b33b8603715c
Transcendental functions for 'long double', from Paolo Bonzini.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
1851 |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
4232
diff
changeset
|
1852 2003-02-17 Bruno Haible <bruno@clisp.org> |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
4232
diff
changeset
|
1853 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
4232
diff
changeset
|
1854 * mkdtemp.m4: New file, from GNU gettext with modifications. |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
4232
diff
changeset
|
1855 |
4232 | 1856 2003-02-02 Jim Meyering <jim@meyering.net> |
1857 | |
1858 * regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in | |
1859 e.g. glibc-2.2.93. | |
1860 | |
4229
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1861 2003-01-31 Bruno Haible <bruno@clisp.org> |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1862 |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1863 * rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1864 'rpl_rename'. |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1865 * strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1866 'rpl_strnlen'. |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1867 * strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1868 'rpl_strtod'. |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1869 * utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1870 'rpl_utime'. |
c7ddde35beec
Make this module usable in shared libraries.
Bruno Haible <bruno@clisp.org>
parents:
4224
diff
changeset
|
1871 |
4224
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1872 2003-01-30 Bruno Haible <bruno@clisp.org> |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1873 |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1874 * signed.m4: New file, from GNU gettext. |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1875 * longdouble.m4: New file, from GNU gettext. |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1876 * wchar_t.m4: New file, from GNU gettext. |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1877 * wint_t.m4: New file, from GNU gettext. |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1878 * vasnprintf.m4: New file. |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1879 * vasprintf.m4: New file. |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1880 |
4221 | 1881 2003-01-29 Bruno Haible <bruno@clisp.org> |
1882 | |
1883 * stpncpy.m4: New file. | |
1884 | |
4206 | 1885 2003-01-23 Jim Meyering <jim@meyering.net> |
1886 | |
4209 | 1887 * dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this |
1888 from working on systems without dirfd (at least Irix and OSF1/Tru64). | |
4206 | 1889 |
4190 | 1890 2003-01-16 Jim Meyering <jim@meyering.net> |
1891 | |
1892 * regex.m4: The `regex' struct is both input and output. | |
1893 Initialize it before each use. Patch by Tim Waugh. | |
1894 | |
4186 | 1895 2003-01-11 Bruno Haible <bruno@clisp.org> |
1896 | |
1897 * longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix. | |
1898 * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL | |
1899 suffix. | |
1900 | |
4185 | 1901 2003-01-11 Bruno Haible <bruno@clisp.org> |
1902 | |
1903 * md5.m4 (gl_MD5): Require AC_C_INLINE. | |
1904 | |
4184
bd50be83d452
Work around a bug of AC_EGREP_CPP in autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
4170
diff
changeset
|
1905 2003-01-11 Bruno Haible <bruno@clisp.org> |
bd50be83d452
Work around a bug of AC_EGREP_CPP in autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
4170
diff
changeset
|
1906 |
bd50be83d452
Work around a bug of AC_EGREP_CPP in autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
4170
diff
changeset
|
1907 * alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites. |
bd50be83d452
Work around a bug of AC_EGREP_CPP in autoconf-2.57.
Bruno Haible <bruno@clisp.org>
parents:
4170
diff
changeset
|
1908 |
4170
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1909 2003-01-12 Paul Eggert <eggert@twinsun.com> |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1910 |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1911 Finish renaming getstr -> getdelim2 and readline -> readlinebuffer, |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1912 to avoid collisions with libcurses and libreadline. |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1913 |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1914 * getstr.m4: Remove. |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1915 * getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC. |
733dc39fdf11
Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
Paul Eggert <eggert@cs.ucla.edu>
parents:
4156
diff
changeset
|
1916 |
4156
99ea86c79f44
Make it possibly to simply write: #include <alloca.h>.
Bruno Haible <bruno@clisp.org>
parents:
4151
diff
changeset
|
1917 2003-01-10 Bruno Haible <bruno@clisp.org> |
99ea86c79f44
Make it possibly to simply write: #include <alloca.h>.
Bruno Haible <bruno@clisp.org>
parents:
4151
diff
changeset
|
1918 |
99ea86c79f44
Make it possibly to simply write: #include <alloca.h>.
Bruno Haible <bruno@clisp.org>
parents:
4151
diff
changeset
|
1919 * alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H. |
99ea86c79f44
Make it possibly to simply write: #include <alloca.h>.
Bruno Haible <bruno@clisp.org>
parents:
4151
diff
changeset
|
1920 |
4151
3a0c83552f0e
Make it possible to #include <stdbool.h> without any #ifdefs.
Bruno Haible <bruno@clisp.org>
parents:
4122
diff
changeset
|
1921 2003-01-09 Bruno Haible <bruno@clisp.org> |
3a0c83552f0e
Make it possible to #include <stdbool.h> without any #ifdefs.
Bruno Haible <bruno@clisp.org>
parents:
4122
diff
changeset
|
1922 |
3a0c83552f0e
Make it possible to #include <stdbool.h> without any #ifdefs.
Bruno Haible <bruno@clisp.org>
parents:
4122
diff
changeset
|
1923 * stdbool.m4 (AM_STDBOOL_H): New macro. |
3a0c83552f0e
Make it possible to #include <stdbool.h> without any #ifdefs.
Bruno Haible <bruno@clisp.org>
parents:
4122
diff
changeset
|
1924 |
4122
c5274a13aee2
* memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4108
diff
changeset
|
1925 2002-12-31 Paul Eggert <eggert@twinsun.com> |
c5274a13aee2
* memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4108
diff
changeset
|
1926 |
c5274a13aee2
* memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4108
diff
changeset
|
1927 * memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP. |
c5274a13aee2
* memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4108
diff
changeset
|
1928 |
4108
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1929 2002-12-24 Bruno Haible <bruno@clisp.org> |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1930 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1931 General infrasructure. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1932 * README: Rewritten. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1933 * onceonly.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1934 * onceonly_2_57.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1935 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1936 Module atexit. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1937 * atexit.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1938 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1939 Module strtod. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1940 * strtod.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1941 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1942 Module strtol. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1943 * strtol.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1944 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1945 Module strtoul. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1946 * strtoul.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1947 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1948 Module memchr. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1949 * memchr.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1950 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1951 Module memcmp. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1952 * memcmp.m4 (gl_PREREQ_MEMCMP): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1953 (jm_FUNC_MEMCMP): Invoke it. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1954 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1955 Module memcpy. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1956 * memcpy.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1957 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1958 Module memmove. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1959 * memmove.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1960 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1961 Module memset. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1962 * memset.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1963 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1964 Module strcspn. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1965 * strcspn.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1966 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1967 Module strpbrk. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1968 * strpbrk.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1969 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1970 Module strstr. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1971 * strstr.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1972 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1973 Module strerror. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1974 * strerror.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1975 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1976 Module mktime. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1977 * mktime.m4: Renamed from jm-mktime.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1978 (gl_PREREQ_MKTIME): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1979 (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1980 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1981 Module malloc. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1982 * malloc.m4 (gl_PREREQ_MALLOC): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1983 (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1984 Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1985 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1986 Module realloc. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1987 * realloc.m4 (gl_PREREQ_REALLOC): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1988 (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1989 Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1990 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1991 Module strftime. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1992 * tm_gmtoff.m4: New file, extracted from strftime.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1993 * strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1994 Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1995 gl_TM_GMTOFF. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1996 (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1997 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1998 Module xalloc. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
1999 * xalloc.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2000 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2001 Module alloca. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2002 * alloca.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2003 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2004 Module putenv. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2005 * putenv.m4 (gl_PREREQ_PUTENV): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2006 (jm_FUNC_PUTENV): Invoke it. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2007 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2008 Module setenv. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2009 * setenv.m4 (gt_FUNC_SETENV): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2010 (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2011 when invoked twice. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2012 (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2013 gt_FUNC_SETENV. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2014 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2015 Module memrchr. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2016 * memrchr.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2017 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2018 Module stpcpy. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2019 * stpcpy.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2020 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2021 Module strcase. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2022 * strcase.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2023 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2024 Module strdup. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2025 * strdup.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2026 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2027 Module strnlen. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2028 * strnlen.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2029 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2030 Module strndup. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2031 * strndup.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2032 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2033 Module xstrtod. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2034 * xstrtod.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2035 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2036 Module xstrtol. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2037 * xstrtol.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2038 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2039 Module getdate. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2040 * getdate.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2041 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2042 Module unlocked-io. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2043 * unlocked-io.m4: Renamed from jm-glibc-io.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2044 (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2045 * jm-glibc-io.m4n: Remove file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2046 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2047 Module long-options. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2048 * long-options.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2049 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2050 Module md5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2051 * md5.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2052 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2053 Module sha. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2054 * sha.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2055 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2056 Module getstr. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2057 * getstr.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2058 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2059 Module getline. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2060 * getline.m4 (gl_PREREQ_GETLINE): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2061 (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2062 <sys/types.h>, for size_t. Use the function name gnu_getline, not |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2063 simply getline. Infoke gl_PREREQ_GETLINE. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2064 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2065 Module obstack. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2066 * obstack.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2067 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2068 Module hash. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2069 * hash.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2070 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2071 Module readtokens. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2072 * readtokens.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2073 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2074 Module strverscmp. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2075 * strverscmp.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2076 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2077 Module stdbool. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2078 * stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for OSF/1. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2079 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2080 Module strtoll. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2081 * strtoll.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2082 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2083 Module strtoull. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2084 * strtoull.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2085 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2086 Module strtoimax. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2087 * strtoimax.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2088 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2089 Module strtoumax. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2090 * strtoumax.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2091 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2092 Module xstrtoimax. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2093 * xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from jm_AC_PREREQ_XSTRTOIMAX. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2094 Moved the strtol prerequisites to strtol.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2095 Moved the strtoll prerequisites to strtoll.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2096 Moved the strtoimax prerequisites to strtoimax.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2097 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2098 Module xstrtoumax. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2099 * xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from jm_AC_PREREQ_XSTRTOUMAX. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2100 Moved the strtoul prerequisites to strtoul.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2101 Moved the strtoull prerequisites to strtoull.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2102 Moved the strtoumax prerequisites to strtoumax.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2103 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2104 Module chown. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2105 * chown.m4 (gl_PREREQ_CHOWN): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2106 (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2107 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2108 Module dup2. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2109 * dup2.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2110 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2111 Module ftruncate. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2112 * ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2113 (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2114 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2115 Module getgroups. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2116 * getgroups.m4 (gl_PREREQ_GETGROUPS): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2117 (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2118 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2119 Module gettimeofday. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2120 * gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2121 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2122 gl_PREREQ_GETTIMEOFDAY. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2123 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2124 Module mkdir. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2125 * mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2126 (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2127 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2128 Module mkstemp. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2129 * mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2130 (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2131 jm_AC_TYPE_UINTMAX_T. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2132 (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2133 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2134 Module stat. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2135 * stat.m4 (gl_PREREQ_STAT): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2136 (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2137 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2138 Module lstat. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2139 * lstat.m4 (gl_PREREQ_LSTAT): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2140 (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2141 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2142 Module timespec. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2143 * timespec.m4 (gl_TIMESPEC): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2144 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2145 * st_mtim.m4: Indentation. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2146 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2147 Module nanosleep. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2148 * nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2149 (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2150 gl_PREREQ_NANOSLEEP. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2151 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2152 Module regex. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2153 * regex.m4 (jm_PREREQ_REGEX): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2154 (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2155 (gl_REGEX): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2156 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2157 Module rename. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2158 * rename.m4 (gl_PREREQ_RENAME): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2159 (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2160 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2161 Module rmdir. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2162 * rmdir.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2163 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2164 Module utime. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2165 * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2166 * utime.m4 (gl_PREREQ_UTIME): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2167 (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2168 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2169 Module dirname. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2170 * dirname.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2171 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2172 Module getopt. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2173 * getopt.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2174 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2175 Module unistd-safer. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2176 * unistd-safer.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2177 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2178 Module fnmatch. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2179 * fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit() |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2180 declaration. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2181 (gl_PREREQ_FNMATCH_EXTRA): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2182 (gl_FUNC_FNMATCH_POSIX): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2183 (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2184 gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2185 simply fnmatch. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2186 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2187 Module exclude. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2188 * exclude.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2189 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2190 Module human. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2191 * human.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2192 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2193 Module acl. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2194 * acl.m4: Nop. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2195 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2196 Module backupfile. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2197 * backupfile.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2198 * d-ino.m4: Indentation. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2199 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2200 Module fsusage. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2201 * fsusage.m4 (gl_FSUSAGE): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2202 (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2203 (gl_PREREQ_FSUSAGE_EXTRA): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2204 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2205 Module dirfd. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2206 * dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP requirements. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2207 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2208 Module euidaccess. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2209 * euidaccess.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2210 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2211 Module file-type. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2212 * file-type.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2213 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2214 Module fileblocks. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2215 * fileblocks.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2216 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2217 Module filemode. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2218 * filemode.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2219 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2220 Module isdir. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2221 * isdir.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2222 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2223 Module lchown. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2224 * lchown.m4 (gl_PREREQ_LCHOWN): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2225 (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2226 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2227 Module makepath. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2228 * makepath.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2229 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2230 Module modechange. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2231 * modechange.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2232 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2233 Module mountlist. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2234 * mountlist.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2235 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2236 Indentation. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2237 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2238 Module path-concat. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2239 * path-concat.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2240 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2241 Module pathmax. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2242 * pathmax.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2243 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2244 Module same. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2245 * same.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2246 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2247 Module save-cwd. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2248 * save-cwd.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2249 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2250 Module savedir. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2251 * savedir.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2252 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2253 Module xgetcwd. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2254 * xgetcwd.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2255 * getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2256 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2257 Module xreadlink. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2258 * xreadlink.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2259 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2260 Module safe-read. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2261 * safe-read.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2262 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2263 Module safe-write. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2264 * safe-write.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2265 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2266 Module closeout. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2267 * closeout.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2268 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2269 Module stdio-safer. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2270 * stdio-safer.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2271 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2272 Module getpass. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2273 * getpass.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2274 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2275 Module getugroups. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2276 * getugroups.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2277 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2278 Module group-member. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2279 * group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2280 (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2281 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2282 Module idcache. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2283 * idcache.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2284 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2285 Module userspec. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2286 * userspec.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2287 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2288 Module gettime. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2289 * clock_time.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2290 * gettime.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2291 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2292 Module settime. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2293 * settime.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2294 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2295 Module posixtm. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2296 * posixtm.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2297 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2298 Module gethostname. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2299 * gethostname.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2300 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2301 Module canon-host. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2302 * canon-host.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2303 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2304 Module gettext. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2305 * codeset.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2306 * gettext.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2307 * glibc21.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2308 * iconv.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2309 * intdiv0.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2310 * inttypes-pri.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2311 * inttypes.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2312 * inttypes_h.m4: New file, from gettext-0.11.5 with modifications. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2313 * isc-posix.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2314 * lcmessage.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2315 * lib-ld.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2316 * lib-link.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2317 * lib-prefix.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2318 * progtest.m4: New file, from gettext-0.11.5. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2319 * stdint_h.m4: New file, from gettext-0.11.5 with modifications. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2320 * uintmax_t.m4: New file, from gettext-0.11.5 with modifications. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2321 * ulonglong.m4: New file, from gettext-0.11.5 with modifications. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2322 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2323 Module localcharset. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2324 * localcharset.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2325 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2326 Module hard-locale. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2327 * hard-locale.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2328 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2329 Module mbswidth. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2330 * mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2331 onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2332 * mbrtowc.m4: Add comment. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2333 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2334 Module memcasecmp. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2335 * memcasecmp.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2336 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2337 Module memcoll. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2338 * memcoll.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2339 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2340 Module unicodeio. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2341 * unicodeio.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2342 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2343 Module rpmatch. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2344 * rpmatch.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2345 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2346 Module yesno. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2347 * yesno.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2348 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2349 Module exitfail. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2350 * exitfail.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2351 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2352 Module c-stack. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2353 * c-stack.m4 (gl_C_STACK): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2354 (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2355 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2356 Module error. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2357 * error.m4 (gl_ERROR): New macro. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2358 (jm_PREREQ_ERROR): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2359 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2360 Module fatal. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2361 * fatal.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2362 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2363 Module getloadavg. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2364 * getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2365 (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2366 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2367 Module getpagesize. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2368 * getpagesize.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2369 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2370 Module getusershell. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2371 * getusershell.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2372 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2373 Module physmem. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2374 * physmem.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2375 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2376 Module posixver. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2377 * posixver.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2378 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2379 Module quotearg. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2380 * quotearg.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2381 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2382 Module quote. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2383 * quote.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2384 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2385 Module readutmp. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2386 * readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2387 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2388 Module sig2str. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2389 * sig2str.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2390 |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2391 Other. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2392 * longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2393 ulonglong.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2394 * intmax_t.m4: New file. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2395 * d-type.m4: Indentation. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2396 * jm-macros.m4: Update. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2397 * prereq.m4 (jm_PREREQ): Update. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2398 (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2399 (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2400 (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2401 (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2402 (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2403 (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2404 (jm_PREREQ_HASH): Remove, obsoleted by hash.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2405 (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2406 (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2407 (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2408 (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2409 (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2410 (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2411 (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2412 (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2413 (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2414 (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2415 (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2416 * readdir.m4 (jm_FUNC_READDIR): Use onceonly macros. |
c1d472db5c30
An independent .m4 file for each module.
Bruno Haible <bruno@clisp.org>
parents:
4090
diff
changeset
|
2417 |
4090 | 2418 2002-12-18 Bruno Haible <bruno@clisp.org> |
2419 | |
2420 * strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r. | |
2421 * jm-mktime.m4 (jm_FUNC_MKTIME): Likewise. | |
2422 | |
4085
fbbe1d39bfa3
Update for change made on 2001-08-03 in mbswidth.c.
Bruno Haible <bruno@clisp.org>
parents:
4079
diff
changeset
|
2423 2002-12-17 Bruno Haible <bruno@clisp.org> |
fbbe1d39bfa3
Update for change made on 2001-08-03 in mbswidth.c.
Bruno Haible <bruno@clisp.org>
parents:
4079
diff
changeset
|
2424 |
fbbe1d39bfa3
Update for change made on 2001-08-03 in mbswidth.c.
Bruno Haible <bruno@clisp.org>
parents:
4079
diff
changeset
|
2425 * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h, |
fbbe1d39bfa3
Update for change made on 2001-08-03 in mbswidth.c.
Bruno Haible <bruno@clisp.org>
parents:
4079
diff
changeset
|
2426 stdlib.h, string.h. |
fbbe1d39bfa3
Update for change made on 2001-08-03 in mbswidth.c.
Bruno Haible <bruno@clisp.org>
parents:
4079
diff
changeset
|
2427 |
4079
59e0c3ba95bb
Prerequisites of lib/setenv.c and lib/unsetenv.c.
Bruno Haible <bruno@clisp.org>
parents:
4075
diff
changeset
|
2428 2002-12-11 Bruno Haible <bruno@clisp.org> |
59e0c3ba95bb
Prerequisites of lib/setenv.c and lib/unsetenv.c.
Bruno Haible <bruno@clisp.org>
parents:
4075
diff
changeset
|
2429 |
59e0c3ba95bb
Prerequisites of lib/setenv.c and lib/unsetenv.c.
Bruno Haible <bruno@clisp.org>
parents:
4075
diff
changeset
|
2430 * setenv.m4: New file, from gettext-0.11.5. |
59e0c3ba95bb
Prerequisites of lib/setenv.c and lib/unsetenv.c.
Bruno Haible <bruno@clisp.org>
parents:
4075
diff
changeset
|
2431 |
4074
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2432 2002-12-06 Paul Eggert <eggert@twinsun.com> |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2433 |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2434 Undo the 2001-07-02 change for jm-glibc-io, as it was too much of |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2435 a pain in practice to deal with generated m4 files. This change |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2436 goes together with the 2002-12-04 unlocked-io.h change in ../lib. |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2437 |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2438 * Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n |
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2439 and jm-glibc-io.m4, as they are no longer a special case. |
4075
420495d74bf1
Add more comments to latest changelog change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4074
diff
changeset
|
2440 * jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the |
420495d74bf1
Add more comments to latest changelog change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4074
diff
changeset
|
2441 kludge and the auto-generation stuff. Check only whether the |
420495d74bf1
Add more comments to latest changelog change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4074
diff
changeset
|
2442 functions are declared, not whether they exist, since older hosts |
420495d74bf1
Add more comments to latest changelog change.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4074
diff
changeset
|
2443 that don't declare the functions can't use the optimization anyway. |
4074
9ee83167b137
Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
Paul Eggert <eggert@cs.ucla.edu>
parents:
3924
diff
changeset
|
2444 |
3924 | 2445 2002-07-06 Jim Meyering <meyering@lucent.com> |
2446 | |
2447 * README: Don't mention Makefile.am.in. | |
2448 Outline how I've tested changes to .m4 files. Yep, it's a pain. | |
2449 | |
3919 | 2450 2002-06-11 Paul Eggert <eggert@twinsun.com> |
2451 | |
2452 * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc. | |
2453 | |
3892 | 2454 2002-06-22 Jim Meyering <meyering@lucent.com> |
2455 | |
3907 | 2456 * c-stack.m4: New file, from diffutils-2.8.2. |
2457 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK. | |
2458 | |
3897 | 2459 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE, |
2460 now that configure.ac uses AC_GNU_SOURCE. | |
2461 (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU. | |
2462 * prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH. | |
2463 | |
3892 | 2464 Update to latest tools. Suggestions from Paul Eggert. |
2465 * stdbool.m4: New file, from diffutils-2.8.2. | |
2466 * gnu-source.m4: Update from diffutils-2.8.2. | |
3898 | 2467 * fnmatch.m4: Likewise. |
3892 | 2468 * prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h) |
2469 to AC_HEADER_STDBOOL | |
2470 | |
3880 | 2471 2002-06-21 Jim Meyering <meyering@lucent.com> |
2472 | |
3887 | 2473 * c-bs-a.m4: Add comment, from diffutils-2.8.2. |
2474 * mbrtowc.m4: Likewise. | |
2475 | |
2476 * mbstate_t.m4: Update from diffutils-2.8.2. | |
2477 * mbswidth.m4: Reflect name change: | |
2478 s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T. | |
2479 * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise. | |
2480 | |
2481 * lib-link.m4: Update from gettext-0.11.2. | |
2482 * gettext.m4: Likewise. | |
2483 | |
3880 | 2484 * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h. |
2485 From Alfred M. Szmidt. | |
2486 | |
3876 | 2487 2002-05-19 Paul Eggert <eggert@twinsun.com> |
2488 | |
2489 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author. | |
2490 | |
3864 | 2491 2002-06-07 Jim Meyering <meyering@lucent.com> |
2492 | |
2493 * prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h. | |
2494 They're needed at least for NetBSD 1.5.2. | |
2495 ($statxfs_includes): Include those same headers. | |
2496 ($statxfs_includes): Include sys/vfs.h if available. | |
2497 ($statxfs_includes): Likewise for sys/statvfs.h. | |
2498 Check for the following members in both structs statfs and statvfs: | |
2499 f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen. | |
2500 | |
3861 | 2501 2002-06-01 Jim Meyering <meyering@lucent.com> |
2502 | |
2503 * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro: | |
2504 s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/. | |
2505 | |
3858 | 2506 2002-05-28 Jim Meyering <meyering@lucent.com> |
2507 | |
2508 * readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'. | |
2509 Reported by Volker Borchert. | |
2510 | |
3853 | 2511 2002-05-27 Jim Meyering <meyering@lucent.com> |
2512 | |
3855 | 2513 * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace |
2514 localtime. | |
2515 | |
3853 | 2516 * readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to |
2517 use the replacement function; it wouldn't resolve at link time. | |
2518 Reported by Volker Borchert. | |
2519 | |
3840 | 2520 2002-04-30 Jim Meyering <meyering@lucent.com> |
2521 | |
2522 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT. | |
2523 | |
3836 | 2524 2002-04-29 Paul Eggert <eggert@twinsun.com> |
2525 | |
2526 * prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h. | |
2527 Do not check for alloca.h (no longer used) or stdbool.h (was never | |
2528 used?). Add AM_C_PROTOTYPES since hard-locale.h uses it. | |
2529 | |
3834 | 2530 2002-04-28 Paul Eggert <eggert@twinsun.com> |
2531 | |
3840 | 2532 * prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed. |
3834 | 2533 |
3829 | 2534 2002-04-29 Jim Meyering <meyering@lucent.com> |
2535 | |
2536 * jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN. | |
2537 * prereq.m4: Add jm_PREREQ_STRNLEN. | |
2538 Use AC_FUNC_STRNLEN here instead. | |
2539 | |
2540 * jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]). | |
2541 With autoconf-2.53a, it's part of AC_PROG_CC. | |
2542 | |
3823 | 2543 2002-04-28 Paul Eggert <eggert@twinsun.com> |
2544 | |
2545 * jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str). | |
2546 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR. | |
2547 | |
3812 | 2548 2002-04-24 Jim Meyering <meyering@lucent.com> |
2549 | |
2550 * prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro. | |
2551 (jm_PREREQ): Use it. | |
2552 | |
2553 * getloadavg.m4: Check for these headers: locale.h unistd.h | |
2554 mach/mach.h fcntl.h. | |
2555 Check for this function: setlocale. | |
2556 | |
3808 | 2557 2002-04-16 Jim Meyering <meyering@lucent.com> |
2558 | |
2559 * prereq.m4 (jm_PREREQ_READUTMP): Also check for these members: | |
2560 ut_pid, ut_id, ut_exit. | |
2561 | |
3798 | 2562 2002-04-12 Jim Meyering <meyering@lucent.com> |
2563 | |
3803 | 2564 * ls-mntd-fs.m4 (checking for getmntinfo function...): Remove now-bogus |
2565 check for f_type in sys/mount.h. Instead, just test for the existence | |
2566 of the getmntinfo function. Needed for Darwin 5.3. | |
2567 | |
3801 | 2568 * dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro. |
2569 This is necessary at least on Darwin 5.3. | |
2570 | |
3798 | 2571 * jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use |
3799 | 2572 AC_FUNC_STRNLEN. Otherwise, we'd end up putting two copies of strnlen.o |
3798 | 2573 in the library, and that makes some versions of ranlib object. |
2574 | |
3795 | 2575 2002-04-09 Jim Meyering <meyering@lucent.com> |
2576 | |
2577 * malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message | |
2578 to be more precise. Rather than saying we're checking whether the | |
2579 function `works', say what we're testing. | |
2580 * realloc.m4 (jm_FUNC_REALLOC): Likewise. | |
2581 Reported by Bruno Haible. | |
2582 | |
3773 | 2583 2002-02-27 Paul Eggert <eggert@twinsun.com> |
2584 | |
2585 * jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used. | |
2586 Check for clock_settime. | |
2587 | |
3759 | 2588 2002-02-25 Paul Eggert <eggert@twinsun.com> |
2589 | |
3773 | 2590 * acl.m4: New file. |
3759 | 2591 * jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL. |
2592 Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now. | |
2593 | |
3748 | 2594 2002-02-16 gettextize <bug-gnu-gettext@gnu.org> |
2595 | |
2596 * codeset.m4: Upgrade to gettext-0.11. | |
2597 * gettext.m4: Upgrade to gettext-0.11. | |
2598 * glibc21.m4: Upgrade to gettext-0.11. | |
2599 * iconv.m4: Upgrade to gettext-0.11. | |
2600 * isc-posix.m4: Upgrade to gettext-0.11. | |
2601 * lcmessage.m4: Upgrade to gettext-0.11. | |
2602 * lib-ld.m4: New file, from gettext-0.11. | |
2603 * lib-link.m4: New file, from gettext-0.11. | |
2604 * lib-prefix.m4: New file, from gettext-0.11. | |
2605 * progtest.m4: Upgrade to gettext-0.11. | |
2606 | |
3735 | 2607 2002-02-15 Paul Eggert <eggert@twinsun.com> |
2608 | |
4515
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
2609 * prereq.m4 (jm_PREREQ_POSIXVER): New macro. |
3735 | 2610 (jm_PREREQ): Use it. |
2611 | |
3726 | 2612 2002-01-26 Jim Meyering <meyering@lucent.com> |
2613 | |
2614 * jm-macros.m4 (jm_MACROS): Require autoconf-2.52g. | |
2615 * strnlen.m4: Remove file, now that it's part of autoconf. | |
2616 | |
3716 | 2617 2002-01-22 Paul Eggert <eggert@twinsun.com> |
2618 | |
2619 * jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO. | |
2620 | |
3706 | 2621 2002-01-19 Jim Meyering <meyering@lucent.com> |
2622 | |
2623 * jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN. | |
2624 Remove useless quotes: DF_PROG="df". | |
2625 * strnlen.m4: New file. | |
2626 | |
3681 | 2627 2001-12-14 Jim Meyering <meyering@lucent.com> |
2628 | |
2629 * jm-macros.m4 (jm_MACROS): Check for iswspace. | |
2630 Suggestion from Bruno Haible. | |
2631 | |
3642 | 2632 2001-11-20 Jim Meyering <meyering@lucent.com> |
2633 | |
2634 * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that | |
4474
f1650b772bb6
Correct SunOS and Solaris version number notation to match Sun's usage.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4463
diff
changeset
|
2635 SunOS 4.1.4 and Solaris 2.5.1 lose, too. |
3642 | 2636 |
3631 | 2637 2001-11-19 Jim Meyering <meyering@lucent.com> |
2638 | |
3633 | 2639 * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary |
2640 directory. Use "conftestXXXXXX" as the template. | |
2641 Suggestion from Paul Eggert. | |
2642 | |
3634 | 2643 * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor immediately, |
3633 | 2644 so the test doesn't mistakenly hit the max-open-files limit. |
3631 | 2645 |
3627 | 2646 2001-11-18 Jim Meyering <meyering@lucent.com> |
2647 | |
2648 * prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv. | |
2649 | |
3617 | 2650 2001-11-17 Jim Meyering <meyering@lucent.com> |
2651 | |
2652 * mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro. | |
2653 Prompted by a report from Bob Proulx. | |
2654 | |
2655 * jm-macros.m4 (jm_MACROS): Don't test for mkstemp here. | |
2656 Instead, require UTILS_FUNC_MKSTEMP. | |
2657 | |
3611 | 2658 2001-11-11 Jim Meyering <meyering@lucent.com> |
2659 | |
2660 * jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM. | |
2661 Now, that's done as part of AC_FUNC_STRTOD. | |
2662 | |
3610 | 2663 2001-10-22 Paul Eggert <eggert@twinsun.com> |
2664 | |
2665 * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define | |
2666 WINSIZE_IN_PTEM if <termios.h> defines struct winsize. | |
2667 | |
3604 | 2668 2001-11-10 Jim Meyering <meyering@lucent.com> |
2669 | |
2670 * prereq.m4 (jm_PREREQ_PHYSMEM): New function. | |
2671 (jm_PREREQ): Use it. | |
2672 | |
3599 | 2673 2001-11-09 Jim Meyering <meyering@lucent.com> |
2674 | |
3601 | 2675 * jm-macros.m4: Require autoconf-2.52f. |
2676 (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD): | |
2677 Use these AC_-prefixed names, not the AM_-prefixed ones. | |
2678 | |
3599 | 2679 * afs.m4 (jm_AFS): Quote the body. Patch by Akim Demaille. |
2680 | |
3595 | 2681 2001-11-04 Jim Meyering <meyering@lucent.com> |
2682 | |
2683 * fpending.m4: Remove unused cruft that saved, set, and restored $DEFS. | |
2684 | |
3587 | 2685 2001-11-03 Jim Meyering <meyering@lucent.com> |
2686 | |
3593 | 2687 * jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg |
2688 of AC_DEFUN. | |
2689 | |
3587 | 2690 * dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to |
2691 know the name of the variable in the macro definition. | |
2692 | |
3568 | 2693 2001-11-01 Jim Meyering <meyering@lucent.com> |
2694 | |
2695 * dirfd.m4 (UTILS_FUNC_DIRFD): New macro. | |
2696 * jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD. | |
2697 | |
3549 | 2698 2001-10-20 Paul Eggert <eggert@twinsun.com> |
2699 | |
2700 * error.m4 (jm_PREREQ_ERROR): | |
2701 Do not invoke AC_CHECK_FUNCS with strerror_r, as | |
2702 AC_FUNC_STRERROR_R does that. | |
2703 Check for strerror declaration. | |
2704 | |
2705 * strerror_r.m4: Add copyright notice, as nontrivial m4 files | |
2706 are supposed to have them these days. | |
2707 (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached. | |
2708 Merge changes from latest Autoconf CVS. | |
2709 Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p, | |
2710 and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since | |
2711 POSIX decided to standardize on the int flavor of strerror_r. | |
2712 | |
3540 | 2713 2001-09-30 Jim Meyering <meyering@lucent.com> |
2714 | |
2715 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if | |
2716 `struct fsstat' has the `f_fstypename' member. | |
2717 Use that to define FS_TYPE, which is now used to make | |
2718 the getfsstat link test tighter. | |
2719 | |
3530 | 2720 2001-09-29 Jim Meyering <meyering@lucent.com> |
2721 | |
2722 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS) | |
2723 [one-argument getmntent function]): Include stdio.h before mntent.h. | |
4474
f1650b772bb6
Correct SunOS and Solaris version number notation to match Sun's usage.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4463
diff
changeset
|
2724 SunOS 4.1.x needs it for the declaration of `FILE'. |
3530 | 2725 Patch by Volker Borchert. |
2726 | |
3532 | 2727 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS) |
2728 Check for these headers: sys/param.h sys/ucred.h sys/mount.h | |
2729 sys/fs_types.h, and make the link-test for getfsstat guard #include | |
2730 directives with appropriate #if HAVE_*_H tests so that we can | |
2731 detect getfsstat on Apple Darwin1.3.7 systems. | |
2732 Reported by Nelson Beebe. | |
3534 | 2733 Fix harmless typo in cache variable name: s/getsstat/getfsstat/. |
3532 | 2734 |
3526 | 2735 2001-09-28 Paul Eggert <eggert@twinsun.com> |
2736 | |
2737 Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which | |
2738 #defines strtoimax. Also treat the other strto* functions | |
2739 like strtoimax. | |
2740 | |
3530 | 2741 * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): |
3526 | 2742 Check for strtoul and strtoumax, |
2743 as those declarations are made even in the signed case. | |
3530 | 2744 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): |
3526 | 2745 Likewise, for strtol and strtoimax. |
2746 | |
3510 | 2747 2001-09-24 Jim Meyering <meyering@lucent.com> |
2748 | |
2749 * gettext.m4: Use the version from gettext-0.10.40, not CVS. | |
2750 | |
3505 | 2751 2001-09-23 Jim Meyering <meyering@lucent.com> |
2752 | |
2753 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test | |
2754 instead of the mere test for existence of mntent.h. The latter | |
2755 would get a false-positive on AIX 3.4 systems. | |
3507 | 2756 In the outer getmntent if-block, don't die if neither of the getmntent |
2757 tests succeeds. Instead, just fall through and continue with the | |
2758 remaining tests. | |
3505 | 2759 |
3500 | 2760 2001-09-22 Jim Meyering <meyering@lucent.com> |
2761 | |
3501 | 2762 * gettext.m4: New file. From gettext. |
3500 | 2763 * lcmessage.m4: Sync with gettext -- this changes only comments. |
2764 * progtest.m4: Likewise | |
2765 * isc-posix.m4: Decrement serial number to sync with gettext. | |
2766 * glibc21.m4: Likewise. | |
2767 | |
2768 * libintl.m4: Remove. No longer used. | |
2769 | |
3489 | 2770 2001-09-20 Jim Meyering <meyering@lucent.com> |
2771 | |
2772 * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of | |
3491 | 2773 strtoimax. |
3489 | 2774 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of |
2775 strtoumax. | |
2776 | |
3485 | 2777 2001-09-17 Jim Meyering <meyering@lucent.com> |
2778 | |
2779 * chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4, | |
2780 * jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4, | |
2781 * nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4, | |
2782 * st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4, | |
2783 * utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED, | |
2784 whenever the right hand side need not be expanded by the shell. | |
2785 | |
3484 | 2786 2001-09-16 Paul Eggert <eggert@twinsun.com> |
2787 | |
2788 * fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C | |
2789 library. It's not correct, as some older glibcs are buggy. | |
2790 fnmatch wasn't fixed until glibc 2.2. | |
2791 | |
2792 Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no | |
2793 special shell magic here. | |
2794 | |
3477 | 2795 2001-09-16 Jim Meyering <meyering@lucent.com> |
2796 | |
2797 * mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro. | |
2798 * jm-macros.m4: Require it. | |
2799 | |
3474 | 2800 2001-09-15 Jim Meyering <meyering@lucent.com> |
2801 | |
2802 * jm-macros.m4: Check for help2man. | |
2803 | |
3469 | 2804 2001-09-11 Jim Meyering <meyering@lucent.com> |
2805 | |
2806 * host-os.m4 (UTILS_HOST_OS): New file/macro. | |
2807 The body, by Paul Eggert, was moved here from configure.in. | |
3471 | 2808 * jm-macros.m4: Require UTILS_HOST_OS. |
3469 | 2809 |
3463 | 2810 2001-09-04 Paul Eggert <eggert@twinsun.com> |
2811 | |
2812 * prereq.m4 (jm_PREREQ_XREADLINK): New macro. | |
2813 (jm_PREREQ): Use it. | |
2814 | |
3456 | 2815 2001-09-03 Paul Eggert <eggert@twinsun.com> |
2816 | |
2817 * prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and | |
2818 sys/param.h, as pathmax.h includes them. | |
2819 | |
3449 | 2820 2001-09-03 Paul Eggert <eggert@twinsun.com> |
2821 | |
2822 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD. | |
2823 (jm_PREREQ_XGETCWD): New macro. | |
2824 | |
2825 * getcwd.m4: New file. | |
2826 | |
3445 | 2827 2001-09-01 Jim Meyering <meyering@lucent.com> |
2828 | |
2829 * jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name. | |
2830 Used by df. | |
2831 | |
3430 | 2832 2001-08-30 Paul Eggert <eggert@twinsun.com> |
2833 | |
2834 Simplify code, partly by assuming autoconf 2.52 semantics. | |
2835 | |
2836 * Makefile.am (EXTRA_DIST): Remove uintmax_t.m4. | |
2837 | |
2838 * inttypes.m4 (AC_PREREQ): Bump to 2.52. | |
2839 (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52. | |
2840 All uses removed. | |
2841 (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): | |
2842 Move AC_REQUIRE to next-to-top level, to avoid confusion. | |
2843 Use 2.52's AC_CHECK_TYPE instead of merely looking for the header. | |
2844 * prereq.m4 (jm_PREREQ_HUMAN): Don't require jm_AC_HEADER_INTTYPES_H. | |
2845 * jm-macros.m4 (jm_MACROS): Likewise. | |
2846 | |
2847 * uintmax_t.m4: Remove, as it duplicates inttypes.m4. | |
2848 | |
2849 * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): | |
2850 Quote first arg of AC_DEFUN. | |
2851 Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG | |
2852 since they are needed to parse the include file even if we need | |
2853 only xstrtoimax. Simplify logic behind the args to AC_REPLACE. | |
2854 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise, | |
2855 but with opposite signedness. | |
2856 | |
3402 | 2857 2001-08-30 Paul Eggert <eggert@twinsun.com> |
2858 | |
2859 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE. | |
2860 (jm_PREREQ_EXCLUDE): New macro. | |
2861 | |
3373 | 2862 2001-08-26 Jim Meyering <meyering@lucent.com> |
2863 | |
2864 * jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX. | |
2865 | |
2866 * xstrtoimax.m4: New file. | |
2867 * xstrtoumax.m4: Add comments explaining why we | |
2868 AC_REPLACE_FUNCS(strtol). | |
2869 | |
3358 | 2870 2001-06-20 Paul Eggert <eggert@twinsun.com> |
2871 | |
2872 * inttypes.m4: Add AC_PREREQ(2.13). | |
2873 (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too. | |
2874 (jm_AC_TYPE_INTMAX_T): New macro. | |
2875 (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4. | |
2876 | |
2877 * longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro. | |
2878 | |
2879 * longlong.m4: Renamed from ulonglong.m4. | |
2880 * inttypes.m4: Renamed from inttypes_h.m4. | |
2881 * uintmax_t.m4: Removed. | |
2882 | |
3340 | 2883 2001-08-12 Jim Meyering <meyering@lucent.com> |
2884 | |
2885 * afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4, | |
2886 d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4, | |
2887 fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4, | |
2888 group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4, | |
2889 jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4, | |
2890 link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4, | |
2891 mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4, | |
2892 prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4, | |
2893 rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, | |
2894 strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4, | |
2895 utime.m4, utimes.m4, xstrtoumax.m4: | |
2896 Quote the first argument in each use of AC_DEFUN. | |
2897 | |
3331 | 2898 2001-08-05 Jim Meyering <meyering@lucent.com> |
2899 | |
2900 * jm-macros.m4: Require autoconf-2.52. | |
2901 | |
3324 | 2902 2001-08-03 Paul Eggert <eggert@twinsun.com> |
2903 | |
2904 The following changes are from gettext 0.10.39 as maintained by | |
2905 Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ. | |
2906 | |
2907 * codeset.m4: Upgrade to serial AM1. | |
2908 (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET; | |
2909 all uses changed. Quote first arg of AC_DEFUN. | |
2910 (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset. | |
2911 | |
2912 * iconv.m4: Upgrade to serial AM2. | |
2913 (AM_ICONV): Renamed from jm_ICONV; all uses changed. | |
2914 Add --with-libconv-prefix. | |
2915 Quote first arg of AC_DEFUN. Add description for ICONV_CONST. | |
2916 (am_cv_func_iconv): Renamed from jm_cv_func_iconv. | |
2917 (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv. | |
2918 (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv. | |
2919 * jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings. | |
2920 | |
2921 * c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN. | |
2922 * getline.m4 (AM_FUNC_GETLINE): Likewise. | |
2923 * glibc21.m4 (jm_GLIBC21): Likewise. | |
2924 * inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise. | |
2925 * isc-posix.m4 (AC_ISC_POSIX): Likewise. | |
2926 * lcmessage.m4 (AM_LC_MESSAGES): Likewise. | |
2927 * progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise. | |
2928 * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise. | |
2929 * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise. | |
2930 | |
2931 * getline.m4 (AM_FUNC_GETLINE): Don't bother checking for | |
2932 string.h any more. | |
2933 | |
3334 | 2934 * progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no", |
2935 not the default value. | |
3324 | 2936 |
3334 | 2937 2001-06-25 Bruno Haible <haible@clisp.cons.org> |
2938 * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES. | |
2939 Also check for mbsinit. Needed for SCO 3.2v5.0.2. | |
2940 Also include <string.h>; this is where AIX 3.2.5 declares wcwidth. | |
2941 Also check for iswcntrl, used for wcwidth fallback. | |
2942 Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability | |
2943 to Autoconf 2.13. | |
3324 | 2944 |
3310 | 2945 2001-08-03 Jim Meyering <meyering@lucent.com> |
2946 | |
2947 * mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include', | |
2948 as it was in the original. Reported by Paul Eggert. | |
2949 | |
3308 | 2950 2001-07-16 Jim Meyering <meyering@lucent.com> |
2951 | |
2952 * gettimeofday.m4: New file. | |
2953 Prompted by a report from Bernhard Baehr. | |
2954 | |
3295 | 2955 2001-07-15 Jim Meyering <meyering@lucent.com> |
2956 | |
3308 | 2957 * Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h stuff. |
2958 Now it's in ../Makefile.cfg. | |
2959 | |
3295 | 2960 2001-07-04 Jim Meyering <meyering@lucent.com> |
2961 | |
2962 * Makefile.am.in (glibc-io.struct): New target. Rework the code | |
2963 that generates jm-glibc-io.m4 so that it doesn't trigger any make | |
2964 distcheck failure. | |
2965 | |
3284 | 2966 2001-07-02 Jim Meyering <meyering@lucent.com> |
2967 | |
2968 The following changes were prompted by suggestions from Bruno Haible. | |
2969 | |
2970 * jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4 | |
2971 is now generated. | |
2972 * Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted | |
2973 definition of EXTRA_DIST. | |
2974 (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to | |
2975 ensure that the generated file is created/updated whenever the list | |
2976 of $(unlocked_functions) is changed. | |
2977 (jm-glibc-io.m4): New rule. | |
2978 (unlocked-io.h): New rule -- currently unused. | |
2979 | |
3282 | 2980 2001-06-24 Jim Meyering <meyering@lucent.com> |
2981 | |
2982 * regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an | |
2983 unmatched right bracket, rather than kludging it with an extra, | |
2984 falsely-matching quote in a comment. Patch by Akim Demaille. | |
2985 | |
3277 | 2986 2001-05-27 Jim Meyering <meyering@lucent.com> |
2987 | |
2988 * prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx. | |
2989 Check for ut_type in struct utmp. | |
2990 | |
3271 | 2991 2001-05-22 Jim Meyering <meyering@lucent.com> |
2992 | |
2993 * strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime), | |
2994 now that we use the package-supplied version unconditionally. | |
2995 (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason. | |
2996 | |
3269 | 2997 2001-05-21 Jim Meyering <meyering@lucent.com> |
2998 | |
2999 * regex.m4: Change a couple backticks to single quotes to avoid shell | |
3000 syntax errors. | |
3001 | |
3266 | 3002 2001-05-19 Alexandre Duret-Lutz <duret_g@epita.fr> |
3003 | |
3004 * dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__. | |
3005 | |
3259 | 3006 2001-05-11 Paul Eggert <eggert@twinsun.com> |
3007 | |
3358 | 3008 * strftime.m4 (jm_FUNC_GNU_STRFTIME): |
3259 | 3009 Don't bother to check library strftime, since |
3010 we'll be using our own my_strftime function anyway. | |
3011 Define my_strftime instead of strftime. | |
3012 | |
3254 | 3013 2001-05-15 Jim Meyering <meyering@lucent.com> |
3014 | |
3015 * regex.m4: Use proper quoting so brackets appear in the test program. | |
3257 | 3016 Reported by, and with help from, Bruno Haible. |
3254 | 3017 |
3252 | 3018 2001-05-13 Jim Meyering <meyering@lucent.com> |
3019 | |
3020 * jm-macros.m4 (major_t, minor_t): Define to unsigned int if undefined. | |
3021 | |
3235 | 3022 2000-11-26 Paul Eggert <eggert@twinsun.com> |
3023 | |
3024 * jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used. | |
3025 | |
3233 | 3026 2001-04-21 Jim Meyering <meyering@lucent.com> |
3027 | |
3028 * rmdir-errno.m4: Write to a new file, so that a restrictive umask | |
3029 doesn't interfere. | |
3030 | |
3231 | 3031 2001-04-21 Alexandre Duret-Lutz <duret_g@epita.fr> |
3032 | |
3033 * ftruncate.m4: Check for chsize. | |
3034 Link with ftruncate.o unconditionally if ftruncate is missing. | |
3035 This was required when cross-compiling to i586-mingw32msvc. | |
3036 | |
3225 | 3037 2001-03-24 Jim Meyering <meyering@lucent.com> |
3038 | |
3039 * jm-macros.m4: Require autoconf-2.49d. | |
3040 | |
3223 | 3041 2001-03-20 Bruno Haible <haible@clisp.cons.org> |
3042 | |
4809
cde3aec825b9
Don't include getndelim2.o twice into LIBOBJS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4802
diff
changeset
|
3043 * iconv.m4 (jm_ICONV): Recommend GNU libiconv. |
3223 | 3044 |
3219 | 3045 2001-03-17 Jim Meyering <meyering@lucent.com> |
3216 | 3046 |
3218 | 3047 * memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP, |
3048 now that the version in autoconf is equivalent. | |
3049 (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP. | |
3050 | |
3216 | 3051 * error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R. |
3052 Suggestion from Akim Demaille. | |
3053 | |
3054 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME. | |
3055 (jm_PREREQ_TEMPNAME): New function. | |
3056 | |
3194 | 3057 2001-02-25 Paul Eggert <eggert@twinsun.com> |
3058 | |
3059 * jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system | |
3060 lacks mkstemp. Compile our own tempname.c if we compile our own | |
3061 mkstemp.c, as mkstemp relies on tempname. | |
3062 | |
3190 | 3063 2001-03-01 Jim Meyering <meyering@lucent.com> |
3064 | |
3065 * dos.m4 (jm_AC_DOS): Remove extra backslashes, now that | |
3066 AH_VERBATIM really does output its argument verbatim. | |
3067 | |
3188 | 3068 2001-02-18 Paul Eggert <eggert@twinsun.com> |
3069 | |
3070 * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h. | |
3071 | |
3172 | 3072 2001-02-17 Jim Meyering <meyering@lucent.com> |
3073 | |
3179 | 3074 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for |
3075 getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt | |
3076 further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on | |
3077 UnixWare 7.1.1. | |
3078 | |
3172 | 3079 * mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc., |
3080 rather than AC_CACHE_VAL. | |
3081 | |
3082 2001-02-17 Paul Eggert <eggert@twinsun.com> | |
3083 | |
3173 | 3084 * mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC. |
3085 * mbswidth.m4 (jm_PREREQ_MBSWIDTH): | |
3172 | 3086 Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc). |
3173 | 3087 * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise. |
3172 | 3088 |
3158 | 3089 2001-02-07 Jim Meyering <meyering@lucent.com> |
3090 | |
3091 * regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug. | |
3092 | |
3156 | 3093 2001-02-05 Jim Meyering <meyering@lucent.com> |
3094 | |
3095 * jm-macros.m4: Require autoconf-2.14d (not yet released), because | |
3096 it includes the patch required for `large file' support with at least | |
3097 HP-UX's 10.20 /bin/cc. | |
3098 | |
3153 | 3099 2001-02-03 Jim Meyering <meyering@lucent.com> |
3100 | |
3101 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of | |
3102 AS_IF, now that it works once again (mysteriously). | |
3103 * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise. | |
3104 | |
3147 | 3105 2001-01-30 Jim Meyering <meyering@lucent.com> |
3106 | |
3107 Don't use filenames that are 8.3-equivalent to "conftest" on DOS. | |
3108 * chown.m4: Rename conftestchown to conftest.chown. | |
3109 * rename.m4: s/conftestdir/conftest.d1/ and s/conftestdir2/conftest.d2/. | |
3110 * utimes.m4: s/conftestdata/conftest.data/ | |
3111 Inspired by Pavel Roskin's change in autoconf. | |
3112 | |
3138 | 3113 2001-01-27 Jim Meyering <meyering@lucent.com> |
3114 | |
3141 | 3115 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was |
3116 a use of AS_IF. | |
3138 | 3117 * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise. |
3118 | |
3131 | 3119 2001-01-26 Jim Meyering <meyering@lucent.com> |
3120 | |
3121 * prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that | |
3122 quotearg.c includes it. | |
3123 | |
3126 | 3124 2001-01-15 Bruno Haible <haible@clisp.cons.org> |
3125 | |
3126 * iconv.m4 (jm_ICONV): Also check whether the iconv declaration | |
3127 has const. | |
3128 | |
3116 | 3129 2001-01-20 Jim Meyering <meyering@lucent.com> |
3130 | |
3119 | 3131 Be sure that headers are checked before used in code compiled |
3132 for the type checks. | |
3133 * jm-macros.m4 (jm_MACROS): Remove all header checks. | |
3134 In place of that, invoke jm_CHECK_ALL_TYPES. | |
3135 (jm_CHECK_ALL_HEADERS): New functions with the above checks. | |
3136 (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS. | |
3122 | 3137 Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES; |
3121 | 3138 The check for ssize_t was mistakenly run before the test for unistd.h. |
3119 | 3139 |
3116 | 3140 The configure-time check for stdbool.h was missing. |
3141 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH. | |
3142 (jm_PREREQ_HASH): New function. | |
3143 | |
3111 | 3144 2001-01-17 Jim Meyering <meyering@lucent.com> |
3145 | |
3146 * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE, | |
3147 for autoconf-2.49c. | |
3148 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise. | |
3149 | |
3101 | 3150 2001-01-14 Jim Meyering <meyering@lucent.com> |
3151 | |
3152 * rename.m4: Use temporary directories named conftestdir{,2}, not | |
3153 foo and bar. Create conftestdir/ in the script, not in the C code. | |
3154 Remove directories in the script, not in the C code. | |
3106 | 3155 Remove conftestdir{,2} before trying to create the directory. |
3156 Make the entire configure script fail if the mkdir fails. | |
3101 | 3157 |
3158 2001-01-02 Volker Borchert <bt@teknon.de> | |
3159 | |
3160 * rename.m4: New file. | |
3161 * jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME. | |
3162 | |
3093 | 3163 2001-01-01 Alexandre Duret-Lutz <duret_g@epita.fr> |
3164 | |
3165 * libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by | |
3166 expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN, | |
3167 so `make install' also works in VPATH builds. | |
3168 | |
3087 | 3169 2001-01-01 Jim Meyering <meyering@lucent.com> |
3170 | |
3089 | 3171 * prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available), even |
3172 on systems with utmpx.h. It's necessary for the declaration of utmp's | |
3173 ut_user member. Reported by Andreas Jaeger. | |
3174 | |
3087 | 3175 * check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if available. |
3176 They are required for the declarations of getgrgid and getpwuid resp. | |
3177 (_jm_DECL_HEADERS): Check for grp.h and pwd.h. | |
3178 Reported by Andreas Jaeger. | |
3179 | |
3085 | 3180 2000-12-25 Alexandre Duret-Lutz <duret_g@epita.fr> |
3181 | |
3182 * libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR, | |
3183 prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it | |
3184 can be used in subdirectories. | |
3185 | |
3079 | 3186 2000-12-26 Jim Meyering <meyering@lucent.com> |
3187 | |
3188 * dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work better | |
3189 with autoheader. | |
3190 | |
3058 | 3191 2000-12-17 Jim Meyering <meyering@lucent.com> |
3192 | |
3193 * dos.m4 (jm_AC_DOS): New file and macro. | |
3194 * jm-macros.m4 (jm_MACROS): Require jm_AC_DOS. | |
3195 | |
3045 | 3196 2000-12-06 Paul Eggert <eggert@twinsun.com> |
3197 | |
3198 * off_t-format.m4: Remove this file. | |
3199 * jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT. | |
3200 | |
3030 | 3201 2000-12-06 Jim Meyering <meyering@lucent.com> |
3202 | |
3203 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the replacement | |
3204 strtoull, we may well need the replacement strtoul, too. | |
3034 | 3205 Check for declarations of strtoul and strtoull. |
3036 | 3206 Check for strtol. Mainly as a cue to cause automake to include |
3207 strtol.c -- that file is included by each of strtoul.c and strtoull.c. | |
3208 Check for limits.h -- strtol.c needs it. | |
3030 | 3209 |
3017 | 3210 2000-12-02 Jim Meyering <meyering@lucent.com> |
3211 | |
3212 * off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro. | |
3213 * jm-macros.m4 (jm_MACROS): require it. | |
3214 | |
3007 | 3215 2000-11-30 Jim Meyering <meyering@lucent.com> |
3216 | |
3008 | 3217 * jm-macros.m4 (jm_MACROS): Check for stdint.h. |
3007 | 3218 |
3003 | 3219 2000-11-30 Jim Meyering <meyering@lucent.com> |
3220 | |
3221 * getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf. | |
3222 | |
2970 | 3223 2000-11-03 Bruno Haible <haible@clisp.cons.org> |
3224 | |
3225 * jm-macros.m4 (jm_MACROS): Add test for wcrtomb. | |
3226 | |
2959 | 3227 2000-11-04 Jim Meyering <meyering@lucent.com> |
3228 | |
3229 * regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'. | |
3230 | |
2944 | 3231 2000-10-29 Jim Meyering <meyering@lucent.com> |
3232 | |
3233 * fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf renaming. | |
3234 * ls-mntd-fs.m4: Likewise | |
3235 | |
2937 | 3236 2000-10-28 Jim Meyering <meyering@lucent.com> |
3237 | |
3238 * prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR. | |
3239 (jm_PREREQ_MEMCHR): New function. | |
3240 | |
2893 | 3241 2000-10-21 Jim Meyering <meyering@lucent.com> |
3242 | |
3243 * check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr. | |
3244 * prereq.m4 (jm_PREREQ_DIRNAME): New macro. | |
3245 * jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr. | |
3246 | |
2871 | 3247 2000-09-18 Jim Meyering <meyering@lucent.com> |
3248 | |
3249 * getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of LIBS. | |
3250 Otherwise, everyone ends up linking with -lelf for some configurations. | |
3251 Reported by Mike Stone. | |
3252 | |
2833 | 3253 2000-08-26 Jim Meyering <meyering@lucent.com> |
3254 | |
3255 * jm-macros.m4: Use jm_FUNC_FPENDING. | |
3256 * fpending.m4: New file. | |
3257 | |
2823 | 3258 2000-08-20 Jim Meyering <meyering@lucent.com> |
3259 | |
3260 * check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than | |
3261 `#if !HAVE_UTMPX_H'. The latter would lose on systems with neither | |
3262 utmp.h nor utmpx.h. Reported by Eli Zaretskii. | |
3263 | |
2819 | 3264 2000-08-11 J. David Anglin <dave@hiauly1.hia.nrc.ca> |
3265 | |
3266 Improve fileutils installation on systems where running | |
3267 programs (like install) can't be unlinked. | |
3268 * unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro. | |
3269 * jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT. | |
3270 | |
2806 | 3271 2000-08-06 Paul Eggert <eggert@twinsun.com> |
3272 | |
3173 | 3273 * mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int, |
2806 | 3274 not char, for compatibility with glibc 2.1.3 strftime.c. |
3275 | |
2773 | 3276 2000-07-23 Paul Eggert <eggert@twinsun.com> |
3277 | |
3278 * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration. | |
3279 | |
2766 | 3280 2000-07-23 Jim Meyering <meyering@lucent.com> |
3281 | |
3282 * check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these, too: | |
3283 getgrgid, getpwuid, getuid. | |
3284 | |
2755 | 3285 2000-07-16 Bruno Haible <haible@clisp.cons.org> |
3286 | |
2901 | 3287 * mbswidth.m4: New file. |
3288 * prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH. | |
2755 | 3289 |
2745 | 3290 2000-07-14 Jim Meyering <meyering@lucent.com> |
3291 | |
3292 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require jm_AC_TYPE_UINTMAX_T. | |
3293 | |
2740 | 3294 2000-07-10 Paul Eggert <eggert@twinsun.com> |
3295 | |
3296 From a suggestion by Bruno Haible. | |
3297 * mbstate_t.m4 (AC_MBSTATE_T): | |
3298 Renamed from AC_MBSTATE_T_OBJECT. All uses changed. | |
3299 Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT | |
3300 and mbstate_t, to a single-part test that simply defines mbstate_t. | |
2745 | 3301 * prereq.m4 (jm_PREREQ_QUOTEARG): s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/. |
2740 | 3302 |
2732 | 3303 2000-07-10 Jim Meyering <meyering@lucent.com> |
3304 | |
2734 | 3305 * strerror_r.m4: Mirror the correction made in autoconf. |
3306 | |
2732 | 3307 * gnu-source.m4: Output to confdefs.h directly. |
3308 Suggestion from Akim Demaille. | |
3309 | |
2726 | 3310 2000-07-09 Jim Meyering <meyering@lucent.com> |
3311 | |
2729 | 3312 * jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required |
3313 to link seq. If so, set SEQ_LIBM to -lm. From Bruno Haible. | |
3314 | |
2726 | 3315 * gnu-source.m4 (AC__GNU_SOURCE): New file/macro. |
3316 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it. | |
3317 | |
2714 | 3318 2000-07-05 Bruno Haible <haible@clisp.cons.org> |
3319 | |
3320 * strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer | |
3321 to strerror_r. | |
2716 | 3322 Include <ctype.h> for use of isalpha. |
2714 | 3323 |
2712 | 3324 2000-07-05 Paul Eggert <eggert@twinsun.com> |
3325 and Bruno Haible <haible@clisp.cons.org> | |
3326 | |
3327 * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t | |
3328 only if the test for an object-type mbstate_t fails. This | |
3329 prevents us from mistakenly reporting that mbstate_t is a | |
3330 system object type after we "#define mbstate_t int" to work | |
3331 around its lack. | |
3332 | |
2701 | 3333 2000-07-04 Jim Meyering <meyering@lucent.com> |
3334 | |
3335 * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead | |
2702 | 3336 of the deprecated AC_CHECKING. |
2701 | 3337 |
2698 | 3338 2000-07-03 Jim Meyering <meyering@lucent.com> |
3339 | |
3340 * check-decl.m4 (AC_CHECK_DECLS): Add strnlen. | |
3341 | |
2695 | 3342 2000-07-03 Paul Eggert <eggert@twinsun.com> |
3343 | |
3344 * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13. | |
3345 Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H. | |
3346 | |
2683
522ab167a508
Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with AC_LIBOBJ([function_name]).
Jim Meyering <jim@meyering.net>
parents:
2681
diff
changeset
|
3347 2000-07-02 Jim Meyering <meyering@lucent.com> |
522ab167a508
Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with AC_LIBOBJ([function_name]).
Jim Meyering <jim@meyering.net>
parents:
2681
diff
changeset
|
3348 |
2691 | 3349 * mbstate_t.m4: Also define mbstate_t, if necessary. |
3350 | |
2683
522ab167a508
Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with AC_LIBOBJ([function_name]).
Jim Meyering <jim@meyering.net>
parents:
2681
diff
changeset
|
3351 * chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with |
2686 | 3352 AC_LIBOBJ(function_name). |
2684 | 3353 * chown.m4: Likewise. |
3354 * fnmatch.m4: Likewise. | |
3355 * ftruncate.m4: Likewise. | |
3356 * getgroups.m4: Likewise. | |
3357 * getline.m4: Likewise. | |
3358 * group-member.m4: Likewise. | |
3359 * jm-macros.m4: Likewise. | |
3360 * lstat.m4: Likewise. | |
3361 * malloc.m4: Likewise. | |
3362 * memcmp.m4: Likewise. | |
3363 * nanosleep.m4: Likewise. | |
3364 * putenv.m4: Likewise. | |
3365 * realloc.m4: Likewise. | |
3366 * regex.m4: Likewise. | |
3367 * stat.m4: Likewise. | |
3368 * strftime.m4: Likewise. | |
2683
522ab167a508
Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with AC_LIBOBJ([function_name]).
Jim Meyering <jim@meyering.net>
parents:
2681
diff
changeset
|
3369 |
2681 | 3370 2000-07-01 Jim Meyering <meyering@lucent.com> |
3371 | |
3372 * ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated | |
3373 problem. | |
3374 | |
2679 | 3375 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
3376 | |
3377 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific | |
3378 macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV. | |
3379 | |
2675 | 3380 2000-07-01 Jim Meyering <meyering@lucent.com> |
3381 | |
3382 * uptime.m4: Put double quotes around use of $cross_compiling. | |
3383 | |
2666 | 3384 2000-06-28 Jim Meyering <meyering@lucent.com> |
3385 | |
3386 * mbstate_t.m4: Use stdlib.h, not stdio.h. The latter is not included | |
3387 by quotearg.c, for which we perform this test. From Bruno Haible. | |
3388 | |
2662 | 3389 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
3390 | |
3391 * check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well. | |
3392 * prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or | |
3393 <utmpx.h> exists, put readutmp.o into LIBOBJS. | |
3394 | |
2653 | 3395 2000-06-25 Jim Meyering <meyering@lucent.com> |
3396 | |
3397 * mbstate_t.m4: Include stdio.h before wchar.h to work around | |
3398 Linux header bug when _XOPEN_SOURCE is defined to 500. | |
3399 | |
2644 | 3400 2000-06-24 Jim Meyering <meyering@lucent.com> |
3401 | |
3402 * strerror_r.m4: Revive this file -- to try out an experimental | |
3403 version of AC_FUNC_STRERROR_R that may work even on BeOS, a system | |
3404 for which strerror does return char*, but which lacks a conveniently | |
2649 | 3405 accessible declaration of the function. If the compile-test says |
3406 strerror_r doesn't work, then resort to a `run'-test that works on | |
3407 BeOS and segfaults on DEC Unix. | |
2644 | 3408 |
2639 | 3409 2000-06-19 Paul Eggert <eggert@twinsun.com> |
3410 | |
3411 * mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT. | |
3412 * prereq.m4 (jm_PREREQ_QUOTEARG): Use it. Add check for iswprint. | |
2635 | 3413 |
2640 | 3414 2000-06-23 Jim Meyering <meyering@lucent.com> |
3415 | |
2635 | 3416 * afs.m4: Add missing AC_MSG_RESULT. |
3417 Reported by Bruno Haible. | |
3418 | |
3419 * fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/. | |
3420 Suggestion from Bruno Haible. | |
3421 | |
2632 | 3422 2000-06-21 Jim Meyering <meyering@lucent.com> |
3423 | |
3424 * jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass. | |
3425 | |
2604 | 3426 2000-06-18 Jim Meyering <meyering@lucent.com> |
3427 | |
2613 | 3428 * jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir. |
3429 | |
2604 | 3430 * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the |
3431 `checking whether...' message to be consistent with that of the | |
3432 lstat test. | |
3433 | |
2596 | 3434 2000-06-16 Bruno Haible <haible@clisp.cons.org> |
3435 | |
3436 * glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C. | |
3437 | |
2599 | 3438 2000-06-12 Jim Meyering <meyering@lucent.com> |
3439 | |
3440 * getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with AC_FUNC_GETLOADAVG | |
3441 from autoconf, and tweak the latter to accept an optional argument. | |
3442 * jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply | |
3443 the optional argument, `lib'. | |
3444 | |
2580 | 3445 2000-06-08 Jim Meyering <meyering@lucent.com> |
3446 | |
3447 * largefile.m4: Remove file (now that it's part of autoconf). | |
3448 | |
2577 | 3449 2000-06-04 Paul Eggert <eggert@twinsun.com> |
3450 | |
3451 Rewrite largefile configuration so that we don't need to run | |
3452 getconf and don't need AC_CANONICAL_HOST. [I'm leaving the use of | |
3453 AC_CANONICAL_HOST in configure.in -- jmm] | |
3454 | |
3455 * largefile.m4 (AC_SYS_LARGEFILE_FLAGS, | |
3456 AC_SYS_LARGEFILE_SPACE_APPEND): Remove. | |
3457 (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro. | |
3458 (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from | |
3459 CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. | |
3460 All uses changed. | |
3461 Instead of inspecting the output of getconf, try to compile the | |
3462 test program without and with the macro definition. | |
3463 (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check | |
3464 for getconf. Instead, check for the needed flags by compiling | |
3465 test programs. | |
3466 | |
2565 | 3467 2000-06-03 Jim Meyering <meyering@lucent.com> |
3468 | |
2567 | 3469 * prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS, |
3470 now that autoconf requires that. | |
3471 | |
2565 | 3472 * jm-glibc-io.m4: Add a kludge to make autoheader emit the required |
3473 #undefs. E.g., #undef HAVE_DECL_FERROR_UNLOCKED. | |
3474 Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that. | |
3475 | |
2559 | 3476 2000-05-26 Bruno Haible <haible@clisp.cons.org> |
2557 | 3477 |
2559 | 3478 * glibc21.m4: New file. |
3206 | 3479 * jm-macros.m4 (jm_MACROS): Call jm_GLIBC21. |
2557 | 3480 |
2542 | 3481 2000-05-28 Jim Meyering <meyering@lucent.com> |
3482 | |
2545 | 3483 * jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from |
3484 jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. | |
2547 | 3485 * stat.m4: Likewise. |
3486 * lstat.m4: Likewise. | |
2545 | 3487 * lstat-slash.m4: Remove file (absorbed into autoconf). |
3488 | |
3489 * jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R. | |
2542 | 3490 * strerror_r.m4: Remove file (absorbed into autoconf). |
3491 | |
2539 | 3492 2000-05-26 Jim Meyering <meyering@lucent.com> |
3493 | |
3494 * uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'. | |
3495 | |
2536 | 3496 2000-05-24 Jim Meyering <meyering@lucent.com> |
3497 | |
3498 * prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that | |
3499 autoconf requires that. | |
3500 * lib-check.m4: Likewise. | |
3501 * jm-macros.m4: Likewise. | |
3502 * strftime.m4: Likewise. | |
3503 | |
3504 * check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS, | |
3505 now that autoconf requires that. | |
3506 | |
2531 | 3507 2000-05-22 Jim Meyering <meyering@lucent.com> |
3508 | |
3509 * stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. | |
3510 * lstat.m4: Likewise. | |
3511 | |
2528 | 3512 2000-05-20 Jim Meyering <meyering@lucent.com> |
3513 | |
3514 * prereq.m4 (jm_PREREQ_HUMAN): New macro. | |
3515 (jm_PREREQ): Use it. | |
3516 | |
2512 | 3517 2000-05-09 Jim Meyering <meyering@lucent.com> |
3518 | |
3519 * gettext.m4: Rename this... | |
3520 * libintl.m4: ...to this. | |
3521 | |
2492 | 3522 2000-05-06 Jim Meyering <meyering@lucent.com> |
3523 | |
2512 | 3524 * jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit. |
3525 (AC_REPLACE_FUNCS): Add strnlen. | |
2499 | 3526 |
2496 | 3527 * rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file. |
3528 * jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY. | |
3529 | |
3206 | 3530 * nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around |
2492 | 3531 AC_SEARCH_LIBS call for nanosleep. |
3532 (LIB_NANOSLEEP): Set and AC_SUBST. | |
3533 | |
2490 | 3534 2000-05-03 Paul Eggert <eggert@twinsun.com> |
3535 | |
3536 * largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to | |
3537 be 500, instead of _GNU_SOURCE to be 1, to work around glibc | |
3538 2.1.3 bug. This avoids a clash when files like regex.c define | |
3539 _GNU_SOURCE. | |
3540 | |
2480 | 3541 2000-05-05 Jim Meyering <meyering@lucent.com> |
3542 | |
2486 | 3543 * jm-macros.m4 (jm_MACROS): Save and restore LIBS around AC_SEARCH_LIBS |
3544 call for clock_gettime. | |
3545 (LIB_CLOCK_GETTIME): Set and AC_SUBST. | |
3546 | |
2484 | 3547 * search-libs.m4: Update from autoconf. |
3548 | |
4474
f1650b772bb6
Correct SunOS and Solaris version number notation to match Sun's usage.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4463
diff
changeset
|
3549 su doesn't work on Solaris 2.6. |
2480 | 3550 * lib-check.m4: When checking for struct spwd.sp_pwdp, also include |
3551 <shadow.h>. Reported by Dragos Harabor. | |
3552 | |
2465 | 3553 2000-05-03 Jim Meyering <meyering@lucent.com> |
3554 | |
3555 * check-decl.m4 (AC_CHECK_DECLS): Add strndup. | |
3556 | |
2463 | 3557 2000-05-02 Paul Eggert <eggert@twinsun.com> |
3558 | |
3559 * largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if | |
3560 this is needed to make ftello visible (e.g. glibc 2.1.3). Use | |
3561 compile-time test, rather than inspecting host and OS, to | |
3562 decide whether to define _LARGEFILE_SOURCE. | |
3563 | |
2455 | 3564 2000-05-01 Jim Meyering <meyering@lucent.com> |
3565 | |
2458 | 3566 * fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING. |
3567 | |
2455 | 3568 * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support. |
3569 Based on a patch from Bruno Haible. | |
3570 | |
2433 | 3571 2000-04-18 Jim Meyering <meyering@lucent.com> |
3572 | |
3573 * prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro. | |
3574 (jm_PREREQ): Use it. | |
3575 | |
2429 | 3576 2000-04-17 Jim Meyering <meyering@lucent.com> |
3577 | |
3578 Get it right :-) | |
3206 | 3579 * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the |
2429 | 3580 actual #define via AH_VERBATIM. Don't need separate AC_DEFINE. |
3581 Suggestion from Akim Demaille. | |
3582 | |
2425 | 3583 2000-04-14 Jim Meyering <meyering@lucent.com> |
3584 | |
3206 | 3585 * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg form |
2425 | 3586 of AC_DEFINE. Otherwise, the #ifndef in AH_VERBATIM gets clobbered. |
3587 | |
2423 | 3588 2000-04-13 Jim Meyering <meyering@lucent.com> |
3589 | |
3590 * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new AH_VERBATIM | |
3591 to insert required #ifndef into config.h.in. | |
3592 Suggestion from Akim Demaille. | |
3593 | |
2418 | 3594 2000-04-12 Jim Meyering <meyering@lucent.com> |
3595 | |
2421 | 3596 * getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not |
3597 `AC_CHECK_HEADER' to check for locale.h. Thanks to a report from | |
3598 Christian Krackowizer. | |
3599 | |
2419 | 3600 More code moved from ../configure.in into (jm_CHECK_ALL_TYPES). |
2418 | 3601 * jm-macros.m4 (_GNU_SOURCE): Define. |
3602 (AC_SYS_LARGEFILE): Require. | |
3603 (AM_C_PROTOTYPES): Require. | |
3604 | |
2409 | 3605 2000-04-05 Paul Eggert <eggert@twinsun.com> |
3606 | |
3607 * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on | |
3608 IRIX if the installer said otherwise. | |
3609 | |
2400 | 3610 2000-04-05 Jim Meyering <meyering@lucent.com> |
3611 | |
2406 | 3612 Portability tweaks required for ultrix4.3. |
3613 * check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>. | |
3614 (jm_CHECK_DECLS): Add getutent to the list of functions. | |
3615 (_jm_DECL_HEADERS): Add utmpx.h. | |
3616 From John David Anglin. | |
3617 | |
2400 | 3618 * strftime.m4: Back out the 2000-04-02 change. |
3619 Instead of that change, simply undefine putenv in the test program. | |
3620 | |
2381 | 3621 2000-04-03 Jim Meyering <meyering@lucent.com> |
3622 | |
2390 | 3623 * gettext.m4: Fix typo in comment. |
3624 | |
2388 | 3625 * codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from |
3626 textutils/configure.in). Suggestion from Paul Eggert. | |
2383 | 3627 (AC_CHECK_FUNCS): Add nl_langinfo. (also from textutils/configure.in) |
2381 | 3628 |
2377 | 3629 2000-04-02 Paul Eggert <eggert@twinsun.com> |
3630 | |
2409 | 3631 * strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment |
2377 | 3632 variable in the shell rather than using putenv, which isn't |
3633 portable. This avoids the configure-time inter-test dependency | |
3634 on the potentially-renamed putenv function. | |
3635 | |
2374 | 3636 2000-03-30 Paul Eggert <eggert@twinsun.com> |
3637 | |
3638 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h> | |
3639 before checking struct stat.st_blksize, so that | |
3640 HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly. | |
3641 | |
2385 | 3642 2000-03-29 Paul Eggert <eggert@twinsun.com> |
3643 | |
2409 | 3644 * strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime, |
2385 | 3645 since strftime.c uses HAVE_STRFTIME to decide whether to use |
3646 the underlying strftime. | |
3647 | |
2347 | 3648 2000-03-10 Jim Meyering <meyering@lucent.com> |
3649 | |
3650 * lib-check.m4: Look for getspnam in -lgen, too. | |
3651 From Marco Franzen. | |
3652 | |
2327 | 3653 2000-02-02 Bruno Haible <haible@clisp.cons.org> |
3654 | |
3655 * codeset.m4: New file. | |
3656 * iconv.m4: New file. | |
3657 * jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV. | |
3658 | |
2326 | 3659 2000-03-04 Jim Meyering <meyering@lucent.com> |
3660 | |
3661 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE, | |
3662 for lib/localcharset.c. | |
3663 | |
2321 | 3664 2000-03-03 Jim Meyering <meyering@lucent.com> |
3665 | |
3666 * regex.m4: Make sure re_compile_pattern accepts patterns like `{1'. | |
3667 | |
2312 | 3668 2000-03-02 Jim Meyering <meyering@lucent.com> |
3669 | |
2317 | 3670 * timespec.m4: Require AC_HEADER_TIME before the cache check so |
3671 the messages come out on separate lines. | |
3672 | |
2315 | 3673 * jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS, |
3674 rather than jm_CHECK_DECLARATIONS. | |
3675 * decl.m4: Remove now-unused file. | |
3676 | |
2312 | 3677 * check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and geteuid. |
3678 | |
2292 | 3679 2000-02-27 Jim Meyering <meyering@lucent.com> |
3680 | |
3681 * check-decl.m4: Add getenv to the list. | |
3682 | |
2282 | 3683 2000-02-23 Jim Meyering <meyering@lucent.com> |
3684 | |
3685 * check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it | |
3686 in place of my hack. | |
3687 | |
2268 | 3688 2000-02-10 Jim Meyering <meyering@lucent.com> |
3689 | |
3690 * nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from | |
3691 gnu_nanosleep to rpl_nanosleep. | |
3692 | |
2264 | 3693 2000-02-09 Jim Meyering <meyering@lucent.com> |
3694 | |
3695 * lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in | |
5163
b8139e37c5bd
Convert to UTF-8 correctly.
Bruno Haible <bruno@clisp.org>
parents:
5160
diff
changeset
|
3696 struct spwd, rather than in struct passwd. Reported by Gaël Quéri. |
2264 | 3697 |
2260 | 3698 2000-02-08 Akim Demaille <akim@epita.fr> |
3699 | |
2265 | 3700 * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with |
3701 `[' and `]' and remove uses of `changequote'. | |
2260 | 3702 (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise. |
3703 (AC_SYS_LARGEFILE): Likewise. | |
3704 * gettext.m4 (AM_GNU_GETTEXT): Likewise. | |
3705 * strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use | |
3706 of changequote. | |
3707 * regex.m4 (jm_INCLUDED_REGEX): Likewise. | |
3708 * readdir.m4 (jm_FUNC_READDIR): Likewise | |
3709 * memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main. | |
3710 * getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise. | |
3711 | |
2249 | 3712 2000-02-05 Jim Meyering <meyering@lucent.com> |
3713 | |
3206 | 3714 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros. |
2249 | 3715 Remove explicit use of AC_HEADER_TIME. It is required by |
3716 jm_CHECK_TYPE_STRUCT_TIMESPEC. Using AC_HEADER_TIME and | |
3717 `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but | |
3718 in autoconf whereby the expansion of the latter ended up preceding | |
3719 the expansion of its prerequisite, AC_HEADER_TIME. | |
3720 Reported by Volker Borchert. | |
3721 | |
2245 | 3722 2000-02-03 Jim Meyering <meyering@lucent.com> |
3723 | |
3724 * prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname. | |
3725 | |
2243 | 3726 2000-02-02 Jim Meyering <meyering@lucent.com> |
3727 | |
3728 * prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no | |
3729 definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/. | |
3730 Reported by Eli Zaretskii. | |
3731 | |
2251 | 3732 2000-01-31 Jim Meyering <meyering@lucent.com> |
3733 | |
3734 * check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of | |
3735 functions. Add the time.h and sys/time.h headers along with the | |
3736 AC_REQUIRE'ment of AC_HEADER_TIME. | |
3737 | |
2232 | 3738 2000-01-30 Jim Meyering <meyering@lucent.com> |
3739 | |
3740 * lib-check.m4: Clean up some kludgy old shadow password tests. | |
3741 | |
3742 * prereq.m4 (utmp_includes): Define. | |
3743 Check for ut_user and ut_name members in both struct utmpx | |
3744 and struct utmp. | |
3745 | |
2224 | 3746 2000-01-29 Jim Meyering <meyering@lucent.com> |
3747 | |
3748 * lib-check.m4: New file containing library-related checks from | |
3749 fileutils and sh-utils (textutils had none). | |
3750 | |
2223 | 3751 2000-01-28 Jim Meyering <meyering@lucent.com> |
3752 | |
3753 * perl.m4: Change format of warning message to look more like that | |
5163
b8139e37c5bd
Convert to UTF-8 correctly.
Bruno Haible <bruno@clisp.org>
parents:
5160
diff
changeset
|
3754 from the missing script. Suggestion from François Pinard. |
2223 | 3755 |
2218 | 3756 2000-01-25 Jim Meyering <meyering@lucent.com> |
3757 | |
3758 * timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as well | |
3759 as time.h in the compile check. | |
3760 * nanosleep.m4: Require AC_HEADER_TIME rather than simply using it. | |
3761 Fix typo in cross-compiling case: s/yes/no/. | |
3762 | |
2192 | 3763 2000-01-23 Jim Meyering <meyering@lucent.com> |
3764 | |
2212 | 3765 * jm-macros.m4: Move df-related tests here from fileutils/configure.in |
3766 | |
2209 | 3767 * ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/ |
3768 (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters. | |
3769 | |
3770 * fsusage.m4: New file. Extracted from fileutils/configure.in. | |
3771 s/space/ac_fsusage_space/. | |
3772 (jm_FILE_SYSTEM_USAGE): Take two parameters. | |
3773 | |
3774 * ftruncate.m4: New file (derived from part of fileutils/configure.in). | |
3206 | 3775 * jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it. |
2209 | 3776 (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT. |
3777 | |
3206 | 3778 * jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN): |
2192 | 3779 AC_SUBST these here, rather than just in sh-util/configure.in, so |
3780 that the now-shared-by-fileutils-and-textutils lib/Makefile.am are | |
3781 all the same. | |
2193 | 3782 (AM_FUNC_OBSTACK): Add (from fileutils/configure.in). |
2198 | 3783 (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils. |
3784 (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in). | |
3785 (AC_SUBST(POW_LIBM)): Likewise. | |
2200 | 3786 (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in. |
2192 | 3787 |
2169 | 3788 2000-01-22 Jim Meyering <meyering@lucent.com> |
3789 | |
2185 | 3790 * jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST. |
3791 | |
3792 * prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h. | |
3793 | |
2176 | 3794 * jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils' |
3795 configure.in | |
2178 | 3796 (AC_CHECK_HEADERS): Likewise for sh-utils. |
2181 | 3797 (AC_CHECK_HEADERS): Likewise for textutils. |
3798 Merge the three lists of headers. | |
2176 | 3799 |
2174 | 3800 * prereq.m4 (jm_PREREQ_ADDEXT): New macro. Parts moved here |
3801 from fileutils' configure.in. | |
3802 | |
2169 | 3803 * decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)' code. |
3804 Moved tests into their own function (_jm_DECL_HEADERS) in check-decl.m4. | |
3805 | |
3806 * check-decl.m4: Use #if rather than #ifdef. | |
3807 Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL. | |
3808 (jm_CHECK_DECLARATIONS): Add strtoul strtoull. | |
3809 (_jm_DECL_HEADERS): Define new function. | |
3810 (jm_CHECK_DECLARATIONS): Require it. | |
3811 | |
2158 | 3812 2000-01-19 Jim Meyering <meyering@lucent.com> |
3813 | |
2161 | 3814 * nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too. |
3815 Use AC_HEADER_TIME. Volker Borchert reported that OpenBSD-2.3/sparc | |
3816 defines `struct timespec' in <sys/time.h> | |
3817 | |
2158 | 3818 * c-bs-a.m4: Remove uses of changequote altogether. |
3819 Thanks to Akim for explaining. | |
3820 | |
2135 | 3821 2000-01-16 Jim Meyering <meyering@lucent.com> |
3822 | |
2159 | 3823 * jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV, |
3824 AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME, | |
3825 jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA, | |
3826 AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME. | |
3827 | |
3828 2000-01-16 Jim Meyering <meyering@lucent.com> | |
3829 | |
2137 | 3830 * c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )' |
3831 because the latter didn't work. | |
3832 | |
2121 | 3833 2000-01-15 Jim Meyering <meyering@lucent.com> |
3834 | |
3835 * jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell. | |
2126 | 3836 (AC_REPLACE_FUNCS): Add memcpy and memset. |
3837 Add these, too: stime strcspn stpcpy strstr strtol strtoul. | |
2131 | 3838 Add strpbrk. |
3839 Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp. | |
2121 | 3840 |
2116 | 3841 2000-01-12 Jim Meyering <meyering@lucent.com> |
3842 | |
3843 * prereq.m4 (jm_PREREQ_CANON_HOST): New macro. | |
3844 (jm_PREREQ): Use it. | |
2118 | 3845 (jm_PREREQ_READUTMP): New macro. |
3846 (jm_PREREQ): Use it. | |
2116 | 3847 |
2113 | 3848 2000-01-11 Paul Eggert <eggert@twinsun.com> |
3849 | |
3850 Quote multibyte characters correctly. | |
2409 | 3851 * c-bs-a.m4: New file. |
3852 * prereq.m4 (jm_PREREQ_QUOTEARG): New macro. | |
2113 | 3853 (jm_PREREQ): Use it. |
3854 | |
3855 2000-01-11 Paul Eggert <eggert@twinsun.com> | |
3856 | |
2409 | 3857 * uintmax_t.m4: Port to autoconf 2.13. |
2113 | 3858 |
2097 | 3859 2000-01-08 Jim Meyering <meyering@ascend.com> |
3860 | |
3861 * strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro. | |
3862 * jm-macros.m4 (jm_FUNC_STRERROR_R): Require it. | |
3863 | |
2068 | 3864 2000-01-04 Jim Meyering <meyering@ascend.com> |
3865 | |
3866 * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from | |
3867 jm_STRUCT_DIRENT_D_TYPE. | |
3206 | 3868 * d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from |
2068 | 3869 jm_STRUCT_DIRENT_D_INO. |
3870 * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from | |
3871 jm_STRUCT_UTIMBUF. | |
3872 * jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/ renamings. | |
2084 | 3873 * utime.m4: Likewise. |
2068 | 3874 |
3875 * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro. | |
3876 * jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it. | |
3877 | |
2067 | 3878 2000-01-03 Paul Eggert <eggert@twinsun.com> |
3879 | |
3880 * nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt | |
3881 (for Solaris 7) and in -lposix4 (for Solaris 2.5.1). | |
3882 | |
2063 | 3883 2000-01-02 Jim Meyering <meyering@ascend.com> |
3884 | |
3885 * search-libs.m4: Escape `$' in $3 of dnl comment. I no longer | |
3886 remember if this is necessary. | |
3887 | |
2059 | 3888 1999-12-26 Jim Meyering <meyering@ascend.com> |
3889 | |
3890 * jm-macros.m4: Use it here. | |
3891 * nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro. | |
3892 | |
2050 | 3893 1999-12-23 Jim Meyering <meyering@ascend.com> |
3894 | |
3895 * jm-macros.m4: Check for clock_gettime (moved from | |
3896 fileutils/configure.in) | |
3897 Check for gettimeofday. | |
3898 | |
2046 | 3899 1999-12-20 Jim Meyering <meyering@ascend.com> |
3900 | |
3901 * strftime.m4: Remove kludge, now that I'm using the fixed | |
3902 autoconf-2.14a-1999-12-20. | |
3903 | |
2039 | 3904 1999-12-19 Jim Meyering <meyering@ascend.com> |
3905 | |
3906 * lstat-slash.m4: New file. | |
3907 * jm-macros.m4: Use the new macro: | |
3908 jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK. | |
3909 | |
2027 | 3910 1999-12-07 Jim Meyering <meyering@ascend.com> |
3911 | |
3912 * perl.m4: Require that File::Compare be available, too. | |
3913 Too many systems seem to lack it. | |
3914 | |
3915 * strftime.m4: Add checks for most of the cpp macros tested in | |
3916 GNU's strftime.c. Prompted by a patch from Paul Eggert. | |
3917 | |
2019 | 3918 1999-11-18 Paul Eggert <eggert@twinsun.com> |
3919 | |
2409 | 3920 * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a |
2019 | 3921 problem with the QNX 4.25 shell, which doesn't propagate exit |
3922 status of failed commands inside shell assignments. | |
3923 | |
2017 | 3924 1999-11-17 Jim Meyering <meyering@ascend.com> |
3925 | |
3926 * gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES. | |
3927 | |
2007 | 3928 1999-11-07 Jim Meyering <meyering@ascend.com> |
3929 | |
3930 * getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE. | |
3931 | |
2001 | 3932 1999-11-06 Jim Meyering <meyering@ascend.com> |
3933 | |
3934 * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro. | |
3935 * jm-macros.m4 (jm_MACROS): Use it here. | |
3936 | |
1994 | 3937 1999-11-05 Jim Meyering <meyering@ascend.com> |
3938 | |
3939 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from configure.in | |
3940 of textutils, fileutils, and sh-utils into this one (shared between | |
3941 those packages) file. | |
1998 | 3942 Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated |
3943 AC_STRUCT_ST_BLKSIZE. | |
1994 | 3944 |
1990 | 3945 1999-11-03 Jim Meyering <meyering@ascend.com> |
3946 | |
3947 * ssize_t.m4: Remove file. No longer needed since the new version of | |
3948 AC_CHECK_TYPE checks includes unistd.h. | |
3949 * jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'. | |
3950 Suggestion from Akim Demaille. | |
3951 | |
1978 | 3952 1999-10-30 Jim Meyering <meyering@ascend.com> |
3953 | |
3954 * uintmax_t.m4: Require 2.14a. Remove backslash before backtick in | |
3955 m4-quoted string. | |
3956 * ls-mntd-fs.m4: Likewise. | |
3957 * jm-macros.m4: Likewise. Also, use AC_TYPE_SSIZE_T instead | |
1979 | 3958 * jm-winsz1.m4: Likewise. |
1978 | 3959 |
3960 * const.m4: Remove file, since the fix made it into the experimental | |
3961 version of autoconf. | |
1984 | 3962 * mktime.m4: Likewise. |
1978 | 3963 |
3964 * check-type.m4: Remove file, now that the latest version of | |
3965 AC_CHECK_TYPE takes a third arg to specify additional #includes. | |
3966 | |
3967 * ssize_t.m4: New file, requires experimental version of autoconf. | |
3968 * jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked | |
3969 AC_CHECK_TYPE. | |
3970 | |
1963 | 3971 1999-10-04 Jim Meyering <meyering@ascend.com> |
3972 | |
3973 * jm-macros.m4: Don't require autoconf-2.14.1. | |
3974 | |
1960 | 3975 1999-09-22 Paul Eggert <eggert@twinsun.com> |
3976 | |
3977 * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC | |
3978 2.95.1 bug with HP-UX 10.20. | |
3979 | |
1947 | 3980 1999-09-17 Jim Meyering <meyering@ascend.com> |
3981 | |
3982 * jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup. | |
3983 Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3 | |
3984 due to missing strdup (against sh-utils-2.0). | |
3985 | |
1932 | 3986 1999-08-29 Jim Meyering <meyering@ascend.com> |
3987 | |
1935 | 3988 * jm-macros.m4: Require jm_BISON. |
1932 | 3989 * bison.m4: New file. |
3990 | |
1927 | 3991 1999-08-17 Paul Eggert <eggert@twinsun.com> |
3992 | |
2409 | 3993 * largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma |
1927 | 3994 in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20. |
3995 | |
1913 | 3996 1999-08-05 Jim Meyering <meyering@ascend.com> |
3997 | |
3998 * getline.m4: Rename test file from conftestdata to conftest.data | |
3999 to avoid conflicts with `conftest' on 8+3 filesystems. | |
4000 Suggestion from Eli Zaretskii. | |
4001 | |
1911 | 4002 1999-08-04 Jim Meyering <meyering@ascend.com> |
4003 | |
4004 * jm-macros.m4: Move a 4-line block of code from the configure.in of | |
4005 fileutils and sh-utils (textutils's getline test was inadequate). | |
4006 (AM_FUNC_GETLINE): Run this test. | |
4007 (AC_CHECK_FUNCS): Check for getdelim. | |
4008 Reported by Bob Proulx. | |
4009 | |
1909 | 4010 1999-08-02 Jim Meyering <meyering@ascend.com> |
4011 | |
4012 * jm-macros.m4: Add a comment. | |
4013 | |
1904 | 4014 1999-08-01 Jim Meyering <meyering@ascend.com> |
4015 | |
4016 * mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from m4. | |
4017 | |
1897 | 4018 1999-08-01 Paul Eggert <eggert@twinsun.com> |
4019 | |
4020 * lfs.m4: Remove this file. | |
4021 * largefile.m4: New file. It contains the old contents of | |
4022 lfs.m4, except that all names with prefix AC_LFS have been | |
4023 changed to use the prefix AC_SYS_LARGEFILE instead, to be | |
4024 compatible with future autoconf versions. Also, some minor m4 | |
4025 quoting problems have been fixed. | |
4026 | |
4027 1999-07-16 Paul Eggert <eggert@twinsun.com> | |
4028 | |
4029 * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure | |
4030 that we can shift, multiply and divide unsigned long long | |
4031 values; Ultrix cc can't do it. | |
4032 | |
4033 1999-07-14 Paul Eggert <eggert@twinsun.com> | |
4034 | |
4035 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether | |
4036 <inttypes.h> defines strtoumax as a macro (and not as a | |
4037 function). | |
4038 | |
1893 | 4039 1999-07-05 Paul Eggert <eggert@twinsun.com> |
4040 | |
1897 | 4041 * gettext.m4 (AM_WITH_NLS): Remove unnecessary lines. |
1893 | 4042 Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl. |
4043 (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting, | |
4044 and simplify the shell code. | |
4045 | |
1899 | 4046 1999-07-03 Paul Eggert <eggert@twinsun.com> |
4047 | |
4048 * mktime.m4: New file, which is a preview of what should appear | |
4049 in the next public autoconf release. | |
4050 | |
1884 | 4051 1999-07-20 Jim Meyering <meyering@ascend.com> |
4052 | |
4053 * jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove. | |
4054 | |
1878 | 4055 1999-07-15 Jim Meyering <meyering@ascend.com> |
4056 | |
3206 | 4057 * jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize. |
1878 | 4058 |
1856 | 4059 1999-05-22 Jim Meyering <meyering@ascend.com> |
4060 | |
4061 * jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr. | |
4062 | |
1852 | 4063 1999-05-20 Jim Meyering <meyering@ascend.com> |
4064 | |
4065 * search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine. | |
4066 Add a colon after each `then' in case $4 is empty. | |
4067 | |
1846 | 4068 1999-05-16 Jim Meyering <meyering@ascend.com> |
4069 | |
4070 * search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS. | |
4071 | |
1839 | 4072 1999-05-10 Jim Meyering <meyering@ascend.com> |
4073 | |
4074 * jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME. | |
4075 | |
4076 * jm-macros.m4: Require 2.14.1, since we use newly-renamed | |
4077 AC_FUNC_MKTIME. | |
4078 | |
1838 | 4079 1999-05-10 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> |
4080 | |
4081 * jm-mktime.m4, putenv.m4: Fix typos in config.h comments. | |
4082 | |
1826 | 4083 1999-05-04 Paul Eggert <eggert@twinsun.com> |
4084 | |
4085 * lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS, | |
4086 not CPPFLAGS, so that linking works correctly in IRIX. | |
4087 | |
1822 | 4088 1999-04-30 Paul Eggert <eggert@twinsun.com> |
4089 | |
4090 * jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2. | |
4091 | |
1796 | 4092 1999-04-20 Jim Meyering <meyering@ascend.com> |
4093 | |
4094 * xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG. | |
1802 | 4095 AC_REPLACE xstroull if necessary. From Paul Eggert. |
4096 (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq. | |
1796 | 4097 |
1794 | 4098 1999-04-20 Paul Eggert <eggert@twinsun.com> |
4099 | |
1799 | 4100 * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long |
4101 long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro. | |
1803 | 4102 * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require |
4103 jm_AC_TYPE_UNSIGNED_LONG_LONG. | |
1796 | 4104 * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro. |
1799 | 4105 |
4106 * lfs.m4: Port to AIX and HP-UX. Support cross-compilation. | |
1794 | 4107 |
1789 | 4108 1999-04-18 Jim Meyering <meyering@ascend.com> |
4109 | |
4110 * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro. | |
4111 * jm-macros.m4: Use it. | |
4112 | |
1774 | 4113 1999-04-06 Jim Meyering <meyering@ascend.com> |
4114 | |
4115 * strftime.m4: Remove test for %f. | |
4116 | |
1765 | 4117 1999-03-29 Jim Meyering <meyering@ascend.com> |
4118 | |
4119 * jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the | |
4120 superset of the AC_TYPE_* checks in the textutils, fileutils, | |
4121 and sh-utils, plus AC_TYPE_PID_T. Paul Eggert suggested adding | |
4122 AC_TYPE_PID_T. | |
4123 | |
1763 | 4124 1999-03-28 Jim Meyering <meyering@ascend.com> |
4125 | |
4126 * jm-macros.m4: Define GNU_PACKAGE here. | |
4127 Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is | |
4128 replaced e.g., in the *.sh files of the sh-utils. | |
4129 | |
1749 | 4130 1999-03-20 Jim Meyering <meyering@ascend.com> |
4131 | |
1751 | 4132 * jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/. |
1749 | 4133 * regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX. |
4134 Don't depend on AM_GLIBC. Suggestions from Alain Magloire. | |
4135 | |
1747 | 4136 1999-03-19 Jim Meyering <meyering@ascend.com> |
4137 | |
4138 * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro. | |
4139 | |
1736 | 4140 1999-03-12 Jim Meyering <meyering@ascend.com> |
4141 | |
4142 * jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED. | |
4143 | |
1726 | 4144 1999-03-07 Jim Meyering <meyering@ascend.com> |
4145 | |
4146 * jm-glibc-io.m4: Use only those *_unlocked macros that are declared. | |
4147 | |
1716 | 4148 1999-02-17 Jim Meyering <meyering@ascend.com> |
4149 | |
4150 * gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of brackets | |
4151 in macro definition. From Eli Zaretskii and Alain Magloire. | |
4152 | |
1706 | 4153 1999-02-07 Jim Meyering <meyering@ascend.com> |
4154 | |
1708 | 4155 * group-member.m4: New file -- extracted from sh-utils' configure.in. |
4156 | |
1706 | 4157 1999-02-05 Eli Zaretskii <eliz@is.elta.co.il> |
1897 | 4158 * gettext.m4: Support DOS-style d:/foo/bar absolute file names. |
1706 | 4159 |
1700 | 4160 1999-02-06 Jim Meyering <meyering@ascend.com> |
4161 | |
1703 | 4162 * chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS. |
1702 | 4163 * fnmatch.m4: Likewise. |
4164 * getgroups.m4: Likewise. | |
4165 * lstat.m4: Likewise. | |
4166 * malloc.m4: Likewise. | |
4167 * putenv.m4: Likewise. | |
4168 * realloc.m4: Likewise. | |
4169 * regex.m4: Likewise. | |
4170 * stat.m4: Likewise. | |
4171 * strftime.m4: Likewise. | |
1706 | 4172 Suggestion from Alain Magloire. |
1702 | 4173 |
1704
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4174 * chown.m4: Use `.$ac_objext', not `.o'. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4175 * fnmatch.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4176 * getgroups.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4177 * getline.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4178 * lstat.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4179 * malloc.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4180 * memcmp.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4181 * putenv.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4182 * realloc.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4183 * regex.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4184 * stat.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4185 * strftime.m4: Likewise. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4186 Suggestion from Alain Magloire. |
e0de75124ce0
Use AC_SUBST(LIBOBJS) since we set LIBOBJS.
Jim Meyering <jim@meyering.net>
parents:
1703
diff
changeset
|
4187 |
1700 | 4188 * jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires |
4189 an argument. | |
4190 | |
4191 * regex.m4: Add a run-time Test for proper operation of | |
4192 re_compile_pattern. | |
4193 | |
1693 | 4194 1999-01-31 Jim Meyering <meyering@ascend.com> |
4195 | |
4196 * getloadavg.m4: Check for locale.h and the function, setlocale. | |
4197 | |
1679 | 4198 1999-01-30 Jim Meyering <meyering@ascend.com> |
4199 | |
1688 | 4200 * check-type.m4: Use 3-arg form of AC_DEFINE. |
4201 | |
1686 | 4202 * jm-mktime.m4: Make this a wrapper around the official AM_FUNC_MKTIME |
4203 rather than my private copy, now that the official one is up to date. | |
4204 * mktime.m4: Remove file. | |
4205 | |
1679 | 4206 * getloadavg.m4: Use 3-arg form of AC_DEFINE. |
1682 | 4207 * uptime.m4: Likewise. |
4208 * uintmax_t.m4: Likewise. | |
1679 | 4209 |
1673 | 4210 1999-01-28 Jim Meyering <meyering@ascend.com> |
4211 | |
4212 * jm-macros.m4: Use jm_AFS. | |
4213 * afs.m4: New file (from fileutils' configure.in). | |
4214 | |
4215 * assert.m4: Use the 3-argument forms of AC_DEFINE* macros. | |
4216 * chown.m4: Likewise. | |
4217 * d-ino.m4: Likewise. | |
4218 * d-type.m4: Likewise. | |
4219 * fnmatch.m4: Likewise. | |
4220 * getgroups.m4: Likewise. | |
4221 * gettext.m4: Likewise. | |
4222 * jm-mktime.m4: Likewise. | |
4223 * jm-winsz2.m4: Likewise. | |
4224 * lcmessage.m4: Likewise. | |
4225 * ls-mntd-fs.m4: Likewise. | |
4226 * malloc.m4: Likewise. | |
4227 * memcmp.m4: Likewise. | |
4228 * putenv.m4: Likewise. | |
4229 * realloc.m4: Likewise. | |
4230 * st_mtim.m4: Likewise. | |
4231 * strftime.m4: Likewise. | |
4232 | |
1654 | 4233 1999-01-16 Jim Meyering <meyering@ascend.com> |
4234 | |
1656 | 4235 * jm-macros.m4 (ARGMATCH_DIE): Define. |
4236 (ARGMATCH_DIE_DECL): Define. | |
1654 | 4237 |
1637 | 4238 1999-01-12 Jim Meyering <meyering@ascend.com> |
4239 | |
4240 * Makefile.am.in: Rewrite to avoid using fmt. | |
4241 Reported by Lars Hecking. | |
4242 | |
1624 | 4243 1999-01-10 Jim Meyering <meyering@ascend.com> |
4244 | |
1629 | 4245 * fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my |
4246 gross kludge. | |
4247 * inttypes_h.m4: Likewise. | |
4248 * lstat.m4: Likewise. | |
4249 * malloc.m4: Likewise. | |
4250 * readdir.m4: Likewise. | |
4251 * realloc.m4: Likewise. | |
4252 * st_dm_mode.m4: Likewise. | |
4253 * stat.m4: Likewise. | |
4254 * utimbuf.m4: Likewise. | |
4255 * utimes.m4: Likewise. | |
4256 | |
4257 * check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the | |
4258 AC_CHECK_FUNCS hack. Now, it's still a hack, but at least the | |
4259 comments in config.h.in are meaningful. | |
4260 | |
4261 * jm-macros.m4: Require autoconf-2.13 here. | |
4262 | |
1624 | 4263 * regex.m4: By default, don't use the included regex.c on systems |
4264 with glibc 2. Suggestion from Uli Drepper. | |
4265 | |
1618 | 4266 1999-01-02 Jim Meyering <meyering@ascend.com> |
4267 | |
4268 * jm-macros.m4: Replace strcasecmp and strncasecmp. | |
4269 | |
1573 | 4270 1998-12-18 Jim Meyering <meyering@ascend.com> |
4271 | |
4272 * Makefile.am.in (Makefile.am): Simplify rule. | |
1574 | 4273 Based on a suggestion from Lars Hecking. |
1573 | 4274 |
1555 | 4275 1998-11-16 Jim Meyering <meyering@ascend.com> |
4276 | |
4277 * lfs.m4: Double-quote the `uname...` expression. | |
4278 | |
4279 1998-11-16 Paul Eggert <eggert@twinsun.com> | |
4280 | |
4281 * lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11. | |
4282 | |
1551 | 4283 1998-11-14 Jim Meyering <meyering@ascend.com> |
4284 | |
4285 * lstat.m4: Correct comment. POSIX does not permit it to succeed. | |
4286 * stat.m4: Likewise. | |
4287 | |
1542 | 4288 1998-11-03 Jim Meyering <meyering@ascend.com> |
4289 | |
4290 * stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG. | |
4291 * lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG. | |
4292 | |
1536 | 4293 1998-10-18 Jim Meyering <meyering@ascend.com> |
4294 | |
4295 * check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro. | |
4296 | |
1531 | 4297 1998-10-17 Jim Meyering <meyering@ascend.com> |
4298 | |
4299 * decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to | |
4300 include, though we still hard-code the `require'-like AC_CHECK_HEADERS | |
4301 calls for those previously hard-coded headers. Instead, take a new | |
4302 parameter. | |
4303 (jm_CHECK_DECLARATIONS): Reflect interface change. | |
4304 * check-decl.m4 (jm_CHECK_DECLS): Likewise. | |
4305 (jm_CHECK_DECL_LOCALTIME_R): New macro. | |
4306 | |
4307 * mktime.m4: Test for spring-forward gap before long-running test. | |
4308 | |
4309 1998-10-14 Jim Meyering <meyering@ascend.com> | |
4310 | |
4311 * mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0" | |
4312 instead of "TZ=America/Vancouver". From Paul Eggert. | |
4313 | |
1522 | 4314 1998-10-11 Jim Meyering <meyering@ascend.com> |
4315 | |
4316 * mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro. | |
1523 | 4317 This adds a test for a recently added compatibility fix for mktime.c. |
1522 | 4318 * jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME. |
4319 | |
1507 | 4320 1998-09-27 Jim Meyering <meyering@ascend.com> |
4321 | |
4322 * jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH. | |
4323 | |
4324 * fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro. Extracted from | |
4325 ../configure.in, including a change from Gordon Matzigkeit to allow | |
4326 cross-compiling for the Hurd. | |
4327 | |
1509 | 4328 * glibc.m4: New file/macro to test for the GNU C Library |
4329 versions 1 and 2. From Gordon Matzigkeit. | |
1507 | 4330 Indent. |
4331 | |
4332 1998-09-21 Jim Meyering <meyering@ascend.com> | |
4333 | |
4334 * chown.m4: Declare locals: before, after. From Andries Brouwer. | |
4335 | |
1483 | 4336 1998-08-18 Paul Eggert <eggert@twinsun.com> |
4337 | |
4338 Port nanosecond-resolution times to UnixWare 2.1.2 and | |
4339 pedantic Solaris 2.6. | |
4340 | |
4341 * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from | |
4342 AC_STRUCT_ST_MTIM. | |
4343 * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): | |
4344 Generate name of ns member, instead of just 1 or undef. | |
4345 Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode. | |
4346 | |
1480 | 4347 1998-08-15 Jim Meyering <meyering@ascend.com> |
4348 | |
4349 * ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file. | |
4350 * check-type.m4: New file. Replacement for AC_CHECK_TYPE. | |
4351 * jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int) | |
4352 instead of jm_TYPE_SSIZE_T. | |
4353 | |
1469 | 4354 1998-08-12 Jim Meyering <meyering@ascend.com> |
4355 | |
4356 * st_dm_mode.m4: New file. From Johan Danielsson. | |
4357 | |
1459 | 4358 1998-08-02 Jim Meyering <meyering@ascend.com> |
4359 | |
4360 * st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM | |
4361 in acconfig.h manually. | |
4362 | |
4363 1998-07-31 Paul Eggert <eggert@twinsun.com> | |
4364 | |
4365 * st_mtim.m4: New file. | |
4366 | |
1452 | 4367 1998-07-28 Jim Meyering <meyering@ascend.com> |
4368 | |
4369 * utimes.m4: Undef stat. | |
4370 | |
1448 | 4371 1998-07-25 Jim Meyering <meyering@ascend.com> |
4372 | |
4373 * utime.m4 (jm_FUNC_UTIME): New file and macro. | |
4374 * utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro. | |
4375 | |
1429 | 4376 1998-07-09 Manfred Hollstein <manfred@s-direktnet.de> |
4377 | |
4378 * chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the | |
4379 uid and gid actually remain unchanged. | |
4380 | |
1427 | 4381 1998-07-07 Jim Meyering <meyering@ascend.com> |
4382 | |
4383 * jm-glibc-io.m4: Remove fclose_unlocked. | |
4384 | |
1424 | 4385 1998-07-04 Jim Meyering <meyering@ascend.com> |
4386 | |
4387 * regex.m4: Use syscmd, ifelse, and sysval. Mainly as an exercise | |
4388 to prove that this macro can be used in packages without regex.c. | |
4389 | |
1411 | 4390 1998-07-02 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> |
4391 | |
4392 * gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h> | |
4393 is to be used. | |
4394 | |
1407 | 4395 1998-07-03 Jim Meyering <meyering@ascend.com> |
4396 | |
1411 | 4397 * gettext.m4: Add -lintl if it's found to be necessary. |
4398 | |
4399 * gettext.m4: New file -- from gettext-0.10.35. | |
4400 * lcmessage.m4: Likewise. | |
4401 * progtest.m4: Likewise. | |
4402 | |
1407 | 4403 * regex.m4 (jm_WITH_REGEX): New file and macro. |
4404 * jm-macros.m4: Require the new macro. | |
4405 | |
1397 | 4406 1998-06-29 Jim Meyering <meyering@ascend.com> |
4407 | |
4408 * fstypename.m4: Include sys/param.h. NetBSD 1.3.1 requires this | |
4409 for the definition of NGROUPS (used in a system header included | |
4410 by sys/mount.h). | |
4411 | |
1384 | 4412 1998-06-28 Jim Meyering <meyering@ascend.com> |
4413 | |
1387 | 4414 * ls-mntd-fs.m4: New file. |
4415 * fstypename.m4: New file. | |
4416 | |
1384 | 4417 * jm-macros.m4: Require the new macro. |
4418 * jm-glibc-io.m4: New file. | |
4419 | |
1370 | 4420 1998-05-19 Jim Meyering <meyering@ascend.com> |
4421 | |
1371 | 4422 * jm-macros.m4: Add jm_FUNC_LCHOWN. |
4423 * lchown.m4: New file. | |
4424 | |
1370 | 4425 * Makefile.am.in: New file. |
4426 * Makefile.am (Makefile.am): Depend on Makefile.am.in. | |
4427 | |
1357 | 4428 1998-05-14 Jim Meyering <meyering@ascend.com> |
4429 | |
4430 * Makefile.am (EXTRA_DIST): Add them. | |
4431 * jm-macros.m4: New file. | |
4432 * utimbuf.m4: New file. | |
4433 | |
1356 | 4434 1998-05-12 Jim Meyering <meyering@ascend.com> |
4435 | |
4436 * Makefile.am (EXTRA_DIST): Add isc-posix.m4. | |
4437 | |
1354 | 4438 1998-05-11 Jim Meyering <meyering@ascend.com> |
4439 | |
4440 * isc-posix.m4: New file. | |
4441 | |
1349 | 4442 1998-05-10 Jim Meyering <meyering@ascend.com> |
4443 | |
4444 * jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date. | |
4445 | |
1346 | 4446 1998-05-09 Jim Meyering <meyering@ascend.com> |
4447 | |
4448 * Makefile.am (EXTRA_DIST): Add ssize_t.m4. | |
4449 (EXTRA_DIST): Remove mktime.m4, now that the new version is included | |
4450 with automake. | |
4451 | |
4452 * ssize_t.m4: New file. | |
4453 * mktime.m4: Remove file -- the new automake has this now. | |
4454 | |
1333 | 4455 1998-04-26 Jim Meyering <meyering@ascend.com> |
4456 | |
4457 * assert.m4: New file. | |
4458 * Makefile.am (EXTRA_DIST): Add assert.m4. | |
4459 | |
1304 | 4460 1998-04-05 Jim Meyering <meyering@ascend.com> |
4461 | |
4462 * prereq.m4 (jm_PREREQ_REGEX): New macro. | |
4463 (jm_PREREQ): Use it here. | |
4464 | |
1286 | 4465 1998-03-23 Jim Meyering <meyering@eng.ascend.com> |
4466 | |
4467 * inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H | |
4468 in acconfig.h. | |
4469 | |
1271 | 4470 1998-03-15 Jim Meyering <meyering@eng.ascend.com> |
4471 | |
1275 | 4472 * prereq.m4: New file. |
1272 | 4473 * error.m4: New file. |
1275 | 4474 * Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4. |
1271 | 4475 |
1237 | 4476 1998-02-07 Jim Meyering <meyering@eng.ascend.com> |
4477 | |
4478 * getline.m4: Don't set am_cv_func_working_getline before the | |
4479 cache-check for the same variable -- that defeated the purpose of | |
4480 the test; the test program was never run. This was a problem only | |
4481 on systems with losing getline functions -- HP-UX 10.20 is one. | |
4482 Reported by Bjorn Helgaas. | |
4483 | |
1234 | 4484 1998-02-06 Jim Meyering <meyering@eng.ascend.com> |
4485 | |
4486 * Makefile.am (EXTRA_DIST): Add perl.m4. | |
4487 | |
1210 | 4488 1998-01-10 Jim Meyering <meyering@na-net.ornl.gov> |
4489 | |
4490 * Makefile.am (EXTRA_DIST): Add const.m4. | |
4491 | |
4492 * const.m4: New file. Use an initializer in this declaration | |
4493 typedef int charset[2]; const charset x; | |
4494 Reported by Bob Glickstein. | |
4495 | |
1177 | 4496 1997-12-21 Jim Meyering <meyering@na-net.ornl.gov> |
4497 | |
4498 * chown.m4: Fix reversed types on -1 args to chown. | |
4499 From Kaveh Ghazi. | |
4500 | |
1161 | 4501 1997-12-14 Jim Meyering <meyering@na-net.ornl.gov> |
4502 | |
1163 | 4503 * check-decl.m4: s/DECLARATION_/DECL_/g. |
1164 | 4504 Add lseek and memchr. |
1163 | 4505 |
1161 | 4506 * decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g. |
1899 | 4507 T.E.Dickey <dickey@clark.net> said that some older preprocessors |
1161 | 4508 have a 20-character limit on names. |
4509 | |
1145 | 4510 1997-11-30 Jim Meyering <meyering@na-net.ornl.gov> |
4511 | |
4512 * inttypes_h.m4: New file. | |
4513 * uintmax_t.m4: New file. | |
4514 * Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4. | |
5168 | 4515 |
5887
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
4516 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 |
5168 | 4517 Free Software Foundation, Inc. |
4518 Copying and distribution of this file, with or without modification, | |
5887
cfb8f3b61b7f
Fix a few glitches in getlogin_r.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5882
diff
changeset
|
4519 are permitted provided the copyright notice and this notice are preserved. |