va-args: new module
[gnulib.git] / ChangeLog
1 2009-12-23  Eric Blake  <ebb9@byu.net>
2
3         va-args: new module
4         * modules/va-args: New file.
5         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
6         * MODULES.html.sh (Core language properties): Mention it.
7
8         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
9         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
10         named alias for __attribute__((__unused__)).
11         * lib/chown.c: Update client.
12         * lib/fchmodat.c: Likewise.
13         * lib/fts.c: Likewise.
14         * lib/getdate.y: Likewise.
15         * lib/getgroups.c: Likewise.
16         * lib/getopt.c: Likewise.
17         * lib/getugroups.c: Likewise.
18         * lib/mkdir.c: Likewise.
19         * lib/mkfifo.c: Likewise.
20         * lib/mkfifoat.c: Likewise.
21         * lib/mknod.c: Likewise.
22         * lib/mknodat.c: Likewise.
23         * lib/readlink.c: Likewise.
24         * lib/se-context.in.h: Likewise.
25         * lib/se-selinux.in.h: Likewise.
26         * lib/sockets.c: Likewise.
27         * lib/symlink.c: Likewise.
28         * lib/symlinkat.c: Likewise.
29         * lib/unicodeio.c: Likewise.
30         * lib/unistr.h: Likewise.
31         * tests/test-areadlink.c: Likewise.
32         * tests/test-areadlinkat.c: Likewise.
33         * tests/test-filenamecat.c: Likewise.
34         * tests/test-fseeko.c: Likewise.
35         * tests/test-ftello.c: Likewise.
36         * tests/test-getdate.c: Likewise.
37         * tests/test-getgroups.c: Likewise.
38         * tests/test-gethostname.c: Likewise.
39         * tests/test-quotearg.c: Likewise.
40         * tests/test-version-etc.c: Likewise.
41         * tests/test-xalloc-die.c: Likewise.
42         * tests/test-xfprintf-posix.c: Likewise.
43         * tests/test-xprintf-posix.c: Likewise.
44         * tests/test-xvasprintf.c: Likewise.
45
46         tests: avoid compiler warnings
47         * tests/test-fcntl.c (main): Delete unused parameters.
48         * tests/test-freopen-safer.c (main): Likewise.
49         * tests/test-xalloc-die.c (main): Mark unused parameters.
50         * tests/test-fseeko.c (main): Likewise.
51         * tests/test-ftello.c (main): Likewise.
52         * tests/test-nanosleep.c (main): Avoid declaration warning.
53         * tests/test-sleep.c (main): Likewise.
54         * tests/test-unsetenv.c (main): Silence warning about string
55         literal.
56         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
57
58 2009-12-23  Bruno Haible  <bruno@clisp.org>
59
60         * tests/test-localename.c (test_locale_name): New function, extracted
61         from main. Also test mixed situations.
62         (test_locale_name_posix, test_locale_name_environ,
63         test_locale_name_default): New functions.
64         (main): Invoke them all.
65         * modules/localename-tests (configure.ac): Test for newlocale.
66
67 2009-12-23  Bruno Haible  <bruno@clisp.org>
68
69         unistd: Ensure getcwd gets declared before being overridden.
70         * lib/unistd.in.h: Conditionally include <io.h>.
71
72 2009-12-22  Bruno Haible  <bruno@clisp.org>
73
74         wchar: Diagnose broken combination of glibc and gcc versions and flags.
75         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
76         (gl_WCHAR_H): Invoke it.
77         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
78         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
79         Reported by Karl Berry <karl@freefriends.org>.
80
81 2009-12-22  Eric Blake  <ebb9@byu.net>
82
83         math, unistd: avoid redundant includes
84         * lib/math.in.h (isnan): No need to re-include <math.h>.
85         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
86
87         getsubopt: work around cygwin bug
88         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
89         avoid conflicting with system getsubopt.
90         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
91         bug.
92
93         getopt: synchronize from glibc
94         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
95         parameter order.  Adjust all callers.
96         (_getopt_internal_r, main): Adjust quoting in error messages.
97         Drop considerations for outdated POSIX 1003.2 error message.
98         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
99         callers.
100         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
101
102         test-getopt: test stderr behavior
103         * modules/getopt-posix-tests (Depends-on): Add dup2.
104         * tests/test-getopt.c (ASSERT): Avoid stderr.
105         (main): Move stderr to a temporary file.
106         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
107         Instead, add parameter to inform caller if output occurred.
108         (test_getopt): Adjust all existing tests to expect silence, and
109         add new tests of leading ":".
110         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
111         glibc shortcomings with leading "-:" or "+:" in optstring.
112         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
113         Likewise.
114         * doc/posix-functions/getopt.texi (getopt): Likewise.
115
116         test-getopt: enhance test
117         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
118         supports optind=0.
119         * tests/test-getopt.c (OPTIND_MIN): Move...
120         * tests/test-getopt.h (OPTIND_MIN): ...here.
121         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
122         Require that optind=0 works, since modern BSD supports it in
123         addition to optreset, and since coreutils expects it.
124         (test_getopt_long_only): New test.
125         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
126         glibc shortcomings with 'W;', and enforcement of optind=0.
127         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
128         Likewise.
129
130 2009-12-21  Bruno Haible  <bruno@clisp.org>
131
132         localename: Improvements for MacOS X and Cygwin.
133         * lib/localename.h (gl_locale_name_environ): New declaration.
134         * lib/localename.c (gl_locale_name_environ): New function, extracted from
135         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
136         (gl_locale_name_posix): Invoke it.
137         (gl_locale_name_default): Add comments. Use Windows native API also on
138         Cygwin.
139
140 2009-12-21  Bruno Haible  <bruno@clisp.org>
141
142         Update list of Win32 locale ids.
143         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
144         (LANG_SAMI): Renamed from LANG_SAAMI.
145         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
146         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
147         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
148         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
149         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
150         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
151         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
152         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
153         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
154         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
155         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
156         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
157         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
158         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
159         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
160         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
161         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
162         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
163         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
164         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
165         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
166         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
167         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
168         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
169         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
170         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
171         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
172         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
173         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
174         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
175         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
176         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
177         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
178         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
179         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
180         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
181         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
182         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
183         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
184         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
185         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
186         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
187         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
188         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
189         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
190         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
191         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
192         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
193         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
194         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
195         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
196         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
197         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
198         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
199         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
200         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
201         Add more languages and countries for Sami, Sorbian. Add more countries
202         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
203         for Pashto. Change country for Syriac, Tswana.
204
205 2009-12-21  Eric Blake  <ebb9@byu.net>
206
207         test-utimens: avoid spurious failure
208         * tests/test-chown.h (nap): Factor...
209         * tests/nap.h: ...into new file.
210         * tests/test-lchown.h (nap): Avoid duplication.
211         * tests/test-utimens-common.h (nap): Use shared implementation,
212         necessary on file systems with 1-second resolution.
213         * modules/chown-tests (Files): Include new file.
214         * modules/fdutimensat-tests (Files): Likewise.
215         * modules/futimens-tests (Files): Likewise.
216         * modules/lchown-tests (Files): Likewise.
217         * modules/openat-tests (Files): Likewise.
218         * modules/utimens-tests (Files): Likewise.
219         * modules/utimensat-tests (Files): Likewise.
220
221 2009-12-19  Eric Blake  <ebb9@byu.net>
222
223         futimens, utimensat: work around Linux bug
224         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
225         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
226         * lib/utimensat.c (rpl_utimensat): Work around it.
227         * lib/futimens.c (rpl_futimens): Adjust comment.
228
229         utimens: work around Linux ctime bug
230         * lib/utimens.c (detect_ctime_bug): New helper function.
231         (update_timespec): Differentiate between workaround needed for
232         this bug vs. what is needed for systems that lack utimensat.
233         (fdutimens, lutimens): Work around bug.
234
235         utimens: check for ctime update
236         * tests/test-utimens-common.h (check_ctime): Define.
237         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
238         * tests/test-futimens.h (test_futimens): Likewise.
239         * tests/test-lutimens.h (test_lutimens): Likewise.
240         * doc/posix-functions/futimens.texi (futimens): Document the bug.
241         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
242
243 2009-12-19  Bruno Haible  <bruno@clisp.org>
244
245         dprintf-posix: Check against memory leak fixed on 2009-12-15.
246         * tests/test-dprintf-posix2.sh: New file.
247         * tests/test-dprintf-posix2.c: New file.
248         * modules/dprintf-posix-tests (Files): Add them.
249         (configure.ac): Check for getrlimit and setrlimit.
250         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
251
252 2009-12-19  Bruno Haible  <bruno@clisp.org>
253
254         fprintf-posix: Check against memory leak fixed on 2009-12-15.
255         * tests/test-fprintf-posix3.sh: New file.
256         * tests/test-fprintf-posix3.c: New file.
257         * modules/fprintf-posix-tests (Files): Add them.
258         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
259
260 2009-12-19  Eric Blake  <ebb9@byu.net>
261
262         dirfd: fix prototype
263         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
264         * lib/dirfd.c (dirfd): Likewise.
265
266         canonicalize: reduce memory usage
267         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
268         allocation to size.
269         Reported by Solar Designer <solar@openwall.com>.
270
271 2009-12-19  Bruno Haible  <bruno@clisp.org>
272
273         New module attribute 'Applicability'.
274         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
275         * gnulib-tool: New option --extract-applicability.
276         (func_usage): Document it.
277         (sed_extract_prog): Recognize it.
278         (func_get_applicability): New function.
279         (func_import): Generalize handling of 'link-warning' module.
280         * modules/link-warning (Applicability): New section.
281         * modules/arg-nonnull (Applicability): New section.
282         Repoted by Simon Josefsson <simon@josefsson.org>.
283
284 2009-12-19  Bruno Haible  <bruno@clisp.org>
285
286         fflush: tweak
287         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
288         * lib/fseeko.c (rpl_fseeko): Likewise.
289
290 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
291
292         * lib/gl_list.h: Fix typo in comment.
293
294 2009-12-16  Eric Blake  <ebb9@byu.net>
295
296         fcntl: use to simplify other modules
297         * modules/cloexec (Depends-on): Add fcntl.
298         * modules/fchdir (Depends-on): Likewise.
299         * modules/fd-safer-flag (Depends-on): Likewise.
300         * modules/unistd-safer (Depends-on): Likewise.
301         * modules/dup3 (configure.ac): Set module indicator.
302         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
303         missing.
304         * lib/fchdir.c (_gl_register_dup): Fix comment.
305         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
306         * lib/dup-safer.c (dup_safer): Likewise.
307         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
308         * lib/dup3.c (dup3): Likewise.
309         * tests/test-fchdir.c (main): Enhance test.
310         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
311
312         fcntl: port portions of fcntl to mingw
313         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
314         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
315         replacement for mingw.
316         * modules/fcntl (Description): Update.
317         (Depends-on): Add dup2.
318         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
319         * modules/fcntl-h (Makefile.am): Substitute it.
320         * lib/fcntl.in.h (fcntl): Update declaration.
321         (F_DUPFD, F_GETFD): New macros, when needed.
322         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
323         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
324         * tests/test-fcntl.c (check_flags, main): Enhance test for items
325         we now guarantee.
326
327         fcntl: work around cygwin bug in F_DUPFD
328         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
329         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
330         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
331         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
332         * doc/posix-functions/fcntl.texi (fcntl): Document it.
333
334         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
335         * modules/fcntl (Files): List new files.
336         (configure.ac): Run a test.
337         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
338         * lib/fcntl.c (rpl_fcntl): Likewise.
339         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
340         (gl_FCNTL_H): Always replace fcntl.h.
341         * modules/fcntl-h (Makefile.am): Substitute witnesses.
342         * lib/fcntl.in.h (fcntl): Declare replacement.
343         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
344         needed, plus a witness.
345         * doc/posix-functions/fcntl.texi (fcntl): Document this.
346         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
347         * tests/test-fcntl.c: New file.
348         * modules/fcntl-tests: Likewise.
349
350         binary-io: avoid potential compilation warning
351         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
352         directives.
353
354         fflush: avoid compilation error on NetBSD
355         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
356         between off_t and fpos_t, since the latter is sometimes a struct.
357         * lib/fseeko.c (rpl_fseeko): Likewise.
358         Reported by Alexander Nasonov <alnsn@yandex.ru>.
359
360 2009-12-15  Eric Blake  <ebb9@byu.net>
361
362         fcntl-h, stdio, sys_ioctl: fix declarations
363         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
364         function must not take arguments.
365         * lib/sys_ioctl.in.h (ioctl): Likewise.
366         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
367         (open): Add a link warning.
368
369 2009-12-15  Jim Meyering  <meyering@redhat.com>
370
371         areadlink, areadlink-with-size: relax license to LGPLv2+
372         * modules/areadlink (License): Relax to LGPLv2+.
373         * modules/areadlink-with-size (License): Likewise.
374
375 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
376             Bruno Haible  <bruno@clisp.org>
377
378         *printf: Fix memory leak.
379         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
380         * lib/vfprintf.c (vfprintf): Likewise.
381         * lib/dprintf.c (dprintf): Likewise.
382         * lib/vdprintf.c (vdprintf): Likewise.
383
384 2009-12-14  Eric Blake  <ebb9@byu.net>
385
386         accept4: adjust module dependencies
387         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
388
389         utimens: one more try at avoiding compiler warning
390         * lib/utimens.c (lutimens): Lower scope of result.
391
392 2009-12-13  Bruno Haible  <bruno@clisp.org>
393
394         Move the malloc checking from module 'list' to new module 'xlist'.
395         * modules/xlist: New file.
396         * lib/gl_xlist.h: New file.
397         * lib/gl_xlist.c: New file.
398         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
399         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
400         gl_list_add_last, gl_list_add_before, gl_list_add_after,
401         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
402         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
403         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
404         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
405         gl_sortedlist_nx_add): New declarations.
406         (struct gl_list_implementation): Rename and change methods accordingly.
407         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
408         (gl_list_nx_create): Renamed from gl_list_create.
409         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
410         (gl_list_nx_set_at): Renamed from gl_list_set_at.
411         (gl_list_nx_add_first): Renamed from gl_list_add_first.
412         (gl_list_nx_add_last): Renamed from gl_list_add_last.
413         (gl_list_nx_add_before): Renamed from gl_list_add_before.
414         (gl_list_nx_add_after): Renamed from gl_list_add_after.
415         (gl_list_nx_add_at): Renamed from gl_list_add_at.
416         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
417         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
418         gl_list_create_empty.
419         (gl_list_nx_create): Renamed from gl_list_create.
420         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
421         (gl_list_nx_set_at): Renamed from gl_list_set_at.
422         (gl_list_nx_add_first): Renamed from gl_list_add_first.
423         (gl_list_nx_add_last): Renamed from gl_list_add_last.
424         (gl_list_nx_add_before): Renamed from gl_list_add_before.
425         (gl_list_nx_add_after): Renamed from gl_list_add_after.
426         (gl_list_nx_add_at): Renamed from gl_list_add_at.
427         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
428         * lib/gl_array_list.c: Don't include xalloc.h.
429         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
430         NULL upon out-of-memory.
431         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
432         out-of-memory.
433         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
434         Change return type to 'int'.
435         (gl_array_nx_set_at): Renamed from gl_array_set_at.
436         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
437         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
438         upon out-of-memory.
439         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
440         upon out-of-memory.
441         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
442         upon out-of-memory.
443         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
444         upon out-of-memory.
445         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
446         out-of-memory.
447         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
448         Update.
449         (gl_array_list_implementation): Update.
450         * lib/gl_carray_list.c: Don't include xalloc.h.
451         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
452         Return NULL upon out-of-memory.
453         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
454         out-of-memory.
455         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
456         Change return type to 'int'.
457         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
458         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
459         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
460         upon out-of-memory.
461         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
462         upon out-of-memory.
463         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
464         out-of-memory.
465         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
466         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
467         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
468         Update.
469         (gl_carray_list_implementation): Update.
470         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
471         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
472         gl_linked_create_empty. Return NULL upon out-of-memory.
473         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
474         out-of-memory.
475         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
476         Change return type to 'int'. Return -1 upon out-of-memory.
477         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
478         out-of-memory.
479         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
480         upon out-of-memory.
481         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
482         upon out-of-memory.
483         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
484         NULL upon out-of-memory.
485         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
486         upon out-of-memory.
487         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
488         out-of-memory.
489         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
490         Update.
491         * lib/gl_linked_list.c: Don't include xalloc.h.
492         (gl_linked_list_implementation): Update.
493         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
494         (add_to_bucket): Change return type to 'int'.
495         (gl_linkedhash_list_implementation): Update.
496         * lib/gl_anytree_list1.h (free_subtree): New function.
497         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
498         gl_tree_create_empty. Return NULL upon out-of-memory.
499         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
500         Change return type to 'int'. Return -1 upon out-of-memory.
501         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
502         out-of-memory.
503         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
504         (gl_tree_remove_node): New function, moved here from
505         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
506         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
507         Update.
508         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
509         malloc, not xmalloc. Return NULL upon out-of-memory.
510         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
511         out-of-memory.
512         (gl_tree_remove_node_from_tree): New function, extracted from
513         gl_tree_remove_node.
514         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
515         upon out-of-memory.
516         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
517         out-of-memory.
518         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
519         upon out-of-memory.
520         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
521         upon out-of-memory.
522         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
523         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
524         not xmalloc. Return NULL upon out-of-memory.
525         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
526         out-of-memory.
527         (gl_tree_remove_node_from_tree): New function, extracted from
528         gl_tree_remove_node.
529         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
530         upon out-of-memory.
531         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
532         out-of-memory.
533         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
534         upon out-of-memory.
535         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
536         upon out-of-memory.
537         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
538         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
539         gl_anytree_list1.h before gl_anyavltree_list2.h.
540         (gl_avltree_list_implementation): Update.
541         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
542         gl_anytree_list1.h before gl_anyavltree_list2.h.
543         (gl_rbtree_list_implementation): Update.
544         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
545         Change return type to 'int'. Return -1 upon out-of-memory. Use
546         __builtin_expect.
547         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
548         (gl_avltreehash_list_implementation): Update.
549         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
550         (gl_rbtreehash_list_implementation): Update.
551         * modules/array-list (Depends-on): Remove xalloc.
552         * modules/carray-list (Depends-on): Likewise.
553         * modules/linked-list (Depends-on): Likewise.
554         * modules/linkedhash-list (Depends-on): Likewise.
555         * modules/avltree-list (Depends-on): Likewise.
556         * modules/rbtree-list (Depends-on): Likewise.
557         * modules/avltreehash-list (Depends-on): Likewise.
558         * modules/rbtreehash-list (Depends-on): Likewise.
559
560         * modules/xsublist: New file.
561         * lib/gl_xsublist.h: New file.
562         * lib/gl_xsublist.c: New file.
563         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
564         (gl_sublist_nx_create): New declaration.
565         * lib/gl_sublist.c: Don't include xalloc.h.
566         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
567         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
568         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
569         Change return type to 'int'. Return -1 upon out-of-memory.
570         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
571         upon out-of-memory.
572         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
573         NULL upon out-of-memory.
574         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
575         upon out-of-memory.
576         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
577         NULL upon out-of-memory.
578         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
579         NULL upon out-of-memory.
580         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
581         upon out-of-memory.
582         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
583         (gl_sublist_list_implementation): Update.
584         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
585         upon out-of-memory.
586         * modules/sublist (Depends-on): Remove xalloc.
587
588         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
589         * tests/test-carray_list.c: Likewise.
590         * tests/test-linked_list.c: Likewise.
591         * tests/test-linkedhash_list.c: Likewise.
592         * tests/test-avltree_list.c: Likewise.
593         * tests/test-rbtree_list.c: Likewise.
594         * tests/test-avltreehash_list.c: Likewise.
595         * tests/test-rbtreehash_list.c: Likewise.
596         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
597         * modules/carray-list-tests (Makefile.am): Likewise.
598         * modules/linked-list-tests (Makefile.am): Likewise.
599         * modules/linkedhash-list-tests (Makefile.am): Likewise.
600         * modules/avltree-list-tests (Makefile.am): Likewise.
601         * modules/rbtree-list-tests (Makefile.am): Likewise.
602         * modules/avltreehash-list-tests (Makefile.am): Likewise.
603         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
604
605         * NEWS: Mention the changes.
606
607         * lib/clean-temp.c: Include gl_xlist.h.
608         * modules/clean-temp (Depends-on): Add xlist.
609
610         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
611         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
612
613         * tests/test-array_oset.c: Include gl_xlist.h.
614         * modules/array-oset-tests (Depends-on): Add xlist.
615
616         Reported by José E. Marchesi <jemarch@gnu.org>.
617
618 2009-12-13  Bruno Haible  <bruno@clisp.org>
619
620         Move the malloc checking from module 'oset' to new module 'xoset'.
621         * modules/xoset: New file.
622         * lib/gl_xoset.h: New file.
623         * lib/gl_xoset.c: New file.
624         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
625         declarations.
626         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
627         (struct gl_oset_implementation): Rename and change methods accordingly.
628         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
629         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
630         'int'. Mark as __warn_unused_result__.
631         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
632         gl_oset_create_empty.
633         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
634         'int'.
635         * lib/gl_array_oset.c: Don't include xalloc.h.
636         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
637         malloc, not xmalloc.
638         (grow): Change return type to 'int'. Don't call xalloc_die.
639         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
640         to 'int'.
641         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
642         'int'.
643         (gl_array_oset_implementation): Update.
644         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
645         gl_tree_create_empty.
646         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
647         'int'.
648         * lib/gl_avltree_oset.c: Don't include xalloc.h.
649         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
650         xmalloc.
651         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
652         not xmalloc.
653         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
654         xmalloc.
655         (gl_avltree_oset_implementation): Update.
656         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
657         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
658         xmalloc.
659         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
660         not xmalloc.
661         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
662         xmalloc.
663         (gl_rbtree_oset_implementation): Update.
664         * modules/array-oset (Depends-on): Remove xalloc.
665         * modules/avltree-oset (Depends-on): Likewise.
666         * modules/rbtree-oset (Depends-on): Likewise.
667         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
668         * tests/test-avltree_oset.c: Likewise.
669         * tests/test-rbtree_oset.c: Likewise.
670         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
671         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
672         * modules/rbtree-oset-tests (Makefile.am): Likewise.
673         * NEWS: Mention the change.
674
675 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
676
677         maint.mk: allow a project to override release-prep commands
678         * top/maint.mk (alpha, beta, stable): Move release-preparatory
679         commands into a new rule.
680         (release-prep): New rule.
681         (release-prep-hook): New overridable variable.
682
683 2009-12-13  Bruno Haible  <bruno@clisp.org>
684
685         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
686
687 2009-12-13  Jim Meyering  <meyering@redhat.com>
688
689         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
690         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
691
692 2009-12-12  Bruno Haible  <bruno@clisp.org>
693
694         duplocale: Tweak.
695         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
696
697 2009-12-12  Karl Berry  <karl@gnu.org>
698
699         * config/srclist.txt (strtoll.c): tab changes, no more sync.
700
701 2009-12-12  Bruno Haible  <bruno@clisp.org>
702
703         * m4/po.m4: Undo incorrect untabification.
704
705 2009-12-12  Bruno Haible  <bruno@clisp.org>
706
707         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
708         * modules/c-strtod (Depends-on): Add locale.
709         * modules/c-strtold (Depends-on): Likewise.
710
711 2009-12-12  Bruno Haible  <bruno@clisp.org>
712
713         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
714
715 2009-12-11  Eric Blake  <ebb9@byu.net>
716
717         setenv: relax requirement in light of POSIX ruling
718         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
719         not NULL.
720         * tests/test-setenv.c (main): Relax test.
721         * tests/test-unsetenv.c (main): Likewise.
722         * doc/posix-functions/setenv.texi (setenv): Document this.
723         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
724
725 2009-12-11  Bruno Haible  <bruno@clisp.org>
726
727         New module 'fd-safer-flag'.
728         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
729         * lib/dup-safer.c (dup_safer_flag): Remove function.
730         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
731         * lib/fd-safer.c (fd_safer_flag): Remove function.
732         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
733         * modules/cloexec (configure.ac): Drop indicator macro.
734         * modules/fd-safer-flag: New file.
735         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
736         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
737         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
738
739 2009-12-11  Bruno Haible  <bruno@clisp.org>
740
741         Tests for module 'nl_langinfo'.
742         * modules/nl_langinfo-tests: New file.
743         * tests/test-nl_langinfo.sh: New file.
744         * tests/test-nl_langinfo.c: New file.
745
746         New module 'nl_langinfo'.
747         * lib/nl_langinfo.c: New file.
748         * m4/nl_langinfo.m4: New file.
749         * modules/nl_langinfo: New file.
750         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
751
752 2009-12-11  Bruno Haible  <bruno@clisp.org>
753
754         Tests for module 'langinfo'.
755         * modules/langinfo-tests: New file.
756         * tests/test-langinfo.c: New file.
757
758         New module 'langinfo'.
759         * lib/langinfo.in.h: New file.
760         * m4/langinfo_h.m4: New file.
761         * modules/langinfo: New file.
762         * doc/posix-headers/langinfo.texi: Mention the new module.
763
764 2009-12-11  Bruno Haible  <bruno@clisp.org>
765
766         * lib/config.charset: Untabify.
767
768 2009-12-11  Bruno Haible  <bruno@clisp.org>
769
770         * modules/unistd-safer (configure.ac): Drop indicator macro.
771
772 2009-12-11  Bruno Haible  <bruno@clisp.org>
773
774         Move pipe2-safer code to its own file.
775         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
776         * lib/pipe-safer.c (pipe2_safer): Remove function.
777         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
778         (Makefile.am): Add it to lib_SOURCES.
779
780 2009-12-10  Bruno Haible  <bruno@clisp.org>
781
782         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
783
784 2009-12-10  Bruno Haible  <bruno@clisp.org>
785
786         Declare which arguments expect non-NULL values, for GCC and clang.
787         * build-aux/arg-nonnull.h: New file.
788         * modules/arg-nonnull: New file.
789         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
790         (inet_ntop, inet_pton): Use it.
791         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
792         (closedir, dirfd, opendir, scandir, alphasort): Use it.
793         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
794         (open, openat): Use it.
795         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
796         (fnmatch): Use it.
797         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
798         (getopt, getopt_long, getopt_long_only): Use it.
799         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
800         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
801         Use it.
802         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
803         (iconv_open): Use it.
804         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
805         (strtoimax, strtoumax): Use it.
806         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
807         (duplocale): Use it.
808         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
809         (frexp, frexpl): Use it.
810         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
811         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
812         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
813         (tsearch, tfind, tdelete, twalk): Use it.
814         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
815         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
816         sigpending): Use it.
817         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
818         (posix_spawn, posix_spawnp, posix_spawnattr_init,
819         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
820         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
821         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
822         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
823         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
824         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
825         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
826         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
827         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
828         Use it.
829         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
830         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
831         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
832         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
833         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
834         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
835         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
836         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
837         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
838         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
839         strtoull, unsetenv): Use it.
840         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
841         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
842         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
843         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
844         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
845         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
846         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
847         (strcasecmp, strncasecmp): Use it.
848         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
849         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
850         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
851         rpl_setsockopt): Use it.
852         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
853         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
854         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
855         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
856         (gettimeofday): Use it.
857         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
858         (times): Use it.
859         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
860         (uname): Use it.
861         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
862         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
863         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
864         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
865         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
866         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
867         unlinkat, write): Use it.
868         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
869         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
870         * lib/argv-iter.h: Include arg-nonnull.h.
871         (_ATTRIBUTE_NONNULL_): Remove macro.
872         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
873         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
874         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
875         optimization.
876         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
877         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
878         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
879         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
880         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
881         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
882         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
883         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
884         * modules/arpa_inet (Depends-on): Add arg-nonnull.
885         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
886         * modules/dirent (Depends-on): Add arg-nonnull.
887         (Makefile.am): Insert arg-nonnull.h into dirent.h.
888         * modules/fcntl-h (Depends-on): Add arg-nonnull.
889         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
890         * modules/fnmatch (Depends-on): Add arg-nonnull.
891         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
892         * modules/getopt-posix (Depends-on): Add arg-nonnull.
893         (Makefile.am): Insert arg-nonnull.h into getopt.h.
894         * modules/glob (Depends-on): Add arg-nonnull.
895         (Makefile.am): Insert arg-nonnull.h into glob.h.
896         * modules/iconv_open (Depends-on): Add arg-nonnull.
897         (Makefile.am): Insert arg-nonnull.h into iconv.h.
898         * modules/inttypes (Depends-on): Add arg-nonnull.
899         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
900         * modules/locale (Depends-on): Add arg-nonnull.
901         (Makefile.am): Insert arg-nonnull.h into locale.h.
902         * modules/math (Depends-on): Add arg-nonnull.
903         (Makefile.am): Insert arg-nonnull.h into math.h.
904         * modules/netdb (Depends-on): Add arg-nonnull.
905         (Makefile.am): Insert arg-nonnull.h into netdb.h.
906         * modules/search (Depends-on): Add arg-nonnull.
907         (Makefile.am): Insert arg-nonnull.h into search.h.
908         * modules/signal (Depends-on): Add arg-nonnull.
909         (Makefile.am): Insert arg-nonnull.h into signal.h.
910         * modules/spawn (Depends-on): Add arg-nonnull.
911         (Makefile.am): Insert arg-nonnull.h into spawn.h.
912         * modules/stdio (Depends-on): Add arg-nonnull.
913         (Makefile.am): Insert arg-nonnull.h into stdio.h.
914         * modules/stdlib (Depends-on): Add arg-nonnull.
915         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
916         * modules/string (Depends-on): Add arg-nonnull.
917         (Makefile.am): Insert arg-nonnull.h into string.h.
918         * modules/strings (Depends-on): Add arg-nonnull.
919         (Makefile.am): Insert arg-nonnull.h into strings.h.
920         * modules/sys_socket (Depends-on): Add arg-nonnull.
921         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
922         * modules/sys_stat (Depends-on): Add arg-nonnull.
923         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
924         * modules/sys_time (Depends-on): Add arg-nonnull.
925         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
926         * modules/sys_times (Depends-on): Add arg-nonnull.
927         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
928         * modules/sys_utsname (Depends-on): Add arg-nonnull.
929         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
930         * modules/time (Depends-on): Add arg-nonnull.
931         (Makefile.am): Insert arg-nonnull.h into time.h.
932         * modules/unistd (Depends-on): Add arg-nonnull.
933         (Makefile.am): Insert arg-nonnull.h into unistd.h.
934         * modules/wchar (Depends-on): Add arg-nonnull.
935         (Makefile.am): Insert arg-nonnull.h into wchar.h.
936         * modules/argv-iter (Depends-on): Add arg-nonnull.
937         * tests/test-canonicalize.c (null_ptr): New function.
938         (main): Use it.
939         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
940         (main): Use it.
941         * tests/test-memmem.c (null_ptr): New function.
942         (main): Use it.
943         Reported by Jim Meyering.
944
945 2009-12-10  Bruno Haible  <bruno@clisp.org>
946
947         Use spaces for indentation, not tabs.
948         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
949         * m4/*.m4: Untabify.
950         * build-aux/*.h: Untabify.
951         * tests/**/*.[hc]: Untabify.
952         * README: New section "Indent with spaces, not TABs", based on
953         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
954         * NEWS: Mention the change.
955
956 2009-12-10  Bruno Haible  <bruno@clisp.org>
957
958         pty test: Fix link error.
959         * modules/pty-tests (Makefile.am): Add the default LDADD value to
960         test_pty_LDADD.
961
962 2009-12-07  Simon Josefsson  <simon@josefsson.org>
963
964         * modules/pty: New file.
965         * modules/pty-tests: New file.
966         * m4/pty.m4: New file.
967         * tests/test-pty.c: New file.
968         * doc/glibc-headers/pty.texi: Modified.
969         * doc/glibc-functions/forkpty.texi: Modified.
970         * doc/glibc-functions/openpty.texi: Modified.
971
972 2009-12-10  Bruno Haible  <bruno@clisp.org>
973
974         Avoid syntax error in C++ mode.
975         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
976
977 2009-12-10  Bruno Haible  <bruno@clisp.org>
978
979         Use sed with option -e.
980         * gnulib-tool (func_version, func_emit_copyright_notice,
981         func_emit_initmacro_end, func_import, func_create_testdir): Pass
982         option -e to sed.
983         * modules/link-warning (Makefile.am): Likewise.
984
985 2009-12-10  Jim Meyering  <meyering@redhat.com>
986
987         mgetgroups: do not write bytes beyond end of malloc'd buffer
988         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
989         username, we call getgroups with a one-element-shorter buffer,
990         but still told it the length was original, max_n_groups.
991
992 2009-12-09  Eric Blake  <ebb9@byu.net>
993
994         cloexec: relax license
995         * modules/cloexec (Maintainer): Add myself.
996         (License): Use LGPL, not GPL.
997
998         link-warning: optimize generation
999         * modules/link-warning (Makefile.am): Reduce process usage.
1000
1001 2009-12-09  Bruno Haible  <bruno@clisp.org>
1002
1003         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
1004         workaround was added on 2009-11-17.
1005
1006 2009-12-09  Jim Meyering  <meyering@redhat.com>
1007             Bruno Haible  <bruno@clisp.org>
1008
1009         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
1010         * modules/link-warning (Makefile.am): Make the comment-removing sed
1011         command more robust in the face of bootstrap-prepended comment lines.
1012
1013 2009-12-09  Bruno Haible  <bruno@clisp.org>
1014
1015         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
1016         most one group.
1017
1018 2009-12-09  Simon Josefsson <simon@josefsson.org>
1019             Bruno Haible  <bruno@clisp.org>
1020
1021         * build-aux/link-warning.h: Add copyright notice.
1022         * modules/link-warning (Makefile.am): Generate link-warning.h from
1023         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
1024         * NEWS: Mention change in link-warning module.
1025         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
1026         * modules/dirent (Makefile.am): Add dependency to dirent.h.
1027         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
1028         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
1029         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
1030         * modules/math (Makefile.am): Add dependency to math.h.
1031         * modules/search (Makefile.am): Add dependency to search.h.
1032         * modules/signal (Makefile.am): Add dependency to signal.h.
1033         * modules/spawn (Makefile.am): Add dependency to spawn.h.
1034         * modules/stdio (Makefile.am): Add dependency to stdio.h.
1035         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
1036         * modules/string (Makefile.am): Add dependency to string.h.
1037         * modules/strings (Makefile.am): Add dependency to strings.h.
1038         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
1039         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
1040         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
1041         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
1042         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
1043         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
1044         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
1045         * modules/unistd (Makefile.am): Add dependency to unistd.h.
1046         * modules/wchar (Makefile.am): Add dependency to wchar.h.
1047
1048 2009-12-09  Bruno Haible  <bruno@clisp.org>
1049
1050         fchdir: Optimize away rpl_fstat when possible.
1051         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
1052         REPLACE_OPEN_DIRECTORY.
1053         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
1054
1055 2009-12-09  Bruno Haible  <bruno@clisp.org>
1056
1057         * lib/fchdir.c: Update comment.
1058
1059 2009-12-09  Bruno Haible  <bruno@clisp.org>
1060
1061         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
1062
1063 2009-12-08  Eric Blake  <ebb9@byu.net>
1064
1065         fchdir: avoid memory leak on re-registration.
1066         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
1067
1068 2009-12-08  Jim Meyering  <meyering@redhat.com>
1069
1070         init.sh: avoid Solaris 10 /bin/sh portability problem
1071         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
1072         sourced script:
1073           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
1074           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
1075           bar
1076         tests/init.sh relied on that, accepting a --set-path=DIR argument,
1077         and two tests used that idiom.
1078         * tests/init.sh: Update suggested usage comments.
1079         (path_prepend_): New function, to be used in place
1080         of the --src-path=DIR option.
1081         (setup_): Move PATH-prepending code into path_prepend_.
1082         * tests/test-pread.sh: Adapt to new usage.
1083         * tests/test-xalloc-die.sh: Likewise.
1084
1085 2009-12-08  Simon Josefsson  <simon@josefsson.org>
1086
1087         * doc/gnulib.texi (Glibc pty.h): Add.
1088         * doc/glibc-functions/forkpty.texi: Add.
1089         * doc/glibc-functions/openpty.texi: Add.
1090         Suggested by Bruno Haible.
1091
1092 2009-12-08  Eric Blake  <ebb9@byu.net>
1093
1094         fchdir: fix logic bugs
1095         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
1096         * tests/test-fchdir.c (main): Enhance test.
1097         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
1098         is in use.
1099
1100         dup2: fix logic bugs
1101         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
1102         REPLACE_DUP2 to decide when rpl_dup2 is needed.
1103         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
1104         exists.
1105         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
1106
1107 2009-12-07  Eric Blake  <ebb9@byu.net>
1108
1109         unlink: fix m4 detection
1110         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
1111
1112         unistd-safer: add unit test
1113         * modules/unistd-safer-tests: New file.
1114         * tests/test-dup-safer.c: Likewise.
1115         * tests/test-cloexec.c (setmode): Avoid compiler warning.
1116         * tests/test-dup2.c (setmode): Likewise.
1117         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
1118
1119         cloexec: preserve text vs. binary across dup_cloexec
1120         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
1121         mode.
1122         * modules/dup2-tests (Depends-on): Add binary-io.
1123         * modules/cloexec-tests (Depends-on): Likewise.
1124         * tests/test-dup2.c (setmode, is_mode): New helpers.
1125         (main): Add tests that translation mode is preserved.
1126         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
1127         Reported by Bruno Haible.
1128
1129         mgetgroups: reduce duplicate listings
1130         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
1131         resulting array.
1132         * tests/test-chown.h (test_chown): Simplify client.
1133         * tests/test-lchown.h (test_lchown): Likewise.
1134
1135 2009-12-06  Bruno Haible  <bruno@clisp.org>
1136
1137         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
1138         value.
1139
1140 2009-12-06  Bruno Haible  <bruno@clisp.org>
1141
1142         * lib/progname.c: Include stdio.h, stdlib.h.
1143         (set_program_name): Reject a NULL argument.
1144
1145 2009-12-05  Eric Blake  <ebb9@byu.net>
1146
1147         pipe2-safer: new module
1148         * modules/pipe2-safer: New file.
1149         * lib/unistd-safer.h (pipe2_safer): New prototype.
1150         * lib/unistd--.h (pipe2): New wrapper.
1151         * lib/pipe-safer.c (pipe2_safer): New function.
1152         * modules/pipe (Depends-on): Add pipe2-safer.
1153         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
1154
1155         stdlib-safer: preserve cloexec flag for mkostemp[s]
1156         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
1157         fd_safer_flag.
1158
1159         unistd-safer: allow preservation of cloexec status via flag
1160         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
1161         prototypes.
1162         * lib/dup-safer.c (dup_safer_flag): New function.
1163         * lib/fd-safer.c (fd_safer_flag): Likewise.
1164         * modules/cloexec (configure.ac): Set witness.
1165
1166         test-dup2: enhance test
1167         * modules/dup2-tests (Depends-on): Add cloexec.
1168         * tests/test-dup2.c (main): Enhance test.
1169
1170         cloexec: add dup_cloexec
1171         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
1172         header and comments.
1173         * lib/cloexec.c (set_cloexec_flag): Add comments.
1174         (dup_cloexec): New function, with mingw implementation borrowed
1175         from...
1176         * lib/w32spawn.h (dup_noinherit): ...here.
1177         * modules/execute (Depends-on): Add cloexec.
1178         * modules/pipe (Depends-on): Likewise.
1179         * modules/cloexec (Depends-on): Add dup2.
1180         * modules/cloexec-tests (Files): New file.
1181         * tests/test-cloexec.c: Likewise.
1182
1183         test-xalloc-die: fix test for mingw
1184         * modules/xalloc-die-tests (Files): Add tests/init.sh.
1185         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
1186         directory and .exe suffix off argv[0] output.
1187
1188         test-fseeko: fix test for mingw
1189         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
1190         than undefining fseek, so test will pass on mingw.
1191
1192 2009-12-05  Bruno Haible  <bruno@clisp.org>
1193
1194         * lib/progname.h (set_program_name): Clarify specification.
1195         * lib/progname.c (set_program_name): Likewise.
1196         Reported by Jim Meyering.
1197
1198 2009-12-05  Jim Meyering  <meyering@redhat.com>
1199
1200         maint.mk: backslash-escape parens in default regexp
1201         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
1202         backslash-escape the literal parentheses.
1203
1204         maint.mk: news-date-check: use grep -E
1205         * top/maint.mk (today): Define a Make variable, not a...
1206         (news-date-check): ...shell variable.
1207         (news-date-regexp): Use the Make variable.
1208         Use grep's -E option.  Change the failing diagnostic to mention
1209         the variable, $(news-date-regexp).
1210
1211 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
1212
1213         maintainer-makefile: allow customization of NEWS entry format
1214         * top/maint.mk (news-date-regexp): New overridable variable.
1215         (news-date-check): Use it.
1216
1217 2009-12-04  Eric Blake  <ebb9@byu.net>
1218
1219         mgetgroups: add xgetgroups, and avoid ENOSYS failures
1220         * lib/mgetgroups.h (xgetgroups): New prototype.
1221         * lib/mgetgroups.c (xgetgroups): New wrapper.
1222         (mgetgroups): Handle ENOSYS.
1223         * modules/mgetgroups (Depends-on): Add realloc.
1224         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
1225
1226         mgetgroups: avoid argument promotion issues with -1
1227         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
1228         for invalid gid_t.
1229         * tests/test-chown.h (getegid, test_chown): Likewise.
1230         * tests/test-lchown.h (getegid, test_lchown): Likewise.
1231
1232 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
1233
1234         exclude: Fix header file problems.
1235         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
1236
1237 2009-12-01  Jim Meyering  <meyering@redhat.com>
1238
1239         fts: fts_open: do not let an empty string cause immediate failure
1240         This is required in support of GNU rm, for which the command
1241         "rm A '' B" must process and remove both A and B, in spite of
1242         the empty string argument.
1243         * lib/fts.c (fts_open): Do not let the presence of an empty string
1244         cause fts_open to fail immediately.  Most fts-using tools must be
1245         able to process all arguments, in order, and can be expected to
1246         diagnose such arguments themselves.
1247
1248 2009-11-30  Eric Blake  <ebb9@byu.net>
1249
1250         utimens: fix compilation error
1251         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
1252         Declare variable at right scope.
1253
1254 2009-11-29  Jim Meyering  <meyering@redhat.com>
1255
1256         bootstrap: handle perl-5.11's changed --version output
1257         * build-aux/bootstrap (get_version): Handle perl separately,
1258         since perl-5.11's --version output is different.
1259
1260 2009-11-28  Jim Meyering  <meyering@redhat.com>
1261
1262         userspec: depend on the inttostr module, too
1263         * modules/userspec (Depends-on): Add inttostr.
1264
1265         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
1266         * lib/userspec.c (parse_with_separator): Do not accept a user ID
1267         number of MAXUID when it evaluates to (uid_t) -1.
1268         Likewise for group ID.  Reported by Matt McCutchen in
1269         <http://savannah.gnu.org/bugs/?28113>
1270
1271         userspec: reformat to use spaces, not TABs
1272         * lib/userspec.c: Expand TABs to spaces.
1273         Add Emacs' "indent-tabs-mode: nil" hint.
1274
1275 2009-11-27  Eric Blake  <ebb9@byu.net>
1276
1277         getopt-gnu: flush out another BSD bug
1278         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
1279         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
1280         flush out BSD bug.
1281         * tests/test-getopt.h (test_getopt): End lists with NULL.
1282         * tests/test-getopt_long.h (test_getopt_long): Likewise.
1283         (test_getopt_long_posix): Enhance test.
1284         * modules/getopt-posix-tests (Depends-on): Add stdbool.
1285         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
1286         getopt-gnu.
1287         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
1288         Likewise.
1289
1290 2009-11-27  Simon Josefsson  <simon@josefsson.org>
1291
1292         * modules/idpriv-droptemp-tests (Notice): Fix text.
1293
1294 2009-11-27  Jim Meyering  <meyering@redhat.com>
1295
1296         test-xalloc-die: avoid spurious failure due to libtool argv difference
1297         In a libtool-enabled project, this test would fail due to a difference
1298         in the emitted program name, e.g.,
1299         -test-xalloc-die: memory exhausted
1300         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
1301         Use program to avoid that.
1302         * modules/xalloc-die-tests (Depends-on): Add progname.
1303         * tests/test-xalloc-die.c: Include progname.h".
1304         (program_name): Remove decl.
1305         (main): Call set_program_name.
1306         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
1307
1308 2009-11-26  Richard Jones  <rjones@redhat.com>
1309
1310         w32sock: leave win32 error in place.
1311         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
1312
1313 2009-11-26  Eric Blake  <ebb9@byu.net>
1314
1315         init.sh: suggest to use skip_ and fail_ functions in comments
1316         * tests/init.sh: Add a sentence.
1317
1318 2009-11-25  Bruno Haible  <bruno@clisp.org>
1319
1320         init.sh: add documentation in comments
1321         * tests/init.sh: Add some developer and user documentation.
1322
1323 2009-11-26  Jim Meyering  <meyering@redhat.com>
1324
1325         init.sh: accommodate even those who specify bogus srcdir manually
1326         * tests/init.sh: Normally, srcdir is guaranteed by automake and
1327         configure-time tests to be sanitized, so that there is no need to
1328         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
1329         (with no double quotes) suffices.  However, since tests may be
1330         invoked manually, and since you may explicitly set srcdir to the
1331         name of a directory containing spaces, do quote its uses here.
1332         * tests/test-pread.sh: Likewise.
1333         Suggested by Bruno Haible.
1334
1335         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
1336         * tests/test-pread.sh: Write no data into the pipe, because
1337         test-pread actually reads none.  This avoids a diagnostic,
1338         "bash: echo: write error: Broken pipe", that arises in the unusual
1339         event something is ignoring SIGPIPE, and might be interpreted
1340         as some sort of failure.  Reported by Bruno Haible.
1341
1342 2009-11-25  Jim Meyering  <meyering@redhat.com>
1343
1344         test-pread: cover failure with ESPIPE and EINVAL
1345         * tests/test-pread.c (main): Test for failure, too.
1346         * tests/test-pread.sh: Invoke with stdin on a pipe.
1347         Suggested by Eric Blake.
1348
1349         pread: improvement and fix
1350         * modules/pread (Depends-on): Depend on lseek, for portability to
1351         e.g., mingw.  Suggested by Eric Blake.
1352         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
1353
1354         unistd.in.h: correct declaration of pread
1355         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
1356         Reported by Richard W.M. Jones.
1357
1358         test-pread.sh: distribute the test script
1359         * modules/pread-tests (Files): Include test-pread.sh.
1360
1361         test-pread.sh: clean up
1362         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
1363         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
1364         That is unnecessary, since it's always ".".
1365         Suggestion from Eric Blake.
1366
1367         test-pread.sh: make executable
1368         * tests/test-pread.sh: Set executable bit.
1369         Reported by Eric Blake.
1370
1371         correct typo in test-pread.sh
1372         * tests/test-pread.sh: Add #! line.
1373
1374         test pread
1375         * tests/test-pread.c: New file.
1376         * tests/test-pread.sh: Likewise.
1377         * modules/pread-tests: Likewise.
1378
1379         pread: new module
1380         * modules/pread: New file.
1381         * lib/unistd.in.h (pread): Define/declare.
1382         * lib/pread.c (pread): New file.
1383         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
1384         * modules/unistd (Makefile.am): Substitute witnesses.
1385         * doc/posix-functions/pread.texi (pread): Update.
1386         * MODULES.html.sh: Add pread.
1387
1388 2009-11-25  Jim Meyering  <meyering@redhat.com>
1389
1390         tests/init.sh: new file to be used via most *.sh tests
1391         * tests/init.sh: New file.
1392
1393 2009-11-25  Eric Blake  <ebb9@byu.net>
1394
1395         utimens: work around older Linux failure with symlinks
1396         * lib/utimens.c (lutimensat_works_really): New variable.
1397         (fdutimens, lutimens): Use it to manage kernels that support
1398         nanosecond times on files, but not on symlinks.
1399         Reported by OndÅ™ej Vašík.
1400
1401         utimes: fix configure grammar
1402         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
1403
1404 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
1405
1406         regex: Fix fastmap for multibyte character ranges.
1407         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
1408         characters when a multibyte character range is included.
1409
1410 2009-11-22  Andy Wingo  <wingo@pobox.com>
1411
1412         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
1413         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
1414
1415 2009-11-24  Bruno Haible  <bruno@clisp.org>
1416
1417         doc: Most *_l functions exist in MacOS X 10.5.
1418         * doc/posix-functions/duplocale.texi: Update platforms list.
1419         * doc/posix-functions/freelocale.texi: Likewise.
1420         * doc/posix-functions/newlocale.texi: Likewise.
1421         * doc/posix-functions/uselocale.texi: Likewise.
1422         * doc/posix-functions/isalnum_l.texi: Likewise.
1423         * doc/posix-functions/isalpha_l.texi: Likewise.
1424         * doc/posix-functions/isblank_l.texi: Likewise.
1425         * doc/posix-functions/iscntrl_l.texi: Likewise.
1426         * doc/posix-functions/isdigit_l.texi: Likewise.
1427         * doc/posix-functions/isgraph_l.texi: Likewise.
1428         * doc/posix-functions/islower_l.texi: Likewise.
1429         * doc/posix-functions/isprint_l.texi: Likewise.
1430         * doc/posix-functions/ispunct_l.texi: Likewise.
1431         * doc/posix-functions/isspace_l.texi: Likewise.
1432         * doc/posix-functions/isupper_l.texi: Likewise.
1433         * doc/posix-functions/iswalnum_l.texi: Likewise.
1434         * doc/posix-functions/iswalpha_l.texi: Likewise.
1435         * doc/posix-functions/iswblank_l.texi: Likewise.
1436         * doc/posix-functions/iswcntrl_l.texi: Likewise.
1437         * doc/posix-functions/iswctype_l.texi: Likewise.
1438         * doc/posix-functions/iswdigit_l.texi: Likewise.
1439         * doc/posix-functions/iswgraph_l.texi: Likewise.
1440         * doc/posix-functions/iswlower_l.texi: Likewise.
1441         * doc/posix-functions/iswprint_l.texi: Likewise.
1442         * doc/posix-functions/iswpunct_l.texi: Likewise.
1443         * doc/posix-functions/iswspace_l.texi: Likewise.
1444         * doc/posix-functions/iswupper_l.texi: Likewise.
1445         * doc/posix-functions/iswxdigit_l.texi: Likewise.
1446         * doc/posix-functions/isxdigit_l.texi: Likewise.
1447         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
1448         * doc/posix-functions/strcasecmp_l.texi: Likewise.
1449         * doc/posix-functions/strcoll_l.texi: Likewise.
1450         * doc/posix-functions/strfmon_l.texi: Likewise.
1451         * doc/posix-functions/strftime_l.texi: Likewise.
1452         * doc/posix-functions/strncasecmp_l.texi: Likewise.
1453         * doc/posix-functions/strxfrm_l.texi: Likewise.
1454         * doc/posix-functions/tolower_l.texi: Likewise.
1455         * doc/posix-functions/toupper_l.texi: Likewise.
1456         * doc/posix-functions/towctrans_l.texi: Likewise.
1457         * doc/posix-functions/towlower_l.texi: Likewise.
1458         * doc/posix-functions/towupper_l.texi: Likewise.
1459         * doc/posix-functions/wcscoll_l.texi: Likewise.
1460         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
1461         * doc/posix-functions/wctrans_l.texi: Likewise.
1462         * doc/posix-functions/wctype_l.texi: Likewise.
1463         * doc/glibc-functions/strptime_l.texi: Likewise.
1464         * doc/glibc-functions/strtod_l.texi: Likewise.
1465         * doc/glibc-functions/strtof_l.texi: Likewise.
1466         * doc/glibc-functions/strtol_l.texi: Likewise.
1467         * doc/glibc-functions/strtold_l.texi: Likewise.
1468         * doc/glibc-functions/strtoll_l.texi: Likewise.
1469         * doc/glibc-functions/strtoul_l.texi: Likewise.
1470         * doc/glibc-functions/strtoull_l.texi: Likewise.
1471         * doc/glibc-functions/wcsftime_l.texi: Likewise.
1472         * doc/glibc-functions/wcstod_l.texi: Likewise.
1473         * doc/glibc-functions/wcstof_l.texi: Likewise.
1474         * doc/glibc-functions/wcstol_l.texi: Likewise.
1475         * doc/glibc-functions/wcstold_l.texi: Likewise.
1476         * doc/glibc-functions/wcstoll_l.texi: Likewise.
1477         * doc/glibc-functions/wcstoul_l.texi: Likewise.
1478         * doc/glibc-functions/wcstoull_l.texi: Likewise.
1479
1480 2009-11-24  Bruno Haible  <bruno@clisp.org>
1481
1482         duplocale: Fix logic bug.
1483         * lib/duplocale.c: Don't include <langinfo.h>.
1484         (_NL_LOCALE_NAME): Remove macro.
1485         (rpl_duplocale): Use setlocale instead of nl_langinfo.
1486         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
1487
1488 2009-11-23  Jim Meyering  <meyering@redhat.com>
1489
1490         test-update-copyright: don't hard-code /usr/bin/perl
1491         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
1492         perl to print the current year.  Gilles Espinasse reported that
1493         the replaced use of perl was hard-coded as /usr/bin/perl.
1494
1495 2009-11-23  Bruno Haible  <bruno@clisp.org>
1496
1497         duplocale: Add support for glibc 2.3.x.
1498         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
1499
1500 2009-11-22  Bruno Haible  <bruno@clisp.org>
1501
1502         vasnprintf: Tiny optimization.
1503         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
1504         MacOS X.
1505
1506 2009-11-22  Bruno Haible  <bruno@clisp.org>
1507
1508         Tests for module 'duplocale'.
1509         * modules/duplocale-tests: New file.
1510         * tests/test-duplocale.c: New file.
1511
1512         New module 'duplocale'.
1513         * m4/duplocale.m4: New file.
1514         * lib/locale.in.h (duplocale): New declaration.
1515         * lib/duplocale.c: New file.
1516         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
1517         gl_LOCALE_H_DEFAULTS): New macros.
1518         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
1519         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
1520         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
1521         REPLACE_DUPLOCALE.
1522         * modules/duplocale: New file.
1523         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
1524
1525 2009-11-22  Bruno Haible  <bruno@clisp.org>
1526
1527         * modules/locale-tests (configure.ac): Test for newlocale function.
1528         * tests/test-locale.c: When the system has extended locale functions,
1529         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
1530
1531         locale: Make locale_t available when possible.
1532         * lib/locale.in.h: Include <xlocale.h> when it exists.
1533         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
1534         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
1535         * modules/locale (Depends-on): Add extensions.
1536         (Makefile.am): Also substitute HAVE_XLOCALE_H.
1537         * doc/posix-headers/locale.texi: Document the problem with locale_t.
1538
1539 2009-11-22  Bruno Haible  <bruno@clisp.org>
1540
1541         Add comments.
1542         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
1543         invocation.
1544         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1545         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
1546         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1547
1548 2009-11-22  Bruno Haible  <bruno@clisp.org>
1549
1550         error: account for the possibility of freopen (stdout).
1551         * lib/error.c: Include <unistd.h>.
1552         (flush_stdout): New function, extracted from error and error_at_line.
1553         Determine stdout's fd dynamically.
1554         (error, error_at_line): Invoke flush_stdout.
1555         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
1556         * modules/error (Depends-on): Add unistd.
1557
1558 2009-11-22  Bruno Haible  <bruno@clisp.org>
1559
1560         diffseq: Add comment.
1561         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
1562
1563 2009-11-22  Jim Meyering  <meyering@redhat.com>
1564
1565         c-stack: avoid defining an unused static function
1566         * lib/c-stack.c (find_stack_direction): Do not define this function
1567         when it will not be used.
1568
1569         diffseq: avoid spurious gcc warnings
1570         * lib/diffseq.h (IF_LINT2): Define.
1571         (compareseq): Use it to initialize two members of "part".
1572         This avoids two used-uninitialized warnings.
1573
1574 2009-11-21  Jim Meyering  <meyering@redhat.com>
1575
1576         c-stack: avoid "ignoring return value of `write'" warning
1577         * lib/c-stack.c: Include "ignore-value.h".
1578         (die): Explicitly ignore each write return value.
1579         * modules/c-stack (Depends-on): Add ignore-value.
1580
1581 2009-11-21  Bruno Haible  <bruno@clisp.org>
1582
1583         diffseq: reduce scope of variable 'best'.
1584         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
1585         variable, earlier used for two different purposes.
1586
1587 2009-11-21  Jim Meyering  <meyering@redhat.com>
1588
1589         diffseq: remove useless assignment to "best"
1590         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
1591         assignment.  At that point "best" is already guaranteed to be zero.
1592
1593 2009-11-20  Eric Blake  <ebb9@byu.net>
1594
1595         build: mention ftp redirector in release announcements
1596         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
1597         values that used to come from cfg.mk; mention FTP redirect URL.
1598         * build-aux/announce-gen: Mention the mirror list.
1599         Suggested by Karl Berry.
1600
1601         nanosleep: improve port to mingw
1602         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
1603         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
1604         LIB_NANOSLEEP, but only when needed.
1605         * modules/select (Link): Document LIBSOCKET.
1606         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
1607         enough.
1608
1609         nanosleep: work around cygwin bug
1610         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
1611         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
1612         bug.
1613         (getnow): Delete, not needed.
1614         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
1615         LIB_CLOCK_GETTIME.
1616         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
1617         clock-time, gettime.
1618         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
1619         bug.
1620         * modules/nanosleep-tests: New test.
1621         * tests/test-nanosleep.c: New file.
1622
1623         sleep: work around cygwin bug
1624         * lib/sleep.c (rpl_sleep): Work around the bug.
1625         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
1626         (gl_PREREQ_SLEEP): Delete unused macro.
1627         * modules/sleep (Depends-on): Add verify.
1628         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1629         * modules/unistd (Makefile.am): Substitute witness.
1630         * lib/unistd.in.h (sleep): Update prototype.
1631         * doc/posix-functions/sleep.texi (sleep): Document the bug.
1632         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
1633         * modules/sleep-tests (Depends-on): Check for alarm.
1634
1635 2009-11-20  Jim Meyering  <meyering@redhat.com>
1636
1637         maint.mk: improve sc_prohibit_magic_number_exit
1638         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
1639         so it does not match uses like System.exit(1).
1640         Add comments showing how to correct all offenders.
1641
1642 2009-11-19  Eric Blake  <ebb9@byu.net>
1643
1644         xalloc-die-tests: add missing library
1645         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
1646
1647         test-xvasprintf: silence compiler warnings
1648         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
1649         empty string from gcc.
1650
1651 2009-11-19  Jim Meyering  <meyering@redhat.com>
1652
1653         xfreopen: new module, from coreutils
1654         * modules/xfreopen: New module.
1655         * lib/xfreopen.c: New file.
1656         * lib/xfreopen.h: New file.
1657         * MODULES.html.sh (File stream based Input/Output"): Add it.
1658
1659 2009-11-19  Eric Blake  <ebb9@byu.net>
1660
1661         manywarnings: depend on warnings
1662         * modules/manywarnings (Depends-on): Add warnings.
1663
1664         build: avoid compiler warnings
1665         * lib/select.c (rpl_select): Delete unused variable.
1666         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
1667
1668 2009-11-18  Eric Blake  <ebb9@byu.net>
1669
1670         tests: avoid false negative with --with-packager
1671         * tests/test-version-etc.sh: Discard packager information.
1672         * tests/test-argp-version-etc-1.sh: Likewise.
1673         Reported by Mike Frysinger.
1674
1675         utimens: fix regression on Solaris
1676         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
1677         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
1678         can only change fd timestamps via futimesat.  Instead, use an
1679         additional witness macro to avoid BSD bug.
1680         Reported by Jim Meyering.
1681
1682 2009-11-17  Eric Blake  <ebb9@byu.net>
1683
1684         usleep: use it to simplify tests
1685         * modules/stat-time-tests (Depends-on): Add usleep.
1686         (configure.ac): Drop usleep check.
1687         * modules/chown-tests (Depends-on, configure.ac): Likewise.
1688         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
1689         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
1690         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
1691         * modules/openat-tests (Depends-on, configure.ac): Likewise.
1692         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
1693         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
1694         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
1695         Likewise.
1696         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
1697         * tests/test-lchown.h (nap): Likewise.
1698         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
1699         * tests/test-stat-time.c (nap): Likewise.
1700         * tests/test-utimens-common.h (nap): Update comments.
1701
1702         usleep: new module
1703         * modules/usleep: New file.
1704         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
1705         * lib/usleep.c (usleep): Likewise.
1706         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
1707         * modules/unistd (Makefile.am): Substitute witnesses.
1708         * lib/unistd.in.h (usleep): Add declaration.
1709         * doc/pastposix-functions/usleep.texi (usleep): Document this.
1710         * MODULES.html.sh (Date and time): Likewise.
1711         * modules/usleep-tests (Depends-on): New test.
1712         * tests/test-usleep.c: New file.
1713
1714         chown: work around OpenBSD bug
1715         * lib/chown.c (rpl_chown): Work around the bug.
1716         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
1717         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
1718         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
1719         * modules/chown (Depends-on): Add stdbool.
1720         * modules/lchown (Depends-on): Likewise.
1721         * doc/posix-functions/chown.texi (chown): Document the bug.
1722         * doc/posix-functions/lchown.texi (lchown): Likewise.
1723         * tests/test-lchown.h (test_chown): Relax test.
1724
1725         mkstemp: avoid conflict with C++ keyword template
1726         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
1727         * lib/mkostemp.c (mkostemp): Likewise.
1728         * lib/mkostemps.c (mkostemps): Likewise.
1729         * lib/mkstemp.c (mkstemp): Likewise.
1730         * lib/mkstemps.c (mkstemps): Likewise.
1731
1732         xalloc-die-tests: optimize
1733         * tests/test-xalloc-die.sh: Reduce number of processes.
1734
1735 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1736
1737         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
1738         patch from ludo@gnu.org (Ludovic Courtès).
1739
1740 2009-11-17  Jim Meyering  <meyering@redhat.com>
1741
1742         version-etc: use proper license string
1743         * modules/version-etc (License): Use LGPL, not LGPLv3+.
1744         * modules/version-etc-fsf: Likewise.
1745
1746 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1747
1748         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
1749         printed to stdout.  Deal with EOL differences.
1750
1751 2009-11-17  Eric Blake  <ebb9@byu.net>
1752
1753         unsetenv: work around Solaris bug
1754         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
1755         * lib/unsetenv.c (rpl_unsetenv): Work around it.
1756         Reported by Jim Meyering.
1757
1758         vasnprintf: avoid compiler warnings
1759         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
1760         variables.
1761         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
1762
1763 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1764
1765         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
1766         settings since xalloc-die is no longer the self test,
1767         xalloc-die.sh is.
1768
1769 2009-11-17  Jim Meyering  <meyering@redhat.com>
1770
1771         test-xalloc-die.sh: make the code agree with the commit log
1772         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
1773         at the end, just in case you happen to have a test-xalloc-die
1774         program in some other PATH directory.
1775
1776         test-xalloc-die.sh: fix a portability bug
1777         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
1778         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
1779         Otherwise, argv[0] (as often seen in diagnostics) would be too
1780         system-dependent, sometimes with, and sometimes without the leading "./".
1781
1782         version-etc-fsf: relax license to LGPLv3+
1783         * modules/version-etc-fsf (License): Relax license.
1784
1785 2009-11-16  Eric Blake  <ebb9@byu.net>
1786
1787         xalloc-die-tests: avoid printing null pointer
1788         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
1789         shell script.
1790         * tests/test-xalloc-die.c (program_name): Declare.
1791         * tests/test-xalloc-die.sh (tmpfiles): New file.
1792
1793         setenv, unsetenv: work around various bugs
1794         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
1795         (setenv) [HAVE_SETENV]: Work around bugs.
1796         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
1797         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
1798         for bugs.
1799         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
1800         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
1801         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
1802         * modules/stdlib (Makefile.am): Update substitutions.
1803         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
1804         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
1805         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
1806         * modules/setenv-tests: New test.
1807         * modules/unsetenv-tests: Likewise.
1808         * tests/test-setenv.c: New file.
1809         * tests/test-unsetenv.c: Likewise.
1810
1811 2009-11-16  Jim Meyering  <meyering@redhat.com>
1812
1813         version-etc: relax license to LGPLv3+
1814         * modules/version-etc (License): Relax license.
1815
1816         better AC_REQUIRE expanded-before-required-warning avoidance
1817         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
1818         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
1819         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
1820         which is no longer needed.
1821
1822 2009-11-16  Eric Blake  <ebb9@byu.net>
1823
1824         test-freading: clean up temporary file
1825         * tests/test-freading.c (main): Remove file on success, and use
1826         ASSERT more liberally.
1827         Reported by Jim Meyering.
1828
1829 2009-11-16  Jim Meyering  <meyering@redhat.com>
1830
1831         avoid new AC_REQUIRE expanded-before-required warnings
1832         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
1833         merely using it.
1834         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
1835         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
1836
1837 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1838
1839         * tests/test-xalloc-die.c: New file.
1840         * modules/xalloc-die-tests: New file.
1841         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
1842         XFAIL_TESTS so it can be appended by modules.
1843
1844 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1845
1846         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
1847         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
1848
1849 2009-11-14  Eric Blake  <ebb9@byu.net>
1850
1851         fnmatch: avoid compiler warning
1852         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
1853         to silence compiler warning about mismatch signedness in ?:.
1854         Reported by Robert Millan.
1855
1856         intprops: add double-inclusion guard
1857         * lib/intprops.h: Allow idempotent includes.
1858         Suggested by Bruce Korb.
1859
1860         openat: detect Solaris fchownat bug
1861         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
1862         penalizing glibc chownat when only lchownat is broken.
1863         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
1864         trailing slash bugs.
1865         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
1866         * modules/openat-tests (Files): Include more files.
1867         (Depends-on): Add mgetgroups, sleep, stat-time.
1868         (configure.ac): Add additional checks.
1869         (Makefile.am): Build new test.
1870         * tests/test-fchownat.c: New file.
1871
1872         lchown: detect Solaris and FreeBSD bug
1873         * lib/lchown.c (rpl_lchown): Work around bug.
1874         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
1875         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1876         * modules/unistd (Makefile.am): Populate it.
1877         * lib/unistd.in.h (lchown): Update declaration.
1878         * doc/posix-functions/lchown.texi (lchown): Document the bug.
1879         * modules/lchown-tests: New file.
1880         * tests/test-lchown.h (test_lchown): Likewise.
1881         * tests/test-lchown.c (main): Likewise.
1882
1883         chown: detect Solaris and FreeBSD bug
1884         * lib/chown.c (rpl_chown): Work around bug.
1885         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
1886         (gl_PREREQ_CHOWN): Delete.
1887         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1888         * modules/unistd (Makefile.am): Populate it.
1889         * lib/unistd.in.h (chown): Update declaration.
1890         * lib/lchown.c (chown): Update client.
1891         * modules/lchown (Depends-on): Add lstat.
1892         * doc/posix-functions/chown.texi (chown): Document the bug.
1893         * doc/posix-functions/getgroups.texi (getgroups): Document
1894         getgroups pitfall.
1895         * modules/chown-tests: New file.
1896         * tests/test-chown.h (test_chown): Likewise.
1897         * tests/test-chown.c (main): Likewise.
1898
1899 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
1900
1901         gnulib-tool: correctly detect absence of m4 directories
1902         * gnulib-tool: Avoid extra newline on data passed to wc -l.
1903
1904 2009-11-14  Jim Meyering  <meyering@redhat.com>
1905
1906         maint.mk: Prohibit inclusion of "xalloc.h" without use.
1907         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1908
1909 2009-11-14  John W. Eaton  <jwe@gnu.org>
1910
1911         strftime.h: wrap funtion declaration in extern "C" block
1912         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
1913
1914 2009-11-13  Eric Blake  <ebb9@byu.net>
1915
1916         getgroups: avoid compiler warning
1917         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
1918
1919         getgroups: work around FreeBSD bug
1920         * lib/getgroups.c (rpl_getgroups): Work around the bug.
1921         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
1922         * doc/posix-functions/getgroups.texi (getgroups): Document it.
1923         * tests/test-getgroups.c (main): Fix buffer overrun.
1924
1925         getgroups: avoid compilation failure
1926         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
1927         * modules/getgroups (Depends-on): Add stdint.
1928
1929 2009-11-13  Jim Meyering  <meyering@redhat.com>
1930
1931         test-getgroups: avoid compilation failure
1932         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
1933
1934 2009-11-13  Eric Blake  <ebb9@byu.net>
1935
1936         mgetgroups: new module, taken from coreutils
1937         * modules/mgetgroups: New file.
1938         * lib/mgetgroups.h: Likewise.
1939         * lib/mgetgroups.c (mgetgroups): Likewise.
1940         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
1941         * MODULES.html.sh (Users and groups): Mention it.
1942
1943         getgroups: don't expose GETGROUPS_T to user
1944         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
1945         an element at a time if GETGROUPS_T is wrong size.
1946         * lib/getugroups.h (getugroups): Change signature.
1947         * lib/unistd.in.h (getgroups): Likewise.
1948         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
1949         signature needs fixing.
1950         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
1951         AC_TYPE_GETGROUPS.
1952         * modules/group-member (Depends-on): Add getgroups.
1953         * lib/group-member.c (group_info, get_group_info): Use gid_t.
1954         (group_member): Rely on getgroups replacement.
1955         * lib/getugroups.c (getugroups): Use gid_t.
1956         * tests/test-getgroups.c (main): Likewise.
1957         * NEWS: Mention the signature change.
1958         * doc/posix-functions/getgroups.texi (getgroups): Mention the
1959         problem with signature.
1960         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
1961         GETGROUPS_T is still useful for setgroups.
1962
1963         getgroups, getugroups: provide stubs for mingw
1964         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
1965         * lib/getugroups.c (getugroups): Likewise.
1966         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
1967         function.  Modernize replacement scheme.
1968         (gl_PREREQ_GETGROUPS): Delete.
1969         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
1970         * modules/getgroups (configure.ac): Declare witness.
1971         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1972         * modules/unistd (Depends-on): Substitute witness.
1973         * lib/unistd.in.h (getgroups): Declare replacement.
1974
1975         getgroups: avoid calling exit
1976         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
1977         drop xalloc.
1978         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
1979         dependencies.
1980         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
1981         exiting, in the rare case of malloc failure.
1982
1983         getgroups: fix logic error
1984         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
1985         has more than 20 groups.
1986         * modules/getgroups-tests: New test.
1987         * tests/test-getgroups.c: New file.
1988
1989 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1990
1991         * tests/test-base64.c: Improve.
1992
1993 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1994
1995         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
1996         Blake <ebb9@byu.net>.
1997
1998 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1999
2000         * tests/test-xvasprintf.c: Add %s%s related checks.
2001
2002 2009-11-12  Eric Blake  <ebb9@byu.net>
2003
2004         version-etc: match standards.texi style
2005         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
2006         and use <> only for URLs.
2007
2008 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
2009
2010         fts: do not fail on a submount during traversal
2011         * lib/fts.c (fts_build): Read the stat info again after opening
2012         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
2013         Original report at http://bugzilla.redhat.com/501848.
2014
2015 2009-11-12  Jim Meyering  <meyering@redhat.com>
2016
2017         bootstrap: sync from coreutils
2018         * build-aux/bootstrap (bootstrap_epilogue): New function.
2019         Use git_modules_config in one more place.  This make bootstrap's
2020         --gnulib-srcdir option more useful for testing.
2021
2022         bootstrap: generalize autoheader check
2023         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
2024         AC_CONFIG_HEADERS.
2025
2026 2009-11-11  Eric Blake  <ebb9@byu.net>
2027
2028         mkfifoat: use new modules for Solaris and BSD bugs
2029         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
2030         * lib/mkfifoat.c (mknodat): Split...
2031         * lib/mknodat.c (mknodat): ...into new file.
2032         * modules/mkfifoat (Files): Ship new file.
2033         (Depends-on): Add mkfifo, mknod.
2034         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
2035         (Depends-on): Add symlink.
2036         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
2037         redundant with test_mkfifo.h.
2038         (do_mkfifoat, do_mknodat): New helpers.
2039
2040         mknod: new module
2041         * modules/mknod: New file.
2042         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
2043         * lib/mknod.c (mknod): Likewise.
2044         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
2045         defaults.
2046         * modules/sys_stat (Makefile.am): Substitute them.
2047         * lib/sys_stat.in.h (mknod): Declare replacement.
2048         * MODULES.html.sh (Support for systems lacking POSIX:2008):
2049         Document it.
2050         * doc/posix-functions/mknod.texi (mknod): Likewise.
2051         * modules/mknod-tests: New test.
2052         * tests/test-mknod.c: Likewise.
2053
2054         mkfifo: new module
2055         * modules/mkfifo: New file.
2056         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
2057         * lib/mkfifo.c (mkfifo): Likewise.
2058         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
2059         defaults.
2060         * modules/sys_stat (Makefile.am): Substitute them.
2061         * lib/sys_stat.in.h (mkfifo): Declare replacement.
2062         * MODULES.html.sh (Support for systems lacking POSIX:2008):
2063         Document it.
2064         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
2065         * modules/mkfifo-tests: New test.
2066         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
2067         from test-mkfifoat.c.
2068         * tests/test-mkfifo.c: New file.
2069
2070         readlink: detect FreeBSD bug
2071         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
2072         slash on symlink.
2073         * doc/posix-functions/readlink.texi (readlink): Document the bug.
2074         * tests/test-readlink.h (test_readlink): Enhance test.
2075
2076         symlink: detect FreeBSD bug
2077         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
2078         slash on symlink.
2079         * doc/posix-functions/symlink.texi (symlink): Document the bug.
2080         * tests/test-symlink.h (test_symlink): Enhance test.
2081
2082 2009-11-10  Eric Blake  <ebb9@byu.net>
2083
2084         link: detect FreeBSD bug
2085         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
2086         symlink.
2087         * doc/posix-functions/link.texi (link): Document the bug.
2088         * tests/test-link.h (test_link): Enhance test.
2089         * tests/test-linkat.c (main): Update caller.
2090
2091         unlink, remove: detect FreeBSD bug
2092         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
2093         slash on symlink.
2094         * doc/posix-functions/unlink.texi (unlink): Document the bug.
2095         * doc/posix-functions/remove.texi (remove): Likewise.
2096         * tests/test-unlink.h (test_unlink): Enhance test.
2097         * tests/test-remove.c (main): Likewise.
2098
2099 2009-11-09  Eric Blake  <ebb9@byu.net>
2100
2101         rename: detect FreeBSD bug
2102         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
2103         slash on symlink.
2104         * modules/renameat-tests (Depends-on): Add filenamecat.
2105         * tests/test-rename.h (test_rename): Allow one more errno.
2106         * tests/test-renameat.c (main): Likewise.
2107         * doc/posix-functions/rename.texi (rename): Document the bug.
2108
2109         open: detect FreeBSD bug
2110         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
2111         symlink.
2112         * doc/posix-functions/open.texi (open): Document the bug.
2113         * doc/posix-functions/utimes.texi (utimes): Likewise.
2114         * tests/test-open.h (test_open): Add parameters, and test symlink
2115         handling.
2116         * tests/test-open.c (main): Adjust caller.
2117         * tests/test-fcntl-safer.c (main): Likewise.
2118         * modules/open-tests (Depends-on): Add stdbool, symlink.
2119         * modules/fcntl-safer-tests (Depends-on): Likewise.
2120         * tests/test-openat.c (main): Add test-open tests.
2121
2122         stat: detect FreeBSD bug
2123         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
2124         symlink.
2125         * doc/posix-functions/stat.texi (stat): Document the bug.
2126         * tests/test-stat.h (test_stat_func): Add argument.
2127         * tests/test-stat.c (main): Adjust caller.
2128         * tests/test-fstatat.c (main): Likewise.
2129         * modules/stat-tests (Depends-on): Add stdbool, symlink.
2130         Reported by Jim Meyering.
2131
2132 2009-11-09  James Youngman  <jay@gnu.org>
2133
2134         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
2135         * lib/strftime.c: Correct placement of #include "ignore-value.h".
2136
2137 2009-11-08  Jim Meyering  <meyering@redhat.com>
2138
2139         utimens: remove invalid futimesat call
2140         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
2141         It used the file descriptor of the target file as the DIR_FD
2142         parameter and NULL as the file name.  That caused failure with
2143         errno == EFAULT on FreeBSD-8.0-rc2
2144
2145 2009-11-07  Eric Blake  <ebb9@byu.net>
2146
2147         fflush, freadseek: use fseeko, not fseek
2148         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
2149         (clear_ungetc_buffer): Avoid potential problems on large files.
2150         * lib/freadseek.c (freadseek): Likewise.
2151         * modules/freadseek (Depends-on): Add fseeko.
2152         * modules/fseek (configure.ac): Set a witness.
2153         * tests/test-fflush.c (main): Use fseeko.
2154         * tests/test-fpurge.c (fseek): Disable link warning.
2155         * tests/test-freadable.c (fseek): Likewise.
2156         * tests/test-freading.c (fseek): Likewise.
2157         * tests/test-fseeko.c (fseek): Likewise.
2158         * tests/test-ftell.c (fseek): Likewise.
2159         * tests/test-ftello.c (fseek): Likewise.
2160         * tests/test-fwritable.c (fseek): Likewise.
2161         * tests/test-fwriting.c (fseek): Likewise.
2162
2163 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2164
2165         * modules/memchr (Depends-on): Drop getpagesize dependency.
2166
2167 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2168
2169         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
2170         Reported by Ludovic Courtès.
2171         * build-aux/pmccabe2html: Improve example usage.
2172         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
2173
2174 2009-11-06  Jim Meyering  <meyering@redhat.com>
2175
2176         do-release-commit-and-tag: New module.
2177         Automate the release-commit and tag process.
2178         * build-aux/do-release-commit-and-tag: New script, from coreutils.
2179         * modules/do-release-commit-and-tag: New file.
2180         * MODULES.html.sh (Support for maintaining and releasing): Add it.
2181
2182 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2183
2184         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
2185         because test-select.c uses inet_pton.
2186
2187 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2188
2189         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
2190         GETADDRINFO_LIB.  Bump serial number.
2191         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
2192         Suggested by Eric Blake <ebb9@byu.net>.
2193
2194 2009-11-05  Eric Blake  <ebb9@byu.net>
2195
2196         strtod: detect darwin bug
2197         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
2198         Reported by Leo Davis.
2199
2200         freopen-safer: new module
2201         * modules/freopen-safer: New module.
2202         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
2203         * lib/freopen-safer.c (freopen_safer): New file.
2204         * lib/stdio-safer.h (freopen_safer): New declaration.
2205         * lib/stdio--.h (freopen): New override.
2206         * MODULES.html.sh (File stream based Input/Output): Mention it.
2207         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
2208         freopen-safer module.
2209         * doc/posix-functions/stderr.texi (stderr): Likewise.
2210         * doc/posix-functions/stdin.texi (stdin): Likewise.
2211         * doc/posix-functions/stdout.texi (stdout): Likewise.
2212         * modules/freopen-safer-tests: New test.
2213         * tests/test-reopen-safer.c: New file.
2214
2215 2009-11-05  Jim Meyering  <meyering@redhat.com>
2216
2217         maint.mk: Prohibit inclusion of "close-stream.h" without use.
2218         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
2219
2220 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2221
2222         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
2223
2224 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2225
2226         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
2227
2228 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2229
2230         Fix link error.
2231         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
2232         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
2233
2234 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2235
2236         * tests/test-func.c: Also test value of __func__.
2237
2238 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2239
2240         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
2241         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
2242
2243 2009-11-05  Bruno Haible  <bruno@clisp.org>
2244
2245         Fix link error.
2246         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
2247         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
2248         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
2249
2250 2009-11-05  Bruno Haible  <bruno@clisp.org>
2251
2252         Tests for module 'inet_pton'.
2253         * modules/inet_pton-tests: New file.
2254         * tests/test-inet_pton.c: New file.
2255
2256 2009-11-05  Bruno Haible  <bruno@clisp.org>
2257
2258         Tests for module 'inet_ntop'.
2259         * modules/inet_ntop-tests: New file.
2260         * tests/test-inet_ntop.c: New file.
2261
2262 2009-11-04  Eric Blake  <ebb9@byu.net>
2263
2264         stdlib-safer: wrap all mkstemp variants
2265         * modules/mkostemp (configure.ac): Set witness.
2266         * modules/mkostemps (configure.ac): Likewise.
2267         * modules/mkstemps (configure.ac): Likewise.
2268         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
2269         (mkstemps_safer): Wrap more functions.
2270         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
2271         wrapping.
2272         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
2273         (mkstemps_safer): Implement the wrappers.
2274
2275         mkstemps, mkostemps: new modules
2276         * modules/mkostemps: New module.
2277         * modules/mkstemps: Likewise.
2278         * lib/mkostemps.c (mkostemps): New file.
2279         * lib/mkstemps.c (mkstemps): Likewise.
2280         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
2281         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
2282         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
2283         * modules/stdlib (Makefile.am): Substitute them.
2284         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
2285         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
2286         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
2287         * doc/gnulib.texi (Glibc stdlib.h): Include them.
2288         * MODULES.html.sh (File system functions): Mention them.
2289
2290         tempname: resync from glibc
2291         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
2292         same values for __GT_FILE as glibc.  Abort even when assertions
2293         are disabled.
2294         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
2295         match its value otherwise.  Allow idempotent inclusion.
2296         * lib/mkdtemp.c (mkdtemp): Adjust caller.
2297         * lib/mkostemp.c (mkostemp): Likewise.
2298         * lib/mkstemp.c (mkstemp): Likewise.
2299         * lib/tmpfile.c (tmpfile): Likewise.
2300         * NEWS: Document this.
2301
2302         utimens: fix use of futimens on older Linux
2303         * lib/utimens.c (fdutimens): Use updated, rather than original,
2304         timespec to avoid bug in older Linux kernel.
2305         Reported by Simon Josefsson.
2306
2307 2009-11-04  Bruno Haible  <bruno@clisp.org>
2308
2309         Make num_processors more flexible and consistent.
2310         * lib/nproc.h (enum nproc_query): New type.
2311         (num_processors): Add a 'query' argument.
2312         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
2313         (num_processors): Add a 'query' argument. Test the value of the
2314         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
2315         mingw, count the number of CPUs available for the current process.
2316         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
2317         Check for sched_getaffinity and sched_getaffinity_np.
2318         * modules/nproc (Depends-on): Add c-ctype, extensions.
2319         * NEWS: Mention the change.
2320
2321 2009-11-03  Bruno Haible  <bruno@clisp.org>
2322
2323         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
2324
2325 2009-11-03  Jim Meyering  <meyering@redhat.com>
2326
2327         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
2328         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
2329         if it is defined.
2330
2331 2009-11-02  Eric Blake  <ebb9@byu.net>
2332
2333         mktime, timegm: share common declaration
2334         * lib/mktime-internal.h: New file.
2335         * lib/mktime.c: Use it rather than open-coding a declaration.
2336         * lib/timegm.c: Likewise.
2337         * modules/mktime (Files): Ship it.
2338         * modules/timegm (Files): Likewise.
2339         Suggested by Bruno Haible.
2340
2341         test-update-copyright: update test to match script changes
2342         * tests/test-update-copyright.sh: Avoid hard-coding perl
2343         location.  Don't update *.bak created by earlier runs.
2344
2345 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
2346             Simon Josefsson  <simon@josefsson.org>
2347             Bruno Haible  <bruno@clisp.org>
2348
2349         Fix link error on Solaris 8.
2350         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
2351         also in libnsl. Define also INET_PTON_LIB.
2352         * modules/inet_pton (Link): New section.
2353
2354 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2355             Bruno Haible  <bruno@clisp.org>
2356
2357         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
2358         * modules/inet_ntop (Link): New section.
2359         Reported by Boyan Kasarov <bkasarov@gmail.com>.
2360
2361 2009-11-02  Eric Blake  <ebb9@byu.net>
2362
2363         maint: avoid compiler warnings in m4 macros
2364         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
2365         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
2366
2367 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2368
2369         * m4/pmccabe2html.m4: Remove file.
2370         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
2371         function.  Change maintainer.
2372         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
2373         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
2374         Courtès).
2375
2376 2009-10-31  Eric Blake  <ebb9@byu.net>
2377
2378         fseeko: fix m4 regression
2379         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
2380         regression from 2009-10-27.
2381         Reported by Ralf Wildenhues.
2382
2383 2009-10-31  Jim Meyering  <meyering@redhat.com>
2384
2385         inttostr: aesthetics and improved (compile-time) safety
2386         Define inttype_is_signed rather than inttype_is_unsigned,
2387         since the sole use is via "#if inttype_is_signed".
2388         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
2389         inttype_is_unsigned.
2390         * lib/offtostr.c (inttype_is_signed): Likewise.
2391         * lib/uinttostr.c (inttype_is_signed): Likewise.
2392         * lib/umaxtostr.c (inttype_is_signed): Likewise.
2393         * lib/inttostr.c (inttostr): Use verify to cross-check the
2394         inttype_is_signed value and the signedness of the actual type.
2395         * modules/inttostr (Depends-on): Add verify.
2396
2397 2009-10-30  Eric Blake  <ebb9@byu.net>
2398
2399         build: avoid compiler warnings
2400         * lib/fchmodat.c (lchmod): Mark unused variables.
2401         * lib/getopt.c (_getopt_initialize): Likewise.
2402         * lib/mktime.c (__mktime_internal): Provide prototype.
2403         * lib/inttostr.c (inttostr): Avoid compiler warning even with
2404         older gcc that do not understand #pragma GCC diagnostic.
2405         * lib/uinttostr.c (inttype_is_unsigned): Define.
2406         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
2407
2408 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
2409
2410         stat: fix compilation on AIX
2411         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
2412         only see struct stat64.
2413
2414 2009-10-30  Eric Blake  <ebb9@byu.net>
2415
2416         exclude: make more robust
2417         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
2418         rather than masking a coding bug.
2419         Suggested by Bruno Haible.
2420
2421 2009-10-30  Jim Meyering  <meyering@redhat.com>
2422
2423         perl scripts: remove #!/usr/bin/perl in favor of more portable...
2424         Rather than putting #!/usr/bin/perl on the first line,
2425         start with a variant of what's recommended by "man perlrun" that
2426         invokes the first "perl" program from your shell's search path.
2427         * build-aux/gitlog-to-changelog: Replace #!... as above.
2428         Add a "Local Variables" perl mode setting.
2429         Prompted by a patch from Ludovic Courtès.
2430         Improved by Eric Blake.
2431         * build-aux/useless-if-before-free: Likewise.
2432         * build-aux/announce-gen: Likewise.
2433         * build-aux/update-copyright: Likewise.
2434
2435 2009-10-29  Eric Blake  <ebb9@byu.net>
2436
2437         filenamecat-lgpl: adjust clients
2438         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
2439         filenamecat.
2440         * modules/renameat (Depends-on): Likewise.
2441
2442         filenamecat: split into filenamecat-lgpl
2443         * modules/filenamecat-lgpl: New module.
2444         * modules/filenamecat (Files): Move library-safe files into
2445         filenamecat-lgpl.
2446         (Depends-on): Add filenamecat-lgpl.
2447         (configure.ac): Declare witness.
2448         * lib/filenamecat.h (file_name_concat): Only declare when using
2449         GPL module.
2450         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
2451         Move...
2452         * lib/filenamecat-lgpl.c: ...into new file.
2453         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
2454         (gl_FILE_NAME_CONCAT): Use it.
2455         * MODULES.html.sh (File system functions): Mention new module.
2456
2457         argp: avoid memory leak
2458         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
2459         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
2460         base_name, since the latter malloc()s and can call exit().
2461         Leak introduced 2006-07-03.
2462
2463         dirname-lgpl: adjust clients that don't need full dirname
2464         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
2465         * modules/filenamecat (Depends-on): Likewise.
2466         * modules/linkat (Depends-on): Likewise.
2467         * modules/mkancesdirs (Depends-on): Likewise.
2468         * modules/mkdir (Depends-on): Likewise.
2469         * modules/openat (Depends-on): Likewise.
2470         * modules/savewd (Depends-on): Likewise.
2471         * modules/rename (Depends-on): Likewise.
2472         (License): Relax license.
2473         * modules/mkdir-tests (Depends-on): Drop progname.
2474         (Makefile.am): Delete unneeded LDADD.
2475         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
2476
2477         dirname: split into dirname-lgpl
2478         * modules/dirname-lgpl: New module.
2479         * modules/dirname (Files): Move library-safe files into
2480         dirname-lgpl.
2481         (Depends-on): Add dirname-lgpl.
2482         (configure.ac): Declare witness.
2483         * modules/double-slash-root (License): Relax license.
2484         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
2485         module.
2486         * lib/dirname.c (dir_len, mdir_name): Move...
2487         * lib/dirname-lgpl.c: ...into new file.
2488         * lib/basename.c (last_component, base_len): Move...
2489         * lib/basename-lgpl.c: ...into new file.
2490         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
2491         (gl_DIRNAME): Use it.
2492         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
2493         Mention new module.
2494         * modules/dirname-tests (Depends-on): Add progname.
2495         * tests/test-dirname.c (program_name): Delete.
2496
2497         mkdir: make safe for libraries
2498         * modules/mkdir (Depends-on): Drop xalloc.
2499         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
2500         exit.
2501
2502         tests: avoid some compiler warnings
2503         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
2504         literals.
2505         * tests/test-memchr.c (main): Avoid type mismatch.
2506         * tests/test-arpa_inet.c (main): Avoid unused parameters.
2507         * tests/test-base64.c (main): Likewise.
2508         * tests/test-getdelim.c (main): Likewise.
2509         * tests/test-gethostname.c (main): Likewise.
2510         * tests/test-getline.c (main): Likewise.
2511         * tests/test-netinet_in.c (main): Likewise.
2512         * tests/test-select.c (open_server_socket, main): Likewise.
2513         * tests/test-select-stdin.c (main): Likewise.
2514         * tests/test-sockets.c (main): Likewise.
2515         * tests/test-strsignal.c (main): Likewise.
2516         * tests/test-sys_select.c (main): Likewise.
2517         * tests/test-sys_socket.c (main): Likewise.
2518         * tests/test-u64.c (main): Likewise.
2519         * tests/test-xfprintf-posix.c (main): Likewise.
2520         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
2521
2522         sockets: avoid compiler warning
2523         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
2524
2525         maint: detect usage(1) and other suspicious exits
2526         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
2527
2528 2009-10-29  Jim Meyering  <meyering@redhat.com>
2529
2530         timespec: long-to-int truncation could make timespec_cmp malfunction
2531         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
2532         a multiple of 2^32 nanoseconds as no difference.
2533
2534 2009-10-28  Jim Meyering  <meyering@redhat.com>
2535
2536         fprintftime: wrap macro code argument in "do {...} while(0)"
2537         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
2538         cpy macro must be a statement that can be followed by a semicolon.
2539         Now that the else clause contains a comment and is hence longer
2540         than one line, I require curly braces.  That in turn requires
2541         that we wrap this code block in the standard do...while(0).
2542
2543         fprintftime: remove stray semicolon from previous change
2544         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
2545
2546         fprintftime: avoid a warning about ignored fwrite return value
2547         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
2548         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
2549         that is unsafe.
2550         * modules/fprintftime (Depends-on): Add ignore-value.
2551
2552         exclude: avoid an unwarranted warning
2553         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
2554
2555 2009-10-27  Eric Blake  <ebb9@byu.net>
2556
2557         fseek: avoid compilation failure when fflush is replaced
2558         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
2559         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
2560         module is in use.
2561         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
2562         module is not in use; since REPLACE_FSEEK worked otherwise.
2563         (GNULIB_FTELLO): Likewise for ftell.
2564         Reported by Ian Beckwith and others.
2565
2566 2009-10-27  Bruno Haible  <bruno@clisp.org>
2567
2568         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
2569         Reported by Jim Meyering.
2570
2571 2009-10-27  Jim Meyering  <jim@meyering.net>
2572             Bruno Haible  <bruno@clisp.org>
2573
2574         Avoid warning despite dropping the return value of fwrite.
2575         * lib/unicodeio.c: Include ignore-value.h.
2576         (fwrite_success_callback): Explicitly ignore fwrite's return value.
2577         * modules/unicodeio (Depends-on): Add ignore-value.
2578
2579 2009-10-26  Eric Blake  <ebb9@byu.net>
2580
2581         areadlinkat: fix fallback path
2582         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
2583         pointer and zero.
2584
2585 2009-10-22  Pádraig Brady  <P@draigBrady.com>
2586
2587         Use a better IO block size for modern systems
2588         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
2589         * lib/md2.c: Likewise.
2590         * lib/md4.c: Likewise.
2591         * lib/md5.c: Likewise.
2592         * lib/sha1.c: Likewise.
2593         * lib/sha256.c: Likewise.
2594         * lib/sha512.c: Likewise.
2595
2596 2009-10-22  Eric Blake  <ebb9@byu.net>
2597
2598         tests: avoid several compiler warnings
2599         * tests/test-getcwd.c (main): Avoid buffer underflow.
2600         * tests/test-getdate.c (main): String literals are not safe with
2601         putenv, so use setenv.  Declare unused argument.
2602         * modules/getdate-tests (Depends-on): Add setenv.
2603         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
2604         problems with string literals in char *.
2605         * tests/test-hash.c (main): Avoid shadowing declaration.
2606         (insert_new): Treat string literals as char const *.
2607         * tests/test-getopt.h (test_getopt): Likewise.
2608         (getopt_loop): Alter types to minimize casting elsewhere.
2609         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
2610         (test_getopt_long_posix): Likewise.
2611         (do_getopt_long): Add wrapper to minimize casting.
2612         * tests/test-atexit.c (clear_temp_file): Use void.
2613         * tests/test-areadlink-with-size.c (main): Declare unused
2614         arguments.
2615         * tests/test-areadlink.c (main): Likewise.
2616         * tests/test-areadlinkat-with-size.c (main): Likewise.
2617         * tests/test-areadlinkat.c (main): Likewise.
2618         * tests/test-canonicalize-lgpl.c (main): Likewise.
2619         * tests/test-canonicalize.c (main): Likewise.
2620         * tests/test-dirent-safer.c (main): Likewise.
2621         * tests/test-dirname.c (main): Likewise.
2622         * tests/test-dup2.c (main): Likewise.
2623         * tests/test-fchdir.c (main): Likewise.
2624         * tests/test-fcntl-h.c (main): Likewise.
2625         * tests/test-fcntl-safer.c (main): Likewise.
2626         * tests/test-fdopendir.c (main): Likewise.
2627         * tests/test-fdutimensat.c (main): Likewise.
2628         * tests/test-fflush.c (main): Likewise.
2629         * tests/test-filenamecat.c (main): Likewise.
2630         * tests/test-filevercmp.c (main): Likewise.
2631         * tests/test-fopen-safer.c (main): Likewise.
2632         * tests/test-fopen.c (main): Likewise.
2633         * tests/test-fpending.c (main): Likewise.
2634         * tests/test-fpurge.c (main): Likewise.
2635         * tests/test-freading.c (main): Likewise.
2636         * tests/test-fstatat.c (main): Likewise.
2637         * tests/test-fsync.c (main): Likewise.
2638         * tests/test-futimens.c (main): Likewise.
2639         * tests/test-getndelim2.c (main): Likewise.
2640         * tests/test-gettimeofday.c (main): Likewise.
2641         * tests/test-getopt.c (main): Likewise.
2642         * tests/test-i-ring.c (main): Likewise.
2643         * tests/test-inttypes.c (main): Likewise.
2644         * tests/test-link.c (main): Likewise.
2645         * tests/test-lstat.c (main): Likewise.
2646         * tests/test-math.c (main): Likewise.
2647         * tests/test-md5.c (main): Likewise.
2648         * tests/test-memchr2.c (main): Likewise.
2649         * tests/test-memrchr.c (main): Likewise.
2650         * tests/test-mkdir.c (main): Likewise.
2651         * tests/test-mkdirat.c (main): Likewise.
2652         * tests/test-mkfifoat.c (main): Likewise.
2653         * tests/test-open.c (main): Likewise.
2654         * tests/test-openat-safer.c (main): Likewise.
2655         * tests/test-openat.c (main): Likewise.
2656         * tests/test-quotearg.c (main): Likewise.
2657         * tests/test-rawmemchr.c (main): Likewise.
2658         * tests/test-readlink.c (main): Likewise.
2659         * tests/test-remove.c (main): Likewise.
2660         * tests/test-rename.c (main): Likewise.
2661         * tests/test-renameat.c (main): Likewise.
2662         * tests/test-rmdir.c (main): Likewise.
2663         * tests/test-sha1.c (main): Likewise.
2664         * tests/test-signal.c (main): Likewise.
2665         * tests/test-sigaction.c (main): Likewise.
2666         * tests/test-stat.c (main): Likewise.
2667         * tests/test-stat-time.c (main): Likewise.
2668         * tests/test-stddef.c (main): Likewise.
2669         * tests/test-stdint.c (main): Likewise.
2670         * tests/test-stdio.c (main): Likewise.
2671         * tests/test-stdlib.c (main): Likewise.
2672         * tests/test-strchrnul.c (main): Likewise.
2673         * tests/test-strerror.c (main): Likewise.
2674         * tests/test-string.c (main): Likewise.
2675         * tests/test-strtod.c (main): Likewise.
2676         * tests/test-strverscmp.c (main): Likewise.
2677         * tests/test-symlink.c (main): Likewise.
2678         * tests/test-symlinkat.c (main): Likewise.
2679         * tests/test-sys_stat.c (main): Likewise.
2680         * tests/test-sys_time.c (main): Likewise.
2681         * tests/test-time.c (main): Likewise.
2682         * tests/test-unistd.c (main): Likewise.
2683         * tests/test-unlink.c (main): Likewise.
2684         * tests/test-unlinkat.c (main): Likewise.
2685         * tests/test-utimens.c (main): Likewise.
2686         * tests/test-utimensat.c (main): Likewise.
2687         * tests/test-version-etc.c (main): Likewise.
2688         * tests/test-wchar.c (main): Likewise.
2689         * tests/test-wctype.c (main): Likewise.
2690         * tests/test-xprintf-posix.c (main): Likewise.
2691         * tests/test-posixtm.c (main): Likewise.
2692         (STREQ): Delete unused macro.
2693         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
2694         shadowed variables.
2695         * tests/test-memchr.c (main): Likewise.
2696
2697 2009-10-21  Eric Blake  <ebb9@byu.net>
2698
2699         areadlinkat: avoid failure on older glibc
2700         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
2701         rather than mis-comparing 0 against FUNC_RESULT of char*.
2702
2703 2009-10-21  Bruno Haible  <bruno@clisp.org>
2704
2705         * modules/stpncpy (License): Relicense under LGPLv2+.
2706         Reported by David Lutterkort <lutter@redhat.com>.
2707
2708 2009-10-20  Eric Blake  <ebb9@byu.net>
2709
2710         utimensat: work around Solaris 9 bug
2711         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
2712         has trailing slash bugs.
2713         * tests/test-lutimens.h (test_lutimens): Enhance test.
2714         * tests/test-utimens.h (test_utimens): Likewise.
2715         * doc/posix-functions/utime.texi (utime): Enhance documentation.
2716         * doc/posix-functions/utimes.texi (utimes): Likewise.
2717         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2718         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
2719         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
2720         * doc/posix-functions/futimens.texi (futimens): Likewise.
2721
2722         fdutimensat: new module
2723         * modules/fdutimensat: New file.
2724         * lib/fdutimensat.c (fdutimensat): Likewise.
2725         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
2726         * MODULES.html.sh (File system functions): Mention module.
2727         * modules/fdutimensat-tests: New test.
2728         * tests/test-fdutimensat.c: Likewise.
2729
2730         doc: regenerate INSTALL
2731         * doc/INSTALL: Reflect recent autoconf update.
2732         * doc/INSTALL.ISO: Likewise.
2733         * doc/INSTALL.UTF-8: Likewise.
2734
2735 2009-10-20  Pádraig Brady  <P@draigBrady.com>
2736
2737         acl: warn if ACL support is not detected
2738         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
2739
2740 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
2741
2742         * lib/nproc.h: Add extern "C" block for C++.
2743
2744 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
2745             Bruno Haible  <bruno@clisp.org>
2746
2747         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
2748         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
2749         * doc/posix-functions/isalpha.texi: Likewise.
2750         * doc/posix-functions/isblank.texi: Likewise.
2751         * doc/posix-functions/iscntrl.texi: Likewise.
2752         * doc/posix-functions/isdigit.texi: Likewise.
2753         * doc/posix-functions/isgraph.texi: Likewise.
2754         * doc/posix-functions/islower.texi: Likewise.
2755         * doc/posix-functions/isprint.texi: Likewise.
2756         * doc/posix-functions/ispunct.texi: Likewise.
2757         * doc/posix-functions/isspace.texi: Likewise.
2758         * doc/posix-functions/isupper.texi: Likewise.
2759         * doc/posix-functions/isxdigit.texi: Likewise.
2760
2761 2009-10-18  Bruno Haible  <bruno@clisp.org>
2762
2763         Tests for module 'isblank'.
2764         * modules/isblank-tests: New file.
2765         * tests/test-isblank.c: New file.
2766
2767         New module 'isblank'.
2768         * lib/isblank.c: New file.
2769         * m4/isblank.m4: New file.
2770         * modules/isblank: New file.
2771         * doc/posix-functions/isblank.texi: Mention the new module.
2772
2773 2009-10-18  Bruno Haible  <bruno@clisp.org>
2774
2775         New module 'ctype'.
2776         * lib/ctype.in.h: New file.
2777         * m4/ctype.m4: New file.
2778         * modules/ctype: New file.
2779         * doc/posix-headers/ctype.texi: Mention the new module.
2780
2781 2009-10-18  Jim Meyering  <meyering@redhat.com>
2782
2783         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
2784         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
2785         right after its initialization, rather than farther down.
2786         Keeping these in close proximity makes it easier to ensure
2787         that each such variable is initialized.  E.g.,
2788
2789             LIB_CLOCK_GETTIME=
2790             AC_SUBST([LIB_CLOCK_GETTIME])
2791
2792         This change also increments these serial numbers.
2793         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
2794         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2795         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2796
2797 2009-10-18  Bruno Haible  <bruno@clisp.org>
2798
2799         Don't let environment variables perturb build.
2800         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
2801         (gl_PREREQ_GETHRXTIME): ... not here.
2802
2803 2009-10-18  Bruno Haible  <bruno@clisp.org>
2804
2805         Avoid symlink attack in localcharset module.
2806         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
2807         (O_NOFOLLOW): Define fallback.
2808         (get_charset_aliases): Don't open the file if it is a symbolic link.
2809         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
2810         gl_FCNTL_H.
2811         (gl_FCNTL_H): Require it.
2812         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
2813         * modules/localcharset (Files): Add m4/fcntl_h.m4.
2814         Reported by Fergal Glynn <fglynn@veracode.com>.
2815
2816 2009-10-18  Bruno Haible  <bruno@clisp.org>
2817
2818         Implement nproc for mingw.
2819         * lib/nproc.c: Include <windows.h>
2820         (num_processors): On native Windows platforms, try GetSystemInfo.
2821
2822 2009-10-18  Bruno Haible  <bruno@clisp.org>
2823
2824         Implement nproc for IRIX.
2825         * lib/nproc.c: Include <sys/sysmp.h>.
2826         (num_processors): On IRIX systems, try sysmp.
2827         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
2828
2829 2009-10-18  Bruno Haible  <bruno@clisp.org>
2830
2831         Implement nproc for HP-UX.
2832         * lib/nproc.c: Include <sys/pstat.h>
2833         (num_processors): On HP-UX systems, try pstat_getdynamic.
2834         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
2835         pstat_getdynamic.
2836
2837 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
2838             Bruno Haible  <bruno@clisp.org>
2839
2840         Implement nproc for NetBSD, OpenBSD.
2841         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
2842         (ARRAY_SIZE): New macro.
2843         (num_processors): On BSD systems, try sysctl of HW_NCPU.
2844         * m4/nproc.m4: New file.
2845         * modules/nproc (Files): Add m4/nproc.m4.
2846         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
2847         (Makefile.am): Instead, augment lib_SOURCES.
2848
2849 2009-10-18  Bruno Haible  <bruno@clisp.org>
2850
2851         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
2852         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
2853         sys/param.h.
2854
2855 2009-10-16  Eric Blake  <ebb9@byu.net>
2856
2857         utimensat: new module
2858         * modules/utimensat: New file.
2859         * lib/utimensat.c (utimensat): Likewise.
2860         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2861         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
2862         so we can work around Linux bugs.
2863         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2864         * modules/sys_stat (Makefile.am): Substitute them.
2865         * lib/sys_stat.in.h (utimensat): Declare it.
2866         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2867         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2868         * modules/utimensat-tests: New test.
2869         * tests/test-utimensat.c: Likewise.
2870
2871         utimens: let lutimens work on non-symlinks
2872         * lib/utimens.c (lutimens): Fall back to utimens rather than
2873         failing with ENOSYS, when file is not a symlink.
2874         (utimens): Reduce redirection.
2875         * tests/test-lutimens.h (test_lutimens): Update test to cover
2876         non-symlinks.
2877         * tests/test-utimens.h (test_utimens): Update test to cover
2878         symlinks.
2879         * tests/test-utimens.c (main): Update caller.
2880
2881         utimens: cache whether utimensat syscall works
2882         * lib/utimens.c (utimensat_works_really): New cache variable.
2883         (fdutimens, lutimens): Use it to avoid failing syscall.
2884
2885         test-stat-time, test-utimens: improve portability
2886         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
2887         ext4 on alpha, and for cygwin.
2888         * tests/test-utimens-common.h: New file.
2889         (nap): Factor delays into single function.
2890         * tests/test-lutimens.h (test_lutimens): Use new header.
2891         * tests/test-futimens.h (test_futimens): Likewise.
2892         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
2893         timestamps to occur from same machine, as was done previously for
2894         test_utimens.
2895         * modules/utimens-tests (Files): Ship new file.
2896         * modules/futimens-tests (Files): Likewise.
2897         Reported in part by Jim Meyering.
2898
2899         sys_stat: sort replacement declarations
2900         * lib/sys_stat.in.h: Sort declarations.
2901         * lib/futimens.c (futimens): Fix typo.
2902
2903 2009-10-15  Jim Meyering  <meyering@redhat.com>
2904
2905         don't let environment settings perturb build
2906         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
2907         could cause a configure-time and/or build-time malfunction.
2908         Typically, a configure-time function-in-library test is performed
2909         via code like this:
2910
2911           LIB_VAR=
2912           AC_SUBST([LIB_VAR])
2913           prefix_saved_LIBS=$LIBS
2914             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
2915                        [test "$ac_cv_search_FUNC" = "none required" ||
2916                         LIB_VAR=$ac_cv_search_FUNC])
2917           LIBS=$prefix_saved_LIBS
2918
2919         However, in each of the files affected by this change, the LIB_VAR=
2920         initialization was omitted.  Thus, when set in the environment, its
2921         value would propagate into generated Makefiles when FUNC is not found
2922         in LIB_NAME.
2923         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
2924         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2925         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2926
2927 2009-10-14  Eric Blake  <ebb9@byu.net>
2928
2929         fchdir: avoid infinite recursion in mingw
2930         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
2931         recursing.
2932
2933         test-stat-time: port to mingw
2934         * tests/test-stat-time.c (force_unlink): Return a value.
2935         (test_ctime) [W32]: Fix compilation error.
2936         (nap): Don't call usleep with too large an argument.  Use
2937         force_unlink.
2938         * doc/pastposix-functions/usleep.texi (usleep): Document the
2939         portability issue.
2940
2941 2009-10-13  Jim Meyering  <meyering@redhat.com>
2942
2943         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
2944         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
2945         * modules/pipe-filter-ii: Likewise.
2946         * modules/sys_socket-tests: Likewise.
2947         * modules/tsearch-tests: Likewise.
2948         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
2949         (check): Depend on it.
2950
2951 2009-10-12  Eric Blake  <ebb9@byu.net>
2952
2953         utimens-tests: port to NFS file systems
2954         * tests/test-utimens.h (test_utimens): Refactor utimecmp
2955         comparisons to avoid spurious failures from timestamp drift
2956         between NFS machines.
2957
2958 2009-10-12  Eric Blake  <ebb9@byu.net>
2959
2960         stat-time-tests: minor cleanups
2961         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
2962         * tests/test-stat-time.c (nap): Separate assignment from call.
2963         Suggested by Paolo Bonzini and Bruno Haible.
2964
2965         sys_stat: guarantee struct timespec
2966         * lib/sys_stat.in.h (includes): Always include <time.h>
2967         * modules/sys_stat (Depends-on): Add time.
2968         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
2969         mode_t permission values.
2970         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
2971         get at subsecond timestamps.
2972
2973 2009-10-10  Eric Blake  <ebb9@byu.net>
2974
2975         futimens: new module
2976         * modules/futimens: New file.
2977         * lib/futimens.c (futimens): Likewise.
2978         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
2979         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
2980         we can work around Linux bugs.
2981         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2982         * modules/sys_stat (Makefile.am): Substitute them.
2983         * lib/sys_stat.in.h (futimens): Declare it.
2984         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2985         * doc/posix-functions/futimens.texi (futimens): Likewise.
2986         * modules/futimens-tests: New test.
2987         * tests/test-futimens.c: Likewise.
2988
2989         utimens: introduce fdutimens
2990         * lib/utimens.h (fdutimens): New prototype.
2991         * lib/utimens.c (gl_futimens): Move guts...
2992         (fdutimens): ...to new interface.
2993         * tests/test-utimens.c (do_fdutimens): Use it.
2994
2995         utimens: add UTIME_NOW and UTIME_OMIT support
2996         * lib/utimens.c (validate_timespec, update_timespec): New helper
2997         functions.
2998         (gl_futimens, lutimens): Use them.
2999         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
3000         stdbool, sys_stat.
3001         (Link): Mention resulting library dependency.
3002         * modules/utimecmp (Link): Likewise.
3003         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
3004         (Makefile.am): Pick up library dependency.
3005         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
3006         definition.
3007         * tests/test-sys_stat.c: Test the definitions.
3008         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
3009         * NEWS: Document library dependency.
3010
3011         utimecmp: support symlink timestamps
3012         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
3013         hashing when possible.  Use pathconf when available.
3014         (SYSCALL_RESOLUTION): Recognize tighter resolution.
3015         * modules/utimecmp (Depends-on): Add lstat.
3016
3017         utimens: add lutimens interface
3018         * lib/utimens.c (lutimens): New function.
3019         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
3020         * lib/utimens.h (lutimens): Declare new interface.
3021         * tests/test-utimens.c (main): Enhance test.
3022         * tests/test-lutimens.h (test_lutimens): New file.
3023         * modules/utimens-tests (Files): Distribute it.
3024         (Depends-on): Add symlink.
3025         (configure.ac): Check for usleep.
3026
3027         utimens: validate futimens usage
3028         * lib/utimens.c (gl_futimens): Require valid fd up front, using
3029         fewer syscalls on failure later on.  Avoid compiler warning on
3030         mingw.
3031         * modules/utimens (Depends-on): Add dup2.
3032
3033         utimens: add test
3034         * modules/utimens-tests: New test.
3035         * tests/test-utimens.h: New file.
3036         * tests/test-futimens.h: Likewise.
3037         * tests/test-utimens.c: Likewise.
3038
3039         doc: mention timestamp portability issues
3040         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
3041         instead.
3042         * doc/posix-functions/utime.texi (utime): Likewise.
3043         * doc/posix-functions/utimes.texi (utimes): Likewise.
3044         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
3045         instead.
3046         * doc/posix-functions/futimens.texi (futimens): Mention utimens
3047         module.
3048         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
3049         Mention weakness with symlink timestamps.
3050         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
3051         to utimensat/futimens instead.
3052         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
3053
3054         test-dup2: enhance test
3055         * tests/test-dup2.c (main): Also check AT_FDCWD.
3056
3057         test-stat-time: avoid more spurious failures
3058         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
3059         xfs; and avoid race if the two timestamps cross quantization edge.
3060
3061         relocatable: prefer 'file system' over 'filesystem'
3062         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
3063         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
3064         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
3065         * doc/relocatable.texi (Enabling Relocatability): Likewise.
3066         * lib/relocatable.c (compute_curr_prefix): Likewise.
3067
3068 2009-10-10  Jim Meyering  <meyering@redhat.com>
3069
3070         stat-time-tests: check for the usleep function
3071         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
3072
3073 2009-10-10  Bruno Haible  <bruno@clisp.org>
3074
3075         * modules/xnanosleep: Put the Link section after the Include section.
3076
3077 2009-10-09  Eric Blake  <ebb9@byu.net>
3078
3079         dup2: work around FreeBSD 6.1 bug
3080         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
3081         * doc/posix-functions/dup2.texi (dup2): Document it.
3082         Reported by Nelson H. F. Beebe and Jim Meyering.
3083
3084         test-stat-time: port to buggy NFS clients
3085         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
3086         (test_ctime): Also skip test if mtime and ctime are skewed.
3087
3088         maint: prefer 'file system' over 'filesystem'
3089         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3090         * doc/posix-functions/lstat.texi (lstat): Likewise.
3091         * lib/file-has-acl.c (file_has_acl): Likewise.
3092         * lib/fwriteerror.c [TEST]: Likewise.
3093         * tests/test-areadlink.h (test_areadlink): Likewise.
3094         * tests/test-areadlinkat-with-size.c (main): Likewise.
3095         * tests/test-areadlinkat.c (main): Likewise.
3096         * tests/test-canonicalize-lgpl.c (main): Likewise.
3097         * tests/test-canonicalize.c (main): Likewise.
3098         * tests/test-fstatat.c (main): Likewise.
3099         * tests/test-linkat.c (main): Likewise.
3100         * tests/test-lstat.h (test_lstat_func): Likewise.
3101         * tests/test-mkdir.h (test_mkdir): Likewise.
3102         * tests/test-readlink.h (test_readlink): Likewise.
3103         * tests/test-remove.c (main): Likewise.
3104         * tests/test-rename.h (test_rename): Likewise.
3105         * tests/test-renameat.c (main): Likewise.
3106         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3107         * tests/test-symlink.h (test_symlink): Likewise.
3108         * tests/test-symlinkat.c (main): Likewise.
3109         * tests/test-unlink.h (test_unlink_func): Likewise.
3110         * tests/test-unlinkat.c (main): Likewise.
3111
3112         maint: make realtime library usage explicit
3113         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
3114         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
3115         * modules/settime (Link): Likewise.
3116         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
3117
3118         test-stat-time: speed up execution
3119         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
3120         warning on mingw.
3121         (nap): New helper function.
3122         (prepare_test): Use it to reduce sleep time.
3123         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
3124         execution.
3125         * modules/stat-time-tests (configure.ac): Check for usleep.
3126
3127 2009-10-09  Jim Meyering  <meyering@redhat.com>
3128
3129         selinux-h: always use getfilecon wrappers
3130         * lib/getfilecon.c: New file.
3131         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
3132         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
3133         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
3134         (fgetfilecon): Provide a stub.
3135         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
3136         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
3137         file unconditionally.
3138         When <selinux/selinux.h> is found, arrange to use wrappers.
3139         * modules/selinux-h (Files): Add getfilecon.c.
3140         (Makefile.am): Substitute include-next-related bits
3141         into the now-always-generated selinux/selinux.h file.
3142         * doc/glibc-functions/lgetfilecon.texi: New file.
3143         * doc/glibc-functions/fgetfilecon.texi: New file.
3144         * doc/glibc-functions/getfilecon.texi: New file.
3145         * doc/glibc-functions/getfilecon-desc.texi: New file.
3146         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
3147         which to pull in the new files.
3148         * MODULES.html.sh (Misc): Add selinux-h.
3149
3150 2009-10-08  Jim Meyering  <meyering@redhat.com>
3151
3152         unistd: fix comment typo
3153         * lib/unistd.in.h (euidaccess): Fix a comment typo.
3154
3155 2009-10-08  Eric Blake  <ebb9@byu.net>
3156
3157         areadlink: use SIZE_MAX consistently
3158         * modules/areadlink (Depends-on): Add stdint.
3159         * modules/areadlink-with-size (Depends-on): Likewise.
3160         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
3161         gives NULL; drop sys/types, since unistd gives size_t; and add
3162         stdint for SIZE_MAX.
3163         (SIZE_MAX): Rely on headers.
3164         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
3165         and add stdint.
3166         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
3167         (SIZE_MAX): Likewise.
3168         (INITIAL_BUF_SIZE): Turn into enum.
3169         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
3170
3171 2009-10-08  Jim Meyering  <meyering@redhat.com>
3172
3173         areadlinkat: avoid compilation failure
3174         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
3175         Fix typo in comment.
3176
3177 2009-10-07  Eric Blake  <ebb9@byu.net>
3178
3179         areadlinkat-with-size: new module
3180         * modules/areadlinkat-with-size: New module.
3181         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
3182         * lib/areadlink.h (areadlinkat): Declare it.
3183         * MODULES.html.sh (File system functions): Mention it.
3184         * modules/areadlinkat-with-size-tests: New test.
3185         * tests/test-areadlinkat-with-size.c: New file.
3186
3187         xreadlinkat: new module
3188         * modules/xreadlinkat: New module.
3189         * lib/xreadlinkat.c (xreadlinkat): New file.
3190         * lib/xreadlink.h (xreadlinkat): Declare it.
3191         * MODULES.html.sh (File system functions): Mention it.
3192
3193         areadlinkat: new module
3194         * lib/at-func.c (FUNC_FAIL): New define.
3195         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
3196         * modules/areadlinkat: New module.
3197         * lib/linkat.c (areadlinkat): Move...
3198         * lib/areadlinkat.c (areadlinkat): ...to new file.
3199         * lib/areadlink.h (areadlinkat): Declare it.
3200         * modules/linkat (Depends-on): Add areadlinkat.
3201         * MODULES.html.sh (File system functions): Mention it.
3202         * modules/areadlinkat-tests: New test.
3203         * tests/test-areadlinkat.c: New file.
3204
3205         areadlink, areadlink-with-size: add tests
3206         * modules/areadlink-tests: New test.
3207         * modules/areadlink-with-size-tests: Likewise.
3208         * tests/test-areadlink.h: New file.
3209         * tests/test-areadlink.c: Likewise.
3210         * tests/test-areadlink-with-size.c: Likewise.
3211
3212         maint: minor cleanups
3213         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
3214         _UNUSED_PARAMETER_ instead.
3215         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
3216         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
3217         * modules/linkat-tests (Files): Distribute test-link.h.
3218
3219         openat, utimens: whitespace cleanup
3220         * lib/openat.c: Prefer space throughout, rather than mix of 8
3221         spaces vs. tabs.
3222         * lib/at-func.c: Likewise.
3223         * lib/utimens.c: Likewise.
3224
3225         openat: avoid using wrong fd
3226         * lib/openat.c (openat_permissive): Reject user's fd if saving the
3227         working directory chooses same fd.
3228         * lib/at-func.c (AT_FUNC_NAME): Likewise.
3229
3230         mkdir, mkdirat: fix cygwin 1.5.x bug
3231         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
3232         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
3233         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
3234         bug.
3235         (gl_PREREQ_MKDIR): Delete unused macro.
3236         * modules/mkdir (Files): Track file rename.
3237         (configure.ac): Update macro name.
3238         * modules/openat (Depends-on): Add mkdir.
3239         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
3240
3241         mkdir, mkdirat: add tests
3242         * modules/mkdir-tests: New test.
3243         * tests/test-mkdir.h: New file.
3244         * tests/test-mkdir.c: Likewise.
3245         * tests/test-mkdirat.c: Likewise.
3246         * modules/openat-tests (Files): Add new files.
3247         (Makefile.am): Run new test.
3248
3249 2009-10-06  Eric Blake  <ebb9@byu.net>
3250
3251         doc: tweak *at function documentation
3252         * doc/posix-functions/faccessat.texi (faccessat): Mention
3253         known issue with replacement.
3254         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
3255         * doc/posix-functions/linkat.texi (linkat): Likewise.
3256         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
3257         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
3258         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3259         * doc/posix-functions/renameat.texi (renameat): Likewise.
3260         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
3261
3262         openat: fix GNU/Hurd bug in unlinkat
3263         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
3264         broken.
3265         * doc/posix-functions/unlink.texi (unlink): Document this.
3266         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
3267
3268         fdopendir: fix GNU/Hurd bug
3269         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
3270         allowing non-directory fds.
3271         * lib/fdopendir.c (rpl_fdopendir): Work around it.
3272         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
3273         * modules/dirent (Makefile.am): Substitute it.
3274         * lib/dirent.in.h (fdopendir): Declare replacement.
3275         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
3276         * tests/test-fdopendir.c (main): Test something other than
3277         /dev/null, since on Hurd that behaves like a directory.
3278
3279         test-symlink: port to GNU/Hurd
3280         * tests/test-symlink.h (test_symlink): Relax expected errno.
3281
3282         doc: tweak more cygwin information
3283         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
3284         now compatible with glibc.
3285         * doc/posix-functions/getopt.texi (getopt): Likewise.
3286
3287         getopt-gnu: add another test
3288         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
3289         guarantee behavior relied on by m4.
3290         * tests/test-getopt.c (main): Use it.
3291         * modules/getopt-posix-tests (Depends-on): Add setenv.
3292         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
3293
3294         getopt: fix compilation on darwin
3295         * lib/getopt.in.h (includes): Leave breadcrumbs during system
3296         include.
3297         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
3298         Reported by Ludovic Courtès.
3299
3300 2009-10-06  Bruno Haible  <bruno@clisp.org>
3301
3302         * modules/size_max (Description): Discourage its use.
3303         Reported by Simon Josefsson.
3304
3305 2009-10-06  Jim Meyering  <meyering@redhat.com>
3306
3307         linkat: avoid compilation failure
3308         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
3309
3310 2009-10-05  Eric Blake  <ebb9@byu.net>
3311
3312         linkat: support Linux 2.6.17
3313         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
3314         linkat on Linux, but allow cache variable override.
3315         * lib/linkat.c (rpl_linkat): Define override.
3316         * modules/linkat (Depends-on): Add symlinkat.
3317         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
3318         * modules/unistd (Makefile.am): Substitute it.
3319         * lib/unistd.in.h (linkat): Declare replacement.
3320         Reported by Pádraig Brady.
3321
3322         quotearg: port test to systems with C.UTF-8 locale
3323         * tests/test-quotearg.c (struct result_strings): Add another
3324         member, differentiating between C.ASCII and C.UTF-8 handling.
3325         (compare_strings): Add parameter.
3326         (main): Adjust all callers.
3327
3328         getopt: avoid clash with FreeBSD _getopt_internal
3329         * lib/getopt.in.h (_getopt_internal): Override the name.
3330         * lib/getopt_int.h (includes): Pick up any overrides.
3331         Reported by Reuben Thomas.
3332
3333         hash: allow C89 compilation
3334         * lib/hash.c (check_tuning): Move declaration before statement.
3335         Reported by Reuben Thomas.
3336
3337 2009-10-05  Karl Berry  <karl@gnu.org>
3338
3339         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
3340
3341 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
3342             Bruno Haible  <bruno@clisp.org>
3343
3344         * lib/uname.c (uname): Use a table-driven algorithm to compute
3345         Windows NT versions.
3346
3347 2009-10-04  Bruno Haible  <bruno@clisp.org>
3348
3349         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
3350         program_invocation_short_name.
3351         * modules/progname (configure.ac): Test for presence of
3352         program_invocation_short_name.
3353         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
3354
3355 2009-10-04  Bruno Haible  <bruno@clisp.org>
3356
3357         * lib/progname.c (set_program_name): Fix comment.
3358         Reported by Jim Meyering.
3359
3360 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3361             Bruno Haible  <bruno@clisp.org>
3362
3363         * lib/uname.c: Include <string.h>.
3364         (uname): Do only one call to GetVersionEx in the common case.
3365
3366 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3367             Bruno Haible  <bruno@clisp.org>
3368
3369         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
3370         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
3371         (uname): Add support for Windows CE and various non-x86 CPU types.
3372
3373 2009-10-03  Bruno Haible  <bruno@clisp.org>
3374
3375         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
3376         invocation to tests/configure.ac.
3377         Reported by Ian Beckwith <ianb@erislabs.net>.
3378
3379 2009-10-02  Eric Blake  <ebb9@byu.net>
3380
3381         fchdir: avoid compiler warning
3382         * lib/fchdir.c (canonicalize_file_name)
3383         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
3384
3385         test-open: support mingw errno values
3386         * tests/test-open.h (test_open): Relax test.
3387         * tests/test-fopen.h (test_fopen): Likewise.
3388         * tests/test-openat-safer.c (main): Likewise.
3389
3390         open: fix opening directory on mingw
3391         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
3392
3393         test-open: on GNU/Hurd, /dev/null is a directory
3394         * tests/test-fopen.h (main): Rename...
3395         (test_fopen): ...to this.  Use a guaranteed non-directory when
3396         confirming open behavior on trailing slash.
3397         * tests/test-openat-safer.c (main): Likewise.
3398         * tests/test-open.h (main): Likewise....
3399         (test_open): ...to this.
3400         * tests/test-fopen.c (main): Adjust caller.
3401         * tests/test-fopen-safer.c (main): Likewise.
3402         * tests/test-open.c (main): Likewise.
3403         * tests/test-fcntl-safer.c (main): Likewise.
3404         Reported by Samuel Thibault.
3405
3406         rename, fchdir: don't ignore chdir failure
3407         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
3408         * lib/rename.c (rpl_rename) [W32]: Likewise.
3409         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
3410         an empty destination directory if source cannot be renamed,
3411         although there is still possibility for failure.
3412         * doc/posix-functions/rename.texi (rename): Document the race.
3413         Reported by Jim Meyering.
3414
3415         maint: cleanup whitespace in recent commits
3416         * lib/rename.c (rpl_rename): Remove tabs.
3417         * tests/test-link.h (test_link): Likewise.
3418         * lib/fchdir.c (get_name): Likewise.
3419         Reported by Jim Meyering.
3420
3421 2009-10-02  Ben Pfaff  <blp@gnu.org>
3422
3423         relocatable-prog-wrapper: Add missing dependency on
3424         double-slash-root.
3425         * modules/relocatable-prog-wrapper: Add dependency.
3426         Reported by Ian Beckwith <ianb@erislabs.net>.
3427
3428 2009-10-02  Eric Blake  <ebb9@byu.net>
3429
3430         renameat: fix Solaris bugs
3431         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
3432         needed fixing.
3433         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
3434         * modules/stdio (Makefile.am): Substitute it.
3435         * lib/stdio.in.h (renameat): Declare replacement.
3436         * lib/renameat.c (rpl_renameat): Implement fix.
3437
3438         renameat: new module
3439         * modules/renameat: New file.
3440         * lib/renameat.c (renameat): Likewise.
3441         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
3442         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3443         * modules/stdio (Makefile.am): Substitute them.
3444         * lib/stdio.in.h (renameat): Declare it.
3445         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3446         * doc/posix-functions/renameat.texi (renameat): Likewise.
3447         * modules/renameat-tests: New test.
3448         * tests/test-renameat.c: Likewise.
3449
3450         rename: fix mingw bugs
3451         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
3452         directory overwrite bugs.
3453
3454         rename: fix another cygwin 1.5 bug
3455         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
3456         checks.
3457         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
3458         unnecessary cygwin workarounds.  Also work around bug with moving
3459         full directory onto an empty one.
3460         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
3461
3462         rename-dest-slash: merge into rename module
3463         * modules/rename-dest-slash (Status): Mark obsolete.
3464         (Depends-on): Add rename.
3465         (Files): Let rename do it all.
3466         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
3467         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
3468         * m4/rename-dest-slash.m4: ...so this file can be deleted.
3469         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
3470         * lib/rename.c (rpl_rename): Update comments.
3471
3472         rename: fix cygwin 1.5.x bugs
3473         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
3474         * lib/rename.c (rpl_rename): Work around them.
3475         * modules/rename (Depends-on): Add same-inode.
3476
3477         rename: fix Solaris 10 bug
3478         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3479         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
3480         was the only bug.
3481
3482         rename: fix Solaris 9 bug
3483         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
3484         on non-directory.  Avoid calling exit.
3485         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
3486         strdup.
3487         * modules/rename-tests (Depends-on): Drop lstat.
3488         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3489         (gl_PREREQ_RENAME): Delete unused macro.
3490
3491         rename-dest-slash: fix NetBSD bug
3492         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
3493         links.
3494         * modules/rename-dest-slash (Depends-on): Add same-inode.
3495
3496         rename-tests: new test, exposes several platform bugs
3497         * modules/rename-tests: New file.
3498         * tests/test-rename.h: Likewise.
3499         * tests/test-rename.c: Likewise.
3500         * doc/posix-functions/rename.texi (rename): Improve documentation,
3501         including bugs that will eventually be fixed in gnulib.
3502
3503 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
3504
3505         * lib/uname.c: Include <stdlib.h>
3506         (uname): Assume version info is available.
3507
3508 2009-10-02  Jim Meyering  <meyering@redhat.com>
3509
3510         gnu-web-doc-update: correct --help output
3511         * build-aux/gnu-web-doc-update: Make --help output relevant.
3512
3513         gnu-web-doc-update: add standard options
3514         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
3515
3516         gnu-web-doc-update: New module.
3517         Use this script to automatically update the on-line web documentation
3518         for your GNU project at http://www.gnu.org/software/$pkg/manual/
3519         * modules/gnu-web-doc-update: New file, from coreutils.
3520         * build-aux/gnu-web-doc-update: New script.
3521
3522 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
3523
3524         link: LoadLibrary is not needed.
3525         * lib/link.c: Use GetModuleHandle.
3526
3527 2009-10-01  Eric Blake  <ebb9@byu.net>
3528
3529         getopt: bump serial number
3530         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
3531         change.
3532
3533         tests: tighten link, rmdir, and remove tests
3534         * tests/test-link.h (includes): No need to use <config.h> here.
3535         Clean up if directory hard link was created, otherwise test for
3536         trailing '.'.
3537         * tests/test-linkat.c (main): Simplify.
3538         * tests/test-remove.c (main): Enhance test for trailing '.'.
3539         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3540
3541 2009-10-01  Jim Meyering  <meyering@redhat.com>
3542
3543         maint.mk: requiring "make major" was annoying, for a "minor" release.
3544         What is intended is "stable", to contrast with alpha and beta,
3545         so require "make stable", not "make major".
3546         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
3547         (get_tool_versions): Likewise.
3548         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
3549
3550 2009-09-30  Ben Pfaff  <blp@gnu.org>
3551
3552         Fix broken build of replacement for Windows tmpfile().
3553         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
3554         flags argument added along with the 'mkostemp' module.
3555
3556 2009-09-28  Bruno Haible  <bruno@clisp.org>
3557
3558         Avoid identifier clash with POSIX function 'remove' defined as a macro.
3559         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
3560         to 'remove_elt'.
3561         (gl_list_remove): Update.
3562         * lib/gl_list.c (gl_list_remove): Update.
3563         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
3564         to 'remove_elt'.
3565         (gl_oset_remove): Update.
3566         * lib/gl_list.c (gl_oset_remove): Update.
3567         Reported by Eric Blake.
3568
3569 2009-09-28  Eric Blake  <ebb9@byu.net>
3570
3571         doc: mention yet more cygwin 1.7 status
3572         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
3573         cygwin.
3574         * doc/glibc-functions/execvpe.texi (execvpe): New file.
3575         * doc/gnulib.texi (Glibc unistd.h): Mention it.
3576
3577         argp: fix test failure
3578         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
3579         that are not upper-case.  Pass correct range to tolower.
3580
3581 2009-09-27  Jim Meyering  <meyering@redhat.com>
3582
3583         test-yesno: work around sparc-dash here-document infelicity
3584         Without this change, the literal \177 byte in a here document
3585         would make dash 0.5.5.1-3 access uninitialized memory.
3586         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
3587         Instead, use a marker, "@", and filter through tr to create the desired
3588         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
3589
3590 2009-09-27  Bruno Haible  <bruno@clisp.org>
3591
3592         Disable untested support for new flavours of ACLs on AIX.
3593         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
3594         progress.
3595         * lib/set-mode-acl.c (qset_acl): Likewise.
3596
3597 2008-12-07  Bruno Haible  <bruno@clisp.org>
3598
3599         Add support for new flavours of ACLs on AIX. (Untested.)
3600         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
3601         (file_has_acl): Add support for newer AIX.
3602         * lib/set-mode-acl.c (qset_acl): Likewise.
3603         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
3604         Rainer Tammer <tammer@tammer.net>.
3605
3606 2009-09-26  Eric Blake  <ebb9@byu.net>
3607
3608         argp: fix compilation of getopt
3609         * lib/getopt.in.h (includes): Use different guard than glibc.
3610         Reported by Sergey Poznyakoff.
3611
3612         doc: mention more cygwin 1.7 status
3613         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
3614         bug.
3615         * doc/posix-functions/execl.texi (execl): Likewise.
3616         * doc/posix-functions/execle.texi (execle): Likewise.
3617         * doc/posix-functions/execlp.texi (execlp): Likewise.
3618         * doc/posix-functions/execv.texi (execv): Likewise.
3619         * doc/posix-functions/execve.texi (execve): Likewise.
3620         * doc/posix-functions/execvp.texi (execvp): Likewise.
3621         * doc/glibc-functions/canonicalize_file_name.texi
3622         (canonicalize_file_name): Cygwin 1.7 now provides this.
3623         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
3624         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
3625         on AT_SYMLINK_NOFOLLOW.
3626
3627 2009-09-24  Eric Blake  <ebb9@byu.net>
3628
3629         test-linkat: make test more robust
3630         * tests/test-linkat.c (main): Avoid collision with EEXIST.
3631
3632         getopt: fix inclusion guards for cygwin
3633         * modules/getopt-posix (Depends-on): Add include-next.
3634         (Makefile.am): Substitute more items in replacement header.
3635         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
3636         <getopt.h>.
3637         * lib/getopt.in.h (includes): Use split inclusion guard, and
3638         prefer <getopt.h> over include <unistd.h> when one is present.
3639         (option): Also override name of 'struct option'.
3640
3641         same-inode: revert prior change; it is not yet ready
3642         * NEWS: Undo mention of this change.
3643         * lib/same-inode.h (same-inode.h): Undo tri-state change.
3644         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3645         * lib/cycle-check.c (cycle_check): Likewise.
3646         * lib/same.c (same_name): Likewise.
3647         * lib/at-func2.c (at_func2): Likewise.
3648
3649 2009-09-23  Eric Blake  <ebb9@byu.net>
3650
3651         linkat: new module
3652         * modules/linkat: New file.
3653         * lib/at-func2.c (at_func2): Likewise.
3654         * lib/linkat.c (linkat): Likewise.
3655         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
3656         * lib/openat-priv.h (at_func2): Add declaration.
3657         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3658         * modules/unistd (Makefile.am): Substitute them.
3659         * lib/unistd.in.h (linkat): Declare it.
3660         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3661         * doc/posix-functions/linkat.texi (linkat): Likewise.
3662         * doc/posix-functions/link.texi (link): Tweak wording.
3663         * tests/test-link.c (main): Move guts...
3664         * tests/test-link.h (test_link): ...into new file.
3665         * modules/linkat-tests: New test.
3666         * tests/test-linkat.c: Likewise.
3667         * modules/link-tests (Files): Ship new file.
3668         (Depends-on): Add stdbool.
3669
3670         dirname: add library-safe mdir_name
3671         * lib/dirname.h (mdir_name): New prototype.
3672         * lib/dirname.c (dir_name): Move guts...
3673         (mdir_name): ...to new function that avoids xalloc_die.
3674
3675         fchdir: another mingw fix
3676         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
3677         * lib/fchdir.c (get_name): New helper method; skips canonicalize
3678         on mingw (where it has not yet been ported), and make it optional
3679         elsewhere.
3680         (_gl_register_fd): Use it.
3681
3682         same-inode: make SAME_INODE tri-state, to port to mingw
3683         * NEWS: Mention this change.
3684         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
3685         st_ino always being 0.
3686         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3687         * lib/cycle-check.c (cycle_check): Likewise.
3688         * lib/same.c (same_name): Likewise.
3689
3690         lstat: avoid mingw compilation error
3691         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
3692         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
3693         lstat ourselves.
3694         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
3695         was adequate.
3696         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
3697         the checks for lstat.
3698         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
3699
3700         link: fix test failure on Solaris 9
3701         * lib/link.c (rpl_link): Don't assume link will catch bogus
3702         trailing slash on source.
3703
3704         test-symlinkat: enhance test
3705         * tests/test-readlink.c (main): Move guts...
3706         * tests/test-readlink.h (test_readlink): ...into new file.
3707         * tests/test-symlink.c (main): Move guts...
3708         * tests/test-symlink.h (test_symlink): ...into new file.
3709         * tests/test-symlinkat.c (main): Use new files for further
3710         coverage.
3711         (do_symlink, do_readlink): New helper functions.
3712         * modules/symlink-tests (Files): Ship new file.
3713         (Depends-on): Add stdbool.
3714         * modules/readlink-tests (Files): Ship new file.
3715         (Depends-on): Add stdbool.
3716         * modules/symlinkat-tests (Files): Use new files.
3717
3718 2009-09-23  Eric Blake  <ebb9@byu.net>
3719
3720         readlink: document portability issue with symlink length
3721         * doc/posix-functions/lstat.texi (lstat): Mention that some file
3722         systems have bogus st_size on symlinks, and mention the
3723         areadlink-with-size module.
3724         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3725         * doc/posix-functions/readlink.texi (readlink): Mention the
3726         areadlink module, and ERANGE failure.
3727         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3728         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
3729
3730         readlink: fix Solaris 9 bug with trailing slash
3731         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
3732         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
3733         * doc/posix-functions/readlink.texi (readlink): Document this.
3734         * modules/readlink-tests: New test.
3735         * tests/test-readlink.c: Likewise.
3736
3737         readlink: fix cygwin 1.5.x bug with return type
3738         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
3739         * lib/unistd.in.h (readlink): Use ssize_t.
3740         * lib/readlink.c (readlink): Likewise.
3741         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3742         * modules/unistd (Makefile.am): Substitute it.
3743         * lib/unistd.in.h (readlink): Declare replacement.
3744         * doc/posix-functions/readlink.texi (readlink): Document this.
3745
3746         symlink: use throughout gnulib
3747         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
3748         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
3749         symlink is not used.
3750         * modules/symlinkat (Depends-on): Add symlink.
3751         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3752         * modules/canonicalize-tests (Depends-on): Likewise.
3753         * modules/lstat-tests (Depends-on): Likewise.
3754         * modules/openat-tests (Depends-on): Likewise.
3755         * modules/remove-tests (Depends-on): Likewise.
3756         * modules/rmdir-tests (Depends-on): Likewise.
3757         * modules/unlink-tests (Depends-on): Likewise.
3758         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
3759         * tests/test-canonicalize.c (symlink): Likewise.
3760         * tests/test-fstatat.c (symlink): Likewise.
3761         * tests/test-lstat.c (symlink): Likewise.
3762         * tests/test-remove.c (symlink): Likewise.
3763         * tests/test-rmdir.c (symlink): Likewise.
3764         * tests/test-unlink.c (symlink): Likewise.
3765         * tests/test-unlinkat.c (symlink): Likewise.
3766
3767         symlink: new module, for Solaris 9 bug
3768         * modules/symlink: New file.
3769         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
3770         * lib/symlink.c: Likewise.
3771         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3772         * modules/unistd (Makefile.am): Substitute them.
3773         * lib/unistd.in.h (symlink): Declare replacement.
3774         * MODULES.html.sh (File system functions): Mention it.
3775         * doc/posix-functions/symlink.texi (symlink): Likewise.
3776         * modules/symlink-tests: New test.
3777         * tests/test-symlink.c: Likewise.
3778
3779 2009-09-23  Bruno Haible  <bruno@clisp.org>
3780
3781         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
3782         when needed.
3783         Test case: gnulib-tool --import --with-tests atexit inttypes.
3784         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
3785
3786 2009-09-23  Bruno Haible  <bruno@clisp.org>
3787
3788         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
3789         subcommand, not in a subshell.
3790
3791 2009-09-22  Eric Blake  <ebb9@byu.net>
3792
3793         unistd: sort replacement declarations
3794         * lib/unistd.in.h: Sort declarations.
3795
3796         open, openat: minor optimization
3797         * lib/open.c (open): If open succeeded, len is non-zero.
3798         * lib/openat.c (rpl_openat): Likewise.
3799
3800         link-follow: ensure correct result
3801         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
3802         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
3803         distinguish between possible failures.
3804
3805 2009-09-21  Eric Blake  <ebb9@byu.net>
3806
3807         fts: avoid compiler warning
3808         * lib/fts.c (dirent_inode_sort_may_be_useful)
3809         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
3810
3811 2009-09-19  Bruno Haible  <bruno@clisp.org>
3812
3813         * lib/progreloc.c (canonicalize_file_name): New declaration.
3814
3815 2009-09-19  Eric Blake  <ebb9@byu.net>
3816
3817         link: fix quoting
3818         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
3819
3820         openat: fix openat bugs on Solaris 9
3821         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
3822         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
3823         * modules/openat (Depends-on): Add open.
3824         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
3825         * modules/fcntl-h (Makefile.am): Substitute it.
3826         * lib/fcntl.in.h (openat): Declare replacement.
3827         * doc/posix-functions/openat.texi (openat): Document this.
3828
3829         openat: move fstatat and unlinkat into correct files
3830         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
3831         compiled.
3832         * lib/openat.c (fstatat, unlinkat): Move...
3833         * lib/fstatat.c (fstatat): ...into correct files.
3834         * lib/unlinkat.c (unlinkat): Likewise.
3835
3836         openat: fix unlinkat bugs on Solaris 9
3837         * lib/unlinkat.c (unlinkat): New file.
3838         * modules/openat (Depends-on): Add unlink.
3839         (Files): Distribute it.
3840         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
3841         trailing slash behavior is broken.
3842         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3843         * modules/unistd (Makefile.am): Substitute it.
3844         * lib/unistd.in.h (unlinkat): Declare replacement.
3845         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
3846
3847         openat: fix fstatat bugs on Solaris 9
3848         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
3849         stat.
3850         * doc/posix-functions/fstatat.texi (fstatat): Document this.
3851
3852         test-unlinkat: enhance test, to expose Solaris 9 bug
3853         * tests/test-unlink.c (main): Factor guts...
3854         * tests/test-unlink.h (test_rmdir_func): ...into new file.
3855         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
3856         * tests/test-rmdir.c (main): Adjust caller.
3857         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
3858         (unlinker): New helper function.
3859         (rmdirat): Enhance check.
3860         * modules/rmdir-tests (Depends-on): Add stdbool.
3861         * modules/unlink-tests (Depends-on): Likewise.
3862         (Files): Add test-unlink.h.
3863         * modules/openat-tests (Files): Likewise.
3864         (Depends-on): Add unlinkdir.
3865
3866         test-fstatat: new test, to expose Solaris 9 bugs
3867         * tests/test-stat.c (main): Factor guts...
3868         * tests/test-stat.h (test_stat_func): ...into new file.
3869         * tests/test-lstat.c (main): Factor guts...
3870         * tests/test-lstat.h (test_lstat_func): ...into new file.
3871         * tests/test-fstatat.c: New file.
3872         * modules/stat-tests (Files): Add test-stat.h.
3873         * modules/lstat-tests (Files): Add test-lstat.h.
3874         (Depends-on): Add stdbool.
3875         * modules/openat-tests (Depends-on): Add pathmax.
3876         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
3877         (Makefile.am): Run new test.
3878
3879         remove: new module, for mingw and Solaris 9 bugs
3880         * modules/remove: New file.
3881         * lib/remove.c: Likewise.
3882         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
3883         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3884         * modules/stdio (Makefile.am): Use them.
3885         * lib/stdio.in.h (remove): Declare replacement.
3886         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3887         * doc/posix-functions/remove.texi (remove): Likewise.
3888         * modules/remove-tests: New test.
3889         * tests/test-remove.c: Likewise.
3890
3891         unlink: new module, for Solaris 9 bug
3892         * modules/unlink: New file.
3893         * lib/unlink.c: Likewise.
3894         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
3895         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3896         * modules/unistd (Makefile.am): Use them.
3897         * lib/unistd.in.h (stat): Declare replacement.
3898         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3899         * doc/posix-functions/unlink.texi (unlink): Likewise.
3900         * modules/unlink-tests: New test.
3901         * tests/test-unlink.c: Likewise.
3902
3903         lstat: fix Solaris 9 bug
3904         * lib/lstat.c (lstat): Also check for trailing slash on
3905         non-symlink, non-directories.  Use stat module to simplify logic.
3906         * doc/posix-functions/lstat.texi (lstat): Document it.
3907         * modules/lstat-tests (Depends-on): Add errno, same-inode.
3908         (configure.ac): Check for symlink.
3909         * tests/test-lstat.c (main): Add more tests.
3910
3911         stat: add as dependency to other modules
3912         * modules/chown (Depends-on): Add stat.
3913         * modules/euidaccess (Depends-on): Likewise.
3914         * modules/fchdir (Depends-on): Likewise.
3915         * modules/isdir (Depends-on): Likewise.
3916         * modules/link (Depends-on): Likewise.
3917         * modules/lstat (Depends-on): Likewise.
3918         * modules/mkdir-p (Depends-on): Likewise.
3919         * modules/modechange (Depends-on): Likewise.
3920         * modules/open (Depends-on): Likewise.
3921         * modules/readlink (Depends-on): Likewise.
3922         * modules/same (Depends-on): Likewise.
3923
3924         stat: fix Solaris 9 bug
3925         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
3926         slash.
3927         * lib/stat.c (rpl_stat): Work around it.
3928         * doc/posix-functions/stat.texi (stat): Update documentation.
3929
3930         stat: new module, for mingw bug
3931         * modules/stat: New file.
3932         * lib/stat.c: Likewise.
3933         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
3934         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3935         * modules/sys_stat (Makefile.am): Use them.
3936         * lib/sys_stat.in.h (stat): Declare replacement.
3937         * lib/openat.c (fstatat): Deal with lstat and stat being function
3938         macros.
3939         * modules/openat (Depends-on): Add inline.
3940         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3941         * doc/posix-functions/stat.texi (stat): Likewise.
3942         * modules/stat-tests: New test.
3943         * tests/test-stat.c: Likewise.
3944
3945 2009-09-19  Jim Meyering  <meyering@redhat.com>
3946
3947         syntax-check: detect unnecessary inclusion of canonicalize.h
3948         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
3949
3950 2009-09-19  Eric Blake  <ebb9@byu.net>
3951
3952         canonicalize-lgpl: adjust clients to use correct header
3953         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3954         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
3955         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
3956         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
3957         * lib/progreloc.c (includes): Likewise.
3958
3959 2009-09-19  Jim Meyering  <meyering@redhat.com>
3960
3961         test-posixtm.c: correct a comment
3962         * tests/test-posixtm.c: Correct first-line comment.
3963         Spotted by Eric Blake.
3964
3965 2009-09-16  Jim Meyering  <meyering@redhat.com>
3966
3967         posixtm-tests: make T const-correct; add a test case
3968         * tests/test-posixtm.c (T): Declare const.
3969         Add a test for -(2^31+1).
3970         Remove useless can-succeed-only-in-2002 test.
3971
3972         posixtm-tests: adjust the sole failing test
3973         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
3974         expected output matches what mktime now produces.  Cross-checked via
3975         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
3976
3977         posixtm: move #ifdef'd tests into a new module
3978         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
3979         * tests/test-posixtm.c: ... this new file.
3980         * modules/posixtm-tests: New module.
3981
3982 2009-09-19  Eric Blake  <ebb9@byu.net>
3983
3984         openat: simplify use of at-func.c
3985         * lib/at-func.c (includes): Include prerequisites here, to
3986         simplify requirements on client files.
3987         * lib/openat-priv.h: Add double-inclusion guard.
3988         * lib/faccessat.c (includes): Simplify.
3989         * lib/fchmodat.c (includes): Likewise.
3990         * lib/fchownat.c (includes): Likewise.
3991         * lib/mkdirat.c (includes): Likewise.
3992         * lib/mkfifoat.c (includes): Likewise.
3993         * lib/symlinkat.c (includes): Likewise.
3994
3995         openat: allow return of fd 0
3996         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
3997         * modules/save-cwd (Depends-on): Replace fcntl-safer with
3998         unistd-safer.
3999         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
4000         <fcntl.h>; this module does not leak fds.
4001         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
4002         must be allowed to return 0, leaving openat_safer to add the
4003         safety.
4004         (openat_permissive): Avoid writing to just-opened fd 2 if
4005         restoring the current directory fails.
4006         * lib/openat-die.c (openat_restore_fail): Add comment.
4007         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
4008         (save_cwd): Guarantee safe fd, but without use of open_safer.
4009         * tests/test-openat.c: New test.
4010         * modules/openat-tests (Files, Makefile.am): Distribute and build
4011         new file.
4012
4013         relocatable-prog-wrapper: fix build
4014         * modules/relocatable-prog-wrapper (Files): Update name of
4015         canonicalize m4 file, broken on 2009-09-17.
4016         Reported by emad hajjar <aleppos@hotmail.com>.
4017
4018 2009-09-19  Bruno Haible  <bruno@clisp.org>
4019
4020         * lib/safe-alloc.h: Use the standard header with GPL copyright.
4021         * lib/safe-alloc.c: Likewise.
4022         Reported by Ian Beckwith <ianb@erislabs.net>.
4023
4024 2009-09-18  Bruno Haible  <bruno@clisp.org>
4025
4026         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
4027         Reported by <erobles@sensacd.com.mx>.
4028
4029 2009-09-17  Eric Blake  <ebb9@byu.net>
4030
4031         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
4032         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
4033         slashes when checking if last component is missing.
4034         * tests/test-canonicalize.c (main): Test this.
4035
4036         canonicalize, canonicalize-lgpl: honor // if distinct from /
4037         * modules/canonicalize (Files): Add double-slash-root.m4.
4038         * modules/canonicalize-lgpl (Files): Likewise.
4039         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
4040         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
4041         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
4042         fallback definition.
4043         (canonicalize_filename_mode): Use it to protect //.
4044         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
4045         (__realpath): Likewise.
4046         * tests/test-canonicalize.c (main): Test this.
4047         * tests/test-canonicalize-lgpl.c (main): Likewise.
4048         * modules/canonicalize-tests (Depends-on): Add same-inode.
4049         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
4050
4051         canonicalize-lgpl: fix glibc bug with trailing slash
4052         * m4/canonicalize-lgpl.m4: Move contents...
4053         * m4/canonicalize.m4: ...here.
4054         (gl_CANONICALIZE_LGPL): Factor realpath check...
4055         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
4056         glibc 2.3.5 bug, fixed 2005-04-27.
4057         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
4058         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
4059         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
4060         * modules/canonicalize-lgpl (Files): Manage file rename.
4061         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
4062         * modules/stdlib (Makefile.am): Substitute witness.
4063         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
4064         is needed.
4065         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
4066         replacement is required.
4067         * lib/canonicalize.c (canonicalize_file_name): Likewise.
4068         * doc/glibc-functions/canonicalize_file_name.texi
4069         (canonicalize_file_name): Document this.
4070         * doc/posix-functions/realpath.texi (realpath): Likewise.
4071
4072         canonicalize-lgpl: reject non-directory with trailing slash
4073         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
4074         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
4075         catches failures in glibc 2.3.5.
4076         * tests/test-canonicalize.c (main): Likewise.
4077
4078         canonicalize-lgpl: use native realpath if it works
4079         * lib/canonicalize-lgpl.c (realpath): Guard with
4080         FUNC_REALPATH_WORKS.
4081         * lib/stdlib.in.h (realpath): Make declaration optional based on
4082         HAVE_REALPATH.
4083         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
4084         native realpath works.
4085         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
4086         * modules/stdlib (Makefile.am): Substitute witness.
4087
4088         canonicalize, canonicalize-lgpl: use <stdlib.h>
4089         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
4090         (Include): Mention <stdlib.h>.
4091         (configure.ac): Mention functions we provide.
4092         * modules/canonicalize (configure.ac): Likewise.
4093         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
4094         realpath if canonicalize_file_name is missing.
4095         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
4096         * modules/stdlib (Makefile.am): Substitute witnesses.
4097         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
4098         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
4099         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
4100         * NEWS: Document this.
4101         * doc/glibc-functions/canonicalize_file_name.texi
4102         (canonicalize_file_name): Likewise.
4103         * doc/posix-functions/realpath.texi (realpath): Likewise.
4104         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
4105
4106         test-canonicalize: consolidate into single C program
4107         * tests/test-canonicalize.sh: Delete; move setup into...
4108         * tests/test-canonicalize.c (main): ...the program, making it
4109         easier to run in debugger.  Add some tests.
4110         * modules/canonicalize-tests (Files): Remove unused file.
4111         (Depends-on): Add progname.
4112         (configure.ac, Makefile.am): Simplify.
4113
4114         test-canonicalize-lgpl: consolidate into single C program
4115         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
4116         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
4117         easier to run in debugger.  Add some tests.
4118         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
4119         (configure.ac, Makefile.am): Simplify.
4120
4121         canonicalize: avoid resolvepath
4122         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
4123         unnecessary checks.
4124         * lib/canonicalize.c (includes): Simplify.
4125         (canonicalize_file_name): Drop resolvepath implementation.
4126         * modules/canonicalize (Depends-on): Drop filenamecat.
4127
4128         canonicalize: don't lose errno
4129         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
4130         over calls to free.
4131
4132         canonicalize: simplify errno handling
4133         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
4134         assignment.
4135
4136         canonicalize, canonicalize-lgpl: update module dependencies
4137         * modules/canonicalize (Depends-on): Add extensions, lstat,
4138         pathmax, stdlib.
4139         (Files): Drop pathmax.h.
4140         (configure.ac): Adjust macro name.
4141         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
4142         lstat, stdlib, sys_stat.
4143         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
4144         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
4145         extensions.
4146         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
4147         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
4148         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
4149         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
4150         declaration, if available.
4151         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
4152         we can rely on the readlink module.
4153         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
4154         (includes): Use <unistd.h> unconditionally.
4155
4156 2009-09-17  Eric Blake  <ebb9@byu.net>
4157
4158         maint: make Include sections of modules consistent
4159         * modules/alloca: Use only header name; no need to list #include.
4160         * modules/alloca-opt: Likewise.
4161         * modules/arpa_inet: Likewise.
4162         * modules/canon-host: Likewise.
4163         * modules/configmake: Likewise.
4164         * modules/dirent: Likewise.
4165         * modules/eealloc: Likewise.
4166         * modules/environ: Likewise.
4167         * modules/fchdir: Likewise.
4168         * modules/fcntl: Likewise.
4169         * modules/fcntl-h: Likewise.
4170         * modules/gethrxtime: Likewise.
4171         * modules/gettime: Likewise.
4172         * modules/ignore-value: Likewise.
4173         * modules/inet_ntop: Likewise.
4174         * modules/inet_pton: Likewise.
4175         * modules/inttypes: Likewise.
4176         * modules/isnand-nolibm: Likewise.
4177         * modules/isnanf-nolibm: Likewise.
4178         * modules/mbchar: Likewise.
4179         * modules/mbfile: Likewise.
4180         * modules/mbiter: Likewise.
4181         * modules/mbuiter: Likewise.
4182         * modules/netdb: Likewise.
4183         * modules/netinet_in: Likewise.
4184         * modules/nproc: Likewise.
4185         * modules/pagealign_alloc: Likewise.
4186         * modules/poll: Likewise.
4187         * modules/printf-frexp: Likewise.
4188         * modules/pthread: Likewise.
4189         * modules/putenv: Likewise.
4190         * modules/random_r: Likewise.
4191         * modules/relocatable-prog: Likewise.
4192         * modules/search: Likewise.
4193         * modules/select: Likewise.
4194         * modules/selinux-h: Likewise.
4195         * modules/settime: Likewise.
4196         * modules/signal: Likewise.
4197         * modules/size_max: Likewise.
4198         * modules/socklen: Likewise.
4199         * modules/ssize_t: Likewise.
4200         * modules/stdarg: Likewise.
4201         * modules/stdbool: Likewise.
4202         * modules/stddef: Likewise.
4203         * modules/stdint: Likewise.
4204         * modules/stdio: Likewise.
4205         * modules/stdlib: Likewise.
4206         * modules/string: Likewise.
4207         * modules/strings: Likewise.
4208         * modules/sys_file: Likewise.
4209         * modules/sys_ioctl: Likewise.
4210         * modules/sys_select: Likewise.
4211         * modules/sys_socket: Likewise.
4212         * modules/sys_stat: Likewise.
4213         * modules/sys_time: Likewise.
4214         * modules/sys_times: Likewise.
4215         * modules/sys_utsname: Likewise.
4216         * modules/sys_wait: Likewise.
4217         * modules/sysexits: Likewise.
4218         * modules/time: Likewise.
4219         * modules/times: Likewise.
4220         * modules/tmpfile: Likewise.
4221         * modules/trim: Likewise.
4222         * modules/unistd: Likewise.
4223         * modules/wchar: Likewise.
4224         * modules/wctype: Likewise.
4225
4226 2009-09-17  Bruno Haible  <bruno@clisp.org>
4227
4228         Make getdate.y compile on QNX and NetBSD 5 / i386.
4229         * m4/getdate.m4 (gl_GETDATE): Conditionally define
4230         TIME_T_FITS_IN_LONG_INT.
4231         * lib/getdate.y (long_time_t): New type.
4232         (relative_time): Change type of 'seconds' field to long_time_t.
4233         (get_date): Update types of local variables. Check against overflow
4234         during conversion from long_time_t to time_t.
4235         Reported by Matt Kraai <kraai@ftbfs.org>
4236         and Hasso Tepper <hasso@netbsd.org>.
4237
4238 2009-09-17  Bruno Haible  <bruno@clisp.org>
4239
4240         * modules/COPYING: Update copyright years.
4241         * modules/README: Likeiwse.
4242         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
4243         Reported by Ian Beckwith <ianb@erislabs.net>.
4244
4245 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
4246
4247         * users.txt: Update references for gnuit package.
4248
4249 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
4250
4251         * m4/getdelim.m4: Fix typo in copyright line.
4252
4253 2009-09-17  Bruno Haible  <bruno@clisp.org>
4254
4255         * lib/atoll.c: Use the standard header with GPL copyright.
4256         * lib/argz.in.h: Likewise.
4257         * lib/glob.c: Likewise.
4258         * lib/glob-libc.h: Likewise.
4259         * lib/random_r.c: Likewise.
4260         * lib/siglist.h: Likewise.
4261         * lib/strsignal.c: Likewise.
4262         Reported by Ian Beckwith <ianb@erislabs.net>.
4263
4264 2009-09-17  Eric Blake  <ebb9@byu.net>
4265
4266         rmdir: ensure correct dependency order
4267         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
4268
4269 2009-09-17  Bruno Haible  <bruno@clisp.org>
4270
4271         Disable assertion that fails on NetBSD 5 / i386.
4272         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
4273         Reported by Sam Steingold <sds@gnu.org>
4274         and Hasso Tepper <hasso@netbsd.org>.
4275
4276 2009-09-16  Eric Blake  <ebb9@byu.net>
4277
4278         unlinkdir: port to mingw
4279         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
4280         on which no one can unlink a directory.
4281
4282         stdlib: sort witness names
4283         * modules/stdlib (Makefile.am): Sort replacements.
4284         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
4285         * lib/stdlib.in.h: Likewise.
4286
4287         parse-duration-tests: avoid link failure
4288         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
4289         LIBINTL.
4290         Reported by Tom G. Christensen.
4291
4292         openat-tests: ensure unlinkat behaves like rmdir
4293         * tests/test-rmdir.c (main): Factor guts...
4294         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
4295         * modules/rmdir-tests (Files): Ship new file.
4296         * modules/openat-tests: New test.
4297         * tests/test-unlinkat.c: Likewise.
4298
4299         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
4300         * modules/rmdir-errno (Status, Notice): Now obsolete.
4301
4302         rmdir: work around cygwin 1.5.x and mingw bugs
4303         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
4304         * lib/rmdir.c (rmdir): Work around it.
4305         * modules/rmdir (Status, Notice): No longer obsolete.
4306         (Files): Add dos.m4.
4307         (Depends-on): Add unistd.
4308         (configure.ac): Set witnesses.
4309         (License): Relax to LGPLv2+.
4310         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
4311         * modules/unistd (Makefile.am): Substitute witnesses.
4312         * lib/unistd.in.h (rmdir): Declare replacement.
4313         * doc/posix-functions/rmdir.texi (rmdir): Document this.
4314         * modules/rmdir-tests: New tests.
4315         * tests/test-rmdir.c: Likewise.
4316
4317 2009-09-15  Eric Blake  <ebb9@byu.net>
4318
4319         fchdir: improve use of replacement functions
4320         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
4321         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
4322         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
4323         REPLACE_CLOSEDIR.
4324         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
4325         * modules/sys_stat (Makefile.am): Substitute correct witness.
4326         * modules/dirent (Makefile.am): Likewise.
4327         * modules/unistd (Makefile.am): Likewise.
4328         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
4329         * lib/unistd.in.h (dup): Likewise.
4330         * lib/sys_stat.in.h (fstat): Likewise.
4331
4332         maint: ignore gnulib-tool temp files
4333         * .gitignore: Ignore files created during gnulib-tool --test.
4334
4335 2009-09-13  Jim Meyering  <meyering@redhat.com>
4336
4337         posixtm: don't reject a time that specify "60" as the number of seconds
4338         * lib/posixtm.c (posixtime): The code to reject invalid dates
4339         would also reject a time specified with the .60 suffix.
4340         But POSIX allows that, in order to accommodate leap seconds.
4341         So don't reject it.
4342         (main): Adjust tests accordingly.
4343         * modules/posixtm (Depends-on): Add stpcpy.
4344
4345 2009-09-11  Jim Meyering  <meyering@redhat.com>
4346
4347         announce-gen: include [$release_type] in emitted Subject:
4348         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
4349         e.g., [stable] in the emitted Subject: line.
4350
4351 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4352
4353         Remove obsolete macros from several modules.
4354         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
4355         obsolete Autoconf macros with their modern counterparts.
4356         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
4357         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
4358         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
4359         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4360         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
4361         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4362         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4363         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4364         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
4365         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
4366         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
4367         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
4368         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
4369         * m4/sockets.m4 (gl_SOCKETS): Likewise.
4370         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
4371         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
4372         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
4373         * m4/time_r.m4 (gl_TIME_R): Likewise.
4374         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
4375         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
4376         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
4377
4378         Fix copyright header in build-aux scripts.
4379         * build-aux/git-version-gen: Fix copyright header to match GPLv3
4380         recommendation.
4381         * build-aux/ncftpput-ftp: Likewise.
4382         * build-aux/update-copyright: Likewise.
4383
4384 2009-09-09  Eric Blake  <ebb9@byu.net>
4385
4386         test-link: allow Linux choice of errno
4387         * tests/test-link.c (main): Relax test for alternate error.
4388
4389         strndup: fix improper m4 caching
4390         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
4391         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
4392         (gl_PREREQ_STRNDUP): Delete.
4393         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
4394         * modules/string (Makefile.am): Substitute it.
4395         * lib/string.in.h (strndup): Modernize prototype.
4396
4397         getcwd: port to mingw
4398         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
4399         different from the POSIX assumptions made throughout the getcwd
4400         module; fortunately, the mingw getcwd does not need replacement.
4401         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
4402         * modules/getcwd-tests: New test.
4403         * tests/test-getcwd.c: Likewise.
4404
4405         link: fix platform bugs
4406         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
4407         * lib/link.c (link): Work around them.  Fix related mingw bug.
4408         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
4409         * modules/unistd (Makefile.am): Substitute it.
4410         * lib/unistd.in.h (link): Declare replacement.
4411         * doc/posix-functions/link.texi (link): Document this.
4412         * modules/link (Depends-on): Add strdup-posix, sys_stat.
4413
4414         test-link: consolidate into single C program, test more cases
4415         * tests/test-link.sh: Delete.
4416         * tests/test-link.c: Test more error conditions.  Exposes bugs on
4417         at least Cygwin and Solaris.
4418         * modules/link-tests (Files): Remove unused file.
4419         (Depends-on): Add errno, sys_stat.
4420         (Makefile.am): Simplify.
4421
4422 2009-09-08  Bruno Haible  <bruno@clisp.org>
4423
4424         Work around towlower, towupper bug on mingw.
4425         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
4426         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
4427         * doc/posix-functions/towlower.texi: Mention the mingw bug.
4428         * doc/posix-functions/towupper.texi: Likewise.
4429         Reported by Eric Blake.
4430
4431 2009-09-08  Jim Meyering  <meyering@redhat.com>
4432
4433         build: don't try to run autoheader if we don't use it
4434         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
4435         is not used in configure.ac.
4436
4437 2009-09-08  Eric Blake  <ebb9@byu.net>
4438
4439         euidaccess: fix compilation error
4440         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
4441
4442         rawmemchr: relax license
4443         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
4444         okay.
4445         Reported by Jim Meyering.
4446
4447         mkfifoat: new module
4448         * modules/mkfifoat: New file.
4449         * lib/mkfifoat.c: Likewise.
4450         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
4451         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
4452         * modules/sys_stat (Makefile.am): Use them.
4453         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
4454         * MODULES.html.sh (File system functions): Mention module.
4455         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
4456         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
4457         * modules/mkfifoat-tests: New test.
4458         * tests/test-mkfifoat.c: Likewise.
4459
4460         strchrnul: relax license
4461         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
4462         okay.
4463         Reported by Jim Meyering.
4464
4465 2009-09-08  Eric Blake  <ebb9@byu.net>
4466
4467         fstatat: fix compilation on Solaris
4468         * lib/fstatat.c (includes): Add fcntl.h.
4469         Reported by Pádraig Brady.
4470
4471 2009-09-07  Eric Blake  <ebb9@byu.net>
4472
4473         rename: modernize replacement
4474         * modules/rename (Depends-on): Add stdio.
4475         (configure.ac): Declare witness.
4476         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
4477         stdio take care of replacement.
4478         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4479         * modules/stdio (Makefile.am): Substitute them.
4480         * lib/stdio.in.h (rename): Declare replacement.
4481         * lib/rename.c (includes): Allow cross-compilation to non-windows
4482         machines.
4483         * doc/posix-functions/rename.texi (rename): Improve
4484         documentation.
4485
4486         stdio: sort witness names
4487         * modules/stdio (Makefile.am): Sort replacements.
4488         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4489         * lib/stdio.in.h: Likewise.
4490
4491         getcwd: minor cleanups
4492         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
4493         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
4494
4495         openat: provide more convenience names
4496         * modules/faccessat (configure.ac): Add C witness.
4497         * lib/unistd.in.h (readlinkat): Fix typo.
4498         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
4499         convenience wrappers.
4500         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
4501         wrappers in syntax checks.
4502
4503 2009-09-06  Eric Blake  <ebb9@byu.net>
4504
4505         doc: fix comments in recent patches
4506         * lib/faccessat.c: Mention correct function.
4507         * lib/fchmodat.c: Likewise.
4508         * lib/fchownat.c: Likewise.
4509         * lib/symlinkat.c: Likewise.
4510         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
4511         constants.
4512
4513         faccessat, symlinkat: continue cleanup of previous patch
4514         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
4515         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4516         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
4517         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
4518         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
4519         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
4520         set.
4521
4522 2009-09-06  Bruno Haible  <bruno@clisp.org>
4523
4524         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
4525         (fstatat): Declare if GNULIB_FSTATAT is set.
4526         (mkdirat): Declare if GNULIB_MKDIRAT is set.
4527         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
4528         (unlinkat): Declare if GNULIB_UNLINKAT is set.
4529         * modules/fcntl-h (Files): Remove m4/openat.m4.
4530         * modules/sys_stat (Files): Remove m4/openat.m4.
4531         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
4532         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
4533         * modules/unistd (Files): Remove m4/openat.m4.
4534         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
4535         GNULIB_OPENAT.
4536         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
4537         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
4538         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
4539         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
4540         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
4541         gl_OPENAT_DEFAULTS.
4542         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
4543         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
4544         Don't require gl_OPENAT_DEFAULTS.
4545         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
4546         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
4547         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
4548         (gl_OPENAT_DEFAULTS): Remove macro.
4549
4550 2009-09-06  Bruno Haible  <bruno@clisp.org>
4551
4552         * modules/openat (configure.ac): Remove unneeded witness.
4553
4554 2009-09-06  Bruno Haible  <bruno@clisp.org>
4555
4556         Set errno to ENOSYS when a function is entirely unsupported.
4557         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
4558         EOPNOTSUPP.
4559         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4560         * modules/chown (Depends-on): Remove errno.
4561
4562 2009-09-06  Bruno Haible  <bruno@clisp.org>
4563
4564         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
4565
4566 2009-09-06  Bruno Haible  <bruno@clisp.org>
4567
4568         * lib/sys_stat.in.h: Fix preprocessor command indentation.
4569
4570 2009-09-06  Ben Pfaff  <blp@gnu.org>
4571             Bruno Haible  <bruno@clisp.org>
4572
4573         Work around a glibc bug in strtok_r.
4574         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
4575         Undefine if UNDEFINE_STRTOK_R is set.
4576         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
4577         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4578         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
4579         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
4580         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
4581         UNDEFINE_STRTOK_R.
4582         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
4583
4584 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4585
4586         exclude: minor fix
4587         * lib/exclude.c: Include wctype.h
4588
4589 2009-09-06  Akim Demaille  <demaille@gostai.com>
4590
4591         bootstrap: improve error message
4592         * build-aux/bootstrap (find_tool): Upon failure, report the list
4593         of candidates.
4594         Honor the initial value of the envvar.
4595
4596 2009-09-05  Eric Blake  <ebb9@byu.net>
4597
4598         symlinkat: new module
4599         * modules/symlinkat: New file.
4600         * lib/symlinkat.c: Likewise.
4601         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
4602         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
4603         * modules/unistd (Makefile.am): Use them.
4604         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
4605         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
4606         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
4607         * MODULES.html.sh (File system functions): Mention module.
4608         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
4609         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
4610         * modules/symlinkat-tests: New test.
4611         * tests/test-symlinkat.c: Likewise.
4612
4613         test-openat-safer: add more checks
4614         * tests/test-openat-safer.c (main): Check more code paths.
4615
4616 2009-09-05  Jim Meyering  <meyering@redhat.com>
4617
4618         syntax-check: detect unnecessary inclusion of openat.h
4619         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
4620
4621 2009-09-05  Bruno Haible  <bruno@clisp.org>
4622
4623         Support towlower, towupper.
4624         * doc/posix-functions/towlower.texi: Mention module wctype.
4625         * doc/posix-functions/towupper.texi: Likewise.
4626         * lib/wctype.in.h (towlower, towupper): New functions.
4627         * tests/test-wctype.c: Include stdio.h, stdlib.h.
4628         (ASSERT): New macro.
4629         (e): New variable.
4630         (main): Test also towlower, towupper. Test WEOF argument.
4631         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
4632
4633 2009-09-05  Bruno Haible  <bruno@clisp.org>
4634
4635         Fix conversion behaviour when the input is invalid.
4636         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
4637         mark occurring in first pass of indirect conversion.
4638         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
4639         input.
4640         Found by clang's static analyzer.
4641
4642 2009-09-05  Bruno Haible  <bruno@clisp.org>
4643
4644         * tests/test-striconveh.c (main): Test indirect conversion on platforms
4645         where direct conversion is possible.
4646
4647 2009-09-04  Eric Blake  <ebb9@byu.net>
4648
4649         openat: fail with ENOENT on empty name
4650         * lib/openat-proc.c (openat_proc_name): Special-case the empty
4651         buffer.
4652
4653         link-follow: fix logic bug in prior patch
4654         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
4655         reversed sense of yes and no in prior patch.  Avoid confusing
4656         compilation failure with desired semantics.
4657
4658         link-follow: accomodate mingw and cross-compilation
4659         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
4660         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
4661         cross-compilation results to -1, to make linkat easier to
4662         implement when cross-compiling.  Trivially support mingw.
4663         * modules/link-follow (configure.ac): Call new name.
4664         * NEWS: Mention this.
4665
4666 2009-09-03  Eric Blake  <ebb9@byu.net>
4667
4668         faccessat: compile replacement
4669         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
4670         needed.
4671
4672         fts: fix compilation error
4673         * lib/fts.c (includes): Re-add "openat.h", for
4674         openat_needs_fchdir.
4675
4676         faccessat: new module
4677         * modules/faccessat: New file.
4678         * lib/faccessat.c: Likewise.
4679         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4680         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4681         * modules/unistd (Makefile.am): Use it.
4682         * lib/unistd.in.h (faccessat): Declare it.
4683         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
4684         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
4685         * MODULES.html.sh (File system functions): Mention it.
4686         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
4687         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
4688
4689         euidaccess: prefer POSIX over non-standard implementation
4690         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
4691         * lib/euidaccess.c (euidaccess): Use it if available.
4692
4693         openat: make template easier to use
4694         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
4695         AT_FUNC_F2 to be undefined.
4696         (VALIDATE_FLAG): New macro; use it to reject bad flags.
4697         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
4698         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
4699         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
4700         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
4701         Likewise.
4702         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
4703         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
4704         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
4705         Likewise.
4706
4707         openat: declare in POSIX headers
4708         * NEWS: Mention this.
4709         * modules/openat (configure.ac): Declare witnesses.
4710         (Depends-on): Add fcntl-h, sys_stat, unistd.
4711         (Include): Mention correct headers.
4712         * modules/fcntl-h (Depends-on): Add link-warning.
4713         (Files): Add openat.m4.
4714         (Makefile.am): Substitute witnesses.
4715         * modules/sys_stat (Files, Makefile.am): Likewise.
4716         * modules/unistd (Files, Makefile.am): Likewise.
4717         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
4718         (gl_OPENAT_DEFAULTS): New macro.
4719         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
4720         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
4721         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
4722         (SYS_STAT_H): Remove unused variable.
4723         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
4724         * lib/fcntl--.h (includes): Remove unneeded header.
4725         * lib/openat-safer.c (includes): Likewise.
4726         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
4727         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
4728         appropriate headers.
4729         (__OPENAT_PREFIX): Delete.
4730         * lib/fcntl.in.h (openat): Provide declaration.
4731         (AT_FDCWD): Fix Solaris bug.
4732         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
4733         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
4734         * lib/fchmodat.c (includes):  Adjust to find declaration.
4735         * lib/fchownat.c (includes): Likewise.
4736         * lib/mkdirat.c (includes): Likewise.
4737         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
4738         still visible.
4739
4740 2009-09-02  Eric Blake  <ebb9@byu.net>
4741
4742         errno: use consistently
4743         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
4744         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
4745         * lib/canonicalize.c (ELOOP): Likewise.
4746         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
4747         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
4748         * lib/lchown.c (EOPNOTSUPP): Likewise.
4749         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
4750         * lib/savewd.c (ESTALE): Likewise.
4751         * lib/settime.c (ENOSYS): Likewise.
4752         * lib/utimens.c (ENOSYS): Likewise.
4753         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
4754         * lib/chdir-safer.c (ELOOP): Likewise.
4755         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
4756         * modules/c-stack (Depends-on): Add errno.
4757         * modules/canonicalize (Depends-on): Likewise.
4758         * modules/chdir-safer (Depends-on): Likewise.
4759         * modules/fdopendir (Depends-on): Likewise.
4760         * modules/inet_ntop (Depends-on): Likewise.
4761         * modules/inet_pton (Depends-on): Likewise.
4762         * modules/lchown (Depends-on): Likewise.
4763         * modules/openat (Depends-on): Likewise.
4764         * modules/savewd (Depends-on): Likewise.
4765         * modules/settime (Depends-on): Likewise.
4766         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
4767
4768         fts: avoid leaking fds
4769         * modules/fts (Depends-on): Add cloexec.
4770         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
4771         flag.
4772
4773         fts: make directory fds more robust
4774         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
4775         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
4776
4777         backupfile, chdir-long, fts, savedir: make safer
4778         * lib/backupfile.c (includes): Use "dirent--.h", since
4779         numbered_backup can write to stderr during readdir.
4780         * lib/savedir.c (includes): Likewise.
4781         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
4782         emulation can write to stderr on failure.
4783         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
4784         * lib/getcwd.c: Document why opendir_safer is unused.
4785         * lib/glob.c: Likewise.
4786         * lib/scandir.c: Likewise.
4787         * lib/openat-proc.c: Likewise, for open_safer.
4788         * modules/backupfile (Depends-on): Add dirent-safer.
4789         * modules/savedir (Depends-on): Likewise.
4790         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
4791         * modules/chdir-long (Depends-on): Add openat-safer.
4792
4793         openat-safer: new module
4794         * modules/openat-safer: New file.
4795         * lib/openat-safer.c: Likewise.
4796         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
4797         * lib/fcntl-safer.h (openat_safer): Declare.
4798         * lib/fcntl--.h (openat): Override.
4799         * MODULES.html.sh (File descriptor based I/O): Mention it.
4800         * lib/openat.h: Add double-inclusion guards.
4801         * lib/openat.c (includes): Only include "fcntl-safer.h", not
4802         "fcntl--.h", so we can implement openat.
4803         * modules/openat-safer-tests: New test.
4804         * tests/test-openat-safer.c: New file.
4805
4806         dirent-safer: new module
4807         * modules/dirent-safer: New file.
4808         * lib/dirent--.h: Likewise.
4809         * lib/dirent-safer.h: Likewise.
4810         * lib/opendir-safer.c: Likewise.
4811         * m4/dirent-safer.m4: Likewise.
4812         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
4813         * modules/dirent-safer-tests: New test.
4814         * tests/test-dirent-safer.c: New file.
4815         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
4816
4817         fdopendir: optimize on mingw
4818         * lib/unistd.in.h (_gl_directory_name): New prototype.
4819         * lib/fchdir.c (_gl_directory_name): Implement it.
4820         (fchdir): Use it to simplify implementation.
4821         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
4822         fchdir, when available, to avoid calling [f]chdir().
4823
4824         fdopendir: split into its own module
4825         * lib/openat.c (fdopendir): Move...
4826         * lib/fdopendir.c: ...into new file.
4827         * modules/fdopendir: New module.
4828         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
4829         * modules/openat (Depends-on): Add fdopendir.
4830         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
4831         fdopendir here.
4832         * modules/savedir (Depends-on): Only need fdopendir, not full
4833         openat.
4834         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
4835         * lib/openat.h (fdopendir): Drop prototype.
4836         * lib/dirent.in.h (fdopendir): Provide prototype.
4837         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
4838         * modules/dirent (Makefile.am): Substitute them.
4839         * MODULES.html.sh (File system functions): Mention it.
4840         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
4841         * modules/fdopendir-tests: New file.
4842         * tests/test-fdopendir.c: Likewise.
4843
4844         fchdir: use more consistent macro convention
4845         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
4846         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
4847         REPLACE_FCHDIR, rather than relying on config.h macros.
4848         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
4849         inside a single make-time REPLACE_FCHDIR block, rather than using
4850         the config.h FCHDIR_REPLACEMENT.
4851         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
4852         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
4853         Manage fstat replacement.
4854         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
4855         REPLACE_FCHDIR.
4856         * modules/sys_stat (Files): Add m4/unistd_h.m4.
4857         (Makefile.am): Substitute REPLACE_FCHDIR.
4858         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
4859         FCHDIR_REPLACEMENT.
4860         * lib/dup-safer.c (dup_safer): Likewise.
4861         * lib/dup2.c (rpl_dup2): Likewise.
4862         * lib/dup3.c (rpl_dup3): Likewise.
4863         * lib/open.c (rpl_open): Likewise.
4864
4865         fchdir: simplify error handling, and support dup3
4866         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
4867         stdbool, malloc-posix, realloc-posix.
4868         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
4869         (ensure_dirs_slot): Return false on allocation failure.
4870         (rpl_dup2): Delete.
4871         (_gl_register_dup): New function.
4872         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
4873         (_gl_register_fd): Close fd on allocation failure.
4874         * lib/fcntl.in.h (_gl_register_fd): Update signature.
4875         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
4876         prototype.
4877         (rpl_dup2_fchdir): Delete prototype.
4878         * lib/open.c (open): Update caller.
4879         * lib/dup2.c (dup2): Track fchdir metadata.
4880         * lib/dup3.c (dup3): Likewise.
4881         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
4882         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
4883
4884 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4885
4886         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
4887         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
4888         don't pass arguments to AC_OUTPUT.
4889
4890 2009-09-02  Bruno Haible  <bruno@clisp.org>
4891
4892         * modules/mkdtemp (License): Relicense under LGPLv2+.
4893         Reported by Paolo Bonzini.
4894
4895 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4896
4897         Replace uses of obsolete autoconf macros in Jim's modules.
4898         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
4899         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
4900         can evoke a warning from autoconf when run with -Wobsolete
4901         enabled.  They were declared obsolete for good reasons (see
4902         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
4903         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
4904         should not continue using the deprecated macros.
4905         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
4906         obsolete Autoconf macros with modern counterparts.
4907         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4908         * m4/dos.m4 (gl_AC_DOS): Likewise.
4909         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
4910         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
4911         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
4912         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
4913         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
4914         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
4915         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
4916         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
4917         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4918         Likewise.
4919         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
4920         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
4921         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
4922         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
4923         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
4924         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
4925
4926 2009-09-01  Eric Blake  <ebb9@byu.net>
4927
4928         fchdir: fix off-by-one bug in previous patch
4929         * lib/fchdir.c (rpl_fstat): Use correct bounds.
4930         (_gl_unregister_fd): Delete useless if.
4931
4932 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
4933
4934         maint.mk: sort the list of syntax-check rules
4935         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
4936         easier to get a sense of progress when the rules are run sequentially
4937         and take a long time.
4938
4939 2009-09-01  Simon Josefsson  <simon@josefsson.org>
4940
4941         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
4942         * modules/netinet_in: Likewise.
4943         * modules/sys_file: Likewise.
4944         * modules/sys_ioctl: Likewise.
4945         * modules/sys_select: Likewise.
4946         * modules/sys_socket: Likewise.
4947         * modules/sys_stat: Likewise.
4948         * modules/sys_time: Likewise.
4949         * modules/sys_times: Likewise.
4950         * modules/sys_utsname: Likewise.
4951         * modules/sys_wait: Likewise.
4952
4953 2009-09-01  Jim Meyering  <meyering@redhat.com>
4954
4955         fts: help ensure that return values are not ignored
4956         * lib/fts_.h (__GNUC_PREREQ): Define.
4957         (__attribute_warn_unused_result__): Define.
4958         (fts_children, fts_close, fts_open, fts_read): Declare with
4959         __attribute_warn_unused_result__.
4960
4961         fts: fts_close now fails also when closing a dir file descriptor fails
4962         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
4963         and propagate to caller, along with errno.
4964
4965         announce-gen: correct formatting in --help output
4966         * build-aux/announce-gen (usage): Move the one-line description in
4967         --help output "up", to where it belongs, just after Usage:.
4968
4969 2009-08-31  Eric Blake  <ebb9@byu.net>
4970
4971         fchdir: port to mingw
4972         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
4973         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
4974         opened, then use a substitute.
4975         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
4976         replacement.
4977         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
4978         (_gl_register_fd): No need to check stat if open already filters
4979         all directories.
4980         (fchdir): Fix error condition to match POSIX.
4981         * modules/fchdir (Depends-on): Add sys_stat.
4982         * doc/posix-functions/open.texi (open): Document the limitation.
4983         * modules/fchdir-tests: New file.
4984         * tests/test-fchdir.c: Likewise.
4985
4986         canonicalize: allow cross-testing from cygwin to mingw
4987         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
4988         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
4989         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
4990         Likewise.
4991         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
4992         target does not support symlinks.
4993         * tests/test-canonicalize-lgpl.sh: Likewise.
4994
4995         chown: avoid compilation warning on mingw
4996         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
4997         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
4998         mingw.
4999         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
5000         * modules/chown (Depends-on): Add errno.
5001
5002 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
5003
5004         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
5005         command.
5006
5007 2009-08-31  Jim Meyering  <meyering@redhat.com>
5008
5009         canonicalize: remove useless initialization
5010         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
5011         initialization of local, "end".
5012
5013 2009-08-30  Bruno Haible  <bruno@clisp.org>
5014
5015         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
5016         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
5017         ENOSYS.
5018
5019 2009-08-30  Bruno Haible  <bruno@clisp.org>
5020
5021         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
5022         /usr/xpg4/bin/tr when it exists.
5023         * tests/test-pipe-filter-gi1.sh: Likewise.
5024
5025 2009-08-30  Bruno Haible  <bruno@clisp.org>
5026
5027         Work around deficient /usr/bin/id program on Solaris.
5028         * tests/test-file-has-acl.sh (ID): New variable.
5029         * tests/test-set-mode-acl.sh (ID): Likewise.
5030         * tests/test-copy-acl.sh (ID): Likewise.
5031         * tests/test-copy-file.sh (ID): Likewise.
5032
5033 2009-08-30  Bruno Haible  <bruno@clisp.org>
5034
5035         New module 'xstriconveh'.
5036         * lib/xstriconveh.h: New file.
5037         * lib/xstriconveh.c: New file.
5038         * modules/xstriconveh: New file.
5039
5040 2009-08-30  Bruno Haible  <bruno@clisp.org>
5041
5042         Make it easier to use mem_cd_iconveh.
5043         * lib/striconveh.h (iconveh_t): New type.
5044         (iconveh_open, iconveh_close): New declarations.
5045         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
5046         with a single 'const iconveh_t *' argument.
5047         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
5048         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
5049         with a single 'const iconveh_t *' argument.
5050         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
5051         * tests/test-striconveh.c (main): Update.
5052         * NEWS: Mention the change.
5053
5054 2009-08-30  Bruno Haible  <bruno@clisp.org>
5055
5056         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
5057         problem.
5058
5059 2009-08-30  Bruno Haible  <bruno@clisp.org>
5060
5061         Work around iconv_open problem on Solaris.
5062         * lib/iconv_open-solaris.gperf: New file.
5063         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
5064         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
5065         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
5066         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
5067         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
5068         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
5069
5070 2009-08-29  Jim Meyering  <meyering@redhat.com>
5071
5072         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
5073         * top/maint.mk (cvs-check): Remove target; it was just an alias
5074         to the better-named vc-diff-check.
5075         (maintainer-distcheck): Remove rule.  It was used only from
5076         the (alpha/beta/major) target, and all of its commands but one
5077         were coreutils-specific.
5078         (vc-dist): Remove rule.
5079         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
5080         Run vc-diff-check, not vc-dist.
5081         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
5082
5083 2009-08-27  Bruno Haible  <bruno@clisp.org>
5084
5085         * tests/test-bitrotate.c (main): Remove test that uses a shift count
5086         of 0.
5087
5088 2009-08-27  Bruno Haible  <bruno@clisp.org>
5089
5090         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
5091         compilers.
5092         * doc/func.texi: Document the SunPRO C bug.
5093
5094 2009-08-27  Bruno Haible  <bruno@clisp.org>
5095
5096         Fix link error on Solaris.
5097         * tests/test-parse-duration.c (xstrdup): Remove function.
5098
5099 2009-08-26  Pádraig Brady  <P@draigbrady.com>
5100
5101         ignore-value: handle pointer types, too
5102         * lib/ignore-value.h (__attribute__): Remove definition.
5103         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
5104         of a more concise and more-often effective "(void) i" statement.
5105         (ignore_ptr): New function to suppress warnings from functions that
5106         return pointers, and to make it explicit that one function doesn't
5107         handle all cases.
5108
5109 2009-08-25  Bruno Haible  <bruno@clisp.org>
5110
5111         dup2: work around a Linux bug.
5112         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
5113         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
5114         * doc/posix-functions/dup2.texi: Mention the Linux bug.
5115         Reported by Simon Josefsson.
5116
5117 2009-08-25  Jim Meyering  <meyering@redhat.com>
5118
5119         libguestfs uses gnulib
5120         * users.txt: Add libguestfs.
5121
5122 2009-08-24  Eric Blake  <ebb9@byu.net>
5123
5124         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
5125         * lib/pipe2.c (includes): Add binary-io.h.
5126         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
5127
5128 2009-08-24  Bruno Haible  <bruno@clisp.org>
5129
5130         Tolerate declared but missing accept4 syscall.
5131         * lib/accept4.c (accept4): Invoke original accept4 function first, if
5132         available.
5133         * lib/sys_socket.in.h (accept4): If the function is already present,
5134         override it.
5135         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
5136         * modules/accept4 (Makefile.am): Compile accept4.c always.
5137         Reported by Paolo Bonzini and Eric Blake.
5138
5139 2009-08-23  Bruno Haible  <bruno@clisp.org>
5140
5141         New module 'accept4'.
5142         * lib/sys_socket.in.h (accept4): New declaration.
5143         * lib/accept4.c: New file.
5144         * m4/accept4.m4: New file.
5145         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
5146         GNULIB_ACCEPT4, HAVE_ACCEPT4.
5147         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
5148         HAVE_ACCEPT4.
5149         * modules/accept4: New file.
5150         * doc/glibc-functions/accept4.texi: Mention the new module.
5151
5152 2009-08-24  Jim Meyering  <meyering@redhat.com>
5153
5154         progname: also set global program_invocation_name, when possible
5155         Before this change, a libtool-enabled program that calls glibc's
5156         error function would report the program name as
5157         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
5158         * modules/progname (configure.ac): Check for a declaration of
5159         program_invocation_name.
5160         * lib/progname.c:  Include <errno.h>.
5161         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
5162         Set program_invocation_name.
5163
5164 2009-08-23  Bruno Haible  <bruno@clisp.org>
5165
5166         * lib/dup3.c: Include <string.h>.
5167
5168 2009-08-23  Bruno Haible  <bruno@clisp.org>
5169
5170         * lib/dup3.c (dup3): Test only once whether the system actually exists.
5171         * lib/pipe2.c (pipe2): Likewise.
5172         Suggested by Eric Blake.
5173
5174 2009-08-23  Bruno Haible  <bruno@clisp.org>
5175
5176         Tolerate declared but missing dup3 syscall.
5177         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
5178         * lib/unistd.in.h (dup3): If the function is already present,
5179         override it.
5180         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
5181         * modules/dup3 (Makefile.am): Compile dup3.c always.
5182         Reported by Paolo Bonzini.
5183
5184 2009-08-23  Bruno Haible  <bruno@clisp.org>
5185
5186         Tolerate declared but missing pipe2 syscall.
5187         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
5188         available.
5189         * lib/unistd.in.h (pipe2): If the function is already present,
5190         override it.
5191         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
5192         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
5193         Reported by Paolo Bonzini.
5194
5195 2009-08-23  Bruno Haible  <bruno@clisp.org>
5196
5197         * lib/pipe2.c (pipe2): Move #ifs inside function.
5198
5199 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
5200
5201         quotearg: document limitations of quote_these_too
5202         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
5203         those limitations are created.
5204         * lib/quotearg.h (set_char_quoting): Document that digits and
5205         letters that are special after backslash are not permitted.
5206         (quotearg_char): Cross-reference set_char_quoting documentation.
5207
5208 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
5209
5210         quotearg: implement custom_quoting_style
5211         * lib/quotearg.c: (struct quoting_options): Add left_quote and
5212         right_quote fields.
5213         (set_custom_quoting): New public function.
5214         (quotearg_buffer_restyled): Add left_quote and right_quote
5215         arguments, handle them very much like locale quoting, and update
5216         all uses.
5217         (quotearg_n_custom): New public function.
5218         (quotearg_n_custom_mem): New public function.
5219         (quotearg_custom): New public function.
5220         (quotearg_custom_mem): New public function.
5221         * lib/quotearg.h: Prototype and document new public functions.
5222         (enum quoting_style): For escape_quoting_style and
5223         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
5224         ignored even though they're otherwise like c_quoting_style.
5225         Add custom_quoting_style member and document with comparison to
5226         clocale_quoting_style.
5227         * tests/test-quotearg.c (custom_quotes): New array.
5228         (custom_results): New array.
5229         (main): Extend to test custom quoting.
5230
5231 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
5232
5233         quotearg: fix right quote escaping when it's in quote_these_too
5234         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
5235         quote, be sure to prepend only one backslash.
5236         * tests/test-quotearg.c (use_quote_double_quotes): New function.
5237         (main): Test it.
5238
5239 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
5240
5241         quotearg-tests: test escaping of embedded locale quotes
5242         * tests/test-quotearg.c (struct result_strings): Add member for
5243         new input.
5244         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
5245         (inputs): Add new input.
5246         (results_g): Add expected results.
5247         (flag_results): Likewise.
5248         (locale_results): Likewise.
5249         (compare_strings): Check those.
5250
5251 2009-08-23  Bruno Haible  <bruno@clisp.org>
5252
5253         Tests for module 'dup3'.
5254         * modules/dup3-tests: New file.
5255         * tests/test-dup3.c: New file.
5256
5257         New module 'dup3'.
5258         * lib/unistd.in.h (dup3): New declaration.
5259         * lib/dup3.c: New file.
5260         * m4/dup3.m4: New file.
5261         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
5262         HAVE_DUP3.
5263         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
5264         * modules/dup3: New file.
5265         * doc/glibc-functions/dup3.texi: Mention the new module.
5266
5267 2009-08-23  Bruno Haible  <bruno@clisp.org>
5268
5269         Tweak the dup2 test.
5270         * tests/test-dup2.c (main): Create the test file empty. Verify that an
5271         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
5272         the test file is still empty. Fix argument order of lseek.
5273
5274 2009-08-23  Bruno Haible  <bruno@clisp.org>
5275
5276         Avoid test link errors when the modules getopt-gnu, gettext are used.
5277         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
5278         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5279
5280 2009-08-23  Bruno Haible  <bruno@clisp.org>
5281
5282         Fix getdtablesize() on mingw.
5283         * lib/getdtablesize.c (getdtablesize): Implement differently.
5284         * lib/unistd.in.h (getdtablesize): Improve comment.
5285
5286 2009-08-23  Bruno Haible  <bruno@clisp.org>
5287
5288         New module 'mkostemp'.
5289         Based on Ulrich Drepper's 2007-08-10 change in glibc.
5290         * lib/stdlib.in.h (mksotemp): New declaration.
5291         * lib/mkostemp.c: New file, from glibc with modifications.
5292         * lib/tempname.h (GT_FILE): Remove outdated comment.
5293         (gen_tempname): Add flags argument.
5294         * lib/tempname.c (__GT_BIGFILE): Remove macro.
5295         (__GT_FILE): Map to 1.
5296         (small_open, large_open): Remove macros.
5297         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
5298         * lib/mkstemp.c (mkstemp): Update.
5299         * lib/mkdtemp.c (mkdtemp): Likewise.
5300         * m4/mkostemp.m4: New file.
5301         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
5302         HAVE_MKOSTEMP.
5303         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
5304         HAVE_MKOSTEMP.
5305         * modules/mkostemp: New file, based on modules/mkstemp.
5306         * doc/glibc-functions/mkostemp.texi: Mention the new module.
5307         * NEWS: Mention the change.
5308
5309 2009-08-23  Bruno Haible  <bruno@clisp.org>
5310
5311         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
5312         Reported by Eric Blake.
5313
5314 2009-08-23  Bruno Haible  <bruno@clisp.org>
5315
5316         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
5317         Reported by Eric Blake.
5318
5319 2009-08-23  Bruno Haible  <bruno@clisp.org>
5320
5321         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
5322         * modules/pipe2 (Depends-on): Likewise.
5323
5324 2009-08-23  Eric Blake  <ebb9@byu.net>
5325
5326         fcntl-h: add O_TTY_INIT support
5327         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
5328         * tests/test-fcntl-h.c (o): Test it.
5329         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5330
5331         fcntl-h: rename from fcntl, in preparation for fcntl(2)
5332         * modules/fcntl: Move <fcntl.h> header replacement...
5333         * modules/fcntl-h: ...to new name, so as not to collide with
5334         like-named function.
5335         * tests/test-fcntl.c: Rename...
5336         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
5337         * modules/fcntl-tests: Rename...
5338         * modules/fcntl-h-tests: ...to this.  Update test file name.
5339         * modules/chdir-long (Depends-on): Update clients.
5340         * modules/chdir-safer (Depends-on): Likewise.
5341         * modules/fcntl-safer (Depends-on): Likewise.
5342         * modules/fts (Depends-on): Likewise.
5343         * modules/mkancesdirs (Depends-on): Likewise.
5344         * modules/mkdir-p (Depends-on): Likewise.
5345         * modules/open (Depends-on): Likewise.
5346         * modules/savewd (Depends-on): Likewise.
5347         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
5348         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5349
5350 2009-08-22  Bruno Haible  <bruno@clisp.org>
5351
5352         * modules/binary-io (License): Relicense under LGPL.
5353         * modules/pipe2 (License): Likewise.
5354
5355 2009-08-22  Bruno Haible  <bruno@clisp.org>
5356
5357         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
5358         return value.
5359         * lib/pipe-filter-gi.c (filter_init): Likewise.
5360         Reported by Eric Blake.
5361
5362 2009-08-22  Bruno Haible  <bruno@clisp.org>
5363
5364         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
5365         * modules/pipe (Depends-on): Add pipe2.
5366
5367 2009-08-22  Bruno Haible  <bruno@clisp.org>
5368
5369         Tests for module 'pipe2'.
5370         * modules/pipe2-tests: New file.
5371         * tests/test-pipe2.c: New file.
5372
5373         New module 'pipe2'.
5374         * lib/unistd.in.h (pipe2): New declaration.
5375         * lib/pipe2.c: New file.
5376         * m4/pipe2.m4: New file.
5377         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
5378         HAVE_PIPE2.
5379         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
5380         * modules/pipe2: New file.
5381         * doc/glibc-functions/pipe2.texi: Mention the new module.
5382
5383 2009-08-22  Bruno Haible  <bruno@clisp.org>
5384
5385         Reference some new glibc functions.
5386         * doc/glibc-functions/accept4.texi: New file.
5387         * doc/glibc-functions/dup3.texi: New file.
5388         * doc/glibc-functions/mkostemp.texi: New file.
5389         * doc/glibc-functions/pipe2.texi: New file.
5390         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
5391         (Glibc sys/socket.h): Refer to accept4.
5392         (Glibc unistd.h): Refer to dup3, pipe2.
5393         Reported by Eric Blake.
5394
5395 2009-08-22  Jim Meyering  <meyering@redhat.com>
5396             Bruno Haible  <bruno@clisp.org>
5397
5398         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
5399         This makes it so packages using automake-1.11's silent-rules option
5400         can print e.g., a single "GEN    configmake.h" line, rather than
5401         the 30+ statements that perform the job.  If you want to see the
5402         actual commands, you can still run "make V=1".
5403         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
5404         so that make output is abbreviated when those variables are defined
5405         appropriately.
5406         * modules/argz: Likewise.
5407         * modules/arpa_inet: Likewise.
5408         * modules/byteswap: Likewise.
5409         * modules/configmake: Likewise.
5410         * modules/dirent: Likewise.
5411         * modules/errno: Likewise.
5412         * modules/fcntl: Likewise.
5413         * modules/float: Likewise.
5414         * modules/fnmatch: Likewise.
5415         * modules/getopt-posix: Likewise.
5416         * modules/glob: Likewise.
5417         * modules/iconv_open: Likewise.
5418         * modules/inttypes: Likewise.
5419         * modules/localcharset: Likewise.
5420         * modules/locale: Likewise.
5421         * modules/math: Likewise.
5422         * modules/netdb: Likewise.
5423         * modules/netinet_in: Likewise.
5424         * modules/poll: Likewise.
5425         * modules/posix_spawnp-tests: Likewise.
5426         * modules/sched: Likewise.
5427         * modules/search: Likewise.
5428         * modules/selinux-h: Likewise.
5429         * modules/signal: Likewise.
5430         * modules/spawn: Likewise.
5431         * modules/stdarg: Likewise.
5432         * modules/stdbool: Likewise.
5433         * modules/stddef: Likewise.
5434         * modules/stdint: Likewise.
5435         * modules/stdio: Likewise.
5436         * modules/stdlib: Likewise.
5437         * modules/string: Likewise.
5438         * modules/strings: Likewise.
5439         * modules/sys_file: Likewise.
5440         * modules/sys_ioctl: Likewise.
5441         * modules/sys_select: Likewise.
5442         * modules/sys_socket: Likewise.
5443         * modules/sys_stat: Likewise.
5444         * modules/sys_time: Likewise.
5445         * modules/sys_times: Likewise.
5446         * modules/sys_utsname: Likewise.
5447         * modules/sys_wait: Likewise.
5448         * modules/sysexits: Likewise.
5449         * modules/time: Likewise.
5450         * modules/unistd: Likewise.
5451         * modules/wchar: Likewise.
5452         * modules/wctype: Likewise.
5453
5454 2009-08-22  Jim Meyering  <meyering@redhat.com>
5455
5456         announce-gen: detect write failure
5457         * build-aux/announce-gen: Add Coda at end.
5458         Remove equivalent-but-more-verbose block at top.
5459
5460 2009-08-19  Akim Demaille  <demaille@gostai.com>
5461
5462         bootstrap: --help to stdout.
5463         * bootstrap (usage): Don't send --help to stderr.
5464         Use a here doc instead of a long string.
5465
5466 2009-08-21  Eric Blake  <ebb9@byu.net>
5467
5468         test-popen-safer: split from test-popen
5469         * tests/test-popen.c (main): Move...
5470         * tests/test-popen.h: ...into new file.
5471         * tests/test-popen-safer2.c: New file.
5472         * modules/popen-tests (Files): Add test-popen.h.
5473         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
5474         Suggested by Bruno Haible.
5475
5476         test-fcntl-safer: split from test-open
5477         * tests/test-open.c (main): Move...
5478         * tests/test-open.h: ...into new file.
5479         * tests/test-fcntl-safer.c: New file.
5480         * modules/open-tests (Files): Add test-open.h.
5481         * modules/fcntl-safer-tests: New file.
5482         Suggested by Bruno Haible.
5483
5484         test-fopen-safer: split from test-fopen
5485         * tests/test-fopen.c (main): Move...
5486         * tests/test-fopen.h: ...into new file.
5487         * tests/test-fopen-safer.c: New file.
5488         * modules/fopen-tests (Files): Add test-fopen.h.
5489         * modules/fopen-safer-tests: New file.
5490         Suggested by Bruno Haible.
5491
5492 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5493
5494         popen-safer: test O_CLOEXEC at run-time.
5495         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
5496
5497 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5498
5499         fcntl: move more flags to the header
5500         * lib/cloexec.c: Do not define FD_CLOEXEC here.
5501         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
5502         * lib/fcntl.in.h: Do both things here.
5503
5504 2009-08-21  Jim Meyering  <meyering@redhat.com>
5505
5506         consistently remove $@-t before redirecting to it
5507         * modules/argz: Remove $@-t and $@ before redirecting to the former.
5508         * modules/alloca-opt: Likewise.
5509         * modules/byteswap: Likewise.
5510         * modules/fnmatch: Likewise.
5511         * modules/getopt-posix: Likewise.
5512         * modules/glob: Likewise.
5513         * modules/poll: Likewise.
5514         * modules/posix_spawnp-tests: Likewise.
5515         * modules/sys_socket: Likewise.
5516         * modules/sysexits: Likewise.
5517
5518 2009-08-21  Eric Blake  <ebb9@byu.net>
5519
5520         popen: simplify access to original popen
5521         * lib/popen.c (rpl_popen): No need to worry about popen being a
5522         macro.
5523         Reported by Bruno Haible.
5524
5525 2009-08-20  Eric Blake  <ebb9@byu.net>
5526
5527         build: avoid some compiler warnings
5528         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
5529         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
5530         type.
5531         (new_exclude_segment, excluded_file_pattern_p)
5532         (excluded_file_name_p): Reduce scope.
5533         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
5534         old-style declaration.
5535
5536 2009-08-20  Simon Josefsson  <simon@josefsson.org>
5537
5538         * tests/test-exclude1.sh: Handle Windows EOL.
5539         * tests/test-exclude2.sh: Likewise.
5540         * tests/test-exclude3.sh: Likewise.
5541         * tests/test-exclude4.sh: Likewise.
5542         * tests/test-exclude5.sh: Likewise.
5543         * tests/test-exclude6.sh: Likewise.
5544         * tests/test-exclude7.sh: Likewise.
5545
5546 2009-08-19  Akim Demaille  <demaille@gostai.com>
5547
5548         bootstrap: find sha1sum when named gsha1sum.
5549         * bootstrap (find_tool): New.
5550         ($SHA1SUM): New.
5551         Use it.
5552
5553 2009-08-20  Jim Meyering  <meyering@redhat.com>
5554
5555         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
5556         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
5557         expression that converts "." in a file name to "\." in the resulting
5558         regexp.  Start with a dummy statement, so that prior shell variable
5559         definitions are expanded portably.  Reported by Simon Josefsson.
5560
5561 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
5562
5563         Fix polling for writeability of a screen buffer.
5564         * lib/poll.c: Distinguish input and screen buffers for the
5565         Win32 implementation.
5566         * lib/select.c: Likewise.
5567
5568 2009-08-19  Eric Blake  <ebb9@byu.net>
5569
5570         popen-safer: prevent popen from clobbering std descriptors
5571         * modules/popen-safer: New file.
5572         * lib/popen-safer.c: Likewise.
5573         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
5574         * lib/stdio--.h (popen): Provide override.
5575         * lib/stdio-safer.h (popen_safer): Provide declaration.
5576         * tests/test-popen.c (includes): Partially test this.
5577         * modules/popen-safer-tests: New file, for more tests.
5578         * tests/test-popen-safer.c: Likewise.
5579         * MODULES.html.sh (file stream based Input/Output): Mention it.
5580
5581         tests: test some of the *-safer modules
5582         * modules/fopen-safer (Depends-on): Add fopen.
5583         * modules/fcntl-safer (Depends-on): Add fcntl.
5584         * modules/stdlib-safer (Depends-on): Add stdlib.
5585         (configure.ac): Set indicator.
5586         * modules/unistd-safer (configure.ac): Likewise.
5587         * modules/tmpfile-safer (configure.ac): Likewise.
5588         (Depends-on): Add tmpfile.
5589         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
5590         active.
5591         * tests/test-fopen.c (includes): Test safer versions when they are
5592         in use.
5593         * tests/test-open.c (includes): Likewise.
5594
5595         popen: fix cygwin 1.5 bug when stdin closed
5596         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
5597         * modules/popen: New file.
5598         * modules/popen-tests: Likewise.
5599         * tests/test-popen.c: Likewise.
5600         * m4/popen.m4: Likewise.
5601         * lib/popen.c: Likewise.
5602         * lib/stdio.in.h (popen): New declaration.
5603         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
5604         * modules/stdio (Makefile.am): Likewise.
5605         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
5606
5607 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
5608
5609         maint.mk: give full control over update-copyright exclusions
5610         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
5611         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
5612         (update-copyright): Don't force inclusion of top-level
5613         ChangeLog.  Don't force exclusion of all COPYING files, but make
5614         them the default exclusion instead.
5615
5616 2009-08-16  Bruno Haible  <bruno@clisp.org>
5617
5618         Fix test failures on Solaris 10.
5619         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
5620         tests when Solaris iconv() is used.
5621         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5622         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5623         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5624         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5625         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5626
5627 2009-08-16  Bruno Haible  <bruno@clisp.org>
5628
5629         Fix test failures on Solaris 10.
5630         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
5631         'tr' program and pass it as first argument.
5632         * tests/test-pipe-filter-gi1.sh: Likewise.
5633         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
5634         program as first argument.
5635         * tests/test-pipe-filter-gi1.c (main): Likewise.
5636
5637 2009-08-16  Eric Blake  <ebb9@byu.net>
5638
5639         fpurge: fix previous commits
5640         * modules/fpurge (Makefile.am): Make replacement conditional,
5641         partially reverting 2007-04-29 change; missed in previous
5642         attempt.
5643         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
5644         is missing.
5645
5646 2009-08-16  Bruno Haible  <bruno@clisp.org>
5647
5648         Clarify fpurge's effect on the file position.
5649         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
5650         * tests/test-fpurge.c (main): Make a second pass for checking the file
5651         position.
5652
5653 2009-08-16  Bruno Haible  <bruno@clisp.org>
5654
5655         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
5656         declaration of fpurge is missing.
5657         * tests/test-fpurge.c (main): Check that the file has not more contents
5658         than expected. Close the file before removing it.
5659
5660 2009-08-15  Eric Blake  <ebb9@byu.net>
5661
5662         fpurge: don't wrap working cygwin implementation
5663         * lib/fpurge.c (fpurge): Fix comment typo.
5664         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
5665         1.7 to avoid replacement.
5666         * tests/test-fpurge.c (main): Enhance test.
5667
5668 2009-08-15  Eric Blake  <ebb9@byu.net>
5669         and Jim Meyering  <meyering@redhat.com>
5670
5671         test-update-copyright: skip if perl is insufficient
5672         * tests/test-update-copyright.sh: Failure to run maintainer tool
5673         should not cause testsuite failure on cygwin 1.5.
5674
5675 2009-08-14  Eric Blake  <ebb9@byu.net>
5676
5677         doc: mention more functions added in cygwin 1.7.0
5678         * doc/posix-headers/limits.texi (limits.h): Update for recent
5679         cygwin additions.
5680         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
5681         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
5682         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
5683         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
5684         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
5685
5686 2009-08-14  Eric Blake  <ebb9@byu.net>
5687
5688         maint.mk: simplify update-copyright rule
5689         * top/maint.mk (update-copyright-local): Delete, and document how
5690         to do it in cfg.mk instead.
5691         (update-copyright-exclude-regexp): Delete, and document how to do
5692         it in .x-update-copyright instead.
5693         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
5694         exclude ChangeLog.
5695
5696 2009-08-14  Bruno Haible  <bruno@clisp.org>
5697
5698         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
5699
5700 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5701
5702         maint.mk: support update-copyright-env
5703         * top/maint.mk (update-copyright-env): Define place-holder.
5704         (update-copyright): Expand $(update-copyright-env) before
5705         invoking update-copyright.
5706
5707 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5708
5709         update-copyright: implement forced reformatting
5710         * build-aux/update-copyright: Implement and document
5711         UPDATE_COPYRIGHT_FORCE.
5712         * tests/test-update-copyright.sh: Test it.
5713
5714 2009-08-14  Eric Blake  <ebb9@byu.net>
5715         and Bruno Haible  <bruno@clisp.org>
5716
5717         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
5718         * tests/test-locale.c: Revert previous patch related to NULL.
5719         * tests/test-stdio.c: Likewise.
5720         * tests/test-stdlib.c: Likewise.
5721         * tests/test-string.c: Likewise.
5722         * tests/test-unistd.c: Likewise.
5723         * modules/time-tests (Depends-on): Add verify.
5724         * modules/wchar-tests (Depends-on): Likewise.
5725         * tests/test-time.c: Test for NULL compliance.
5726         * tests/test-wchar.c: Likewise.
5727         * modules/locale (Depends-on): Add stddef.
5728         * modules/stdio (Depends-on): Likewise.
5729         * modules/stdlib (Depends-on): Likewise.
5730         * modules/string (Depends-on): Likewise.
5731         * modules/time (Depends-on): Likewise.
5732         * modules/unistd (Depends-on): Likewise.
5733         * modules/wchar (Depends-on): Likewise.
5734         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
5735         * lib/stdlib.in.h (includes): Likewise.
5736         * lib/string.in.h (includes): Likewise.
5737         * lib/time.in.h (includes): Likewise.
5738         * lib/unistd.in.h (includes): Likewise.
5739         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
5740         replaced.
5741         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5742         * m4/stddef_h.m4: New file.
5743         * modules/stddef: Likewise.
5744         * lib/stddef.in.h: Likewise.
5745         * modules/stddef-tests: Likewise.
5746         * tests/test-stddef.c: Likewise.
5747         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
5748         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
5749         * doc/posix-headers/locale.texi (locale.h): Likewise.
5750         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
5751         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
5752         * doc/posix-headers/string.texi (string.h): Likewise.
5753         * doc/posix-headers/time.texi (time.h): Likewise.
5754         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
5755         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
5756
5757 2009-08-14  Eric Blake  <ebb9@byu.net>
5758
5759         doc: improve git diff of texinfo files
5760         * .gitattributes: Add rule for *.texi files, with hint on how to
5761         use it.
5762         Copied from m4, and based on a report by Bruno Haible.
5763
5764 2009-08-14  Bruno Haible  <bruno@clisp.org>
5765
5766         Disable multithread support by default on Cygwin 1.5.x for real.
5767         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
5768
5769 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5770
5771         update-copyright: much ado about intervals
5772         * build-aux/update-copyright: Implement and document
5773         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
5774         of copyright year intervals.
5775         Also, document UPDATE_COPYRIGHT_YEAR.
5776         * tests/test-update-copyright.sh: Test it.
5777
5778         update-copyright: convert 2-digit to 4-digit years
5779         * build-aux/update-copyright: Implement and document.
5780         * tests/test-update-copyright.sh: Update.
5781
5782 2009-08-14  Jim Meyering  <meyering@redhat.com>
5783
5784         test-exclude: avoid coreutils "make check" failure
5785         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
5786         just as in test-argmatch.c.
5787
5788 2009-08-13  Eric Blake  <ebb9@byu.net>
5789
5790         test-dup2: fix bad assumption
5791         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
5792         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
5793
5794         test-version-etc: fix CRLF portability issue
5795         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
5796         recognize \r.
5797         * tests/test-argp-version-etc-1.sh: Likewise.
5798
5799         getopt: update client modules
5800         * modules/argp (Depends-on): Use getopt-gnu.
5801         * modules/git-merge-changelog (Depends-on): Likewise.
5802         * modules/long-options (Depends-on): Likewise.
5803         * modules/xstrtol (Depends-on): Likewise.
5804
5805 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5806
5807         * tests/test-version-etc.sh: Don't fail on different
5808         project/version.  Don't fail on CRLF differences.  Rewrite to use
5809         multiple -e instead of multiple sed forks, suggested by Eric Blake
5810         <ebb9@byu.net>.
5811         * tests/test-argp-version-etc-1.sh: Likewise.
5812
5813 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5814
5815         * tests/test-version-etc.sh: Don't fail on different
5816         project/version.
5817
5818 2009-08-12  Bruno Haible  <bruno@clisp.org>
5819
5820         Tests for modules 'getopt-posix', 'getopt-gnu'.
5821         * modules/getopt-posix-tests: New file.
5822         * tests/test-getopt.c: New file.
5823         * tests/test-getopt.h: New file.
5824         * tests/test-getopt_long.h: New file.
5825
5826         New modules 'getopt-posix', 'getopt-gnu'.
5827         * modules/getopt-gnu: New file, renamed from modules/getopt.
5828         * modules/getopt-posix: New file.
5829         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
5830         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
5831         (gl_GETOPT): Remove macro.
5832         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
5833         Disable the test against BSD systems that declare optreset. Test
5834         against mingw bug. Test against lack of support of optional arguments
5835         on many platforms.
5836         * doc/glibc-headers/getopt.texi: Update module name and list of
5837         relevant platforms.
5838         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
5839         'getopt-gnu' and more portability problems.
5840         * NEWS: Mention the changes.
5841
5842 2009-08-12  Bruno Haible  <bruno@clisp.org>
5843
5844         Ensure that optarg etc. get declared by <unistd.h>.
5845         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
5846         AC_USE_SYSTEM_EXTENSIONS.
5847         * modules/getopt (Depends-on): Add 'extensions'.
5848
5849 2009-08-12  Bruno Haible  <bruno@clisp.org>
5850
5851         Avoid test link errors.
5852         * modules/pipe-filter-ii-tests (Makefile.am): Define
5853         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
5854         * modules/pipe-filter-gi-tests (Makefile.am): Define
5855         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
5856         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5857
5858 2009-08-12  Bruno Haible  <bruno@clisp.org>
5859
5860         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
5861         gl_GETOPT_SUBSTITUTE before.
5862         (gl_GETOPT): Use it.
5863         * m4/argp.m4 (gl_ARGP): Update.
5864         Reported by Sergey Poznyakoff.
5865
5866         * m4/getopt.m4: Reorder macros.
5867         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
5868         (gl_GETOPT_SUBSTITUTE): Remove macro.
5869
5870 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5871
5872         Minor improvement in gitlog-to-changelog
5873
5874         * build-aux/gitlog-to-changelog: New option `--format' makes
5875         output format string configurable.
5876
5877 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5878
5879         Optimize exclude: use hash tables for non-wildcard patterns.
5880
5881         * lib/exclude.c: Include hash.h and mbuiter.h
5882         (struct exclude_pattern, exclude_segment): New data types.
5883         (struct exclude): Rewrite.
5884         (fnmatch_pattern_has_wildcards): New function.
5885         (new_exclude_segment, free_exclude_segment): New functions.
5886         (excluded_file_pattern_p, excluded_file_name_p): New functions.
5887         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
5888         * lib/exclude.h (is_fnmatch_pattern): New prototype.
5889         * modules/exclude: Depend on hash and mbuiter.
5890
5891         * modules/exclude-tests: New file.
5892         * tests/test-exclude.c: New file.
5893         * tests/test-exclude1.sh: New file.
5894         * tests/test-exclude2.sh: New file.
5895         * tests/test-exclude3.sh: New file.
5896         * tests/test-exclude4.sh: New file.
5897         * tests/test-exclude5.sh: New file.
5898         * tests/test-exclude6.sh: New file.
5899         * tests/test-exclude7.sh: New file.
5900
5901 2009-08-12  Bruno Haible  <bruno@clisp.org>
5902
5903         Ensure that getopt() gets declared by <unistd.h>.
5904         * lib/unistd.in.h: Conditionally include getopt.h.
5905         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
5906         Set GNULIB_UNISTD_H_GETOPT.
5907         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5908         GNULIB_UNISTD_H_GETOPT.
5909         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
5910
5911 2009-08-12  Bruno Haible  <bruno@clisp.org>
5912
5913         Clarify logic.
5914         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
5915         gl_replace_getopt instead of GETOPT_H.
5916
5917 2009-08-12  Bruno Haible  <bruno@clisp.org>
5918
5919         * m4/getopt.m4: Add comments.
5920
5921 2009-08-12  Bruno Haible  <bruno@clisp.org>
5922
5923         Disable multithread support by default on Cygwin 1.5.x.
5924         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
5925         set gl_use_threads=no if not specified otherwise.
5926
5927 2009-08-11  Bruno Haible  <bruno@clisp.org>
5928
5929         Avoid compilation error on NetBSD 5.0.
5930         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
5931         * tests/test-stdio.c: Likewise.
5932         * tests/test-stdlib.c: Likewise.
5933         * tests/test-string.c: Likewise.
5934         * tests/test-unistd.c: Likewise.
5935         Reported by Greg Troxel <gdt@ir.bbn.com>
5936         at <https://savannah.gnu.org/support/?106973>.
5937
5938 2009-08-11  Bruno Haible  <bruno@clisp.org>
5939
5940         * modules/dup2-tests (Depends-on): Remove close.
5941
5942         Undo 2009-07-19 commit.
5943         * modules/acl-tests (Depends-on): Remove close.
5944         * modules/binary-io-tests (Depends-on): Likewise.
5945         * modules/closein-tests (Depends-on): Likewise.
5946         * modules/flock-tests (Depends-on): Likewise.
5947         * modules/fsync-tests (Depends-on): Likewise.
5948         * modules/lseek-tests (Depends-on): Likewise.
5949         * modules/pipe-tests (Depends-on): Likewise.
5950         * modules/posix_spawn-tests (Depends-on): Likewise.
5951         * modules/posix_spawnp-tests (Depends-on): Likewise.
5952         * modules/stat-time-tests (Depends-on): Likewise.
5953         * modules/yesno-tests (Depends-on): Likewise.
5954
5955 2009-08-10  Bruno Haible  <bruno@clisp.org>
5956
5957         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
5958
5959 2009-08-10  Bruno Haible  <bruno@clisp.org>
5960
5961         Fix a gcc warning.
5962         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
5963
5964 2009-08-10  Bruno Haible  <bruno@clisp.org>
5965
5966         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
5967         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
5968         not only the first time.
5969         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
5970         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
5971         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
5972         is 1, not only the the first time.
5973
5974 2009-08-10  Bruno Haible  <bruno@clisp.org>
5975
5976         Make it possible to use module 'gethostname' without module 'close'.
5977         * lib/unistd.in.h (close): Evoke a link error only if
5978         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5979         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5980         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5981         * modules/unistd (Makefile.am): Substitute
5982         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5983         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
5984         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5985         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
5986         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5987         * modules/sys_ioctl (Makefile.am): Substitute
5988         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5989         * modules/socket (configure.ac): On native Windows, set
5990         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
5991         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5992         Reported by Sam Steingold <sds@gnu.org>.
5993
5994 2009-08-10  Bruno Haible  <bruno@clisp.org>
5995
5996         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
5997         * modules/ioctl (configure.ac): Likewise.
5998
5999 2009-08-10  Bruno Haible  <bruno@clisp.org>
6000
6001         Avoid collision between gnulib wrapper and libintl wrapper.
6002         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
6003         already defined in intl/printf.c.
6004         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
6005         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
6006
6007 2009-08-09  Bruno Haible  <bruno@clisp.org>
6008
6009         Make <sys/select.h> really self-contained, also on Solaris 10.
6010         * lib/sys_select.in.h: Include <string.h>.
6011         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
6012         Solaris 10 problem.
6013         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
6014         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
6015         Reported by Jim Meyering.
6016
6017 2009-08-09  Bruno Haible  <bruno@clisp.org>
6018
6019         Avoid warnings from 'aclocal' that are due to a use of macro name
6020         AM_XGETTEXT_OPTION that is not defined in automake.
6021         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
6022         automake.
6023         * modules/error (configure.ac): Likewise.
6024         * modules/propername (configure.ac): Likewise.
6025         * modules/vasprintf (configure.ac): Likewise.
6026         * modules/verror (configure.ac): Likewise.
6027         * modules/xprintf (configure.ac): Likewise.
6028         * modules/xvasprintf (configure.ac): Likewise.
6029
6030 2009-08-08  Bruno Haible  <bruno@clisp.org>
6031
6032         Avoid compilation error in C++ mode.
6033         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
6034         Reported by Sam Steingold <sds@gnu.org>.
6035
6036 2009-08-08  Bruno Haible  <bruno@clisp.org>
6037
6038         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
6039         for the various Unix platforms.
6040         * doc/posix-headers/limits.texi: Update platforms list regarding
6041         HOST_NAME_MAX.
6042         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
6043
6044 2009-08-07  Jim Meyering  <meyering@redhat.com>
6045
6046         selinux-at: fix typo in a comment
6047         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
6048         Spotted by Paolo Bonzini.
6049
6050         selinux-at: remove redundant m4 code, add documentation
6051         * modules/selinux-at (configure.ac): Remove redundant code.
6052         LIB_SELINUX is already set via the dependent module, selinux-h.
6053         (Include): Add quotes around selinux-at.h.
6054         * lib/selinux-at.h: Add documentation.
6055         Reported by Bruno Haible in
6056         http://marc.info/?l=gnulib-bug&m=124958988300749
6057
6058 2009-08-07  Bruno Haible  <bruno@clisp.org>
6059
6060         Avoid link error on MacOS X 10.3 and 10.4.
6061         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
6062         on non-ELF systems.
6063         * lib/argp-pv.c (argp_program_version): Likewise.
6064         Reported by Simon Josefsson.
6065
6066 2009-08-07  Simon Josefsson  <simon@josefsson.org>
6067
6068         * tests/test-version-etc.sh: Use $EXEEXT.
6069
6070 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
6071
6072         update-copyright: update documentation to point to maint.mk
6073         * build-aux/update-copyright: Here.
6074
6075 2009-08-06  Jim Meyering  <meyering@redhat.com>
6076
6077         maint.mk: support update-copyright-local
6078         * top/maint.mk (update-copyright-local): Define place-holder.
6079         (update-copyright): Depend on $(update-copyright-local).
6080
6081 2009-08-06  Jim Meyering  <meyering@redhat.com>
6082
6083         selinux-at: new module
6084         Initially written for coreutils, this module will soon be
6085         used by findutils, too.
6086         * MODULES.html.sh [Misc]: Add selinux-at.
6087         * lib/selinux-at.h: New file, from coreutils.
6088         * lib/selinux-at.c: Likewise.
6089         * modules/selinux-at: Likewise.
6090         (License): Change from LGPL to GPL, since it depends
6091         on the GPL'd openat module.
6092
6093         doc: update README
6094         * README: Remove references to cogito.
6095         Remove cvs-repo-updating instructions from 2007.
6096         Don't imply that CVS is better if you have limited disk space.
6097
6098 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6099
6100         update-copyright: support C-style comments
6101         * build-aux/update-copyright: Implement and document.
6102         * tests/test-update-copyright.sh: Test.
6103
6104 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6105
6106         update-copyright: support omitted "(C)"
6107         * build-aux/update-copyright: Implement and document.  Also,
6108         allow variable whitespace before "(C)".
6109         * tests/test-update-copyright.sh: Test.
6110
6111 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6112
6113         update-copyright: don't trip on non-FSF copyright statements
6114         * build-aux/update-copyright: Fix so that the first correctly
6115         formatted FSF copyright statement is recognized no matter what
6116         appears before it.  Update documentation.
6117         * tests/test-update-copyright.sh: Test that.
6118
6119 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6120
6121         update-copyright: clean up code a little
6122         * build-aux/update-copyright: Append "_re" to the name of any
6123         variable holding a regular expression.
6124         Replace "old" and "new" with "stmt" in variable names.
6125         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
6126         handled correctly.
6127         Format code more consistently.
6128
6129 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6130
6131         update-copyright-tests: improve portability
6132         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
6133         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
6134
6135 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
6136
6137         update-copyright: support @copyright{} and &copy;
6138         * build-aux/update-copyright: Implement and document.
6139         * tests/test-update-copyright.sh: Test.
6140
6141 2009-08-04  Jim Meyering  <meyering@redhat.com>
6142
6143         update-copyright-tests: correctly test EOL=\r\n handling
6144         * tests/test-update-copyright.sh: Put \r at the end of some lines
6145         for the dos-eol tests.  Based on a patch by Joel E. Denny.
6146
6147         maint.mk: make update-copyright exclusion list more configurable
6148         * top/maint.mk (update-copyright): Default to excluding COPYING,
6149         but allow an override, in case someone does want to update that file.
6150
6151         maint.mk: don't update copyright date in COPYING
6152         * top/maint.mk (update-copyright): Exclude COPYING.
6153
6154         maint.mk: add a copyright-updating rule
6155         * top/maint.mk (update-copyright): New rule.
6156         Derived from coreutils/Makefile.am.
6157
6158         update-copyright: rename some variables
6159         * build-aux/update-copyright: Rename a few variables for clarity.
6160         Tweak syntax.  List Joel E. Denny as coauthor.
6161
6162 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
6163
6164         update-copyright: fix bug for 2-digit last year and add tests
6165         * build-aux/update-copyright: Fix bug.
6166         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
6167         specified.
6168         * modules/update-copyright-tests: New
6169         * tests/test-update-copyright.sh: New.
6170
6171 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
6172
6173         update-copyright: handle leading tabs in line prefix
6174         * build-aux/update-copyright: Count leading tabs as 8 spaces
6175         when computing margin.  This helps with the formatting of
6176         ChangeLogs, for example.
6177         Fix documentation a little.
6178
6179 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
6180
6181         update-copyright: support EOL=\r\n
6182         * build-aux/update-copyright: Implement that.
6183
6184 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
6185
6186         update-copyright: automatically format copyright statements
6187         * build-aux/update-copyright: Implement that.
6188         Also, be a little more predictable and safer by always failing
6189         when the full copyright format is not perfectly recognized as an
6190         unbroken whole.  Discussed at
6191         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
6192         Rewrite documentation.
6193
6194 2009-08-03  Bruno Haible  <bruno@clisp.org>
6195
6196         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
6197
6198 2009-08-02  Bruno Haible  <bruno@clisp.org>
6199
6200         Tests for module 'uname'.
6201         * modules/uname-tests: New file.
6202         * tests/test-uname.c: New file.
6203
6204         New module 'uname'.
6205         * lib/uname.c: New file.
6206         * m4/uname.m4: New file.
6207         * modules/uname: New file.
6208         * doc/posix-functions/uname.texi: Mention the new module.
6209
6210 2009-08-02  Bruno Haible  <bruno@clisp.org>
6211
6212         Tests for module 'sys_utsname'.
6213         * modules/sys_utsname-tests: New file.
6214         * tests/test-sys_utsname.c: New file.
6215
6216         New module 'sys_utsname'.
6217         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
6218         * m4/sys_utsname_h.m4: New file.
6219         * modules/sys_utsname: New file.
6220         * doc/posix-headers/sys_utsname.texi: Mention the new module.
6221
6222 2009-08-02  Bruno Haible  <bruno@clisp.org>
6223
6224         Implicitly initialize the sockets library.
6225         * lib/gethostname.c: Include sockets.h.
6226         (rpl_gethostname): Invoke gl_sockets_startup.
6227         * lib/socket.c: Include sockets.h.
6228         (rpl_socket): Invoke gl_sockets_startup.
6229         * modules/gethostname (Depends-on): Add sockets.
6230         * modules/socket (Depends-on): Likewise.
6231         * tests/test-poll.c: Don't include sockets.h.
6232         (main): Don't invoke gl_sockets_startup.
6233         * tests/test-select.c: Don't include sockets.h.
6234         (main): Don't invoke gl_sockets_startup.
6235
6236 2009-08-02  Bruno Haible  <bruno@clisp.org>
6237
6238         Allow multiple calls to gl_sockets_startup.
6239         * lib/sockets.c (initialized_sockets_version): New variable.
6240         (gl_sockets_startup): Do nothing if already called for this or a higher
6241         version.
6242         (gl_sockets_cleanup): Reset initialized_sockets_version.
6243
6244 2009-08-03  Simon Josefsson  <simon@josefsson.org>
6245
6246         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
6247         different project/version.
6248
6249 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
6250             Bruno Haible  <bruno@clisp.org>
6251
6252         Tests for module 'pipe-filter-gi'.
6253         * modules/pipe-filter-gi-tests: New file.
6254         * tests/test-pipe-filter-gi1.sh: New file.
6255         * tests/test-pipe-filter-gi1.c: New file.
6256         * tests/test-pipe-filter-gi2.sh: New file.
6257         * tests/test-pipe-filter-gi2-main.c: New file.
6258         * tests/test-pipe-filter-gi2-child.c: New file.
6259
6260         New module 'pipe-filter-gi'.
6261         * lib/pipe-filter-gi.c: New file.
6262         * modules/pipe-filter-gi: New file.
6263
6264 2009-08-02  Bruno Haible  <bruno@clisp.org>
6265             Paolo Bonzini  <bonzini@gnu.org>
6266
6267         Tests for module 'pipe-filter-ii'.
6268         * modules/pipe-filter-ii-tests: New file.
6269         * tests/test-pipe-filter-ii1.sh: New file.
6270         * tests/test-pipe-filter-ii1.c: New file.
6271         * tests/test-pipe-filter-ii2.sh: New file.
6272         * tests/test-pipe-filter-ii2-main.c: New file.
6273         * tests/test-pipe-filter-ii2-child.c: New file.
6274
6275         New module 'pipe-filter-ii'.
6276         * lib/pipe-filter.h: New file.
6277         * lib/pipe-filter-ii.c: New file.
6278         * lib/pipe-filter-aux.h: New file.
6279         * modules/pipe-filter-ii: New file.
6280
6281 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6282
6283         * lib/gc-libgcrypt.c: Change copyright to FSF.
6284         * lib/gc-gnulib.c: Likewise.
6285
6286 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
6287
6288         * lib/gethostname.c: Include limits.h.
6289
6290 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6291             Bruno Haible  <bruno@clisp.org>
6292
6293         Ensure HOST_NAME_MAX as part of the gethostname module.
6294         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
6295         define also HOST_NAME_MAX.
6296         * tests/test-gethostname.c: Include <limits.h>.
6297         (main): Check also HOST_NAME_MAX.
6298         * doc/posix-headers/limits.texi: Document the mingw problem.
6299
6300 2009-08-02  Bruno Haible  <bruno@clisp.org>
6301
6302         * lib/gethostname.c (gethostname): Fix handling of large len argument.
6303         Add comments.
6304
6305 2009-03-31  Simon Josefsson  <simon@josefsson.org>
6306
6307         * lib/gethostname.c: Add Windows wrapper.
6308         * m4/gethostname.m4: Look for gethostname in -lws2_32.
6309         * modules/gethostname: Depend on sys_socket & errno, for also
6310         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
6311         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
6312
6313 2009-07-31  Jim Meyering  <meyering@redhat.com>
6314
6315         getloadavg: fix symbol name in comment
6316         * lib/getloadavg.c: Correct a typo I introduced when adding
6317         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
6318         Matt Kraai spotted the problem.
6319
6320 2009-07-29  Matt Kraai  <mkraai@beckman.com>
6321
6322         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
6323         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
6324         code also if ! defined N_NAME_POINTER.
6325         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
6326         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
6327         but the n_name member is a 12-byte array.
6328
6329 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
6330
6331         update-copyright: generalize comment handling
6332         * build-aux/update-copyright: Handle copyright statements
6333         within more comment styles.
6334         Document usage.
6335         Report any file with an external copyright holder or parse failure.
6336
6337 2009-07-29  Jim Meyering  <meyering@redhat.com>
6338
6339         mktime: correct setting of REPLACE_MKTIME
6340         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
6341
6342         update-copyright: new module
6343         * modules/update-copyright: New file.
6344         * build-aux/update-copyright: New file.
6345         * MODULES.html.sh (maint+release support): Add update-copyright.
6346
6347 2009-07-27  Bruno Haible  <bruno@clisp.org>
6348
6349         Fix compilation error when <ctime> is used and mktime is replaced.
6350         * lib/time.in.h (mktime): New declaration.
6351         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
6352         REPLACE_MKTIME instead of defining mktime in config.h.
6353         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
6354         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
6355         Reported by Ross McFarland <rwmcfa1@neces.com>.
6356
6357 2009-07-27  Bruno Haible  <bruno@clisp.org>
6358
6359         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
6360         Reported by Matt Kraai <mkraai@beckman.com>.
6361
6362 2009-07-25  Jim Meyering  <meyering@redhat.com>
6363
6364         maint.mk: avoid warnings about missing files
6365         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
6366         diagnostic when .prev-version does not exist.
6367         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
6368         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
6369         nonexistent cfg.mk.
6370         Suggestions from Simon Josefsson.
6371
6372 2009-07-25  Bruno Haible  <bruno@clisp.org>
6373
6374         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
6375         defined as macros. Needed on QNX 6.4.1.
6376         Reported by Matt Kraai <mkraai@beckman.com>.
6377
6378 2009-07-23  Jim Meyering  <meyering@redhat.com>
6379
6380         maint.mk: invoke "make dist" with a working value of XZ_OPT
6381         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
6382
6383 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
6384
6385         Make fseeko.c compile on QNX.
6386         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
6387
6388 2009-07-22  Peter Simons  <simons@cryp.to>
6389
6390         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
6391         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
6392         * lib/md4.h: Likewise.
6393         * lib/md5.h: Likewise.
6394         * lib/sha1.h: Likewise.
6395         * lib/sha256.h: Likewise.
6396         * lib/sha512.h: Likewise.
6397
6398         tests-sha1: don't assign literal string to 'char *' variable
6399         * tests/test-sha1.c (main): Declare locals with "const" to match
6400         attributes of the right hand side.
6401
6402 2009-07-21  Eric Blake  <ebb9@byu.net>
6403
6404         dup2: fix more mingw problems
6405         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
6406         fd to itself.
6407         * doc/posix-functions/dup2.texi (dup2): Document the bug.
6408         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
6409         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
6410         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
6411         care of mingw bugs.
6412
6413 2009-07-21  Jim Meyering  <meyering@redhat.com>
6414
6415         vc-list-files: avoid failure when /bin/sh is dash
6416         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
6417         On some Debian based systems, /bin/sh is a symlink to dash, and running
6418         this command would omit the "/" following each 'tests' prefix:
6419           dash -x build-aux/vc-list-files -C . tests
6420         That is because bash and dash work differently:
6421           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
6422           bash ok
6423           dash odd
6424
6425 2009-07-21  Eric Blake  <ebb9@byu.net>
6426
6427         dup2-tests: test previous patch
6428         * modules/dup2-tests: New file.
6429         * tests/test-dup2.c: Likewise.
6430         * tests/test-open.c (main): Avoid unspecified behavior.
6431         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
6432         test.
6433
6434         dup2: work around mingw and cygwin 1.5 bug
6435         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
6436         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6437         * modules/unistd (Makefile.am): Substitute it.
6438         * lib/unistd.in.h (dup2): Declare the replacement.
6439         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
6440         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
6441         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
6442         * modules/execute (Depends-on): Add dup2.
6443         * modules/fseterr (Depends-on): Likewise.
6444         * modules/pipe (Depends-on): Likewise.
6445         * modules/posix_spawn-internal (Depends-on): Likewise.
6446
6447 2009-07-21  Bruno Haible  <bruno@clisp.org>
6448
6449         * modules/.gitattributes: New file.
6450
6451 2009-07-20  Bruno Haible  <bruno@clisp.org>
6452
6453         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
6454         (main): Use it.
6455
6456 2009-07-20  Eric Blake  <ebb9@byu.net>
6457
6458         test-pipe: make a bit more robust.
6459         * tests/test-pipe.c (myerr): Allow error messages regardless of
6460         what we do to stderr.
6461         (test_pipe): Rearrange to avoid deadlock.
6462         (child_main): Try a larger read, to ensure we avoided deadlock.
6463         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
6464         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
6465         if misused.
6466
6467 2009-07-19  Jim Meyering  <meyering@redhat.com>
6468
6469         fts: avoid false-positive cycle-detection
6470         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
6471         for each new command line argument.
6472
6473 2009-07-19  Bruno Haible  <bruno@clisp.org>
6474
6475         Fix build error on mingw with the modules sys_select and unistd.
6476         * modules/acl-tests (Depends-on): Add close.
6477         * modules/binary-io-tests (Depends-on): Likewise.
6478         * modules/closein-tests (Depends-on): Likewise.
6479         * modules/flock-tests (Depends-on): Likewise.
6480         * modules/fsync-tests (Depends-on): Likewise.
6481         * modules/lseek-tests (Depends-on): Likewise.
6482         * modules/pipe-tests (Depends-on): Likewise.
6483         * modules/posix_spawn-tests (Depends-on): Likewise.
6484         * modules/posix_spawnp-tests (Depends-on): Likewise.
6485         * modules/stat-time-tests (Depends-on): Likewise.
6486         * modules/yesno-tests (Depends-on): Likewise.
6487
6488 2009-07-19  Bruno Haible  <bruno@clisp.org>
6489
6490         Unify conditionals.
6491         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
6492         macros, not at the compiler macros.
6493         * lib/pipe.c: Likewise.
6494         * lib/execute.c: Likewise.
6495         * lib/spawni.c: Likewise.
6496
6497 2009-07-19  Bruno Haible  <bruno@clisp.org>
6498
6499         Fix handling of closed stdin/stdout/stderr on mingw.
6500         * lib/w32spawn.h: Include unistd.h.
6501         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
6502         file descriptor with O_NOINHERIT flag.
6503         (fd_safer_noinherit): New function, based on fd-safer.c.
6504         (dup_safer_noinherit): New function, based on dup-safer.c.
6505         (undup_safer_noinherit): New function.
6506         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
6507         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
6508         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
6509         instead of fd_safer.
6510         * tests/test-pipe.c: Include <windows.h>.
6511         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
6512
6513         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
6514         from main.
6515         (test_pipe): Pass an extra argument for disambiguation.
6516         (main): Invoke parent_main or child_main.
6517
6518         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
6519         consistently.
6520
6521 2009-07-18  Eric Blake  <ebb9@byu.net>
6522
6523         test-pipe: fix mingw build
6524         * tests/test-pipe.c (main): Avoid fcntl on mingw.
6525
6526 2009-07-18  Bruno Haible  <bruno@clisp.org>
6527
6528         * modules/pipe-tests (Makefile.am): Fix typo.
6529
6530 2009-07-18  Eric Blake  <ebb9@byu.net>
6531
6532         error: fix mingw build
6533         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
6534         Reported by Bruno Haible.
6535
6536         error: avoid undefined use of stdout
6537         * lib/error.c (error, error_at_line): Check that fd 1 is open
6538         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
6539         is handling faults and the close_stdout module wants to report the
6540         detection of closed stdout as an error.
6541
6542 2009-07-17  Eric Blake  <ebb9@byu.net>
6543
6544         pipe: be robust in face of closed fds
6545         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
6546         should cause child to misbehave.
6547         * modules/pipe-tests: New module.
6548         * tests/test-pipe.c: New file.
6549         * tests/test-pipe.sh: New file.
6550         Reported by Akim Demaille.
6551
6552 2009-07-14  Bruno Haible  <bruno@clisp.org>
6553
6554         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
6555         Reported by anonymous kc.
6556
6557 2009-07-07  Jim Meyering  <meyering@redhat.com>
6558
6559         maint.mk: don't look for translatable strings in *.m4 or *.mk
6560         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
6561         when searching for translatable strings.
6562
6563 2009-07-05  Jim Meyering  <meyering@redhat.com>
6564
6565         remove superfluous parentheses in STREQ definition
6566         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
6567         * lib/getugroups.c (STREQ): Likewise.
6568         * lib/fnmatch.c (STREQ): Likewise.
6569         Spotted by Bruno Haible.
6570
6571 2009-07-04  Jim Meyering  <meyering@redhat.com>
6572
6573         argv-iter: new module
6574         * MODULES.html.sh: Add argv-iter.
6575         * lib/argv-iter.c, lib/argv-iter.h: New files.
6576         * modules/argv-iter: New file.
6577         * modules/argv-iter-tests: New file.
6578         * tests/test-argv-iter.c: Test it.
6579
6580 2009-07-04  Bruno Haible  <bruno@clisp.org>
6581
6582         Fix assertion.
6583         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
6584         contains more exact copies of a given entry than file2, leave the extra
6585         copies unpaired rather than aborting.
6586         Reported by Eric Blake.
6587
6588 2009-07-02  Bruno Haible  <bruno@clisp.org>
6589
6590         Speedup git-merge-changelog for git cherry-pick.
6591         * lib/git-merge-changelog.c (struct entries_mapping): New type.
6592         (entries_mapping_get): New function, extracted from compute_mapping.
6593         (entries_mapping_reverse_get): New function.
6594         (compute_mapping): Add a 'full' argument. Return the result in a
6595         'struct entries_mapping'.
6596         (main): Update. Access the mappings through entries_mapping_get.
6597         Reported by Eric Blake.
6598
6599 2009-07-02  Bruno Haible  <bruno@clisp.org>
6600
6601         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
6602         best_i.
6603
6604 2009-07-02  Bruno Haible  <bruno@clisp.org>
6605
6606         Speed up approximate search for matching ChangeLog entries.
6607         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
6608         argument. Call fstrcmp_bounded instead of fstrcmp.
6609         (compute_mapping, try_split_merged_entry, main): Update callers.
6610
6611 2009-07-02  Bruno Haible  <bruno@clisp.org>
6612
6613         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
6614
6615 2009-06-30  Bruno Haible  <bruno@clisp.org>
6616
6617         Reduce the number of uc_is_cased calls.
6618         * lib/unicase.h (casing_suffix_context_t): Add
6619         'first_char_except_ignorable' field.
6620         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
6621         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
6622         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
6623         Update initializer.
6624         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
6625         case-ignorable characters.
6626         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
6627         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
6628         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
6629         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
6630         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
6631
6632 2009-06-30  Bruno Haible  <bruno@clisp.org>
6633
6634         Tests for module 'unicase/ignorable'.
6635         * modules/unicase/ignorable-tests: New file.
6636         * tests/unicase/test-ignorable.c: New file, generated by
6637         gen-uni-tables.
6638
6639         Tests for module 'unicase/cased'.
6640         * modules/unicase/cased-tests: New file.
6641         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
6642         * tests/unicase/test-predicate-part1.h: New file, derived from
6643         tests/unictype/test-predicate-part1.h.
6644         * tests/unicase/test-predicate-part2.h: New file, same as
6645         tests/unictype/test-predicate-part2.h.
6646
6647         Fix evaluation of "Before C" condition of FINAL_SIGMA.
6648         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
6649         (output_casing_properties): New function.
6650         (main): Call it.
6651         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
6652         * lib/unicase/cased.c: Include unictype/bitmap.h.
6653         (uc_is_cased): Define through a bitmap lookup.
6654         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
6655         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
6656         (uc_is_case_ignorable): Define through a bitmap lookup.
6657         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
6658         lib/unictype/bitmap.h.
6659         (Depends-on): Add inline. Clean up.
6660         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
6661         lib/unictype/bitmap.h.
6662         (Depends-on): Add inline. Clean up.
6663         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
6664         recognition.
6665         * tests/unicase/test-u16-tolower.c (main): Likewise.
6666         * tests/unicase/test-u32-tolower.c (main): Likewise.
6667
6668 2009-06-30  Bruno Haible  <bruno@clisp.org>
6669
6670         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
6671         * lib/unicase/u16-casemap.c: Likewise.
6672         * lib/unicase/u32-casemap.c: Likewise.
6673
6674 2009-06-29  Bruno Haible  <bruno@clisp.org>
6675
6676         Define u32_casefold as a wrapper around u32_ct_casefold.
6677         * lib/unicase/u32-casefold.c: Update.
6678         * modules/unicase/u32-casefold (Depends-on): Add
6679         unicase/u32-ct-casefold, unicase/empty-prefix-context,
6680         unicase/empty-suffix-context. Clean up.
6681
6682         Define u16_casefold as a wrapper around u16_ct_casefold.
6683         * lib/unicase/u16-casefold.c: Update.
6684         * modules/unicase/u16-casefold (Depends-on): Add
6685         unicase/u16-ct-casefold, unicase/empty-prefix-context,
6686         unicase/empty-suffix-context. Clean up.
6687
6688         Define u8_casefold as a wrapper around u8_ct_casefold.
6689         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
6690         * lib/unicase/u8-casefold.c: Update.
6691         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
6692         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6693
6694         Define u32_totitle as a wrapper around u32_ct_totitle.
6695         * lib/unicase/u32-totitle.c: Update.
6696         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
6697         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6698
6699         Define u16_totitle as a wrapper around u16_ct_totitle.
6700         * lib/unicase/u16-totitle.c: Update.
6701         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
6702         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6703
6704         Define u8_totitle as a wrapper around u8_ct_totitle.
6705         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
6706         functions.
6707         (FUNC): Delegate to U_CT_TOTITLE.
6708         * lib/unicase/u8-totitle.c: Update.
6709         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
6710         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6711
6712         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
6713         invocation.
6714         * modules/unicase/u32-tolower (Depends-on): Add
6715         unicase/empty-prefix-context, unicase/empty-suffix-context.
6716
6717         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
6718         invocation.
6719         * modules/unicase/u16-tolower (Depends-on): Add
6720         unicase/empty-prefix-context, unicase/empty-suffix-context.
6721
6722         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
6723         * modules/unicase/u8-tolower (Depends-on): Add
6724         unicase/empty-prefix-context, unicase/empty-suffix-context.
6725
6726         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
6727         invocation.
6728         * modules/unicase/u32-toupper (Depends-on): Add
6729         unicase/empty-prefix-context, unicase/empty-suffix-context.
6730
6731         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
6732         invocation.
6733         * modules/unicase/u16-toupper (Depends-on): Add
6734         unicase/empty-prefix-context, unicase/empty-suffix-context.
6735
6736         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
6737         * modules/unicase/u8-toupper (Depends-on): Add
6738         unicase/empty-prefix-context, unicase/empty-suffix-context.
6739
6740         New module 'unicase/u32-ct-casefold'.
6741         * lib/unicase/u32-ct-casefold.c: New file.
6742         * modules/unicase/u32-ct-casefold: New file.
6743
6744         New module 'unicase/u16-ct-casefold'.
6745         * lib/unicase/u16-ct-casefold.c: New file.
6746         * modules/unicase/u16-ct-casefold: New file.
6747
6748         New module 'unicase/u8-ct-casefold'.
6749         * lib/unicase/u8-ct-casefold.c: New file.
6750         * lib/unicase/u-ct-casefold.h: New file, derived from
6751         lib/unicase/u-casefold.h.
6752         * modules/unicase/u8-ct-casefold: New file.
6753
6754         New module 'unicase/u32-ct-totitle'.
6755         * lib/unicase/u32-ct-totitle.c: New file.
6756         * modules/unicase/u32-ct-totitle: New file.
6757
6758         New module 'unicase/u16-ct-totitle'.
6759         * lib/unicase/u16-ct-totitle.c: New file.
6760         * modules/unicase/u16-ct-totitle: New file.
6761
6762         New module 'unicase/u8-ct-totitle'.
6763         * lib/unicase/u8-ct-totitle.c: New file.
6764         * lib/unicase/u-ct-totitle.h: New file, derived from
6765         lib/unicase/u-totitle.h.
6766         * modules/unicase/u8-ct-totitle: New file.
6767
6768         New module 'unicase/u32-ct-tolower'.
6769         * lib/unicase/u32-ct-tolower.c: New file.
6770         * modules/unicase/u32-ct-tolower: New file.
6771
6772         New module 'unicase/u16-ct-tolower'.
6773         * lib/unicase/u16-ct-tolower.c: New file.
6774         * modules/unicase/u16-ct-tolower: New file.
6775
6776         New module 'unicase/u8-ct-tolower'.
6777         * lib/unicase/u8-ct-tolower.c: New file.
6778         * modules/unicase/u8-ct-tolower: New file.
6779
6780         New module 'unicase/u32-ct-toupper'.
6781         * lib/unicase/u32-ct-toupper.c: New file.
6782         * modules/unicase/u32-ct-toupper: New file.
6783
6784         New module 'unicase/u16-ct-toupper'.
6785         * lib/unicase/u16-ct-toupper.c: New file.
6786         * modules/unicase/u16-ct-toupper: New file.
6787
6788         New module 'unicase/u8-ct-toupper'.
6789         * lib/unicase/u8-ct-toupper.c: New file.
6790         * modules/unicase/u8-ct-toupper: New file.
6791
6792         Add context arguments to u*_casemap functions.
6793         * lib/unicase/unicasemap.h: Include unicase.h.
6794         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
6795         suffix_context arguments.
6796         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
6797         functions.
6798         (FUNC): Add prefix_context and suffix_context arguments. Use
6799         uc_is_cased and uc_is_case_ignorable.
6800         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
6801         * lib/unicase/u16-casemap.c: Likewise.
6802         * lib/unicase/u32-casemap.c: Likewise.
6803         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
6804         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6805         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
6806         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6807         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
6808         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6809
6810         New module 'unicase/u32-suffix-context'.
6811         * lib/unicase/u32-suffix-context.c: New file.
6812         * modules/unicase/u32-suffix-context: New file.
6813
6814         New module 'unicase/u16-suffix-context'.
6815         * lib/unicase/u16-suffix-context.c: New file.
6816         * modules/unicase/u16-suffix-context: New file.
6817
6818         New module 'unicase/u8-suffix-context'.
6819         * lib/unicase/u8-suffix-context.c: New file.
6820         * lib/unicase/u-suffix-context.h: New file.
6821         * modules/unicase/u8-suffix-context: New file.
6822
6823         New module 'unicase/empty-suffix-context'.
6824         * lib/unicase/empty-suffix-context.c: New file.
6825         * modules/unicase/empty-suffix-context: New file.
6826
6827         New module 'unicase/u32-prefix-context'.
6828         * lib/unicase/u32-prefix-context.c: New file.
6829         * modules/unicase/u32-prefix-context: New file.
6830
6831         New module 'unicase/u16-prefix-context'.
6832         * lib/unicase/u16-prefix-context.c: New file.
6833         * modules/unicase/u16-prefix-context: New file.
6834
6835         New module 'unicase/u8-prefix-context'.
6836         * lib/unicase/u8-prefix-context.c: New file.
6837         * lib/unicase/u-prefix-context.h: New file.
6838         * lib/unicase/context.h: New file.
6839         * modules/unicase/u8-prefix-context: New file.
6840
6841         New module 'unicase/empty-prefix-context'.
6842         * lib/unicase/empty-prefix-context.c: New file.
6843         * modules/unicase/empty-prefix-context: New file.
6844
6845         New module 'unicase/ignorable'.
6846         * lib/unicase/ignorable.c: New file.
6847         * modules/unicase/ignorable: New file.
6848
6849         New module 'unicase/cased'.
6850         * lib/unicase/caseprop.h: New file.
6851         * lib/unicase/cased.c: New file.
6852         * modules/unicase/cased: New file.
6853
6854         New functions for case mapping of substrings.
6855         * lib/unicase.h (casing_prefix_context_t): New type.
6856         (unicase_empty_prefix_context): New variable.
6857         (u8_casing_prefix_context, u16_casing_prefix_context,
6858         u32_casing_prefix_context, u8_casing_prefixes_context,
6859         u16_casing_prefixes_context, u32_casing_prefixes_context): New
6860         declarations.
6861         (casing_suffix_context_t): New type.
6862         (unicase_empty_suffix_context): New variable.
6863         (u8_casing_suffix_context, u16_casing_suffix_context,
6864         u32_casing_suffix_context, u8_casing_suffixes_context,
6865         u16_casing_suffixes_context, u32_casing_suffixes_context,
6866         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
6867         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
6868         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
6869         declarations.
6870
6871 2009-06-28  Jim Meyering  <meyering@redhat.com>
6872
6873         boostrap: indent only with spaces
6874         * build-aux/bootstrap: Indent only with spaces, never TABs.
6875
6876         bootstrap: split long lines
6877         * build-aux/bootstrap: Keep line length < 80.
6878
6879         bootstrap: sync from coreutils
6880         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
6881         just as autoreconf does.  Verify a list of prerequisite
6882         package-name,version-number pairs if defined in bootstrap.conf.
6883         Refer to README-prereq, if prerequisites are not satisfied.
6884
6885 2009-06-27  Eric Blake  <ebb9@byu.net>
6886
6887         tests: add test for bogus NULL definition
6888         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
6889         * tests/test-stdlib.c: Likewise.
6890         * tests/test-string.c: Likewise.
6891         * tests/test-locale.c: Likewise.
6892         * tests/test-unistd.c: Likewise.
6893         * modules/stdio-tests (Depends-on): Add verify.
6894         * modules/stdlib-tests (Depends-on): Likewise.
6895         * modules/string-tests (Depends-on): Likewise.
6896         * modules/locale-tests (Depends-on): Likewise.
6897         * modules/unistd-tests (Depends-on): Likewise.
6898
6899 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
6900
6901         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
6902         self-explaining comment.
6903         * m4/selinux-selinux-h: Update serial.
6904         (gl_LIBSELINUX): New macro, adding a warning for missing development
6905         packages to code extracted from...
6906         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
6907         Add warning for missing development packages here, too.
6908
6909 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
6910
6911         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
6912
6913 2009-06-25  Eric Blake  <ebb9@byu.net>
6914
6915         version-etc: fix regression
6916         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
6917         gcc.
6918         (version_etc): Use it, to catch bugs with trailing NULL.
6919         * lib/version-etc.c (version_etc_arn): Delete unused argument.
6920         (version_etc_va): Fix logic bug.
6921         * modules/version-etc-tests: Add test.
6922         * tests/test-version-etc.c: New file.
6923         * tests/test-version-etc.sh: Likewise.
6924
6925 2009-06-25  Sam Steingold  <sds@gnu.org>
6926
6927         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
6928         mbtowc declaration.
6929
6930 2009-06-25  Eric Blake  <ebb9@byu.net>
6931
6932         fpurge: migrate into <stdio.h>
6933         * lib/fpurge.h: Delete...
6934         * lib/stdio.in.h (fpurge): ...and declare here, instead.
6935         * lib/fpurge.c (fpurge): Change declaring header.
6936         * modules/fpurge (Files): Drop deleted file.
6937         (Depends-on): Add stdio.
6938         (configure.ac): Set witness.
6939         * modules/stdio (Makefile.am): Support fpurge macros.
6940         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6941         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
6942         * lib/fflush.c: Update client.
6943         * tests/test-fpurge.c: Likewise.
6944         * NEWS: Mention the change.
6945
6946 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6947
6948         * lib/argp-version-etc.c (program_authors): Add const
6949         qualifier.
6950         * lib/version-etc.c: Fix typos in the comments.
6951         * modules/argp-version-etc: Depends on version-etc.
6952
6953 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6954
6955         argp-version-etc: new module.
6956
6957         * lib/argp-version-etc.c: New file.
6958         * lib/argp-version-etc.h: New file.
6959         * modules/argp-version-etc: New file.
6960         * modules/argp-version-etc-tests: New file.
6961         * tests/test-argp-version-etc.c: New test.
6962         * tests/test-argp-version-etc-1.sh: New test.
6963
6964 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6965
6966         Provide additional interfaces and documentation for version-etc
6967         module.
6968
6969         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
6970         interfaces.
6971         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
6972         prototypes.
6973
6974 2009-06-24  Bruno Haible  <bruno@clisp.org>
6975
6976         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
6977         HAVE_LIB${NAME} macro.
6978         Reported by Sam Steingold <sds@gnu.org>.
6979
6980 2009-06-23  Simon Josefsson  <simon@josefsson.org>
6981
6982         * modules/hash-tests (test_hash_LDADD): Link to libintl when
6983         needed.
6984
6985 2009-06-21  Bruno Haible  <bruno@clisp.org>
6986
6987         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
6988         work.
6989         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
6990         together with LIB${NAME}, LTLIB${NAME}.
6991         Reported by Sam Steingold <sds@gnu.org>.
6992
6993 2009-06-20  Jim Meyering  <meyering@redhat.com>
6994
6995         tests: make sc_require_test_exit_idiom more generic
6996         * top/maint.mk (Exit_witness_file): New overridable variable.
6997         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
6998         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
6999
7000 2009-06-19  Jim Meyering  <meyering@redhat.com>
7001
7002         hash: reverse order of src/dst parameters in an internal interface
7003         * lib/hash.c (transfer_entries): Reverse order of parameters to
7004         put DST before SRC.  Adjust callers.
7005
7006         tests: test-hash: avoid wholesale duplication
7007         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
7008         Instead, use a loop and add a single conditional.
7009
7010         tests: test-hash: allow seed selection via a command line argument
7011         * tests/test-hash.c (get_seed): New function.
7012         (main): Use it.
7013
7014 2009-06-19  Eric Blake  <ebb9@byu.net>
7015
7016         hash: avoid memory leak on allocation failure
7017         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
7018         failure.  Factor repeated algorithm...
7019         (transfer_entries): ...into new helper routine.
7020         (hash_delete): React to hash_rehash return value.
7021
7022         hash: reduce memory pressure in hash_rehash no-op case
7023         * lib/hash.c (next_prime): Avoid overflow.
7024         (hash_initialize): Factor bucket size computation...
7025         (compute_bucket_size): ...into new helper function.
7026         (hash_rehash): Use new function and open coding to reduce memory
7027         pressure, and avoid a memory leak in USE_OBSTACK code.
7028         Reported by Jim Meyering.
7029
7030 2009-06-18  Eric Blake  <ebb9@byu.net>
7031
7032         hash: make rotation more obvious
7033         * modules/hash (Depends-on): Add bitrotate and stdint.
7034         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
7035         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
7036         (SIZE_MAX): Rely on headers for definition.
7037         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
7038         (raw_hasher): Use rotr_sz.
7039         Suggested by Jim Meyering.
7040
7041         hash: fix memory leak in last patch
7042         * lib/hash.c (hash_rehash): Avoid memory leak.
7043
7044         hash: avoid no-op rehashing
7045         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
7046
7047         hash: provide default callback functions
7048         * lib/hash.c (raw_hasher, raw_comparator): New functions.
7049         (hash_initialize): Use them as defaults.
7050         * tests/test-hash.c (main): Test this.
7051
7052         hash: minor optimization
7053         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
7054         when possible.
7055         (hash_initialize): Document this promise.
7056         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
7057         * tests/test-hash.c (hash_compare_strings): Test this.
7058
7059 2009-06-18  Bruno Haible  <bruno@clisp.org>
7060
7061         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
7062         going to be replaced anyway.
7063
7064 2009-06-18  Bruno Haible  <bruno@clisp.org>
7065
7066         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
7067         in one place.
7068         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
7069         be replaced anyway.
7070
7071 2009-06-18  Eric Blake  <ebb9@byu.net>
7072
7073         hash: check for resize before insertion
7074         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
7075         threshold before insertion, so that a pathological hash_rehash
7076         that fills every bucket can still trigger another rehash.
7077
7078 2009-06-18  Jim Meyering  <meyering@redhat.com>
7079
7080         hash-tests: add a loop around the small tests
7081         * tests/test-hash.c (main): Repeat small tests with selected
7082         small initial table sizes.
7083
7084 2009-06-17  Eric Blake  <ebb9@byu.net>
7085
7086         hash: minor cleanups
7087         * lib/hash.h (hash_entry): Make opaque, by moving...
7088         * lib/hash.c (hash_entry): ...here.
7089         (hash_insert): Clarify restrictions on what can be inserted.
7090         (hash_get_next): Clarify when it is safe to remove an element
7091         during traversal.
7092         (check_tuning): Skip verification when tuning is known safe.
7093         (hash_initialize): Clarify restrictions on tuning.
7094
7095 2009-06-17  Jim Meyering  <jim@meyering.net>
7096         and Eric Blake  <ebb9@byu.net>
7097
7098         hash-tests: new module
7099         * modules/hash-tests: New file.
7100         * tests/test-hash.c: New file.
7101
7102 2009-06-17  Eric Blake  <ebb9@byu.net>
7103
7104         strstr-simple: document new module
7105         * MODULES.html.sh: Document new module.
7106
7107         strstr, strcasestr: replace on platforms with broken memchr
7108         * modules/strstr: Split into...
7109         * modules/strstr-simple: ...new module that does not care about
7110         performance, but does care about glibc bug.
7111         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
7112         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
7113         if platform memchr is broken, per Debian bug 521737.
7114         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
7115         memchr.
7116         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
7117         * doc/posix-functions/strstr.texi (strstr): Document the fix.
7118         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
7119         * modules/mountlist (Depends-on): Add strstr-simple.
7120         * modules/gen-uni-tables (Depends-on): Likewise.
7121         * modules/argz (Depends-on): Add strstr.
7122
7123 2009-06-17  Bruno Haible  <bruno@clisp.org>
7124
7125         * modules/posix_spawn-internal (Depends-on): Add errno.
7126
7127 2009-06-17  Bruno Haible  <bruno@clisp.org>
7128
7129         Define missing ESTALE on Interix 3.5.
7130         * lib/errno.in.h (ESTALE): Assign a value if missing.
7131         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
7132         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
7133         missing.
7134         * doc/posix-headers/errno.texi: Mention the Interix bug.
7135         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
7136
7137 2009-06-15  Eric Blake  <ebb9@byu.net>
7138
7139         memchr, memchr2: add valgrind exception
7140         * lib/memchr.valgrind: New file.
7141         * lib/memchr2.valgrind: New file.
7142         * modules/memchr (Files): Distribute valgrind file.
7143         * modules/memchr2 (Files): Likewise.
7144
7145         docs: memchr is no longer obsolete
7146         * MODULES.html.sh: Move memchr from obsolete to string.h section.
7147         * lib/string.in.h (memchr): Simplify logic.
7148
7149 2009-06-14  Jim Meyering  <meyering@redhat.com>
7150
7151         link-follow: fix the "checking..." message to not mention trailing slash
7152         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
7153         never considered trailing slashes.
7154
7155 2009-06-14  Bruno Haible  <bruno@clisp.org>
7156
7157         * m4/memchr.m4: Mention also the bug on IA-64.
7158         * doc/posix-functions/memchr.texi: Likewise.
7159
7160 2009-06-12  Eric Blake  <ebb9@byu.net>
7161
7162         memchr: detect broken x86_64 and alpha implementations
7163         * modules/memchr-tests (Depends-on): Move mmap detection...
7164         * modules/memchr (Depends-on): ...here.
7165         (configure.ac): Set indicator.
7166         * lib/string.in.h (memchr): Declare replacement.
7167         * modules/string (Makefile.am): Trigger replacement.
7168         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
7169         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
7170         bugs.
7171         * doc/posix-functions/memchr.texi (memchr): Document the bug.
7172         * modules/getpagesize (License): Relax license.
7173
7174 2009-06-11  Bruno Haible  <bruno@clisp.org>
7175
7176         * lib/idpriv.h: Add more references.
7177
7178 2009-06-08  Bruno Haible  <bruno@clisp.org>
7179
7180         Tests for module 'idpriv-droptemp'.
7181         * modules/idpriv-droptemp-tests: New file.
7182         * tests/test-idpriv-droptemp.sh: New file.
7183         * tests/test-idpriv-droptemp.su.sh: New file.
7184         * tests/test-idpriv-droptemp.c: New file.
7185
7186         New module 'idpriv-droptemp'.
7187         * lib/idpriv-droptemp.c: New file.
7188         * modules/idpriv-droptemp: New file.
7189
7190 2009-06-08  Bruno Haible  <bruno@clisp.org>
7191
7192         Tests for module 'idpriv-drop'.
7193         * modules/idpriv-drop-tests: New file.
7194         * tests/test-idpriv-drop.sh: New file.
7195         * tests/test-idpriv-drop.su.sh: New file.
7196         * tests/test-idpriv-drop.c: New file.
7197
7198         New module 'idpriv-drop'.
7199         * lib/idpriv.h: New file.
7200         * lib-idpriv-drop.c: New file.
7201         * m4/idpriv.m4: New file.
7202         * modules/idpriv-drop: New file.
7203
7204 2009-06-08  Bruno Haible  <bruno@clisp.org>
7205
7206         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
7207         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
7208         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
7209         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
7210         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
7211         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
7212         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
7213
7214 2009-06-08  Eric Blake  <ebb9@byu.net>
7215
7216         test-strstr: use memory fence, when possible
7217         * tests/test-strstr.c (main): Use memory fence, in order to be
7218         more likely to trigger Debian bug 521737.
7219         * modules/strstr-tests (Files): Pull in additional files.
7220
7221         memchr: no longer obsolete, for wider field testing
7222         * modules/memchr (Status, Notice): Delete, this module is no
7223         longer obsolete.
7224         * modules/vasnprintf (Depends-on): Add memchr.
7225
7226 2009-06-07  Jim Meyering  <meyering@redhat.com>
7227
7228         hash: declare some functions with the warn_unused_result attribute
7229         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
7230
7231 2009-06-07  Bruno Haible  <bruno@clisp.org>
7232
7233         * tests/test-alignof.c: Don't test int64_t if it does not exist.
7234         Reported by Eric Blake.
7235
7236 2009-06-06  Eric Blake  <ebb9@byu.net>
7237
7238         test-alignof: fix typo with long double
7239         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
7240         compiler error.
7241
7242 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
7243
7244         Escape non-texinfo { and }s.
7245         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
7246         markup error.
7247
7248 2009-06-04  Jim Meyering  <meyering@redhat.com>
7249
7250         gitlog-to-changelog: don't infloop on an empty commit log
7251         * build-aux/gitlog-to-changelog: Warn about an empty log message.
7252         Reported by Boris Petersen <transacid@centerim.org>.
7253
7254 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
7255
7256         version-etc: extend for packagers
7257         Add three new configure options, intended for packagers:
7258           --with-packager="packager name"
7259           --with-packager-version="packager-specific version"
7260           --with-packager-bug-reports="packager bug reporting"
7261         An example with coreutils:
7262           $ ./configure \
7263             --with-packager=Gentoo \
7264             --with-packager-bug-report=http://bugs.gentoo.org/ \
7265             --with-packager-version="patchset 1.6"
7266           $ ./src/ls --version | head -n3
7267           ls (GNU coreutils) 7.1-dirty
7268           Packaged by Gentoo (patchset 1.6)
7269           Copyright (C) 2009 Free Software Foundation, Inc.
7270         Note that the bug reporting info via --help doesn't show up because
7271         coreutils uses its own custom emit_bug_reporting_address() implementation
7272         in src/system.h.  If it didn't, it'd look like:
7273           $ ./src/ls --help | tail -n4
7274           Report bugs to <bug-coreutils@gnu.org>.
7275           Report Gentoo bugs to <http://bugs.gentoo.org/>.
7276           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
7277           General help using GNU software: <http://www.gnu.org/gethelp/>.
7278         * lib/version-etc.c: Print new information, if provided.
7279         * m4/version-etc.m4: New file.
7280         * modules/version-etc (Files): Add m4/version-etc.m4.
7281         (configure.ac): Add gl_VERSION_ETC.
7282
7283 2009-05-31  Bruno Haible  <bruno@clisp.org>
7284
7285         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
7286         and 'int64_t'.
7287         * modules/alignof-tests (Dependencies): Add stdint.
7288         Reported by Eric Blake.
7289
7290 2009-05-31  Bruno Haible  <bruno@clisp.org>
7291
7292         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
7293         restriction due to compiler bugs.
7294         Reported by Eric Blake.
7295
7296 2009-05-31  Simon Josefsson  <simon@josefsson.org>
7297             Bruno Haible  <bruno@clisp.org>
7298
7299         Fix test-alignof failure.
7300         * lib/alignof.h (alignof_slot): New macro.
7301         (alignof_type): New macro, with the same semantics as the previous
7302         'alignof'.
7303         (alignof): Alias to alignof_slot.
7304         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
7305         check that the results are usable as constant expressions.
7306
7307 2009-05-31  Bruno Haible  <bruno@clisp.org>
7308
7309         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
7310         * tests/test-memchr.c (main): Check that memchr does not read past the
7311         first occurrence of the byte.
7312         * tests/test-strstr.c (main): Update comment.
7313         Suggested by Eric Blake.
7314
7315 2009-05-30  Bruno Haible  <bruno@clisp.org>
7316
7317         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
7318         detail how to use dumpbin.
7319         Reported by David Byron <dbyron@dbyron.com>.
7320
7321 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7322
7323         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
7324
7325 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7326
7327         * m4/manywarnings.m4: Add GCC 4.4 warnings.
7328
7329 2009-05-28  Bruno Haible  <bruno@clisp.org>
7330
7331         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
7332         build-aux/ files.
7333
7334 2009-05-28  Simon Josefsson  <simon@josefsson.org>
7335
7336         * gnulib-tool (func_import): Transform license on build-aux/ files too.
7337
7338 2009-05-27  Simon Josefsson  <simon@josefsson.org>
7339
7340         * gnulib-tool (sed_transform_main_lib_file)
7341         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
7342         regexps.
7343
7344 2009-05-26  Simon Josefsson  <simon@josefsson.org>
7345
7346         * tests/test-strstr.c: Add another self-test.
7347         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
7348         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
7349
7350 2009-05-23  Bruno Haible  <bruno@clisp.org>
7351
7352         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
7353         change.
7354
7355 2009-05-21  Bruno Haible  <bruno@clisp.org>
7356
7357         Simplify use of mode_t varargs.
7358         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
7359         uses 'mode_t' or 'int'.
7360         * lib/openat.c (openat): Likewise.
7361         * lib/open-safer.c (open_safer): Likewise.
7362         * m4/mode_t.m4: New file.
7363         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
7364         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
7365         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
7366         * modules/open (Files): Add m4/mode_t.m4.
7367         * modules/openat (Files): Likewise.
7368         * modules/fcntl-safer (Files): Likewise.
7369         Suggested by Eric Blake.
7370
7371 2009-05-21  Pádraig Brady  <P@draigbrady.com>
7372
7373         * doc/glibc-functions/fallocate.texi: New file.
7374         * doc/gnulib.texi: Include it.
7375
7376 2009-05-21  Eric Blake  <ebb9@byu.net>
7377             Bruno Haible  <bruno@clisp.org>
7378
7379         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
7380         invocations.
7381         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
7382
7383 2009-05-21  Eric Blake  <ebb9@byu.net>
7384             Bruno Haible  <bruno@clisp.org>
7385
7386         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
7387         include_next. Fix of 2008-11-20 commit.
7388         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
7389         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
7390         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
7391         NEXT_MATH_H.
7392         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
7393         instead of NEXT_MATH_H.
7394
7395 2009-05-21  Bruno Haible  <bruno@clisp.org>
7396
7397         Avoid redefinition warnings for SIZE_MAX.
7398         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
7399         Reported by Simon Josefsson.
7400
7401 2009-05-21  Bruno Haible  <bruno@clisp.org>
7402
7403         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
7404         AC_CACHE_VAL.
7405
7406 2009-05-20  Bruno Haible  <bruno@clisp.org>
7407
7408         Make zeroptr.h work on mingw.
7409         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
7410         mprotect.
7411         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
7412         * modules/memchr2-tests (configure.ac): Likewise.
7413         * modules/memcmp-tests (configure.ac): Likewise.
7414         * modules/memmem-tests (configure.ac): Likewise.
7415         * modules/memrchr-tests (configure.ac): Likewise.
7416         Reported by Simon Josefsson.
7417
7418 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7419
7420         * tests/test-glob.c: Include string.h for strcmp prototype.
7421
7422 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7423
7424         * modules/getdelim (Depends-on): Add explicit stdint, although it
7425         was implicitly already pulled in via realloc-posix.
7426         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
7427
7428 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7429
7430         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
7431         G. Christensen" <tgc@jupiterrise.com>.
7432         * m4/sys_socket_h.m4: Check for sa_family_t.
7433         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
7434         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
7435         * tests/test-sys_socket.c: Check that sa_family_t works.
7436
7437 2009-05-18  Eric Blake  <ebb9@byu.net>
7438
7439         maint.mk: allow gnulib_dir in VPATH build
7440         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
7441
7442 2009-05-15  Jim Meyering  <meyering@redhat.com>
7443
7444         maint.mk: Give gnulib_dir a default definition.
7445         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
7446         Thus, most packages no longer need to specify this variable in cfg.mk
7447
7448 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
7449
7450         rename.m4: fix typos that would make non-mingw cross-configure fail
7451         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
7452
7453 2009-05-13  Eric Blake  <ebb9@byu.net>
7454
7455         mmap-anon: avoid out-of-order autoconf expansion
7456         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
7457         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
7458         * modules/memchr-tests (Depends-on): Add extensions.
7459         * modules/memchr2-tests (Depends-on): Add extensions.
7460         * modules/memcmp-tests (Depends-on): Add extensions.
7461         * modules/memmem-tests (Depends-on): Add extensions.
7462         * modules/memrchr-tests (Depends-on): Add extensions.
7463
7464 2009-05-13  Bruno Haible  <bruno@clisp.org>
7465
7466         Make some tests ISO C 99 compliant.
7467         * tests/zerosize-ptr.h: New file.
7468         * tests/test-memchr.c: Include zerosize-ptr.h.
7469         (main): Use a zero-size object pointer instead of NULL.
7470         * tests/test-memchr2.c: Include zerosize-ptr.h.
7471         (main): Use a zero-size object pointer instead of NULL.
7472         * tests/test-memcmp.c: Include zerosize-ptr.h.
7473         (main): Use a zero-size object pointer instead of NULL.
7474         * tests/test-memmem.c: Include zerosize-ptr.h.
7475         (main): Use a zero-size object pointer instead of NULL.
7476         * tests/test-memrchr.c: Include zerosize-ptr.h.
7477         (main): Use a zero-size object pointer instead of NULL.
7478         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
7479         m4/mmap-anon.m4.
7480         (Depends-on): Add getpagesize.
7481         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7482         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
7483         m4/mmap-anon.m4.
7484         (Depends-on): Add getpagesize.
7485         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7486         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
7487         m4/mmap-anon.m4.
7488         (Depends-on): Add getpagesize.
7489         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7490         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
7491         m4/mmap-anon.m4.
7492         (Depends-on): Add getpagesize.
7493         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7494         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
7495         m4/mmap-anon.m4.
7496         (Depends-on): Add getpagesize.
7497         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7498
7499 2009-05-12  Bruno Haible  <bruno@clisp.org>
7500
7501         Tests for module 'alignof'.
7502         * modules/alignof-tests: New file.
7503         * tests/test-alignof.c: New file.
7504
7505 2009-05-12  Bruno Haible  <bruno@clisp.org>
7506
7507         Fix alignof macro.
7508         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
7509         vendor compilers that are always correct.
7510
7511 2009-05-12  Bruno Haible  <bruno@clisp.org>
7512
7513         Make the MAP_ANONYMOUS detection work on HP-UX 11.
7514         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
7515         not whether its fully works.
7516
7517 2009-05-12  Bruno Haible  <bruno@clisp.org>
7518
7519         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
7520
7521 2009-05-12  Jim Meyering  <meyering@redhat.com>
7522
7523         * top/maint.mk: Adjust backslash alignment.
7524
7525 2009-05-11  Simon Josefsson  <simon@josefsson.org>
7526
7527         * top/maint.mk: Make $(srcdir)/build-aux configurable.
7528
7529 2009-05-11  Eric Blake  <ebb9@byu.net>
7530
7531         argp: avoid undefined behavior
7532         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
7533         macros.
7534
7535 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7536
7537         * tests/test-vc-list-files-git.sh: Do git config of user.email and
7538         user.name to prevent git commit from complaining.
7539
7540 2009-05-10  Bruno Haible  <bruno@clisp.org>
7541
7542         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
7543         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
7544         it rewrites every file name only once.
7545         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
7546
7547 2009-05-08  Bruno Haible  <bruno@clisp.org>
7548
7549         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
7550         instead of 'max'.
7551
7552 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7553
7554         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
7555         sockaddr_storage test.
7556
7557 2009-05-07  Simon Josefsson  <simon@josefsson.org>
7558
7559         * modules/sys_socket (Makefile.am): Substitute
7560         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
7561         * m4/sys_socket_h.m4: Check for sockaddr_storage.
7562         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
7563         * tests/test-sys_socket.c: Check sockaddr_storage.
7564
7565 2009-05-08  Bruno Haible  <bruno@clisp.org>
7566
7567         New module 'alignof'.
7568         * lib/alignof.h: New file.
7569         * modules/alignof: New file.
7570
7571 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7572             Bruno Haible  <bruno@clisp.org>
7573
7574         Fix test-file-has-acl on FreeBSD.
7575         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
7576         mask is implicitly added.
7577         * tests/test-file-has-acl.c: Include <signal.h>.
7578         (main): Terminate the test after 5 seconds.
7579         * modules/acl-tests (configure.ac): Check for alarm function.
7580
7581 2009-05-04  Bruno Haible  <bruno@clisp.org>
7582
7583         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
7584         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
7585         * modules/errno (configure.ac): Drop AC_REQUIRE.
7586         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
7587         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
7588
7589 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7590
7591         * modules/glob-tests: New module.
7592         * tests/test-glob.c: Add.
7593
7594 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7595
7596         * modules/fnmatch-tests: New module.
7597         * tests/test-fnmatch.c: Add.
7598
7599 2009-05-04  Eric Blake  <ebb9@byu.net>
7600
7601         maint: make the new no-submodule-changes rule VPATH-safe
7602         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
7603
7604 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7605             Bruno Haible  <bruno@clisp.org>
7606
7607         acl: Fix infinite loop on FreeBSD.
7608         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
7609         of return value from acl_get_entry.
7610         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
7611         Likewise.
7612
7613 2009-05-03  Bruno Haible  <bruno@clisp.org>
7614
7615         * lib/acl-internal.h (acl_entries): Clarify return value.
7616         * lib/acl_entries.c (acl_entries): Likewise.
7617
7618 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7619
7620         Bug fix in acl module.
7621         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
7622
7623 2009-05-03  Bruno Haible  <bruno@clisp.org>
7624
7625         Create gperf-generated file in the source dir, not in the build dir.
7626         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
7627         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
7628         * modules/unicase/locale-language (unicase/locale-languages.h):
7629         Likewise.
7630         * modules/unicase/special-casing (unicase/special-casing-table.h):
7631         Likewise.
7632         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
7633         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
7634         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
7635         Reported by Ralf Wildenhues.
7636
7637 2009-05-03  Bruno Haible  <bruno@clisp.org>
7638
7639         * modules/fnmatch (Description, configure.ac): Taken from
7640         fnmatch-posix.
7641         * modules/fnmatch-posix: Turn into a symbolic reference to the
7642         'fnmatch' module, and deprecate.
7643         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
7644
7645 2009-05-03  Bruno Haible  <bruno@clisp.org>
7646
7647         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
7648         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
7649         Reported by Ralf Wildenhues.
7650
7651 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7652
7653         * m4/fnmatch.m4: Fix fnmatch re-define.
7654
7655 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7656
7657         priv-set: new module and tests; adapt write-any-file
7658         * lib/priv-set.c: New file.
7659         * lib/priv-set.h: New file.
7660         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
7661         * lib/write-any-file.c: Simplify by using priv-set module.
7662         * m4/priv-set.m4: New file.
7663         * modules/priv-set: New file.
7664         * modules/unlinkdir: Add dependency on priv-set module.
7665         * modules/write-any-file: Likewise.
7666
7667         Tests for module 'priv-set'.
7668         * modules/priv-set-tests: New file.
7669         * tests/test-priv-set.c: New file.
7670
7671 2009-05-03  Jim Meyering  <meyering@redhat.com>
7672             Bruno Haible  <bruno@clisp.org>
7673
7674         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
7675         use the converted UTF-8 variant of the name instead.
7676
7677 2009-05-03  Jim Meyering  <meyering@redhat.com>
7678
7679         tests: tighten some getdate tests
7680         * tests/test-getdate.c (main): Tighten tests: require equality,
7681         not just greater than.  Set TZ envvar to UTC0.
7682
7683 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
7684
7685         getdate: correctly interpret "next monday" when run on a Monday
7686         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
7687         that e.g., "next tues" (when run on a tuesday) results in a date
7688         that is one week in the future, and not today's date.
7689         I.e., add a week when the wday is the same as the current one.
7690         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
7691         and earlier by Martin Bernreuther and Jan Minář.
7692         * tests/test-getdate.c (main): Check that "next DAY" is always in
7693         the future and that "last DAY" is always in the past.
7694
7695 2009-05-02  Jim Meyering  <meyering@redhat.com>
7696
7697         build: ensure that a release build fails when a submodule is unclean
7698         * top/maint.mk (no-submodule-changes): New rule.
7699         (alpha beta major): Depend on it.
7700
7701 2009-05-02  Bruno Haible  <bruno@clisp.org>
7702
7703         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
7704         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
7705         shell variable gl_fnmatch_required to detect which variant is
7706         requested.
7707         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
7708         gl_FUNC_FNMATCH_POSIX.
7709         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
7710         exclude fnmatch-posix.
7711
7712 2009-05-02  Bruno Haible  <bruno@clisp.org>
7713
7714         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
7715         * modules/mbsrtowcs (License): Change to LGPLv2+.
7716         * modules/strnlen1 (License): Likewise.
7717         Reported by Simon Josefsson.
7718
7719 2009-05-02  Bruno Haible  <bruno@clisp.org>
7720
7721         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
7722         "cross".
7723         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
7724         gnulib-tool was called with option --source-base=lib.
7725
7726 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7727
7728         Use automake *-local hooks without commands, for extensibility.
7729         * modules/localcharset (Makefile.am): Rename install-exec-local
7730         rule to install-exec-localcharset, and make it a prerequisite of
7731         install-exec-local.  Likewise, rename the uninstall-local rule to
7732         uninstall-localcharset, and make it a prerequisite of the former.
7733
7734 2009-05-01  Bruno Haible  <bruno@clisp.org>
7735
7736         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
7737         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7738         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
7739         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
7740         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
7741         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7742         m4/locale-zh.m4, m4/codeset.m4.
7743
7744         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7745         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
7746         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7747         m4/locale-zh.m4.
7748
7749         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
7750         REPLACE_WCRTOMB if mbstate_t must be replaced.
7751         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
7752         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
7753
7754 2009-05-01  Bruno Haible  <bruno@clisp.org>
7755
7756         Avoid compiler warnings when redefining macros defined by <libintl.h>.
7757         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
7758         dngettext, dcngettext, textdomain, bindtextdomain,
7759         bind_textdomain_codeset): Undefine before redefining.
7760
7761 2009-04-30  Bruno Haible  <bruno@clisp.org>
7762
7763         Fix bug introduced on 2009-04-25.
7764         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
7765         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
7766         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
7767         is defined.
7768         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
7769         is defined.
7770         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
7771         is defined.
7772         Reported by Elbert_Pol <elbert.pol@gmail.com>.
7773
7774 2009-04-28  Bruno Haible  <bruno@clisp.org>
7775
7776         Comment tweaks.
7777         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
7778         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
7779         * lib/unicase.h (u*_casexfrm): Likewise.
7780         Reported by Paolo Bonzini.
7781
7782 2009-04-28  Bruno Haible  <bruno@clisp.org>
7783
7784         Fix a compilation error.
7785         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
7786         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7787         Reported by Jim Meyering.
7788
7789 2009-04-27  Bruno Haible  <bruno@clisp.org>
7790
7791         New module 'libunistring'.
7792         * modules/libunistring: New file.
7793         * m4/libunistring.m4: New file.
7794         * MODULES.html.sh (Unicode string functions): Add it.
7795
7796 2009-04-27  Eric Blake  <ebb9@byu.net>
7797
7798         maint.mk: allow package-specific header to provide <config.h>
7799         * top/maint.mk (sc_require_config_h): New variable.
7800         (sc_require_config_h, sc_require_config_h_first): Use it.
7801
7802 2009-04-27  Simon Josefsson  <simon@josefsson.org>
7803
7804         * top/maint.mk (sc_avoid_if_before_free): Except
7805         useless-if-before-free script.
7806
7807 2009-04-27  Eric Blake  <ebb9@byu.net>
7808
7809         maintainer-makefile: depend on all required helper scripts
7810         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
7811         useless-if-before-free.
7812         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7813         version, rather than assuming gnulib checkout is available.
7814         Reported by Simen Josefsson.
7815
7816 2009-04-26  Bruno Haible  <bruno@clisp.org>
7817
7818         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
7819         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
7820         "../" or "..".
7821
7822 2009-04-26  Bruno Haible  <bruno@clisp.org>
7823
7824         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
7825         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
7826         AC_LIB_HAVE_LINKFLAGS.
7827
7828 2009-04-26  Bruno Haible  <bruno@clisp.org>
7829
7830         Simplify calling convention of u*_conv_from_encoding.
7831         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
7832         u32_conv_from_encoding): Expect a resultbuf argument and return the
7833         result directly as a pointer.
7834         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
7835         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
7836         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
7837         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
7838         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
7839         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7840         Update.
7841         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
7842         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
7843         * lib/vasnprintf.c (VASNPRINTF): Update.
7844         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
7845         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
7846         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
7847         * NEWS: Mention the change.
7848
7849 2009-04-26  Bruno Haible  <bruno@clisp.org>
7850
7851         Simplify calling convention of u*_conv_to_encoding.
7852         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
7853         u32_conv_to_encoding): Expect a resultbuf argument and return the
7854         result directly as a pointer.
7855         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7856         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
7857         freeing scaled_offsets if mem_iconveha failed.
7858         * lib/unicase/u-casexfrm.h (FUNC): Update.
7859         * lib/uninorm/u-normxfrm.h (FUNC): Update.
7860         * lib/vasnprintf.c (VASNPRINTF): Update.
7861         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
7862         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
7863         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
7864         * NEWS: Mention the change.
7865
7866 2009-04-26  Bruno Haible  <bruno@clisp.org>
7867
7868         Avoid test failures on AIX and OSF/1.
7869         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
7870         malloc(0).
7871         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7872         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7873         Likewise.
7874         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
7875         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
7876         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
7877         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
7878         * doc/posix-functions/malloc.texi: Document the portability problem
7879         related to malloc(0).
7880
7881 2009-04-26  Bruno Haible  <bruno@clisp.org>
7882
7883         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
7884         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
7885         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
7886
7887 2009-04-25  Bruno Haible  <bruno@clisp.org>
7888
7889         Avoid link error when creating a namespace clean library.
7890         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
7891         as macro with arguments if already defined as an alias.
7892         * lib/signbitf.c (gl_signbitf): Don't undefine.
7893         * lib/signbitd.c (gl_signbitd): Don't undefine.
7894         * lib/signbitl.c (gl_signbitl): Don't undefine.
7895
7896 2009-04-25  Jim Meyering  <meyering@redhat.com>
7897
7898         vc-list-files: fix another quoting bug
7899         * build-aux/vc-list-files: Avoid sed backslash expansion
7900         of pathological directory names.
7901
7902 2009-04-25  Eric Blake  <ebb9@byu.net>
7903
7904         vc-list-files: fix shell quoting error
7905         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
7906         timestamp.
7907
7908 2009-04-25  Jim Meyering  <meyering@redhat.com>
7909
7910         vc-list-files: restore lost functionality with subdir argument
7911         * build-aux/vc-list-files: When given a non-"." sub-directory
7912         argument, substitute the $dir/ prefix back onto each resulting name.
7913         Otherwise, coreutils' root_tests check would fail.
7914
7915 2009-04-24  Eric Blake  <ebb9@byu.net>
7916
7917         vc-list-files: ignore git symlinks
7918         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
7919         than ls-files, to ignore git symlinks.
7920
7921         maint.mk: import improvements from m4
7922         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
7923         (move_if_change): Delete unused macro.
7924         (news-date-check, vc-diff-check): Support VPATH builds.
7925         (announcement): Likewise.  Split --bootstrap-tools list...
7926         (boostrap-tools): ...into separate list, which can be overridden
7927         in cfg.mk.
7928         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
7929         requiring dependency on useless-if-before-free module.
7930         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
7931         Support VPATH builds.
7932
7933 2009-04-24  Jim Meyering  <meyering@redhat.com>
7934
7935         maint.mk: remove coreutils-specific rules and variables
7936         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
7937         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
7938         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
7939
7940         maint.mk: remove obsolete rule
7941         * top/maint.mk (rel-check): Remove rule.
7942         (WGET, WGETFLAGS): Remove now-unused variables.
7943
7944 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7945
7946         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
7947         consistency.
7948
7949         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
7950         '$(PATH_SEPARATOR)' instead of ':'.
7951
7952 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7953
7954         * lib/getopt1.c (main): Use 'const' for static array.
7955
7956 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7957
7958         * top/maint.mk: Sync with coreutils.
7959         * NEWS: Explain incompatibilities.
7960
7961 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7962             Bruno Haible  <bruno@clisp.org>
7963
7964         Fix cross-compilation results.
7965         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
7966         statement, as third argument of AC_TRY_RUN.
7967         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
7968         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
7969         Likewise.
7970         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
7971         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
7972         Likewise.
7973         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
7974         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
7975         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
7976
7977 2009-04-20  Bruno Haible  <bruno@clisp.org>
7978
7979         Avoid test failure on mingw.
7980         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
7981
7982 2009-04-20  Bruno Haible  <bruno@clisp.org>
7983
7984         Avoid compilation error on mingw.
7985         * modules/localename-tests (Depends-on): Add locale.
7986
7987 2009-04-19  Bruno Haible  <bruno@clisp.org>
7988
7989         Support for building a shared library on Windows platforms.
7990         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
7991         (main): Test the presence of UNINORM_NFC here.
7992         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
7993         (main): Test the presence of UNINORM_NFD here.
7994         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
7995         (main): Test the presence of UNINORM_NFKC here.
7996         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
7997         (main): Test the presence of UNINORM_NFKD here.
7998
7999 2009-04-19  Bruno Haible  <bruno@clisp.org>
8000
8001         Avoid a compiler warning.
8002         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
8003         Change type of variable 'sequence'.
8004
8005 2009-04-19  Bruno Haible  <bruno@clisp.org>
8006
8007         * modules/configmake (Makefile.am): When the contents of configmake.h
8008         does not change, arrange to preserve its modification time.
8009
8010 2009-04-17  Simon Josefsson  <simon@josefsson.org>
8011
8012         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
8013         gettext domain.
8014
8015 2009-04-16  Jim Meyering  <meyering@redhat.com>
8016
8017         useless-if-before-free: improve conversion code
8018         * build-aux/useless-if-before-free: Adjust code-in-comment to match
8019         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
8020
8021 2009-04-14  Bruno Haible  <bruno@clisp.org>
8022
8023         * modules/fcntl (Depends-on): Add extensions.
8024         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
8025
8026 2009-04-12  Ben Pfaff  <blp@gnu.org>
8027
8028         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
8029         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
8030
8031 2009-03-20  Ben Pfaff  <blp@gnu.org>
8032
8033         Make rename replace existing destinations on Windows.
8034         * m4/rename.m4: Add test for Mingw.
8035         * lib/rename.c: Add rename replacement that uses MoveFileEx with
8036         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
8037         * doc/posix-functions/rename.texi: Document.
8038
8039 2009-04-10  Bruno Haible  <bruno@clisp.org>
8040
8041         New include file "iconveh.h".
8042         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
8043         * lib/striconveh.h: Include it.
8044         (enum iconv_ilseq_handler): Remove definition.
8045         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
8046         striconveh.h.
8047         * lib/striconveha.c: Include striconveh.h.
8048         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
8049         * modules/striconveh (Files): Add lib/iconveh.h.
8050         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
8051         lib/striconveh.h.
8052
8053 2009-04-10  Bruno Haible  <bruno@clisp.org>
8054
8055         * lib/uniconv.h: Update comment.
8056
8057 2009-04-10  Bruno Haible  <bruno@clisp.org>
8058
8059         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
8060         always.
8061         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
8062         * lib/unistr/u16-mbtouc-aux.c: Likewise.
8063         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
8064         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
8065         "unistring-notinline.h", so that the function gets defined always.
8066         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
8067         * lib/unistr/u8-uctomb.c: Likewise.
8068         * lib/unistr/u16-mbtouc.c: Likewise.
8069         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
8070         * lib/unistr/u16-uctomb.c: Likewise.
8071         * lib/unistr/u32-mbtouc.c: Likewise.
8072         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
8073         * lib/unistr/u32-uctomb.c: Likewise.
8074
8075 2009-04-10  Bruno Haible  <bruno@clisp.org>
8076
8077         Mark 'utime' obsolete.
8078         * modules/utime (Status, Notice): New sections.
8079         Suggested by Jim Meyering.
8080
8081         Fix cross-compile guess for utime test.
8082         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
8083         autoconf.
8084         * doc/posix-functions/utime.texi: Give more precisions.
8085         Reported by Jan <ipif@ymail.com>.
8086
8087 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
8088
8089         filevercmp: correct today's change
8090         * lib/filevercmp.c: Also handle coreutils' test inputs.
8091         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
8092
8093         Fix regression in 'filevercmp' module. Thanks Sven Joachim
8094         for reporting it.
8095         * lib/filevercmp.c: Special handle for "", "." and "..".
8096         * tests/test-filevercmp.c: Enlarge the set suite.
8097
8098 2009-04-07  Jim Meyering  <meyering@redhat.com>
8099
8100         useless-if-before-free: show how to remove braced useless free, too
8101         * build-aux/useless-if-before-free: still only in a comment, though.
8102
8103 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
8104
8105         maint.mk: import changes to syntax-check macros from coreutils
8106         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
8107         Use them in the relevant macros.
8108
8109 2009-04-06  Bruno Haible  <bruno@clisp.org>
8110
8111         Fix unportable use of bit-fields.
8112         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
8113         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
8114         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
8115
8116 2009-04-06  Bruno Haible  <bruno@clisp.org>
8117
8118         Avoid test failures on AIX and OSF/1.
8119         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
8120         that malloc(0) = NULL.
8121         * tests/unicase/test-u8-tolower.c (check): Likewise.
8122         * tests/unicase/test-u8-totitle.c (check): Likewise.
8123         * tests/unicase/test-u8-toupper.c (check): Likewise.
8124         * tests/unicase/test-u16-casefold.c (check): Likewise.
8125         * tests/unicase/test-u16-tolower.c (check): Likewise.
8126         * tests/unicase/test-u16-totitle.c (check): Likewise.
8127         * tests/unicase/test-u16-toupper.c (check): Likewise.
8128         * tests/unicase/test-u32-casefold.c (check): Likewise.
8129         * tests/unicase/test-u32-tolower.c (check): Likewise.
8130         * tests/unicase/test-u32-totitle.c (check): Likewise.
8131         * tests/unicase/test-u32-toupper.c (check): Likewise.
8132         * tests/uninorm/test-u8-nfc.c (check): Likewise.
8133         * tests/uninorm/test-u8-nfd.c (check): Likewise.
8134         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
8135         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
8136         * tests/uninorm/test-u16-nfc.c (check): Likewise.
8137         * tests/uninorm/test-u16-nfd.c (check): Likewise.
8138         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
8139         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
8140         * tests/uninorm/test-u32-nfc.c (check): Likewise.
8141         * tests/uninorm/test-u32-nfd.c (check): Likewise.
8142         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
8143         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
8144
8145 2009-04-05  Bruno Haible  <bruno@clisp.org>
8146
8147         Work around an autoconf limitation.
8148         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
8149         comment line if it would be longer than 3 KB.
8150
8151 2009-04-05  Bruno Haible  <bruno@clisp.org>
8152
8153         Avoid test failure with libiconv-1.13.
8154         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
8155         of the expected test results.
8156
8157 2009-04-05  Bruno Haible  <bruno@clisp.org>
8158
8159         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
8160         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
8161         that it should be installed.
8162
8163 2009-04-05  Bruno Haible  <bruno@clisp.org>
8164
8165         * gnulib-tool: New option --copy-file.
8166         (func_usage): Document it.
8167         (func_dest_tmpfilename): Moved out of func_import.
8168         (func_add_file, func_update_file): New functions, extracted from
8169         func_import.
8170         (func_import): Update.
8171
8172 2009-04-05  Karl Berry  <karl@gnu.org>
8173
8174         * README: prominently mention gnulib-tool.
8175         Rearrange sections so getting the code is near the top.
8176
8177 2009-04-05  Bruno Haible  <bruno@clisp.org>
8178
8179         * lib/unicase.h: Mention u*_cmp2.
8180         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
8181         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
8182         * lib/unicase/ulc-casecmp.c: Likewise.
8183         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
8184         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
8185         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
8186         unistr/u8-cmp.
8187         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
8188         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
8189         unistr/u16-cmp.
8190         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
8191         unistr/u32-cmp.
8192
8193         * lib/uninorm.h: Mention u*_cmp2.
8194         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
8195         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
8196         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
8197         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
8198         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
8199         unistr/u8-cmp.
8200         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
8201         unistr/u16-cmp.
8202         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
8203         unistr/u32-cmp.
8204
8205         New module 'unistr/u32-cmp2'.
8206         * lib/unistr/u32-cmp2.c: New file.
8207         * modules/unistr/u32-cmp2: New file.
8208
8209         New module 'unistr/u16-cmp2'.
8210         * lib/unistr/u16-cmp2.c: New file.
8211         * modules/unistr/u16-cmp2: New file.
8212
8213         New module 'unistr/u8-cmp2'.
8214         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
8215         * lib/unistr/u8-cmp2.c: New file.
8216         * lib/unistr/u-cmp2.h: New file.
8217         * modules/unistr/u8-cmp2: New file.
8218
8219 2009-04-05  Bruno Haible  <bruno@clisp.org>
8220
8221         * lib/unictype.h (uc_property_is_valid): New macro.
8222         * tests/unictype/test-pr_byname.c (main): Use it.
8223
8224         * lib/unistr.h: Doc fixes.
8225         * lib/uniconv.h: Doc fixes.
8226         * lib/unictype.h: Doc fixes.
8227
8228 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
8229
8230         Port coreutils 7.2 to Solaris 8.
8231
8232         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
8233         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
8234         for Solaris 8.  This is a bit of a hack, as it means it's the
8235         caller's responsibility to add -lnsl if needed, but most likely it
8236         won't be needed since only getaddrinfo uses this and getaddrinfo
8237         isn't needed on Solaris 8.
8238
8239         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
8240         problem to Solaris 8 encountered with coreutils 7.2, which
8241         resulted in a message "fnmatch.c:292: warning: passing argument 4
8242         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
8243         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
8244
8245 2009-04-03  Simon Josefsson  <simon@josefsson.org>
8246
8247         * m4/ld-version-script.m4: Add FIXME comment.
8248
8249 2009-04-02  Simon Josefsson  <simon@josefsson.org>
8250
8251         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
8252         SOVERSION variable.
8253
8254 2009-04-02  Bruno Haible  <bruno@clisp.org>
8255
8256         * Makefile (info, html, dvi, pdf): Combine the rules.
8257         Suggested by Jim Meyering.
8258
8259 2009-04-01  Bruno Haible  <bruno@clisp.org>
8260
8261         * Makefile (info, html, dvi, pdf): New targets.
8262         Reported by Reuben Thomas <rrt@sc3d.org>.
8263
8264 2009-04-01  Bruno Haible  <bruno@clisp.org>
8265
8266         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
8267         can be put into PATH.
8268         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
8269
8270 2009-04-01  Bruno Haible  <bruno@clisp.org>
8271
8272         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
8273
8274 2009-04-01  Bruno Haible  <bruno@clisp.org>
8275
8276         Rename module 'visibility'.
8277         * modules/lib-symbol-visibility: Renamed from modules/visibility.
8278         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
8279         * doc/gnulib.texi: Update.
8280         * MODULES.html.sh (Misc): Update.
8281         * NEWS: Mention the change.
8282
8283 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8284
8285         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
8286         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
8287         Eric Blake <ebb9@byu.net> for review.
8288         * MODULES.html.sh: Add lib-msvc-compat.
8289         * doc/gnulib.texi: Link to new section.
8290         * m4/ld-output-def.m4: New file.
8291         * doc/ld-output-def.texi: New file.
8292
8293 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8294
8295         Rename ld-version-script to lib-symbol-versions.  Suggested by
8296         Bruno Haible <bruno@clisp.org>.
8297         * modules/ld-version-script: Renamed to lib-symbol-versions.
8298         * doc/ld-version-script.texi: Fix module name.
8299         * MODULES.html.sh: Add lib-symbol-versions.
8300
8301 2009-03-31  Simon Josefsson  <simon@josefsson.org>
8302
8303         * modules/u64-tests: New file.
8304         * tests/test-u64.c: New file.
8305
8306 2009-03-04  Simon Josefsson  <simon@josefsson.org>
8307
8308         * MODULES.html.sh: Mention u64.
8309         * modules/u64: New module.
8310         * modules/crypto/sha512: Depend on u64 module instead of providing
8311         u64.h.
8312
8313 2009-03-27  Eric Blake  <ebb9@byu.net>
8314
8315         test-strerror: make debugging EAI_SYSTEM easier
8316         * modules/getaddrinfo-tests (Depends-on): Add strerror.
8317         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
8318         failure was EAI_SYSTEM.
8319
8320 2009-03-25  Bruno Haible  <bruno@clisp.org>
8321
8322         Fix a problem with --enable-relocatable on Solaris 7.
8323         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
8324         since 2008-02-24.
8325
8326 2009-03-25  Eric Blake  <ebb9@byu.net>
8327
8328         test-sockets: avoid gcc warning
8329         * tests/test-sockets.c (main): Silence compiler warning.
8330
8331 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8332
8333         New modules nproc, pthread, contributed by Glen Lenker.
8334
8335         * MODULES.html.sh: Add pthread, nproc.
8336         * lib/nproc.c: New file.
8337         * lib/nproc.h: New file.
8338         * lib/pthread.in.h: New file.
8339         * m4/pthread.m4: New file.
8340         * modules/nproc: New file.
8341         * modules/pthread: New file.
8342
8343 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8344
8345         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
8346         New variable.
8347
8348 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
8349
8350         filevercmp: handle simple~ and numbered.~3~ backup suffixes
8351         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
8352         * tests/test-filevercmp.c: Add tests for backup suffixes.
8353
8354 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8355
8356         * modules/stdlib (Depends-on): Add stdint, needed when defining
8357         struct random_data on, for example, HP-UX 10.20.  Reported by
8358         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8359
8360 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8361
8362         * lib/readline.c (readline): Call fflush on stdout after printing
8363         prompt.
8364
8365 2009-03-20  Bruno Haible  <bruno@clisp.org>
8366
8367         Remove dependency from 'close' module to -lws2_32 on native Windows.
8368         * lib/close-hook.h: New file.
8369         * lib/close-hook.c: New file.
8370         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
8371         w32sock.h.
8372         (_gl_close_fd_maybe_socket): Remove function.
8373         (rpl_close): Invoke execute_all_close_hooks instead of
8374         _gl_close_fd_maybe_socket.
8375         * lib/sockets.c: Include close-hook.h, w32sock.h.
8376         (close_fd_maybe_socket): New function, essentially from lib/close.c.
8377         (close_sockets_hook): New variable.
8378         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
8379         (gl_sockets_cleanup): Unregister it.
8380         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
8381         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
8382         * modules/close-hook: New file.
8383         * modules/close (Files): Remove lib/w32sock.h.
8384         (Depends-on): Add close-hook.
8385         (Link): Remove section.
8386         * modules/sockets (Files): Add lib/w32sock.h.
8387         (Depends-on): Add close-hook.
8388         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
8389         invocation.
8390         * NEWS: Mention that LIB_CLOSE is gone.
8391
8392 2009-03-23  Eric Blake  <ebb9@byu.net>
8393
8394         signal-tests: test previous patch
8395         * tests/test-signal.c: New file.
8396         * modules/signal-tests: Likewise.
8397
8398         signal.h: always support 'volatile sig_atomic_t'
8399         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
8400         (gl_SIGNAL_H_DEFAULTS): Add a default.
8401         * modules/signal (Makefile.am): Substitute if needed.
8402         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
8403         users can blindly add volatile.
8404         * doc/posix-headers/signal.texi (signal.h): Document it.
8405         Reported by Matthew Woehlke.
8406
8407 2009-03-23  Jim Meyering  <meyering@redhat.com>
8408
8409         pathmax: PATH_MAX: use pathconf only when available
8410         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
8411         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
8412         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
8413         This avoids a link failure in a PSP cross-compilation environment
8414         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
8415
8416         * lib/vasnprintf.c (divide): Fix typo in comment.
8417
8418 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8419
8420         * gnulib-tool (func_filter_filelist): Fix comment.
8421
8422 2009-03-20  Bruno Haible  <bruno@clisp.org>
8423
8424         Make sockets.h self-contained.
8425         * lib/sockets.c: Include sockets.h first.
8426         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
8427
8428 2009-03-19  Eric Blake  <ebb9@byu.net>
8429
8430         doc: mention more functions added in cygwin 1.7.0
8431         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
8432         addition.
8433         * doc/posix-functions/log2f.texi: Likewise.
8434
8435 2009-03-19  Jim Meyering  <meyering@redhat.com>
8436
8437         fsusage: avoid syntax error due to statement-before-declaration
8438         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
8439         after all declarations.  Reported by Matthew Woehlke in
8440         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
8441
8442 2009-03-18  Eric Blake  <ebb9@byu.net>
8443
8444         build-aux/compile: sync from automake
8445         * build-aux/compile: New file, from automake.
8446         * config/srclist.txt: Mention build-aux/compile.
8447
8448 2009-03-17  Bruno Haible  <bruno@clisp.org>
8449
8450         * lib/git-merge-changelog.c: Fix typo in comment.
8451         Reported by Reuben Thomas <rrt@sc3d.org>.
8452
8453 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
8454
8455         * m4/regex.m4: update and improve help for
8456         --without-included-regex.
8457
8458 2009-03-17  Simon Josefsson  <simon@josefsson.org>
8459
8460         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
8461         failure on missing include files.
8462
8463 2009-03-17  Eric Blake  <ebb9@byu.net>
8464
8465         doc: mention more functions added in cygwin 1.7.0
8466         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
8467         addition.
8468         * doc/posix-functions/fwscanf.texi: Likewise.
8469         * doc/posix-functions/swprintf.texi: Likewise.
8470         * doc/posix-functions/swscanf.texi: Likewise.
8471         * doc/posix-functions/vfwprintf.texi: Likewise.
8472         * doc/posix-functions/vfwscanf.texi: Likewise.
8473         * doc/posix-functions/vswprintf.texi: Likewise.
8474         * doc/posix-functions/vswscanf.texi: Likewise.
8475         * doc/posix-functions/vwprintf.texi: Likewise.
8476         * doc/posix-functions/vwscanf.texi: Likewise.
8477         * doc/posix-functions/wcscasecmp.texi: Likewise.
8478         * doc/posix-functions/wcsdup.texi: Likewise.
8479         * doc/posix-functions/wcsftime.texi: Likewise.
8480         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8481         * doc/posix-functions/wprintf.texi: Likewise.
8482         * doc/posix-functions/wscanf.texi: Likewise.
8483         * doc/glibc-functions/gethostbyname2.texi: Likewise.
8484
8485 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8486
8487         maint.mk: really add $(AM_MAKEFLAGS)
8488         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
8489         was inadvertently omitted in the last commit.
8490         Spotted by Bruno Haible.
8491
8492         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
8493         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
8494         $(AM_MAKEFLAGS)' rather than plain `make'.
8495
8496         gnulib-tool: execute $MAKE not make
8497         * gnulib-tool: Default $MAKE to 'make'.
8498         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
8499         than make.  Initialize $MAKE in the do-autobuild script.
8500
8501         gnulib-tool: use $MAKE not make in generated files
8502         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
8503         make, in generated files.  Initialize $MAKE in the do-autobuild
8504         script.
8505
8506         * top/GNUmakefile (_have-git-version-gen): Fix typo.
8507
8508         GNUmakefile: disable parallelism only for multiple, recursive targets
8509         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
8510         additions in the Makefile.
8511         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
8512         by Automake.
8513         (.NOTPARALLEL): Only disable parallel builds if multiple targets
8514         are listed on the command line and at least one of them is
8515         listed in $(ALL_RECURSIVE_TARGETS).
8516
8517 2009-03-14  Bruno Haible  <bruno@clisp.org>
8518
8519         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
8520         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
8521         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
8522         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
8523         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
8524         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
8525         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
8526         unistr/u8-uctomb.
8527         * modules/unistr/u8-strchr (Depends-on): Likewise.
8528         * modules/unistr/u8-strrchr (Depends-on): Likewise.
8529         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
8530         unistr/u16-uctomb.
8531         * modules/unistr/u16-strchr (Depends-on): Likewise.
8532         * modules/unistr/u16-strrchr (Depends-on): Likewise.
8533
8534 2009-03-12  Bruno Haible  <bruno@clisp.org>
8535
8536         Work around select() bug on Interix 3.5.
8537         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
8538         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
8539         * m4/select.m4: New file.
8540         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
8541         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
8542         * modules/select (Files): Add m4/select.m4.
8543         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
8544         * modules/nanosleep (Depends-on): Add select.
8545         * modules/poll (Depends-on): Likewise.
8546         * doc/posix-functions/select.texi: Mention the Interix bug.
8547         Reported by Markus Duft <mduft@gentoo.org>.
8548
8549         * lib/select.c: Renamed from lib/winsock-select.c.
8550         * modules/select (Files): Add lib/select.c, remove
8551         lib/winsock-select.c.
8552         (configure.ac): Update.
8553
8554 2009-03-12  Jim Meyering  <meyering@redhat.com>
8555
8556         avoid gcc warnings about unused macro definitions
8557         * lib/readtokens.c (STREQ): Remove unused definition.
8558         * lib/xmalloc.c (SIZE_MAX): Likewise.
8559         * lib/openat-die.c (N_): Likewise.
8560         * lib/mountlist.c (SIZE_MAX): Remove definition.
8561         Instead, include <stdint.h>.
8562         * lib/readutmp.c: Likewise.
8563         * modules/readutmp (Depends-on): Add stdint.
8564         * modules/mountlist (Depends-on): Add stdint.
8565         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
8566
8567 2009-03-10  Bruno Haible  <bruno@clisp.org>
8568
8569         Tests for module 'mbmemcasecoll'.
8570         * modules/mbmemcasecoll-tests: New file.
8571         * tests/test-mbmemcasecoll1.sh: New file.
8572         * tests/test-mbmemcasecoll2.sh: New file.
8573         * tests/test-mbmemcasecoll3.sh: New file.
8574         * tests/test-mbmemcasecoll.c: New file.
8575
8576         New module 'mbmemcasecoll'.
8577         * lib/mbmemcasecoll.h: New file.
8578         * lib/mbmemcasecoll.c: New file.
8579         * modules/mbmemcasecoll: New file.
8580
8581         * tests/test-mbmemcasecmp.h: New file, extracted from
8582         tests/test-mbmemcasecmp.c.
8583         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
8584         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
8585         (main): Update.
8586         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
8587
8588 2009-03-09  Bruno Haible  <bruno@clisp.org>
8589
8590         Tests for module 'mbmemcasecmp'.
8591         * modules/mbmemcasecmp-tests: New file.
8592         * tests/test-mbmemcasecmp1.sh: New file.
8593         * tests/test-mbmemcasecmp2.sh: New file.
8594         * tests/test-mbmemcasecmp3.sh: New file.
8595         * tests/test-mbmemcasecmp.c: New file.
8596
8597         New module 'mbmemcasecmp'.
8598         * lib/mbmemcasecmp.h: New file.
8599         * lib/mbmemcasecmp.c: New file.
8600         * modules/mbmemcasecmp: New file.
8601
8602 2009-03-09  Bruno Haible  <bruno@clisp.org>
8603
8604         Tests for module 'unicase/ulc-casecoll'.
8605         * modules/unicase/ulc-casecoll-tests: New file.
8606         * tests/unicase/test-ulc-casecoll1.sh: New file.
8607         * tests/unicase/test-ulc-casecoll2.sh: New file.
8608         * tests/unicase/test-ulc-casecoll.c: New file.
8609
8610         New module 'unicase/ulc-casecoll'.
8611         * lib/unicase.h (ulc_casecoll): New declaration.
8612         * lib/unicase/ulc-casecoll.c: New file.
8613         * modules/unicase/ulc-casecoll: New file.
8614
8615         New module 'unicase/ulc-casexfrm'.
8616         * lib/unicase.h (ulc_casexfrm): New declaration.
8617         * lib/unicase/ulc-casexfrm.c: New file.
8618         * modules/unicase/ulc-casexfrm: New file.
8619
8620 2009-03-09  Bruno Haible  <bruno@clisp.org>
8621
8622         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
8623         invocations.
8624
8625         * m4/mbscasecmp.m4: Remove file.
8626         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
8627         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
8628
8629         * m4/mbscasestr.m4: Remove file.
8630         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
8631         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
8632
8633         * m4/mbschr.m4: Remove file.
8634         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
8635         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
8636
8637         * m4/mbscspn.m4: Remove file.
8638         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
8639         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
8640
8641         * m4/mbslen.m4: Remove file.
8642         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
8643         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
8644
8645         * m4/mbsncasecmp.m4: Remove file.
8646         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
8647         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
8648
8649         * m4/mbsnlen.m4: Remove file.
8650         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
8651         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
8652
8653         * m4/mbspbrk.m4: Remove file.
8654         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
8655         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
8656
8657         * m4/mbspcasecmp.m4: Remove file.
8658         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
8659         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
8660
8661         * m4/mbsrchr.m4: Remove file.
8662         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
8663         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
8664
8665         * m4/mbssep.m4: Remove file.
8666         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
8667         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
8668
8669         * m4/mbsspn.m4: Remove file.
8670         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
8671         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
8672
8673         * m4/mbsstr.m4: Remove file.
8674         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
8675         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
8676
8677         * m4/mbstok_r.m4: Remove file.
8678         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
8679         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
8680
8681         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
8682
8683         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
8684         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
8685
8686         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
8687
8688 2009-03-08  Bruno Haible  <bruno@clisp.org>
8689
8690         Tests for module 'unicase/ulc-casecmp'.
8691         * modules/unicase/ulc-casecmp-tests: New file.
8692         * tests/unicase/test-ulc-casecmp1.sh: New file.
8693         * tests/unicase/test-ulc-casecmp2.sh: New file.
8694         * tests/unicase/test-ulc-casecmp.c: New file.
8695
8696         New module 'unicase/ulc-casecmp'.
8697         * lib/unicase.h (ulc_casecmp): New declaration.
8698         * lib/unicase/ulc-casecmp.c: New file.
8699         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
8700         'const SRC_UNIT *'.
8701         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
8702         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
8703         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
8704         * modules/unicase/ulc-casecmp: New file.
8705
8706         Tests for module 'unicase/u32-is-cased'.
8707         * modules/unicase/u32-is-cased-tests: New file.
8708         * tests/unicase/test-u32-is-cased.c: New file.
8709
8710         Tests for module 'unicase/u16-is-cased'.
8711         * modules/unicase/u16-is-cased-tests: New file.
8712         * tests/unicase/test-u16-is-cased.c: New file.
8713
8714         Tests for module 'unicase/u8-is-cased'.
8715         * modules/unicase/u8-is-cased-tests: New file.
8716         * tests/unicase/test-u8-is-cased.c: New file.
8717         * tests/unicase/test-is-cased.h: New file.
8718
8719         New module 'unicase/u32-is-cased'.
8720         * lib/unicase/u32-is-cased.c: New file.
8721         * modules/unicase/u32-is-cased: New file.
8722
8723         New module 'unicase/u16-is-cased'.
8724         * lib/unicase/u16-is-cased.c: New file.
8725         * modules/unicase/u16-is-cased: New file.
8726
8727         New module 'unicase/u8-is-cased'.
8728         * lib/unicase/u8-is-cased.c: New file.
8729         * lib/unicase/u-is-cased.h: New file.
8730         * modules/unicase/u8-is-cased: New file.
8731
8732         Tests for module 'unicase/u32-is-casefolded'.
8733         * modules/unicase/u32-is-casefolded-tests: New file.
8734         * tests/unicase/test-u32-is-casefolded.c: New file.
8735
8736         Tests for module 'unicase/u16-is-casefolded'.
8737         * modules/unicase/u16-is-casefolded-tests: New file.
8738         * tests/unicase/test-u16-is-casefolded.c: New file.
8739
8740         Tests for module 'unicase/u8-is-casefolded'.
8741         * modules/unicase/u8-is-casefolded-tests: New file.
8742         * tests/unicase/test-u8-is-casefolded.c: New file.
8743         * tests/unicase/test-is-casefolded.h: New file.
8744
8745         New module 'unicase/u32-is-casefolded'.
8746         * lib/unicase/u32-is-casefolded.c: New file.
8747         * modules/unicase/u32-is-casefolded: New file.
8748
8749         New module 'unicase/u16-is-casefolded'.
8750         * lib/unicase/u16-is-casefolded.c: New file.
8751         * modules/unicase/u16-is-casefolded: New file.
8752
8753         New module 'unicase/u8-is-casefolded'.
8754         * lib/unicase/u8-is-casefolded.c: New file.
8755         * modules/unicase/u8-is-casefolded: New file.
8756
8757         Tests for module 'unicase/u32-is-titlecase'.
8758         * modules/unicase/u32-is-titlecase-tests: New file.
8759         * tests/unicase/test-u32-is-titlecase.c: New file.
8760
8761         Tests for module 'unicase/u16-is-titlecase'.
8762         * modules/unicase/u16-is-titlecase-tests: New file.
8763         * tests/unicase/test-u16-is-titlecase.c: New file.
8764
8765         Tests for module 'unicase/u8-is-titlecase'.
8766         * modules/unicase/u8-is-titlecase-tests: New file.
8767         * tests/unicase/test-u8-is-titlecase.c: New file.
8768         * tests/unicase/test-is-titlecase.h: New file.
8769
8770         New module 'unicase/u32-is-titlecase'.
8771         * lib/unicase/u32-is-titlecase.c: New file.
8772         * modules/unicase/u32-is-titlecase: New file.
8773
8774         New module 'unicase/u16-is-titlecase'.
8775         * lib/unicase/u16-is-titlecase.c: New file.
8776         * modules/unicase/u16-is-titlecase: New file.
8777
8778         New module 'unicase/u8-is-titlecase'.
8779         * lib/unicase/u8-is-titlecase.c: New file.
8780         * modules/unicase/u8-is-titlecase: New file.
8781
8782         Tests for module 'unicase/u32-is-lowercase'.
8783         * modules/unicase/u32-is-lowercase-tests: New file.
8784         * tests/unicase/test-u32-is-lowercase.c: New file.
8785
8786         Tests for module 'unicase/u16-is-lowercase'.
8787         * modules/unicase/u16-is-lowercase-tests: New file.
8788         * tests/unicase/test-u16-is-lowercase.c: New file.
8789
8790         Tests for module 'unicase/u8-is-lowercase'.
8791         * modules/unicase/u8-is-lowercase-tests: New file.
8792         * tests/unicase/test-u8-is-lowercase.c: New file.
8793         * tests/unicase/test-is-lowercase.h: New file.
8794
8795         New module 'unicase/u32-is-lowercase'.
8796         * lib/unicase/u32-is-lowercase.c: New file.
8797         * modules/unicase/u32-is-lowercase: New file.
8798
8799         New module 'unicase/u16-is-lowercase'.
8800         * lib/unicase/u16-is-lowercase.c: New file.
8801         * modules/unicase/u16-is-lowercase: New file.
8802
8803         New module 'unicase/u8-is-lowercase'.
8804         * lib/unicase/u8-is-lowercase.c: New file.
8805         * modules/unicase/u8-is-lowercase: New file.
8806
8807         Tests for module 'unicase/u32-is-uppercase'.
8808         * modules/unicase/u32-is-uppercase-tests: New file.
8809         * tests/unicase/test-u32-is-uppercase.c: New file.
8810
8811         Tests for module 'unicase/u16-is-uppercase'.
8812         * modules/unicase/u16-is-uppercase-tests: New file.
8813         * tests/unicase/test-u16-is-uppercase.c: New file.
8814
8815         Tests for module 'unicase/u8-is-uppercase'.
8816         * modules/unicase/u8-is-uppercase-tests: New file.
8817         * tests/unicase/test-u8-is-uppercase.c: New file.
8818         * tests/unicase/test-is-uppercase.h: New file.
8819
8820         New module 'unicase/u32-is-uppercase'.
8821         * lib/unicase/u32-is-uppercase.c: New file.
8822         * modules/unicase/u32-is-uppercase: New file.
8823
8824         New module 'unicase/u16-is-uppercase'.
8825         * lib/unicase/u16-is-uppercase.c: New file.
8826         * modules/unicase/u16-is-uppercase: New file.
8827
8828         New module 'unicase/u8-is-uppercase'.
8829         * lib/unicase/u8-is-uppercase.c: New file.
8830         * modules/unicase/u8-is-uppercase: New file.
8831
8832         New module 'unicase/u32-is-invariant'.
8833         * lib/unicase/u32-is-invariant.c: New file.
8834         * modules/unicase/u32-is-invariant: New file.
8835
8836         New module 'unicase/u16-is-invariant'.
8837         * lib/unicase/u16-is-invariant.c: New file.
8838         * modules/unicase/u16-is-invariant: New file.
8839
8840         New module 'unicase/u8-is-invariant'.
8841         * lib/unicase/u8-is-invariant.c: New file.
8842         * lib/unicase/invariant.h: New file.
8843         * lib/unicase/u-is-invariant.h: New file.
8844         * modules/unicase/u8-is-invariant: New file.
8845
8846         Tests for module 'unicase/u32-casecoll'.
8847         * modules/unicase/u32-casecoll-tests: New file.
8848         * tests/unicase/test-u32-casecoll.c: New file.
8849
8850         Tests for module 'unicase/u16-casecoll'.
8851         * modules/unicase/u16-casecoll-tests: New file.
8852         * tests/unicase/test-u16-casecoll.c: New file.
8853
8854         Tests for module 'unicase/u8-casecoll'.
8855         * modules/unicase/u8-casecoll-tests: New file.
8856         * tests/unicase/test-u8-casecoll.c: New file.
8857
8858         New module 'unicase/u32-casecoll'.
8859         * lib/unicase/u32-casecoll.c: New file.
8860         * modules/unicase/u32-casecoll: New file.
8861
8862         New module 'unicase/u16-casecoll'.
8863         * lib/unicase/u16-casecoll.c: New file.
8864         * modules/unicase/u16-casecoll: New file.
8865
8866         New module 'unicase/u8-casecoll'.
8867         * lib/unicase/u8-casecoll.c: New file.
8868         * lib/unicase/u-casecoll.h: New file.
8869         * modules/unicase/u8-casecoll: New file.
8870
8871         New module 'unicase/u32-casexfrm'.
8872         * lib/unicase/u32-casexfrm.c: New file.
8873         * modules/unicase/u32-casexfrm: New file.
8874
8875         New module 'unicase/u16-casexfrm'.
8876         * lib/unicase/u16-casexfrm.c: New file.
8877         * modules/unicase/u16-casexfrm: New file.
8878
8879         New module 'unicase/u8-casexfrm'.
8880         * lib/unicase/u8-casexfrm.c: New file.
8881         * lib/unicase/u-casexfrm.h: New file.
8882         * modules/unicase/u8-casexfrm: New file.
8883
8884         Tests for module 'unicase/u32-casecmp'.
8885         * modules/unicase/u32-casecmp-tests: New file.
8886         * tests/unicase/test-u32-casecmp.c: New file.
8887
8888         Tests for module 'unicase/u16-casecmp'.
8889         * modules/unicase/u16-casecmp-tests: New file.
8890         * tests/unicase/test-u16-casecmp.c: New file.
8891
8892         Tests for module 'unicase/u8-casecmp'.
8893         * modules/unicase/u8-casecmp-tests: New file.
8894         * tests/unicase/test-u8-casecmp.c: New file.
8895         * tests/unicase/test-casecmp.h: New file.
8896
8897         New module 'unicase/u32-casecmp'.
8898         * lib/unicase/u32-casecmp.c: New file.
8899         * modules/unicase/u32-casecmp: New file.
8900
8901         New module 'unicase/u16-casecmp'.
8902         * lib/unicase/u16-casecmp.c: New file.
8903         * modules/unicase/u16-casecmp: New file.
8904
8905         New module 'unicase/u8-casecmp'.
8906         * lib/unicase/u8-casecmp.c: New file.
8907         * lib/unicase/u-casecmp.h: New file.
8908         * modules/unicase/u8-casecmp: New file.
8909
8910         Tests for module 'unicase/u32-casefold'.
8911         * modules/unicase/u32-casefold-tests: New file.
8912         * tests/unicase/test-u32-casefold.c: New file.
8913
8914         Tests for module 'unicase/u16-casefold'.
8915         * modules/unicase/u16-casefold-tests: New file.
8916         * tests/unicase/test-u16-casefold.c: New file.
8917
8918         Tests for module 'unicase/u8-casefold'.
8919         * modules/unicase/u8-casefold-tests: New file.
8920         * tests/unicase/test-u8-casefold.c: New file.
8921
8922         New module 'unicase/u32-casefold'.
8923         * lib/unicase/u32-casefold.c: New file.
8924         * modules/unicase/u32-casefold: New file.
8925
8926         New module 'unicase/u16-casefold'.
8927         * lib/unicase/u16-casefold.c: New file.
8928         * modules/unicase/u16-casefold: New file.
8929
8930         New module 'unicase/u8-casefold'.
8931         * lib/unicase/u8-casefold.c: New file.
8932         * lib/unicase/u-casefold.h: New file.
8933         * modules/unicase/u8-casefold: New file.
8934
8935         New module 'unicase/tocasefold'.
8936         * lib/unicase/casefold.h: New file.
8937         * lib/unicase/tocasefold.c: New file.
8938         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
8939         * modules/unicase/tocasefold: New file.
8940
8941         Tests for module 'unicase/u32-totitle'.
8942         * modules/unicase/u32-totitle-tests: New file.
8943         * tests/unicase/test-u32-totitle.c: New file.
8944
8945         Tests for module 'unicase/u16-totitle'.
8946         * modules/unicase/u16-totitle-tests: New file.
8947         * tests/unicase/test-u16-totitle.c: New file.
8948
8949         Tests for module 'unicase/u8-totitle'.
8950         * modules/unicase/u8-totitle-tests: New file.
8951         * tests/unicase/test-u8-totitle.c: New file.
8952
8953         New module 'unicase/u32-totitle'.
8954         * lib/unicase/u32-totitle.c: New file.
8955         * modules/unicase/u32-totitle: New file.
8956
8957         New module 'unicase/u16-totitle'.
8958         * lib/unicase/u16-totitle.c: New file.
8959         * modules/unicase/u16-totitle: New file.
8960
8961         New module 'unicase/u8-totitle'.
8962         * lib/unicase/u8-totitle.c: New file.
8963         * lib/unicase/u-totitle.h: New file.
8964         * modules/unicase/u8-totitle: New file.
8965
8966         Tests for module 'unicase/u32-tolower'.
8967         * modules/unicase/u32-tolower-tests: New file.
8968         * tests/unicase/test-u32-tolower.c: New file.
8969
8970         Tests for module 'unicase/u16-tolower'.
8971         * modules/unicase/u16-tolower-tests: New file.
8972         * tests/unicase/test-u16-tolower.c: New file.
8973
8974         Tests for module 'unicase/u8-tolower'.
8975         * modules/unicase/u8-tolower-tests: New file.
8976         * tests/unicase/test-u8-tolower.c: New file.
8977
8978         New module 'unicase/u32-tolower'.
8979         * lib/unicase/u32-tolower.c: New file.
8980         * modules/unicase/u32-tolower: New file.
8981
8982         New module 'unicase/u16-tolower'.
8983         * lib/unicase/u16-tolower.c: New file.
8984         * modules/unicase/u16-tolower: New file.
8985
8986         New module 'unicase/u8-tolower'.
8987         * lib/unicase/u8-tolower.c: New file.
8988         * modules/unicase/u8-tolower: New file.
8989
8990         Tests for module 'unicase/u32-toupper'.
8991         * modules/unicase/u32-toupper-tests: New file.
8992         * tests/unicase/test-u32-toupper.c: New file.
8993
8994         Tests for module 'unicase/u16-toupper'.
8995         * modules/unicase/u16-toupper-tests: New file.
8996         * tests/unicase/test-u16-toupper.c: New file.
8997
8998         Tests for module 'unicase/u8-toupper'.
8999         * modules/unicase/u8-toupper-tests: New file.
9000         * tests/unicase/test-u8-toupper.c: New file.
9001
9002         New module 'unicase/u32-toupper'.
9003         * lib/unicase/u32-toupper.c: New file.
9004         * modules/unicase/u32-toupper: New file.
9005
9006         New module 'unicase/u16-toupper'.
9007         * lib/unicase/u16-toupper.c: New file.
9008         * modules/unicase/u16-toupper: New file.
9009
9010         New module 'unicase/u8-toupper'.
9011         * lib/unicase/u8-toupper.c: New file.
9012         * modules/unicase/u8-toupper: New file.
9013
9014         New module 'unicase/u32-casemap'.
9015         * lib/unicase/u32-casemap.c: New file.
9016         * modules/unicase/u32-casemap: New file.
9017
9018         New module 'unicase/u16-casemap'.
9019         * lib/unicase/u16-casemap.c: New file.
9020         * modules/unicase/u16-casemap: New file.
9021
9022         New module 'unicase/u8-casemap'.
9023         * lib/unicase/unicasemap.h: New file.
9024         * lib/unicase/u8-casemap.c: New file.
9025         * lib/unicase/u-casemap.h: New file.
9026         * modules/unicase/u8-casemap: New file.
9027
9028         New module 'unicase/special-casing'.
9029         * lib/unicase/special-casing.h: New file.
9030         * lib/unicase/special-casing.c: New file.
9031         * lib/unicase/special-casing-table.gperf: New file, generated by
9032         gen-uni-tables.c.
9033         * modules/unicase/special-casing: New file.
9034
9035         Tests for module 'unicase/locale-language'.
9036         * modules/unicase/locale-language-tests: New file.
9037         * tests/unicase/test-locale-language.sh: New file.
9038         * tests/unicase/test-locale-language.c: New file.
9039
9040         New module 'unicase/locale-language'.
9041         * lib/unicase/locale-language.c: New file.
9042         * lib/unicase/locale-languages.gperf: New file.
9043         * modules/unicase/locale-language: New file.
9044
9045         Generate more tables for case conversion and case folding.
9046         * lib/gen-uni-tables.c (SCC_*): New enum items.
9047         (struct special_casing_rule): New type.
9048         (casing_rules, num_casing_rules, allocated_casing_rules): New
9049         variables.
9050         (add_casing_rule, fill_casing_rules): New functions.
9051         (struct casefold_rule): New type.
9052         (casefolding_rules, num_casefolding_rules,
9053         allocated_casefolding_rules): New variables.
9054         (fill_casefolding_rules): New function.
9055         (unicode_casefold): New variable.
9056         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
9057         sort_casing_rules, output_casing_rules): New functions.
9058         (main): Accept to more arguments: SpecialCasing.txt and
9059         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
9060         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
9061         Output mapping for casefolding.
9062
9063         * lib/unicase.h: Include stdbool.h, uninorm.h.
9064         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
9065         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
9066         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
9067         arguments.
9068         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
9069         resultp arguments.
9070         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
9071         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
9072         resultp arguments.
9073         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
9074         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
9075         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
9076         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
9077         declarations.
9078         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
9079
9080 2009-03-08  Bruno Haible  <bruno@clisp.org>
9081
9082         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
9083         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
9084         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
9085         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
9086
9087 2009-03-07  Bruno Haible  <bruno@clisp.org>
9088
9089         Adjust u*_normcmp, u*_normcoll API.
9090         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
9091         u16_normcoll, u32_normcoll): Change failure conventions.
9092         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
9093         errno and return -1.
9094         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
9095
9096 2009-03-07  Bruno Haible  <bruno@clisp.org>
9097
9098         Tests for module 'uninorm/u32-normcoll'.
9099         * modules/uninorm/u32-normcoll-tests: New file.
9100         * tests/uninorm/test-u32-normcoll.c: New file.
9101
9102         Tests for module 'uninorm/u16-normcoll'.
9103         * modules/uninorm/u16-normcoll-tests: New file.
9104         * tests/uninorm/test-u16-normcoll.c: New file.
9105
9106         Tests for module 'uninorm/u8-normcoll'.
9107         * modules/uninorm/u8-normcoll-tests: New file.
9108         * tests/uninorm/test-u8-normcoll.c: New file.
9109
9110 2009-03-07  Bruno Haible  <bruno@clisp.org>
9111
9112         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
9113         tests/uninorm/test-u32-normcmp.c.
9114         * tests/uninorm/test-u32-normcmp.c: Include it.
9115         (test_nonascii): New function, extracted from main. Add some more
9116         tests.
9117         (main): Invoke test_ascii and test_nonascii.
9118         * modules/uninorm/u32-normcmp-tests (Files): Add
9119         tests/uninorm/test-u32-normcmp.h.
9120         (Depends-on): Remove uninorm/u32-normcmp.
9121
9122         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
9123         tests/uninorm/test-u16-normcmp.c.
9124         * tests/uninorm/test-u16-normcmp.c: Include it.
9125         (test_nonascii): New function, extracted from main. Add some more
9126         tests.
9127         (main): Invoke test_ascii and test_nonascii.
9128         * modules/uninorm/u16-normcmp-tests (Files): Add
9129         tests/uninorm/test-u16-normcmp.h.
9130         (Depends-on): Remove uninorm/u16-normcmp.
9131
9132         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
9133         tests/uninorm/test-u8-normcmp.c.
9134         * tests/uninorm/test-u8-normcmp.c: Include it.
9135         (test_nonascii): New function, extracted from main. Add some more
9136         tests.
9137         (main): Invoke test_ascii and test_nonascii.
9138         * modules/uninorm/u8-normcmp-tests (Files): Add
9139         tests/uninorm/test-u8-normcmp.h.
9140         (Depends-on): Remove uninorm/u8-normcmp.
9141
9142 2009-03-07  Bruno Haible  <bruno@clisp.org>
9143
9144         New module 'uninorm/u32-normcoll'.
9145         * lib/uninorm/u32-normcoll.c: New file.
9146         * modules/uninorm/u32-normcoll: New file.
9147
9148         New module 'uninorm/u16-normcoll'.
9149         * lib/uninorm/u16-normcoll.c: New file.
9150         * modules/uninorm/u16-normcoll: New file.
9151
9152         New module 'uninorm/u8-normcoll'.
9153         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
9154         declarations.
9155         * lib/uninorm/u8-normcoll.c: New file.
9156         * lib/uninorm/u-normcoll.h: New file.
9157         * modules/uninorm/u8-normcoll: New file.
9158
9159         New module 'uninorm/u32-normxfrm'.
9160         * lib/uninorm/u32-normxfrm.c: New file.
9161         * modules/uninorm/u32-normxfrm: New file.
9162
9163         New module 'uninorm/u16-normxfrm'.
9164         * lib/uninorm/u16-normxfrm.c: New file.
9165         * modules/uninorm/u16-normxfrm: New file.
9166
9167         New module 'uninorm/u8-normxfrm'.
9168         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
9169         declarations.
9170         * lib/uninorm/u8-normxfrm.c: New file.
9171         * lib/uninorm/u-normxfrm.h: New file.
9172         * modules/uninorm/u8-normxfrm: New file.
9173
9174 2009-03-07  Bruno Haible  <bruno@clisp.org>
9175
9176         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
9177         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
9178         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
9179
9180 2009-03-07  Bruno Haible  <bruno@clisp.org>
9181
9182         New module 'memxfrm'.
9183         * lib/memxfrm.h: New file.
9184         * lib/memxfrm.c: New file.
9185         * modules/memxfrm: New file.
9186
9187 2009-03-07  Bruno Haible  <bruno@clisp.org>
9188
9189         New module 'memcmp2'.
9190         * lib/memcmp2.h: New file.
9191         * lib/memcmp2.c: New file.
9192         * modules/memcmp2: New file.
9193
9194 2009-03-07  Bruno Haible  <bruno@clisp.org>
9195
9196         Tests for module 'uninorm/decomposing-form'.
9197         * modules/uninorm/decomposing-form-tests: New file.
9198         * tests/uninorm/test-decomposing-form.c: New file.
9199
9200         New module 'uninorm/decomposing-form'.
9201         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
9202         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
9203         Add 'decomposing_variant' field.
9204         * lib/uninorm/decomposing-form.c: New file.
9205         * lib/uninorm/nfc.c (uninorm_nfc): Update.
9206         * lib/uninorm/nfd.c (uninorm_nfd): Update.
9207         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
9208         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
9209         * modules/uninorm/decomposing-form: New file.
9210         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
9211         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
9212
9213 2009-03-07  Bruno Haible  <bruno@clisp.org>
9214
9215         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
9216         strings.
9217
9218 2009-03-06  Bruno Haible  <bruno@clisp.org>
9219
9220         Tests for module 'uninorm/u32-normcmp'.
9221         * tests/uninorm/test-u32-normcmp.c: New file.
9222         * modules/uninorm/u32-normcmp-tests: New file.
9223
9224         Tests for module 'uninorm/u16-normcmp'.
9225         * tests/uninorm/test-u16-normcmp.c: New file.
9226         * modules/uninorm/u16-normcmp-tests: New file.
9227
9228         Tests for module 'uninorm/u8-normcmp'.
9229         * tests/uninorm/test-u8-normcmp.c: New file.
9230         * modules/uninorm/u8-normcmp-tests: New file.
9231
9232         New module 'uninorm/u32-normcmp'.
9233         * lib/uninorm/u32-normcmp.c: New file.
9234         * modules/uninorm/u32-normcmp: New file.
9235
9236         New module 'uninorm/u16-normcmp'.
9237         * lib/uninorm/u16-normcmp.c: New file.
9238         * modules/uninorm/u16-normcmp: New file.
9239
9240         New module 'uninorm/u8-normcmp'.
9241         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
9242         declarations.
9243         * lib/uninorm/u8-normcmp.c: New file.
9244         * lib/uninorm/u-normcmp.h: New file.
9245         * modules/uninorm/u8-normcmp: New file.
9246
9247 2009-03-06  Bruno Haible  <bruno@clisp.org>
9248
9249         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
9250         Reported by Eric Blake.
9251
9252 2009-03-06  Eric Blake  <ebb9@byu.net>
9253             Bruno Haible  <bruno@clisp.org>
9254
9255         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
9256         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
9257         condition.
9258         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
9259         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
9260         condition.
9261         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
9262
9263 2009-03-06  Eric Blake  <ebb9@byu.net>
9264
9265         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
9266         to avoid compiler warnings.
9267         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
9268
9269 2009-03-05  Bruno Haible  <bruno@clisp.org>
9270
9271         * tests/test-ftell.c (main): Disable test beyond end of file on
9272         FreeMiNT.
9273         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9274
9275 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
9276
9277         * lib/filevercmp.c: Move hidden files up in ordering.
9278         * tests/test-filevercmp.c: Add tests for hidden files.
9279
9280 2009-03-04  Bruno Haible  <bruno@clisp.org>
9281
9282         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
9283         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
9284         AM_CFLAGS.
9285         Reported by Simon Josefsson.
9286
9287 2009-03-03  Bruno Haible  <bruno@clisp.org>
9288
9289         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
9290         Reported by Simon Josefsson.
9291
9292         * doc/ld-version-script.texi: Update node reference.
9293
9294 2009-03-03  Bruno Haible  <bruno@clisp.org>
9295
9296         * modules/visibility (License): Change to 'unlimited'.
9297         Suggested by Simon Josefsson.
9298
9299 2009-03-03  Jim Meyering  <meyering@redhat.com>
9300
9301         unlinkdir: cannot_unlink_dir may modify process state
9302         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
9303         it's neither thread-safe nor appropriate for use in a library.
9304
9305 2009-03-03  Eric Blake  <ebb9@byu.net>
9306
9307         test-closein: silence test under Darwin
9308         * tests/test-closein.sh: Ignore stderr from cat, since we don't
9309         care if it dies from EPIPE or EBADF.
9310
9311 2009-03-03  Bruno Haible  <bruno@clisp.org>
9312
9313         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
9314         earlier.
9315         * doc/visibility.texi: Fix @node and @section.
9316
9317 2009-03-03  Simon Josefsson  <simon@josefsson.org>
9318
9319         * doc/gnulib.texi: Link to sections for ld version script and
9320         visibility.
9321         * doc/visibility.texi: Add @node and @section.
9322         * modules/ld-version-script: New module.
9323         * m4/ld-version-script.m4: New file.
9324         * doc/ld-version-script.texi: New file.
9325
9326 2009-03-02  David Lutterkort  <lutter@redhat.com>
9327
9328         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
9329         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9330
9331 2009-03-02  Bruno Haible  <bruno@clisp.org>
9332
9333         * doc/visibility.texi: Mention libtool's -export-symbols option.
9334
9335 2009-03-02  Jim Meyering  <meyering@redhat.com>
9336
9337         announce-gen: new option: --no-print-checksums
9338         * build-aux/announce-gen (usage): Describe it.
9339         (print_checksums): Print a newline here, not in the [*] footnote.
9340         (main): Honor it.
9341
9342 2009-03-01  Bruno Haible  <bruno@clisp.org>
9343
9344         Use socklen_t in the native Windows replacements prototypes.
9345         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
9346         instead of 'int'.
9347         * lib/getsockopt.c (rpl_getsockopt): Likewise.
9348         * lib/setsockopt.c (rpl_setsockopt): Likewise.
9349         * modules/getsockopt (Depends-on): Add socklen.
9350         * modules/setsockopt (Depends-on): Add socklen.
9351
9352 2009-03-01  Bruno Haible  <bruno@clisp.org>
9353
9354         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
9355         least 4.2.
9356
9357 2009-03-01  Eric Blake  <ebb9@byu.net>
9358             Bruno Haible  <bruno@clisp.org>
9359
9360         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
9361         error messages.
9362         * lib/wait-process.c (wait_subprocess): Omit error message about
9363         deadly signal sent to the child of termsigp != NULL.
9364
9365 2009-03-01  Eric Blake  <ebb9@byu.net>
9366
9367         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
9368
9369 2009-03-01  Bruno Haible  <bruno@clisp.org>
9370
9371         Avoid a gcc warning.
9372         * tests/test-sched.c (b): Make global.
9373         Reported by Eric Blake.
9374
9375 2009-01-19  Martin Lambers  <marlam@marlam.de>
9376
9377         Provide POSIX semantics for socket timeout options on W32.
9378         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
9379         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
9380         * modules/setsockopt: Depend on sys_time module for struct timeval.
9381         * modules/getsockopt: Depend on sys_time module for struct timeval.
9382
9383 2009-03-01  Simon Josefsson  <simon@josefsson.org>
9384
9385         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
9386         __USE_GNU, for consistency with netdb.in.h.
9387         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9388
9389 2009-03-01  Bruno Haible  <bruno@clisp.org>
9390
9391         More support for FreeMiNT.
9392         * lib/fseeko.c (rpl_fseeko): Complete last commit.
9393         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9394
9395 2009-03-01  Bruno Haible  <bruno@clisp.org>
9396
9397         More support for FreeMiNT.
9398         * lib/fpurge.c (fpurge): Correct last commit.
9399         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9400
9401 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9402
9403         Fix unportable awk script in vc-list-files.
9404         * build-aux/vc-list-files: In the replacement awk script, use
9405         substr with a second argument of 1, not zero.
9406         Report by Simon Josefsson.
9407
9408 2009-02-28  Bruno Haible  <bruno@clisp.org>
9409
9410         More support for FreeMiNT.
9411         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
9412         to FreeMiNT today.
9413         * lib/fwriting.c (fwriting): Likewise.
9414         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
9415
9416 2009-02-28  Bruno Haible  <bruno@clisp.org>
9417
9418         * tests/test-freadseek.c (main): Disable test beyond end of file on
9419         FreeMiNT.
9420         * tests/test-ftello.c (main): Likewise.
9421         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9422
9423 2009-02-28  Bruno Haible  <bruno@clisp.org>
9424
9425         Add tentative support for FreeMiNT.
9426         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
9427         * lib/fpurge.c (fpurge): Likewise.
9428         * lib/freadable.c (freadable): Likewise.
9429         * lib/freading.c (freading): Likewise.
9430         * lib/freadptr.c (freadptr): Likewise.
9431         * lib/freadseek.c (freadptrinc): Likewise.
9432         * lib/fseeko.c (rpl_fseeko): Likewise.
9433         * lib/fseterr.c (fseterr): Likewise.
9434         * lib/fwritable.c (fwritable): Likewise.
9435         * lib/fwriting.c (fwriting): Likewise.
9436         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
9437         Hourihane.
9438         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9439
9440 2009-02-28  Bruno Haible  <bruno@clisp.org>
9441
9442         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
9443         SIGCHLD.
9444         Reported by Jim Meyering.
9445
9446 2009-02-28  Bruno Haible  <bruno@clisp.org>
9447
9448         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
9449         Mention the results of these tests on various platforms.
9450         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
9451         order.
9452         * doc/posix-functions/printf.texi: Likewise.
9453         * doc/posix-functions/snprintf.texi: Likewise.
9454         * doc/posix-functions/sprintf.texi: Likewise.
9455         * doc/posix-functions/vfprintf.texi: Likewise.
9456         * doc/posix-functions/vprintf.texi: Likewise.
9457         * doc/posix-functions/vsnprintf.texi: Likewise.
9458         * doc/posix-functions/vsprintf.texi: Likewise.
9459         * doc/glibc-functions/obstack_printf.texi: Likewise.
9460         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
9461
9462 2009-02-28  Bruno Haible  <bruno@clisp.org>
9463
9464         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
9465         Reported by Loïc Minier <lool@dooz.org>.
9466
9467 2009-02-27  Bruno Haible  <bruno@clisp.org>
9468
9469         * gnulib-tool (func_import): Make the sed expression used to create the
9470         sed script for updating the .gitignore file POSIX compliant.
9471         Reported by Eric Blake.
9472
9473 2009-02-27  Bruno Haible  <bruno@clisp.org>
9474
9475         * gnulib-tool (sed): Don't alias as "sed --posix".
9476         Reported by Eric Blake.
9477
9478 2009-02-27  Bruno Haible  <bruno@clisp.org>
9479
9480         Avoid test link errors.
9481         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
9482         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
9483         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
9484         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
9485         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9486
9487 2009-02-27  Bruno Haible  <bruno@clisp.org>
9488
9489         Avoid spurious "(cached)" in configure output.
9490         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
9491         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
9492         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
9493         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
9494         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
9495         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
9496         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
9497         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
9498         Reported by Eric Blake.
9499
9500 2009-02-27  Eric Blake  <ebb9@byu.net>
9501
9502         printf: fix regression in previous patch
9503         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
9504
9505 2009-02-27  Bruno Haible  <bruno@clisp.org>
9506
9507         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
9508         value.
9509         * lib/stdint.in.h: Likewise.
9510         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
9511
9512 2009-02-27  Eric Blake  <ebb9@byu.net>
9513
9514         doc: mention more functions added in cygwin 1.7.0
9515         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
9516         addition.
9517         * doc/posix-functions/open_wmemstream.texi: Likewise.
9518         * doc/posix-functions/wcsnlen.texi: Likewise.
9519         * doc/posix-functions/wcsnrtombs.texi: Likewise.
9520         * doc/posix-functions/wcstod.texi: Likewise.
9521         * doc/posix-functions/wcstof.texi: Likewise.
9522         * doc/posix-functions/wcstoimax.texi: Likewise.
9523         * doc/posix-functions/wcstok.texi: Likewise.
9524         * doc/posix-functions/wcstoumax.texi: Likewise.
9525
9526         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
9527         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
9528         * doc/posix-functions/fprintf.texi: Update.
9529         * doc/posix-functions/printf.texi: Update.
9530         * doc/posix-functions/snprintf.texi: Update.
9531         * doc/posix-functions/sprintf.texi: Update.
9532         * doc/posix-functions/vfprintf.texi: Update.
9533         * doc/posix-functions/vprintf.texi: Update.
9534         * doc/posix-functions/vsnprintf.texi: Update.
9535         * doc/posix-functions/vsprintf.texi: Update.
9536         * doc/glibc-functions/obstack_printf.texi: Update.
9537         * doc/glibc-functions/obstack_vprintf.texi: Update.
9538
9539 2009-02-26  Eric Blake  <ebb9@byu.net>
9540
9541         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
9542         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
9543         compilation bug by using runtime conversion.
9544         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
9545         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
9546         * modules/ceill-tests (Files): Use nan.h.
9547         * modules/floorl-tests (Files): Likewise.
9548         * modules/frexpl-tests (Files): Likewise.
9549         * modules/isnanl-tests (Files): Likewise.
9550         * modules/ldexpl-tests (Files): Likewise.
9551         * modules/roundl-tests (Files): Likewise.
9552         * modules/truncl-tests (Files): Likewise.
9553         * tests/test-ceill.c (main): Use a working NaN.
9554         * tests/test-floorl.c (main): Likewise.
9555         * tests/test-frexpl.c (main): Likewise.
9556         * tests/test-isnan.c (test_long_double): Likewise.
9557         * tests/test-isnanl.h (main): Likewise.
9558         * tests/test-ldexpl.h (main): Likewise.
9559         * tests/test-roundl.h (main): Likewise.
9560         * tests/test-truncl.h (main): Likewise.
9561         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
9562
9563 2009-02-26  Eric Blake  <ebb9@byu.net>
9564             Bruno Haible  <bruno@clisp.org>
9565
9566         Work around a *printf bug with %ls on Solaris.
9567         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
9568         precision is specified, sprintf stops converting the wide string
9569         argument when the number of bytes that have been produced by this
9570         conversion equals or exceeds the precision.
9571         * doc/posix-functions/fprintf.texi: Update.
9572         * doc/posix-functions/printf.texi: Update.
9573         * doc/posix-functions/snprintf.texi: Update.
9574         * doc/posix-functions/sprintf.texi: Update.
9575         * doc/posix-functions/vfprintf.texi: Update.
9576         * doc/posix-functions/vprintf.texi: Update.
9577         * doc/posix-functions/vsnprintf.texi: Update.
9578         * doc/posix-functions/vsprintf.texi: Update.
9579         * doc/glibc-functions/obstack_printf.texi: Update.
9580         * doc/glibc-functions/obstack_vprintf.texi: Update.
9581
9582 2009-02-26  Eric Blake  <ebb9@byu.net>
9583
9584         stdlib: favor compiler check of random.h
9585         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
9586         to avoid an ObjC random.h installed by Swarm.
9587
9588 2009-02-26  Bruno Haible  <bruno@clisp.org>
9589
9590         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
9591         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
9592         Reported by Gary V. Vaughan <gary@gnu.org>.
9593
9594 2009-02-26  Bruno Haible  <bruno@clisp.org>
9595
9596         Fix *printf behaviour regarding the %ls directive.
9597         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
9598         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
9599         NEED_PRINTF_DIRECTIVE_LS.
9600         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
9601         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9602         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9603         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
9604         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
9605         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
9606         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9607         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9608         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9609         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9610         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9611         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
9612         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9613         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9614         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9615         * doc/posix-functions/fprintf.texi: Update.
9616         * doc/posix-functions/printf.texi: Update.
9617         * doc/posix-functions/snprintf.texi: Update.
9618         * doc/posix-functions/sprintf.texi: Update.
9619         * doc/posix-functions/vfprintf.texi: Update.
9620         * doc/posix-functions/vprintf.texi: Update.
9621         * doc/posix-functions/vsnprintf.texi: Update.
9622         * doc/posix-functions/vsprintf.texi: Update.
9623         * doc/glibc-functions/obstack_printf.texi: Update.
9624         * doc/glibc-functions/obstack_vprintf.texi: Update.
9625         Reported by Eric Blake.
9626
9627 2009-02-25  Bruno Haible  <bruno@clisp.org>
9628
9629         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
9630         with known value.
9631         Reported by Gary V. Vaughan <gary@gnu.org>.
9632
9633 2009-02-25  Bruno Haible  <bruno@clisp.org>
9634
9635         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
9636         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
9637         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
9638         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
9639         Reported by Gary V. Vaughan <gary@gnu.org>.
9640
9641 2009-02-25  Bruno Haible  <bruno@clisp.org>
9642
9643         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
9644         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
9645         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
9646         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
9647         Reported by Gary V. Vaughan <gary@gnu.org>.
9648
9649 2009-02-25  Eric Blake  <ebb9@byu.net>
9650
9651         tests: skip fseek/ftell tests if ungetc is broken
9652         * m4/ungetc.m4: New file.
9653         * modules/fseek-tests: Split test, so ungetc dependency is
9654         separate from rest of test.
9655         * modules/fseeko-tests: Likewise.
9656         * modules/ftell-tests: Likewise.
9657         * modules/ftello-tests: Likewise.
9658         * tests/test-fseek.c (main): Isolate ungetc dependency.
9659         * tests/test-fseeko.c (main): Likewise.
9660         * tests/test-ftell.c (main): Likewise.
9661         * tests/test-ftello.c (main): Likewise.
9662         * tests/test-fseek2.sh: New file.
9663         * tests/test-fseeko2.sh: Likewise.
9664         * tests/test-ftell2.sh: Likewise.
9665         * tests/test-ftello2.sh: Likewise.
9666
9667 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
9668
9669         test-getaddrinfo: fix usage of skip return code 77
9670         * tests/test-gettaddrinfo.c: Return skip code 77 only
9671         for first occurance of skip (4x77 is not 77)
9672
9673 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
9674
9675         strtod: avoid C99 decl-after-statement
9676         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
9677
9678 2009-02-24  Eric Blake  <ebb9@byu.net>
9679
9680         strtod: detect HP-UX 11.31 bug
9681         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
9682         Reported by Gary V. Vaughan.
9683
9684 2009-02-23  Bruno Haible  <bruno@clisp.org>
9685
9686         Fix invalid read past end of memory block.
9687         * lib/vasnprintf.c (DCHAR_SET): Define.
9688         (local_wcslen): Define only when needed.
9689         (local_strnlen, local_wcsnlen): New functions.
9690         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
9691         directives that involve a conversion ourselves.
9692         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
9693         wcsnlen, mbrtowc, wcrtomb.
9694         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
9695         * tests/test-vasprintf-posix.c (test_function): Likewise.
9696         * tests/test-snprintf-posix.h (test_function): Likewise.
9697         * tests/test-sprintf-posix.h (test_function): Likewise.
9698         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9699
9700 2009-02-22  Bruno Haible  <bruno@clisp.org>
9701
9702         Implement new clarified decomposition of Hangul syllables.
9703         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
9704         of type LTV, return only a pairwise decomposition.
9705         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
9706         Likewise.
9707         * tests/uninorm/test-decomposition.c (main): Updated expected result.
9708         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
9709         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
9710
9711 2009-02-22  Bruno Haible  <bruno@clisp.org>
9712
9713         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
9714         zero-length results and shrink excess allocated memory.
9715         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
9716         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
9717         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
9718         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
9719         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
9720         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
9721         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
9722         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
9723         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
9724         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
9725         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
9726         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
9727
9728 2009-02-21  Bruno Haible  <bruno@clisp.org>
9729
9730         * doc/gnulib.texi: Include safe-alloc.texi earlier.
9731         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
9732         spaces after a period. Put a space between a macro name and its
9733         argument list. Trivial rewordings.
9734         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
9735         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
9736         (main): Return 0 explicitly.
9737
9738 2009-02-21  Bruno Haible  <bruno@clisp.org>
9739
9740         Tests for module 'uninorm/filter'.
9741         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
9742         * modules/uninorm/filter-tests: New file.
9743
9744         New module 'uninorm/filter'.
9745         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
9746         uninorm_filter_flush, uninorm_filter_free): New declarations.
9747         * lib/uninorm/uninorm-filter.c: New file.
9748         * modules/uninorm/filter: New file.
9749
9750 2009-02-21  Bruno Haible  <bruno@clisp.org>
9751
9752         Tests for module 'uninorm/nfkc'.
9753         * tests/uninorm/test-nfkc.c: New file.
9754         * tests/uninorm/test-u8-nfkc.c: New file.
9755         * tests/uninorm/test-u16-nfkc.c: New file.
9756         * tests/uninorm/test-u32-nfkc.c: New file.
9757         * tests/uninorm/test-u32-nfkc-big.sh: New file.
9758         * tests/uninorm/test-u32-nfkc-big.c: New file.
9759         * modules/uninorm/nfkc-tests: New file.
9760
9761         New module 'uninorm/nfkc'.
9762         * lib/uninorm/nfkc.c: New file.
9763         * modules/uninorm/nfkc: New file.
9764
9765         Tests for module 'uninorm/nfkd'.
9766         * tests/uninorm/test-nfkd.c: New file.
9767         * tests/uninorm/test-u8-nfkd.c: New file.
9768         * tests/uninorm/test-u16-nfkd.c: New file.
9769         * tests/uninorm/test-u32-nfkd.c: New file.
9770         * tests/uninorm/test-u32-nfkd-big.sh: New file.
9771         * tests/uninorm/test-u32-nfkd-big.c: New file.
9772         * modules/uninorm/nfkd-tests: New file.
9773
9774         New module 'uninorm/nfkd'.
9775         * lib/uninorm/nfkd.c: New file.
9776         * modules/uninorm/nfkd: New file.
9777
9778         Tests for module 'uninorm/nfc'.
9779         * tests/uninorm/test-nfc.c: New file.
9780         * tests/uninorm/test-u8-nfc.c: New file.
9781         * tests/uninorm/test-u16-nfc.c: New file.
9782         * tests/uninorm/test-u32-nfc.c: New file.
9783         * tests/uninorm/test-u32-nfc-big.sh: New file.
9784         * tests/uninorm/test-u32-nfc-big.c: New file.
9785         * modules/uninorm/nfc-tests: New file.
9786
9787         New module 'uninorm/nfc'.
9788         * lib/uninorm/nfc.c: New file.
9789         * modules/uninorm/nfc: New file.
9790
9791         Tests for module 'uninorm/nfd'.
9792         * tests/uninorm/test-nfd.c: New file.
9793         * tests/uninorm/test-u8-nfd.c: New file.
9794         * tests/uninorm/test-u16-nfd.c: New file.
9795         * tests/uninorm/test-u32-nfd.c: New file.
9796         * tests/uninorm/test-u32-nfd-big.sh: New file.
9797         * tests/uninorm/test-u32-nfd-big.c: New file.
9798         * tests/uninorm/test-u32-normalize-big.h: New file.
9799         * tests/uninorm/test-u32-normalize-big.c: New file.
9800         * tests/uninorm/NormalizationTest.txt: New file, created from
9801         Unicode 5.1.0 NormalizationTest.txt.
9802         * modules/uninorm/nfd-tests: New file.
9803
9804         New module 'uninorm/nfd'.
9805         * lib/uninorm/nfd.c: New file.
9806         * modules/uninorm/nfd: New file.
9807
9808         New module 'uninorm/u32-normalize'.
9809         * lib/uninorm/u32-normalize.c: New file.
9810         * modules/uninorm/u32-normalize: New file.
9811
9812         New module 'uninorm/u16-normalize'.
9813         * lib/uninorm/u16-normalize.c: New file.
9814         * modules/uninorm/u16-normalize: New file.
9815
9816         New module 'uninorm/u8-normalize'.
9817         * lib/uninorm/u8-normalize.c: New file.
9818         * lib/uninorm/normalize-internal.h: New file.
9819         * lib/uninorm/u-normalize-internal.h: New file.
9820         * modules/uninorm/u8-normalize: New file.
9821
9822         New module 'uninorm/decompose-internal'.
9823         * lib/uninorm/decompose-internal.c: New file.
9824         * modules/uninorm/decompose-internal: New file.
9825
9826         Tests for module 'uninorm/composition'.
9827         * tests/uninorm/test-composition.c: New file.
9828         * modules/uninorm/composition-tests: New file.
9829
9830         New module 'uninorm/composition'.
9831         * lib/uninorm/composition.c: New file.
9832         * lib/uninorm/composition-table.gperf: New file, generated by
9833         gen-uni-tables.
9834         * modules/uninorm/composition: New file.
9835
9836         Tests for module 'uninorm/compat-decomposition'.
9837         * tests/uninorm/test-compat-decomposition.c: New file.
9838         * modules/uninorm/compat-decomposition-tests: New file.
9839
9840         New module 'uninorm/compat-decomposition'.
9841         * lib/uninorm/decompose-internal.h: New file.
9842         * lib/uninorm/compat-decomposition.c: New file.
9843         * modules/uninorm/compat-decomposition: New file.
9844
9845         Tests for module 'uninorm/canonical-decomposition'.
9846         * tests/uninorm/test-canonical-decomposition.c: New file.
9847         * modules/uninorm/canonical-decomposition-tests: New file.
9848
9849         New module 'uninorm/canonical-decomposition'.
9850         * lib/uninorm/canonical-decomposition.c: New file.
9851         * modules/uninorm/canonical-decomposition: New file.
9852
9853         Tests for module 'uninorm/decomposition'.
9854         * tests/uninorm/test-decomposition.c: New file.
9855         * modules/uninorm/decomposition-tests: New file.
9856
9857         New module 'uninorm/decomposition'.
9858         * lib/uninorm/decomposition.c: New file.
9859         * modules/uninorm/decomposition: New file.
9860
9861         New module 'uninorm/decomposition-table'.
9862         * lib/uninorm/decomposition-table.h: New file.
9863         * lib/uninorm/decomposition-table.c: New file.
9864         * lib/uninorm/decomposition-table1.h: New file, generated by
9865         gen-uni-tables.
9866         * lib/uninorm/decomposition-table2.h: New file, generated by
9867         gen-uni-tables.
9868         * modules/uninorm/decomposition-table: New file.
9869
9870         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
9871         (UC_DECOMP_*): New enumeration items.
9872         (get_decomposition): New function.
9873         (struct decomp_table): New type.
9874         (output_decomposition, output_decomposition_tables): New functions.
9875         (unicode_composition_exclusions): New variable.
9876         (fill_composition_exclusions, debug_output_composition_tables): New
9877         functions.
9878         (main): Accept one more argument. Invoke fill_composition_exclusions.
9879         Output decomposition and composition tables.
9880
9881         New module 'uninorm/base'.
9882         * lib/uninorm.h: New file.
9883         * lib/unictype.h: Update comment.
9884         * modules/uninorm/base: New file.
9885
9886 2009-02-21  David Lutterkort  <lutter@redhat.com>
9887
9888         Tests for module 'safe-alloc'.
9889         * tests/test-safe-alloc.c: New file.
9890         * modules/safe-alloc-tests: New file.
9891
9892         New module 'safe-alloc'.
9893         * lib/safe-alloc.h: New file.
9894         * lib/safe-alloc.c: New file.
9895         * m4/safe-alloc.m4: New file.
9896         * modules/safe-alloc: New file.
9897         * doc/safe-alloc.texi: New file.
9898         * doc/gnulib.texi: Include it.
9899         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
9900         safe-alloc.
9901
9902 2009-02-18  Bruno Haible  <bruno@clisp.org>
9903
9904         Fix link error on non-glibc systems.
9905         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
9906         variable.
9907         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9908
9909 2009-02-18  Jim Meyering  <meyering@redhat.com>
9910
9911         fts: avoid used-uninitialized error due to recent change
9912         * lib/fts.c (fts_read): Guard uses of the new member,
9913         parent->fts_n_dirs_remaining, since it's not relevant for
9914         the parent of a directory specified on the command-line.
9915
9916 2009-02-17  James Youngman  <jay@gnu.org>
9917             Bruno Haible  <bruno@clisp.org>
9918
9919         * m4/include_next.m4: Reformulate comment.
9920
9921 2009-02-16  Jim Meyering  <meyering@redhat.com>
9922
9923         fts: add #if guards so that the fts_lgpl module still builds
9924         * lib/fts.c: Guard just-added hash-table-using parts with
9925         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
9926         Reported by Simon Josefsson.
9927
9928 2009-02-15  Bruno Haible  <bruno@clisp.org>
9929
9930         * modules/array-mergesort-tests: New file.
9931         * tests/test-array-mergesort.c: New file.
9932
9933         New module 'array-mergesort'.
9934         * modules/array-mergesort: New file.
9935         * lib/array-mergesort.h: New file.
9936
9937 2009-02-15  Bruno Haible  <bruno@clisp.org>
9938
9939         Fix 2009-02-07 commit.
9940         * lib/gen-uni-tables.c (output_predicate, output_category,
9941         output_combclass, output_bidi_category, output_decimal_digit,
9942         output_digit, output_numeric, output_mirror, output_scripts,
9943         output_ident_category, output_simple_mapping): Fix format directives.
9944         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
9945
9946 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
9947
9948         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
9949         fixes are available from IBM.
9950
9951 2009-02-13  Jim Meyering  <meyering@redhat.com>
9952
9953         fts: arrange not to stat non-directories in more cases
9954         This makes GNU find (when it doesn't need to stat each file)
9955         *much* more efficient at traversing reiserfs file systems.
9956         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
9957         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
9958         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
9959         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
9960         (leaf_optimization_applies): New function.
9961         (LCO_hash, LCO_compare): New helper functions.
9962         (link_count_optimize_ok): New function.
9963         (fts_stat): Initialize new member (if dir).
9964         (fts_read): Decrement parent's fts_n_dirs_remaining count if
9965         we've just stat'ed a directory.  Skip the stat call when possible.
9966         ---
9967         Note this AFS-related exchange:
9968         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
9969         and note find's pioctl call in find/fstype.c.
9970         But that is necessary only if you want to enable the
9971         optimization for AFS, and for now, I don't.
9972
9973         fts: move a function definition "up" (no semantic change)
9974         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
9975         "up" to precede upcoming use of a related function.
9976
9977 2009-02-11  Jim Meyering  <meyering@redhat.com>
9978
9979         fts: correct internal computation of nlinks (optimization-related)
9980         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
9981         whether the current entry is a directory, so don't test it.
9982
9983 2009-02-10  Bruno Haible  <bruno@clisp.org>
9984
9985         Tests for module 'uniwbrk/ulc-wordbreaks'.
9986         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
9987         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
9988         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
9989
9990         Tests for module 'uniwbrk/u32-wordbreaks'.
9991         * modules/uniwbrk/u32-wordbreaks-tests: New file.
9992         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
9993
9994         Tests for module 'uniwbrk/u16-wordbreaks'.
9995         * modules/uniwbrk/u16-wordbreaks-tests: New file.
9996         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
9997
9998         Tests for module 'uniwbrk/u8-wordbreaks'.
9999         * modules/uniwbrk/u8-wordbreaks-tests: New file.
10000         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
10001
10002 2009-02-10  Bruno Haible  <bruno@clisp.org>
10003
10004         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
10005         property.
10006         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
10007         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
10008         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
10009
10010 2009-02-10  Simon Josefsson  <simon@josefsson.org>
10011
10012         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
10013         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
10014
10015 2009-02-10  Bruno Haible  <bruno@clisp.org>
10016
10017         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
10018         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
10019         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
10020         * lib/unilbrk/u8-possible-linebreaks.c: Update.
10021         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
10022         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
10023
10024 2009-02-09  Simon Josefsson  <simon@josefsson.org>
10025
10026         * lib/sockets.h (gl_fd_to_handle): New function.
10027
10028         * tests/test-sockets.c: Call gl_fd_to_handle.
10029
10030 2009-02-09  Bruno Haible  <bruno@clisp.org>
10031
10032         * doc/havelib.texi: Document the conventions on bi-arch systems.
10033
10034 2009-02-08  Bruno Haible  <bruno@clisp.org>
10035
10036         Document the AC_LIB_LINKFLAGS macro.
10037         * doc/havelib.texi: New file, mostly written on 2005-05-24.
10038         * doc/gnulib.texi: Include it.
10039
10040 2009-02-08  Bruno Haible  <bruno@clisp.org>
10041
10042         Fix wrong order of sections, compared to TOC.
10043         * doc/gnulib.texi: Include relocatable-maint.texi after the
10044         "Regular expressions" node, not before.
10045
10046 2009-02-08  Bruno Haible  <bruno@clisp.org>
10047
10048         Tests for module 'unicase/totitle'.
10049         * modules/unicase/totitle-tests: New file.
10050
10051         Tests for module 'unicase/tolower'.
10052         * modules/unicase/tolower-tests: New file.
10053
10054         Tests for module 'unicase/toupper'.
10055         * modules/unicase/toupper-tests: New file.
10056         * tests/unicase/test-mapping-part1.h: New file.
10057         * tests/unicase/test-mapping-part2.h: New file.
10058
10059         New module 'unicase/totitle'.
10060         * modules/unicase/totitle: New file.
10061         * lib/unicase/totitle.c: New file.
10062
10063         New module 'unicase/tolower'.
10064         * modules/unicase/tolower: New file.
10065         * lib/unicase/tolower.c: New file.
10066
10067         New module 'unicase/toupper'.
10068         * modules/unicase/toupper: New file.
10069         * lib/unicase/toupper.c: New file.
10070         * lib/unicase/simple-mapping.h: New file.
10071
10072         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
10073         (mapping_table): New structure.
10074         (output_simple_mapping): New function.
10075         (main): Invoke output_simple_mapping_test and output_simple_mapping.
10076         * modules/gen-uni-tables (Description): Update.
10077         * lib/unicase/toupper.h: New file, automatically generated by
10078         gen-uni-tables.
10079         * lib/unicase/tolower.h: New file, automatically generated by
10080         gen-uni-tables.
10081         * lib/unicase/totitle.h: New file, automatically generated by
10082         gen-uni-tables.
10083         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
10084         gen-uni-tables.
10085         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
10086         gen-uni-tables.
10087         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
10088         gen-uni-tables.
10089
10090         New module 'unicase/base'.
10091         * modules/unicase/base: New file.
10092         * lib/unicase.h: New file.
10093
10094 2009-02-08  Bruno Haible  <bruno@clisp.org>
10095
10096         New module 'uniwbrk/ulc-wordbreaks'.
10097         * modules/uniwbrk/ulc-wordbreaks: New file.
10098         * lib/uniwbrk/ulc-wordbreaks.c: New file.
10099
10100         New module 'uniwbrk/u32-wordbreaks'.
10101         * modules/uniwbrk/u32-wordbreaks: New file.
10102         * lib/uniwbrk/u32-wordbreaks.c: New file.
10103
10104         New module 'uniwbrk/u16-wordbreaks'.
10105         * modules/uniwbrk/u16-wordbreaks: New file.
10106         * lib/uniwbrk/u16-wordbreaks.c: New file.
10107
10108         New module 'uniwbrk/u8-wordbreaks'.
10109         * modules/uniwbrk/u8-wordbreaks: New file.
10110         * lib/uniwbrk/u8-wordbreaks.c: New file.
10111         * lib/uniwbrk/u-wordbreaks.h: New file.
10112
10113         New module 'uniwbrk/table'.
10114         * modules/uniwbrk/table: New file.
10115         * lib/uniwbrk/wbrktable.h: New file.
10116         * lib/uniwbrk/wbrktable.c: New file.
10117
10118         New module 'uniwbrk/wordbreak-property'.
10119         * modules/uniwbrk/wordbreak-property: New file.
10120         * lib/uniwbrk/wordbreak-property.c: New file.
10121
10122         * lib/gen-uni-tables.c (WBP_*): New enum items.
10123         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
10124         (unicode_org_wbp): New variable.
10125         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
10126         New functions.
10127         (wbp_table): New structure.
10128         (output_wbp, output_wbrk_tables): New functions.
10129         (main): Accept additional argument. Invoke fill_org_wbp,
10130         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
10131         output_wbrk_tables.
10132         * modules/gen-uni-tables (Description): Update.
10133         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
10134         gen-uni-tables.
10135
10136         New module 'uniwbrk/base'.
10137         * modules/uniwbrk/base: New file.
10138         * lib/uniwbrk.h: New file.
10139
10140 2009-02-08  Bruno Haible  <bruno@clisp.org>
10141
10142         Update to Unicode 5.1.0.
10143         * lib/gen-uni-tables.c (is_property_alphabetic): Include
10144         U+2185..U+2188.
10145         (is_property_default_ignorable_code_point): Don't include characters
10146         of category Cc or Cs and not-a-characters.
10147         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
10148         U+0D79, U+109E, U+109F, U+A60C.
10149         * lib/unictype/bidi_of.h: Regenerated.
10150         * lib/unictype/blocks.h: Regenerated.
10151         * lib/unictype/categ_C.h: Regenerated.
10152         * lib/unictype/categ_Cf.h: Regenerated.
10153         * lib/unictype/categ_Cn.h: Regenerated.
10154         * lib/unictype/categ_L.h: Regenerated.
10155         * lib/unictype/categ_Ll.h: Regenerated.
10156         * lib/unictype/categ_Lm.h: Regenerated.
10157         * lib/unictype/categ_Lo.h: Regenerated.
10158         * lib/unictype/categ_Lu.h: Regenerated.
10159         * lib/unictype/categ_M.h: Regenerated.
10160         * lib/unictype/categ_Mc.h: Regenerated.
10161         * lib/unictype/categ_Me.h: Regenerated.
10162         * lib/unictype/categ_Mn.h: Regenerated.
10163         * lib/unictype/categ_N.h: Regenerated.
10164         * lib/unictype/categ_Nd.h: Regenerated.
10165         * lib/unictype/categ_Nl.h: Regenerated.
10166         * lib/unictype/categ_No.h: Regenerated.
10167         * lib/unictype/categ_P.h: Regenerated.
10168         * lib/unictype/categ_Pd.h: Regenerated.
10169         * lib/unictype/categ_Pe.h: Regenerated.
10170         * lib/unictype/categ_Pf.h: Regenerated.
10171         * lib/unictype/categ_Pi.h: Regenerated.
10172         * lib/unictype/categ_Po.h: Regenerated.
10173         * lib/unictype/categ_Ps.h: Regenerated.
10174         * lib/unictype/categ_S.h: Regenerated.
10175         * lib/unictype/categ_Sk.h: Regenerated.
10176         * lib/unictype/categ_Sm.h: Regenerated.
10177         * lib/unictype/categ_So.h: Regenerated.
10178         * lib/unictype/categ_of.h: Regenerated.
10179         * lib/unictype/combining.h: Regenerated.
10180         * lib/unictype/ctype_alnum.h: Regenerated.
10181         * lib/unictype/ctype_alpha.h: Regenerated.
10182         * lib/unictype/ctype_graph.h: Regenerated.
10183         * lib/unictype/ctype_lower.h: Regenerated.
10184         * lib/unictype/ctype_print.h: Regenerated.
10185         * lib/unictype/ctype_punct.h: Regenerated.
10186         * lib/unictype/ctype_upper.h: Regenerated.
10187         * lib/unictype/decdigit.h: Regenerated.
10188         * lib/unictype/digit.h: Regenerated.
10189         * lib/unictype/mirror.h: Regenerated.
10190         * lib/unictype/numeric.h: Regenerated.
10191         * lib/unictype/pr_alphabetic.h: Regenerated.
10192         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
10193         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
10194         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
10195         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
10196         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
10197         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
10198         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
10199         * lib/unictype/pr_combining.h: Regenerated.
10200         * lib/unictype/pr_dash.h: Regenerated.
10201         * lib/unictype/pr_decimal_digit.h: Regenerated.
10202         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
10203         * lib/unictype/pr_deprecated.h: Regenerated.
10204         * lib/unictype/pr_diacritic.h: Regenerated.
10205         * lib/unictype/pr_extender.h: Regenerated.
10206         * lib/unictype/pr_format_control.h: Regenerated.
10207         * lib/unictype/pr_grapheme_base.h: Regenerated.
10208         * lib/unictype/pr_grapheme_extend.h: Regenerated.
10209         * lib/unictype/pr_grapheme_link.h: Regenerated.
10210         * lib/unictype/pr_id_continue.h: Regenerated.
10211         * lib/unictype/pr_id_start.h: Regenerated.
10212         * lib/unictype/pr_ideographic.h: Regenerated.
10213         * lib/unictype/pr_ignorable_control.h: Regenerated.
10214         * lib/unictype/pr_lowercase.h: Regenerated.
10215         * lib/unictype/pr_math.h: Regenerated.
10216         * lib/unictype/pr_numeric.h: Regenerated.
10217         * lib/unictype/pr_other_alphabetic.h: Regenerated.
10218         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
10219         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
10220         * lib/unictype/pr_other_id_continue.h: Regenerated.
10221         * lib/unictype/pr_other_lowercase.h: Regenerated.
10222         * lib/unictype/pr_other_math.h: Regenerated.
10223         * lib/unictype/pr_punctuation.h: Regenerated.
10224         * lib/unictype/pr_sentence_terminal.h: Regenerated.
10225         * lib/unictype/pr_soft_dotted.h: Regenerated.
10226         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
10227         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
10228         * lib/unictype/pr_unified_ideograph.h: Regenerated.
10229         * lib/unictype/pr_uppercase.h: Regenerated.
10230         * lib/unictype/pr_xid_continue.h: Regenerated.
10231         * lib/unictype/pr_xid_start.h: Regenerated.
10232         * lib/unictype/pr_zero_width.h: Regenerated.
10233         * lib/unictype/scripts.h: Regenerated.
10234         * lib/unictype/scripts_byname.gperf: Regenerated.
10235         * lib/unictype/sy_java_ident.h: Regenerated.
10236         * lib/unilbrk/lbrkprop1.h: Regenerated.
10237         * lib/unilbrk/lbrkprop2.h: Regenerated.
10238         * tests/unictype/test-categ_C.c: Regenerated.
10239         * tests/unictype/test-categ_Cf.c: Regenerated.
10240         * tests/unictype/test-categ_Cn.c: Regenerated.
10241         * tests/unictype/test-categ_L.c: Regenerated.
10242         * tests/unictype/test-categ_Ll.c: Regenerated.
10243         * tests/unictype/test-categ_Lm.c: Regenerated.
10244         * tests/unictype/test-categ_Lo.c: Regenerated.
10245         * tests/unictype/test-categ_Lu.c: Regenerated.
10246         * tests/unictype/test-categ_M.c: Regenerated.
10247         * tests/unictype/test-categ_Mc.c: Regenerated.
10248         * tests/unictype/test-categ_Me.c: Regenerated.
10249         * tests/unictype/test-categ_Mn.c: Regenerated.
10250         * tests/unictype/test-categ_N.c: Regenerated.
10251         * tests/unictype/test-categ_Nd.c: Regenerated.
10252         * tests/unictype/test-categ_Nl.c: Regenerated.
10253         * tests/unictype/test-categ_No.c: Regenerated.
10254         * tests/unictype/test-categ_P.c: Regenerated.
10255         * tests/unictype/test-categ_Pd.c: Regenerated.
10256         * tests/unictype/test-categ_Pe.c: Regenerated.
10257         * tests/unictype/test-categ_Pf.c: Regenerated.
10258         * tests/unictype/test-categ_Pi.c: Regenerated.
10259         * tests/unictype/test-categ_Po.c: Regenerated.
10260         * tests/unictype/test-categ_Ps.c: Regenerated.
10261         * tests/unictype/test-categ_S.c: Regenerated.
10262         * tests/unictype/test-categ_Sk.c: Regenerated.
10263         * tests/unictype/test-categ_Sm.c: Regenerated.
10264         * tests/unictype/test-categ_So.c: Regenerated.
10265         * tests/unictype/test-ctype_alnum.c: Regenerated.
10266         * tests/unictype/test-ctype_alpha.c: Regenerated.
10267         * tests/unictype/test-ctype_graph.c: Regenerated.
10268         * tests/unictype/test-ctype_lower.c: Regenerated.
10269         * tests/unictype/test-ctype_print.c: Regenerated.
10270         * tests/unictype/test-ctype_punct.c: Regenerated.
10271         * tests/unictype/test-ctype_upper.c: Regenerated.
10272         * tests/unictype/test-decdigit.h: Regenerated.
10273         * tests/unictype/test-digit.h: Regenerated.
10274         * tests/unictype/test-numeric.h: Regenerated.
10275         * tests/unictype/test-pr_alphabetic.c: Regenerated.
10276         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
10277         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
10278         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
10279         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
10280         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
10281         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
10282         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
10283         * tests/unictype/test-pr_combining.c: Regenerated.
10284         * tests/unictype/test-pr_dash.c: Regenerated.
10285         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
10286         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
10287         * tests/unictype/test-pr_deprecated.c: Regenerated.
10288         * tests/unictype/test-pr_diacritic.c: Regenerated.
10289         * tests/unictype/test-pr_extender.c: Regenerated.
10290         * tests/unictype/test-pr_format_control.c: Regenerated.
10291         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
10292         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
10293         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
10294         * tests/unictype/test-pr_id_continue.c: Regenerated.
10295         * tests/unictype/test-pr_id_start.c: Regenerated.
10296         * tests/unictype/test-pr_ideographic.c: Regenerated.
10297         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
10298         * tests/unictype/test-pr_lowercase.c: Regenerated.
10299         * tests/unictype/test-pr_math.c: Regenerated.
10300         * tests/unictype/test-pr_numeric.c: Regenerated.
10301         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
10302         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
10303         Regenerated.
10304         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
10305         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
10306         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
10307         * tests/unictype/test-pr_other_math.c: Regenerated.
10308         * tests/unictype/test-pr_punctuation.c: Regenerated.
10309         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
10310         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
10311         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
10312         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
10313         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
10314         * tests/unictype/test-pr_uppercase.c: Regenerated.
10315         * tests/unictype/test-pr_xid_continue.c: Regenerated.
10316         * tests/unictype/test-pr_xid_start.c: Regenerated.
10317         * tests/unictype/test-pr_zero_width.c: Regenerated.
10318
10319         Update to Unicode 5.1.0.
10320         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
10321         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
10322         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
10323         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
10324         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
10325         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
10326         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
10327         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
10328         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
10329         (nonspacing_table_ind): Update.
10330         * tests/uniwidth/test-uc_width2.sh: Update expected result.
10331
10332         Update to Unicode 5.1.0.
10333         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
10334         code transform.
10335         * lib/uniname/uniname.c (unicode_character_name,
10336         unicode_name_character): Add the range 0x1Fxxx to the code transform.
10337         * lib/uniname/uninames.h: Regenerated.
10338         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
10339
10340 2009-02-07  Bruno Haible  <bruno@clisp.org>
10341
10342         Merge gen-ctype and gen-lbrk into a single program.
10343         * lib/gen-uni-tables.c: New file, incorporating
10344         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
10345         Add directory prefixes to the names of the generated files.
10346         * lib/unictype/gen-ctype.c: Remove file.
10347         * lib/unilbrk/gen-lbrk.c: Remove file.
10348         * modules/gen-uni-tables: New file.
10349         * modules/unictype/gen-ctype: Remove file.
10350         * modules/unilbrk/gen-lbrk: Remove file.
10351
10352 2009-02-07  Bruno Haible  <bruno@clisp.org>
10353
10354         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
10355
10356         New module 'unistr/u32-strcoll'.
10357         * modules/unistr/u32-strcoll: New file.
10358         * lib/unistr/u32-strcoll.c: New file.
10359
10360         New module 'unistr/u16-strcoll'.
10361         * modules/unistr/u16-strcoll: New file.
10362         * lib/unistr/u16-strcoll.c: New file.
10363
10364         New module 'unistr/u8-strcoll'.
10365         * modules/unistr/u8-strcoll: New file.
10366         * lib/unistr/u8-strcoll.c: New file.
10367         * lib/unistr/u-strcoll.h: New file.
10368
10369 2009-02-07  Bruno Haible  <bruno@clisp.org>
10370
10371         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
10372         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10373         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10374         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
10375         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
10376         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
10377
10378 2009-02-07  Bruno Haible  <bruno@clisp.org>
10379
10380         Make 64-bit clean.
10381         * lib/unictype/gen-ctype.c (output_predicate, output_category,
10382         output_combclass, output_bidi_category, output_decimal_digit,
10383         output_digit, output_numeric, output_mirror, output_scripts,
10384         output_ident_category): Use proper width specifier in format strings.
10385
10386 2009-02-07  Bruno Haible  <bruno@clisp.org>
10387
10388         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
10389         failure behaviour.
10390
10391 2009-02-07  Jim Meyering  <meyering@redhat.com>
10392
10393         regex: avoid compilation failure with upcoming gcc-4.4
10394         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
10395         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
10396         "... error: integer overflow in preprocessor expression".
10397
10398 2009-02-05  Ben Pfaff  <blp@gnu.org>
10399
10400         Fix link errors on Windows when close module is used.
10401         * modules/close: Add $(LIB_CLOSE) to Link section.
10402         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
10403         $(LIB_CLOSE) on Windows.
10404
10405 2009-02-05  Jim Meyering  <meyering@redhat.com>
10406
10407         still avoid unused-parameter warnings, but do it cleanly
10408         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
10409         (get_fs_usage): Cast to void instead.
10410         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
10411         (dev_from_mount_options, read_file_system_list): Cast to void.
10412         Prompted by Bruno Haible.
10413
10414 2009-02-04  Jim Meyering  <meyering@redhat.com>
10415
10416         fsusage.c: correct copyright year
10417         * lib/fsusage.c: Reflect year in which the change is pushed into
10418
10419         avoid misc. warnings
10420         * lib/fsusage.c (UNUSED_PARAM): Define.
10421         (get_fs_usage): Mark parameter "disk" as unused.
10422         * lib/getugroups.c (getgrent): Use "void" in prototype.
10423         * lib/mountlist.c: Mark unused parameters.
10424         (read_file_system_list): Declare a local with "const".
10425         * lib/nanosleep.c (getnow): Declare static.
10426         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
10427
10428         dirfd: set errno upon failure
10429         * lib/dirfd.c: Include <errno.h>.
10430         Set errno to ENOTSUP when returning -1.
10431         * modules/dirfd (Depends-on): Add errno.
10432         Suggested by John Kodis <kodis@comcast.net>.
10433
10434 2009-02-01  Bruno Haible  <bruno@clisp.org>
10435
10436         Don't assume sizeof (long) >= sizeof (void *).
10437         * lib/memcmp.c: Include stdint.h.
10438         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
10439         srcp2 to 'const byte *'.
10440         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
10441         types to uintptr_t.
10442         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
10443         * modules/memcmp (Depends-on): Add stdint.
10444         Reported by Ozkan Sezer <sezeroz@gmail.com>.
10445
10446 2009-01-30  Eric Blake  <ebb9@byu.net>
10447
10448         fix more require-before-expand issues
10449         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
10450         expand, AC_PROG_AWK.
10451         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
10452
10453 2009-01-28  Eric Blake  <ebb9@byu.net>
10454
10455         version-etc: use consistent URL formatting
10456         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
10457         Improve formatting.  Use fputs for string without %.
10458
10459 2009-01-28  Jim Meyering  <meyering@redhat.com>
10460
10461         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
10462         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
10463         "underquoted definition of NAME" from autoconf-2.59.
10464
10465 2009-01-28  Bruno Haible  <bruno@clisp.org>
10466
10467         * doc/gnulib.texi: Add "Obsolete modules" to index.
10468
10469 2009-01-28  Jim Meyering  <meyering@redhat.com>
10470
10471         useless-if-before-free: recognize more variants
10472         * build-aux/useless-if-before-free: Also recognize e.g.,
10473         if (NULL != p) free (p);
10474
10475 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
10476
10477         test-getaddrinfo: skip (don't fail) this test when there's no network
10478         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
10479         on the presumption that it means you lack network access.
10480
10481 2009-01-26  Jim Meyering  <meyering@redhat.com>
10482
10483         fflush: avoid warnings on modern systems
10484         * lib/fflush.c (rpl_fflush): Move declarations of locals,
10485         pos and result, into scopes where they're used.
10486
10487 2009-01-26  Eric Blake  <ebb9@byu.net>
10488
10489         Silence warning reintroduced by recent extensions patch.
10490         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
10491         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
10492         autoconf.
10493
10494         Backport improved autoconf semantics of AC_DEFUN_ONCE.
10495         * m4/00gnulib.m4: New file.
10496         * gnulib-tool (func_get_filelist): Always use it.
10497         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
10498         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
10499
10500 2009-01-25  Bruno Haible  <bruno@clisp.org>
10501
10502         Make test-quotearg work on MacOS X and AIX.
10503         * tests/test-quotearg.sh: New file.
10504         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
10505         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
10506         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
10507         include <libintl.h>.
10508         (fake_locale): Remove variable.
10509         (gettext, dgettext, dcgettext): Remove functions.
10510         (main): Instead of setting a fake locale, set a real locale. Call
10511         textdomain and bindtextdomain.
10512         * modules/quotearg-tests (Files): Add the new files.
10513         (Depends-on): Add gettext, setenv, unsetenv.
10514         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
10515         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
10516         Augment TESTS_ENVIRONMENT.
10517
10518 2009-01-25  Bruno Haible  <bruno@clisp.org>
10519
10520         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
10521         fr_FR.ISO8859-1 locale on MacOS X.
10522         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
10523         ja_JP.eucJP locale on MacOS X.
10524         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
10525         zh_CN.GB18030 locale on MacOS X.
10526
10527 2009-01-25  Bruno Haible  <bruno@clisp.org>
10528
10529         Avoid link errors on MacOS X 10.3.
10530         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
10531         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10532
10533 2009-01-25  Bruno Haible  <bruno@clisp.org>
10534
10535         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10536         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
10537         * modules/pipe (Files): Remove m4/posix_spawn.m4.
10538         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10539         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
10540         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10541         posix_spawnattr_init, posix_spawnattr_setsigmask,
10542         posix_spawnattr_setflags, posix_spawnattr_destroy.
10543
10544         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10545         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
10546         * modules/execute (Files): Remove m4/posix_spawn.m4.
10547         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10548         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10549         posix_spawnattr_init, posix_spawnattr_setsigmask,
10550         posix_spawnattr_setflags, posix_spawnattr_destroy.
10551
10552 2009-01-25  Bruno Haible  <bruno@clisp.org>
10553
10554         * lib/glthread/threadlib.c: Include <stdlib.h>.
10555
10556 2009-01-25  Bruno Haible  <bruno@clisp.org>
10557
10558         * lib/glthread/threadlib.c (dummy): New declaration.
10559
10560 2009-01-25  Bruno Haible  <bruno@clisp.org>
10561
10562         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
10563         multibyte characters also for the GB18030 encoding. Don't crash when
10564         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
10565
10566 2009-01-25  Bruno Haible  <bruno@clisp.org>
10567
10568         Avoid redefining 'struct random_data' on OSF/1 5.1.
10569         * lib/stdlib.in.h: Include <random.h> if it exists.
10570         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
10571         HAVE_RANDOM_H. Include <random.h> when testing whether
10572         'struct random_data' exists.
10573         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
10574
10575 2009-01-25  Bruno Haible  <bruno@clisp.org>
10576
10577         Don't install charset.alias on MacOS X >= 10.3.
10578         * lib/localcharset.c (DARWIN7): New macro.
10579         (get_charset_aliases): Hardcode the result for Darwin7.
10580         * modules/localcharset (install-exec-local): Don't install
10581         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
10582
10583 2009-01-25  Bruno Haible  <bruno@clisp.org>
10584
10585         Don't install charset.alias on mingw and Cygwin.
10586         * modules/localcharset (install-exec-local): Don't install
10587         charset.alias on mingw and Cygwin, if the file does not yet exist.
10588         The result for these platforms is hardcoded in localcharset.c.
10589
10590 2009-01-25  Bruno Haible  <bruno@clisp.org>
10591
10592         Make it possible again to use AC_GNU_SOURCE together with gnulib.
10593         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
10594         before requiring AC_USE_SYSTEM_EXTENSIONS.
10595
10596 2009-01-25  Jim Meyering  <meyering@redhat.com>
10597
10598         c-strtod: avoid warnings
10599         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
10600         "assignment discards qualifiers from pointer target type" warnings.
10601
10602 2009-01-24  Bruno Haible  <bruno@clisp.org>
10603
10604         Add support for non-UTF-8 locales on MacOS X.
10605         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
10606         canonical encodings. For Darwin 7 and newer, don't map traditional
10607         encodings to UTF-8.
10608         Reported by Vincent Lefevre <vincent@vinc17.org>
10609         at <http://savannah.gnu.org/bugs/?25235>.
10610
10611 2009-01-24  Bruno Haible  <bruno@clisp.org>
10612
10613         * doc/gnulib.texi (Obsolete modules): New section.
10614         Reported by Mike Frysinger <vapier@gentoo.org>.
10615
10616 2009-01-24  Bruno Haible  <bruno@clisp.org>
10617
10618         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
10619         (%.dvi): New rule.
10620
10621 2009-01-24  Bruno Haible  <bruno@clisp.org>
10622
10623         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
10624         Reported by Eric Blake.
10625
10626 2009-01-24  Bruno Haible  <bruno@clisp.org>
10627
10628         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
10629         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
10630         Reported by Gary V. Vaughan <gary@gnu.org>.
10631
10632 2009-01-24  Bruno Haible  <bruno@clisp.org>
10633
10634         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
10635
10636 2009-01-23  Bruno Haible  <bruno@clisp.org>
10637
10638         Make c-strtod, c-strtold usable in libraries.
10639         * lib/c-strtod.c: Include string.h instead of xalloc.h.
10640         (C_STRTOD): Call strdup instead of xstrdup.
10641         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
10642         * modules/c-strtold (Depends-on): Likewise.
10643         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
10644         * NEWS: Mention the change.
10645         Reported by Michael Gold <mgold@ncf.ca>.
10646
10647 2009-01-23  Jim Meyering  <meyering@redhat.com>
10648
10649         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
10650         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
10651         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
10652
10653 2009-01-23  Simon Josefsson  <simon@josefsson.org>
10654
10655         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
10656         GNU CoreUtils.
10657         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
10658         * modules/version-etc (Description): Update.
10659
10660 2009-01-22  Bruno Haible  <bruno@clisp.org>
10661
10662         Cache the C locale object.
10663         * lib/c-strtod.c (c_locale_cache): New variable.
10664         (c_locale): New function.
10665         (C_STRTOD): Use it, and don't call freelocale.
10666         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
10667         Suggested by Paolo Bonzini.
10668
10669 2009-01-21  Bruno Haible  <bruno@clisp.org>
10670
10671         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
10672         conditions other than overflow.
10673
10674 2009-01-21  Bruno Haible  <bruno@clisp.org>
10675
10676         * lib/c-strtod.c: Include errno.h.
10677         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
10678         value from STRTOD_L and STRTOD.
10679
10680 2009-01-21  Bruno Haible  <bruno@clisp.org>
10681         and Jim Meyering  <meyering@redhat.com>
10682
10683         nanosleep: skip configure test (fail it) for apple universal builds
10684         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
10685         universal builds, assume that nanosleep does not work.
10686         * modules/nanosleep (Depends-on): Add multiarch.
10687
10688         mktime: skip configure test (fail it) for apple universal builds
10689         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
10690         universal builds, assume that mktime does not work.
10691         * modules/mktime (Depends-on): Add multiarch.
10692
10693 2009-01-21  Eric Blake  <ebb9@byu.net>
10694
10695         multiarch: avoid expand-before-require warning
10696         * modules/multiarch (configure.ac): Require, rather than expand,
10697         gl_MULTIARCH.
10698         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
10699         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
10700         enforce that all clients require it.  Partial reversion of
10701         2008-12-29 patch.
10702
10703         error: avoid expand-before-require warning
10704         * modules/errno (configure.ac): Require, rather than expand,
10705         gl_HEADER_ERRNO_H.
10706         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
10707         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
10708         enforce that all clients require it.
10709
10710         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
10711         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
10712         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
10713         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
10714
10715 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
10716
10717         Revert:
10718         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10719
10720         regex: do not depend on obsolete modules.
10721         * modules/regex: Remove memcmp and memmove.
10722
10723 2009-01-20  Bruno Haible  <bruno@clisp.org>
10724
10725         Make the 'link' module link on Windows NT 4.
10726         * lib/link.c (_WIN32_WINNT): Don't define.
10727         (CreateHardLinkFuncType): New type.
10728         (CreateHardLinkFunc, initialized): New variables.
10729         (initialize): New function.
10730         (link): Invoke CreateHardLink indirectly through the function pointer.
10731
10732 2009-01-20  Bruno Haible  <bruno@clisp.org>
10733
10734         Fix compilation failure on mingw.
10735         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
10736
10737 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
10738
10739         * doc/c-strtod.texi: Mention a couple of restrictions.
10740
10741 2009-01-20  Jim Meyering  <meyering@redhat.com>
10742
10743         gettimeofday: move more declarations out of functions
10744         * lib/gettimeofday.c: Move extern declarations of tzset and
10745         gmtime out of containing functions.  Prompted by Bruno Haible.
10746
10747 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10748
10749         regex: do not depend on obsolete modules.
10750         * modules/regex: Remove memcmp and memmove.
10751
10752 2009-01-19  Bruno Haible  <bruno@clisp.org>
10753
10754         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10755         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
10756         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10757         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
10758         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
10759
10760 2009-01-19  Bruno Haible  <bruno@clisp.org>
10761
10762         * tests/test-link.c: Include <errno.h>.
10763         (main): Exit with code 77 when a hard link cannot be created due to
10764         the file system.
10765         * tests/test-link.sh: Skip test when a hard link cannot be created due
10766         to the file system.
10767         Suggested by Eric Blake.
10768
10769 2009-01-19  Martin Lambers  <marlam@marlam.de>
10770
10771         * modules/link-tests: New file.
10772         * tests/test-link.sh: New file.
10773         * tests/test-link.c: New file.
10774
10775 2009-01-19  Eric Blake  <ebb9@byu.net>
10776
10777         doc: mention another function added in cygwin 1.7.0
10778         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
10779         Another new function in cygwin 1.7.
10780
10781 2009-01-19  Bruno Haible  <bruno@clisp.org>
10782
10783         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10784         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
10785         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
10786         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10787         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10788         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
10789         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
10790         * m4/md4.m4 (gl_MD4): Likewise.
10791         * m4/md5.m4 (gl_MD5): Likewise.
10792         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
10793         * m4/sha1.m4 (gl_SHA1): Likewise.
10794         * m4/sha256.m4 (gl_SHA256): Likewise.
10795         * m4/sha512.m4 (gl_SHA512): Likewise.
10796
10797 2009-01-19  Bruno Haible  <bruno@clisp.org>
10798
10799         * modules/uniname/uniname-tests (Depends-on): Add progname.
10800         * tests/uniname/test-uninames.c: Include progname.h.
10801         (main): Call set_program_name.
10802
10803         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
10804         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
10805         (main): Call set_program_name.
10806
10807         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
10808         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
10809         (main): Call set_program_name.
10810
10811         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
10812         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
10813         (main): Call set_program_name.
10814
10815         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
10816         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
10817         (main): Call set_program_name.
10818
10819         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
10820         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
10821         (main): Call set_program_name.
10822
10823         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
10824         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
10825         (main): Call set_program_name.
10826
10827         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
10828         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
10829         (main): Call set_program_name.
10830
10831         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
10832         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
10833         (main): Call set_program_name.
10834
10835 2009-01-19  Eric Blake  <ebb9@byu.net>
10836
10837         test-unistd: test previous patch
10838         * tests/test-unistd.c: Test *_FILENO macros.
10839
10840         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
10841         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10842         Guarantee a definition.
10843         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
10844         * modules/unistd-safer (Depends-on): Add dependency on unistd.
10845         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
10846         * lib/dup-safer.c (STDERR_FILENO): Likewise.
10847         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10848         Likewise.
10849         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
10850         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
10851         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10852         Likewise.
10853         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
10854         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
10855         (STDERR_FILENO): Likewise.
10856         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
10857         (STDERR_FILENO): Likewise.
10858         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
10859         (STDERR_FILENO): Likewise.
10860         Reported by Elbert Pol.
10861
10862 2009-01-19  Eric Blake  <ebb9@byu.net>
10863
10864         doc: mention more functions added in cygwin 1.7.0
10865         * doc/posix-functions/abort.texi (abort): Update wording related
10866         to cygwin.
10867         * doc/posix-functions/daylight.texi (daylight): Likewise.
10868         * doc/posix-functions/optarg.texi (optarg): Likewise.
10869         * doc/posix-functions/optarg.texi (opterr): Likewise.
10870         * doc/posix-functions/optarg.texi (optind): Likewise.
10871         * doc/posix-functions/optarg.texi (optopt): Likewise.
10872         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
10873         worked in 1.5.x, and was withdrawn in 1.7.
10874         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
10875         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
10876         cygwin versions.
10877         * doc/posix-functions/perror.texi (perror): Likewise.
10878         * doc/posix-functions/printf.texi (printf): Likewise.
10879         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
10880         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
10881         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
10882         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
10883         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
10884         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
10885         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
10886         Likewise.
10887         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
10888         Likewise.
10889         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
10890         this function.
10891         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
10892         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
10893         Likewise.
10894         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
10895         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
10896         * doc/posix-functions/confstr.texi (confstr): Likewise.
10897         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
10898         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
10899         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
10900         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
10901         * doc/posix-functions/fputws.texi (fputws): Likewise.
10902         * doc/posix-functions/fwide.texi (fwide): Likewise.
10903         * doc/posix-functions/getwc.texi (getwc): Likewise.
10904         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
10905         * doc/posix-functions/putwc.texi (putwc): Likewise.
10906         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
10907         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
10908         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
10909         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
10910         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
10911         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
10912         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
10913         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
10914         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
10915         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
10916         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
10917
10918 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10919
10920         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
10921         * lib/ioctl.c: Include <sys/ioctl.h>.
10922
10923 2009-01-19  Simon Josefsson  <simon@josefsson.org>
10924
10925         * modules/getdate-tests (Depends-on): Add progname.
10926         * tests/test-getdate.c: Use progname module, to avoid link errors
10927         on non-glibc systems.
10928
10929 2009-01-18  Simon Josefsson  <simon@josefsson.org>
10930
10931         * modules/filenamecat-tests (Depends-on): Add progname.
10932         * modules/fstrcmp-tests (Depends-on): Likewise.
10933
10934         * tests/test-filenamecat.c: Use progname module, to avoid link
10935         errors on non-glibc systems.
10936         * tests/test-fstrcmp.c: Likewise.
10937
10938 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10939
10940         gettimeofday: avoid warning: nested extern declaration of 'localtime'
10941         * lib/gettimeofday.c: Move extern declaration out of function.
10942
10943 2009-01-18  Bruno Haible  <bruno@clisp.org>
10944
10945         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
10946         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
10947         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
10948
10949 2009-01-18  Bruno Haible  <bruno@clisp.org>
10950
10951         * lib/strftime.c (MEMPCPY): Remove unused macro.
10952         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
10953
10954 2009-01-18  Martin Lambers  <marlam@marlam.de>
10955
10956         New module 'link'.
10957         * lib/unistd.in.h (link): New declaration.
10958         * lib/link.c: New file.
10959         * m4/link.m4: New file.
10960         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
10961         HAVE_LINK.
10962         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
10963         * modules/link: New file.
10964         * doc/posix-functions/link.texi: Mention the new module.
10965
10966 2009-01-18  Bruno Haible  <bruno@clisp.org>
10967
10968         * tests/test-avltree_list.c (main): Call set_program_name.
10969         * tests/test-avltree_oset.c (main): Likewise.
10970         * tests/test-obstack-printf.c: Include progname.h.
10971         (main): Call set_program_name.
10972         * tests/test-quotearg.c: Include progname.h.
10973         (main): Call set_program_name.
10974         * tests/test-xmemdup0.c: Include progname.h.
10975         (main): Call set_program_name.
10976
10977 2009-01-18  Bruno Haible  <bruno@clisp.org>
10978
10979         New module 'alphasort'.
10980         * lib/dirent.in.h (alphasort): New declaration.
10981         * lib/alphasort.c: New file, from glibc with modifications.
10982         * m4/alphasort.m4: New file.
10983         * modules/alphasort: New file.
10984         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
10985         HAVE_ALPHASORT.
10986         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
10987         HAVE_ALPHASORT.
10988         * doc/posix-functions/alphasort.texi: Mention the new module and the
10989         portability problems.
10990
10991 2009-01-18  Bruno Haible  <bruno@clisp.org>
10992
10993         New module 'scandir'.
10994         * lib/dirent.in.h (scandir): New declaration.
10995         * lib/scandir.c: New file, from glibc with modifications.
10996         * m4/scandir.m4: New file.
10997         * modules/scandir: New file.
10998         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
10999         HAVE_SCANDIR.
11000         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
11001         HAVE_SCANDIR.
11002         * doc/posix-functions/scandir.texi: Mention the new module and the
11003         portability problems.
11004
11005 2009-01-17  Bruno Haible  <bruno@clisp.org>
11006
11007         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
11008         Update documentation.
11009         (func_remove_suffix): Escape all dots in the suffix. Update
11010         documentation.
11011         (func_filter_filelist): Update documentation.
11012         Reported by Ralf Wildenhues.
11013
11014 2009-01-17  Bruno Haible  <bruno@clisp.org>
11015
11016         * modules/dprintf-posix-tests: New file.
11017         * tests/test-dprintf-posix.sh: New file.
11018         * tests/test-dprintf-posix.c: New file.
11019
11020         New modules 'dprintf', 'dprintf-posix'.
11021         * lib/stdio.in.h (dprintf): New declaration.
11022         * lib/dprintf.c: New file.
11023         * m4/dprintf.m4: New file.
11024         * m4/dprintf-posix.m4: New file.
11025         * modules/dprintf: New file.
11026         * modules/dprintf-posix: New file.
11027         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
11028         HAVE_DPRINTF, REPLACE_DPRINTF.
11029         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
11030         HAVE_DPRINTF, REPLACE_DPRINTF.
11031         * doc/posix-functions/dprintf.texi: Mention the new modules.
11032
11033 2009-01-17  Bruno Haible  <bruno@clisp.org>
11034
11035         * modules/vdprintf-posix-tests: New file.
11036         * tests/test-vdprintf-posix.sh: New file.
11037         * tests/test-vdprintf-posix.c: New file.
11038
11039         New modules 'vdprintf', 'vdprintf-posix'.
11040         * lib/stdio.in.h (vdprintf): New declaration.
11041         * lib/vdprintf.c: New file.
11042         * m4/vdprintf.m4: New file.
11043         * m4/vdprintf-posix.m4: New file.
11044         * modules/vdprintf: New file.
11045         * modules/vdprintf-posix: New file.
11046         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
11047         HAVE_VDPRINTF, REPLACE_VDPRINTF.
11048         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
11049         HAVE_VDPRINTF, REPLACE_VDPRINTF.
11050         * doc/posix-functions/vdprintf.texi: Mention the new modules.
11051
11052 2009-01-17  Bruno Haible  <bruno@clisp.org>
11053
11054         Fix replacement of fopen on mingw.
11055         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
11056         mingw.
11057
11058 2009-01-17  Bruno Haible  <bruno@clisp.org>
11059
11060         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
11061         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
11062
11063 2009-01-17  Bruno Haible  <bruno@clisp.org>
11064
11065         Avoid test-fflush2.sh failure on mingw.
11066         * tests/test-fflush2.c: Include binary-io.h.
11067         (main): Put standard input into binary mode.
11068         * modules/fflush-tests (Depends-on): Add binary-io.
11069
11070 2009-01-17  Bruno Haible  <bruno@clisp.org>
11071
11072         * lib/wchar.in.h: In another particular situation, include only the
11073         system's <wchar.h> file.
11074         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
11075         Reported by Albert Chin-A-Young <china@thewrittenword.com>
11076         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
11077
11078 2009-01-17  Bruno Haible  <bruno@clisp.org>
11079
11080         Support for stripping executables in --enable-relocatable.
11081         * build-aux/install-reloc: Expect one more argument, or an environment
11082         variable RELOC_STRIP_PROG. If set, strip the destination program and
11083         its wrapper.
11084         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
11085         RELOC_STRIP_PROG.
11086         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
11087         to set RELOCATABLE_STRIP.
11088         * NEWS: Mention the new Makefile requirement.
11089
11090 2009-01-17  Bruno Haible  <bruno@clisp.org>
11091
11092         * build-aux/install-reloc: Remove debugging information left over by
11093         C compiler on MacOS X.
11094
11095 2009-01-17  Bruno Haible  <bruno@clisp.org>
11096
11097         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
11098         * lib/progreloc.c (find_executable): Fix type of pointer passed to
11099         _NSGetExecutablePath.
11100
11101 2009-01-16  Jim Meyering  <meyering@redhat.com>
11102
11103         strerror: avoid warnings about discarding "const"
11104         * lib/strerror.c (rpl_strerror): Instead of returning a const
11105         string from each and every "case", use a variable, and add a single
11106         cast after the switch.
11107
11108 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
11109
11110         * lib/arpa_inet.in.h: Add extern "C" block for C++.
11111
11112 2009-01-16  Bruno Haible  <bruno@clisp.org>
11113
11114         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
11115         array initializer syntax that also works in C++ mode.
11116         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11117
11118 2009-01-16  Jim Meyering  <meyering@redhat.com>
11119
11120         poll: suppress a warning
11121         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
11122         to ignore "...unsigned expression < 0 is always false" warnings.
11123
11124 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
11125
11126         poll: remove declarations of unused variables
11127         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
11128         sockbuf and optlen.
11129
11130 2009-01-15  Bruno Haible  <bruno@clisp.org>
11131
11132         Make fflush-after-ungetc POSIX compliant on BSD systems.
11133         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
11134         (clear_ungetc_buffer): Implement also for other systems.
11135         (rpl_fflush): On glibc systems, invoke
11136         clear_ungetc_buffer_preserving_position. Otherwise, invoke
11137         clear_ungetc_buffer after fetching the stream's position, not before.
11138
11139 2009-01-15  Bruno Haible  <bruno@clisp.org>
11140
11141         Make fflush-after-ungetc POSIX compliant on glibc systems.
11142         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
11143         after ungetc.
11144         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
11145         (rpl_fflush): On glibc systems, simply call the system's fflush
11146         function after clearing the ungetc buffer.
11147         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
11148         Instead, lseek only to the end of file, then use the system's fseeko
11149         for the rest. On glibc systems, reset the EOF indicator bit.
11150
11151 2009-01-15  Jim Meyering  <meyering@redhat.com>
11152
11153         openmp.m4: revert quote-adding change, for portability to older autoconf
11154         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
11155         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
11156         Simon Josefsson noticed the problem when using autoconf-2.61.
11157
11158 2009-01-15  Bruno Haible  <bruno@clisp.org>
11159
11160         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
11161         * tests/test-fflush2.c (ASSERT): Always fail.
11162         (main): Add two tests for fflush() after ungetc(), taking into account
11163         the Austin Group's clarification.
11164         Suggested by Eric Blake.
11165
11166 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
11167
11168         mktime.m4: remove K&R-style function prototypes
11169         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
11170         for the Sun C++ compiler.
11171
11172 2009-01-14  Bruno Haible  <bruno@clisp.org>
11173
11174         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
11175         while including <wchar.h>.
11176         * lib/wchar.in.h: In two particular situations on HP-UX, include only
11177         the system's <wchar.h> file.
11178         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11179
11180 2009-01-14  Bruno Haible  <bruno@clisp.org>
11181
11182         * m4/csharp.m4: Don't mention gettext on the serial number line.
11183         * m4/csharpexec.m4: Likewise.
11184         * m4/eaccess.m4: Likewise.
11185         * m4/javaexec.m4: Likewise.
11186         * m4/sig_atomic_t.m4: Likewise.
11187         * m4/tmpdir.m4: Likewise.
11188         * m4/intldir.m4: Bump gettext version.
11189         * m4/lib-ld.m4: Likewise.
11190
11191 2009-01-14  Bruno Haible  <bruno@clisp.org>
11192
11193         * lib/progname.c (set_program_name): Add more comments.
11194         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
11195
11196 2009-01-14  Simon Josefsson  <simon@josefsson.org>
11197
11198         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
11199         were sys/stat.h does not define it.
11200
11201 2009-01-14  Jim Meyering  <meyering@redhat.com>
11202
11203         many *.m4 files: improve m4 quoting
11204         99% of this change was performed by running the following commands:
11205         git ls-files | grep '\.m4$' | xargs perl -pi \
11206           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
11207           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
11208           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
11209           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
11210         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
11211         The remainder were to add Copyright dates, increment serial numbers,
11212         undo some changes in comments, exclude m4/intl.m4, and add quotes
11213         around the "1" in ",1" where the unusual spacing prohibited the
11214         above regexps from doing the job.  For more details, see
11215         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
11216         * m4/acl.m4: Modified.
11217         * m4/afs.m4: Likewise.
11218         * m4/alloca.m4: Likewise.
11219         * m4/argp.m4: Likewise.
11220         * m4/argz.m4: Likewise.
11221         * m4/atexit.m4: Likewise.
11222         * m4/bison-i18n.m4: Likewise.
11223         * m4/bison.m4: Likewise.
11224         * m4/byteswap.m4: Likewise.
11225         * m4/c-stack.m4: Likewise.
11226         * m4/c-strtod.m4: Likewise.
11227         * m4/calloc.m4: Likewise.
11228         * m4/canonicalize-lgpl.m4: Likewise.
11229         * m4/chown.m4: Likewise.
11230         * m4/clock_time.m4: Likewise.
11231         * m4/codeset.m4: Likewise.
11232         * m4/copy-file.m4: Likewise.
11233         * m4/csharp.m4: Likewise.
11234         * m4/csharpcomp.m4: Likewise.
11235         * m4/csharpexec.m4: Likewise.
11236         * m4/d-ino.m4: Likewise.
11237         * m4/d-type.m4: Likewise.
11238         * m4/dirfd.m4: Likewise.
11239         * m4/double-slash-root.m4: Likewise.
11240         * m4/eaccess.m4: Likewise.
11241         * m4/eealloc.m4: Likewise.
11242         * m4/environ.m4: Likewise.
11243         * m4/errno_h.m4: Likewise.
11244         * m4/euidaccess.m4: Likewise.
11245         * m4/execute.m4: Likewise.
11246         * m4/fatal-signal.m4: Likewise.
11247         * m4/fchdir.m4: Likewise.
11248         * m4/fcntl_h.m4: Likewise.
11249         * m4/fileblocks.m4: Likewise.
11250         * m4/filenamecat.m4: Likewise.
11251         * m4/findprog.m4: Likewise.
11252         * m4/flexmember.m4: Likewise.
11253         * m4/fnmatch.m4: Likewise.
11254         * m4/fopen.m4: Likewise.
11255         * m4/fpending.m4: Likewise.
11256         * m4/fprintf-posix.m4: Likewise.
11257         * m4/free.m4: Likewise.
11258         * m4/frexp.m4: Likewise.
11259         * m4/frexpl.m4: Likewise.
11260         * m4/fsusage.m4: Likewise.
11261         * m4/ftruncate.m4: Likewise.
11262         * m4/gc-camellia.m4: Likewise.
11263         * m4/gc-random.m4: Likewise.
11264         * m4/gc.m4: Likewise.
11265         * m4/getaddrinfo.m4: Likewise.
11266         * m4/getcwd-abort-bug.m4: Likewise.
11267         * m4/getcwd-path-max.m4: Likewise.
11268         * m4/getdate.m4: Likewise.
11269         * m4/getdomainname.m4: Likewise.
11270         * m4/getgroups.m4: Likewise.
11271         * m4/gethostname.m4: Likewise.
11272         * m4/gethrxtime.m4: Likewise.
11273         * m4/getline.m4: Likewise.
11274         * m4/getloadavg.m4: Likewise.
11275         * m4/getndelim2.m4: Likewise.
11276         * m4/getpass.m4: Likewise.
11277         * m4/gettext.m4: Likewise.
11278         * m4/gettime.m4: Likewise.
11279         * m4/gettimeofday.m4: Likewise.
11280         * m4/gnulib-common.m4: Likewise.
11281         * m4/group-member.m4: Likewise.
11282         * m4/host-os.m4: Likewise.
11283         * m4/iconv.m4: Likewise.
11284         * m4/iconv_open.m4: Likewise.
11285         * m4/inet_ntop.m4: Likewise.
11286         * m4/inet_pton.m4: Likewise.
11287         * m4/inline.m4: Likewise.
11288         * m4/intldir.m4: Likewise.
11289         * m4/intlmacosx.m4: Likewise.
11290         * m4/intmax.m4: Likewise.
11291         * m4/intmax_t.m4: Likewise.
11292         * m4/inttypes.m4: Likewise.
11293         * m4/inttypes_h.m4: Likewise.
11294         * m4/inttypes-pri.m4: Likewise.
11295         * m4/isapipe.m4: Likewise.
11296         * m4/isnand.m4: Likewise.
11297         * m4/isnanf.m4: Likewise.
11298         * m4/isnanl.m4: Likewise.
11299         * m4/javacomp.m4: Likewise.
11300         * m4/javaexec.m4: Likewise.
11301         * m4/jm-winsz1.m4: Likewise.
11302         * m4/jm-winsz2.m4: Likewise.
11303         * m4/lchown.m4: Likewise.
11304         * m4/lcmessage.m4: Likewise.
11305         * m4/ldexpl.m4: Likewise.
11306         * m4/lib-ld.m4: Likewise.
11307         * m4/lib-link.m4: Likewise.
11308         * m4/libsigsegv.m4: Likewise.
11309         * m4/link-follow.m4: Likewise.
11310         * m4/localcharset.m4: Likewise.
11311         * m4/locale-fr.m4: Likewise.
11312         * m4/locale-ja.m4: Likewise.
11313         * m4/locale-tr.m4: Likewise.
11314         * m4/locale-zh.m4: Likewise.
11315         * m4/lock.m4: Likewise.
11316         * m4/longlong.m4: Likewise.
11317         * m4/ls-mntd-fs.m4: Likewise.
11318         * m4/lstat.m4: Likewise.
11319         * m4/malloc.m4: Likewise.
11320         * m4/mathl.m4: Likewise.
11321         * m4/mbrtowc.m4: Likewise.
11322         * m4/mbstate_t.m4: Likewise.
11323         * m4/mbswidth.m4: Likewise.
11324         * m4/memchr.m4: Likewise.
11325         * m4/memcmp.m4: Likewise.
11326         * m4/memcpy.m4: Likewise.
11327         * m4/memmem.m4: Likewise.
11328         * m4/memmove.m4: Likewise.
11329         * m4/mempcpy.m4: Likewise.
11330         * m4/memrchr.m4: Likewise.
11331         * m4/memset.m4: Likewise.
11332         * m4/minmax.m4: Likewise.
11333         * m4/mkdir-slash.m4: Likewise.
11334         * m4/mkdtemp.m4: Likewise.
11335         * m4/mktime.m4: Likewise.
11336         * m4/mmap-anon.m4: Likewise.
11337         * m4/mountlist.m4: Likewise.
11338         * m4/nanosleep.m4: Likewise.
11339         * m4/nls.m4: Likewise.
11340         * m4/nocrash.m4: Likewise.
11341         * m4/open.m4: Likewise.
11342         * m4/openat.m4: Likewise.
11343         * m4/openmp.m4: Likewise.
11344         * m4/pathmax.m4: Likewise.
11345         * m4/perl.m4: Likewise.
11346         * m4/physmem.m4: Likewise.
11347         * m4/pipe.m4: Likewise.
11348         * m4/po.m4: Likewise.
11349         * m4/poll.m4: Likewise.
11350         * m4/posixtm.m4: Likewise.
11351         * m4/posixver.m4: Likewise.
11352         * m4/printf-frexp.m4: Likewise.
11353         * m4/printf-frexpl.m4: Likewise.
11354         * m4/printf-posix.m4: Likewise.
11355         * m4/printf-posix-rpl.m4: Likewise.
11356         * m4/printf.m4: Likewise.
11357         * m4/progtest.m4: Likewise.
11358         * m4/putenv.m4: Likewise.
11359         * m4/readline.m4: Likewise.
11360         * m4/readlink.m4: Likewise.
11361         * m4/readutmp.m4: Likewise.
11362         * m4/realloc.m4: Likewise.
11363         * m4/regex.m4: Likewise.
11364         * m4/relocatable.m4: Likewise.
11365         * m4/relocatable-lib.m4: Likewise.
11366         * m4/rename-dest-slash.m4: Likewise.
11367         * m4/rename.m4: Likewise.
11368         * m4/rmdir-errno.m4: Likewise.
11369         * m4/rmdir.m4: Likewise.
11370         * m4/roundf.m4: Likewise.
11371         * m4/roundl.m4: Likewise.
11372         * m4/rpmatch.m4: Likewise.
11373         * m4/save-cwd.m4: Likewise.
11374         * m4/selinux-selinux-h.m4: Likewise.
11375         * m4/setenv.m4: Likewise.
11376         * m4/settime.m4: Likewise.
11377         * m4/sig2str.m4: Likewise.
11378         * m4/sig_atomic_t.m4: Likewise.
11379         * m4/signalblocking.m4: Likewise.
11380         * m4/signbit.m4: Likewise.
11381         * m4/sigpipe.m4: Likewise.
11382         * m4/sockets.m4: Likewise.
11383         * m4/sockpfaf.m4: Likewise.
11384         * m4/st_dm_mode.m4: Likewise.
11385         * m4/stat-time.m4: Likewise.
11386         * m4/stdbool.m4: Likewise.
11387         * m4/stdint.m4: Likewise.
11388         * m4/stdint_h.m4: Likewise.
11389         * m4/stpcpy.m4: Likewise.
11390         * m4/stpncpy.m4: Likewise.
11391         * m4/strcase.m4: Likewise.
11392         * m4/strchrnul.m4: Likewise.
11393         * m4/strcspn.m4: Likewise.
11394         * m4/strdup.m4: Likewise.
11395         * m4/strftime.m4: Likewise.
11396         * m4/strndup.m4: Likewise.
11397         * m4/strnlen.m4: Likewise.
11398         * m4/strpbrk.m4: Likewise.
11399         * m4/strptime.m4: Likewise.
11400         * m4/strsep.m4: Likewise.
11401         * m4/strtod.m4: Likewise.
11402         * m4/strtoimax.m4: Likewise.
11403         * m4/strtok_r.m4: Likewise.
11404         * m4/strtol.m4: Likewise.
11405         * m4/strtoll.m4: Likewise.
11406         * m4/strtoul.m4: Likewise.
11407         * m4/strtoull.m4: Likewise.
11408         * m4/strtoumax.m4: Likewise.
11409         * m4/strverscmp.m4: Likewise.
11410         * m4/threadlib.m4: Likewise.
11411         * m4/timegm.m4: Likewise.
11412         * m4/tm_gmtoff.m4: Likewise.
11413         * m4/tmpdir.m4: Likewise.
11414         * m4/tmpfile.m4: Likewise.
11415         * m4/tzset.m4: Likewise.
11416         * m4/uintmax_t.m4: Likewise.
11417         * m4/unlinkdir.m4: Likewise.
11418         * m4/unlocked-io.m4: Likewise.
11419         * m4/uptime.m4: Likewise.
11420         * m4/userspec.m4: Likewise.
11421         * m4/utimbuf.m4: Likewise.
11422         * m4/utime.m4: Likewise.
11423         * m4/utimes-null.m4: Likewise.
11424         * m4/utimes.m4: Likewise.
11425         * m4/vararrays.m4: Likewise.
11426         * m4/vasnprintf.m4: Likewise.
11427         * m4/vfprintf-posix.m4: Likewise.
11428         * m4/vprintf-posix.m4: Likewise.
11429         * m4/wait-process.m4: Likewise.
11430         * m4/wchar_t.m4: Likewise.
11431         * m4/wint_t.m4: Likewise.
11432         * m4/write-any-file.m4: Likewise.
11433         * m4/yield.m4: Likewise.
11434
11435 2009-01-13  Bruno Haible  <bruno@clisp.org>
11436
11437         Avoid test-copy-file.sh failures when ACL support insufficient.
11438         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
11439         TESTS_ENVIRONMENT.
11440         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
11441         Reported by Jim Meyering.
11442
11443 2009-01-13  Bruno Haible  <bruno@clisp.org>
11444
11445         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
11446         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
11447         * modules/unistdio/u8-printf-parse (Files): Likewise.
11448         * modules/unistdio/u32-printf-parse (Files): Likewise.
11449         * modules/unistdio/ulc-printf-parse (Files): Likewise.
11450
11451 2009-01-13  Simon Josefsson  <simon@josefsson.org>
11452
11453         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
11454         and m4/inttypes_h.m4 too.
11455
11456 2009-01-12  Eric Blake  <ebb9@byu.net>
11457
11458         tests: IRIX 6.2 cc can't compile -0.0 into .data
11459         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
11460         rather than at compile-time.
11461         * tests/test-floorl.c (minus_zero): Likewise.
11462         * tests/test-frexpl.c (minus_zero): Likewise.
11463         * tests/test-isnan.c (minus_zerol): Likewise.
11464         * tests/test-isnanl.h (minus_zero): Likewise.
11465         * tests/test-ldexpl.c (minus_zero): Likewise.
11466         * tests/test-roundl.c (minus_zero): Likewise.
11467         * tests/test-signbit.c (minus_zerol): Likewise.
11468         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11469         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11470         * tests/test-truncl.c (minus_zero): Likewise.
11471         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11472         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11473         Reported by Tom G. Christensen and Nelson H. F. Beebe.
11474
11475 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11476
11477         regex: fix glibc bug 9697
11478         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
11479         handling.
11480
11481 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11482
11483         regex: fix glibc bug 697
11484         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
11485         being NULL also if there are no backreferences.
11486
11487 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11488
11489         regex: merge glibc changes
11490         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
11491         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
11492         re_string_skip_chars, re_string_reconstruct): Likewise.
11493         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
11494
11495 2009-01-07  Jim Meyering  <meyering@redhat.com>
11496
11497         poll: filter through cppi
11498         * lib/poll.c: Indent cpp directives to reflect nesting.
11499
11500 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
11501
11502         poll: don't return uninitialized
11503         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
11504
11505 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
11506
11507         avoid compile failure on AIX 6.1
11508         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
11509         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
11510
11511 2009-01-04  Jim Meyering  <meyering@redhat.com>
11512
11513         remove duplicate inclusion of <stdio.h>
11514         * tests/test-fprintf-posix.c: Likewise.
11515         * tests/test-printf-posix.c: Likewise.
11516         * tests/test-snprintf-posix.c: Likewise.
11517         * tests/test-sprintf-posix.c: Likewise.
11518         * tests/test-vasprintf-posix.c: Likewise.
11519         * tests/test-vfprintf-posix.c: Likewise.
11520         * tests/test-vprintf-posix.c: Likewise.
11521         * tests/test-vsnprintf-posix.c: Likewise.
11522         * tests/test-vsprintf-posix.c: Likewise.
11523
11524 2009-01-03  Jim Meyering  <meyering@redhat.com>
11525
11526         gnulib-tool: fix sed-based filtering
11527         * gnulib-tool (func_filter_filelist): Remove extra backslash
11528         in sed_fff_filter definition.
11529
11530 2009-01-02  Jim Meyering  <meyering@redhat.com>
11531
11532         strftime: avoid compilation failure on Solaris 2.6
11533         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
11534         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
11535         Don't #define mbrlen or mbsinit, since now they're guaranteed to
11536         be available.  Reported by Tom G. Christensen.  Details in
11537         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
11538
11539 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11540             Bruno Haible  <bruno@clisp.org>
11541
11542         Speed up gnulib-tool by doing more string processing through shell
11543         built-ins.
11544         * gnulib-tool (fast_func_append): New variable.
11545         (func_remove_prefix, func_remove_suffix): New functions.
11546         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
11547         (func_filter_filelist): New function.
11548         (func_get_dependencies): Use func_remove_suffix instead of sed.
11549         (func_get_automake_snippet): Use func_filter_filelist instead of a
11550         subshell and sed invocation.
11551
11552 2009-01-01  Bruno Haible  <bruno@clisp.org>
11553
11554         Fix a security bug.
11555         * gnulib-tool (func_import, import, update): Don't allow the characters
11556         '"', '$', '`', '\' in macro arguments that become part of commands that
11557         are evaluated.
11558
11559 2009-01-01  Bruno Haible  <bruno@clisp.org>
11560
11561         * gnulib-tool (func_reset_sigpipe): Add more comments.
11562
11563 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11564
11565         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
11566         func_emit_tests_Makefile_am, func_import): Abort loops early if we
11567         already know the answer.
11568
11569 2009-01-01  Jim Meyering  <meyering@redhat.com>
11570
11571         * lib/version-etc.c (version_etc_va): Update copyright year.
11572
11573 2008-12-30  Bruno Haible  <bruno@clisp.org>
11574
11575         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
11576         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
11577         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
11578
11579 2008-12-29  Eric Blake  <ebb9@byu.net>
11580
11581         multiarch: avoid autoconf AC_REQUIRE bug
11582         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
11583         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
11584         2.63 and older.
11585         Reported by Bruno Haible, and analyzed in
11586         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
11587
11588 2008-12-29  Bruno Haible  <bruno@clisp.org>
11589
11590         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
11591         files in subdirectories correctly.
11592         Reported by Ralf Wildenhues.
11593
11594 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11595
11596         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
11597         rather than 'join FILE -', for Solaris join.
11598
11599 2008-12-29  Bruno Haible  <bruno@clisp.org>
11600
11601         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
11602         quoting.
11603         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
11604         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
11605         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
11606         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
11607         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
11608         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
11609         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
11610         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
11611         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11612         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
11613         * m4/nls.m4 (AM_NLS): Likewise.
11614         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
11615         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
11616         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
11617         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
11618         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
11619         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
11620         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
11621         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
11622         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
11623         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11624         * m4/xsize.m4 (gl_XSIZE): Likewise.
11625         Suggested by Jim Meyering.
11626
11627 2008-11-17  Bruce Korb  <bkorb@gnu.org>
11628
11629         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
11630         * lib/parse-duration.c: use a switch instead of cascading if's.
11631
11632 2008-12-29  Eric Blake  <ebb9@byu.net>
11633
11634         wchar.h: supply WEOF on Irix 5.3
11635         * lib/wchar.in.h (wint_t): Also supply WEOF.
11636         * lib/wctype.in.h (wint_t): Likewise.
11637         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
11638         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
11639         Reported by Tom G. Christensen.
11640
11641 2008-12-26  Bruno Haible  <bruno@clisp.org>
11642
11643         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
11644         i486, i586, i686.
11645
11646 2008-12-26  Bruno Haible  <bruno@clisp.org>
11647
11648         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
11649
11650 2008-12-26  Bruno Haible  <bruno@clisp.org>
11651
11652         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
11653         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
11654         not __STDC_CONSTANT_MACROS.
11655         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11656
11657 2008-12-25  Bruno Haible  <bruno@clisp.org>
11658
11659         Add support for universal builds to vasnprintf.
11660         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
11661         universal builds, guess no.
11662         * modules/vasnprintf-posix (Depends-on): Add multiarch.
11663         * modules/vasprintf-posix (Depends-on): Likewise.
11664         * modules/fprintf-posix (Depends-on): Likewise.
11665         * modules/vfprintf-posix (Depends-on): Likewise.
11666         * modules/snprintf-posix (Depends-on): Likewise.
11667         * modules/vsnprintf-posix (Depends-on): Likewise.
11668         * modules/sprintf-posix (Depends-on): Likewise.
11669         * modules/vsprintf-posix (Depends-on): Likewise.
11670         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11671         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11672         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11673         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11674         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11675         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11676         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11677
11678         Add support for universal builds to <inttypes.h>.
11679         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
11680         _SCNu64_PREFIX): In Apple
11681         universal builds, define directly, using _LP64.
11682         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
11683         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
11684         * modules/inttypes (Depends-on): Add multiarch.
11685         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11686
11687         Add support for universal builds to <stdint.h>.
11688         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
11689         universal builds, define directly, using _LP64.
11690         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
11691         Apple universal builds, don't test for the size and suffix of ptrdiff_t
11692         and size_t.
11693         * modules/stdint (Depends-on): Add multiarch.
11694         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11695
11696         New module 'multiarch'.
11697         * modules/multiarch: New file.
11698         * m4/multiarch.m4: New file.
11699
11700 2008-12-25  Bruno Haible  <bruno@clisp.org>
11701
11702         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
11703
11704 2008-12-25  Bruno Haible  <bruno@clisp.org>
11705
11706         * modules/btowc (License): Relicense under LGPLv2+.
11707         * modules/mbsinit (License): Likewise.
11708         * modules/mbrtowc (License): Likewise.
11709         * modules/wcrtomb (License): Likewise.
11710         * modules/streq (License): Likewise.
11711         Reported by David Lutterkort <lutter@redhat.com>.
11712
11713 2008-12-23  Bruno Haible  <bruno@clisp.org>
11714
11715         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
11716
11717 2008-12-23  Bruno Haible  <bruno@clisp.org>
11718
11719         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
11720         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
11721         GETADDRINFO_LIB, not in LIBS.
11722         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
11723         * modules/canon-host (Link): Likewise.
11724         * NEWS: Mention the change.
11725         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
11726         GETADDRINFO_LIB.
11727
11728 2008-12-22  Bruno Haible  <bruno@clisp.org>
11729
11730         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
11731         * doc/posix-functions/iswalpha_l.texi: Likewise.
11732         * doc/posix-functions/iswblank_l.texi: Likewise.
11733         * doc/posix-functions/iswcntrl_l.texi: Likewise.
11734         * doc/posix-functions/iswctype_l.texi: Likewise.
11735         * doc/posix-functions/iswdigit_l.texi: Likewise.
11736         * doc/posix-functions/iswgraph_l.texi: Likewise.
11737         * doc/posix-functions/iswlower_l.texi: Likewise.
11738         * doc/posix-functions/iswprint_l.texi: Likewise.
11739         * doc/posix-functions/iswpunct_l.texi: Likewise.
11740         * doc/posix-functions/iswspace_l.texi: Likewise.
11741         * doc/posix-functions/iswupper_l.texi: Likewise.
11742         * doc/posix-functions/iswxdigit_l.texi: Likewise.
11743         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
11744         * doc/posix-functions/open_wmemstream.texi: Likewise.
11745         * doc/posix-functions/swscanf.texi: Likewise.
11746         * doc/posix-functions/towctrans_l.texi: Likewise.
11747         * doc/posix-functions/towlower.texi: Likewise.
11748         * doc/posix-functions/towlower_l.texi: Likewise.
11749         * doc/posix-functions/towupper.texi: Likewise.
11750         * doc/posix-functions/towupper_l.texi: Likewise.
11751         * doc/posix-functions/vfwprintf.texi: Likewise.
11752         * doc/posix-functions/vfwscanf.texi: Likewise.
11753         * doc/posix-functions/vswscanf.texi: Likewise.
11754         * doc/posix-functions/vwprintf.texi: Likewise.
11755         * doc/posix-functions/vwscanf.texi: Likewise.
11756         * doc/posix-functions/wcpcpy.texi: Likewise.
11757         * doc/posix-functions/wcpncpy.texi: Likewise.
11758         * doc/posix-functions/wcscasecmp.texi: Likewise.
11759         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
11760         * doc/posix-functions/wcscoll_l.texi: Likewise.
11761         * doc/posix-functions/wcsdup.texi: Likewise.
11762         * doc/posix-functions/wcsncasecmp.texi: Likewise.
11763         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
11764         * doc/posix-functions/wcsnlen.texi: Likewise.
11765         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11766         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
11767         * doc/posix-functions/wctrans_l.texi: Likewise.
11768         * doc/posix-functions/wctype_l.texi: Likewise.
11769         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
11770         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
11771         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
11772         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
11773         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
11774         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
11775         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
11776         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
11777         * doc/glibc-functions/wcschrnul.texi: Likewise.
11778         * doc/glibc-functions/wcsftime_l.texi: Likewise.
11779         * doc/glibc-functions/wcstod_l.texi: Likewise.
11780         * doc/glibc-functions/wcstof_l.texi: Likewise.
11781         * doc/glibc-functions/wcstol_l.texi: Likewise.
11782         * doc/glibc-functions/wcstold_l.texi: Likewise.
11783         * doc/glibc-functions/wcstoll_l.texi: Likewise.
11784         * doc/glibc-functions/wcstoq.texi: Likewise.
11785         * doc/glibc-functions/wcstoul_l.texi: Likewise.
11786         * doc/glibc-functions/wcstoull_l.texi: Likewise.
11787         * doc/glibc-functions/wcstouq.texi: Likewise.
11788         * doc/glibc-functions/wmempcpy.texi: Likewise.
11789
11790 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
11791             Eric Blake  <ebb9@byu.net>
11792             Paolo Bonzini  <bonzini@gnu.org>
11793             Bruno Haible  <bruno@clisp.org>
11794
11795         Make c-stack work on Haiku.
11796         * lib/c-stack.c (SA_ONSTACK): Define fallback.
11797         (c_stack_action): Use SA_ONSTACK flag.
11798
11799 2008-12-22  Bruno Haible  <bruno@clisp.org>
11800
11801         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
11802
11803 2008-12-22  Bruno Haible  <bruno@clisp.org>
11804
11805         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
11806         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
11807         being overridden.
11808         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
11809         New macros.
11810         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
11811         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
11812         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
11813         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
11814
11815 2008-12-22  Bruno Haible  <bruno@clisp.org>
11816
11817         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
11818         from test code.
11819
11820 2008-12-22  Eric Blake  <ebb9@byu.net>
11821
11822         Avoid gcc warnings on cygwin.
11823         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
11824         Avoid unused variable.
11825         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
11826         Likewise.
11827
11828 2008-12-22  Bruno Haible  <bruno@clisp.org>
11829
11830         Remove HAVE_MBRTOWC conditionals.
11831         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
11832         (mbscasecmp): Assume mbrtowc function.
11833         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
11834         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
11835         * lib/mbschr.c: Include mbuiter.h unconditionally.
11836         (mbschr): Assume mbrtowc function.
11837         * lib/mbscspn.c: Include mbuiter.h unconditionally.
11838         (mbscspn): Assume mbrtowc function.
11839         * lib/mbslen.c: Include mbuiter.h unconditionally.
11840         (mbslen): Assume mbrtowc function.
11841         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
11842         (mbsncasecmp): Assume mbrtowc function.
11843         * lib/mbsnlen.c: Include mbiter.h unconditionally.
11844         (mbsnlen): Assume mbrtowc function.
11845         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
11846         (mbspbrk): Assume mbrtowc function.
11847         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
11848         (mbspcasecmp): Assume mbrtowc function.
11849         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
11850         (mbsrchr): Assume mbrtowc function.
11851         * lib/mbssep.c: Include mbuiter.h unconditionally.
11852         (mbssep): Assume mbrtowc function.
11853         * lib/mbsspn.c: Include mbuiter.h unconditionally.
11854         (mbsspn): Assume mbrtowc function.
11855         * lib/mbsstr.c: Include mbuiter.h unconditionally.
11856         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
11857         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
11858         (mbstok_r): Assume mbrtowc function.
11859         * lib/propername.c: Include mbuiter.h unconditionally.
11860         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
11861         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
11862         (trim2): Assume mbrtowc function.
11863         * lib/mbswidth.c (mbsinit): Remove fallback definition.
11864         (mbsnwidth): Assume mbrtowc function.
11865         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
11866         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
11867         fallback definitions.
11868         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
11869
11870 2008-12-22  Bruno Haible  <bruno@clisp.org>
11871
11872         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
11873
11874 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
11875
11876         * modules/regex: Request emulations for the mb*/wc* functions we need.
11877         * m4/regex.m4: Don't look for those functions here.
11878         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
11879
11880 2008-12-22  Bruno Haible  <bruno@clisp.org>
11881
11882         * modules/fnmatch (Depends-on): Remove duplicated dependency.
11883
11884 2008-12-21  Bruno Haible  <bruno@clisp.org>
11885
11886         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
11887         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
11888         (Include): Remove conditionalization.
11889         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
11890         (Include): Remove conditionalization.
11891         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
11892         (Include): Remove conditionalization.
11893         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
11894         * m4/mbfile.m4 (gl_MBFILE): Likewise.
11895         * NEWS: Mention the change.
11896         Reported by Alan Hourihane <alanh@fairlite.co.uk>
11897         via Sergey Poznyakoff <gray@gnu.org.ua>.
11898
11899 2008-12-21  Bruno Haible  <bruno@clisp.org>
11900
11901         * MODULES.html.sh (Extended multibyte and wide character utilities
11902         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
11903         wcrtomb, wcsrtombs.
11904         (Support for systems lacking POSIX:2008): Add accept, bind, close,
11905         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
11906         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
11907         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
11908
11909 2008-12-21  Bruno Haible  <bruno@clisp.org>
11910
11911         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
11912
11913 2008-12-21  Bruno Haible  <bruno@clisp.org>
11914
11915         * modules/wcsnrtombs-tests: New file.
11916         * tests/test-wcsnrtombs1.sh: New file.
11917         * tests/test-wcsnrtombs2.sh: New file.
11918         * tests/test-wcsnrtombs3.sh: New file.
11919         * tests/test-wcsnrtombs4.sh: New file.
11920         * tests/test-wcsnrtombs.c: New file.
11921
11922         New module 'wcsnrtombs'.
11923         * lib/wchar.in.h (wcsnrtombs): New declaration.
11924         * lib/wcsnrtombs.c: New file.
11925         * lib/wcsrtombs-state.c: New file.
11926         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
11927         (internal_state): Remove variable.
11928         * m4/wcsnrtombs.m4: New file.
11929         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
11930         compilation units.
11931         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
11932         HAVE_WCSNRTOMBS.
11933         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
11934         HAVE_WCSNRTOMBS.
11935         * modules/wcsnrtombs: New file.
11936         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
11937         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
11938
11939 2008-12-21  Bruno Haible  <bruno@clisp.org>
11940
11941         * modules/wcsrtombs-tests: New file.
11942         * tests/test-wcsrtombs1.sh: New file.
11943         * tests/test-wcsrtombs2.sh: New file.
11944         * tests/test-wcsrtombs3.sh: New file.
11945         * tests/test-wcsrtombs4.sh: New file.
11946         * tests/test-wcsrtombs.c: New file.
11947
11948         New module 'wcsrtombs'.
11949         * lib/wchar.in.h (wcsrtombs): New declaration.
11950         * lib/wcsrtombs.c: New file.
11951         * m4/wcsrtombs.m4: New file.
11952         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
11953         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11954         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
11955         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11956         * modules/wcsrtombs: New file.
11957         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
11958         bugs.
11959
11960 2008-12-21  Bruno Haible  <bruno@clisp.org>
11961
11962         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
11963         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
11964         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
11965         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
11966         if not correct.
11967         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
11968         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
11969         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11970         m4/locale-zh.m4, m4/codeset.m4.
11971         * doc/posix-functions/wcrtomb.texi: Document the bug.
11972
11973 2008-12-21  Bruno Haible  <bruno@clisp.org>
11974
11975         Work around a btowc() bug on IRIX 6.5.
11976         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
11977         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
11978         REPLACE_WTOBC if not.
11979         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
11980         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
11981         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
11982
11983 2008-12-21  Bruno Haible  <bruno@clisp.org>
11984
11985         * modules/wcrtomb-tests: New file.
11986         * tests/test-wcrtomb.sh: New file.
11987         * tests/test-wcrtomb.c: New file.
11988
11989         New module 'wcrtomb'.
11990         * lib/wchar.in.h (wcrtomb): New declaration.
11991         * lib/wcrtomb.c: New file.
11992         * m4/wcrtomb.m4: New file.
11993         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
11994         HAVE_WCRTOMB.
11995         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
11996         HAVE_WCRTOMB.
11997         * modules/wcrtomb: New file.
11998         * doc/posix-functions/wcrtomb.texi: Mention the new module.
11999
12000 2008-12-21  Bruno Haible  <bruno@clisp.org>
12001
12002         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
12003         * modules/mbsrtowcs (Files): Likewise.
12004         * modules/wctob (Files): Likewise.
12005         * modules/c-strcase-tests (Files): Likewise.
12006         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
12007         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
12008         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
12009         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
12010         * modules/vasnprintf-posix-tests (Files): Likewise.
12011
12012 2008-12-21  William Pursell  <bill.pursell@gmail.com>
12013
12014         gitlog-to-changelog: pass all command-line arguments to git-log
12015         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
12016         it is sometimes convenient to filter the commits in various ways.
12017         gitlog-to-changelog only allows --since to specify a start date,
12018         but git-log itself supports many other filtering mechanisms.
12019         At the moment, I want to filter by branch name.  Rather than
12020         adding a --branch option to gitlog-to-changelog, it seems more
12021         flexible to simply pass all options directly to git-log and let
12022         git do the work.  Notice that this effectively makes --since a
12023         redundant option for gitlog-to-changelog, but removing it would
12024         require current usage to change since calls would then require
12025         an additional '--'.
12026
12027 2008-12-21  Bruno Haible  <bruno@clisp.org>
12028
12029         * modules/mbsnrtowcs-tests: New file.
12030         * tests/test-mbsnrtowcs1.sh: New file.
12031         * tests/test-mbsnrtowcs2.sh: New file.
12032         * tests/test-mbsnrtowcs3.sh: New file.
12033         * tests/test-mbsnrtowcs4.sh: New file.
12034         * tests/test-mbsnrtowcs.c: New file.
12035
12036         New module 'mbsnrtowcs'.
12037         * lib/wchar.in.h (mbsnrtowcs): New declaration.
12038         * lib/mbsnrtowcs.c: New file.
12039         * lib/mbsrtowcs-state.c: New file.
12040         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
12041         (internal_state): Remove variable.
12042         * m4/mbsnrtowcs.m4: New file.
12043         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
12044         compilation units.
12045         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
12046         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
12047         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
12048         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
12049         * modules/mbsnrtowcs: New file.
12050         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
12051         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
12052         portability problem.
12053
12054 2008-12-21  Bruno Haible  <bruno@clisp.org>
12055
12056         Work around mbsrtowcs bug.
12057         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
12058         (gl_FUNC_MBSRTOWCS): Invoke it.
12059         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
12060         m4/locale-zh.m4.
12061         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
12062
12063 2008-12-21  Bruno Haible  <bruno@clisp.org>
12064
12065         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
12066
12067 2008-12-21  Bruno Haible  <bruno@clisp.org>
12068
12069         Update doc for AIX.
12070         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
12071         16-bit wchar_t type.
12072         * doc/posix-functions/btowc.texi: Likewise.
12073         * doc/posix-functions/fgetwc.texi: Likewise.
12074         * doc/posix-functions/fgetws.texi: Likewise.
12075         * doc/posix-functions/fputwc.texi: Likewise.
12076         * doc/posix-functions/fputws.texi: Likewise.
12077         * doc/posix-functions/fwide.texi: Likewise.
12078         * doc/posix-functions/fwprintf.texi: Likewise.
12079         * doc/posix-functions/fwscanf.texi: Likewise.
12080         * doc/posix-functions/getwchar.texi: Likewise.
12081         * doc/posix-functions/getwc.texi: Likewise.
12082         * doc/posix-functions/iswalnum.texi: Likewise.
12083         * doc/posix-functions/iswalpha.texi: Likewise.
12084         * doc/posix-functions/iswblank.texi: Likewise.
12085         * doc/posix-functions/iswcntrl.texi: Likewise.
12086         * doc/posix-functions/iswctype.texi: Likewise.
12087         * doc/posix-functions/iswdigit.texi: Likewise.
12088         * doc/posix-functions/iswgraph.texi: Likewise.
12089         * doc/posix-functions/iswlower.texi: Likewise.
12090         * doc/posix-functions/iswprint.texi: Likewise.
12091         * doc/posix-functions/iswpunct.texi: Likewise.
12092         * doc/posix-functions/iswspace.texi: Likewise.
12093         * doc/posix-functions/iswupper.texi: Likewise.
12094         * doc/posix-functions/iswxdigit.texi: Likewise.
12095         * doc/posix-functions/mbrtowc.texi: Likewise.
12096         * doc/posix-functions/mbsrtowcs.texi: Likewise.
12097         * doc/posix-functions/mbstowcs.texi: Likewise.
12098         * doc/posix-functions/mbtowc.texi: Likewise.
12099         * doc/posix-functions/putwchar.texi: Likewise.
12100         * doc/posix-functions/putwc.texi: Likewise.
12101         * doc/posix-functions/swprintf.texi: Likewise.
12102         * doc/posix-functions/tolower.texi: Likewise.
12103         * doc/posix-functions/toupper.texi: Likewise.
12104         * doc/posix-functions/towctrans.texi: Likewise.
12105         * doc/posix-functions/ungetwc.texi: Likewise.
12106         * doc/posix-functions/vswprintf.texi: Likewise.
12107         * doc/posix-functions/wcrtomb.texi: Likewise.
12108         * doc/posix-functions/wcscat.texi: Likewise.
12109         * doc/posix-functions/wcschr.texi: Likewise.
12110         * doc/posix-functions/wcscmp.texi: Likewise.
12111         * doc/posix-functions/wcscoll.texi: Likewise.
12112         * doc/posix-functions/wcscpy.texi: Likewise.
12113         * doc/posix-functions/wcscspn.texi: Likewise.
12114         * doc/posix-functions/wcsftime.texi: Likewise.
12115         * doc/posix-functions/wcslen.texi: Likewise.
12116         * doc/posix-functions/wcsncat.texi: Likewise.
12117         * doc/posix-functions/wcsncmp.texi: Likewise.
12118         * doc/posix-functions/wcsncpy.texi: Likewise.
12119         * doc/posix-functions/wcspbrk.texi: Likewise.
12120         * doc/posix-functions/wcsrchr.texi: Likewise.
12121         * doc/posix-functions/wcsrtombs.texi: Likewise.
12122         * doc/posix-functions/wcsspn.texi: Likewise.
12123         * doc/posix-functions/wcsstr.texi: Likewise.
12124         * doc/posix-functions/wcstod.texi: Likewise.
12125         * doc/posix-functions/wcstof.texi: Likewise.
12126         * doc/posix-functions/wcstoimax.texi: Likewise.
12127         * doc/posix-functions/wcstok.texi: Likewise.
12128         * doc/posix-functions/wcstold.texi: Likewise.
12129         * doc/posix-functions/wcstoll.texi: Likewise.
12130         * doc/posix-functions/wcstol.texi: Likewise.
12131         * doc/posix-functions/wcstombs.texi: Likewise.
12132         * doc/posix-functions/wcstoull.texi: Likewise.
12133         * doc/posix-functions/wcstoul.texi: Likewise.
12134         * doc/posix-functions/wcstoumax.texi: Likewise.
12135         * doc/posix-functions/wcswidth.texi: Likewise.
12136         * doc/posix-functions/wcsxfrm.texi: Likewise.
12137         * doc/posix-functions/wctob.texi: Likewise.
12138         * doc/posix-functions/wctomb.texi: Likewise.
12139         * doc/posix-functions/wctrans.texi: Likewise.
12140         * doc/posix-functions/wctype.texi: Likewise.
12141         * doc/posix-functions/wcwidth.texi: Likewise.
12142         * doc/posix-functions/wmemchr.texi: Likewise.
12143         * doc/posix-functions/wmemcmp.texi: Likewise.
12144         * doc/posix-functions/wmemcpy.texi: Likewise.
12145         * doc/posix-functions/wmemmove.texi: Likewise.
12146         * doc/posix-functions/wmemset.texi: Likewise.
12147         * doc/posix-functions/wprintf.texi: Likewise.
12148         * doc/posix-functions/wscanf.texi: Likewise.
12149
12150 2008-12-21  Bruno Haible  <bruno@clisp.org>
12151
12152         Update doc for HP-UX 11.11.
12153         * doc/posix-functions/btowc.texi: Clarify that the function is missing
12154         in HP-UX version 11.00, not in all versions of HP-UX 11.
12155         * doc/posix-functions/fwide.texi: Likewise.
12156         * doc/posix-functions/fwprintf.texi: Likewise.
12157         * doc/posix-functions/fwscanf.texi: Likewise.
12158         * doc/posix-functions/inet_ntop.texi: Likewise.
12159         * doc/posix-functions/inet_pton.texi: Likewise.
12160         * doc/posix-functions/mbrlen.texi: Likewise.
12161         * doc/posix-functions/mbrtowc.texi: Likewise.
12162         * doc/posix-functions/mbsinit.texi: Likewise.
12163         * doc/posix-functions/mbsrtowcs.texi: Likewise.
12164         * doc/posix-functions/swprintf.texi: Likewise.
12165         * doc/posix-functions/swscanf.texi: Likewise.
12166         * doc/posix-functions/towctrans.texi: Likewise.
12167         * doc/posix-functions/vfwprintf.texi: Likewise.
12168         * doc/posix-functions/vswprintf.texi: Likewise.
12169         * doc/posix-functions/vwprintf.texi: Likewise.
12170         * doc/posix-functions/wcrtomb.texi: Likewise.
12171         * doc/posix-functions/wcsrtombs.texi: Likewise.
12172         * doc/posix-functions/wcsstr.texi: Likewise.
12173         * doc/posix-functions/wctob.texi: Likewise.
12174         * doc/posix-functions/wctrans.texi: Likewise.
12175         * doc/posix-functions/wmemchr.texi: Likewise.
12176         * doc/posix-functions/wmemcmp.texi: Likewise.
12177         * doc/posix-functions/wmemcpy.texi: Likewise.
12178         * doc/posix-functions/wmemmove.texi: Likewise.
12179         * doc/posix-functions/wmemset.texi: Likewise.
12180         * doc/posix-functions/wprintf.texi: Likewise.
12181         * doc/posix-functions/wscanf.texi: Likewise.
12182
12183 2008-12-21  Bruno Haible  <bruno@clisp.org>
12184
12185         Work around a portability problem.
12186         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
12187         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
12188
12189 2008-12-20  Bruno Haible  <bruno@clisp.org>
12190
12191         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
12192         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
12193         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
12194         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
12195         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
12196
12197         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
12198         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
12199         set.
12200         (GNULIB_defined_mbstate_t): New macro.
12201         (mbsinit): Redefine if REPLACE_MBSINIT is set.
12202         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
12203         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
12204         reuses the system's mbrtowc function but works around the bugs.
12205         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
12206         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
12207         macros.
12208         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
12209         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
12210         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
12211         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
12212         REPLACE_MBSINIT if mbsinit needs to be overridden.
12213         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
12214         REPLACE_MBSINIT, REPLACE_MBRTOWC.
12215         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
12216         REPLACE_MBSINIT, REPLACE_MBRTOWC.
12217         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
12218         m4/locale-zh.m4.
12219         (Depends): Add mbsinit.
12220         * modules/mbsinit (Depends): Add mbrtowc.
12221         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
12222
12223 2008-12-20  Bruno Haible  <bruno@clisp.org>
12224
12225         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
12226         so that there are no conversion errors on AIX.
12227         * tests/test-mbsrtowcs.c (main): LIkewise.
12228
12229 2008-12-20  Bruno Haible  <bruno@clisp.org>
12230
12231         Work around wctob bug on Solaris <= 9.
12232         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
12233         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
12234         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
12235         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
12236         * modules/wctob (Files): Add m4/locale-fr.m4.
12237         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
12238
12239 2008-12-20  Bruno Haible  <bruno@clisp.org>
12240
12241         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
12242         /dev/null.
12243         * tests/test-select-in.sh: Likewise.
12244         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12245
12246 2008-12-20  Bruno Haible  <bruno@clisp.org>
12247
12248         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
12249         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
12250         Cygwin 1.5.x.
12251
12252 2008-12-20  Bruno Haible  <bruno@clisp.org>
12253
12254         Ensure mbstate_t is defined on HP-UX 11.11.
12255         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
12256         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
12257         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
12258         AC_USE_SYSTEM_EXTENSIONS.
12259         * modules/fnmatch (Depends-on): Add extensions.
12260         * modules/mbrlen (Depends-on): Likewise.
12261         * modules/mbrtowc (Depends-on): Likewise.
12262         * modules/mbsinit (Depends-on): Likewise.
12263         * modules/mbsrtowcs (Depends-on): Likewise.
12264         * modules/mbswidth (Depends-on): Likewise.
12265         * modules/quotearg (Depends-on): Likewise.
12266         * modules/strftime (Depends-on): Likewise.
12267
12268 2008-12-20  Bruno Haible  <bruno@clisp.org>
12269
12270         Ensure wctob is declared on IRIX 6.5.
12271         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
12272         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
12273         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
12274         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
12275         of HAVE_WCTOB.
12276         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
12277         HAVE_WCTOB.
12278         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
12279
12280 2008-12-19  Bruno Haible  <bruno@clisp.org>
12281
12282         * modules/mbsrtowcs-tests: New file.
12283         * tests/test-mbsrtowcs1.sh: New file.
12284         * tests/test-mbsrtowcs2.sh: New file.
12285         * tests/test-mbsrtowcs3.sh: New file.
12286         * tests/test-mbsrtowcs4.sh: New file.
12287         * tests/test-mbsrtowcs.c: New file.
12288
12289         New module 'mbsrtowcs'.
12290         * lib/wchar.in.h (mbsrtowcs): New declaration.
12291         * lib/mbsrtowcs.c: New file.
12292         * m4/mbsrtowcs.m4: New file.
12293         * modules/mbsrtowcs: New file.
12294         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
12295         HAVE_MBSRTOWCS.
12296         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
12297         HAVE_MBSRTOWCS.
12298         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
12299
12300 2008-12-19  Bruno Haible  <bruno@clisp.org>
12301
12302         New module 'mbrlen'.
12303         * lib/wchar.in.h (mbrlen): New declaration.
12304         * lib/mbrlen.c: New file.
12305         * m4/mbrlen.m4: New file.
12306         * modules/mbrlen: New file.
12307         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
12308         HAVE_MBRLEN.
12309         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
12310         HAVE_MBRLEN.
12311         * doc/posix-functions/mbrlen.texi: Document the new module.
12312
12313 2008-12-19  Bruno Haible  <bruno@clisp.org>
12314
12315         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
12316         * modules/mbrtowc (Depends-on): Add verify.
12317         Suggested by Paul Eggert.
12318
12319 2008-12-18  Bruno Haible  <bruno@clisp.org>
12320
12321         * modules/mbsinit-tests: New file.
12322         * tests/test-mbsinit.sh: New file.
12323         * tests/test-mbsinit.c: New file.
12324
12325 2008-12-18  Bruno Haible  <bruno@clisp.org>
12326
12327         * modules/mbrtowc-tests: New file.
12328         * tests/test-mbrtowc1.sh: New file.
12329         * tests/test-mbrtowc2.sh: New file.
12330         * tests/test-mbrtowc3.sh: New file.
12331         * tests/test-mbrtowc4.sh: New file.
12332         * tests/test-mbrtowc.c: New file.
12333
12334         New module 'mbrtowc'.
12335         * lib/wchar.in.h (mbstate_t): Override when the system does not have
12336         mbsinit and mbrtowc.
12337         (mbrtowc): New declaration.
12338         * lib/mbrtowc.c: New file.
12339         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
12340         * modules/mbrtowc: New file.
12341         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
12342         HAVE_MBRTOWC.
12343         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
12344         HAVE_MBRTOWC.
12345         * doc/posix-functions/mbrtowc.texi: Document the new module.
12346
12347 2008-12-18  Bruno Haible  <bruno@clisp.org>
12348
12349         New module 'wctob'.
12350         * lib/wchar.in.h (wctob): New declaration.
12351         * lib/wctob.c: New file.
12352         * m4/wctob.m4: New file.
12353         * modules/wctob: New file.
12354         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
12355         HAVE_WCTOB.
12356         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
12357         * doc/posix-functions/wctob.texi: Document the new module.
12358
12359 2008-12-18  Bruno Haible  <bruno@clisp.org>
12360
12361         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
12362         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
12363
12364 2008-12-18  Simon Josefsson  <simon@josefsson.org>
12365
12366         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
12367         G. Christensen" <tgc@jupiterrise.com>.
12368
12369         * lib/flock.c: Need to include errno.h.  Reported by "Tom
12370         G. Christensen" <tgc@jupiterrise.com>.
12371
12372         * lib/flock.c: Need to include string.h.  Reported by "Tom
12373         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
12374         <ebb9@byu.net>.
12375
12376 2008-12-18  Bruno Haible  <bruno@clisp.org>
12377
12378         * m4/locale-ja.m4: New file, from GNU gettext.
12379
12380 2008-12-17  Bruno Haible  <bruno@clisp.org>
12381
12382         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
12383         Suggested by Eric Blake.
12384
12385 2008-12-17  Bruno Haible  <bruno@clisp.org>
12386
12387         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
12388
12389 2008-12-17  Bruno Haible  <bruno@clisp.org>
12390
12391         * lib/mbsinit.c: Include verify.h. Verify an assumption.
12392         * modules/mbsinit (Depends-on): Add verify.
12393         Suggested by Paul Eggert.
12394
12395 2008-12-17  Bruno Haible  <bruno@clisp.org>
12396
12397         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
12398         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
12399         gl_FUNC_MBRTOWC.
12400         * m4/mbiter.m4 (gl_MBITER): LIkewise.
12401         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
12402         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
12403         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
12404         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
12405         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
12406         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
12407         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
12408         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
12409         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
12410         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
12411         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
12412         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
12413         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
12414         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
12415         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12416         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
12417         * modules/trim (configure.ac): Likewise.
12418
12419 2008-12-17  Bruno Haible  <bruno@clisp.org>
12420
12421         * modules/btowc-tests: New file.
12422         * tests/test-btowc1.sh: New file.
12423         * tests/test-btowc2.sh: New file.
12424         * tests/test-btowc.c: New file.
12425
12426         New module 'btowc'.
12427         * lib/wchar.in.h (btowc): New declaration.
12428         * lib/btowc.c: New file.
12429         * m4/btowc.m4: New file.
12430         * modules/btowc: New file.
12431         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
12432         HAVE_BTOWC.
12433         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
12434         * doc/posix-functions/btowc.texi: Document the new module.
12435
12436 2008-12-17  Bruno Haible  <bruno@clisp.org>
12437
12438         New module 'mbsinit'.
12439         * lib/wchar.in.h (mbsinit): New declaration.
12440         * lib/mbsinit.c: New file.
12441         * m4/mbsinit.m4: New file.
12442         * modules/mbsinit: New file.
12443         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
12444         HAVE_MBSINIT.
12445         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
12446         HAVE_MBSINIT.
12447         * doc/posix-functions/mbsinit.texi: Document the new module.
12448
12449 2008-12-16  Bruno Haible  <bruno@clisp.org>
12450
12451         * lib/unistd.in.h: Add comment.
12452         * tests/test-environ.c: Don't include <stdlib.h>.
12453
12454 2008-12-16  Bruno Haible  <bruno@clisp.org>
12455
12456         * lib/parse-duration.h (parse_duration): Document return value
12457         convention.
12458         * lib/parse-duration.c: Include specification header first. Add
12459         comments.
12460         (_): Remove macro.
12461         (parse_year_month_day, parse_hour_minute_second): Move side effects
12462         outside of strchr call.
12463         (parse_non_iso8601): Move side effects outside of isspace call.
12464         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
12465         call.
12466
12467 2008-12-16  Bruno Haible  <bruno@clisp.org>
12468
12469         * tests/test-parse-duration.sh: Produce no output when the test
12470         succeeds.
12471
12472 2008-12-16  Bruno Haible  <bruno@clisp.org>
12473
12474         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
12475         expressions.
12476
12477 2008-12-15  Bruno Haible  <bruno@clisp.org>
12478
12479         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
12480         * doc/glibc-functions/flistxattr.texi: Likewise.
12481         * doc/glibc-functions/fopencookie.texi: Likewise.
12482         * doc/glibc-functions/fremovexattr.texi: Likewise.
12483         * doc/glibc-functions/fsetxattr.texi: Likewise.
12484         * doc/glibc-functions/getxattr.texi: Likewise.
12485         * doc/glibc-functions/lgetxattr.texi: Likewise.
12486         * doc/glibc-functions/listxattr.texi: Likewise.
12487         * doc/glibc-functions/llistxattr.texi: Likewise.
12488         * doc/glibc-functions/lremovexattr.texi: Likewise.
12489         * doc/glibc-functions/lsetxattr.texi: Likewise.
12490         * doc/glibc-functions/removexattr.texi: Likewise.
12491         * doc/glibc-functions/setxattr.texi: Likewise.
12492         * doc/posix-functions/open_memstream.texi: Likewise.
12493
12494 2008-12-15  Eric Blake  <ebb9@byu.net>
12495
12496         Update doc for cygwin 1.7.
12497         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
12498         functions.
12499         * doc/posix-functions/fchmodat.texi: Likewise.
12500         * doc/posix-functions/fchownat.texi: Likewise.
12501         * doc/posix-functions/fdopendir.texi: Likewise.
12502         * doc/posix-functions/fmemopen.texi: Likewise.
12503         * doc/posix-functions/freeaddrinfo.texi: Likewise.
12504         * doc/posix-functions/fstatat.texi: Likewise.
12505         * doc/posix-functions/futimens.texi: Likewise.
12506         * doc/posix-functions/gai_strerror.texi: Likewise.
12507         * doc/posix-functions/getaddrinfo.texi: Likewise.
12508         * doc/posix-functions/getnameinfo.texi: Likewise.
12509         * doc/posix-functions/if_freenameindex.texi: Likewise.
12510         * doc/posix-functions/if_indextoname.texi: Likewise.
12511         * doc/posix-functions/if_nameindex.texi: Likewise.
12512         * doc/posix-functions/if_nametoindex.texi: Likewise.
12513         * doc/posix-functions/insque.texi: Likewise.
12514         * doc/posix-functions/linkat.texi: Likewise.
12515         * doc/posix-functions/llrint.texi: Likewise.
12516         * doc/posix-functions/llrintf.texi: Likewise.
12517         * doc/posix-functions/llrintl.texi: Likewise.
12518         * doc/posix-functions/lockf.texi: Likewise.
12519         * doc/posix-functions/lrintl.texi: Likewise.
12520         * doc/posix-functions/mkdirat.texi: Likewise.
12521         * doc/posix-functions/mkfifoat.texi: Likewise.
12522         * doc/posix-functions/mknodat.texi: Likewise.
12523         * doc/posix-functions/mq_close.texi: Likewise.
12524         * doc/posix-functions/mq_getattr.texi: Likewise.
12525         * doc/posix-functions/mq_notify.texi: Likewise.
12526         * doc/posix-functions/mq_open.texi: Likewise.
12527         * doc/posix-functions/mq_receive.texi: Likewise.
12528         * doc/posix-functions/mq_send.texi: Likewise.
12529         * doc/posix-functions/mq_setattr.texi: Likewise.
12530         * doc/posix-functions/mq_timedreceive.texi: Likewise.
12531         * doc/posix-functions/mq_timedsend.texi: Likewise.
12532         * doc/posix-functions/mq_unlink.texi: Likewise.
12533         * doc/posix-functions/open_memstream.texi: Likewise.
12534         * doc/posix-functions/openat.texi: Likewise.
12535         * doc/posix-functions/posix_fadvise.texi: Likewise.
12536         * doc/posix-functions/posix_fallocate.texi: Likewise.
12537         * doc/posix-functions/posix_madvise.texi: Likewise.
12538         * doc/posix-functions/posix_memalign.texi: Likewise.
12539         * doc/posix-functions/posix_openpt.texi: Likewise.
12540         * doc/posix-functions/readlinkat.texi: Likewise.
12541         * doc/posix-functions/remque.texi: Likewise.
12542         * doc/posix-functions/renameat.texi: Likewise.
12543         * doc/posix-functions/rintl.texi: Likewise.
12544         * doc/posix-functions/sem_unlink.texi: Likewise.
12545         * doc/posix-functions/shm_open.texi: Likewise.
12546         * doc/posix-functions/shm_unlink.texi: Likewise.
12547         * doc/posix-functions/signgam.texi: Likewise.
12548         * doc/posix-functions/sigset.texi: Likewise.
12549         * doc/posix-functions/stpcpy.texi: Likewise.
12550         * doc/posix-functions/stpncpy.texi: Likewise.
12551         * doc/posix-functions/strerror.texi: Likewise.
12552         * doc/posix-functions/strtod.texi: Likewise.
12553         * doc/posix-functions/symlinkat.texi: Likewise.
12554         * doc/posix-functions/unlinkat.texi: Likewise.
12555         * doc/posix-functions/utimensat.texi: Likewise.
12556         * doc/glibc-functions/bindresvport.texi: Likewise.
12557         * doc/glibc-functions/dn_expand.texi: Likewise.
12558         * doc/glibc-functions/exp10.texi: Likewise.
12559         * doc/glibc-functions/exp10f.texi: Likewise.
12560         * doc/glibc-functions/fgetxattr.texi: Likewise.
12561         * doc/glibc-functions/flistxattr.texi: Likewise.
12562         * doc/glibc-functions/fopencookie.texi: Likewise.
12563         * doc/glibc-functions/freeifaddrs.texi: Likewise.
12564         * doc/glibc-functions/fremovexattr.texi: Likewise.
12565         * doc/glibc-functions/fsetxattr.texi: Likewise.
12566         * doc/glibc-functions/getifaddrs.texi: Likewise.
12567         * doc/glibc-functions/getxattr.texi: Likewise.
12568         * doc/glibc-functions/lgetxattr.texi: Likewise.
12569         * doc/glibc-functions/listxattr.texi: Likewise.
12570         * doc/glibc-functions/llistxattr.texi: Likewise.
12571         * doc/glibc-functions/lremovexattr.texi: Likewise.
12572         * doc/glibc-functions/lsetxattr.texi: Likewise.
12573         * doc/glibc-functions/pow10.texi: Likewise.
12574         * doc/glibc-functions/pow10f.texi: Likewise.
12575         * doc/glibc-functions/rcmd_af.texi: Likewise.
12576         * doc/glibc-functions/removexattr.texi: Likewise.
12577         * doc/glibc-functions/res_init.texi: Likewise.
12578         * doc/glibc-functions/res_mkquery.texi: Likewise.
12579         * doc/glibc-functions/res_query.texi: Likewise.
12580         * doc/glibc-functions/res_querydomain.texi: Likewise.
12581         * doc/glibc-functions/res_send.texi: Likewise.
12582         * doc/glibc-functions/rresvport_af.texi: Likewise.
12583         * doc/glibc-functions/setxattr.texi: Likewise.
12584         * doc/glibc-functions/strcasestr.texi: Likewise.
12585
12586 2008-12-15  Bruno Haible  <bruno@clisp.org>
12587
12588         Fix compilation error on OSF/1 4.0.
12589         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
12590         <sys/time.h>, simply delegate to the system header.
12591         Reported by Daniel Richard G. <oss@teragram.com>.
12592
12593 2008-12-15  Bruno Haible  <bruno@clisp.org>
12594
12595         * doc/posix-functions/openat.texi: Mention the 'openat' module.
12596         * doc/posix-functions/fchmodat.texi: Likewise.
12597         * doc/posix-functions/fchownat.texi: Likewise.
12598         * doc/posix-functions/fdopendir.texi: Likewise.
12599         * doc/posix-functions/fstatat.texi: Likewise.
12600         * doc/posix-functions/mkdirat.texi: Likewise.
12601         * doc/posix-functions/unlinkat.texi: Likewise.
12602
12603 2008-12-14  Bruno Haible  <bruno@clisp.org>
12604
12605         Update doc for POSIX:2008.
12606         * doc/posix-functions/faccessat.texi: New file.
12607         * doc/posix-functions/fchmodat.texi: New file.
12608         * doc/posix-functions/fchownat.texi: New file.
12609         * doc/posix-functions/fdopendir.texi: New file.
12610         * doc/posix-functions/fstatat.texi: New file.
12611         * doc/posix-functions/futimens.texi: New file.
12612         * doc/posix-functions/linkat.texi: New file.
12613         * doc/posix-functions/mkdirat.texi: New file.
12614         * doc/posix-functions/mkfifoat.texi: New file.
12615         * doc/posix-functions/mknodat.texi: New file.
12616         * doc/posix-functions/open_wmemstream.texi: New file.
12617         * doc/posix-functions/openat.texi: New file.
12618         * doc/posix-functions/psiginfo.texi: New file.
12619         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
12620         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
12621         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
12622         * doc/posix-functions/readlinkat.texi: New file.
12623         * doc/posix-functions/renameat.texi: New file.
12624         * doc/posix-functions/strerror_l.texi: New file.
12625         * doc/posix-functions/symlinkat.texi: New file.
12626         * doc/posix-functions/unlinkat.texi: New file.
12627         * doc/posix-functions/utimensat.texi: New file.
12628         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12629
12630 2008-12-14  Bruno Haible  <bruno@clisp.org>
12631
12632         Update doc for POSIX:2008.
12633         * doc/posix-functions/alphasort.texi: Renamed from
12634         doc/glibc-functions/alphasort.texi.
12635         * doc/posix-functions/dirfd.texi: Renamed from
12636         doc/glibc-functions/dirfd.texi.
12637         * doc/posix-functions/dprintf.texi: Renamed from
12638         doc/glibc-functions/dprintf.texi.
12639         * doc/posix-functions/duplocale.texi: Renamed from
12640         doc/glibc-functions/duplocale.texi.
12641         * doc/posix-functions/fexecve.texi: Renamed from
12642         doc/glibc-functions/fexecve.texi.
12643         * doc/posix-functions/fmemopen.texi: Renamed from
12644         doc/glibc-functions/fmemopen.texi.
12645         * doc/posix-functions/freelocale.texi: Renamed from
12646         doc/glibc-functions/freelocale.texi.
12647         * doc/posix-functions/getdate_err.texi: Renamed from
12648         doc/glibc-functions/getdate_err.texi.
12649         * doc/posix-functions/isalnum_l.texi: Renamed from
12650         doc/glibc-functions/isalnum_l.texi.
12651         * doc/posix-functions/isalpha_l.texi: Renamed from
12652         doc/glibc-functions/isalpha_l.texi.
12653         * doc/posix-functions/isblank_l.texi: Renamed from
12654         doc/glibc-functions/isblank_l.texi.
12655         * doc/posix-functions/iscntrl_l.texi: Renamed from
12656         doc/glibc-functions/iscntrl_l.texi.
12657         * doc/posix-functions/isdigit_l.texi: Renamed from
12658         doc/glibc-functions/isdigit_l.texi.
12659         * doc/posix-functions/isgraph_l.texi: Renamed from
12660         doc/glibc-functions/isgraph_l.texi.
12661         * doc/posix-functions/islower_l.texi: Renamed from
12662         doc/glibc-functions/islower_l.texi.
12663         * doc/posix-functions/isprint_l.texi: Renamed from
12664         doc/glibc-functions/isprint_l.texi.
12665         * doc/posix-functions/ispunct_l.texi: Renamed from
12666         doc/glibc-functions/ispunct_l.texi.
12667         * doc/posix-functions/isspace_l.texi: Renamed from
12668         doc/glibc-functions/isspace_l.texi.
12669         * doc/posix-functions/isupper_l.texi: Renamed from
12670         doc/glibc-functions/isupper_l.texi.
12671         * doc/posix-functions/iswalnum_l.texi: Renamed from
12672         doc/glibc-functions/iswalnum_l.texi.
12673         * doc/posix-functions/iswalpha_l.texi: Renamed from
12674         doc/glibc-functions/iswalpha_l.texi.
12675         * doc/posix-functions/iswblank_l.texi: Renamed from
12676         doc/glibc-functions/iswblank_l.texi.
12677         * doc/posix-functions/iswcntrl_l.texi: Renamed from
12678         doc/glibc-functions/iswcntrl_l.texi.
12679         * doc/posix-functions/iswctype_l.texi: Renamed from
12680         doc/glibc-functions/iswctype_l.texi.
12681         * doc/posix-functions/iswdigit_l.texi: Renamed from
12682         doc/glibc-functions/iswdigit_l.texi.
12683         * doc/posix-functions/iswgraph_l.texi: Renamed from
12684         doc/glibc-functions/iswgraph_l.texi.
12685         * doc/posix-functions/iswlower_l.texi: Renamed from
12686         doc/glibc-functions/iswlower_l.texi.
12687         * doc/posix-functions/iswprint_l.texi: Renamed from
12688         doc/glibc-functions/iswprint_l.texi.
12689         * doc/posix-functions/iswpunct_l.texi: Renamed from
12690         doc/glibc-functions/iswpunct_l.texi.
12691         * doc/posix-functions/iswspace_l.texi: Renamed from
12692         doc/glibc-functions/iswspace_l.texi.
12693         * doc/posix-functions/iswupper_l.texi: Renamed from
12694         doc/glibc-functions/iswupper_l.texi.
12695         * doc/posix-functions/iswxdigit_l.texi: Renamed from
12696         doc/glibc-functions/iswxdigit_l.texi.
12697         * doc/posix-functions/isxdigit_l.texi: Renamed from
12698         doc/glibc-functions/isxdigit_l.texi.
12699         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
12700         doc/glibc-functions/mbsnrtowcs.texi.
12701         * doc/posix-functions/mkdtemp.texi: Renamed from
12702         doc/glibc-functions/mkdtemp.texi.
12703         * doc/posix-functions/newlocale.texi: Renamed from
12704         doc/glibc-functions/newlocale.texi.
12705         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
12706         doc/glibc-functions/nl_langinfo_l.texi.
12707         * doc/posix-functions/open_memstream.texi: Renamed from
12708         doc/glibc-functions/open_memstream.texi.
12709         * doc/posix-functions/opterr.texi: Renamed from
12710         doc/glibc-functions/opterr.texi.
12711         * doc/posix-functions/optind.texi: Renamed from
12712         doc/glibc-functions/optind.texi.
12713         * doc/posix-functions/optopt.texi: Renamed from
12714         doc/glibc-functions/optopt.texi.
12715         * doc/posix-functions/psignal.texi: Renamed from
12716         doc/glibc-functions/psignal.texi.
12717         * doc/posix-functions/scandir.texi: Renamed from
12718         doc/glibc-functions/scandir.texi.
12719         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
12720         doc/glibc-functions/sched_get_priority_min.texi.
12721         * doc/posix-functions/signgam.texi: Renamed from
12722         doc/glibc-functions/signgam.texi.
12723         * doc/posix-functions/stpcpy.texi: Renamed from
12724         doc/glibc-functions/stpcpy.texi.
12725         * doc/posix-functions/stpncpy.texi: Renamed from
12726         doc/glibc-functions/stpncpy.texi.
12727         * doc/posix-functions/strcasecmp_l.texi: Renamed from
12728         doc/glibc-functions/strcasecmp_l.texi.
12729         * doc/posix-functions/strcoll_l.texi: Renamed from
12730         doc/glibc-functions/strcoll_l.texi.
12731         * doc/posix-functions/strfmon_l.texi: Renamed from
12732         doc/glibc-functions/strfmon_l.texi.
12733         * doc/posix-functions/strftime_l.texi: Renamed from
12734         doc/glibc-functions/strftime_l.texi.
12735         * doc/posix-functions/strncasecmp_l.texi: Renamed from
12736         doc/glibc-functions/strncasecmp_l.texi.
12737         * doc/posix-functions/strndup.texi: Renamed from
12738         doc/glibc-functions/strndup.texi.
12739         * doc/posix-functions/strnlen.texi: Renamed from
12740         doc/glibc-functions/strnlen.texi.
12741         * doc/posix-functions/strsignal.texi: Renamed from
12742         doc/glibc-functions/strsignal.texi.
12743         * doc/posix-functions/strxfrm_l.texi: Renamed from
12744         doc/glibc-functions/strxfrm_l.texi.
12745         * doc/posix-functions/timer_gettime.texi: Renamed from
12746         doc/glibc-functions/timer_gettime.texi.
12747         * doc/posix-functions/tolower_l.texi: Renamed from
12748         doc/glibc-functions/tolower_l.texi.
12749         * doc/posix-functions/toupper_l.texi: Renamed from
12750         doc/glibc-functions/toupper_l.texi.
12751         * doc/posix-functions/towctrans_l.texi: Renamed from
12752         doc/glibc-functions/towctrans_l.texi.
12753         * doc/posix-functions/towlower_l.texi: Renamed from
12754         doc/glibc-functions/towlower_l.texi.
12755         * doc/posix-functions/towupper_l.texi: Renamed from
12756         doc/glibc-functions/towupper_l.texi.
12757         * doc/posix-functions/uselocale.texi: Renamed from
12758         doc/glibc-functions/uselocale.texi.
12759         * doc/posix-functions/vdprintf.texi: Renamed from
12760         doc/glibc-functions/vdprintf.texi.
12761         * doc/posix-functions/wcpcpy.texi:
12762         Renamed from doc/glibc-functions/wcpcpy.texi.
12763         * doc/posix-functions/wcpncpy.texi: Renamed from
12764         doc/glibc-functions/wcpncpy.texi.
12765         * doc/posix-functions/wcscasecmp.texi: Renamed from
12766         doc/glibc-functions/wcscasecmp.texi.
12767         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
12768         doc/glibc-functions/wcscasecmp_l.texi.
12769         * doc/posix-functions/wcscoll_l.texi: Renamed from
12770         doc/glibc-functions/wcscoll_l.texi.
12771         * doc/posix-functions/wcsdup.texi: Renamed from
12772         doc/glibc-functions/wcsdup.texi.
12773         * doc/posix-functions/wcsncasecmp.texi: Renamed from
12774         doc/glibc-functions/wcsncasecmp.texi.
12775         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
12776         doc/glibc-functions/wcsncasecmp_l.texi.
12777         * doc/posix-functions/wcsnlen.texi: Renamed from
12778         doc/glibc-functions/wcsnlen.texi.
12779         * doc/posix-functions/wcsnrtombs.texi: Renamed from
12780         doc/glibc-functions/wcsnrtombs.texi.
12781         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
12782         doc/glibc-functions/wcsxfrm_l.texi.
12783         * doc/posix-functions/wctrans_l.texi: Renamed from
12784         doc/glibc-functions/wctrans_l.texi.
12785         * doc/posix-functions/wctype_l.texi: Renamed from
12786         doc/glibc-functions/wctype_l.texi.
12787         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12788         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
12789         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
12790         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
12791         these subsections.
12792         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
12793         Remove sections.
12794
12795 2008-12-14  Bruno Haible  <bruno@clisp.org>
12796
12797         Update doc for POSIX:2008.
12798         * doc/posix-functions/*.texi: Update URL of POSIX specification.
12799
12800 2008-12-14  Bruno Haible  <bruno@clisp.org>
12801
12802         Update doc for POSIX:2008.
12803         * doc/pastposix-functions/bcmp.texi: Renamed from
12804         doc/posix-functions/bcmp.texi.
12805         * doc/pastposix-functions/bcopy.texi: Renamed from
12806         doc/posix-functions/bcopy.texi.
12807         * doc/pastposix-functions/bsd_signal.texi: Renamed from
12808         doc/posix-functions/bsd_signal.texi.
12809         * doc/pastposix-functions/bzero.texi: Renamed from
12810         doc/posix-functions/bzero.texi.
12811         * doc/pastposix-functions/ecvt.texi: Renamed from
12812         doc/posix-functions/ecvt.texi.
12813         * doc/pastposix-functions/fcvt.texi: Renamed from
12814         doc/posix-functions/fcvt.texi.
12815         * doc/pastposix-functions/ftime.texi: Renamed from
12816         doc/posix-functions/ftime.texi.
12817         * doc/pastposix-functions/gcvt.texi: Renamed from
12818         doc/posix-functions/gcvt.texi.
12819         * doc/pastposix-functions/getcontext.texi: Renamed from
12820         doc/posix-functions/getcontext.texi.
12821         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
12822         doc/posix-functions/gethostbyaddr.texi.
12823         * doc/pastposix-functions/gethostbyname.texi: Renamed from
12824         doc/posix-functions/gethostbyname.texi.
12825         * doc/pastposix-functions/getwd.texi: Renamed from
12826         doc/posix-functions/getwd.texi.
12827         * doc/pastposix-functions/h_errno.texi: Renamed from
12828         doc/posix-functions/h_errno.texi.
12829         * doc/pastposix-functions/index.texi: Renamed from
12830         doc/posix-functions/index.texi.
12831         * doc/pastposix-functions/makecontext.texi: Renamed from
12832         doc/posix-functions/makecontext.texi.
12833         * doc/pastposix-functions/mktemp.texi: Renamed from
12834         doc/posix-functions/mktemp.texi.
12835         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
12836         doc/posix-functions/pthread_attr_getstackaddr.texi.
12837         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
12838         doc/posix-functions/pthread_attr_setstackaddr.texi.
12839         * doc/pastposix-functions/rindex.texi: Renamed from
12840         doc/posix-functions/rindex.texi.
12841         * doc/pastposix-functions/scalb.texi: Renamed from
12842         doc/posix-functions/scalb.texi.
12843         * doc/pastposix-functions/setcontext.texi: Renamed from
12844         doc/posix-functions/setcontext.texi.
12845         * doc/pastposix-functions/swapcontext.texi: Renamed from
12846         doc/posix-functions/swapcontext.texi.
12847         * doc/pastposix-functions/ualarm.texi: Renamed from
12848         doc/posix-functions/ualarm.texi.
12849         * doc/pastposix-functions/usleep.texi: Renamed from
12850         doc/posix-functions/usleep.texi.
12851         * doc/pastposix-functions/vfork.texi: Renamed from
12852         doc/posix-functions/vfork.texi.
12853         * doc/pastposix-functions/wcswcs.texi: Renamed from
12854         doc/posix-functions/wcswcs.texi.
12855         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
12856         (Function Substitutes): Update.
12857
12858 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12859
12860         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
12861         m4/strerror.m4.
12862
12863 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12864             Bruno Haible  <bruno@clisp.org>
12865
12866         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
12867
12868 2008-12-13  Bruno Haible  <bruno@clisp.org>
12869
12870         * modules/strtoull (Depends-on): Remove unistd.
12871
12872 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12873
12874         * modules/strtoull (Depends-on): Add stdlib.
12875
12876 2008-12-11  Simon Josefsson  <simon@josefsson.org>
12877
12878         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
12879
12880 2008-12-10  Jim Meyering  <meyering@redhat.com>
12881
12882         gl_ASSERT: don't say assertions are disabled when they're not
12883         * m4/assert.m4 (gl_ASSERT): Do not make configure report
12884         "checking whether to enable assertions... no", when they are in
12885         fact enabled.  This is solely a bug in the output of configure.
12886         In spite of saying "no", NDEBUG was not defined in that case.
12887         Also, as noted by Eric Blake, leave assertions enabled upon
12888         --enable-assert=INVALID.
12889
12890 2008-12-10  Bruno Haible  <bruno@clisp.org>
12891
12892         Change MODULES.html to refer to POSIX:2008 where possible.
12893         * MODULES.html.sh (POSIX2008_URL): New variable.
12894         (posix_headers): Remove sys/timeb, ucontext.
12895         (posix2001_headers): New variable.
12896         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
12897         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
12898         index, makecontext, mktemp, pthread_attr_getstackaddr,
12899         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
12900         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
12901         (posix2001_functions): New variable.
12902         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
12903         otherwise.
12904
12905 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12906
12907         add missing include to parse-duration.c
12908         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
12909         * modules/parse-duration (Depends-on): Add xalloc.
12910
12911         fix sed script reading maint.mk
12912         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
12913         (syntax-check-rules): Use it.
12914
12915 2008-12-09  Bruno Haible  <bruno@clisp.org>
12916
12917         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
12918         MacOS X 10.4/PowerPC.
12919         Reported by Simon Josefsson.
12920
12921 2008-12-08  Jim Meyering  <meyering@redhat.com>
12922
12923         work around mingw's lack of some S_IF definitions
12924         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
12925         Reported by Simon Josefsson.
12926
12927 2008-12-08  Bruno Haible  <bruno@clisp.org>
12928
12929         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
12930         applied to variables. Needed on MacOS X 10.4/PowerPC.
12931         Reported by Simon Josefsson.
12932
12933 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
12934         and Eric Blake  <ebb9@byu.net>
12935
12936         assert: honor --enable-assert
12937         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
12938         order to honor --enable-assert, rather than treating it as a
12939         synonym for --disable-assert.
12940
12941 2008-12-08  Jim Meyering  <meyering@redhat.com>
12942
12943         * lib/posixtm.c: Remove now-useless declaration of mktime.
12944
12945         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
12946
12947 2008-12-07  Bruno Haible  <bruno@clisp.org>
12948
12949         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
12950         test_once): Mark functions as static.
12951         * tests/test-tls.c (test_tls): Likewise.
12952
12953 2008-12-07  Bruno Haible  <bruno@clisp.org>
12954
12955         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
12956         iconv_register_autodetect.
12957
12958 2008-12-07  Jim Meyering  <meyering@redhat.com>
12959
12960         posixtm.c: avoid a warning
12961         * lib/posixtm.c (posixtime): Don't initialize tm0.
12962         It's no longer needed to placate gcc4's -Wuninitialized,
12963         and the attempt to placate would elicit a new warning.
12964
12965         unicodeio.c: mark unused parameters
12966         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12967         (fallback_failure_callback): Likewise.
12968
12969 2008-12-07  Bruno Haible  <bruno@clisp.org>
12970
12971         * gnulib-tool (func_create_testdir): When building the tests
12972         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
12973         Reported by Simon Josefsson.
12974
12975 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12976
12977         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
12978
12979 2008-12-06  Bruno Haible  <bruno@clisp.org>
12980
12981         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
12982         Suggested by Eric Blake.
12983
12984 2008-12-06  Bruno Haible  <bruno@clisp.org>
12985
12986         Fix a c-stack test failure on MacOS X.
12987         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
12988         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
12989         handler for SIGBUS as well.
12990         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
12991         install a signal handler for SIGBUS as well.
12992         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
12993
12994 2008-12-06  Bruno Haible  <bruno@clisp.org>
12995
12996         Advocacy documentation.
12997         * doc/gnulib-intro.texi (Benefits): New section.
12998         * doc/gnulib.texi: Update.
12999
13000 2008-12-06  Bruno Haible  <bruno@clisp.org>
13001
13002         Document the 'manywarnings' module.
13003         * doc/manywarnings.texi: New file.
13004         * doc/gnulib.texi: Include it.
13005
13006 2008-12-05  Eric Blake  <ebb9@byu.net>
13007
13008         tests: silence some gcc warnings
13009         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
13010         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
13011         type mismatches.
13012
13013 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13014             Bruno Haible  <bruno@clisp.org>
13015
13016         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
13017
13018 2008-11-29  Jim Meyering  <meyering@redhat.com>
13019
13020         unicodeio.c: mark unused parameters
13021         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
13022         (fallback_failure_callback): Likewise.
13023
13024         fts: fix a thinko
13025         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
13026         (set_stat_type): Return S_IF*-valued "type" directly.
13027         Prompted by James Youngman's spotting a related bug.
13028         Confirmed by further testing through find.
13029
13030         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
13031         * lib/fts.c (D_TYPE): Define.
13032         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
13033         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
13034         (s_ifmt_shift_bits): New function.
13035         (set_stat_type): New function.
13036         (fts_build): When not calling fts_stat, call set_stat_type
13037         to propagate dirent.d_type info to fts_read caller.
13038         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
13039         fts_statp->st_mode type information may be valid.
13040
13041 2008-11-28  Simon Josefsson  <simon@josefsson.org>
13042
13043         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
13044         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
13045         <sds@gnu.org>.
13046
13047 2008-11-20  Bruno Haible  <bruno@clisp.org>
13048
13049         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
13050         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
13051         INCLUDE_NEXT.
13052         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
13053         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
13054         * modules/math (Makefile.am): Substitute
13055         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
13056         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13057
13058 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
13059             Bruno Haible  <bruno@clisp.org>
13060
13061         * lib/stdint.in.h: Define all type macros so that their expansion is
13062         a single typedef'ed token. Fixes a compilation failure in Boost which
13063         does "using ::int8_t;".
13064
13065 2008-11-18  Simon Josefsson  <simon@josefsson.org>
13066
13067         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
13068         gl_MANYWARN_ALL_GCC.
13069         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
13070         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
13071         * modules/manywarnings: New file.
13072         * MODULES.html.sh: Mention manywarnings module.
13073
13074 2008-11-18  Bruno Haible  <bruno@clisp.org>
13075
13076         * doc/gnulib-tool.texi (Unit tests): New section.
13077
13078 2008-11-18  Simon Josefsson  <simon@josefsson.org>
13079
13080         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
13081         paths like 'lib/po/foo.po'.
13082
13083 2008-11-17  Simon Josefsson  <simon@josefsson.org>
13084
13085         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
13086         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
13087
13088 2008-11-17  Simon Josefsson  <simon@josefsson.org>
13089
13090         * m4/warnings.m4: Use CPPFLAGS to really check whether the
13091         parameter works.
13092
13093 2008-11-17  Simon Josefsson  <simon@josefsson.org>
13094
13095         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
13096
13097 2008-11-17  Bruce Korb  <bkorb@gnu.org>
13098
13099         * modules/parse-duration-tests: New file.
13100         * tests/test-parse-duration.sh: New file.
13101         * tests/test-parse-duration.c: New file.
13102
13103         New module 'parse-duration'.
13104         * lib/parse-duration.h: New file.
13105         * lib/parse-duration.c: New file.
13106         * modules/parse-duration: New file.
13107
13108 2008-11-17  Bruno Haible  <bruno@clisp.org>
13109
13110         * tests/test-select-out.sh: Comment out the first pipe test.
13111         Reported by Simon Josefsson.
13112
13113 2008-11-17  Bruno Haible  <bruno@clisp.org>
13114
13115         * modules/getaddrinfo (Depends-on): Add servent, hostent.
13116         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
13117         gl_HOSTENT.
13118
13119 2008-11-17  Bruno Haible  <bruno@clisp.org>
13120
13121         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
13122         -lnetwork and -lnet. Needed for Haiku and BeOS.
13123
13124 2008-11-16  Bruno Haible  <bruno@clisp.org>
13125
13126         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
13127
13128 2008-11-16  Bruno Haible  <bruno@clisp.org>
13129
13130         Avoid test failure on Haiku.
13131         * tests/test-fsync.c: Include <errno.h>.
13132         (main): Don't require that fsync (0) fails.
13133
13134 2008-11-15  Bruno Haible  <bruno@clisp.org>
13135
13136         New module 'hostent'.
13137         * modules/hostent: New file.
13138         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
13139
13140 2008-11-15  Bruno Haible  <bruno@clisp.org>
13141
13142         New module 'servent'.
13143         * modules/servent: New file.
13144         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
13145
13146 2008-11-15  Bruno Haible  <bruno@clisp.org>
13147
13148         Avoid generating same test program with two different rules.
13149         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
13150         test-frexp to test-frexp-nolibm.
13151         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
13152         test-frexpl to test-frexpl-nolibm.
13153
13154 2008-11-15  Bruno Haible  <bruno@clisp.org>
13155
13156         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
13157         $(FREXPL_LIBM).
13158
13159 2008-11-15  Bruno Haible  <bruno@clisp.org>
13160
13161         * lib/netdb.in.h: Activate the definitions also when the system's
13162         <netdb.h> has 'struct addrinfo'.
13163         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
13164         EAI_OVERFLOW or AI_NUMERICSERV.
13165         * doc/posix-headers/netdb.texi: Document the problem.
13166
13167 2008-11-15  Bruno Haible  <bruno@clisp.org>
13168
13169         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
13170
13171         Make the 'sched' module work on platforms where <sched.h> exists but
13172         is incomplete (such as Haiku).
13173         * lib/sched.in.h; Include the system's <sched.h> if it exists.
13174         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
13175         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
13176         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
13177         HAVE_STRUCT_SCHED_PARAM.
13178         * modules/sched (Depends-on): Add include_next.
13179         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
13180         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
13181         * doc/posix-headers/sched.texi: Document the issue.
13182
13183 2008-11-13  Jim Meyering  <meyering@redhat.com>
13184
13185         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
13186         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
13187         test would fail due to the difference in the Report bugs to ...
13188         line.  The expected address is empty, "<>", while the actual
13189         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
13190
13191 2008-11-12  Bruno Haible  <bruno@clisp.org>
13192
13193         lstat: don't compile lstat.c on systems lacking lstat
13194         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
13195         which don't have lstat; this is handled by lib/sys_stat.in.h already.
13196         Reported by Daniel P. Berrange via Jim Meyering.
13197
13198 2008-11-12  Jim Meyering  <meyering@redhat.com>
13199
13200         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
13201
13202 2008-11-12  Simon Josefsson  <simon@josefsson.org>
13203
13204         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
13205         instead.
13206
13207 2008-11-12  Bruno Haible  <bruno@clisp.org>
13208
13209         * lib/unicodeio.c: Include unistr.h.
13210         (utf8_wctomb): Remove function.
13211         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
13212
13213 2008-11-12  Simon Josefsson  <simon@josefsson.org>
13214
13215         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
13216         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
13217         <bruno@clisp.org>.
13218         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
13219
13220 2008-11-12  Simon Josefsson  <simon@josefsson.org>
13221
13222         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
13223         * doc/gnulib.texi: Add section for warnings.
13224
13225 2008-11-11  Bruno Haible  <bruno@clisp.org>
13226
13227         * lib/sockets.h: Add a comment.
13228
13229 2008-11-11  Karl Berry  <karl@gnu.org>
13230
13231         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
13232
13233 2008-11-11  Eric Blake  <ebb9@byu.net>
13234
13235         fdl.texi: avoid git symlinks
13236         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
13237
13238 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13239
13240         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
13241
13242 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13243
13244         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
13245         (gl_WARN_ADD): Substitute $2 if literal.
13246
13247 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13248
13249         * m4/warning.m4: Remove.
13250
13251 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13252
13253         * m4/warnings.m4: Almost complete rewrite. :-)
13254
13255 2008-11-10  Simon Josefsson  <simon@josefsson.org>
13256
13257         * modules/warnings: New module.
13258         * m4/warnings.m4: New file.
13259         * MODULES.html.sh: Mention warnings module.
13260         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
13261         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13262
13263 2008-11-10  Eric Blake  <ebb9@byu.net>
13264
13265         fdl.texi: make a symlink to the latest version
13266         * doc/standards.texi: Revert today's earlier change.
13267         * doc/fdl-1.2.texi: Rename from old fdl.texi...
13268         * doc/fdl.texi: ...and replace this with a symlink to the newer
13269         fdl-1.3.texi.
13270
13271 2008-11-10  Bruno Haible  <bruno@clisp.org>
13272
13273         * tests/test-select-fd.c (main): Accept the result file name as fourth
13274         argument.
13275         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
13276         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
13277
13278 2008-11-10  Bruno Haible  <bruno@clisp.org>
13279
13280         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
13281         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
13282         as autoconf-substituted macros.
13283         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
13284         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
13285         gl_NETDB_H_DEFAULTS. Set these variables.
13286         * modules/netdb (Makefile.am): Substitute these variables.
13287
13288 2008-11-10  Eric Blake  <ebb9@byu.net>
13289
13290         standards.texi: include correct file for FDL 1.3
13291         * doc/standards.texi (GNU Free Documentation License): Change
13292         include file to pull in FDL 1.3, not 1.2.
13293
13294         fdl.texi: revert accidental change to license
13295         * doc/fdl.texi: This is FDL 1.2, not 1.3.
13296
13297 2008-11-10  Bruno Haible  <bruno@clisp.org>
13298
13299         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
13300         cross-compiling guesses also when the native compile gives no result.
13301
13302 2008-11-10  Bruno Haible  <bruno@clisp.org>
13303
13304         * lib/spawni.c (__spawni): Force variable into the stack.
13305
13306 2008-11-10  Bruno Haible  <bruno@clisp.org>
13307
13308         Add support for Haiku.
13309         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
13310         glibc and BeOS, but also on Haiku.
13311         * lib/fpurge.c (fpurge): Likewise.
13312         * lib/freadable.c (freadable): Likewise.
13313         * lib/freadahead.c (freadahead): Likewise.
13314         * lib/freading.c (freading): Likewise.
13315         * lib/freadptr.c (freadptr): Likewise.
13316         * lib/freadseek.c (freadptrinc): Likewise.
13317         * lib/fseeko.c (rpl_fseeko): Likewise.
13318         * lib/fseterr.c (fseterr): Likewise.
13319         * lib/fwritable.c (fwritable): Likewise.
13320         * lib/fwriting.c (fwriting): Likewise.
13321         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
13322
13323 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13324
13325         * lib/config.charset: Treat Haiku like BeOS.
13326
13327 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13328
13329         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
13330         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
13331
13332 2008-11-08  Bruno Haible  <bruno@clisp.org>
13333
13334         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
13335         AC_CACHE_CHECK.
13336
13337 2008-11-08  Bruno Haible  <bruno@clisp.org>
13338
13339         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
13340
13341 2008-11-08  Bruno Haible  <bruno@clisp.org>
13342
13343         * tests/test-select-fd.c: New file.
13344         * tests/test-select-in.sh: New file.
13345         * tests/test-select-out.sh: New file.
13346         * tests/test-select-stdin.c: New file.
13347         * modules/select-tests (Files): Add the new files.
13348         (Depends-on): Add gettimeofday.
13349         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
13350         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
13351         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
13352
13353 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
13354             Bruno Haible  <bruno@clisp.org>
13355
13356         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
13357
13358 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
13359
13360         * build-aux/pmccabe2html: Added support for C++ source files.
13361
13362 2008-11-05  Ben Pfaff  <blp@gnu.org>
13363
13364         Fix lib/close.c build on Windows.
13365         * modules/close (Files): Add lib/w32sock.h.
13366
13367 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
13368
13369         Accept Bison's NEWS format.
13370         * build-aux/announce-gen (print_news_deltas): Tweak
13371         $re_prefix.
13372
13373 2008-11-04  Bruno Haible  <bruno@clisp.org>
13374
13375         * modules/random_r (Maintainer): Add glibc.
13376
13377 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13378
13379         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
13380         by karl@freefriends.org (Karl Berry).
13381         * doc/alloca.texi: Likewise.
13382         * doc/c-ctype.texi: Likewise.
13383         * doc/c-strcase.texi: Likewise.
13384         * doc/c-strcaseeq.texi: Likewise.
13385         * doc/c-strcasestr.texi: Likewise.
13386         * doc/c-strstr.texi: Likewise.
13387         * doc/c-strtod.texi: Likewise.
13388         * doc/c-strtold.texi: Likewise.
13389         * doc/ctime.texi: Likewise.
13390         * doc/error.texi: Likewise.
13391         * doc/fdl.texi: Likewise.
13392         * doc/gcd.texi: Likewise.
13393         * doc/getdate.texi: Likewise.
13394         * doc/gnulib-intro.texi: Likewise.
13395         * doc/gnulib-tool.texi: Likewise.
13396         * doc/gnulib.texi: Likewise.
13397         * doc/inet_ntoa.texi: Likewise.
13398         * doc/maintain.texi: Likewise.
13399         * doc/make-stds.texi: Likewise.
13400         * doc/quote.texi: Likewise.
13401         * doc/regexprops-generic.texi: Likewise.
13402         * doc/standards.texi: Likewise.
13403         * doc/verify.texi: Likewise.
13404         * doc/visibility.texi: Likewise.
13405         * doc/gnulib.texi (GNU Free Documentation License): Include
13406         fdl-1.3.texi instead of fdl.texi.
13407
13408 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13409
13410         * doc/fdl-1.3.texi: New file, from
13411         <http://www.gnu.org/licenses/fdl-1.3.texi>.
13412         * modules/fdl-1.3: Add.
13413         * MODULES.html.sh: Add fdl-1.3.
13414
13415 2008-11-03  Bruno Haible  <bruno@clisp.org>
13416
13417         Make determination of absolute name of header file work with AIX xlc.
13418         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
13419         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
13420         preprocessing.
13421         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13422         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
13423
13424 2008-11-03  Simon Josefsson  <simon@josefsson.org>
13425
13426         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
13427         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
13428         <ludo@gnu.org>.
13429
13430 2008-11-02  Bruno Haible  <bruno@clisp.org>
13431
13432         Mark 'strpbrk' obsolete.
13433         * modules/strpbrk (Status, Notice): New sections.
13434         * modules/strtok_r (Depends-on): Add strpbrk.
13435
13436 2008-11-02  Bruno Haible  <bruno@clisp.org>
13437
13438         Mark 'strdup' obsolete.
13439         * modules/strdup (Status, Notice): New sections.
13440         * modules/findprog (Depends-on): Add strdup.
13441         * modules/getaddrinfo (Depends-on): Likewise.
13442         * modules/localename (Depends-on): Likewise.
13443         * modules/relocatable-lib (Depends-on): Likewise.
13444         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
13445         * modules/relocatable-prog (Depends-on): Likewise.
13446         * modules/trim (Depends-on): Likewise.
13447         * modules/unictype/gen-ctype (Depends-on): Likewise.
13448         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13449
13450 2008-11-02  Bruno Haible  <bruno@clisp.org>
13451
13452         Mark 'strcspn' obsolete.
13453         * modules/strcspn (Status, Notice): New sections.
13454
13455 2008-11-02  Bruno Haible  <bruno@clisp.org>
13456
13457         Mark 'rmdir' obsolete.
13458         * modules/rmdir (Status, Notice): New sections.
13459         * modules/clean-temp (Depends-on): Add rmdir.
13460         * modules/openat (Depends-on): Likewise.
13461
13462 2008-11-02  Bruno Haible  <bruno@clisp.org>
13463
13464         Mark 'raise' obsolete.
13465         * modules/raise (Status, Notice): New sections.
13466         (Include): Specify <signal.h>.
13467         * modules/stdio (Depends-on): Add raise.
13468         * modules/write (Depends-on): Likewise.
13469
13470 2008-11-02  Bruno Haible  <bruno@clisp.org>
13471
13472         Mark 'memset' obsolete.
13473         * modules/memset (Status, Notice): New sections.
13474
13475 2008-11-02  Bruno Haible  <bruno@clisp.org>
13476
13477         Mark 'memmove' obsolete.
13478         * modules/memmove (Status, Notice): New sections.
13479         * modules/argp (Depends-on): Add memmove.
13480         * modules/argz (Depends-on): Likewise.
13481         * modules/canonicalize (Depends-on): Likewise.
13482         * modules/canonicalize-lgpl (Depends-on): Likewise.
13483         * modules/fts (Depends-on): Likewise.
13484         * modules/getcwd (Depends-on): Likewise.
13485         * modules/human (Depends-on): Likewise.
13486         * modules/regex (Depends-on): Likewise.
13487         * modules/striconveh (Depends-on): Likewise.
13488         * modules/trim (Depends-on): Likewise.
13489         * modules/unistr/u8-move (Depends-on): Likewise.
13490         * modules/unistr/u16-move (Depends-on): Likewise.
13491         * modules/unistr/u32-move (Depends-on): Likewise.
13492
13493 2008-11-02  Bruno Haible  <bruno@clisp.org>
13494
13495         Mark 'memcpy' obsolete.
13496         * modules/memcpy (Status, Notice): New sections.
13497
13498 2008-11-02  Bruno Haible  <bruno@clisp.org>
13499
13500         Mark 'memcmp' obsolete.
13501         * modules/memcmp (Status, Notice): New sections.
13502         * modules/argmatch (Depends-on): Add memchr.
13503         * modules/backupfile (Depends-on): Likewise.
13504         * modules/c-strcasestr (Depends-on): Likewise.
13505         * modules/crypto/des (Depends-on): Likewise.
13506         * modules/csharpcomp (Depends-on): Likewise.
13507         * modules/fnmatch (Depends-on): Likewise.
13508         * modules/git-merge-changelog (Depends-on): Likewise.
13509         * modules/isnand (Depends-on): Likewise.
13510         * modules/isnand-nolibm (Depends-on): Likewise.
13511         * modules/isnanf (Depends-on): Likewise.
13512         * modules/isnanf-nolibm (Depends-on): Likewise.
13513         * modules/isnanl (Depends-on): Likewise.
13514         * modules/isnanl-nolibm (Depends-on): Likewise.
13515         * modules/mbchar (Depends-on): Likewise.
13516         * modules/memcoll (Depends-on): Likewise.
13517         * modules/quotearg (Depends-on): Likewise.
13518         * modules/regex (Depends-on): Likewise.
13519         * modules/relocatable-prog (Depends-on): Likewise.
13520         * modules/same (Depends-on): Likewise.
13521         * modules/signbit (Depends-on): Likewise.
13522         * modules/strcasestr-simple (Depends-on): Likewise.
13523         * modules/unictype/gen-ctype (Depends-on): Likewise.
13524         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13525         * modules/uniname/uniname (Depends-on): Likewise.
13526         * modules/unistr/u8-cmp (Depends-on): Likewise.
13527
13528 2008-11-02  Bruno Haible  <bruno@clisp.org>
13529
13530         Mark 'memchr' obsolete.
13531         * modules/memchr (Status, Notice): New sections.
13532         * modules/argp (Depends-on): Add memchr.
13533         * modules/base64 (Depends-on): Likewise.
13534         * modules/c-strcasestr (Depends-on): Likewise.
13535         * modules/chdir-long (Depends-on): Likewise.
13536         * modules/fnmatch (Depends-on): Likewise.
13537         * modules/getsubopt (Depends-on): Likewise.
13538         * modules/git-merge-changelog (Depends-on): Likewise.
13539         * modules/glob (Depends-on): Likewise.
13540         * modules/strcasestr-simple (Depends-on): Likewise.
13541         * modules/strnlen (Depends-on): Likewise.
13542
13543 2008-11-02  Bruno Haible  <bruno@clisp.org>
13544
13545         Mark 'atexit' obsolete.
13546         * modules/atexit (Status, Notice): New sections.
13547         * modules/chdir-long (Depends-on): Add atexit.
13548         * modules/wait-process (Depends-on): Likewise.
13549
13550 2008-11-02  Bruno Haible  <bruno@clisp.org>
13551
13552         * gnulib-tool: New option --with-obsolete.
13553         (func_usage): Document it.
13554         (func_modules_transitive_closure): Drop obsolete dependencies if
13555         incobsolete is not true.
13556         (func_import): Read and save the incobsolete variable to the cache.
13557
13558 2008-11-02  Bruno Haible  <bruno@clisp.org>
13559
13560         * modules/TEMPLATE-EXTENDED: New field 'Status'.
13561         * gnulib-tool: New option --extract-status.
13562         (func_usage): Document it.
13563         (sed_extract_prog): Recognize it.
13564         (func_get_status): New function.
13565
13566 2008-10-30  Simon Josefsson  <simon@josefsson.org>
13567
13568         * modules/sockets (License): Change from LGPL to LGPLv2+.
13569
13570 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13571
13572         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
13573
13574 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13575
13576         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13577         Mention times and sys_times.
13578         * modules/sys_times, modules/sys_times-tests: New modules.
13579         * modules/times, modules/times-tests: Likewise
13580         * m4/sys_times_h.m4: New file.
13581         * lib/sys_times.in.h: Likewise
13582         * lib/times.c: Likewise.
13583         * tests/test-sys_times.c: Likewise.
13584         * tests/test-times.c: Likewise.
13585         * doc/posix-headers/sys_times.texi: Update.
13586         * doc/posix-functions/times.texi: Update.
13587
13588 2008-10-28  Jim Meyering  <meyering@redhat.com>
13589
13590         * modules/tempname (Depends-on): Add lstat.
13591
13592         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
13593
13594 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13595
13596         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
13597         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
13598         using idiom used elsewhere in gnulib.
13599
13600 2008-10-27  Jim Meyering  <meyering@redhat.com>
13601
13602         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
13603
13604 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13605
13606         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
13607         TESTS_ENVIRONMENT, for shell scripts that needs to call built
13608         programs.
13609         * tests/test-argp-2.sh: Use $EXEEXT when needed.
13610
13611 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13612
13613         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
13614
13615 2008-10-27  Bruno Haible  <bruno@clisp.org>
13616
13617         * tests/test-lstat.c: Include <stdio.h>.
13618
13619 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13620
13621         * modules/lstat-tests: New module.
13622         * tests/test-lstat.c: New file.
13623
13624 2008-10-26  Jim Meyering  <meyering@redhat.com>
13625
13626         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
13627
13628 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13629             Bruno Haible  <bruno@clisp.org>
13630
13631         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
13632         * modules/configmake (Include): Add a note that the include must come
13633         after all system headers.
13634         * lib/javaversion.c: Include configmake.h after all other includes.
13635
13636 2008-10-26  Bruno Haible  <bruno@clisp.org>
13637
13638         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
13639         HAVE_STRUCT_RANDOM_DATA to 1.
13640         (gl_STDLIB_H): Simplify.
13641
13642 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13643
13644         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
13645         substitute HAVE_STRUCT_RANDOM_DATA.
13646         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
13647         random_data.
13648         * modules/stdlib (Makefile.am): Substitute
13649         HAVE_STRUCT_RANDOM_DATA.
13650
13651 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13652
13653         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
13654         * doc/gnulib-intro.texi (Copyright): Likewise.
13655
13656 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13657
13658         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
13659         findings.
13660
13661 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
13662             Bruno Haible  <bruno@clisp.org>
13663
13664         * lib/unistd.in.h: Include <winsock2.h>.
13665         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
13666         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
13667         Provide dummy declarations.
13668         (gethostname): Override.
13669         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
13670         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
13671         gl_PREREQ_SYS_H_WINSOCK2.
13672         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
13673         * doc/posix-functions/gethostname.texi: More details.
13674
13675 2008-10-25  Bruno Haible  <bruno@clisp.org>
13676
13677         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13678         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
13679         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
13680
13681         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
13682         here ...
13683         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
13684         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
13685         gl_UNISTD_H_DEFAULTS.
13686
13687 2008-10-25  Eric Blake  <ebb9@byu.net>
13688
13689         signbit: avoid spurious compiler failure
13690         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
13691         declarations inside function.
13692
13693 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13694             Bruno Haible  <bruno@clisp.org>
13695
13696         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
13697         * modules/random_r (Depends-on): Add stdint.
13698
13699 2008-10-24  Bruno Haible  <bruno@clisp.org>
13700
13701         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
13702         Eggert.
13703         * modules/strerror (License): Likewise.
13704
13705 2008-10-24  Jim Meyering  <meyering@redhat.com>
13706
13707         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
13708         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
13709
13710 2008-10-24  Eric Blake  <ebb9@byu.net>
13711
13712         getgroups: fix compilation when getgroups is available
13713         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
13714         but with <config.h> override of getgroups disabled.
13715
13716 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13717
13718         * doc/gnulib.texi (Header files): Add note about C++ problems.
13719         Explained by Bruno Haible <bruno@clisp.org>.
13720
13721 2008-10-23  Bruno Haible  <bruno@clisp.org>
13722
13723         Define a dummy SA_NODEFER macro on Interix.
13724         * lib/signal.in.h (SA_NODEFER): Define fallback.
13725         Reported by Aleksey Cheusov <cheusov@tut.by> via
13726         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
13727
13728 2008-10-23  Bruno Haible  <bruno@clisp.org>
13729
13730         * modules/freadahead (License): Change to LGPLv2+.
13731         Suggested by Simon Josefsson.
13732
13733 2008-10-23  Jim Meyering  <meyering@redhat.com>
13734
13735         random_r: new module
13736         * modules/random_r: New file.
13737         * m4/random_r.m4: New file.
13738         * lib/random_r.c: New file, from glibc.
13739         * modules/random_r-tests: New file.
13740         * tests/test-random_r.c: New file.
13741         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
13742          Declare.
13743         (RAND_MAX): Define.
13744         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
13745         * modules/stdlib: Substitute them, too.
13746         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
13747         * doc/glibc-functions/initstate_r.texi: Mention the new module.
13748         * doc/glibc-functions/random_r.texi: Likewise.
13749         * doc/glibc-functions/setstate_r.texi: Likewise.
13750         * doc/glibc-functions/srandom_r.texi: Likewise.
13751         * config/srclist.txt: Mention it.
13752
13753 2008-10-23  David Lutterkort  <lutter@redhat.com>
13754
13755         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
13756         link requirement
13757
13758 2008-10-23  Jim Meyering  <meyering@redhat.com>
13759
13760         selinux-h: mark parameters of stub functions as intentionally unused
13761         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
13762         * lib/se-context.in.h: Likewise.
13763
13764 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13765
13766         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
13767
13768 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13769
13770         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
13771
13772 2008-10-22  Eric Blake  <ebb9@byu.net>
13773
13774         glthread/thread: avoid compiler warning
13775         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
13776         Add unreachable abort to silence compiler.
13777
13778 2008-10-22  Eric Blake  <ebb9@byu.net>
13779
13780         netdb: also supply struct addrinfo for cygwin 1.5.x
13781         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
13782         older cygwin.
13783         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
13784         cygwin.
13785         * doc/posix-headers/netdb.texi (netdb.h): Document this.
13786
13787 2008-10-22  Bruno Haible  <bruno@clisp.org>
13788
13789         * users.txt: Update entry about pspp.
13790
13791 2008-10-21  Bruno Haible  <bruno@clisp.org>
13792
13793         Simplification.
13794         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
13795         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
13796
13797         Simplification.
13798         * lib/ioctl.c (ioctl): Don't undefine.
13799         * lib/socket.c (socket): Don't undefine.
13800
13801         Remove unused module indicator macros.
13802         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
13803         GNULIB_$1 as a C macro.
13804
13805         * doc/posix-functions/close.texi: Undo last change.
13806         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
13807         Windows platforms.
13808
13809 2008-10-21  Bruno Haible  <bruno@clisp.org>
13810
13811         Add gethostname() declaration to <unistd.h>.
13812         * lib/unistd.in.h (gethostname): New declaration.
13813         * lib/gethostname.c: Include <unistd.h>.
13814         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
13815         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
13816         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
13817         and HAVE_GETHOSTNAME.
13818         * modules/gethostname (Depends-on): Add unistd.
13819         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13820         (Include): Specify <unistd.h>.
13821         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
13822         HAVE_GETHOSTNAME.
13823         * tests/test-gethostname.c: Include <unistd.h> first.
13824
13825 2008-10-21  Bruno Haible  <bruno@clisp.org>
13826
13827         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
13828         * modules/select-tests (Depends-on): Likewise.
13829         Reported by Simon Josefsson.
13830
13831 2008-10-21  Simon Josefsson  <simon@josefsson.org>
13832
13833         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
13834         * lib/accept.c: New file, based on winsock.c.
13835         * lib/bind.c: New file, based on winsock.c.
13836         * lib/connect.c: New file, based on winsock.c.
13837         * lib/getpeername.c: New file, based on winsock.c.
13838         * lib/getsockname.c: New file, based on winsock.c.
13839         * lib/getsockopt.c: New file, based on winsock.c.
13840         * lib/ioctl.c: New file, based on winsock.c.
13841         * lib/listen.c: New file, based on winsock.c.
13842         * lib/recv.c: New file, based on winsock.c.
13843         * lib/recvfrom.c: New file, based on winsock.c.
13844         * lib/send.c: New file, based on winsock.c.
13845         * lib/sendto.c: New file, based on winsock.c.
13846         * lib/setsockopt.c: New file, based on winsock.c.
13847         * lib/shutdown.c: New file, based on winsock.c.
13848         * lib/socket.c: New file, based on winsock.c.
13849         * lib/w32sock.h: New file, based on winsock.c.
13850         * lib/winsock.c: Remove file.
13851         * modules/accept: Likewise.
13852         * modules/bind: Likewise.
13853         * modules/connect: Likewise.
13854         * modules/getpeername: Likewise.
13855         * modules/getsockname: Likewise.
13856         * modules/getsockopt: Likewise.
13857         * modules/ioctl: Likewise.
13858         * modules/listen: Likewise.
13859         * modules/recv: Likewise.
13860         * modules/recvfrom: Likewise.
13861         * modules/send: Likewise.
13862         * modules/sendto: Likewise.
13863         * modules/setsockopt: Likewise.
13864         * modules/shutdown: Likewise.
13865         * modules/socket: Use socket.c instead of winsock.c.
13866         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
13867         * doc/posix-functions/accept.texi: Doc fix.
13868         * doc/posix-functions/bind.texi: Doc fix.
13869         * doc/posix-functions/close.texi: Doc fix.
13870         * doc/posix-functions/connect.texi: Doc fix.
13871         * doc/posix-functions/getpeername.texi: Doc fix.
13872         * doc/posix-functions/getsockname.texi: Doc fix.
13873         * doc/posix-functions/getsockopt.texi: Doc fix.
13874         * doc/posix-functions/ioctl.texi: Doc fix.
13875         * doc/posix-functions/listen.texi: Doc fix.
13876         * doc/posix-functions/recv.texi: Doc fix.
13877         * doc/posix-functions/recvfrom.texi: Doc fix.
13878         * doc/posix-functions/send.texi: Doc fix.
13879         * doc/posix-functions/sendto.texi: Doc fix.
13880         * doc/posix-functions/setsockopt.texi: Doc fix.
13881         * doc/posix-functions/shutdown.texi: Doc fix.
13882         * doc/posix-functions/socket.texi: Doc fix.
13883
13884 2008-10-20  Bruno Haible  <bruno@clisp.org>
13885
13886         Take into account the role of SIGABRT_COMPAT on Windows 2008.
13887         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
13888         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
13889         as an alias for SIGABRT.
13890         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
13891         (sigaction): Map it to SIGABRT.
13892         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
13893
13894 2008-10-20  Bruno Haible  <bruno@clisp.org>
13895
13896         * lib/fts.c: Don't include lstat.h.
13897         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
13898
13899         Move the lstat() declaration to <sys/stat.h>.
13900         * lib/lstat.h: Remove file.
13901         * lib/sys_stat.in.h: Add special invocation convention.
13902         (lstat): New declaration.
13903         * lib/lstat.c (orig_lstat): New function.
13904         (rpl_lstat): Use orig_lstat instead of lstat.
13905         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
13906         AC_C_INLINE. Set REPLACE_LSTAT.
13907         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
13908         and REPLACE_LSTAT.
13909         * modules/lstat (Files): Remove lib/lstat.h.
13910         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13911         (Include): Specify <sys/stat.h> instead of lstat.h.
13912         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
13913         REPLACE_LSTAT.
13914         * NEWS: Mention the change.
13915
13916 2008-10-20  Bruno Haible  <bruno@clisp.org>
13917
13918         * modules/posix_spawn-tests: New file.
13919         * tests/test-posix_spawn3.c: New file.
13920
13921 2008-10-20  Bruno Haible  <bruno@clisp.org>
13922
13923         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
13924         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13925         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
13926         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13927         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
13928
13929 2008-10-20  Bruno Haible  <bruno@clisp.org>
13930
13931         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
13932         of posix_spawn on AIX 5.3.
13933
13934 2008-10-20  Bruno Haible  <bruno@clisp.org>
13935
13936         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
13937
13938 2008-10-20  Bruno Haible  <bruno@clisp.org>
13939
13940         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
13941         of AC_LANG_PROGRAM.
13942
13943 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13944
13945         * lib/netdb.in.h: Don't define GNU specific constants until they
13946         are supported or needed.  Reported by Bruno Haible
13947         <bruno@clisp.org>.
13948
13949 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13950
13951         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
13952
13953 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13954
13955         * lib/getaddrinfo.h: Remove file.
13956         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
13957         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
13958         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
13959         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
13960         * modules/netdb: Substitute GNULIB_GETADDRINFO.
13961         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
13962         * tests/test-getaddrinfo.c: Likewise.
13963         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
13964         * NEWS: Mention change.
13965
13966 2008-10-19  Bruno Haible  <bruno@clisp.org>
13967
13968         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
13969
13970 2008-10-19  Bruno Haible  <bruno@clisp.org>
13971
13972         * lib/wait-process.c: Include simply <sys/wait.h>.
13973         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
13974         WIFSTOPPED): Remove fallback definitions.
13975         * modules/wait-process (Depends-on): Add sys_wait.
13976
13977         New module 'sys_wait'.
13978         * modules/sys_wait: New file.
13979         * lib/sys_wait.in.h: New file, partially copied from
13980         lib/wait-process.c.
13981         * m4/sys_wait_h.m4: New file.
13982         * doc/posix-headers/sys_wait.texi: Mention the new module.
13983
13984 2008-10-19  Bruno Haible  <bruno@clisp.org>
13985
13986         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
13987
13988 2008-10-19  Bruno Haible  <bruno@clisp.org>
13989
13990         Assume that waitpid() fills an 'int' status, not a 'union wait'.
13991         * lib/wait-process.c (WAIT_T): Remove type.
13992         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
13993         (wait_subprocess): Update.
13994
13995 2008-10-19  Bruno Haible  <bruno@clisp.org>
13996
13997         New module 'atoll'.
13998         * modules/atoll: New file.
13999         * lib/stdlib.in.h (atoll): New declaration.
14000         * lib/atoll.c: New file, from glibc with modifications.
14001         * m4/atoll.m4: New file.
14002         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
14003         HAVE_ATOLL.
14004         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
14005         * doc/posix-functions/atoll.texi: Mention the new module.
14006
14007 2008-10-19  Bruno Haible  <bruno@clisp.org>
14008
14009         Add strtoull() declaration to <stdlib.h>.
14010         * lib/stdlib.in.h (strtoull): New declaration.
14011         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
14012         Set HAVE_STRTOULL.
14013         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
14014         HAVE_STRTOULL.
14015         * modules/strtoull (Depends-on): Add stdlib.
14016         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14017         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
14018         HAVE_STRTOULL.
14019
14020 2008-10-19  Bruno Haible  <bruno@clisp.org>
14021
14022         Add strtoll() declaration to <stdlib.h>.
14023         * lib/stdlib.in.h (strtoll): New declaration.
14024         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
14025         Set HAVE_STRTOLL.
14026         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
14027         HAVE_STRTOLL.
14028         * modules/strtoll (Depends-on): Add stdlib.
14029         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14030         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
14031
14032 2008-10-19  Bruno Haible  <bruno@clisp.org>
14033
14034         * modules/bcopy (Depends-on): Add strings.
14035         (Include): Specify <strings.h>.
14036
14037 2008-10-19  Bruno Haible  <bruno@clisp.org>
14038
14039         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
14040
14041 2008-10-19  Bruno Haible  <bruno@clisp.org>
14042
14043         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
14044         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
14045         mingw.
14046
14047 2008-10-19  Bruno Haible  <bruno@clisp.org>
14048
14049         * lib/atanl.c: Don't include isnanl.h.
14050         * lib/cosl.c: Likewise.
14051         * lib/ldexpl.c: Likewise.
14052         * lib/logl.c: Likewise.
14053         * lib/sinl.c: Likewise.
14054         * lib/sqrtl.c: Likewise.
14055         * lib/tanl.c: Likewise.
14056
14057         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
14058         * lib/isnanf.h: Remove file.
14059         * lib/isnand.h: Remove file.
14060         * lib/isnanl.h: Remove file.
14061         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
14062         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
14063         macros.
14064         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
14065         HAVE_ISNANF, don't define it as a C macro.
14066         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
14067         HAVE_ISNAND, don't define it as a C macro.
14068         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
14069         HAVE_ISNANL, don't define it as a C macro.
14070         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
14071         HAVE_ISNAN[FDL].
14072         * modules/isnanf (Files): Remove lib/isnanf.h.
14073         (Depends-on): Add math.
14074         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
14075         (Include): Specify <math.h> instead of isnanf.h.
14076         * modules/isnand (Files): Remove lib/isnand.h.
14077         (Depends-on): Add math.
14078         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
14079         (Include): Specify <math.h> instead of isnand.h.
14080         * modules/isnanl (Files): Remove lib/isnanl.h.
14081         (Depends-on): Add math.
14082         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
14083         (Include): Specify <math.h> instead of isnanl.h.
14084         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
14085         HAVE_ISNAN[FDL].
14086         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
14087         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
14088         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
14089         * NEWS: Mention the change.
14090
14091 2008-10-18  Bruno Haible  <bruno@clisp.org>
14092
14093         Add getusershell(), setusershell(), endusershell() declarations to
14094         <unistd.h>.
14095         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
14096         declarations.
14097         * lib/getusershell.c: Include unistd.h.
14098         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
14099         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
14100         HAVE_GETUSERSHELL.
14101         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
14102         and HAVE_GETUSERSHELL.
14103         * modules/getusershell (Depends-on): Add unistd, extensions.
14104         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14105         (Include): Specify <unistd.h>.
14106         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
14107         HAVE_GETUSERSHELL.
14108
14109 2008-10-18  Bruno Haible  <bruno@clisp.org>
14110
14111         Add a getloadavg() declaration to <stdlib.h>.
14112         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
14113         getloadavg declaration.
14114         (getloadavg): New declaration.
14115         * lib/getloadavg.c: Include <stdlib.h> first.
14116         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
14117         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
14118         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
14119         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
14120         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
14121         * modules/getloadavg (Depends-on): Add stdlib, extensions.
14122         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14123         (Include): Specify <stdlib.h>.
14124         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
14125         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
14126
14127 2008-10-18  Bruno Haible  <bruno@clisp.org>
14128
14129         * lib/dirchownmod.c: Don't include lchmod.h.
14130
14131         Move the lchmod() declaration to <sys/stat.h>.
14132         * lib/lchmod.h: Remove file.
14133         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
14134         (lchmod): New declaration, moved here from lib/lchown.h.
14135         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
14136         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
14137         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
14138         and HAVE_LCHMOD.
14139         * modules/lchmod (Files): Remove lib/lchmod.h.
14140         (Depends-on): Add sys_stat, extensions.
14141         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
14142         (Include): Specify <sys/stat.h> instead of lchmod.h.
14143         * modules/sys_stat (Depends-on): Add link-warning.
14144         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
14145         definition of GL_LINK_WARNING.
14146         * NEWS: Mention the change.
14147
14148 2008-10-18  Bruno Haible  <bruno@clisp.org>
14149
14150         * lib/fchdir.c: Don't include dirfd.h.
14151         * lib/fts.c: Likewise.
14152         * lib/getcwd.c: Likewise.
14153         * lib/glob.c: Likewise.
14154
14155         Move the dirfd() declaration to <dirent.h>.
14156         * lib/dirfd.h: Remove file.
14157         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
14158         (dirfd): New declaration.
14159         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
14160         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
14161         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
14162         HAVE_DECL_DIRFD.
14163         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
14164         HAVE_DECL_DIRFD.
14165         * modules/dirfd (Files): Remove lib/dirfd.h.
14166         (Depends-on): Add dirent, extensions.
14167         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
14168         (Include): Specify <dirent.h> instead of dirfd.h.
14169         * modules/dirent (Depends-on): Add link-warning.
14170         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
14171         definition of GL_LINK_WARNING.
14172         * NEWS: Mention the change.
14173
14174 2008-10-18  Bruno Haible  <bruno@clisp.org>
14175
14176         Move the euidaccess() declaration to <unistd.h>.
14177         * lib/euidaccess.h: Remove file.
14178         * lib/unistd.in.h (euidaccess): New declaration.
14179         * lib/euidaccess.c: Don't include euidaccess.h.
14180         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
14181         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
14182         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
14183         and HAVE_EUIDACCESS.
14184         * modules/euidaccess (Files): Remove lib/euidaccess.h.
14185         (Depends-on): Add unistd.
14186         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14187         (Include): Specify <unistd.h> instead of euidaccess.h.
14188         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
14189         HAVE_EUIDACCESS.
14190         * NEWS: Mention the change.
14191
14192 2008-10-18  Bruno Haible  <bruno@clisp.org>
14193
14194         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
14195
14196         Move the getdomainname() declaration to <unistd.h>.
14197         * lib/getdomainname.h: Remove file.
14198         * lib/unistd.in.h (getdomainname): New declaration.
14199         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
14200         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
14201         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
14202         HAVE_GETDOMAINNAME.
14203         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14204         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
14205         * modules/getdomainname (Files): Remove lib/getdomainname.h.
14206         (Depends-on): Add unistd, extensions.
14207         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14208         (Includes): Specify <unistd.h> instead of getdomainname.h.
14209         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
14210         HAVE_GETDOMAINNAME.
14211         * NEWS: Mention the change.
14212
14213 2008-10-18  Bruno Haible  <bruno@clisp.org>
14214
14215         * modules/dirent: New file.
14216         * m4/dirent_h.m4: New file.
14217         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
14218         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
14219         * modules/fchdir (Files): Remove lib/dirent.in.h.
14220         (Depends-on): Add dirent.
14221         (Makefile.am): Move rules to modules/dirent.
14222         * doc/posix-headers/dirent.texi: Mention the new module.
14223
14224 2008-10-18  Bruno Haible  <bruno@clisp.org>
14225
14226         Avoid -Wunused-parameter warnings in public gnulib header files.
14227         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
14228         macro.
14229         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
14230
14231 2008-10-18  Bruno Haible  <bruno@clisp.org>
14232
14233         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
14234         * doc/glibc-functions/error.texi: Mention the module 'error'.
14235         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
14236         * doc/glibc-functions/getdomainname.texi: Mention the module
14237         'getdomainname'.
14238         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
14239         * doc/glibc-functions/getpagesize.texi: Mention the module
14240         'getpagesize'.
14241         * doc/glibc-functions/getusershell.texi: Mention the module
14242         'getusershell'.
14243         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
14244         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
14245         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
14246         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
14247         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
14248         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
14249         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
14250         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
14251         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
14252         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
14253         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
14254         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
14255         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
14256         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
14257
14258 2008-10-17  Bruno Haible  <bruno@clisp.org>
14259
14260         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
14261         HP-UX and IRIX, use -0.0L.
14262         * tests/test-ceill.c (minus_zero): Likewise.
14263         * tests/test-floorl.c (minus_zero): Likewise.
14264         * tests/test-frexpl.c (minus_zero): Likewise.
14265         * tests/test-isnan.c (minus_zerol): Likewise.
14266         * tests/test-isnanl.h (minus_zero): Likewise.
14267         * tests/test-ldexpl.c (minus_zero): Likewise.
14268         * tests/test-roundl.c (minus_zero): Likewise.
14269         * tests/test-signbit.c (minus_zerol): Likewise.
14270         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
14271         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
14272         * tests/test-truncl.c (minus_zero): Likewise.
14273         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
14274         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
14275         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
14276         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
14277
14278 2008-10-17  Bruno Haible  <bruno@clisp.org>
14279
14280         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
14281         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
14282         that it gets activated only for gcc >= 3.0.
14283         * lib/dirent.in.h: Likewise.
14284         * lib/errno.in.h: Likewise.
14285         * lib/fcntl.in.h: Likewise.
14286         * lib/float.in.h: Likewise.
14287         * lib/iconv.in.h: Likewise.
14288         * lib/inttypes.in.h: Likewise.
14289         * lib/locale.in.h: Likewise.
14290         * lib/math.in.h: Likewise.
14291         * lib/netdb.in.h: Likewise.
14292         * lib/netinet_in.in.h: Likewise.
14293         * lib/search.in.h: Likewise.
14294         * lib/signal.in.h: Likewise.
14295         * lib/spawn.in.h: Likewise.
14296         * lib/stdarg.in.h: Likewise.
14297         * lib/stdint.in.h: Likewise.
14298         * lib/stdio.in.h: Likewise.
14299         * lib/stdlib.in.h: Likewise.
14300         * lib/string.in.h: Likewise.
14301         * lib/strings.in.h: Likewise.
14302         * lib/sys_file.in.h: Likewise.
14303         * lib/sys_ioctl.in.h: Likewise.
14304         * lib/sys_select.in.h: Likewise.
14305         * lib/sys_socket.in.h: Likewise.
14306         * lib/sys_stat.in.h: Likewise.
14307         * lib/sys_time.in.h: Likewise.
14308         * lib/sysexits.in.h: Likewise.
14309         * lib/time.in.h: Likewise.
14310         * lib/unistd.in.h: Likewise.
14311         * lib/wchar.in.h: Likewise.
14312         * lib/wctype.in.h: Likewise.
14313         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14314
14315 2008-10-17  Jim Meyering  <meyering@redhat.com>
14316
14317         ignore-value: don't depend on inline module
14318         * modules/ignore-value (Depends-on): Remove 'inline'.
14319         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
14320         Suggestion from Bruno Haible.
14321
14322 2008-10-17  Bruno Haible  <bruno@clisp.org>
14323
14324         New implementation of condition variables for Win32.
14325         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
14326         (gl_linked_waitqueue_t): New type.
14327         (gl_cond_t): Use it.
14328         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
14329         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
14330         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
14331         (glthread_cond_init_func, glthread_cond_wait_func,
14332         glthread_cond_timedwait_func, glthread_cond_signal_func,
14333         glthread_cond_broadcast_func, glthread_cond_destroy_func):
14334         Reimplemented on the basis of gl_linked_waitqueue_t.
14335         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
14336         gl_waitqueue_t.
14337         (gl_rwlock_t): Update.
14338         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
14339
14340 2008-10-17  Simon Josefsson  <simon@josefsson.org>
14341
14342         * modules/recvfrom (Depends-on): Add dependency on getpeername.
14343         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14344
14345 2008-10-17  Jim Meyering  <meyering@redhat.com>
14346
14347         ignore-value: new module
14348         * modules/ignore-value: New file.
14349         * lib/ignore-value.h: New file.
14350         * MODULES.html.sh (Compiler warning management): New section,
14351         just for this module.  More to come.
14352
14353 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
14354
14355         open-safer.c: avoid 'signed and unsigned in conditional...' warning
14356         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
14357         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
14358
14359 2008-10-16  Jim Meyering  <meyering@redhat.com>
14360
14361         openat-die.c: avoid 'no previous prototype' warning
14362         * lib/openat-die.c: Include "openat.h".
14363         Reported by Reuben Thomas <rrt@sc3d.org>.
14364
14365 2008-10-16  Simon Josefsson  <simon@josefsson.org>
14366
14367         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
14368         * lib/netdb.in.h: Fix typo.
14369         Reported by Bruno Haible  <bruno@clisp.org>
14370
14371         * lib/netdb.in.h: Include sys/socket.h for platforms without
14372         netdb.h, to get structures like hostent on MinGW.
14373         * modules/netdb (Depends-on): Add sys_socket.
14374
14375 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14376
14377         * modules/netdb, modules/netdb-tests: New file.
14378         * m4/netdb_h.m4: New file.
14379         * lib/netdb.in.h: Add, currently just an empty file pending
14380         definitions.
14381         * tests/test-netdb.c: New file.
14382         * doc/posix-headers/netdb.texi: Mention that we replace it if
14383         needed.
14384         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14385         netdb.
14386
14387 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14388
14389         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
14390         with code.
14391
14392 2008-10-13  Bruno Haible  <bruno@clisp.org>
14393
14394         * lib/glthread/cond.c (glthread_cond_wait_func,
14395         glthread_cond_timedwait_func): Add a comment.
14396
14397 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14398
14399         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
14400         * tests/test-select.c: Likewise,
14401
14402 2008-10-13  Bruno Haible  <bruno@clisp.org>
14403
14404         * lib/glthread/cond.c (glthread_cond_wait_func,
14405         glthread_cond_timedwait_func): Fix variable name.
14406         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14407
14408 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
14409
14410         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
14411         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
14412         struct sockaddr.sa_len.
14413         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
14414
14415 2008-10-13  Simon Josefsson  <simon@josefsson.org>
14416
14417         * build-aux/pmccabe2html: Add css and css_url parameters.
14418
14419 2008-10-12  Bruno Haible  <bruno@clisp.org>
14420
14421         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
14422         calling aclx_get.
14423         Reported by Rainer Tammer <tammer@tammer.net>.
14424
14425 2008-10-12  Bruno Haible  <bruno@clisp.org>
14426
14427         Use msvcrt aware primitives for creation/termination of Win32 threads.
14428         * lib/glthread/thread.c: Include <process.h>.
14429         (glthread_create_func): Use _beginthreadex instead of CreateThread.
14430         (wrapper_func): Update signature.
14431         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
14432
14433 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14434             Bruno Haible  <bruno@clisp.org>
14435
14436         Provide a Win32 implementation of the 'cond' module.
14437         * lib/glthread/cond.h [USE_WIN32]: New implementation.
14438         * lib/glthread/cond.c (glthread_cond_init_func,
14439         glthread_cond_wait_func, glthread_cond_timedwait_func,
14440         glthread_cond_signal_func, glthread_cond_broadcast_func,
14441         glthread_cond_destroy_func) [USE_WIN32]: New functions.
14442         * modules/cond (Dependencies): Add gettimeofday.
14443
14444 2008-10-11  Bruno Haible  <bruno@clisp.org>
14445
14446         Make sleep work on older versions of mingw.
14447         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
14448         only whether it exists.
14449         * doc/posix-functions/sleep.texi: Mention the problem with older
14450         versions of mingw.
14451
14452 2008-10-11  Bruno Haible  <bruno@clisp.org>
14453
14454         New module 'shutdown'.
14455         * modules/shutdown: New file.
14456         * lib/sys_socket.in.h (shutdown): New declaration.
14457         * lib/winsock.c (shutdown): New function.
14458         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
14459         GNULIB_SHUTDOWN.
14460         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
14461         * doc/posix-functions/shutdown.texi: Document the new module.
14462
14463 2008-10-11  Jim Meyering  <meyering@redhat.com>
14464
14465         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
14466
14467 2008-10-11  Bruno Haible  <bruno@clisp.org>
14468
14469         New module 'fclose'.
14470         * modules/fclose: New file.
14471         * lib/stdio.in.h (fclose): New declaration.
14472         * lib/fclose.c: New file.
14473         * m4/fclose.m4: New file.
14474         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
14475         REPLACE_FCLOSE.
14476         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
14477         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
14478         REPLACE_FCLOSE.
14479         * modules/close (Depends-on): fclose.
14480         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
14481
14482 2008-10-11  Bruno Haible  <bruno@clisp.org>
14483
14484         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
14485         set errno and don't call _close.
14486
14487 2008-10-10  Bruno Haible  <bruno@clisp.org>
14488
14489         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
14490         ACL, not afterwards. Fixes test failure on Cygwin.
14491
14492 2008-10-09  Ben Pfaff  <blp@gnu.org>
14493
14494         * build-aux/announce-gen: Fix gnulib version related part of usage
14495         message.  Die with a useful error message if no tarballs are
14496         found.
14497
14498 2008-10-10  Jim Meyering  <meyering@redhat.com>
14499
14500         bootstrap: use git's --depth=N option only if it's supported
14501         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
14502         recognize the --depth option.  Reported by Pádraig Brady.
14503
14504 2008-10-09  Bruno Haible  <bruno@clisp.org>
14505
14506         New module 'ioctl'.
14507         * modules/ioctl: New file.
14508         * lib/sys_socket.in.h (ioctl): Remove declaration.
14509         * lib/winsock.c: Include <sys/ioctl.h>.
14510         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
14511         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
14512         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
14513         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
14514         * doc/posix-functions/ioctl.texi: Mention the new module.
14515
14516 2008-10-09  Bruno Haible  <bruno@clisp.org>
14517
14518         New module 'sys_ioctl'.
14519         * lib/sys_ioctl.in.h: New file.
14520         * m4/sys_ioctl_h.m4: New file.
14521         * modules/sys_ioctl: New file.
14522         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
14523
14524 2008-10-09  Bruno Haible  <bruno@clisp.org>
14525
14526         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
14527         * lib/winsock.c: Include <stdarg.h>.
14528         (rpl_ioctl): Change to second argument 'int' and then varargs.
14529
14530 2008-10-09  Bruno Haible  <bruno@clisp.org>
14531
14532         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
14533         when the sys_socket module is present and the system has <winsock2.h>.
14534
14535 2008-10-09  Bruno Haible  <bruno@clisp.org>
14536
14537         * doc/posix-functions/close.texi: Mention module 'close' instead of
14538         module 'sys_socket'.
14539
14540 2008-10-09  Bruno Haible  <bruno@clisp.org>
14541
14542         * doc/glibc-headers/sys_ioctl.texi: New file.
14543         * doc/gnulib.texi: Include it.
14544
14545 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14546             Bruno Haible  <bruno@clisp.org>
14547
14548         Combine the two replacements of 'close'.
14549         * lib/sys_socket.in.h (close): Define to a reminder to include
14550         <unistd.h>.
14551         (_gl_close_fd_maybe_socket): New declaration.
14552         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
14553         * lib/winsock.c (close): Remove undefinition.
14554         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
14555         needed for the gnulib module 'close'.
14556         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
14557         define to an error symbol or to a warning, if suitable.
14558         * lib/close.c: Include <sys/socket.h>.
14559         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
14560         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
14561         UNISTD_H_HAVE_WINSOCK2_H.
14562         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
14563         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14564         UNISTD_H_HAVE_WINSOCK2_H.
14565         * modules/sys_socket (Files): Add m4/unistd_h.m4.
14566         (configure.ac): Set a module indicator.
14567         (Makefile.am): Substitute GNULIB_CLOSE.
14568         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
14569         * modules/poll-tests (Depends-on): Add close.
14570         * modules/select-tests (Depends-on): Likewise.
14571
14572 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14573             Bruno Haible  <bruno@clisp.org>
14574
14575         New module 'close'.
14576         * modules/close: New file.
14577         * lib/unistd.in.h (close): Move declaration out of the
14578         FCHDIR_REPLACEMENT scope.
14579         (_gl_unregister_fd): New declaration.
14580         * lib/close.c: New file.
14581         * lib/fchdir.c (rpl_close): Remove function.
14582         * m4/close.m4: New file.
14583         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14584         close.
14585         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
14586         REPLACE_CLOSE.
14587         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
14588         REPLACE_CLOSE.
14589         * modules/fchdir (Depends-on): Add close.
14590
14591 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14592             Bruno Haible  <bruno@clisp.org>
14593
14594         * lib/fcntl.in.h (open): Simplify conditionals.
14595         (_gl_register_fd): New declaration.
14596         * lib/fchdir.c (rpl_open): Remove function.
14597         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
14598         also.
14599         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
14600         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14601         open.
14602
14603 2008-10-09  Jim Meyering  <meyering@redhat.com>
14604
14605         GNUmakefile: use the more name-space-friendly "_version"
14606         * top/GNUmakefile (_dummy): Update.
14607         (_version): Rename from "version".
14608
14609 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14610             Bruno Haible  <bruno@clisp.org>
14611
14612         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
14613         rpl_close.
14614         (_gl_register_fd): New function, extracted from rpl_open.
14615         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
14616         (rpl_open, rpl_opendir): Use _gl_register_fd.
14617
14618 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14619
14620         Fix organization of 'open' replacement.
14621         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
14622         (gl_FUNC_OPEN): Use it.
14623         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
14624
14625 2008-10-08  Bruno Haible  <bruno@clisp.org>
14626
14627         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
14628
14629 2008-10-08  Simon Josefsson  <simon@josefsson.org>
14630
14631         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
14632         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
14633         listen).
14634
14635 2008-10-08  Eric Blake  <ebb9@byu.net>
14636
14637         GNUmakefile: add 'make version' target
14638         * top/GNUmakefile (_curr-ver): Split version update rules...
14639         (version): ...into a target.
14640
14641 2008-10-07  Bruno Haible  <bruno@clisp.org>
14642
14643         Use a more portable replacement expression for -0.0L.
14644         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
14645         instead of -0.0L. Fix m4 quotation.
14646
14647         * tests/test-signbit.c: Include <float.h>.
14648         (minus_zero): New variable.
14649         (test_signbitl): Use minus_zero instead of -zero.
14650         * modules/signbit-tests (Depends-on): Add float.
14651
14652         * tests/test-ceill.c: Include <float.h>.
14653         (zero): Remove variable.
14654         (minus_zero): New variable.
14655         (main): Use minus_zero instead of -zero.
14656         * modules/ceill-tests (Depends-on): Add float.
14657
14658         * tests/test-floorl.c: Include <float.h>.
14659         (zero): Remove variable.
14660         (minus_zero): New variable.
14661         (main): Use minus_zero instead of -zero.
14662         * modules/floorl-tests (Depends-on): Add float.
14663
14664         * tests/test-roundl.c: Include <float.h>.
14665         (zero): Remove variable.
14666         (minus_zero): New variable.
14667         (main): Use minus_zero instead of -zero.
14668         * modules/roundl-tests (Depends-on): Add float.
14669
14670         * tests/test-truncl.c: Include <float.h>.
14671         (zero): Remove variable.
14672         (minus_zero): New variable.
14673         (main): Use minus_zero instead of -zero.
14674         * modules/truncl-tests (Depends-on): Add float.
14675
14676         * tests/test-frexpl.c (zero): Remove variable.
14677         (minus_zero): New variable.
14678         (main): Use minus_zero instead of -zero.
14679         * modules/frexpl-tests (Depends-on): Add float.
14680
14681         * tests/test-isnan.c (zerol): Remove variable.
14682         (minus_zerol): New variable.
14683         (test_long_double): Use minus_zerol instead of -zerol.
14684         * modules/isnan-tests (Depends-on): Add float.
14685
14686         * tests/test-isnanl.h (zero): Remove variable.
14687         (minus_zero): New variable.
14688         (main): Use minus_zero instead of -zero.
14689         * modules/isnanl-nolibm-tests (Depends-on): Add float.
14690         * modules/isnanl-tests (Depends-on): Add float.
14691
14692         * tests/test-ldexpl.c (zero): Remove variable.
14693         (minus_zero): New variable.
14694         (main): Use minus_zero instead of -zero.
14695         * modules/ldexpl-tests (Depends-on): Add float.
14696
14697         * tests/test-snprintf-posix.h (zerol): Remove variable.
14698         (minus_zerol): New variable.
14699         (test_function): Use minus_zerol instead of -zerol.
14700         * modules/snprintf-posix-tests (Depends-on): Add float.
14701         * modules/vsnprintf-posix-tests (Depends-on): Add float.
14702
14703         * tests/test-sprintf-posix.h (zerol): Remove variable.
14704         (minus_zerol): New variable.
14705         (test_function): Use minus_zerol instead of -zerol.
14706         * modules/sprintf-posix-tests (Depends-on): Add float.
14707         * modules/vsprintf-posix-tests (Depends-on): Add float.
14708
14709         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
14710         (minus_zerol): New variable.
14711         (test_function): Use minus_zerol instead of -zerol.
14712         * modules/vasnprintf-posix-tests (Depends-on): Add float.
14713
14714         * tests/test-vasprintf-posix.c (zerol): Remove variable.
14715         (minus_zerol): New variable.
14716         (test_function): Use minus_zerol instead of -zerol.
14717         * modules/vasprintf-posix-tests (Depends-on): Add float.
14718
14719 2008-10-07  Simon Josefsson  <simon@josefsson.org>
14720
14721         * MODULES.html.sh (Support for building documentation): Mention
14722         pmccabe2html.  Sort entries.
14723
14724         Add pmccabe2html module, from gnupdf.
14725         * build-aux/pmccabe.css: New file.
14726         * build-aux/pmccabe2html: New file.
14727         * m4/pmccabe2html.m4: New file.
14728         * modules/pmccabe2html: New file.
14729
14730 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
14731
14732         flock: new module
14733         * MODULES.html.sh: Add to list of modules.
14734         * lib/flock.c: flock implementation for Windows and Unix systems
14735         which have fcntl.
14736         * doc/glibc-functions/flock.texi: Update documentation.
14737         * lib/sys_file.in.h: <sys/file.h> header file.
14738         * m4/flock.m4: M4 macros.
14739         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
14740         * modules/flock: flock module.
14741         * modules/flock-tests: flock tests module.
14742         * modules/sys_file: sys/file.h module.
14743         * tests/test-flock.c: test suite for flock.
14744
14745 2008-10-06  Jim Meyering  <meyering@redhat.com>
14746
14747         bootstrap: check for LT_INIT more portably still ;-)
14748         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
14749         Spotted by Bruno Haible.
14750
14751 2008-10-06  Eric Blake  <ebb9@byu.net>
14752
14753         test-signbit: avoid tripping Irix cc bug on -0.0L
14754         * tests/test-signbit.c (minus_zerol): Delete, and replace with
14755         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
14756         entire testsuite consistent and avoids an Irix 6.2 bug.
14757
14758 2008-10-05  Bruno Haible  <bruno@clisp.org>
14759             Jim Meyering  <jim@meyering.net>
14760
14761         Add an option for ignoring EPIPE during close_stdout.
14762         * lib/closeout.h: Include <stdbool.h>.
14763         (close_stdout_set_ignore_EPIPE): New declaration.
14764         * lib/closeout.c: Include <stdbool.h>.
14765         (ignore_EPIPE): New variable.
14766         (close_stdout_set_ignore_EPIPE): New function.
14767         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
14768         * lib/close-stream.c (close_stream): Mention the possible EPIPE
14769         failure.
14770         * modules/closeout (Depends-on): Add stdbool.
14771
14772 2008-10-05  Bruno Haible  <bruno@clisp.org>
14773
14774         * modules/accept: New file.
14775         * modules/bind: New file.
14776         * modules/connect: New file.
14777         * modules/getpeername: New file.
14778         * modules/getsockname: New file.
14779         * modules/getsockopt: New file.
14780         * modules/listen: New file.
14781         * modules/recv: New file.
14782         * modules/recvfrom: New file.
14783         * modules/send: New file.
14784         * modules/sendto: New file.
14785         * modules/setsockopt: New file.
14786         * modules/socket: New file.
14787         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
14788         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
14789         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
14790         the particular module is requested. Add a link warning when the
14791         particular module is not requested.
14792         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
14793         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
14794         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
14795         the particular module is requested.
14796         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
14797         gl_SYS_SOCKET_H_DEFAULTS): New macros.
14798         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
14799         * modules/sys_socket (Depends-on): Add link-warning.
14800         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
14801         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
14802         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
14803         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
14804         GL_LINK_WARNING.
14805         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
14806         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
14807         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
14808         * doc/posix-functions/getpeername.texi: Mention the new module
14809         'getpeername'.
14810         * doc/posix-functions/getsockname.texi: Mention the new module
14811         'getsockname'.
14812         * doc/posix-functions/getsockopt.texi: Mention the new module
14813         'getsockopt'.
14814         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
14815         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
14816         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
14817         * doc/posix-functions/send.texi: Mention the new module 'send'.
14818         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
14819         * doc/posix-functions/setsockopt.texi: Mention the new module
14820         'setsockopt'.
14821         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
14822         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
14823         listen, connect, accept.
14824         * modules/select-tests (Depends-on): Likewise.
14825
14826 2008-10-05  Bruno Haible  <bruno@clisp.org>
14827
14828         * lib/winsock.c (strerror): Remove unused #undef.
14829         (rpl_close): Remove unused local variable.
14830
14831         * modules/sys_socket (Depends-on); Add errno.
14832
14833 2008-10-05  Bruno Haible  <bruno@clisp.org>
14834
14835         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
14836         (select): Add a link warning when the 'select' module is not used.
14837         * modules/sys_select (Depends-on): Add link-warning.
14838         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
14839         Suggested by Paolo Bonzini.
14840
14841 2008-10-05  Jim Meyering  <meyering@redhat.com>
14842
14843         bootstrap: check for LT_INIT more portably
14844         * build-aux/bootstrap: Avoid using grep -E, since it's not
14845         portable enough.  Suggestion from Bruno Haible.
14846
14847 2008-10-05  Bruno Haible  <bruno@clisp.org>
14848
14849         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
14850         as being fixed by gnulib.
14851
14852 2008-10-05  Bruno Haible  <bruno@clisp.org>
14853
14854         * modules/select-tests: New file, mostly copied from
14855         modules/sys_select-tests.
14856         * tests/test-select.c: New file, mostly copied from
14857         tests/test-sys_select.c.
14858         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
14859         * modules/sys_select-tests (Depends-on): Remove all dependencies.
14860         (Makefile.am): Remove test_sys_select_LDADD.
14861
14862         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
14863         to an undefined symbol, for an error message.
14864         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
14865         (gl_SYS_SELECT_H_DEFAULTS): New macro.
14866         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
14867         winsock-select.c here.
14868         * modules/sys_select (Files): Remove lib/winsock-select.c.
14869         (Depends-on): Remove alloca.
14870         (Makefile.am): Substitute GNULIB_SELECT.
14871         * modules/select: New file.
14872         * doc/posix-functions/select.texi: Update.
14873
14874 2008-10-05  Bruno Haible  <bruno@clisp.org>
14875
14876         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
14877         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
14878         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
14879         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
14880         getdtablesize.
14881         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
14882         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
14883
14884 2008-10-05  Bruno Haible  <bruno@clisp.org>
14885
14886         * modules/getdtablesize-tests: New file.
14887         * tests/test-getdtablesize.c: New file.
14888
14889         New module 'getdtablesize'.
14890         * lib/unistd.in.h (getdtablesize): New declaration.
14891         * lib/getdtablesize.c: New file.
14892         * m4/getdtablesize.m4: New file.
14893         * modules/getdtablesize: New file.
14894         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14895         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
14896         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
14897         HAVE_GETDTABLESIZE.
14898         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
14899
14900 2008-10-05  Bruno Haible  <bruno@clisp.org>
14901
14902         * modules/sched (Makefile.am): Fix typo.
14903         Reported by Simon Josefsson.
14904
14905 2008-10-05  Jim Meyering  <meyering@redhat.com>
14906
14907         bootstrap: check for LT_INIT, too
14908         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
14909         are deprecated.  Suggestion from Ralf Wildenhues.
14910
14911 2008-10-05  Bruno Haible  <bruno@clisp.org>
14912
14913         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
14914         overriding them by ours.
14915         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
14916
14917 2008-10-05  Jim Meyering  <meyering@redhat.com>
14918
14919         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
14920         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
14921         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
14922
14923 2008-10-04  Bruno Haible  <bruno@clisp.org>
14924
14925         * modules/dup2 (License): Change to LGPLv2+.
14926         * modules/sleep (License): Likewise.
14927         * modules/perror (License): Likewise.
14928         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
14929         Blake.
14930         * modules/signal (License): Likewise.
14931         * modules/sigprocmask (License): Likewise.
14932         * modules/raise (License): Change to LGPLv2+, with approval by Jim
14933         Meyering.
14934
14935 2008-10-04  Bruno Haible  <bruno@clisp.org>
14936
14937         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
14938         Reported by Rainer Tammer <tammer@tammer.net>.
14939
14940 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
14941             Bruno Haible  <bruno@clisp.org>
14942
14943         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
14944         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
14945         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
14946
14947 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
14948
14949         filevercmp: new module
14950         * lib/filevercmp.h: New function filevercmp comparing version strings.
14951         * lib/filevercmp.c: Implementation of filevercmp function.
14952         * modules/filevercmp: Module metadata.
14953         * tests/test-filevercmp.c: Unit test for new module.
14954         * modules/filevercmp-tests: Unit test metadata.
14955         * MODULES.html.sh: Add filevercmp module.
14956
14957 2008-10-03  Bruno Haible  <bruno@clisp.org>
14958
14959         * lib/c-ctype.h: Add comment.
14960         Reported by Jim Meyering.
14961
14962 2008-10-02  Bruno Haible  <bruno@clisp.org>
14963
14964         * modules/posix_spawn-internal (Depends-on): Add 'open'.
14965
14966 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14967
14968         * build-aux/bootstrap: Allow renaming bootstrap, and change the
14969         name of bootstrap.conf accordingly.
14970
14971 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14972
14973         * build-aux/bootstrap: Install git-merge-changelog configuration
14974         items into .gitconfig if needed.
14975
14976 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14977
14978         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
14979         git repository, and initialize/update it accordingly.
14980
14981 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
14982
14983         * modules/fsync-tests: New file.
14984         * tests/test-fsync.c: New file.
14985
14986         New module 'fsync'.
14987         * lib/fsync.c: New file.
14988         * m4/fsync.m4: New file.
14989         * modules/fsync: New file.
14990         * lib/unistd.in.h (fsync): New declaration.
14991         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
14992         GNULIB_FSYNC and HAVE_FSYNC.
14993         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
14994         * MODULES.html.sh (posix_functions): Add fsync.
14995         * doc/posix-functions/fsync.texi: Mention the new module.
14996
14997 2008-10-02  Jim Meyering  <meyering@redhat.com>
14998
14999         fts.c: sync with similar code from coreutils' remove.c
15000         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
15001         Guard also with "#if defined __linux__", since for now at least,
15002         this code is Linux-kernel-specific.
15003
15004 2008-10-02  Jim Meyering  <meyering@redhat.com>
15005
15006         fts: bug fixes
15007         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
15008         Include <sys/vfs.h>, not <sys/statfs.h>.
15009
15010         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
15011         Include <sys/vfs.h>, not <sys/statfs.h>.
15012
15013 2008-10-01  Bruno Haible  <bruno@clisp.org>
15014
15015         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
15016         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
15017         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
15018         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
15019         * doc/posix-functions/posix_spawnp.texi: Likewise.
15020         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
15021         whether posix_spawn actually works.
15022         * m4/pipe.m4 (gl_PIPE): Likewise.
15023         * modules/execute (Files): Add m4/posix_spawn.m4.
15024         * modules/pipe (Files): Add m4/posix_spawn.m4.
15025         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
15026
15027 2008-10-01  Jim Meyering  <meyering@redhat.com>
15028
15029         remove trailing spaces
15030         * NEWS: Likewise.
15031         * lib/poll.c (poll): Likewise.
15032         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
15033         * lib/winsock.c (rpl_close): Likewise.
15034         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
15035         * modules/yield: Likewise.
15036         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
15037         * tests/test-sys_select.c (connect_to_socket): Likewise.
15038
15039         fts.c: adjust a new interface to be more generally useful
15040         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
15041         (fts_build): Adjust caller.
15042
15043 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15044
15045         * modules/cond-tests: New file.
15046         * tests/test-cond.c: New file.
15047
15048 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15049             Bruno Haible  <bruno@clisp.org>
15050
15051         * modules/cond (Dependencies): Add errno, time.
15052         * lib/glthread/cond.h: Include <time.h>.
15053         (gl_cond_define, gl_cond_define_initialized): Use the same definition
15054         across platforms.
15055
15056 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15057             Bruno Haible  <bruno@clisp.org>
15058
15059         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
15060
15061 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15062             Bruno Haible  <bruno@clisp.org>
15063
15064         * modules/tls-tests (Depends-on): Add thread, yield.
15065         (configure.ac): Remove all checks.
15066         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
15067         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
15068         gl_thread_self): Remove definitions. Include glthread/thread.h and
15069         glthread/yield.h instead.
15070         (test_tls): Pass an additional NULL argument to gl_thread_join.
15071
15072 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15073             Bruno Haible  <bruno@clisp.org>
15074
15075         * modules/lock-tests (Depends-on): Add thread, yield.
15076         (configure.ac): Remove all checks.
15077         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
15078         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
15079         gl_thread_self): Remove definitions. Include glthread/thread.h and
15080         glthread/yield.h instead.
15081         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
15082         additional NULL argument to gl_thread_join.
15083
15084 2008-09-30  Bruno Haible  <bruno@clisp.org>
15085
15086         Fix the Win32 implementation of the 'thread' module.
15087         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
15088         pointer type.
15089         (gl_thread_self): Invoke gl_thread_self_func.
15090         (gl_thread_self_func): New declaration.
15091         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
15092         (do_init_self_key, init_self_key): New functions.
15093         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
15094         Remove some fields.
15095         (running_threads, running_lock): Remove variables.
15096         (get_current_thread_handle): New function.
15097         (gl_thread_self_func, wrapper_func, glthread_create_func,
15098         glthread_join_func, gl_thread_exit_func): Largely rewritten and
15099         simplified.
15100
15101 2008-09-30  Bruno Haible  <bruno@clisp.org>
15102
15103         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
15104         files.
15105
15106 2008-09-30  Jim Meyering  <meyering@redhat.com>
15107
15108         fts.m4: correct the test for statfs.f_type
15109         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
15110         when checking for statfs.f_type.
15111
15112 2008-09-15  Simon Josefsson  <simon@josefsson.org>
15113
15114         tests: avoid some compiler warnings
15115         * tests/test-memchr.c (main): Pass NULL indirectly.
15116         * tests/test-getdate.c (main): Remove unused variable 'ret'.
15117
15118 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
15119
15120         getdate.y: disallow countable dayshifts like "4 yesterday ago"
15121         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
15122         exactly specified dayshifts.
15123         (dayshift): New rule.
15124         (rel): Add dayshift.
15125         (relative_time_table) [tomorrow, yesterday, today, now]:
15126         Use tDAY_SHIFT in place of tDAY_UNIT.
15127         * tests/test-getdate.c: Add tests for now-disallowed countable
15128         dayshifts, e.g., "4 yesterday ago".
15129
15130 2008-09-29  Bruno Haible  <bruno@clisp.org>
15131
15132         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
15133         * tests/test-posix_spawn1.in.sh: Renamed from
15134         tests/test-posix_spawn.in.sh.
15135         * tests/test-posix_spawn2.c: New file.
15136         * tests/test-posix_spawn2.in.sh: New file.
15137         * modules/posix_spawnp-tests (Files): Update.
15138         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
15139
15140 2008-09-29  Bruno Haible  <bruno@clisp.org>
15141
15142         Propagate effects of putenv/setenv/unsetenv to child processes.
15143         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
15144         * lib/pipe.c (create_pipe): Likewise.
15145
15146 2008-09-29  Bruno Haible  <bruno@clisp.org>
15147
15148         Enable use of shell scripts as executables in mingw.
15149         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
15150         run the program as a shell script.
15151         * lib/pipe.c (create_pipe): Likewise.
15152         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
15153         resulting array.
15154
15155 2008-09-29  Eric Blake  <ebb9@byu.net>
15156
15157         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
15158
15159 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
15160
15161         * doc/posix-functions/accept.texi: Update mingw problems.
15162         * doc/posix-functions/bind.texi: Update mingw problems.
15163         * doc/posix-functions/close.texi: Update mingw problems.
15164         * doc/posix-functions/connect.texi: Update mingw problems.
15165         * doc/posix-functions/getpeername.texi: Update mingw problems.
15166         * doc/posix-functions/getsockname.texi: Update mingw problems.
15167         * doc/posix-functions/getsockopt.texi: Update mingw problems.
15168         * doc/posix-functions/ioctl.texi: Update mingw problems.
15169         * doc/posix-functions/listen.texi: Update mingw problems.
15170         * doc/posix-functions/recv.texi: Update mingw problems.
15171         * doc/posix-functions/recvfrom.texi: Update mingw problems.
15172         * doc/posix-functions/select.texi: Update mingw problems.
15173         * doc/posix-functions/send.texi: Update mingw problems.
15174         * doc/posix-functions/sendto.texi: Update mingw problems.
15175         * doc/posix-functions/setsockopt.texi: Update mingw problems.
15176         * doc/posix-functions/socket.texi: Update mingw problems.
15177
15178 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
15179             Bruno Haible  <bruno@clisp.org>
15180
15181         * lib/sys_select.in.h: Include sys/time.h.
15182         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
15183         * modules/sys_select: Depend on sys_time.
15184         * tests/test-sys_select.c: Test that sys/select.h defines struct
15185         timeval fully.
15186
15187 2008-09-29  Bruno Haible  <bruno@clisp.org>
15188
15189         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
15190         * lib/sys_select.in.h: Likewise.
15191
15192 2008-09-29  Bruno Haible  <bruno@clisp.org>
15193
15194         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
15195
15196 2008-09-29  Bruno Haible  <bruno@clisp.org>
15197
15198         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
15199         Set LIBSOCKET instead of augmenting LIBS.
15200         * modules/sockets (Link): New section.
15201         * modules/sockets-tests (test_sockets_LDADD): New variable.
15202         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
15203         * modules/poll-tests (test_poll_LDADD): New variable.
15204         * NEWS: Document the change.
15205
15206 2008-09-29  Bruno Haible  <bruno@clisp.org>
15207
15208         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
15209         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
15210         ARPA_INET_H directly.
15211         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
15212
15213 2008-09-28  Bruno Haible  <bruno@clisp.org>
15214
15215         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
15216         from gl_HEADER_SYS_SOCKET.
15217         (gl_HEADER_SYS_SOCKET): Invoke it.
15218         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
15219
15220 2008-09-28  Bruno Haible  <bruno@clisp.org>
15221
15222         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
15223         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
15224         Needed on OSF/1 4.0.
15225
15226 2008-09-28  Bruno Haible  <bruno@clisp.org>
15227
15228         Override open more carefully.
15229         * lib/open.c (orig_open): New function.
15230         (rpl_open): Use orig_open instead of open.
15231         * lib/fcntl.in.h: Add special invocation convention.
15232         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
15233         (gl_FUNC_OPEN): Invoke it.
15234
15235         Override freopen more carefully.
15236         * lib/freopen.c (orig_freopen): New function.
15237         (rpl_freopen): Use orig_freopen instead of freopen.
15238         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
15239         (gl_FUNC_FREOPEN): Invoke it.
15240
15241         Override fopen more carefully.
15242         * lib/fopen.c (orig_fopen): New function.
15243         (rpl_fopen): Use orig_fopen instead of fopen.
15244         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
15245         (gl_FUNC_FOPEN): Invoke it.
15246         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
15247
15248 2008-09-28  Bruno Haible  <bruno@clisp.org>
15249
15250         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
15251         SIGPIPE.
15252
15253 2008-09-28  Bruno Haible  <bruno@clisp.org>
15254
15255         * tests/test-sigaction.c (handler, main): Disable the check whether
15256         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
15257         glibc systems with LinuxThreads.
15258
15259 2008-09-28  Bruno Haible  <bruno@clisp.org>
15260
15261         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
15262
15263         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
15264         with AIX xlc.
15265         * lib/fcntl.in.h (open): Likewise.
15266         Reported by Rainer Tammer <tammer@tammer.net>.
15267
15268 2008-09-28  Bruno Haible  <bruno@clisp.org>
15269
15270         * modules/posix_spawnp-tests: New file.
15271         * tests/test-posix_spawn.c: New file.
15272         * tests/test-posix_spawn.in.sh: New file.
15273
15274         New module 'posix_spawnp'.
15275         * modules/posix_spawnp: New file.
15276         * lib/spawnp.c: New file, from GNU libc with modifications.
15277         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
15278
15279         New module 'posix_spawn'.
15280         * modules/posix_spawn: New file.
15281         * lib/spawn.c: New file, from GNU libc with modifications.
15282         * doc/posix-functions/posix_spawn.texi: Mention the new module.
15283
15284         New module 'posix_spawnattr_destroy'.
15285         * modules/posix_spawnattr_destroy: New file.
15286         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
15287         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
15288         module.
15289
15290         New module 'posix_spawnattr_setsigmask'.
15291         * modules/posix_spawnattr_setsigmask: New file.
15292         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
15293         modifications.
15294         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
15295         new module.
15296
15297         New module 'posix_spawnattr_getsigmask'.
15298         * modules/posix_spawnattr_getsigmask: New file.
15299         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
15300         modifications.
15301         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
15302         new module.
15303
15304         New module 'posix_spawnattr_setsigdefault'.
15305         * modules/posix_spawnattr_setsigdefault: New file.
15306         * lib/spawnattr_setdefault.c: New file, from GNU libc with
15307         modifications.
15308         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
15309         new module.
15310
15311         New module 'posix_spawnattr_getsigdefault'.
15312         * modules/posix_spawnattr_getsigdefault: New file.
15313         * lib/spawnattr_getdefault.c: New file, from GNU libc with
15314         modifications.
15315         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
15316         new module.
15317
15318         New module 'posix_spawnattr_setschedpolicy'.
15319         * modules/posix_spawnattr_setschedpolicy: New file.
15320         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
15321         modifications.
15322         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
15323         new module.
15324
15325         New module 'posix_spawnattr_getschedpolicy'.
15326         * modules/posix_spawnattr_getschedpolicy: New file.
15327         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
15328         modifications.
15329         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
15330         new module.
15331
15332         New module 'posix_spawnattr_setschedparam'.
15333         * modules/posix_spawnattr_setschedparam: New file.
15334         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
15335         modifications.
15336         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
15337         new module.
15338
15339         New module 'posix_spawnattr_getschedparam'.
15340         * modules/posix_spawnattr_getschedparam: New file.
15341         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
15342         modifications.
15343         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
15344         new module.
15345
15346         New module 'posix_spawnattr_setpgroup'.
15347         * modules/posix_spawnattr_setpgroup: New file.
15348         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
15349         modifications.
15350         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
15351         module.
15352
15353         New module 'posix_spawnattr_getpgroup'.
15354         * modules/posix_spawnattr_getpgroup: New file.
15355         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
15356         modifications.
15357         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
15358         module.
15359
15360         New module 'posix_spawnattr_setflags'.
15361         * modules/posix_spawnattr_setflags: New file.
15362         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
15363         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
15364         module.
15365
15366         New module 'posix_spawnattr_getflags'.
15367         * modules/posix_spawnattr_getflags: New file.
15368         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
15369         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
15370         module.
15371
15372         New module 'posix_spawnattr_init'.
15373         * modules/posix_spawnattr_init: New file.
15374         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
15375         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
15376         module.
15377
15378         New module 'posix_spawn_file_actions_destroy'.
15379         * modules/posix_spawn_file_actions_destroy: New file.
15380         * lib/spawn_faction_destroy.c: New file, from GNU libc with
15381         modifications.
15382         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
15383         the new module.
15384
15385         New module 'posix_spawn_file_actions_addopen'.
15386         * modules/posix_spawn_file_actions_addopen: New file.
15387         * lib/spawn_faction_addopen.c: New file, from GNU libc with
15388         modifications.
15389         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
15390         the new module.
15391
15392         New module 'posix_spawn_file_actions_adddup2'.
15393         * modules/posix_spawn_file_actions_adddup2: New file.
15394         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
15395         modifications.
15396         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
15397         the new module.
15398
15399         New module 'posix_spawn_file_actions_addclose'.
15400         * modules/posix_spawn_file_actions_addclose: New file.
15401         * lib/spawn_faction_addclose.c: New file, from GNU libc with
15402         modifications.
15403         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
15404         the new module.
15405
15406         New module 'posix_spawn_file_actions_init'.
15407         * modules/posix_spawn_file_actions_init: New file.
15408         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
15409         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
15410         new module.
15411
15412         New module 'posix_spawn-internal'.
15413         * modules/posix_spawn-internal: New file.
15414         * lib/spawn_int.h: New file, from GNU libc with modifications.
15415         * lib/spawni.c: New file, from GNU libc with modifications.
15416         * m4/posix_spawn.m4: New file.
15417
15418         New module 'spawn'.
15419         * modules/spawn: New file.
15420         * lib/spawn.in.h: New file, from GNU libc with modifications.
15421         * m4/spawn_h.m4: New file.
15422         * doc/posix-headers/spawn.texi: Mention the new module.
15423
15424 2008-09-28  Bruno Haible  <bruno@clisp.org>
15425
15426         * modules/sched-tests: New file.
15427         * tests/test-sched.c: New file.
15428
15429         New module 'sched'.
15430         * modules/sched: New file.
15431         * lib/sched.in.h: New file.
15432         * m4/sched_h.m4: New file.
15433         * doc/posix-headers/sched.texi: Mention the new module.
15434
15435 2008-09-27  Eric Blake  <ebb9@byu.net>
15436
15437         Fix previous patch, and tweak references to $0.
15438         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
15439         (func_version, func_gnulib_dir): Don't call this program
15440         gnulib-tool.
15441         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
15442         with using $0 in function.
15443         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
15444         (func_fatal_error): Reuse the name the user invoked us with.
15445
15446 2008-09-27  Bruno Haible  <bruno@clisp.org>
15447
15448         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
15449         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
15450         (gl_ICONV_H): Not here.
15451         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
15452         instead of assigning ICONV_H directly.
15453
15454         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
15455         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
15456         WCHAR_H directly.
15457
15458 2008-09-27  Bruno Haible  <bruno@clisp.org>
15459
15460         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
15461         * modules/arpa_inet (Depends-on): Add link-warning.
15462         (Makefile.am): Insert the definition of GL_LINK-WARNING.
15463         * modules/unistd (Makefile.am): Likewise.
15464
15465 2008-09-26  Bruno Haible  <bruno@clisp.org>
15466
15467         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
15468         variables.
15469         (func_version): Essentially copied from gnulib-tool.
15470         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
15471         func_readlink): Copied from gnulib-tool.
15472
15473 2008-09-26  Bruno Haible  <bruno@clisp.org>
15474
15475         * gnulib-tool (func_version): Change directory to $gnulib_dir before
15476         invoking git-version-gen.
15477
15478 2008-09-26  Bruno Haible  <bruno@clisp.org>
15479
15480         * posix-modules: Update to directory names changed on 2008-01-19.
15481         Remove commas in output before splitting into words. No more need to
15482         avoid 'ftruncate' since 2007-02-19.
15483
15484 2008-09-26  Bruno Haible  <bruno@clisp.org>
15485
15486         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
15487
15488 2008-09-26  Bruno Haible  <bruno@clisp.org>
15489
15490         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
15491         * modules/fwriteerror (Depends-on): Add errno.
15492
15493 2008-09-26  Bruno Haible  <bruno@clisp.org>
15494
15495         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
15496         * tests/test-vc-list-files-cvs.sh: Likewise.
15497
15498 2008-09-26  Bruno Haible  <bruno@clisp.org>
15499
15500         * doc/posix-headers/sys_resource.texi: Reorder items.
15501
15502 2008-09-26  Jim Meyering  <meyering@redhat.com>
15503
15504         fts: tweak inode comparison function
15505         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
15506         inode numbers, as documented.
15507
15508         fts: sort dirent entries on inode number before traversing
15509         This avoids a quadratic, seek-related performance penalty when
15510         operating on a directory containing many entries (measurable at 10k;
15511         3.5 hours at 2 million entries with a cold cache) on certain types
15512         of file systems, including ext3 and ext4, but not tmpfs.
15513         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
15514         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
15515         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
15516         (fs_handles_readdir_ordered_dirents_efficiently): New function.
15517         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
15518         (fts_build): Set the stat.st_ino member from D_INO.
15519         If it is likely to be useful, sort dirent entries on inode number.
15520
15521         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
15522         and the struct statfs.f_type member.
15523         * modules/fts (Depends-on): Add d-ino.
15524
15525 2008-09-26  Bruno Haible  <bruno@clisp.org>
15526
15527         * modules/sigpipe-die (Depends-on): Add sigpipe.
15528
15529         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
15530         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
15531         and GNULIB_STDIO_H_SIGPIPE are set.
15532         * lib/stdio-write.c: New file.
15533         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
15534         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15535         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15536         REPLACE_STDIO_WRITE_FUNCS.
15537         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
15538         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15539         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15540         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15541         * modules/stdio (Files): Add lib/stdio-write.c.
15542         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
15543         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15544         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15545         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15546         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
15547         REPLACE_FPRINTF_POSIX.
15548         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
15549         REPLACE_PRINTF_POSIX.
15550         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
15551         REPLACE_VFPRINTF_POSIX.
15552         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
15553         REPLACE_VPRINTF_POSIX.
15554         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
15555         SIGPIPE issue.
15556         * doc/posix-functions/fputc.texi: Likewise.
15557         * doc/posix-functions/fputs.texi: Likewise.
15558         * doc/posix-functions/fwrite.texi: Likewise.
15559         * doc/posix-functions/printf.texi: Likewise.
15560         * doc/posix-functions/putc.texi: Likewise.
15561         * doc/posix-functions/putchar.texi: Likewise.
15562         * doc/posix-functions/puts.texi: Likewise.
15563         * doc/posix-functions/vfprintf.texi: Likewise.
15564         * doc/posix-functions/vprintf.texi: Likewise.
15565
15566         * modules/safe-write (Depends-on): Add write.
15567
15568         * modules/sigpipe-tests: New file.
15569         * tests/test-sigpipe.c: New file.
15570         * tests/test-sigpipe.sh: New file.
15571
15572         * modules/write: New file.
15573         * lib/unistd.in.h: Include <sys/types.h>.
15574         (write): New declaration.
15575         * lib/write.c: New file.
15576         * m4/write.m4: New file.
15577         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15578         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
15579         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
15580         GNULIB_WRITE, REPLACE_WRITE.
15581         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
15582         and the SIGPIPE issue.
15583
15584         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
15585         (raise): New declaration.
15586         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
15587         (ext_signal): New function.
15588         (rpl_raise): New function.
15589         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
15590         GNULIB_SIGNAL_H_SIGPIPE.
15591         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
15592         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
15593
15594         * modules/sigpipe: New file.
15595         * m4/sigpipe.m4: New file.
15596
15597 2008-09-25  Derek Price  <derek@ximbiot.com>
15598             Bruno Haible  <bruno@clisp.org>
15599
15600         * gnulib-tool (func_import): Report all license incompatibilities, not
15601         just the first one.
15602
15603 2008-09-25  Bruno Haible  <bruno@clisp.org>
15604
15605         * gnulib-tool (func_import): When computing the edits, consider not
15606         only the Makefile.ams that exist but also those that will be generated.
15607
15608 2008-09-25  Simon Josefsson  <simon@josefsson.org>
15609
15610         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
15611         fixes gnulib-tool --test warning about duplicate dependency.
15612
15613 2008-09-25  Bruno Haible  <bruno@clisp.org>
15614
15615         * gnulib-tool: Don't ask the user to perform edits in the generated
15616         Makefile.ams.
15617         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
15618         apply to the Makefile.am being generated.
15619         (func_emit_tests_Makefile_am): Execute edits that apply to the
15620         Makefile.am being generated.
15621         (func_import): Setup list of Makefile.am edits before emitting the
15622         Makefile.ams, not at the end.
15623         (func_create_testdir): Update.
15624         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15625
15626 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15627
15628         * gnulib-tool (func_import): Store the --tests-base option in the
15629         comment in gnulib-cache.m4.
15630
15631 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
15632
15633         * NEWS: Document increased portability that sys_select now provides.
15634
15635         * lib/sys_select.in.h: Install select wrapper.
15636         * lib/sys_socket.in.h: Use more descriptive name when there is no
15637         select wrapper.
15638         * lib/winsock-select.c: New.
15639         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
15640         Require gl_HEADER_SYS_SOCKET.
15641         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
15642         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
15643         * tests/test-sys_select.c: Add functional tests.
15644
15645 2008-09-24  Eric Blake  <ebb9@byu.net>
15646
15647         open, fopen: close fd leak in last patch
15648         * lib/open.c (rpl_open): Close fd before returning error.
15649         * lib/fopen.c (rpl_fopen): Close fd before returning error.
15650         * doc/posix-functions/open.texi (open): Document that Irix also
15651         has the bug.
15652         * doc/posix-functions/fopen.texi (fopen): Likewise.
15653         Reported by Paolo Bonzini.
15654
15655 2008-09-24  Bruno Haible  <bruno@clisp.org>
15656
15657         Ensure that a filename ending in a slash cannot be used to access a
15658         non-directory.
15659         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
15660         to check whether it's really a directory.
15661         * lib/fopen.c: Include fcntl.h, unistd.h.
15662         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
15663         and fdopen().
15664         * modules/fopen (Depends-on): Add unistd.
15665         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
15666         * tests/test-fopen.c (main): Likewise.
15667         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
15668         * doc/posix-functions/fopen.texi: Likewise.
15669         Reported by Eric Blake.
15670
15671 2008-09-23  Eric Blake  <ebb9@byu.net>
15672
15673         c-stack: avoid compiler optimizations when provoking overflow
15674         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
15675         recursion harder to optimize, to ensure a stack overflow occurs.
15676         * tests/test-c-stack.c (recurse): Likewise.
15677         Borrowed from libsigsegv.
15678
15679         c-stack: work around Irix sigaltstack bug
15680         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
15681         whether sigaltstack uses wrong end of stack_t (copied in part from
15682         libsigsegv).
15683         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
15684         Irix bug, without requiring an over-allocation.
15685         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
15686         bug.
15687
15688         fopen: document mingw bug on directories
15689         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
15690         not allowing a stream visiting a directory, even though reading
15691         from such a stream is not portable.
15692
15693 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15694
15695         * lib/poll.c: Rewrite.
15696         * modules/poll: Depend on alloca.
15697
15698 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15699
15700         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
15701         instead define prototypes for a full set of wrappers.  Ensure
15702         that Cygwin does not use the compatibility code, which is only
15703         for MinGW.
15704         * lib/winsock.c: New.
15705         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
15706         * modules/sys_socket: Add lib/winsock.c.
15707
15708         * modules/poll-tests: Add errno and perror.
15709         * tests/test-poll.c: Use ioctl, not ioctlsocket.
15710
15711 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15712
15713         * tests/test-poll.c: Downgrade minimum needed Winsock version.
15714
15715 2008-09-23  Bruno Haible  <bruno@clisp.org>
15716
15717         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
15718         * doc/glibc-functions/*: Likewise.
15719
15720 2008-09-23  Simon Josefsson  <simon@josefsson.org>
15721
15722         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
15723         success.
15724
15725 2008-09-22  Eric Blake  <ebb9@byu.net>
15726             Bruno Haible  <bruno@clisp.org>
15727
15728         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
15729         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
15730         supply %A but mishandle pseudo-NaN.
15731         Reported by Simon Josefsson.
15732
15733 2008-09-21  Bruno Haible  <bruno@clisp.org>
15734
15735         * tests/test-lock.c (main): Tweak skip message.
15736         * tests/test-tls.c (main): Likewise.
15737
15738 2008-09-21  Bruno Haible  <bruno@clisp.org>
15739
15740         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
15741         whether 'struct sigaction' has sa_sigaction here...
15742         (gl_PREREQ_SIG_HANDLER_H): ... not here.
15743         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
15744
15745 2008-09-21  Bruno Haible  <bruno@clisp.org>
15746
15747         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
15748         section.
15749         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
15750         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
15751         the new section.
15752         (Support for obsolete systems lacking POSIX:2001): New section.
15753         (String handling <string.h>): Move strdup to the new section.
15754         Suggested by Simon Josefsson and Paolo Bonzini.
15755
15756 2008-09-21  Bruno Haible  <bruno@clisp.org>
15757
15758         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
15759         exponents in %e and %g results on 'long double'. Needed for mingw's
15760         improved *printf functions.
15761         * tests/test-vasprintf-posix.c (test_function): Likewise.
15762         * tests/test-snprintf-posix.h (test_function): Likewise.
15763         * tests/test-sprintf-posix.h (test_function): Likewise.
15764         Reported by Eric Blake.
15765
15766 2008-09-21  Bruno Haible  <bruno@clisp.org>
15767
15768         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
15769         * tests/test-sprintf-posix.h (test_function): Likewise.
15770
15771 2008-09-21  Bruno Haible  <bruno@clisp.org>
15772
15773         * modules/getpass (Depends-on): Add strdup-posix.
15774
15775         New module 'strdup-posix'.
15776         * modules/strdup-posix: New file.
15777         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
15778         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
15779         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15780         REPLACE_STRDUP.
15781         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
15782         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
15783         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15784         strdup-posix.
15785
15786         * modules/strdup (Depends-on): Remove malloc-posix.
15787
15788 2008-09-20  Bruno Haible  <bruno@clisp.org>
15789
15790         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
15791         Wildenhues.
15792
15793 2008-09-20  Bruno Haible  <bruno@clisp.org>
15794
15795         Ensure that wint_t gets defined on IRIX 5.3.
15796         * lib/wchar.in.h (wint_t): Define if not defined by the system.
15797         * lib/wctype.in.h (wint_t): Likewise.
15798         (__wctype_wint_t): Remove type.
15799         (isw*): Use wint_t instead of __wctype_wint_t.
15800         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
15801         * modules/wchar (Files): Add m4/wint_t.m4.
15802         (Makefile.am): Substitute HAVE_WINT_T.
15803         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
15804         * tests/test-wctype.c: Check that wint_t is defined.
15805         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
15806         * doc/posix-headers/wctype.texi: Likewise.
15807         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15808
15809 2008-09-18  Bruno Haible  <bruno@clisp.org>
15810
15811         * gnulib-tool (func_exit): Update comment.
15812
15813 2008-09-18  Simon Josefsson  <simon@josefsson.org>
15814
15815         * modules/getaddrinfo (Depends-on): Remove strdup, this module
15816         assumes strdup exists and does not depend on strdup to return
15817         ENOMEM on out of memory conditions.
15818
15819 2008-09-18  Bruno Haible  <bruno@clisp.org>
15820
15821         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
15822         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
15823         digits for the exponent.
15824
15825 2008-09-18  Jim Meyering  <meyering@redhat.com>
15826             Bruno Haible  <bruno@clisp.org>
15827
15828         * lib/vasnprintf.c (decimal_point_char): Define also if
15829         NEED_PRINTF_INFINITE_LONG_DOUBLE.
15830
15831 2008-09-16  Bruno Haible  <bruno@clisp.org>
15832         and Eric Blake  <ebb9@byu.net>
15833
15834         vasnprintf: support Irix 5.3
15835         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
15836         that mishandle long double infinity.
15837         Reported by Tom G. Christensen.
15838
15839 2008-09-16  Bruno Haible  <bruno@clisp.org>
15840
15841         * doc/glibc-functions/scandir.texi: Mention the function is missing on
15842         Solaris 9.
15843         * doc/glibc-functions/alphasort.texi: Likewise.
15844         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
15845
15846 2008-09-16  Jim Meyering  <meyering@redhat.com>
15847
15848         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
15849         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
15850         a umask modification leak out of a subshell.  Otherwise, the
15851         opensolaris /bin/sh would be accepted and thus cause unwarranted
15852         failures in the coreutils test suite.
15853
15854 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
15855
15856         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
15857         to succeed.
15858
15859 2008-09-16  Jim Meyering  <meyering@redhat.com>
15860
15861         avoid spurious test failure when library is built without ACL support
15862         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
15863         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
15864         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
15865         * tests/test-copy-acl.sh: Likewise.
15866
15867 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15868
15869         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
15870         based on character occurrence counts.
15871
15872 2008-09-15  Eric Blake  <ebb9@byu.net>
15873
15874         tests: avoid some compiler warnings
15875         * tests/test-memchr.c (main): Pass NULL indirectly.
15876         * tests/test-closein.c (main): Avoid unused variable.
15877
15878 2008-09-15  Bruno Haible  <bruno@clisp.org>
15879
15880         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
15881         are missing on OpenBSD 4.0 individually.
15882         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15883
15884 2008-09-15  Bruno Haible  <bruno@clisp.org>
15885
15886         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
15887         * doc/posix-functions/strerror.texi: Mention also Cygwin.
15888         * doc/posix-functions/perror.texi: Likewise.
15889         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
15890         is missing.
15891         Reported by Eric Blake.
15892
15893         * lib/errno.in.h: Use replacement values >= 2000.
15894         Reported by Eric Blake.
15895
15896 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15897
15898         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
15899         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
15900         limit.
15901         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
15902         compareseq was aborted.
15903
15904 2008-09-14  Bruno Haible  <bruno@clisp.org>
15905
15906         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
15907         yvec_edit_count.
15908         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
15909         (fstrcmp_bounded): Simplify result computation accordingly.
15910
15911 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15912
15913         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
15914         (fstrcmp): Define in terms of fstrcmp_bounded.
15915         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
15916         lower_bound argument.
15917         Return quickly if the result is certainly < lower_bound.
15918         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
15919
15920 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15921
15922         * lib/diffseq.h (EARLY_ABORT): New macro.
15923         (compareseq): Change return type to bool. Return true when EARLY_ABORT
15924         evaluates to true.
15925
15926 2008-09-14  Bruno Haible  <bruno@clisp.org>
15927
15928         * modules/perror-tests: New file.
15929         * tests/test-perror.sh: New file.
15930         * tests/test-perror.c: New file.
15931
15932         New module 'perror'.
15933         * lib/stdio.in.h (perror): New declaration.
15934         * lib/perror.c: New file.
15935         * m4/perror.m4: New file.
15936         * modules/perror: New file.
15937         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
15938         * doc/posix-functions/perror.texi: Mention the perror module.
15939         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
15940         REPLACE_PERROR.
15941         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
15942         REPLACE_PERROR.
15943
15944 2008-09-14  Bruno Haible  <bruno@clisp.org>
15945
15946         * modules/stdio (Makefile.am): Reorder to match the order in
15947         lib/stdio.in.h.
15948         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
15949
15950 2008-09-13  Bruno Haible  <bruno@clisp.org>
15951
15952         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
15953
15954 2008-09-13  Bruno Haible  <bruno@clisp.org>
15955
15956         Extend strerror to cover the added errno values.
15957         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
15958         (rpl_strerror): Provide error messages for the added errno values and
15959         for the WSA* values.
15960         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
15961         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
15962         strerror.
15963         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
15964         * modules/strerror (Depends-on): Add errno.
15965         * doc/posix-functions/strerror.texi: Document the change.
15966         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
15967         and EOVERFLOW.
15968
15969 2008-09-13  Bruno Haible  <bruno@clisp.org>
15970
15971         * modules/EOVERFLOW: Remove file.
15972         * m4/eoverflow.m4: Remove file.
15973         * modules/EOVERFLOW-tests: Remove file.
15974         * tests/test-EOVERFLOW.c: Remove file.
15975         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
15976         * modules/ftell (Depends-on): Likewise.
15977         * modules/getdelim (Depends-on): Likewise.
15978         * modules/getugroups (Depends-on): Likewise.
15979         * modules/poll (Depends-on): Likewise.
15980         * modules/snprintf (Depends-on): Likewise.
15981         * modules/sprintf-posix (Depends-on): Likewise.
15982         * modules/vasnprintf (Depends-on): Likewise.
15983         * modules/vasprintf (Depends-on): Likewise.
15984         * modules/vfprintf-posix (Depends-on): Likewise.
15985         * modules/vsnprintf (Depends-on): Likewise.
15986         * modules/vsprintf-posix (Depends-on): Likewise.
15987         * modules/xvasprintf (Depends-on): Likewise.
15988         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15989         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
15990         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
15991         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
15992         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15993         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
15994         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
15995         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
15996         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15997         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
15998         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
15999         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
16000         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
16001         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
16002         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
16003         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
16004         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
16005         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
16006         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
16007         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
16008         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
16009         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
16010         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
16011         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
16012         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
16013         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
16014         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
16015         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
16016         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
16017         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
16018         * MODULES.html.sh: Remove EOVERFLOW.
16019         * NEWS: Mention the change.
16020
16021 2008-09-13  Bruno Haible  <bruno@clisp.org>
16022
16023         * modules/errno-tests: New file.
16024         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
16025
16026         * lib/errno.in.h: New file.
16027         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
16028         * modules/errno: New file.
16029         * doc/posix-headers/errno.texi: Update documentation.
16030         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
16031
16032 2008-09-13  Bruno Haible  <bruno@clisp.org>
16033
16034         * tests/test-poll.c: Use #if for native Windows, rather than testing
16035         __MSVCRT__.
16036
16037 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16038             Bruno Haible  <bruno@clisp.org>
16039
16040         * lib/glob.c: Don't include <pwd.h> on native Windows.
16041         (WINDOWS32): New macro.
16042         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
16043
16044 2008-09-13  Bruno Haible  <bruno@clisp.org>
16045
16046         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
16047         (ETIMEDOUT): Remove macro.
16048         (glthread_cond_timedwait_multithreaded): New declaration.
16049         (glthread_cond_timedwait): Use it.
16050         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
16051         (glthread_cond_timedwait_multithreaded): New function.
16052
16053 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
16054
16055         * modules/poll-tests: Do not check for io.h.
16056         * tests/test-poll.c: Check for __MSVCRT__ instead.
16057
16058 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
16059
16060         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
16061         * modules/poll-tests: Add inet_pton, stdbool, sockets.
16062         * tests/test-poll.c: Use them.  Use _pipe on Windows.
16063
16064 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
16065
16066         * modules/poll-tests: New.
16067         * tests/test-poll.c: New.
16068
16069 2008-09-12  Eric Blake  <ebb9@byu.net>
16070
16071         frexp: test for NetBSD failure on -0.0
16072         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
16073         not all, bugs from NetBSD 3.0 have been fixed.
16074         * doc/posix-functions/frexp.texi (frexp): Document bug.
16075         Reported by Thomas Klausner.
16076
16077         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
16078         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
16079         literal -0.0.
16080         Reported by Jonathan C. Patschke <jp@centtech.com>.
16081
16082 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16083
16084         * lib/glthread/cond.h: Use dummy implementation also if
16085         USE_WIN32_THREADS.
16086
16087 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16088
16089         * modules/fnmatch-posix (License): Change to LGPLv2+.
16090         * modules/fnmatch-gnu (License): Likewise.
16091
16092 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16093
16094         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
16095
16096 2008-09-11  Jim Meyering  <meyering@redhat.com>
16097
16098         * users.txt: Add gtk-vnc.
16099
16100 2008-09-08  Simon Josefsson  <simon@josefsson.org>
16101
16102         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
16103         rotate amounts.
16104
16105         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
16106         required for 16-bit and 8-bit rotates.
16107         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
16108         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
16109         UINT8_MAX instead of hard-coded constants.
16110         Suggested by Paul Eggert.
16111
16112 2008-09-07  Bruno Haible  <bruno@clisp.org>
16113
16114         * tests/test-striconveh.c (main): Check behaviour when converting from
16115         UTF-7.
16116
16117         Make striconveh work better with stateful encodings.
16118         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
16119         that iconv does not increment the inptr when returning -1/EINVAL.
16120
16121 2008-09-07  Bruno Haible  <bruno@clisp.org>
16122
16123         * build-aux/config.rpath: Update according to libtool-2.2.6.
16124         * build-aux/config.libpath: Likewise.
16125
16126 2008-09-06  Bruno Haible  <bruno@clisp.org>
16127
16128         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
16129         * lib/freadptr.c (freadptr): Likewise.
16130         * lib/freadseek.c (freadptrinc): Likewise.
16131         Reported by Simon Josefsson.
16132
16133 2008-09-06  Bruno Haible  <bruno@clisp.org>
16134
16135         * modules/freadptr (License): Change to LGPLv2+.
16136         * modules/freadseek (License): Likewise.
16137         Suggested by Eric Blake.
16138
16139         * modules/memchr2 (License): Change to LGPLv2+.
16140         Approved by Eric Blake.
16141
16142 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16143             Bruno Haible  <bruno@clisp.org>
16144
16145         Make gnulib-tool work with native 'sed' on AIX.
16146         * gnulib-tool (sed_noop): New variable.
16147         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
16148         func_add_or_update, func_create_testdir): Use it to initialize sed
16149         script variables.
16150         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16151
16152 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
16153             Bruno Haible  <bruno@clisp.org>
16154
16155         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
16156         also works after #include directives.
16157
16158 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
16159
16160         getdate.y: reject an out-of-range timezone value
16161         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
16162         the range [-24...+24].  When specified with only one or two digits,
16163         * tests/test-getdate.c: Tests for the fix.
16164         * doc/getdate.texi: Document this change.
16165
16166 2008-09-03  Bruno Haible  <bruno@clisp.org>
16167
16168         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
16169
16170 2008-09-02  Simon Josefsson  <simon@josefsson.org>
16171
16172         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
16173         <bruce.korb@gmail.com> with ideas from Ben Pfaff
16174         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
16175         Blake <ebb9@byu.net>.
16176
16177         * tests/test-bitrotate.c: Add more test vectors.
16178
16179 2008-09-02  Eric Blake  <ebb9@byu.net>
16180
16181         vasnprintf-posix: handle large precision via %.*d
16182         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
16183         when handling it ourselves.
16184         * tests/test-vasnprintf-posix.c (test_function): Add test.
16185         * tests/test-snprintf-posix.h (test_function): Likewise.
16186         * tests/test-sprintf-posix.h (test_function): Likewise.
16187         * tests/test-vasprintf-posix.c (test_function): Likewise.
16188         Reported by Alain Guibert.
16189
16190 2008-09-01  Eric Blake  <ebb9@byu.net>
16191
16192         c-stack: make configure-time check more robust
16193         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
16194         successful sigaction call.
16195         Reported by Tom G. Christensen.
16196
16197 2008-09-01  Bruno Haible  <bruno@clisp.org>
16198
16199         New module 'findprog-lgpl'.
16200         * modules/findprog-lgpl: New file.
16201         * lib/findprog-lgpl.c: New file.
16202         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
16203         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
16204         to decide whether to use strdup or xstrdup, concatenated_filename or
16205         xconcatenated_filename.
16206
16207 2008-09-01  Bruno Haible  <bruno@clisp.org>
16208
16209         Split module 'concat-filename' into 'concat-filename' (LGPL) and
16210         'xconcat-filename' (GPL).
16211         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
16212         (License): Change to LGPLv2+.
16213         * modules/xconcat-filename: New file.
16214         * lib/concat-filename.h (concatenated_filename): Change specification.
16215         (xconcatenated_filename): New declaration.
16216         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
16217         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
16218         memory situations.
16219         * lib/xconcat-filename.c: New file.
16220         * NEWS: Mention the change.
16221         * lib/findprog.c: Include concat-filename.h, not filename.h.
16222         (find_in_path): Use xconcatenated_filename instead of
16223         concatenated_filename.
16224         * lib/javacomp.c: Include concat-filename.h, not filename.h.
16225         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
16226         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
16227         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
16228         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
16229         instead of concatenated_filename.
16230         * lib/javaexec.c: Include concat-filename.h, not filename.h.
16231         (execute_java_class): Use xconcatenated_filename instead of
16232         concatenated_filename.
16233         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
16234         * modules/javacomp (Depends-on): Likewise.
16235         * modules/javaexec (Depends-on): Likewise.
16236
16237 2008-09-01  Bruno Haible  <bruno@clisp.org>
16238
16239         Split module 'filename' into 'filename' and 'concat-filename'.
16240         * modules/filename: Keep only lib/filename.h.
16241         (License): Change to LGPLv2+.
16242         * modules/concat-filename: New file, extracted from modules/filename.
16243         * lib/filename.h (concatenated_filename): Remove declaration.
16244         * lib/concat-filename.h: New file, extracted from lib/filename.h.
16245         * lib/concat-filename.c: Include concat-filename.h.
16246         * NEWS: Mention the change.
16247
16248 2008-09-01  Simon Josefsson  <simon@josefsson.org>
16249
16250         * lib/bitrotate.h (rotl8, rotr8): Add.
16251
16252         * modules/bitrotate (configure.ac): Need
16253         AC_REQUIRE([AC_C_INLINE]).
16254         (Description): Mention stdint.h.  Reported by Bruno Haible
16255         <bruno@clisp.org>.
16256
16257         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
16258         Paolo Bonzini <bonzini@gnu.org>.
16259
16260 2008-08-31  Bruno Haible  <bruno@clisp.org>
16261
16262         Assume Solaris specific bi-arch conventions on Solaris systems.
16263         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
16264         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
16265         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
16266         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
16267         like acl_libdirstem.
16268         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
16269         acl_libdirstem.
16270         * NEWS: Mention the change.
16271         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
16272
16273 2008-08-31  Jim Meyering  <meyering@redhat.com>
16274
16275         * lib/strftime.h: Add comments describing the two added arguments.
16276
16277         remove duplicate #include directives
16278         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
16279         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
16280
16281 2008-08-31  Bruno Haible  <bruno@clisp.org>
16282
16283         New module 'sigpipe-die'.
16284         * modules/sigpipe-die: New file.
16285         * lib/sigpipe-die.h: New file.
16286         * lib/sigpipe-die.c: New file.
16287         * MODULES.html.sh (Signal handling): Add sigpipe-die.
16288
16289 2008-08-31  Bruno Haible  <bruno@clisp.org>
16290
16291         Don't override previously installed signal handlers.
16292         * lib/fatal-signal.c (saved_sigactions): New variable.
16293         (uninstall_handlers): Reset the signal to the saved handler, not
16294         to SIG_DFL (except when ignored).
16295         (install_handlers): Save the previous handlers.
16296
16297 2008-08-30  Bruno Haible  <bruno@clisp.org>
16298
16299         * gnulib-tool (func_reset_sigpipe): New function.
16300         (func_get_automake_snippet, func_modules_transitive_closure,
16301         func_import): Invoke it before a join command that reads from stdin,
16302         to avoid "echo: write error: Broken pipe" error messages on stderr.
16303         Reported by Sam Steingold <sds@gnu.org>.
16304
16305 2008-08-30  Bruno Haible  <bruno@clisp.org>
16306
16307         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
16308         Code copied from m4/open.m4.
16309         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
16310         access and the filename ends in a slash. Code copied from lib/open.c.
16311         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
16312         * tests/test-fopen.c (main): Check against bug with trailing slash.
16313
16314 2008-08-29  Bruno Haible  <bruno@clisp.org>
16315
16316         Avoid some "gcc -pedantic" warnings.
16317         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
16318         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
16319         * lib/dirent.in.h: Likewise.
16320         * lib/fcntl.in.h: Likewise.
16321         * lib/float.in.h: Likewise.
16322         * lib/iconv.in.h: Likewise.
16323         * lib/inttypes.in.h: Likewise.
16324         * lib/locale.in.h: Likewise.
16325         * lib/math.in.h: Likewise.
16326         * lib/netinet_in.in.h: Likewise.
16327         * lib/search.in.h: Likewise.
16328         * lib/signal.in.h: Likewise.
16329         * lib/stdarg.in.h: Likewise.
16330         * lib/stdint.in.h: Likewise.
16331         * lib/stdio.in.h: Likewise.
16332         * lib/stdlib.in.h: Likewise.
16333         * lib/string.in.h: Likewise.
16334         * lib/strings.in.h: Likewise.
16335         * lib/sys_select.in.h: Likewise.
16336         * lib/sys_socket.in.h: Likewise.
16337         * lib/sys_stat.in.h: Likewise.
16338         * lib/sys_time.in.h: Likewise.
16339         * lib/sysexits.in.h: Likewise.
16340         * lib/time.in.h: Likewise.
16341         * lib/unistd.in.h: Likewise.
16342         * lib/wchar.in.h: Likewise.
16343         * lib/wctype.in.h: Likewise.
16344         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
16345         * modules/fchdir (Makefile.am): Likewise.
16346         * modules/fcntl (Makefile.am): Likewise.
16347         * modules/float (Makefile.am): Likewise.
16348         * modules/iconv_open (Makefile.am): Likewise.
16349         * modules/inttypes (Makefile.am): Likewise.
16350         * modules/locale (Makefile.am): Likewise.
16351         * modules/math (Makefile.am): Likewise.
16352         * modules/netinet_in (Makefile.am): Likewise.
16353         * modules/search (Makefile.am): Likewise.
16354         * modules/signal (Makefile.am): Likewise.
16355         * modules/stdarg (Makefile.am): Likewise.
16356         * modules/stdint (Makefile.am): Likewise.
16357         * modules/stdio (Makefile.am): Likewise.
16358         * modules/stdlib (Makefile.am): Likewise.
16359         * modules/string (Makefile.am): Likewise.
16360         * modules/strings (Makefile.am): Likewise.
16361         * modules/sys_select (Makefile.am): Likewise.
16362         * modules/sys_socket (Makefile.am): Likewise.
16363         * modules/sys_stat (Makefile.am): Likewise.
16364         * modules/sys_time (Makefile.am): Likewise.
16365         * modules/sysexits (Makefile.am): Likewise.
16366         * modules/time (Makefile.am): Likewise.
16367         * modules/unistd (Makefile.am): Likewise.
16368         * modules/wchar (Makefile.am): Likewise.
16369         * modules/wctype (Makefile.am): Likewise.
16370         Reported by Reuben Thomas <rrt@sc3d.org>.
16371
16372 2008-08-29  Bruno Haible  <bruno@clisp.org>
16373
16374         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
16375         any more.
16376
16377 2008-08-29  Simon Josefsson  <simon@josefsson.org>
16378
16379         * MODULES.html.sh (Misc): Add bitrotate.
16380
16381         * modules/bitrotate: New file.
16382
16383         * lib/bitrotate.h: New file.
16384
16385         * modules/bitrotate-tests: New file.
16386
16387         * tests/test-bitrotate.c: New file.
16388
16389         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
16390         on the bitrotate module.
16391
16392         * lib/arctwo.c: Use new bitrotate module.
16393
16394 2008-08-29  Jim Meyering  <meyering@redhat.com>
16395
16396         bootstrap: merge changes from coreutils
16397         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
16398         of copied files.  Remove a kludge, now that this is fixed.
16399         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
16400         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
16401         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
16402
16403 2008-08-29  Bruno Haible  <bruno@clisp.org>
16404
16405         * MODULES.html.sh: Remove --cvs-urls option.
16406
16407 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
16408
16409         maint.mk: adjust to file name change
16410         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
16411
16412 2008-08-28  Jim Meyering  <meyering@redhat.com>
16413
16414         * modules/getndelim2 (License): Relicense to LGPLv2+.
16415         Approved by Richard Stallman for the version of 1995, and by
16416         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
16417
16418 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
16419
16420         * lib/getdelim.c (flockfile, funlockfile): Make all of them
16421         dummy if one is not available.  Do not touch them if
16422         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
16423         (getc_maybe_unlocked): New.
16424         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
16425
16426 2008-08-26  Eric Blake  <ebb9@byu.net>
16427
16428         doc/INSTALL: resync from autoconf
16429         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
16430         (INSTALL_PRELUDE): Delete; this is done more efficiently by
16431         moving...
16432         * install.texi [!autoconf]: ...here.  Resync from autoconf.
16433         * INSTALL: Regenerate.
16434         * INSTALL.ISO: New file.
16435         * INSTALL.UTF-8: Likewise.
16436
16437 2008-08-26  Jim Meyering  <meyering@redhat.com>
16438
16439         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
16440         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
16441         these definitions conditional, so that they may be overridden, too.
16442
16443 2008-08-26  Bruno Haible  <bruno@clisp.org>
16444
16445         Generate INSTALL file variants with prettier quotes.
16446         * doc/Makefile (INSTALL_PRELUDE): New macro.
16447         (INSTALL): Use it.
16448         (INSTALL.ISO, INSTALL.UTF-8): New rules.
16449
16450 2008-08-26  Bruno Haible  <bruno@clisp.org>
16451
16452         Run makeinfo in an English locale.
16453         * doc/Makefile (MAKEINFO): New variable.
16454
16455 2008-08-26  Bruno Haible  <bruno@clisp.org>
16456
16457         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
16458         Suggested by Eric Blake.
16459
16460 2008-08-25  Bruno Haible  <bruno@clisp.org>
16461
16462         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
16463
16464 2008-08-25  Eric Blake  <ebb9@byu.net>
16465
16466         c-stack: test that stack overflow can be caught
16467         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
16468         that platform allows handling stack overflow; at least OS/2 EMX
16469         has sigaltstack, but crashes before transferring control to
16470         handler on stack overflow.
16471         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
16472         check for HAVE_STACK_OVERFLOW_HANDLING.
16473         Reported by Elbert Pol.
16474
16475 2008-08-25  Bruno Haible  <bruno@clisp.org>
16476
16477         * doc/posix-functions/strftime.texi: Fix description of strftime
16478         module.
16479
16480 2008-08-24  Bruno Haible  <bruno@clisp.org>
16481
16482         * tests/uniwidth/test-uc_width2.c: New file.
16483         * tests/uniwidth/test-uc_width2.sh: New file.
16484         * modules/uniwidth/width-tests (Files): Add the new files.
16485         (TESTS): Add uniwidth/test-uc_width2.sh.
16486         (TESTS_ENVIRONMENT): New variable.
16487         (check_PROGRAMS): Add test-uc_width2.
16488         (test_uc_width2_SOURCES): New variable.
16489
16490         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
16491         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
16492         not 0x00AB.
16493         Reported by Alexander V. Lukyanov <lav@netis.ru>.
16494
16495 2008-08-22  Eric Blake  <ebb9@byu.net>
16496
16497         test-lock, test-tls: mention why a test is skipped
16498         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
16499         skipped.
16500         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
16501
16502         count-one-bits: relax license
16503         * modules/count-one-bits (License): Relicense to LGPLv2+.
16504         Suggested by Ludovic Courtès, approved by Ben Pfaff.
16505
16506 2008-08-22  Andreas Schwab  <schwab@suse.de>
16507
16508         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
16509         Remove spurious space in assignment.
16510
16511 2008-08-21  Simon Josefsson  <simon@josefsson.org>
16512
16513         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
16514         Paul Eggert <eggert@CS.UCLA.EDU>.
16515
16516 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
16517
16518         * modules/gettext: Add m4/threadlib.m4.
16519
16520 2008-08-19  Eric Blake  <ebb9@byu.net>
16521
16522         test-c-stack: fix compilation failure on FreeBSD 5.0
16523         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
16524         headers before <sys/resource.h>.
16525         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
16526         the bug.
16527         Reported by Nelson H. F. Beebe.
16528
16529         strverscmp: migrate from "strverscmp.h" to <string.h>
16530         * modules/string (Makefile.am): Add new hooks.
16531         * modules/strverscmp (Files): Remove strverscmp.h.
16532         (Depends-on): Add string.
16533         (configure.ac): Add indicator.
16534         (Include): Mention new header.
16535         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
16536         defaults.
16537         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
16538         results.
16539         * lib/strverscmp.h: Delete.
16540         * lib/string.in.h (strverscmp): Provide declaration, when needed.
16541         * tests/test-strverscmp.c (includes): Adjust client.
16542         * lib/check-version.c (includes): Likewise.
16543         * NEWS: Document the change.
16544
16545         strverscmp: add unit test
16546         * modules/strverscmp-tests: New file.
16547         * tests/test-strverscmp.c: Likewise.
16548
16549 2008-08-19  Simon Josefsson  <simon@josefsson.org>
16550
16551         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
16552         regarding Windows crypto stuff, from Mono.
16553
16554 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
16555
16556         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
16557         if present, for intel RND.  Return error on failures.
16558
16559 2008-08-18  Ben Pfaff  <blp@gnu.org>
16560
16561         gitlog-to-changelog: give better diagnostic for failed pipe-open
16562         * build-aux/gitlog-to-changelog: Improve error message: suggest
16563         that the version of Git may be too old.
16564
16565 2008-08-18  Simon Josefsson  <simon@josefsson.org>
16566
16567         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
16568         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
16569
16570 2008-08-18  Bruno Haible  <bruno@clisp.org>
16571
16572         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
16573         pthread_in_use().
16574
16575 2008-08-18  Bruno Haible  <bruno@clisp.org>
16576
16577         * lib/glthread/threadlib.c: Include <pthread.h>.
16578
16579 2008-08-18  Bruno Haible  <bruno@clisp.org>
16580
16581         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
16582         glthread_recursive_lock_* macros.
16583         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
16584         Fix syntax error.
16585
16586 2008-08-18  Bruno Haible  <bruno@clisp.org>
16587
16588         * lib/glthread/thread.c: Avoid forcing a context switch right after
16589         thread creation.
16590
16591 2008-08-17  Bruno Haible  <bruno@clisp.org>
16592
16593         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
16594         * lib/glthread/thread.h: Provide Win32 specific implementation.
16595         * modules/thread (Files): Add lib/glthread/thread.c.
16596         (Depends-on): Add lock.
16597         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
16598
16599 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16600
16601         New module 'yield'.
16602         * modules/yield: New file.
16603         * lib/glthread/yield.h: New file.
16604         * m4/yield.m4: New file.
16605         * MODULES.html.sh (Multithreading): Add yield.
16606
16607 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16608
16609         New module 'thread'.
16610         * modules/thread: New file.
16611         * lib/glthread/thread.h: New file.
16612         * m4/thread.m4: New file.
16613         * MODULES.html.sh (Multithreading): Add thread.
16614
16615 2008-08-17  Bruno Haible  <bruno@clisp.org>
16616
16617         * lib/glthread/lock.h: Include <stdlib.h> always.
16618         * lib/glthread/tls.h: Likewise.
16619         * lib/glthread/cond.h: Likewise.
16620
16621 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16622
16623         New module 'cond'.
16624         * modules/cond: New file.
16625         * lib/glthread/cond.h: New file.
16626         * lib/glthread/cond.c: New file.
16627         * m4/cond.m4: New file.
16628         * MODULES.html.sh (Multithreading): Add cond.
16629
16630 2008-08-16  Eric Blake  <ebb9@byu.net>
16631
16632         c-stack: fix regression on Irix 5.3 from 2008-06-21
16633         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
16634         sa_sigaction...
16635         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
16636         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
16637         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
16638         * modules/signal (Makefile.am): Use the value.
16639         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
16640         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
16641         * doc/posix-headers/signal.texi (signal.h): Document this
16642         portability issue.
16643         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
16644         Reported by Tom G. Christensen.
16645
16646 2008-08-17  Bruno Haible  <bruno@clisp.org>
16647
16648         New module 'threadlib'.
16649         * modules/threadlib: New file.
16650         * lib/glthread/threadlib.c: New file, extracted from
16651         lib/glthread/lock.c.
16652         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
16653         functions.
16654         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
16655         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
16656         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
16657         macros.
16658         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
16659         (gl_DISABLE_THREADS): Remove macro.
16660         * modules/lock (Files): Remove build-aux/config.rpath.
16661         (Depends-on): Remove havelib. Add threadlib.
16662         (configure.ac-early): Remove section.
16663         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
16664         * modules/tls (Depends-on): Remove lock. Add threadlib.
16665         (Link): New section, copied from threadlib.
16666         * MODULES.html.sh (Multithreading): Add threadlib.
16667
16668 2008-08-14  Bruno Haible  <bruno@clisp.org>
16669
16670         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
16671         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
16672         glthread_rwlock_unlock, glthread_rwlock_destroy,
16673         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
16674         glthread_recursive_lock_destroy): Define as macros always.
16675         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
16676         glthread_lock_lock.
16677         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
16678         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
16679         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
16680         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
16681         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
16682         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
16683         (glthread_recursive_lock_lock_func): Renamed from
16684         glthread_recursive_lock_lock.
16685         (glthread_recursive_lock_unlock_func): Renamed from
16686         glthread_recursive_lock_unlock.
16687         (glthread_recursive_lock_destroy_func): Renamed from
16688         glthread_recursive_lock_destroy.
16689
16690 2008-08-14  Bruno Haible  <bruno@clisp.org>
16691
16692         * lib/glthread/lock.h: Renamed from lib/lock.h.
16693         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
16694         * lib/glthread/tls.h: Renamed from lib/tls.h.
16695         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
16696         * lib/fstrcmp.c: Update includes.
16697         * lib/strsignal.c: Update includes.
16698         * modules/lock (Files, Makefile.am): Update.
16699         (Include): Change to "glthread/lock.h".
16700         * modules/tls (Files, Makefile.am): Update.
16701         (Include): Change to "glthread/tls.h".
16702         * tests/test-lock.c: Update includes.
16703         * tests/test-tls.c: Update includes.
16704         * NEWS: Mention the renamed header files.
16705
16706 2008-08-11  Jim Meyering  <meyering@redhat.com>
16707
16708         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
16709
16710 2008-08-11  Eric Blake  <ebb9@byu.net>
16711
16712         test-c-stack: avoid C99-ism
16713         * tests/test-c-stack.c (main): Fix whitespace, move declaration
16714         before statement.
16715         Reported by Alain Guibert.
16716
16717 2008-08-10  Jim Meyering  <meyering@redhat.com>
16718
16719         ensure that return value of uinttostr et al are not ignored
16720         * lib/inttostr.h (__GNUC_PREREQ): Define.
16721         (__attribute_warn_unused_result__): Define.
16722         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
16723
16724 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
16725
16726         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
16727         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
16728
16729 2008-08-07  Jim Meyering  <meyering@redhat.com>
16730
16731         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
16732
16733         * modules/mkstemp (License): Relicense under LGPLv2+.
16734         * modules/tempname (License): Likewise.
16735
16736 2008-08-06  Bruno Haible  <bruno@clisp.org>
16737
16738         * lib/poll.c (poll): Further micro-optimization.
16739
16740 2008-08-06  Jim Meyering  <meyering@redhat.com>
16741
16742         inet_pton.c: use locale-independent tolower
16743         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
16744         (inet_pton6): Use c_tolower rather than tolower.
16745         * modules/inet_pton (Depends-on): Add c-ctype.
16746
16747 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
16748
16749         * lib/poll.c (poll): Avoid division when timeout is 0, cache
16750         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
16751
16752 2008-08-06  Jim Meyering  <meyering@redhat.com>
16753
16754         * modules/inet_pton (License): Relicense under LGPLv2+.
16755
16756 2008-08-03  Bruno Haible  <bruno@clisp.org>
16757
16758         Additional non-aborting API for lock and tls.
16759         * lib/lock.h: Include <errno.h>.
16760         (glthread_lock_init): New macro/function.
16761         (gl_lock_init): Define as wrapper around glthread_lock_init.
16762         (glthread_lock_lock): New macro/function.
16763         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
16764         (glthread_lock_unlock): New macro/function.
16765         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
16766         (glthread_lock_destroy): New macro/function.
16767         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
16768         (glthread_rwlock_init): New macro/function.
16769         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
16770         (glthread_rwlock_rdlock): New macro/function.
16771         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
16772         (glthread_rwlock_wrlock): New macro/function.
16773         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
16774         (glthread_rwlock_unlock): New macro/function.
16775         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
16776         (glthread_rwlock_destroy): New macro/function.
16777         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
16778         (glthread_recursive_lock_init): New macro/function.
16779         (gl_recursive_lock_init): Define as wrapper around
16780         glthread_recursive_lock_init.
16781         (glthread_recursive_lock_lock): New macro/function.
16782         (gl_recursive_lock_lock): Define as wrapper around
16783         glthread_recursive_lock_lock.
16784         (glthread_recursive_lock_unlock): New macro/function.
16785         (gl_recursive_lock_unlock): Define as wrapper around
16786         glthread_recursive_lock_unlock.
16787         (glthread_recursive_lock_destroy): New macro/function.
16788         (gl_recursive_lock_destroy): Define as wrapper around
16789         glthread_recursive_lock_destroy.
16790         (glthread_once): New macro/function.
16791         (gl_once): Define as wrapper around glthread_once.
16792         Update function declarations.
16793         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
16794         glthread_rwlock_init. Return error code.
16795         (glthread_rwlock_rdlock_multithreaded): Renamed from
16796         glthread_rwlock_rdlock. Return error code.
16797         (glthread_rwlock_wrlock_multithreaded): Renamed from
16798         glthread_rwlock_wrlock. Return error code.
16799         (glthread_rwlock_unlock_multithreaded): Renamed from
16800         glthread_rwlock_unlock. Return error code.
16801         (glthread_rwlock_destroy_multithreaded): Renamed from
16802         glthread_rwlock_destroy. Return error code.
16803         (glthread_recursive_lock_init_multithreaded): Renamed from
16804         glthread_recursive_lock_init. Return error code.
16805         (glthread_recursive_lock_lock_multithreaded): Renamed from
16806         glthread_recursive_lock_lock. Return error code.
16807         (glthread_recursive_lock_unlock_multithreaded): Renamed from
16808         glthread_recursive_lock_unlock. Return error code.
16809         (glthread_recursive_lock_destroy_multithreaded): Renamed from
16810         glthread_recursive_lock_destroy. Return error code.
16811         (glthread_once_call): Make static.
16812         (glthread_once_multithreaded): Renamed from glthread_once.
16813         * lib/tls.h: Include <errno.h>.
16814         (glthread_tls_key_init): New macro/function.
16815         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
16816         (glthread_tls_set): New macro/function.
16817         (gl_tls_set): Define as wrapper around glthread_tls_set.
16818         (glthread_tls_key_destroy): New macro/function.
16819         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
16820         Update function declarations.
16821         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
16822         glthread_tls_get.
16823         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16824
16825 2008-08-04  Eric Blake  <ebb9@byu.net>
16826
16827         gnumakefile: use space, not TAB, outside of targets
16828         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
16829
16830 2008-08-02  Jim Meyering  <meyering@redhat.com>
16831
16832         getdate.y: avoid locale-dependent date parsing failure
16833         In Turkish locales, getdate would fail to recognize keywords
16834         containing a lowercase "i".  The solution is not to rely on
16835         locale-sensitive case-conversion.
16836         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
16837         (lookup_word): Use c_toupper in place of toupper.
16838         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
16839         Reported by Vefa Bicakci <bicave@superonline.com> in
16840         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
16841         * modules/getdate (Depends-on): Add c-ctype.
16842
16843 2008-08-02  Bruno Haible  <bruno@clisp.org>
16844
16845         * gnulib-tool (func_import): When updating or creating a .gitignore
16846         file, prepend each added line with a slash, and ignore leading slashes
16847         from the existing lines.
16848         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
16849
16850 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16851
16852         Portability fix for GNU make 3.79.1.
16853         * top/GNUmakefile: Avoid 'else COND', which older GNU make
16854         versions do not understand.
16855
16856 2008-08-01  Bruno Haible  <bruno@clisp.org>
16857
16858         Work around bug of HP-UX 10.20 cc with -0.0 literal.
16859         * tests/test-isnanf.h (zero): New variable.
16860         (main): Avoid literal -0.0f.
16861         * tests/test-isnand.h (zero): New variable.
16862         (main): Avoid literal -0.0.
16863         * tests/test-isnanl.h (zero): New variable.
16864         (main): Avoid literal -0.0L.
16865         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
16866         (test_float, test_double, test_long_double): Avoid literals -0.0f,
16867         -0.0, -0.0L.
16868         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
16869         (test_signbitd): Avoid literal -0.0.
16870         (test_signbitl): Avoid literal -0.0L.
16871         * tests/test-ceilf1.c (zero): New variable.
16872         (main): Avoid literal -0.0f.
16873         * tests/test-ceill.c (zero): New variable.
16874         (main): Avoid literal -0.0L.
16875         * tests/test-floorf1.c (zero): New variable.
16876         (main): Avoid literal -0.0f.
16877         * tests/test-floorl.c (zero): New variable.
16878         (main): Avoid literal -0.0L.
16879         * tests/test-roundf1.c (zero): New variable.
16880         (main): Avoid literal -0.0f.
16881         * tests/test-round1.c (zero): New variable.
16882         (main): Avoid literal -0.0.
16883         * tests/test-roundl.c (zero): New variable.
16884         (main): Avoid literal -0.0L.
16885         * tests/test-truncf1.c (zero): New variable.
16886         (main): Avoid literal -0.0f.
16887         * tests/test-trunc1.c (zero): New variable.
16888         (main): Avoid literal -0.0.
16889         * tests/test-truncl.c (zero): New variable.
16890         (main): Avoid literal -0.0L.
16891         * tests/test-frexp.c (zero): New variable.
16892         (main): Avoid literal -0.0.
16893         * tests/test-frexpl.c (zero): New variable.
16894         (main): Avoid literal -0.0L.
16895         * tests/test-ldexpl.c (zero): New variable.
16896         (main): Avoid literal -0.0L.
16897         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16898         (zerod, zerol): New variables.
16899         (test_function): Avoid literals -0.0, -0.0L.
16900         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16901         (zerod, zerol): New variables.
16902         (test_function): Avoid literals -0.0, -0.0L.
16903         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16904         (zerod, zerol): New variables.
16905         (test_function): Avoid literals -0.0, -0.0L.
16906         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16907         (zerod, zerol): New variables.
16908         (test_function): Avoid literals -0.0, -0.0L.
16909         * tests/test-strtod.c (zero): New variable.
16910         (main): Avoid literal -0.0.
16911         Reported by Jonathan C. Patschke <jp@centtech.com>.
16912
16913 2008-07-31  Jim Meyering  <meyering@redhat.com>
16914
16915         sha256.h: correct definition of SHA224_DIGEST_SIZE
16916         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
16917         Reported by Paulie Pena IV <paulie4@gmail.com>.
16918         Define as 224 / 8, rather than as a literal.
16919         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
16920         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
16921         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
16922
16923 2008-07-31  Bruno Haible  <bruno@clisp.org>
16924
16925         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
16926         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
16927         Reported by Jonathan Patschke <jp@centtech.com>.
16928
16929 2008-07-31  Bruno Haible  <bruno@clisp.org>
16930
16931         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
16932         Reported by Paolo Bonzini <bonzini@gnu.org>.
16933
16934 2008-07-30  Eric Blake  <ebb9@byu.net>
16935
16936         test-strtod: allow compilation without -lm
16937         * tests/test-strtod.c (main): Avoid link dependence on fabs.
16938         Reported by Dennis Clarke <blastwave@gmail.com>.
16939
16940 2008-07-28  Jim Meyering  <meyering@redhat.com>
16941
16942         bootstrap: work also when there are no .po files in po/
16943         * build-aux/bootstrap (update_po_files): Complete the change
16944         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
16945
16946 2008-07-27  Jim Meyering  <meyering@redhat.com>
16947
16948         * users.txt: Add zile.
16949
16950 2008-07-26  Ben Pfaff  <blp@gnu.org>
16951
16952         Add missing dependencies on new m4/exponent[fdl].m4 files.
16953         * modules/isnanf-nolibm: Add m4/exponentf.m4.
16954         * modules/isnand-nolibm: Add m4/exponentd.m4.
16955         * modules/isnanl-nolibm: Add m4/exponentl.m4.
16956         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
16957         m4/isnan[fdl].m4, because the macros actually used moved.
16958         Reported by Jim Meyering.
16959
16960 2008-07-14  Ben Pfaff  <blp@gnu.org>
16961
16962         Add isinf module.
16963         * lib/isinf.c: New file.
16964         * lib/math.in.h: Define isinf macro if we have decided to replace
16965         it.
16966         * m4/isinf.m4: New file.
16967         * m4/math_h.m4: Initialize and substitute variables for isinf
16968         module.
16969         * modules/isinf: New file.
16970         * modules/isinf-tests: New file.
16971         * modules/math: Add substitutions for new module.
16972         * tests/test-isinf.c: New file.
16973         * doc/posix-functions/isinf.texi: Mention new module.
16974         * MODULES.html.sh: Mention new module.
16975
16976 2008-07-14  Ben Pfaff  <blp@gnu.org>
16977
16978         Factor out some macros for use by additional modules.
16979         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
16980         exponentf.m4.
16981         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
16982         exponentd.m4.
16983         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
16984         file exponentl.m4.
16985         * m4/exponentf.m4: New file.
16986         * m4/exponentd.m4: New file.
16987         * m4/exponentl.m4: New file.
16988         * modules/isnanf: Use new file m4/exponentf.m4.
16989         * modules/isnand: Use new file m4/exponentd.m4.
16990         * modules/isnanl: Use new file m4/exponentl.m4.
16991
16992 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
16993
16994         mktime.c: normalize tp->tm_isdst value to -1/0/1.
16995         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
16996         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
16997         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
16998
16999         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
17000         readlink on platforms without PATH_MAX.
17001
17002 2008-07-21  Eric Blake  <ebb9@byu.net>
17003
17004         Warn, not fail, on stale version.
17005         * top/GNUmakefile (_curr-ver): Tone down previous patch.
17006
17007         Don't allow installation with stale devel version number.
17008         * top/GNUmakefile (_is-install-target): New macro.
17009         (_curr-ver): Forbid installation with stale version number.
17010
17011 2008-07-20  Bruno Haible  <bruno@clisp.org>
17012
17013         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
17014         TESTS_ENVIRONMENT.
17015         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
17016
17017 2008-07-20  Bruno Haible  <bruno@clisp.org>
17018
17019         * lib/c-stack.h (c_stack_action): Add documentation.
17020         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
17021
17022 2008-07-20  Bruno Haible  <bruno@clisp.org>
17023
17024         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
17025         * modules/readlink (License): Likewise.
17026
17027 2008-07-17  Eric Blake  <ebb9@byu.net>
17028
17029         * modules/c-stack (Link): Fix typo.
17030
17031         Make c-stack use libsigsegv, when available.
17032         * modules/c-stack (Depends-on): Add libsigsegv.
17033         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
17034         needed.
17035         * lib/c-stack.c (SIGSTKSZ): Define fallback.
17036         (segv_handler, overflow_handler, c_stack_action)
17037         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
17038         implementation when libsigsegv is available, but only when using
17039         the library is necessary.
17040         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
17041         comment, explaining why XSI check fails on Linux.
17042         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
17043         * tests/test-c-stack2.sh: Tweak skip message.
17044         * NEWS: Document new link-time requirements.
17045
17046 2008-07-16  Eric Blake  <ebb9@byu.net>
17047
17048         c-stack: Expose false positives when not using libsigsegv.
17049         * modules/c-stack-tests (Files): Expand test.
17050         * tests/test-c-stack.c (main): Add means to conditionally trigger
17051         non-overflow SIGSEGV.
17052         * tests/test-c-stack2.sh: New file.
17053
17054 2008-07-14  Bruno Haible  <bruno@clisp.org>
17055
17056         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
17057         Reported by Eric Blake.
17058
17059 2008-07-14  Sam Steingold  <sds@gnu.org>
17060             Bruno Haible  <bruno@clisp.org>
17061
17062         New module libsigsegv.
17063         * modules/libsigsegv: New file.
17064         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
17065         modifications.
17066         * MODULES.html.sh (Signal handling): New section.
17067
17068 2008-07-14  Bruno Haible  <bruno@clisp.org>
17069
17070         * modules/unictype/ctype-* (Description): Add the word "function".
17071         Improves the resulting doc in MODULES.html.
17072
17073 2008-07-12  Ben Pfaff  <blp@gnu.org>
17074
17075         Add longlong module.
17076         * modules/longlong: New file.
17077
17078 2008-07-12  Bruno Haible  <bruno@clisp.org>
17079
17080         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
17081         to empty.
17082
17083 2008-07-10  Ben Pfaff  <blp@gnu.org>
17084
17085         Add isnan module.
17086         * doc/posix-functions/isnan.texi: Mention new module.
17087         * lib/math.in.h: Define isnan macro if we have decided to replace
17088         it.
17089         * m4/isnan.m4: New file.
17090         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
17091         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
17092         also.
17093         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
17094         redundancy.
17095         * m4/math_h.m4: Initialize and substitute variables for isnan
17096         module.
17097         * modules/isnan: New file.
17098         * modules/isnan-tests: New file.
17099         * modules/math: Add substitutions for new module.
17100         * tests/test-isnan.c: New file.
17101         * MODULES.html.sh: Mention new module.
17102
17103 2008-07-10  Ben Pfaff  <blp@gnu.org>
17104
17105         Add isnanf module.
17106         * lib/isnanf.m4: New file.
17107         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
17108         (gl_HAVE_ISNANF_IN_LIBM): New macro.
17109         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
17110         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
17111         * modules/isnanf: New file.
17112         * modules/isnanf-tests: New file.
17113         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
17114         files.
17115         * tests/test-isnanf-nolibm.c: factored most of its contents into
17116         new file tests/test-isnanf.h.
17117         * tests/test-isnanf.h: New file.
17118         * tests/test-isnanf.c: New file.
17119         * MODULES.html.sh: Mention new module.
17120         * doc/glibc-functions/isnanf.texi: Mention new module.
17121
17122 2008-07-10  Ben Pfaff  <blp@gnu.org>
17123
17124         Add isnand module.
17125         * lib/isnand.h: New file.
17126         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
17127         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
17128         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
17129         functionality also.
17130         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
17131         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
17132         (gl_HAVE_ISNAND_IN_LIBM): New macro.
17133         * modules/isnand: New file.
17134         * modules/isnand-tests: New file.
17135         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
17136         files.
17137         * tests/test-isnand-nolibm.c: factored most of its contents into
17138         new file tests/test-isnand.h.
17139         * tests/test-isnand.h: New file.
17140         * tests/test-isnand.c: New file.
17141         * MODULES.html.sh: Mention new module.
17142
17143 2008-07-10  Ben Pfaff  <blp@gnu.org>
17144
17145         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
17146         * lib/isnand.h: Rename lib/isnand-nolibm.h.
17147         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
17148         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
17149         * modules/isnanf-nolibm: Update references to renamed files.
17150         * modules/isnand-nolibm: Likewise.
17151         * modules/isnanf-nolibm-tests: Likewise.
17152         * modules/isnand-nolibm-tests: Likewise.
17153         * lib/frexp.c: Likewise.
17154         * lib/isfinite.c: Likewise.
17155         * lib/signbitd.c: Likewise.
17156         * lib/signbitf.c: Likewise.
17157         * lib/vasnprintf.c: Likewise.
17158         * tests/test-ceilf1.c: Likewise.
17159         * tests/test-ceilf2.c: Likewise.
17160         * tests/test-floorf1.c: Likewise.
17161         * tests/test-floorf2.c: Likewise.
17162         * tests/test-frexp.c: Likewise.
17163         * tests/test-round1.c: Likewise.
17164         * tests/test-round2.c: Likewise.
17165         * tests/test-roundf1.c: Likewise.
17166         * tests/test-strtod.c: Likewise.
17167         * tests/test-trunc1.c: Likewise.
17168         * tests/test-trunc2.c: Likewise.
17169         * tests/test-truncf1.c: Likewise.
17170         * tests/test-truncf2.c: Likewise.
17171         * NEWS: Mention the renamed header files.
17172
17173 2008-07-11  Jim Meyering  <meyering@redhat.com>
17174
17175         vc-list-files: make the last-resort awk code more portable
17176         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
17177         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
17178         does not support it.
17179
17180 2008-07-10  Eric Blake  <ebb9@byu.net>
17181
17182         Work with tar's bootstrap.
17183         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
17184         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
17185         an m4 comment.
17186
17187 2008-07-09  Jim Meyering  <meyering@redhat.com>
17188
17189         posix-shell.m4: fix typo that made this test malfunction
17190         * m4/posix-shell.m4: Remove capitalization in variable name.
17191
17192 2008-07-08  Bruno Haible  <bruno@clisp.org>
17193
17194         * m4/onceonly.m4: Update comments.
17195         Reported by Ben Pfaff <blp@cs.stanford.edu>.
17196
17197 2008-07-04  Jim Meyering  <meyering@redhat.com>
17198
17199         * users.txt: Add vc-dwim.
17200         (bison, coreutils): Use the gitweb URL.
17201
17202 2008-07-03  Jim Meyering  <meyering@redhat.com>
17203
17204         * users.txt: Add libffcall.  From Sam Steingold.
17205
17206 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
17207
17208         getdate.y: do not ignore TZ with relative day, month or year offset
17209         * lib/getdate.y (get_date): Move the tz-handling block to follow the
17210         relative-date-handling, since otherwise, the latter would clobber the
17211         sole output (an updated Start value) of the tz-handling block.
17212         * tests/test-getdate.c: Tests for the fix
17213
17214 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17215
17216         Recognize 'foo_LIBRARIES += libgnu.a'.
17217         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
17218         makefile snippet has already specified an installation location,
17219         also using '+='.
17220
17221 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
17222
17223         getdate.y: factor out common actions
17224         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
17225         Use them in place of open-coded actions.
17226
17227 2008-07-01  Simon Josefsson  <simon@josefsson.org>
17228
17229         Add self-test for getdate module.
17230         * modules/getdate-tests: New file.
17231         * tests/test-getdate.c: New file.
17232
17233 2008-06-29  Bruno Haible  <bruno@clisp.org>
17234
17235         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
17236         .gitignore.
17237         Reported by Sylvain Beucler <beuc@beuc.net>.
17238
17239 2008-06-29  Bruno Haible  <bruno@clisp.org>
17240
17241         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
17242         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
17243
17244 2008-06-29  Bruno Haible  <bruno@clisp.org>
17245
17246         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
17247         EXTRA_DIST.
17248         Reported by Sylvain Beucler <beuc@beuc.net>.
17249
17250 2008-06-26  Jim Meyering  <meyering@redhat.com>
17251
17252         make several modules depend on the "open" module
17253         This provides slightly increased consistency when opening-for-write
17254         the name of a non-directory spelled with a trailing slash.
17255         * modules/chdir-safer: Likewise.
17256         * modules/chown: Likewise.
17257         * modules/clean-temp: Likewise.
17258         * modules/copy-file: Likewise.
17259         * modules/fchdir: Likewise.
17260         * modules/fcntl-safer: Likewise.
17261         * modules/pipe: Likewise.
17262         * modules/utime: Likewise.
17263         Prompted by Eric Blake and Bruno Haible.
17264
17265 2008-06-24  Andreas Schwab  <schwab@suse.de>
17266
17267         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
17268         literals can be used as initializers for global variables.
17269
17270 2008-06-23  Eric Blake  <ebb9@byu.net>
17271
17272         Make gnulib-cache.m4 easier to diff.
17273         * gnulib-tool (func_import): Allow newlines when reading cached
17274         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
17275
17276 2008-06-23  Bruno Haible  <bruno@clisp.org>
17277
17278         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
17279         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
17280         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
17281         m4/signalblocking.m4.
17282         (gl_PREREQ_SIGACTION): Don't invoke it.
17283         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
17284         gl_PREREQ_SIG_HANDLER_H.
17285         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17286         Don't check for sigaction here.
17287
17288 2008-06-23  Bruno Haible  <bruno@clisp.org>
17289
17290         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
17291         (install_handlers): Don't set the SA_RESETHAND flag.
17292
17293 2008-06-23  Bruno Haible  <bruno@clisp.org>
17294
17295         * m4/sigaction.m4: Comment fixes.
17296         * lib/signal.in.h: Likewise.
17297
17298 2008-06-23  Eric Blake  <ebb9@byu.net>
17299
17300         Fix typo.
17301         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
17302
17303         Avoid SA_ namespace.
17304         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
17305         Reported by Ralf Wildenhues.
17306
17307         Avoid test failure due to SA_RESTORER.
17308         * tests/test-sigaction.c (SA_MASK): New macro.
17309         (main): Avoid failing due to extension flags being set.
17310         Reported by Jim Meyering.
17311
17312         Revert use of sig-handler.h in sigprocmask.c.
17313         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
17314         it requires the existence of struct sigaction.
17315         * lib/sigprocmask.c (handler_t): Restore typedef.
17316         (rpl_signal, old_handlers): Use local type.
17317
17318 2008-06-22  Bruno Haible  <bruno@clisp.org>
17319
17320         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
17321         conditionally.
17322         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17323
17324 2008-06-22  Bruno Haible  <bruno@clisp.org>
17325
17326         * doc/posix-functions/siginterrupt.texi: Move note.
17327
17328         * lib/signal.in.h (SA_RESTART): New macro.
17329         * lib/sigaction.c: Update comment.
17330
17331         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
17332
17333         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
17334         (gl_PREREQ_SIGPROCMASK): Invoke it.
17335         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
17336
17337         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
17338
17339         * lib/sigprocmask.c: Update a comment.
17340
17341 2008-06-21  Eric Blake  <ebb9@byu.net>
17342
17343         Use sigaction module rather than signal().
17344         * modules/c-stack (Depends-on): Add sigaction.
17345         * modules/fatal-signal (Depends-on): Likewise.
17346         * modules/nanosleep (Depends-on): Likewise.
17347         * modules/sigprocmask (Files): Add sig-handler.h.
17348         * modules/sigaction (Files): Likewise.
17349         * lib/sig-handler.h (get_handler): New file, suggested by Paul
17350         Eggert.
17351         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
17352         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
17353         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
17354         (init_fatal_signals): Likewise.
17355         * lib/nanosleep.c (rpl_nanosleep): Likewise.
17356         (siginterrupt): Delete fallback.
17357         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
17358         instead.
17359         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
17360         siginterrupt.
17361
17362         New module sigaction, for mingw.
17363         * modules/sigaction: New module...
17364         * modules/sigaction-tests: ...and its test.
17365         * m4/sigaction.m4: New file.
17366         * lib/sigaction.c: Likewise.
17367         * tests/test-sigaction.c: Likewise.
17368         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
17369         * modules/signal (Makefile.am): Likewise.
17370         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
17371         needed.
17372         * doc/posix-headers/signal.texi (signal.h): Mention provided
17373         types.
17374         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
17375         that sigaction is preferable.
17376         * doc/posix-functions/sigaction.texi (sigaction): Mention new
17377         module.
17378         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17379         sigaction.
17380
17381         Improve robustness of sigprocmask by overriding signal.
17382         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
17383         is in use.
17384         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
17385         (SIGKILL, SIGSTOP): Provide fallbacks.
17386         (rpl_signal): Implement.
17387         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
17388         signal can be called inside handlers.
17389
17390         Fix nanosleep module on mingw.
17391         * modules/nanosleep (Depends-on): Add sys_select.
17392         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
17393
17394         Fix licensing of sigprocmask.
17395         * modules/raise (License): Relicense as LGPL.
17396
17397 2008-06-21  Bruno Haible  <bruno@clisp.org>
17398
17399         * lib/propername.c (proper_name_utf8): Don't use the transliterated
17400         result if it contains question marks.
17401         Reported by Michael Geng <linux@michaelgeng.de>.
17402
17403 2008-06-19  Bruno Haible  <bruno@clisp.org>
17404
17405         Fix CVS-ism.
17406         * doc/gnulib.texi: Include updated-stamp.texi.
17407         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
17408         (updated-stamp.texi): New rule.
17409         (gnulib.info): Depend on it.
17410         * doc/.gitignore: Add updated-stamp.texi.
17411         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
17412
17413 2008-06-19  Bruno Haible  <bruno@clisp.org>
17414
17415         * doc/Makefile (gnulib.info): Update and simplify dependencies.
17416         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17417
17418 2008-06-19  Eric Blake  <ebb9@byu.net>
17419
17420         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
17421         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
17422         Reported by Stepan Kasal.
17423
17424 2008-06-18  Bruno Haible  <bruno@clisp.org>
17425
17426         * lib/fatal-signal.c (init_fatal_signals): Add comment.
17427         Reported by Eric Blake.
17428
17429 2008-06-18  Eric Blake  <ebb9@byu.net>
17430
17431         Work around cygwin 1.5.25 strsignal bug.
17432         * tests/test-strsignal.c: Allow for const char *.
17433         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
17434
17435 2008-06-18  Simon Josefsson  <simon@josefsson.org>
17436
17437         * users.txt: Update URL to article and add author/date
17438         information.
17439
17440 2008-06-17  Bruno Haible  <bruno@clisp.org>
17441
17442         New macro gl_DISABLE_THREADS.
17443         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
17444         if the user did not pass --enable-threads or --disable-threads option.
17445         (gl_DISABLE_THREADS): New macro.
17446         Reported by Eric Blake <ebb9@byu.net>.
17447
17448 2008-06-17  Bruno Haible  <bruno@clisp.org>
17449
17450         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
17451         when the macro ignores it.
17452         Based on a patch by Eric Blake <ebb9@byu.net>.
17453
17454 2008-06-17  Bruno Haible  <bruno@clisp.org>
17455
17456         * modules/tls (License): Change to LGPLv2+.
17457         Reported by Eric Blake.
17458
17459 2008-06-17  Eric Blake  <ebb9@byu.net>
17460
17461         Simplify c-stack prerequisites.
17462         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
17463         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
17464         no longer requires <ucontext.h> to exist.  Optimize setrlimit
17465         check.
17466         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
17467         <sys/resource.h>.
17468
17469         Move c-stack test into testsuite.
17470         * modules/c-stack-tests: New file.
17471         * lib/c-stack.c [DEBUG]: Move test program...
17472         * tests/test-c-stack.c: ...into this new file.  Skip rather than
17473         fail test if sigaltstack is lacking.
17474         * tests/test-c-stack.sh: New driver file.
17475
17476 2008-06-16  Eric Blake  <ebb9@byu.net>
17477
17478         Use raise module consistently.
17479         * modules/fatal-signal (Depends-on): Add raise.
17480         * modules/sigprocmask (Depends-on): Likewise.
17481         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
17482         * lib/sigprocmask.c (sigprocmask): Likewise.
17483         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17484         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
17485
17486         Fix compliance bug in sigpending.
17487         * lib/sigprocmask.c (sigpending): Return pending array via
17488         parameter, not return value.
17489
17490 2008-06-14  Eric Blake  <ebb9@byu.net>
17491
17492         Improve obstack-printf test code.
17493         * tests/test-obstack-printf.c (test_function): Fix comment, and
17494         simplify usage of obstack_* in macros.  Add a test for coverage.
17495         Reported by Bruno Haible.
17496
17497 2008-06-14  Bruno Haible  <bruno@clisp.org>
17498
17499         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
17500         array size as a constant, not as a const variable.
17501         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
17502         AC_USE_SYSTEM_EXTENSIONS.
17503         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17504         Test whether the obstack_printf function actually exists.
17505         * modules/obstack-printf (Depends-on): Add extensions.
17506         (Include): Remove obstack.h.
17507         * modules/obstack-printf-posix (Depends-on): Add extensions.
17508         (Include): Remove obstack.h.
17509
17510 2008-06-13  Eric Blake  <ebb9@byu.net>
17511
17512         Add obstack-printf and obstack-printf-posix modules.
17513         * modules/obstack-printf: New file.
17514         * modules/obstack-printf-posix: Likewise.
17515         * MODULES.html.sh (Misc): Mention them.
17516         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17517         Likewise.
17518         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17519         Likewise.
17520         * modules/stdio (Makefile.am): Accomodate new modules.
17521         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
17522         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
17523         Declare.
17524         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
17525         functions.
17526         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
17527         (gl_REPLACE_OBSTACK_PRINTF): New macros
17528         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
17529         * tests/test-obstack-printf.c: New file.
17530         * modules/obstack-printf-tests: Likewise.
17531         * modules/obstack-printf-posix-tests: Likewise.
17532
17533 2008-06-11  Bruno Haible  <bruno@clisp.org>
17534
17535         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
17536         * lib/open.c: Include errno.h.
17537         (open): Fail when attempting to write to a file that has a trailing
17538         slash.
17539         * tests/test-open.c (main): Test against trailing slash bug.
17540         * doc/posix-functions/open.texi: Mention the trailing slash bug.
17541
17542 2008-06-10  Bruno Haible  <bruno@clisp.org>
17543
17544         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
17545         for $? to work inside the trap command, with various /bin/sh-s.
17546         * tests/test-vc-list-files-cvs.sh: Likewise.
17547
17548 2008-06-10  Bruno Haible  <bruno@clisp.org>
17549
17550         * lib/acl-internal.h: Don't include gettext.h here.
17551         * lib/set-mode-acl.c: Include gettext.h here.
17552         * lib/copy-acl.c: Likewise.
17553
17554 2008-06-10  Bruno Haible  <bruno@clisp.org>
17555
17556         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
17557         * lib/wait-process.c (wait_subprocess): Likewise.
17558         * lib/execute.h (execute): Add termsigp argument.
17559         * lib/execute.c (execute): Likewise.
17560         * lib/csharpcomp.c (compile_csharp_using_pnet,
17561         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
17562         * lib/csharpexec.c (execute_csharp_using_pnet,
17563         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
17564         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
17565         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
17566         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
17567         is_jikes_present): Update.
17568         * lib/javaexec.c (execute_java_class): Update.
17569         * lib/javaversion.c (execute_and_read_line): Update.
17570         * NEWS: Document the changes.
17571         Reported by Eric Blake.
17572
17573 2008-06-10  Eric Blake  <ebb9@byu.net>
17574
17575         Add missing include.
17576         * tests/test-strstr.c (includes): Add <signal.h>.
17577         * tests/test-strcasestr.c (includes): Likewise.
17578         * tests/test-memmem.c (includes): Likewise.
17579
17580 2008-06-10  Bruno Haible  <bruno@clisp.org>
17581
17582         * lib/wait-process.c (wait_subprocess): Add an assertion.
17583
17584 2008-06-10  Bruno Haible  <bruno@clisp.org>
17585
17586         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
17587
17588 2008-06-10  Bruno Haible  <bruno@clisp.org>
17589
17590         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
17591         using alarm().
17592         * tests/test-strcasestr.c (main): Likewise.
17593         * tests/test-strstr.c (main): Likewise.
17594
17595 2008-06-09  Bruno Haible  <bruno@clisp.org>
17596
17597         Work around the Solaris 10 ACE ACLs ABI change.
17598         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
17599         declare if ACL_NO_TRIVIAL is present.
17600         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
17601         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
17602         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
17603         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
17604         define if ACL_NO_TRIVIAL is present.
17605         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
17606         and use the current ABI.
17607         (file_has_acl): Use same #if condition as elsewhere.
17608         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
17609         in use, and use the current ABI.
17610         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
17611         Reported by Jim Meyering.
17612
17613 2008-06-09  Eric Blake  <ebb9@byu.net>
17614
17615         Work around environments that (stupidly) ignore SIGALRM.
17616         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
17617         before using alarm().
17618         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17619         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
17620         Reported by Ian Beckwith <ianb@erislabs.net>.
17621
17622         Produce autobuild blurb earlier in log.
17623         * modules/autobuild (configure.ac-early): Move AB_INIT here.
17624
17625 2008-06-09  Jim Meyering  <meyering@redhat.com>
17626         and OndÅ™ej Vašík  <ovasik@redhat.com>
17627
17628         utimens.c: correct kernel bug work-around
17629         OndÅ™ej Vašík found that the invalid return value of 280 indicates
17630         failure, not success, and the kernel bug we're trying to work
17631         around affects not just the utimensat call, but also the fallback
17632         futimens call.
17633         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
17634         not success.
17635         [HAVE_FUTIMENS]: Use the same work-around, here.
17636
17637 2008-06-09  Jim Meyering  <meyering@redhat.com>
17638
17639         add more guards around definition of ACE_-related code
17640         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
17641         ALLOW and ACE_OWNER are also defined.
17642
17643 2008-06-08  Bruno Haible  <bruno@clisp.org>
17644
17645         * lib/acl-internal.h: Add me as co-author.
17646         * lib/file-has-acl.c: Likewise.
17647         * lib/set-mode-acl.c: Likewise.
17648         * lib/copy-acl.c: Likewise.
17649
17650 2008-06-08  Bruno Haible  <bruno@clisp.org>
17651
17652         Add support for AIX ACLs.
17653         * lib/acl-internal.h (acl_nontrivial): New declaration.
17654         * lib/file-has-acl.c (acl_nontrivial): New function.
17655         (file_has_acl): Add implementation using AIX 4 ACL API.
17656         * lib/set-mode-acl.c (qset_acl): Likewise.
17657         * lib/copy-acl.c (qcopy_acl): Likewise.
17658
17659 2008-06-08  Bruno Haible  <bruno@clisp.org>
17660
17661         Add support for HP-UX ACLs.
17662         * lib/acl-internal.h (acl_nontrivial): New declaration.
17663         * lib/file-has-acl.c (acl_nontrivial): New function.
17664         (file_has_acl): Add implementation using HP-UX 11 ACL API.
17665         * lib/set-mode-acl.c (qset_acl): Likewise.
17666         * lib/copy-acl.c (qcopy_acl): Likewise.
17667
17668 2008-06-08  Bruno Haible  <bruno@clisp.org>
17669
17670         Add support for Cygwin ACLs.
17671         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
17672         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
17673         the chmod_or_fchmod call.
17674         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
17675
17676 2008-06-08  Bruno Haible  <bruno@clisp.org>
17677
17678         Fix bug with setuid modes in Solaris 10+ code.
17679         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
17680         succeeded, when the mode contains some special bits.
17681
17682 2008-06-08  Bruno Haible  <bruno@clisp.org>
17683
17684         Add support for Solaris 7..10 ACLs.
17685         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
17686         declarations.
17687         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
17688         functions.
17689         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
17690         * lib/set-mode-acl.c (qset_acl): Likewise.
17691         * lib/copy-acl.c (qcopy_acl): Likewise.
17692
17693 2008-06-08  Bruno Haible  <bruno@clisp.org>
17694
17695         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
17696         declaration.
17697         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
17698         (acl_access_nontrivial): Remove MacOS X case.
17699         (file_has_acl): Use acl_extended_nontrivial.
17700         * lib/copy-acl.c (qcopy_acl): Likewise.
17701
17702 2008-06-08  Bruno Haible  <bruno@clisp.org>
17703
17704         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
17705
17706 2008-06-08  Jim Meyering  <meyering@redhat.com>
17707
17708         * modules/acl (Maintainer): Add Bruno Haible.
17709
17710 2008-06-07  Bruno Haible  <bruno@clisp.org>
17711
17712         Improve support for Tru64 ACLs.
17713         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
17714         ACL on OSF/1.
17715
17716 2008-06-07  Bruno Haible  <bruno@clisp.org>
17717
17718         Add support for MacOS X ACLs.
17719         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
17720         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
17721         * lib/set-mode-acl.c (qset_acl): Likewise.
17722         * lib/copy-acl.c (qcopy_acl): Likewise.
17723
17724 2008-06-07  Bruno Haible  <bruno@clisp.org>
17725
17726         Fix memory leak introduced on 2008-05-22.
17727         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
17728         use.
17729
17730 2008-06-07  Bruno Haible  <bruno@clisp.org>
17731
17732         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
17733         to construct an empty ACL.
17734
17735 2008-06-07  Bruno Haible  <bruno@clisp.org>
17736
17737         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
17738         precisely.
17739         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
17740
17741 2008-06-07  Bruno Haible  <bruno@clisp.org>
17742
17743         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
17744         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
17745
17746 2008-06-07  Bruno Haible  <bruno@clisp.org>
17747
17748         * doc/posix-functions/_setjmp.texi: Explain the use of this function
17749         regardless of POSIX.
17750         * doc/posix-functions/_longjmp.texi: Likewise.
17751         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
17752         SystemV platform in this case.
17753
17754 2008-06-06  Eric Blake  <ebb9@byu.net>
17755
17756         Document abort() bugs.
17757         * doc/posix-functions/abort.texi (abort): Mention anomalies.
17758
17759         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
17760         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
17761         sigsetjmp.
17762         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
17763         siglongjmp, but only as a macro.
17764         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
17765         is obsolete.
17766         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
17767
17768         Tweak documentation to cover cygwin argz bugs.
17769         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
17770         argz bug fix; no code change needed since no cygwin releases
17771         occurred between the last fix and the bug being tested.
17772         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
17773         module and recently fixed cygwin bugs.
17774         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
17775         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
17776         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
17777         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
17778         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
17779         Likewise.
17780         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
17781         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
17782         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
17783         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
17784         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
17785         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
17786         Likewise.
17787
17788         Avoid gcc warning on cygwin.
17789         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
17790         !ACL_NO_TRIVIAL]: Avoid unused variable.
17791
17792 2008-06-05  Eric Blake  <ebb9@byu.net>
17793
17794         Be tolerant of UNKNOWN version in gnulib-tool test dir.
17795         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
17796         git-version-gen fails to come up with a version.
17797         Reported by Simon Josefsson.
17798
17799 2008-06-05  Jim Meyering  <meyering@redhat.com>
17800             Paul Eggert  <eggert@cs.ucla.edu>
17801
17802         utimens.c: work around a probable Linux kernel bug
17803         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
17804         appears to be a kernel bug that causes utimensat to return 280
17805         instead of 0, indicating success.
17806
17807 2008-06-04  Bruno Haible  <bruno@clisp.org>
17808
17809         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
17810         2008-06-01 commit.
17811
17812 2008-06-04  Bruno Haible  <bruno@clisp.org>
17813
17814         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
17815         * lib/file-has-acl.c (acl_access_nontrivial): New function.
17816         (file_has_acl): Use it. Save errno afterwards.
17817         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
17818
17819 2008-06-03  Bruno Haible  <bruno@clisp.org>
17820
17821         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
17822         draft code. Simplify #ifs.
17823         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
17824         Put Solaris code after POSIX-draft code. Fix comments regarding
17825         Solaris 10, HP-UX. Mention Cygwin.
17826         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
17827
17828 2008-06-03  Eric Blake  <ebb9@byu.net>
17829
17830         Provide fallback for older kernels.
17831         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
17832         Provide runtime fallback if kernel lacks support.
17833         Reported by Mike Frysinger.
17834
17835 2008-06-02  Bruno Haible  <bruno@clisp.org>
17836
17837         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
17838         it exists.
17839
17840 2008-06-02  Bruno Haible  <bruno@clisp.org>
17841
17842         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
17843         * lib/copy-acl.c (qcopy_acl): Update comment.
17844
17845 2008-06-02  Bruno Haible  <bruno@clisp.org>
17846
17847         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
17848         like ACL APIs.
17849
17850 2008-06-02  Bruno Haible  <bruno@clisp.org>
17851
17852         * tests/test-file-has-acl.sh: Use different code for Cygwin.
17853         * tests/test-set-mode-acl.sh: Likewise.
17854         * tests/test-copy-acl.sh: Likewise.
17855         * tests/test-copy-file.sh: Likewise.
17856
17857 2008-06-02  Bruno Haible  <bruno@clisp.org>
17858
17859         * tests/test-file-has-acl.sh: Remove unused code.
17860
17861 2008-06-01  Bruno Haible  <bruno@clisp.org>
17862
17863         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
17864         (copy_acl): Just a wrapper around qcopy_acl that emits the error
17865         messages.
17866         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
17867
17868 2008-06-01  Bruno Haible  <bruno@clisp.org>
17869
17870         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
17871         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
17872         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
17873         APIs.
17874         * modules/acl-tests (configure.ac): Remove tests now contained in
17875         m4/acl.m4.
17876
17877 2008-06-02  Jim Meyering  <meyering@redhat.com>
17878
17879         announce-gen: use a better key-server host name
17880         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
17881         it may be more consistently reliable.  Suggested by Werner Koch
17882         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
17883
17884 2008-06-01  Bruno Haible  <bruno@clisp.org>
17885
17886         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
17887         Reported by Voroskoi Andras <voroskoi@gmail.com>.
17888
17889 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
17890
17891         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
17892
17893 2008-06-01  Bruno Haible  <bruno@clisp.org>
17894
17895         New ACL tests.
17896         * tests/test-file-has-acl.sh: New file.
17897         * tests/test-file-has-acl.c: New file.
17898         * tests/test-set-mode-acl.sh: New file.
17899         * tests/test-set-mode-acl.c: New file.
17900         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
17901         * tests/test-copy-acl.c: New file.
17902         * modules/acl-tests: New file, based on modules/copy-file-tests.
17903         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
17904         (Depends-on): Add acl-tests.
17905         (configure.ac): Remove checks.
17906         (Makefile.am): Don't create test-sameacls program here any more.
17907
17908 2008-06-01  Bruno Haible  <bruno@clisp.org>
17909
17910         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
17911         * tests/test-sameacls.c: Include progname.h.
17912         (main): Invoke set_program_name. Portability fixes for MacOS X,
17913         Solaris, HP-UX.
17914
17915 2008-06-01  Bruno Haible  <bruno@clisp.org>
17916
17917         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
17918         function.
17919         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
17920
17921 2008-06-01  Bruno Haible  <bruno@clisp.org>
17922
17923         * modules/rpmatch (Depends-on): Add strdup.
17924
17925 2008-06-01  Bruno Haible  <bruno@clisp.org>
17926
17927         * lib/pipe.c: Include unistd-safer.h.
17928         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
17929         * modules/pipe (Depends-on): Add unistd-safer.
17930
17931 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17932
17933         * modules/autobuild (configure.ac): Call AB_INIT.
17934
17935 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17936
17937         * tests/test-getaddrinfo.c: Don't print debug messages by default.
17938         Suggested by Bruno Haible <bruno@clisp.org>.
17939
17940 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17941
17942         * tests/test-base64.c: Cast size_t to unsigned long when invoking
17943         printf.  Use %lu instead of %d.  Reported by Bruno Haible
17944         <bruno@clisp.org>.
17945
17946 2008-05-29  Eric Blake  <ebb9@byu.net>
17947
17948         Prefer new POSIX 200x interfaces over futimesat.
17949         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
17950         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
17951         when available.
17952         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
17953
17954 2008-05-28  Bruno Haible  <bruno@clisp.org>
17955
17956         * modules/stpcpy (License): Change to LGPLv2+.
17957         Requested by David Lutterkort <dlutter@redhat.com>.
17958
17959 2008-05-27  Bruno Haible  <bruno@clisp.org>
17960
17961         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
17962         current mingw.
17963         Reported by Jose E. Marchesi <jemarch@gnu.org>.
17964
17965 2008-05-27  Bruno Haible  <bruno@clisp.org>
17966
17967         * modules/iconv_open (Link): New section, from module 'iconv'.
17968         * modules/striconv (Link): Likewise.
17969         * modules/striconveh (Link): Likewise.
17970         * modules/xstriconv (Link): Likewise.
17971         * modules/unicodeio (Link): Likewise.
17972         * modules/propername (Link): Likewise.
17973         Reported by Jim Meyering.
17974
17975 2008-05-26  Jim Meyering  <meyering@redhat.com>
17976
17977         sha256: do not artificially restrict buffer length to be < 2^32
17978         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
17979         uint32_t to size_t.
17980         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
17981         to match.
17982
17983         avoid unaligned access errors, e.g., on sparc
17984         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
17985         direct access through a possibly-unaligned uint64* pointer.
17986         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
17987         direct access through a possibly-unaligned uint32* pointer.
17988         Prompted by this patch from Tom "spot" Callaway:
17989         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
17990
17991         sha512.c: fix typo in comment
17992         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
17993
17994 2008-05-25  Bruno Haible  <bruno@clisp.org>
17995
17996         * lib/set-mode-acl.c: Renamed from lib/acl.c.
17997         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
17998         (Makefile.am): Update lib_SOURCES.
17999
18000 2008-05-25  Bruno Haible  <bruno@clisp.org>
18001
18002         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
18003
18004 2008-05-25  Jim Meyering  <meyering@redhat.com>
18005
18006         useless-if-before-free: freed expr may have white-space differences
18007         * build-aux/useless-if-before-free: Recognize cases in which the
18008         freed expression differs from the tested one in embedded white
18009         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
18010         $1 was used, so we can't make any regexp shy.  Improved tests now
18011         detect this.
18012
18013         useless-if-before-free: accept white space in the expression.
18014         * build-aux/useless-if-before-free: For now, any white space
18015         in the expression must be identical in the free argument.
18016
18017         useless-if-before-free: efficiency tweak
18018         * build-aux/useless-if-before-free: Make the expression-matching
18019         regexp "shy".
18020         Make the *outer* regexp shy, not the expr-matching one.
18021
18022         update code-in-comment to accept cast of free arg
18023         * build-aux/useless-if-before-free: Update regexp.
18024
18025 2008-05-25  Bruno Haible  <bruno@clisp.org>
18026
18027         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
18028         * modules/copy-file-tests (Files, Makefile.am): Update.
18029         * tests/test-copy-file.c (func_test_copy): Update.
18030
18031 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
18032
18033         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
18034
18035 2008-05-23  Bruno Haible  <bruno@clisp.org>
18036
18037         Improve support for ACLs on OSF/1.
18038         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
18039         Remove fallback for unknown flavors of ACLs.
18040
18041 2008-05-22  Bruno Haible  <bruno@clisp.org>
18042
18043         Add support for ACLs on OSF/1.
18044         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
18045         replacements.
18046         (acl_free_text): New macro fallback.
18047         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
18048         acl_free.
18049         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
18050         acl_free_text function. Require AC_C_INLINE.
18051
18052 2008-05-22  Bruno Haible  <bruno@clisp.org>
18053
18054         Make copy_acl work on MacOS X 10.5.
18055         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
18056         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
18057         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
18058         If MODE_INSIDE_ACL, don't assume that every system has the same text
18059         representation for ACLs as FreeBSD.
18060         * lib/copy-acl.c (copy_acl): Add support for platforms with
18061         !MODE_INSIDE_ACL.
18062         * lib/file-has-acl.c (file_has_acl): Likewise.
18063         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
18064         FreeBSD, MacOS X, or IRIX, respectively.
18065
18066 2008-05-22  Bruno Haible  <bruno@clisp.org>
18067
18068         * lib/acl.h: Don't include <sys/acl.h>.
18069         (GETACLCNT): Move fallback to lib/acl-internal.h.
18070         * lib/acl-internal.h: Include <sys/acl.h> here.
18071         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
18072
18073 2008-05-22  Bruno Haible  <bruno@clisp.org>
18074
18075         Split off copy_acl function to separate file.
18076         * lib/copy-acl.c: New file, extracted from lib/acl.c.
18077         * lib/acl.c (copy_acl): Moved function to separate file.
18078         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
18079         * modules/acl (Files): Add lib/copy-acl.c.
18080         (Makefiles.am): Augment lib_SOURCES.
18081
18082 2008-05-22  Bruno Haible  <bruno@clisp.org>
18083
18084         * modules/copy-file-tests: New file.
18085         * tests/test-copy-file.sh: New file.
18086         * tests/test-copy-file.c: New file.
18087         * tests/test-copy-file-sameacls.c: New file.
18088
18089 2008-05-22  Eric Blake  <ebb9@byu.net>
18090
18091         Avoid gcc warning.
18092         * tests/test-memcmp.c (main): Pass NULL indirectly.
18093
18094 2008-05-21  Bruno Haible  <bruno@clisp.org>
18095
18096         Add reference doc about ACLs.
18097         * doc/acl-resources.txt: New file.
18098         * doc/acl-cygwin.txt: New file.
18099
18100 2008-05-21  Bruno Haible  <bruno@clisp.org>
18101
18102         Avoid one more warning from gcc.
18103         * lib/vasnprintf.c (IF_LINT): Update comments.
18104         (VASNPRINTF): Use it also for the 'prefix' array initializer.
18105
18106 2008-05-21  Jim Meyering  <meyering@redhat.com>
18107
18108         avoid a warning from gcc
18109         * lib/vasnprintf.c (IF_LINT): Define.
18110         (scale10_round_decimal_long_double):
18111         Use it to avoid a "may be used uninitialized" warning.
18112         (scale10_round_decimal_double): Likewise.
18113
18114 2008-05-21  Simon Josefsson  <simon@josefsson.org>
18115
18116         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
18117         declared.
18118
18119 2008-05-20  Bruno Haible  <bruno@clisp.org>
18120
18121         * tests/test-memcmp.c (main): Test also the sign of the result. Test
18122         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
18123
18124 2008-05-20  Simon Josefsson  <simon@josefsson.org>
18125
18126         * modules/memcmp-tests: New file.
18127         * tests/test-memcmp.c: New file.
18128
18129 2008-05-19  Bruno Haible  <bruno@clisp.org>
18130
18131         * modules/propername (Notice, configure.ac): Put quoted "..." into
18132         --keyword option.
18133         * lib/propername.h: Update comments accordingly.
18134         Reported by Eric Blake.
18135
18136 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
18137
18138         * modules/getpass-gnu (Depends-on): Add fseeko.
18139
18140 2008-05-19  Simon Josefsson  <simon@josefsson.org>
18141
18142         * modules/base64-tests: New file.
18143
18144 2008-05-19  Bo Borgerson <gigabo@gmail.com>
18145
18146         * lib/base64.c (base64_decode_ctx): If a decode context structure
18147         was passed in use it to ignore newlines.  If a context structure
18148         was _not_ passed in, continue to treat newlines as garbage (this
18149         is the historical behavior).  Formerly base64_decode.
18150         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
18151         takes a decode context structure.
18152         * lib/base64.h (base64_decode): Macro for four-argument calls.
18153         (base64_decode_alloc): Likewise.
18154         * lib/base64.c (base64_decode_ctx): If a decode context structure
18155         was passed in use it to ignore newlines.  If a context structure
18156         was _not_ passed in, continue to treat newlines as garbage (this
18157         is the historical behavior).  Formerly base64_decode.
18158         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
18159         takes a decode context structure.
18160         * lib/base64.h (base64_decode): Macro for four-argument calls.
18161         (base64_decode_alloc): Likewise.
18162
18163 2008-05-19  Jim Meyering  <meyering@redhat.com>
18164
18165         avoid a warning from gcc
18166         * lib/trim.c (IF_LINT): Define.
18167         (trim2): Use it to avoid a "may be used uninitialized" warning.
18168
18169         Fix doc typo.
18170         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
18171
18172 2008-05-19  Bruno Haible  <bruno@clisp.org>
18173
18174         * doc/glibc-functions/getpass.texi: Document limits of other
18175         implementations.
18176
18177 2008-05-19  Simon Josefsson  <simon@josefsson.org>
18178             Bruno Haible <bruno@clisp.org>
18179
18180         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
18181
18182 2008-05-18  Bruno Haible  <bruno@clisp.org>
18183
18184         * modules/propername: New file, from GNU gettext.
18185         * lib/propername.h: New file, from GNU gettext.
18186         * lib/propername.c: New file, from GNU gettext.
18187         * MODULES.html.sh (Internationalization functions): Add propername.
18188
18189 2008-05-16  Jim Meyering  <meyering@redhat.com>
18190             Bruno Haible  <bruno@clisp.org>
18191
18192         Avoid some warnings from "gcc -Wshadow".
18193         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
18194
18195 2008-05-15  Eric Blake  <ebb9@byu.net>
18196
18197         Extend previous patch to cygwin 1.7.0.
18198         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
18199         fast implementation in cygwin >= 1.7.0.
18200         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18201         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18202
18203 2008-05-15  Bruno Haible  <bruno@clisp.org>
18204
18205         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
18206         implementation in glibc >= 2.9.
18207         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18208         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18209
18210 2008-05-15  Bruno Haible  <bruno@clisp.org>
18211
18212         * MODULES.html.sh (Internationalization functions): Remove linebreak.
18213         (Unicode string functions): Add unilbrk/*.
18214         Reported by Karl Berry.
18215
18216 2008-05-15  Eric Blake  <ebb9@byu.net>
18217
18218         Fix violation of <stdbool.h> replacement in regex.
18219         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
18220         * lib/regexec.c (re_search_internal): Likewise.
18221         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
18222
18223 2008-05-15  Jim Meyering  <meyering@redhat.com>
18224
18225         avoid distracting test output when git or cvs is not found
18226         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
18227         * tests/test-vc-list-files-git.sh: Likewise.
18228
18229 2008-05-15  Eric Blake  <ebb9@byu.net>
18230
18231         Glibc finally accepted the memmem speedup code, bugzilla #5514.
18232         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
18233         glibc version.
18234         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
18235         * doc/posix-functions/strstr.texi (strstr): Likewise.
18236         * lib/str-two-way.h (MAX): Sychronize with glibc.
18237
18238 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
18239
18240         * lib/regcomp.c (optimize_utf8): Add a note on why we test
18241         opr.ctx_type.
18242         (calc_first): Initialize constraint field.
18243         (duplicate_node_closure): Use it instead of special casing ANCHORS.
18244         Fix grammar.
18245         (duplicate_node): Merge constraint field for all node types.
18246         (calc_eclosure_iter): Look at constraint field for all node types.
18247         * lib/regex_internal.c (create_cd_newstate): Don't look at
18248         opr.ctx_type.
18249
18250 2008-05-14  Bruno Haible  <bruno@clisp.org>
18251
18252         Help GCC to do better code generation.
18253         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
18254         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
18255         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
18256         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
18257         Declare with attribute 'malloc' if supported.
18258
18259 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
18260
18261         use "echo STR|wc -c" rather than unportable "expr length STR"
18262         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
18263         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
18264
18265 2008-05-14  Jim Meyering  <meyering@redhat.com>
18266
18267         use dd ibs=$n count=1 ... rather than less-portable head -c$n
18268         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
18269         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
18270         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
18271         via Collin Lasse.
18272
18273 2008-05-14  Eric Blake  <ebb9@byu.net>
18274
18275         Avoid quadratic growth in gl_LIBSOURCES.
18276         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
18277         Suggested by Bruno Haible.
18278
18279         Test xmemdup0.
18280         * modules/xmemdup0-tests: New file.
18281         * tests/test-xmemdup0.c: Likewise.
18282
18283 2008-05-13  Eric Blake  <ebb9@byu.net>
18284
18285         Split xmemdup0 into its own module.
18286         * modules/xmemdup0: New file.
18287         * lib/xmemdup0.h: Likewise.
18288         * lib/xmemdup0.c: Likewise.
18289         * MODULES.html.sh (Memory management functions): Add xmemdup0.
18290         * lib/xalloc.h (xmemdup0): Remove.
18291         * lib/xmalloc.c (xmemdup0): Likewise.
18292
18293 2008-05-13  Eric Blake  <ebb9@byu.net>
18294             Bruno Haible  <bruno@clisp.org>
18295
18296         Reduce number of forks required during autoconf.
18297         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
18298         and gl_LIBSOURCES_DIR.
18299         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
18300         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
18301         m4_syscmd per file.
18302         <m4_foreach_w>: Move...
18303         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
18304
18305 2008-05-13  Eric Blake  <ebb9@byu.net>
18306
18307         * gnulib-tool: Fix various comment typos.
18308
18309 2008-05-12  Bruno Haible  <bruno@clisp.org>
18310
18311         Tailor the linebreaking algorithm.
18312         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
18313
18314 2008-05-12  Bruno Haible  <bruno@clisp.org>
18315
18316         Update to Unicode 5.0.0.
18317         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18318         LBP_JV, LBP_JT. Redistribute values.
18319         (unilbrk_table): Change size.
18320         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
18321         Unicode TR#14 rev. 22.
18322         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18323         LBP_JV, LBP_JT. Redistribute values.
18324         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
18325         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
18326         Update.
18327         * lib/unilbrk/lbrkprop1.h: Regenerated.
18328         * lib/unilbrk/lbrkprop2.h: Regenerated.
18329         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
18330         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
18331         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
18332         Likewise.
18333         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
18334         Likewise.
18335         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
18336         result.
18337         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
18338         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
18339         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
18340         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
18341         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
18342         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
18343
18344 2008-05-11  Bruno Haible  <bruno@clisp.org>
18345
18346         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
18347
18348 2008-05-11  Bruno Haible  <bruno@clisp.org>
18349
18350         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
18351         * modules/unilbrk/gen-lbrk: New file.
18352
18353 2008-05-11  Bruno Haible  <bruno@clisp.org>
18354
18355         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
18356         * m4/sha512.m4 (gl_SHA512): Likewise.
18357
18358 2008-05-11  Jim Meyering  <meyering@redhat.com>
18359
18360         New modules: crypto/sha256, crypto/sha512 (from coreutils)
18361         * modules/crypto/sha256: New file.
18362         * modules/crypto/sha512: Likewise.
18363         * lib/sha256.c: Likewise.
18364         * lib/sha256.h: Likewise.
18365         * lib/sha512.c: Likewise.
18366         * lib/sha512.h: Likewise.
18367         * lib/u64.h: Likewise.
18368         * m4/sha256.m4: Likewise.
18369         * m4/sha512.m4: Likewise.
18370         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
18371
18372 2008-05-10  Bruno Haible  <bruno@clisp.org>
18373
18374         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
18375         (Input/Output <stdio.h>): Add xprintf.
18376         (Signal handling <signal.h>): Add strsignal.
18377         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
18378         (Core language properties): Add func.
18379         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
18380         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
18381         strings.
18382         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
18383         (Input/output): New section.
18384         (File system functions): Add openat-die, stat-macros.
18385         (Networking functions): Add sockets.
18386         (Unicode string functions): Add unictype/*.
18387         (Support for building libraries and executables): Add gperf.
18388         (Support for building documentation): Add agpl-3.0.
18389         (Misc): Add nocrash.
18390
18391 2008-05-10  Bruno Haible  <bruno@clisp.org>
18392
18393         * modules/unictype/gen-ctype: New file.
18394
18395 2008-05-10  Jim Meyering  <meyering@redhat.com>
18396
18397         Make chdir-safer.c more efficient on a system with no symlinks.
18398         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
18399         also if ELOOP is zero.  Suggested by Bruno Haible.
18400
18401         Make chdir-safer.c slightly safer.
18402         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
18403         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
18404
18405         Avoid compile failure on systems without ELOOP (like mingw).
18406         * lib/chdir-safer.c (ELOOP): Define if not already defined.
18407         Reported by Bruno Haible.
18408
18409 2008-05-10  Bruno Haible  <bruno@clisp.org>
18410
18411         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
18412         (is_utf8_encoding): Use a case-insensitive comparison.
18413         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
18414         streq.
18415
18416 2008-05-10  Bruno Haible  <bruno@clisp.org>
18417
18418         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
18419         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
18420         * lib/unilbrk/ulc-common.h (iconv_string_length,
18421         iconv_string_keeping_offsets): Remove declarations.
18422         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
18423         Don't include <iconv.h>, streq.h, xsize.h.
18424         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
18425         conversion.
18426         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
18427         <iconv.h>, streq.h, xsize.h.
18428         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
18429         conversion.
18430         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
18431         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
18432         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
18433         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
18434
18435 2008-05-10  Bruno Haible  <bruno@clisp.org>
18436
18437         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
18438         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
18439
18440         * modules/unilbrk/u32-width-linebreaks-tests: New file.
18441         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
18442
18443         * modules/unilbrk/u16-width-linebreaks-tests: New file.
18444         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
18445
18446         * modules/unilbrk/u8-width-linebreaks-tests: New file.
18447         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
18448
18449         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
18450         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
18451
18452         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
18453         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
18454
18455         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
18456         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
18457
18458         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
18459         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
18460
18461 2008-05-10  Bruno Haible  <bruno@clisp.org>
18462
18463         Split up 'linebreak' module.
18464         * lib/unilbrk.h: New file, based on lib/linebreak.h.
18465         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
18466         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
18467         modifications.
18468         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
18469         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
18470         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
18471         lib/linebreak.c.
18472         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
18473         lib/linebreak.c.
18474         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
18475         lib/linebreak.c.
18476         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
18477         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
18478         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
18479         lib/linebreak.c.
18480         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
18481         lib/linebreak.c.
18482         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
18483         lib/linebreak.c.
18484         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
18485         lib/linebreak.c.
18486         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
18487         lib/linebreak.c.
18488         * modules/unilbrk/base: New file.
18489         * modules/unilbrk/tables: New file.
18490         * modules/unilbrk/u8-possible-linebreaks: New file.
18491         * modules/unilbrk/u16-possible-linebreaks: New file.
18492         * modules/unilbrk/u32-possible-linebreaks: New file.
18493         * modules/unilbrk/ulc-common: New file.
18494         * modules/unilbrk/ulc-possible-linebreaks: New file.
18495         * modules/unilbrk/u8-width-linebreaks: New file.
18496         * modules/unilbrk/u16-width-linebreaks: New file.
18497         * modules/unilbrk/u32-width-linebreaks: New file.
18498         * modules/unilbrk/ulc-width-linebreaks: New file.
18499         * lib/linebreak.h: Remove file.
18500         * lib/linebreak.c: Remove file.
18501         * m4/linebreak.m4: Remove file.
18502         * modules/linebreak: Remove file.
18503         * NEWS: Mention the changes.
18504
18505 2008-05-09  Eric Blake  <ebb9@byu.net>
18506
18507         Add xmemdup0.
18508         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
18509         implementation.
18510         * lib/xmalloc.c (xmemdup0): New C implementation.
18511
18512 2008-05-08  Bruno Haible  <bruno@clisp.org>
18513
18514         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
18515
18516 2008-05-07  Eric Blake  <ebb9@byu.net>
18517
18518         Support cross-compilation of <wctype.h>.
18519         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
18520         AC_CACHE_CHECK.
18521
18522 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
18523
18524         * build-aux/vc-list-files: Add support for bzr.
18525
18526 2008-05-03  Jim Meyering  <meyering@redhat.com>
18527
18528         avoid failed assertion with tight malloc
18529         * tests/test-getndelim2.c: Correct an off-by-one assertion.
18530
18531 2008-05-03  Simon Josefsson  <simon@josefsson.org>
18532
18533         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
18534         are needed from arpa/inet.h.
18535         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
18536         Reported by Bruno Haible.
18537
18538 2008-05-02  Jim Meyering  <meyering@redhat.com>
18539
18540         avoid compilation error on FreeBSD 6
18541         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
18542
18543 2008-05-01  Jim Meyering  <meyering@redhat.com>
18544
18545         useless-if-before-free: correct --help's exit status description
18546         * build-aux/useless-if-before-free (usage): Like grep, exit 0
18547         for one or more matches, etc.  Reported by Bruno Haible.
18548
18549         vc-list-files: make the stand-alone gnulib test work
18550         * modules/vc-list-files-tests (configure.ac):
18551         Define and AC_SUBST abs_aux_dir.
18552         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
18553         $(abs_top_srcdir) to each script and having each of them
18554         duplicate the work of setting PATH, set PATH here, using
18555         the new variable, abs_aux_dir instead.
18556         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
18557         * tests/test-vc-list-files-git.sh: Likewise.
18558         Reported by Bruno Haible.
18559
18560 2008-05-01  Bruno Haible  <bruno@clisp.org>
18561
18562         * lib/getndelim2.c (getndelim2): Fix newsize computation during
18563         reallocation. Rename 'done' to 'found_delimiter'.
18564
18565 2008-05-01  Jim Meyering  <meyering@redhat.com>
18566
18567         vc-list-files: accommodate /bin/sh like the one from Solaris 10
18568         * build-aux/vc-list-files: Use `...`, not $(...).
18569
18570 2008-04-30  Jim Meyering  <meyering@redhat.com>
18571
18572         add tests for vc-list-files
18573         * modules/vc-list-files-tests: New module.
18574         * tests/test-vc-list-files-cvs.sh: New file.
18575         * tests/test-vc-list-files-git.sh: New file.
18576
18577         avoid a warning from gcc
18578         * lib/getndelim2.c (IF_LINT): Define.
18579         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
18580
18581         vc-list-files: work properly with build-aux/cvsu, too
18582         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
18583         to all cvs-based clauses.
18584
18585         vc-list-files: work properly in the CVS+awk case, too
18586         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
18587
18588         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
18589         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
18590         take more than one file argument, so .  Add quotes, just in case $dir
18591         ever contains a shell meta-character.  Prompted by Soren Hansen in
18592         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
18593
18594 2008-04-29  Eric Blake  <ebb9@byu.net>
18595
18596         Optimize getndelim2 to use block operations when possible.
18597         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
18598         freadseek, and memchr2.
18599         * lib/getndelim2.c (getndelim2): Use them for block reads.
18600
18601 2008-04-29  Bruno Haible  <bruno@clisp.org>
18602
18603         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
18604         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18605         * modules/inet_ntop (Depends-on): Add extensions.
18606         * modules/inet_pton (Depends-on): Likewise.
18607         Reported by Simon Josefsson.
18608
18609 2008-04-29  Jim Meyering  <meyering@redhat.com>
18610
18611         When the is more than one match in a block, match all of them.
18612         * build-aux/useless-if-before-free: Iterate through each block
18613         until there are no more matches.
18614
18615         Fix broken useless-if-before-free script.
18616         * build-aux/useless-if-before-free: Fix typo: missing "?" after
18617         the expression to match cast of argument to free-like function.
18618
18619 2008-04-29  Eric Blake  <ebb9@byu.net>
18620
18621         Use new header.
18622         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
18623
18624 2008-04-29  Jim Meyering  <meyering@redhat.com>
18625
18626         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
18627         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
18628         by gnulib to exist and to declare e.g., inet_ntop.
18629         Don't include "inet_ntop.h", now removed.
18630
18631         * m4/arpa_inet_h.m4: Remove trailing blanks.
18632
18633 2008-04-29  Eric Blake  <ebb9@byu.net>
18634
18635         Silence valgrind on safe reads beyond potential array bounds.
18636         * lib/rawmemchr.valgrind: New file.
18637         * lib/strchrnul.valgrind: Likewise.
18638         * modules/rawmemchr (Files): Distribute new file.
18639         * modules/strchrnul (Files): Likewise.
18640         Suggested by Bruno Haible.
18641
18642 2008-04-29  Bruno Haible  <bruno@clisp.org>
18643
18644         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
18645         (inet_ntop, inet_pton): Change portability warning's wording.
18646         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
18647         Invoke gl_CHECK_NEXT_HEADERS.
18648         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
18649         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
18650         set ARPA_INET_H.
18651         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18652         * modules/arpa_inet (Description): No longer only for systems that
18653         lack it.
18654         (Depends-on): Add include_next.
18655         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
18656         HAVE_ARPA_INET_H.
18657
18658 2008-04-29  Jim Meyering  <meyering@redhat.com>
18659
18660         * modules/mkdir (License): Re-license as LGPLv2+.
18661
18662 2008-04-29  Bruno Haible  <bruno@clisp.org>
18663
18664         * modules/rawmemchr (Maintainer): Set to Eric.
18665         * modules/strchrnul (Maintainer): Likewise.
18666
18667 2008-04-29  Simon Josefsson  <simon@josefsson.org>
18668
18669         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
18670         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
18671
18672         * modules/arpa_inet (arpa/inet.h): Use them.
18673
18674 2008-04-28  Eric Blake  <ebb9@byu.net>
18675
18676         Test getndelim2.
18677         * modules/getndelim2-tests: New file.
18678         * tests/test-getndelim2.c: Likewise.
18679         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
18680         stream.
18681         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
18682
18683         * MODULES.html.sh: Document new module.
18684
18685 2008-04-20  Bruno Haible  <bruno@clisp.org>
18686
18687         * lib/c-stack.c (die): Use raise.
18688         * modules/c-stack (Depends-on): Add raise.
18689
18690 2008-04-28  Bruno Haible  <bruno@clisp.org>
18691
18692         Expect rpmatch to be declared.
18693         * lib/yesno.c (rpmatch): Remove declaration.
18694
18695         Declare rpmatch.
18696         * lib/stdlib.in.h (rpmatch): New declaration.
18697         * lib/rpmatch.c: Include <stdlib.h> first.
18698         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
18699         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
18700         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
18701         HAVE_RPMATCH.
18702         * modules/rpmatch (Depends-on): Add stdlib, extensions.
18703         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
18704         (Include): Set to <stdlib.h>.
18705         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
18706         HAVE_RPMATCH.
18707         * NEWS: Document the change.
18708
18709 2008-04-28  Bruno Haible  <bruno@clisp.org>
18710
18711         Change rpmatch to use nl_langinfo when appropriate.
18712         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
18713         (N_): New macro.
18714         (localized_pattern): New function/macro.
18715         (try): Remove match, nomatch arguments. Copy the pattern into safe
18716         memory before caching it.
18717         (rpmatch): Use localized_pattern. Add translator comments.
18718         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
18719         Suggested by Eric Blake.
18720         * modules/rpmatch (Depends-on): Add stdbool.
18721
18722 2008-04-28  Eric Blake  <ebb9@byu.net>
18723
18724         Add rawmemchr module, matching glibc.
18725         * modules/string (Makefile.am): New indicator.
18726         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
18727         * lib/string.in.h (rawmemchr): Declare when appropriate.
18728         * modules/rawmemchr: New file.
18729         * m4/rawmemchr.m4: Likewise.
18730         * lib/rawmemchr.c: Likewise.
18731         * modules/rawmemchr-tests: Likewise.
18732         * tests/test-rawmemchr.c: Likewise.
18733         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
18734         module.
18735         * modules/strchrnul (Depends-on): Add rawmemchr.
18736         * lib/strchrnul.c (strchrnul): Optimize a corner case.
18737
18738         Whitespace cleanup.
18739         * tests/test-strchrnul.c: Reindent.
18740         * lib/strchrnul.c: Likewise.
18741
18742         Optimize and test strchrnul.
18743         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
18744         * modules/strchrnul-tests: New file.
18745         * tests/test-strchrnul.c: Likewise.
18746
18747         Remove intprops dependency.
18748         * modules/memchr (Depends-on): Remove intprops.
18749         * modules/memrchr (Depends-on): Likewise.
18750         * modules/memchr2 (Depends-on): Likewise.
18751         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
18752         * lib/memrchr.c (__memrchr): Likewise.
18753         * lib/memrchr2.c (memchr2): Likewise.
18754         Reported by Simon Josefsson.
18755
18756 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18757
18758         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
18759         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18760
18761 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18762
18763         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
18764
18765         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
18766
18767         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
18768
18769         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
18770         declarations.
18771         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
18772
18773         * m4/inet_pton.m4: Don't check for header files.
18774
18775         * m4/inet_ntop.m4: Don't check for header files.
18776
18777 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18778
18779         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
18780         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
18781         trigger for cygwin).
18782         Reported by Bruno Haible  <bruno@clisp.org>.
18783
18784 2008-04-28  Bruno Haible  <bruno@clisp.org>
18785
18786         * doc/posix-functions/strdup.texi: Mention mingw problem.
18787
18788 2008-04-27  Bruno Haible  <bruno@clisp.org>
18789
18790         * modules/stat-time-tests (Depends-on): Add sleep.
18791         * tests/test-stat-time.c (force_unlink): New function.
18792         (cleanup): Use it.
18793         (test_mtime): Remove the ctime related tests.
18794         (test_ctime): New function, containing the ctime related tests.
18795         (main): Call test_ctime, except on native Windows platforms.
18796
18797 2008-04-27  Bruno Haible  <bruno@clisp.org>
18798
18799         * lib/rpmatch.c (rpmatch): Add some comments.
18800         Reported by James Youngman <jay@gnu.org>.
18801
18802 2008-04-27  Bruno Haible  <bruno@clisp.org>
18803
18804         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
18805         quiet NaNs.
18806
18807 2008-04-27  Bruno Haible  <bruno@clisp.org>
18808
18809         Make test-yesno.sh work on mingw.
18810         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
18811         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
18812         (main): Set stdin to binary mode.
18813         * modules/yesno-tests (Depends-on): Add binary-io.
18814
18815 2008-04-27  Bruno Haible  <bruno@clisp.org>
18816
18817         Fix 'isfinite' on x86, x86_64, ia64 platforms.
18818         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
18819         argument that lie outside the IEEE 854 domain.
18820         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
18821         (gl_ISFINITE): Use it.
18822         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
18823
18824 2008-04-27  Bruno Haible  <bruno@clisp.org>
18825
18826         Allow local renaming in config.h.
18827         * lib/memrchr.c (memrchr): Don't undefine outside libc.
18828
18829 2008-04-27  Bruno Haible  <bruno@clisp.org>
18830
18831         * lib/memchr.c (__memchr): Change type of 'i'.
18832         * lib/memchr2.c (memchr2): Likewise.
18833
18834 2008-04-26  Eric Blake  <ebb9@byu.net>
18835         and Bruno Haible  <bruno@clisp.org>
18836
18837         Optimize and test memrchr.
18838         * modules/memrchr (Depends-on): Add intprops.
18839         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
18840         * modules/memrchr-tests: New file.
18841         * tests/test-memrchr.c: New file.
18842
18843 2008-04-26  Bruno Haible  <bruno@clisp.org>
18844
18845         Add tentative support for DragonFly BSD.
18846         * lib/stdio-impl.h: Add macros for DragonFly BSD.
18847         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
18848         fp.
18849         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18850         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
18851         * lib/fpurge.c (fpurge): Likewise.
18852         * lib/freadable.c (freaadable): Likewise.
18853         * lib/freadahead.c (freadahead): Likewise.
18854         * lib/freading.c (freading): Likewise.
18855         * lib/freadptr.c (freadptr): Likewise.
18856         * lib/freadseek.c (freadptrinc): Likewise.
18857         * lib/fseeko.c (fseeko): Likewise.
18858         * lib/fseterr.c (fseterr): Likewise.
18859         * lib/fwritable.c (fwritable): Likewise.
18860         * lib/fwriting.c (fwriting): Likewise.
18861
18862 2008-04-26  Bruno Haible  <bruno@clisp.org>
18863
18864         * lib/stdio-impl.h: New file.
18865         * lib/fbufmode.c: Include stdio-impl.h.
18866         (fbufmode): Use fp_, remove redundant #defines.
18867         * lib/fflush.c: Include stdio-impl.h.
18868         (clear_ungetc_buffer): Remove redundant #defines.
18869         * lib/fpurge.c: Include stdio-impl.h.
18870         (fpurge): Remove redundant #defines.
18871         * lib/freadable.c: Include stdio-impl.h.
18872         (freadable): Remove redundant #defines.
18873         * lib/freadahead.c: Include stdio-impl.h.
18874         (freadahead): Remove redundant #defines.
18875         * lib/freading.c: Include stdio-impl.h.
18876         (freading): Remove redundant #defines.
18877         * lib/freadptr.c: Include stdio-impl.h.
18878         (freadptr): Remove redundant #defines.
18879         * lib/freadseek.c: Include stdio-impl.h.
18880         (freadptrinc): Remove redundant #defines.
18881         * lib/fseeko.c: Include stdio-impl.h.
18882         (rpl_fseeko): Remove redundant #defines.
18883         * lib/fseterr.c: Include stdio-impl.h.
18884         (fseterr): Remove redundant #defines.
18885         * lib/fwritable.c: Include stdio-impl.h.
18886         (fwritable: Remove redundant #defines.
18887         * lib/fwriting.c: Include stdio-impl.h.
18888         (fwriting): Remove redundant #defines.
18889         * modules/fbufmode (Files): Add lib/stdio-impl.h.
18890         * modules/fflush (Files): Likewise.
18891         * modules/fpurge (Files): Likewise.
18892         * modules/freadable (Files): Likewise.
18893         * modules/freadahead (Files): Likewise.
18894         * modules/freading (Files): Likewise.
18895         * modules/freadptr (Files): Likewise.
18896         * modules/freadseek (Files): Likewise.
18897         * modules/fseeko (Files): Likewise.
18898         * modules/fseterr (Files): Likewise.
18899         * modules/fwritable (Files): Likewise.
18900         * modules/fwriting (Files): Likewise.
18901
18902 2008-04-26  Bruno Haible  <bruno@clisp.org>
18903
18904         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18905         restore_seek_optimization, update_fpos_cache): New functions, extracted
18906         from rpl_fflush.
18907         (rpl_fflush): Use them.
18908         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
18909         (gl_REPLACE_FFLUSH): Use it.
18910
18911 2008-04-26  Bruno Haible  <bruno@clisp.org>
18912
18913         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
18914         on Solaris.
18915         * tests/test-xstrtoimax.sh: Likewise.
18916         * tests/test-xstrtoumax.sh: Likewise.
18917         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18918
18919 2008-04-26  Bruno Haible  <bruno@clisp.org>
18920
18921         * modules/memchr-tests: New file.
18922         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
18923
18924 2008-04-26  Eric Blake  <ebb9@byu.net>
18925             Bruno Haible  <bruno@clisp.org>
18926
18927         * lib/memchr.c: Include intprops.h.
18928         (__memchr): Optimize parallel detection of matching bytes. Rename local
18929         variables. Add explanatory comments.
18930
18931 2008-04-26  Bruno Haible  <bruno@clisp.org>
18932
18933         Fix module 'memchr', broken since 2000-10-28.
18934         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
18935
18936 2008-04-26  Bruno Haible  <bruno@clisp.org>
18937
18938         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
18939         comments.
18940
18941 2008-04-25  Eric Blake  <ebb9@byu.net>
18942
18943         Use native fstatat on cygwin 1.7.0.
18944         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
18945         first.
18946
18947 2008-04-23  Eric Blake  <ebb9@byu.net>
18948
18949         Improve memchr2 performance.
18950         * lib/memchr2.c (memchr2): Further optimize parallel detection of
18951         NUL bytes.
18952         * modules/memchr2 (Depends-on): Use intprops.h.
18953
18954 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18955
18956         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
18957         an inline function instead of a CPP macro.  Patch by Ben Pfaff
18958         <blp@cs.stanford.edu>.
18959
18960 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18961
18962         * lib/arpa_inet.in.h: New file.
18963
18964         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
18965         (Makefile.am): Sed in substitute header file.
18966
18967         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
18968         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
18969
18970         * modules/inet_ntop (configure.ac): Use
18971         gl_ARPA_INET_MODULE_INDICATOR.
18972
18973         * modules/inet_pton (configure.ac): Use
18974         gl_ARPA_INET_MODULE_INDICATOR.
18975
18976 2008-04-22  Jim Meyering  <meyering@redhat.com>
18977
18978         * modules/verify (License): Re-license as LGPLv2+.
18979
18980 2008-04-22  Simon Josefsson  <simon@josefsson.org>
18981
18982         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
18983         parameter to void* as per POSIX standard (MinGW uses char*).
18984
18985 2008-04-21  Bruno Haible  <bruno@clisp.org>
18986
18987         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18988         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18989         Define to replacements if REPLACE_ISWCNTRL is 1.
18990         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
18991         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
18992         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
18993         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
18994         what it fixes.
18995         * doc/posix-functions/iswalpha.texi: Likewise.
18996         * doc/posix-functions/iswblank.texi: Likewise.
18997         * doc/posix-functions/iswcntrl.texi: Likewise.
18998         * doc/posix-functions/iswdigit.texi: Likewise.
18999         * doc/posix-functions/iswgraph.texi: Likewise.
19000         * doc/posix-functions/iswlower.texi: Likewise.
19001         * doc/posix-functions/iswprint.texi: Likewise.
19002         * doc/posix-functions/iswpunct.texi: Likewise.
19003         * doc/posix-functions/iswspace.texi: Likewise.
19004         * doc/posix-functions/iswupper.texi: Likewise.
19005         * doc/posix-functions/iswxdigit.texi: Likewise.
19006         Reported by Alain Guibert.
19007
19008 2008-04-21  Bruno Haible  <bruno@clisp.org>
19009
19010         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
19011         Patch by Alain Guibert.
19012
19013 2008-04-21  Bruno Haible  <bruno@clisp.org>
19014
19015         Fix test failures on mingw.
19016         * tests/test-xstrtol.c (print_no_progname): New function.
19017         (main): Install it in error_print_progname hook.
19018         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
19019         * tests/test-xstrtoimax.sh: Likewise.
19020         * tests/test-xstrtoumax.sh: Likewise.
19021
19022 2008-04-21  Bruno Haible  <bruno@clisp.org>
19023
19024         Fix test failure on mingw.
19025         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
19026
19027 2008-04-21  Bruno Haible  <bruno@clisp.org>
19028
19029         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
19030         Actually assign a value.
19031
19032 2008-04-20  Bruno Haible  <bruno@clisp.org>
19033
19034         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
19035         take 2.
19036         * lib/canonicalize.c (canonicalize_file_name): Elide if the
19037         'canonicalize-lgpl' module is also used.
19038         * lib/canonicalize-lgpl.c: Undo last change.
19039         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
19040
19041 2008-04-20  Bruno Haible  <bruno@clisp.org>
19042
19043         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
19044         config.h. Provide _mkdir based fallback for mingw.
19045         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
19046         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
19047         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
19048         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
19049         rather than defining mkdir in config.h.
19050         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
19051         (gl_SYS_STAT_H_DEFAULTS): New macro.
19052         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
19053         HAVE_IO_H any more.
19054         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
19055         HAVE_DECL_MKDIR and HAVE_IO_H.
19056
19057 2008-04-20  Bruno Haible  <bruno@clisp.org>
19058
19059         * lib/isapipe.c: Port to native Windows platforms.
19060
19061 2008-04-20  Bruno Haible  <bruno@clisp.org>
19062
19063         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
19064
19065 2008-04-21  Eric Blake  <ebb9@byu.net>
19066
19067         Work around preprocessors that don't handle UINTMAX_MAX.
19068         * lib/memchr2.c (memchr2): Avoid embedded #if.
19069         Reported by Alain Guibert, fix suggested by Bruno Haible.
19070
19071 2008-04-21  Simon Josefsson  <simon@josefsson.org>
19072
19073         * doc/posix-functions/strftime.texi (strftime): Explain better
19074         Windows incompatibility.  Suggested by Micah Cowan
19075         <micah@cowan.name>.
19076
19077 2008-04-20  Bruno Haible  <bruno@clisp.org>
19078
19079         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
19080         unistr/u8-mblen.
19081
19082 2008-04-20  Bruno Haible  <bruno@clisp.org>
19083
19084         Fix test failure on platforms with non-GNU iconv.
19085         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
19086         (U_TO_U8): Use it, rather than u16_to_u8.
19087         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
19088         units at the end of the input string.
19089         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
19090
19091 2008-04-20  Bruno Haible  <bruno@clisp.org>
19092
19093         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
19094         when the resulting length is 0.
19095         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
19096
19097 2008-04-20  Bruno Haible  <bruno@clisp.org>
19098
19099         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
19100         works.
19101         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
19102
19103 2008-04-20  Bruno Haible  <bruno@clisp.org>
19104
19105         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
19106         * modules/tsearch-tests (configure.ac): Test for initstate function.
19107
19108 2008-04-20  Bruno Haible  <bruno@clisp.org>
19109
19110         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
19111         for nlink_t if missing.
19112         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
19113
19114 2008-04-19  Bruno Haible  <bruno@clisp.org>
19115
19116         Work around snprintf bug on Linux libc5.
19117         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
19118         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
19119         gl_SNPRINTF_SIZE1.
19120         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
19121         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
19122         that test failed.
19123         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
19124         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
19125         * modules/snprintf (Files): Add m4/printf.m4.
19126         * modules/vsnprintf (Files): Likewise.
19127         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
19128         * doc/posix-functions/vsnprintf.texi: Likewise.
19129
19130 2008-04-19  Bruno Haible  <bruno@clisp.org>
19131
19132         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
19133         from 0.0058 to less than 10^-7.
19134
19135 2008-04-19  Bruno Haible  <bruno@clisp.org>
19136
19137         Fix rounding when a precision is given.
19138         * lib/vasnprintf.c (is_borderline): New function.
19139         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
19140         9...9x.
19141         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
19142         %e, %g.
19143         * tests/test-vasprintf-posix.c (test_function): Likewise.
19144         * tests/test-snprintf-posix.h (test_function): Likewise.
19145         * tests/test-sprintf-posix.h (test_function): Likewise.
19146         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
19147         * tests/test-printf-posix.h (test_function): Likewise.
19148         * tests/test-printf-posix.output: Update.
19149         Reported by John Darrington <john@darrington.wattle.id.au> via
19150         Ben Pfaff <blp@cs.stanford.edu>.
19151
19152 2008-04-18  Simon Josefsson  <simon@josefsson.org>
19153
19154         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
19155         Suggested by Bruno Haible <bruno@clisp.org>.
19156
19157 2008-04-17  Bruno Haible  <bruno@clisp.org>
19158
19159         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
19160         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
19161         implementation.
19162         Patch by Bruce Merry <bmerry@gmail.com>.
19163
19164 2008-04-17  Simon Josefsson  <simon@josefsson.org>
19165
19166         * doc/posix-functions/strftime.texi (strftime): Mention that %e
19167         doesn't work under Windows.
19168
19169 2008-04-16  Bruno Haible  <bruno@clisp.org>
19170
19171         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
19172         New macros.
19173         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
19174         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
19175         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
19176         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
19177         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
19178         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
19179         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
19180         macros.
19181         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
19182         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
19183         Northern Sotho, Uighur.
19184
19185 2008-04-16  Bruno Haible  <bruno@clisp.org>
19186
19187         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
19188         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
19189         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
19190         Reported by Daniel Bergström <daniel@octocode.com>.
19191
19192 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
19193             Bruno Haible  <bruno@clisp.org>
19194
19195         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
19196         function.
19197         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
19198         New functions, mostly extracted from gl_locale_name_default.
19199         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
19200
19201 2008-04-16  Eric Blake  <ebb9@byu.net>
19202
19203         Adjust strtod detection to catch glibc 2.7 bug.
19204         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
19205         Reported by John Gatewood Ham.
19206
19207 2008-04-16  Bruno Haible  <bruno@clisp.org>
19208
19209         Add tentative support for Linux libc5.
19210         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
19211         * lib/fpurge.c (fpurge): Likewise.
19212         * lib/freadable.c (freadable): Likewise.
19213         * lib/freadahead.c (freadahead): Likewise.
19214         * lib/freading.c (freading): Likewise.
19215         * lib/freadptr.c (freadptr): Likewise.
19216         * lib/freadseek.c (freadptrinc): Likewise.
19217         * lib/fseeko.c (rpl_fseeko): Likewise.
19218         * lib/fseterr.c (fseterr): Likewise.
19219         * lib/fwritable.c (fwritable): Likewise.
19220         * lib/fwriting.c (fwriting): Likewise.
19221         Reported by Alain Guibert <alguibert+bts@free.fr>.
19222
19223 2008-04-15  Bruno Haible  <bruno@clisp.org>
19224
19225         * modules/mathl (configure.ac): Define module indicator.
19226
19227 2008-04-15  Bruno Haible  <bruno@clisp.org>
19228
19229         * lib/logl.c (logl): Remove unused variables.
19230
19231 2008-04-15  Bruno Haible  <bruno@clisp.org>
19232
19233         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
19234         fails.
19235
19236 2008-04-15  Bruno Haible  <bruno@clisp.org>
19237
19238         * lib/trim.c (trim2): Fix argument of isspace() macro.
19239
19240 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
19241
19242         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
19243         to 0.
19244         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
19245
19246 2008-04-14  Bruno Haible  <bruno@clisp.org>
19247
19248         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
19249         AC_LANG_PROGRAM argument.
19250         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
19251         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
19252         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
19253         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
19254         * m4/math_h.m4 (gl_MATH_H): Likewise.
19255         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
19256         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
19257         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
19258         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
19259         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
19260         * m4/regex.m4 (gl_REGEX): Likewise.
19261         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
19262         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
19263         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
19264         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
19265         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
19266         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
19267         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
19268         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
19269
19270 2008-04-14  Jim Meyering  <meyering@redhat.com>
19271
19272         test-strtod: fix typos: s/abs/fabs/
19273         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
19274
19275 2008-04-13  Bruno Haible  <bruno@clisp.org>
19276
19277         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
19278         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
19279         module is also used and while not building the reloc-wrapper.
19280
19281 2008-04-13  Bruno Haible  <bruno@clisp.org>
19282
19283         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
19284
19285 2008-04-13  Bruno Haible  <bruno@clisp.org>
19286
19287         Fix AIX compilation failure introduced on 2008-04-02.
19288         * tests/test-frexp.c (exp): Undefine before redefining.
19289         * tests/test-frexpl.c (exp): Likewise.
19290
19291 2008-04-13  Bruno Haible  <bruno@clisp.org>
19292
19293         Work around a HP-UX stdio bug.
19294         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
19295         * tests/test-ftello.c (main): Likewise.
19296         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
19297         * doc/posix-functions/ftello.texi: Likewise.
19298
19299 2008-04-13  Bruno Haible  <bruno@clisp.org>
19300
19301         Make test-signbit pass on HP-UX/hppa.
19302         * tests/test-signbit.c (minus_zerol): New variable.
19303         (test_signbitl): Use it.
19304
19305 2008-04-13  Bruno Haible  <bruno@clisp.org>
19306
19307         Make truncl work on OSF/1 4.0.
19308         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
19309         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19310         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19311         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
19312         HAVE_DECL_TRUNCL.
19313         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
19314         HAVE_DECL_TRUNCL.
19315         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
19316
19317 2008-04-13  Bruno Haible  <bruno@clisp.org>
19318
19319         * lib/unictype.h: Remove trailing comma from enumeration definitions.
19320
19321 2008-04-13  Bruno Haible  <bruno@clisp.org>
19322
19323         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
19324         expression, so as to avoid HP-UX 11 cc compiler bug.
19325
19326 2008-04-13  Bruno Haible  <bruno@clisp.org>
19327
19328         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
19329
19330 2008-04-13  Bruno Haible  <bruno@clisp.org>
19331
19332         * lib/git-merge-changelog.c: Remove empty declaration outside of
19333         functions.
19334
19335 2008-04-13  Bruno Haible  <bruno@clisp.org>
19336
19337         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
19338
19339 2008-04-13  Bruno Haible  <bruno@clisp.org>
19340
19341         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
19342         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
19343         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
19344         also if it exists but lacks definitions of the SHUT_* macros.
19345         * modules/sys_socket (Description): Update.
19346         Reported by Elbert Pol <e.pol@chello.nl>.
19347
19348 2008-04-13  Bruno Haible  <bruno@clisp.org>
19349
19350         * lib/localcharset.c (OS2): Don't redefine if already defined.
19351         Reported by Elbert Pol <e.pol@chello.nl>.
19352
19353 2008-04-13  Bruno Haible  <bruno@clisp.org>
19354
19355         * lib/binary-io.h [__EMX__]: Include <io.h>.
19356         Reported by Elbert Pol <e.pol@chello.nl>.
19357
19358 2008-04-12  Bruno Haible  <bruno@clisp.org>
19359
19360         * lib/fpucw.h: Enable the definitions also for x86_64.
19361         Needed for NetBSD/x86_64.
19362         Reported by Thomas Klausner <tk@giga.or.at>.
19363
19364 2008-04-12  Bruno Haible  <bruno@clisp.org>
19365
19366         * tests/test-strtod.c: Include isnand.h.
19367         (main): Use isnand instead of isnan.
19368         Reported by Jim Meyering.
19369
19370 2008-04-12  Bruno Haible  <bruno@clisp.org>
19371
19372         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
19373         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
19374
19375 2008-04-12  Jim Meyering  <meyering@redhat.com>
19376
19377         * m4/math_h.m4 (gl_MATH_H): Fix typos.
19378
19379 2008-04-12  Bruno Haible  <bruno@clisp.org>
19380
19381         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
19382         Reported by Elbert Pol <e.pol@chello.nl>.
19383
19384 2008-04-12  Eric Blake  <ebb9@byu.net>
19385
19386         Work around Solaris 10 math.h bug.
19387         * m4/math_h.m4 (gl_MATH_H): Check for bug.
19388         (gl_MATH_H_DEFAULTS): Set up default.
19389         * modules/math (Makefile.am): Replace new indicators.
19390         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
19391         * tests/test-math.c (main): Test this.
19392         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
19393         * doc/posix-headers/math.texi (math.h): Mention bug.
19394         Reported by Nelson H. F. Beebe and Jim Meyering.
19395
19396 2008-04-11  Bruno Haible  <bruno@clisp.org>
19397
19398         Adapt to future versions of Apple GCC.
19399         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
19400         Reported by Peter O'Gorman <peter@pogma.com>.
19401
19402 2008-04-11  Bruno Haible  <bruno@clisp.org>
19403
19404         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
19405
19406 2008-04-11  Bruno Haible  <bruno@clisp.org>
19407
19408         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
19409
19410         * modules/getaddrinfo-tests (Makefile.am): Define
19411         test_getaddrinfo_LDADD.
19412
19413 2008-04-11  Bruno Haible  <bruno@clisp.org>
19414
19415         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
19416         (init): Fix syntax error.
19417         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
19418         is declared.
19419
19420 2008-04-11  Bruno Haible  <bruno@clisp.org>
19421
19422         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
19423         * modules/glob (Depends-on): Add stdbool.
19424
19425 2008-04-11  Bruno Haible  <bruno@clisp.org>
19426
19427         * lib/trim.c: Include <string.h>.
19428
19429 2008-04-11  Eric Blake  <ebb9@byu.net>
19430
19431         Avoid compile failure on OS/2.
19432         * lib/regex_internal.h (internal_function): Disable optimization
19433         on OS/2 (__EMX__), where it caused compiler error.
19434         Reported by Elbert Pol.
19435
19436 2008-04-11  Bruno Haible  <bruno@clisp.org>
19437
19438         Flush the standard error stream before aborting. Needed on mingw.
19439         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
19440         * tests/test-array_list.c (ASSERT): Likewise.
19441         * tests/test-array_oset.c (ASSERT): Likewise.
19442         * tests/test-avltree_list.c (ASSERT): Likewise.
19443         * tests/test-avltree_oset.c (ASSERT): Likewise.
19444         * tests/test-avltreehash_list.c (ASSERT): Likewise.
19445         * tests/test-binary-io.c (ASSERT): Likewise.
19446         * tests/test-byteswap.c (ASSERT): Likewise.
19447         * tests/test-c-ctype.c (ASSERT): Likewise.
19448         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
19449         * tests/test-c-strcasestr.c (ASSERT): Likewise.
19450         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
19451         * tests/test-c-strstr.c (ASSERT): Likewise.
19452         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
19453         * tests/test-canonicalize.c (ASSERT): Likewise.
19454         * tests/test-carray_list.c (ASSERT): Likewise.
19455         * tests/test-ceilf1.c (ASSERT): Likewise.
19456         * tests/test-ceilf2.c (ASSERT): Likewise.
19457         * tests/test-ceill.c (ASSERT): Likewise.
19458         * tests/test-count-one-bits.c (ASSERT): Likewise.
19459         * tests/test-fbufmode.c (ASSERT): Likewise.
19460         * tests/test-fflush2.c (ASSERT): Likewise.
19461         * tests/test-floorf1.c (ASSERT): Likewise.
19462         * tests/test-floorf2.c (ASSERT): Likewise.
19463         * tests/test-floorl.c (ASSERT): Likewise.
19464         * tests/test-fopen.c (ASSERT): Likewise.
19465         * tests/test-fpending.c (ASSERT): Likewise.
19466         * tests/test-fprintf-posix.c (ASSERT): Likewise.
19467         * tests/test-fpurge.c (ASSERT): Likewise.
19468         * tests/test-freadable.c (ASSERT): Likewise.
19469         * tests/test-freadahead.c (ASSERT): Likewise.
19470         * tests/test-freading.c (ASSERT): Likewise.
19471         * tests/test-freadptr.c (ASSERT): Likewise.
19472         * tests/test-freadptr2.c (ASSERT): Likewise.
19473         * tests/test-freadseek.c (ASSERT): Likewise.
19474         * tests/test-freopen.c (ASSERT): Likewise.
19475         * tests/test-frexp.c (ASSERT): Likewise.
19476         * tests/test-frexpl.c (ASSERT): Likewise.
19477         * tests/test-fseek.c (ASSERT): Likewise.
19478         * tests/test-fseeko.c (ASSERT): Likewise.
19479         * tests/test-fstrcmp.c (ASSERT): Likewise.
19480         * tests/test-ftell.c (ASSERT): Likewise.
19481         * tests/test-ftello.c (ASSERT): Likewise.
19482         * tests/test-func.c (ASSERT): Likewise.
19483         * tests/test-fwritable.c (ASSERT): Likewise.
19484         * tests/test-fwriting.c (ASSERT): Likewise.
19485         * tests/test-getdelim.c (ASSERT): Likewise.
19486         * tests/test-getline.c (ASSERT): Likewise.
19487         * tests/test-i-ring.c (ASSERT): Likewise.
19488         * tests/test-iconv-utf.c (ASSERT): Likewise.
19489         * tests/test-iconv.c (ASSERT): Likewise.
19490         * tests/test-isfinite.c (ASSERT): Likewise.
19491         * tests/test-isnand.c (ASSERT): Likewise.
19492         * tests/test-isnanf.c (ASSERT): Likewise.
19493         * tests/test-isnanl.h (ASSERT): Likewise.
19494         * tests/test-ldexpl.c (ASSERT): Likewise.
19495         * tests/test-linked_list.c (ASSERT): Likewise.
19496         * tests/test-linkedhash_list.c (ASSERT): Likewise.
19497         * tests/test-localename.c (ASSERT): Likewise.
19498         * tests/test-lseek.c (ASSERT): Likewise.
19499         * tests/test-mbscasecmp.c (ASSERT): Likewise.
19500         * tests/test-mbscasestr1.c (ASSERT): Likewise.
19501         * tests/test-mbscasestr2.c (ASSERT): Likewise.
19502         * tests/test-mbscasestr3.c (ASSERT): Likewise.
19503         * tests/test-mbscasestr4.c (ASSERT): Likewise.
19504         * tests/test-mbschr.c (ASSERT): Likewise.
19505         * tests/test-mbscspn.c (ASSERT): Likewise.
19506         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
19507         * tests/test-mbspbrk.c (ASSERT): Likewise.
19508         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
19509         * tests/test-mbsrchr.c (ASSERT): Likewise.
19510         * tests/test-mbsspn.c (ASSERT): Likewise.
19511         * tests/test-mbsstr1.c (ASSERT): Likewise.
19512         * tests/test-mbsstr2.c (ASSERT): Likewise.
19513         * tests/test-mbsstr3.c (ASSERT): Likewise.
19514         * tests/test-memchr2.c (ASSERT): Likewise.
19515         * tests/test-memmem.c (ASSERT): Likewise.
19516         * tests/test-open.c (ASSERT): Likewise.
19517         * tests/test-printf-frexp.c (ASSERT): Likewise.
19518         * tests/test-printf-frexpl.c (ASSERT): Likewise.
19519         * tests/test-printf-posix.c (ASSERT): Likewise.
19520         * tests/test-quotearg.c (ASSERT): Likewise.
19521         * tests/test-rbtree_list.c (ASSERT): Likewise.
19522         * tests/test-rbtree_oset.c (ASSERT): Likewise.
19523         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
19524         * tests/test-round1.c (ASSERT): Likewise.
19525         * tests/test-roundf1.c (ASSERT): Likewise.
19526         * tests/test-roundl.c (ASSERT): Likewise.
19527         * tests/test-signbit.c (ASSERT): Likewise.
19528         * tests/test-sleep.c (ASSERT): Likewise.
19529         * tests/test-snprintf-posix.c (ASSERT): Likewise.
19530         * tests/test-snprintf.c (ASSERT): Likewise.
19531         * tests/test-sprintf-posix.c (ASSERT): Likewise.
19532         * tests/test-stat-time.c (ASSERT): Likewise.
19533         * tests/test-strcasestr.c (ASSERT): Likewise.
19534         * tests/test-strerror.c (ASSERT): Likewise.
19535         * tests/test-striconv.c (ASSERT): Likewise.
19536         * tests/test-striconveh.c (ASSERT): Likewise.
19537         * tests/test-striconveha.c (ASSERT): Likewise.
19538         * tests/test-strsignal.c (ASSERT): Likewise.
19539         * tests/test-strstr.c (ASSERT): Likewise.
19540         * tests/test-strtod.c (ASSERT): Likewise.
19541         * tests/test-trunc1.c (ASSERT): Likewise.
19542         * tests/test-trunc2.c (ASSERT): Likewise.
19543         * tests/test-truncf1.c (ASSERT): Likewise.
19544         * tests/test-truncf2.c (ASSERT): Likewise.
19545         * tests/test-truncl.c (ASSERT): Likewise.
19546         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
19547         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
19548         * tests/test-vasnprintf.c (ASSERT): Likewise.
19549         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
19550         * tests/test-vasprintf.c (ASSERT): Likewise.
19551         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
19552         * tests/test-vprintf-posix.c (ASSERT): Likewise.
19553         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
19554         * tests/test-vsnprintf.c (ASSERT): Likewise.
19555         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
19556         * tests/test-wcwidth.c (ASSERT): Likewise.
19557         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
19558         * tests/test-xprintf-posix.c (ASSERT): Likewise.
19559         * tests/test-xvasprintf.c (ASSERT): Likewise.
19560         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
19561         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
19562         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
19563         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
19564         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
19565         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
19566         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
19567         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
19568         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
19569         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
19570         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
19571         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
19572         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
19573         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
19574         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
19575         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
19576         * tests/unictype/test-block_list.c (ASSERT): Likewise.
19577         * tests/unictype/test-block_of.c (ASSERT): Likewise.
19578         * tests/unictype/test-block_test.c (ASSERT): Likewise.
19579         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
19580         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
19581         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
19582         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
19583         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
19584         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
19585         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
19586         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
19587         * tests/unictype/test-combining.c (ASSERT): Likewise.
19588         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
19589         * tests/unictype/test-digit.c (ASSERT): Likewise.
19590         * tests/unictype/test-mirror.c (ASSERT): Likewise.
19591         * tests/unictype/test-numeric.c (ASSERT): Likewise.
19592         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
19593         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
19594         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
19595         * tests/unictype/test-scripts.c (ASSERT): Likewise.
19596         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
19597         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
19598         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
19599         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
19600         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
19601         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
19602         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
19603         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
19604         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
19605         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
19606         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
19607         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
19608         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
19609         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
19610         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
19611         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
19612         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
19613         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
19614         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
19615         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
19616         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
19617         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
19618         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
19619         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
19620         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
19621         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
19622         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
19623         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
19624         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
19625         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
19626         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
19627         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
19628         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
19629         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
19630         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
19631         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
19632         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
19633         Reported by Eric Blake.
19634
19635 2008-04-11  Bruno Haible  <bruno@clisp.org>
19636
19637         * lib/wchar.in.h: Tweak comment.
19638
19639 2008-04-11  Bruno Haible  <bruno@clisp.org>
19640
19641         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
19642         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
19643         gl_COMMON.
19644         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
19645
19646 2008-04-11  Bruno Haible  <bruno@clisp.org>
19647
19648         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
19649
19650 2008-04-11  Simon Josefsson  <simon@josefsson.org>
19651
19652         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
19653         of attempting to use non-existing /dev/*random.  Based on patch
19654         from Adam Strzelecki <ono@java.pl> in
19655         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
19656
19657 2008-04-08  Bruno Haible  <bruno@clisp.org>
19658
19659         Add tentative support for emx+gcc.
19660         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
19661         * lib/fpurge.c (fpurge): Likewise.
19662         * lib/freadable.c (freadable): Likewise.
19663         * lib/freadahead.c (freadahead): Likewise.
19664         * lib/freading.c (freading): Likewise.
19665         * lib/freadptr.c (freadptr): Likewise.
19666         * lib/freadseek.c (freadptrinc): Likewise.
19667         * lib/fseeko.c (rpl_fseeko): Likewise.
19668         * lib/fseterr.c (fseterr): Likewise.
19669         * lib/fwritable.c (fwritable): Likewise.
19670         * lib/fwriting.c (fwriting): Likewise.
19671         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
19672
19673 2008-04-09  Eric Blake  <ebb9@byu.net>
19674
19675         Avoid some autoconf warnings.
19676         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
19677         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
19678         * m4/afs.m4 (gl_AFS): Likewise.
19679         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
19680         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
19681         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19682         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
19683         (gl_INTEGER_TYPE_SUFFIX): Likewise.
19684         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
19685         (AC_CHECK_DECLS_ONCE): Likewise.
19686         Rename file...
19687         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
19688         gnulib-tool requires autoconf 2.59 or better.
19689         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
19690
19691 2008-04-08  Eric Blake  <ebb9@byu.net>
19692
19693         Use 'git describe --match' if present (added in git 1.5.5).
19694         * build-aux/git-version-gen: Limit result to tags that match 'v*'
19695         if possible.
19696
19697 2008-04-08  Bruno Haible  <bruno@clisp.org>
19698
19699         Add tentative support for OpenServer.
19700         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
19701         _ptr, _cnt.
19702         * lib/fpurge.c (fpurge): Likewise.
19703         * lib/freadable.c (freadable): Likewise.
19704         * lib/freadahead.c (freadahead): Likewise.
19705         * lib/freading.c (freading): Likewise.
19706         * lib/freadptr.c (freadptr): Likewise.
19707         * lib/freadseek.c (freadptrinc): Likewise.
19708         * lib/fseeko.c (rpl_fseeko): Likewise.
19709         * lib/fseterr.c (fseterr): Likewise.
19710         * lib/fwritable.c (fwritable): Likewise.
19711         * lib/fwriting.c (fwriting): Likewise.
19712         Reported by Roger Cornelius <rac@tenzing.org> and
19713         Brian K. White <brian@aljex.com>.
19714
19715 2008-04-06  Jim Meyering  <meyering@redhat.com>
19716
19717         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
19718
19719 2008-04-06  Bruno Haible  <bruno@clisp.org>
19720
19721         Avoid possible error with non-ASCII bytes in UTF-8 locales.
19722         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
19723         * tests/test-printf-posix.sh: Likewise.
19724         * tests/test-vfprintf-posix.sh: Likewise.
19725         * tests/test-vprintf-posix.sh: Likewise.
19726         * tests/test-xprintf-posix.sh: Likewise.
19727
19728 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19729
19730         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
19731         hide error from 'ls', needed on OS/2.
19732         Report by Elbert Pol <elbert.pol@gmail.com>.
19733
19734 2008-04-04  Eric Blake  <ebb9@byu.net>
19735
19736         Make test-fseeko.c failures meaningful.
19737         * tests/test-fseeko.c: Print line number on failure.
19738         * tests/test-fseek.c: Likewise.
19739         Reported by Nelson H. F. Beebe.
19740
19741         Improve strtod bug detection check.
19742         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
19743         required for Solaris 10.
19744         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
19745
19746 2008-04-04  Bruno Haible  <bruno@clisp.org>
19747
19748         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
19749         by m4/setenv.m4.
19750
19751 2008-04-03  Eric Blake  <ebb9@byu.net>
19752
19753         Ensure sane .version contents.
19754         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
19755         version string.
19756         * build-aux/git-version-gen: Improve documentation.
19757
19758         Make GNU make output nicer.
19759         * top/GNUmakefile [!_have-Makefile]: Add dependency on
19760         MAKECMDGOALS to enforce message for all command line targets.  Set
19761         srcdir for use in maint.mk.
19762
19763         Another maintainer tweak.
19764         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
19765         a target that regenerates version.
19766
19767 2008-04-03  Jim Meyering  <meyering@redhat.com>
19768
19769         vc-list-files: don't cause coreutils "make po-check" failure
19770         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
19771
19772 2008-04-03  Eric Blake  <ebb9@byu.net>
19773
19774         Allow VPATH usage of vc-list-files.
19775         * build-aux/vc-list-files (scriptversion): Add timestamp.
19776         (options): Add --help, --version, -C.
19777         (CVS): Support installed cvsu.
19778
19779 2008-04-02  Bruno Haible  <bruno@clisp.org>
19780
19781         Avoid some "statement with no effect" warnings from gcc.
19782         * tests/test-wctype.c (main): Explicitly ignore unused values.
19783         Reported by Jim Meyering.
19784
19785 2008-04-02  Jim Meyering  <meyering@redhat.com>
19786
19787         Avoid some warnings from "gcc -Wshadow".
19788         * tests/test-frexp.c (exp): Define to a different identifier.
19789         * tests/test-frexpl.c (exp): Likewise.
19790
19791 2008-04-03  Jim Meyering  <meyering@redhat.com>
19792
19793         bootstrap: remove dangling *.[ch] symlinks from lib
19794         * build-aux/bootstrap [dangling symlink removal]: Move find's
19795         -depth option to precede all others, to avoid a warning.
19796         Remove *.[ch] files too, and from "$source_base" (usually lib/).
19797
19798 2008-04-02  Bruno Haible  <bruno@clisp.org>
19799
19800         Avoid some warnings from "gcc -Wshadow".
19801         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
19802         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
19803         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
19804         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
19805         Reported by Jim Meyering.
19806
19807 2008-04-01  Bruno Haible  <bruno@clisp.org>
19808
19809         Fix test to work on IRIX 6.5 with cc.
19810         * tests/test-math.c (numeric_equal): New function.
19811         (main): Use it.
19812
19813 2008-04-01  Bruno Haible  <bruno@clisp.org>
19814
19815         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
19816
19817 2008-04-01  Bruno Haible  <bruno@clisp.org>
19818
19819         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
19820         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19821         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
19822         (Depends-on): Remove math.
19823
19824         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
19825         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19826         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
19827         (Depends-on): Remove math.
19828
19829         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
19830         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19831         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
19832         (Depends-on): Remove math.
19833         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
19834         (Depends-on): Remove math.
19835
19836         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
19837         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19838         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
19839         (Depends-on): Remove math.
19840         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
19841         (Depends-on): Remove math.
19842
19843         * tests/test-round1.c: Include nan.h.
19844         (main): Use NaNd instead of NAN.
19845         * modules/round-tests (Files): Add tests/nan.h.
19846
19847         * tests/test-trunc1.c: Include nan.h.
19848         (main): Use NaNd instead of NAN.
19849         * modules/trunc-tests (Files): Add tests/nan.h.
19850
19851         * tests/test-roundf1.c: Include nan.h.
19852         (main): Use NaNf instead of NAN.
19853         * modules/roundf-tests (Files): Add tests/nan.h.
19854
19855         * tests/test-truncf1.c: Include nan.h.
19856         (main): Use NaNf instead of NAN.
19857         * modules/truncf-tests (Files): Add tests/nan.h.
19858
19859         * tests/test-ceilf1.c: Include nan.h.
19860         (main): Use NaNf instead of NAN.
19861         * modules/ceilf-tests (Files): Add tests/nan.h.
19862
19863         * tests/test-floorf1.c: Include nan.h.
19864         (main): Use NaNf instead of NAN.
19865         * modules/floorf-tests (Files): Add tests/nan.h.
19866
19867         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
19868         (main): Use NaNf instead of NAN.
19869         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
19870
19871         * tests/test-isnand.c: Include nan.h instead of <math.h>.
19872         (main): Use NaNd instead of NAN.
19873         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
19874
19875         * tests/test-frexp.c: Include nan.h.
19876         (main): Use NaNd instead of NAN.
19877         * modules/frexp-tests (Files): Add tests/nan.h.
19878
19879         * lib/isnan.c: Don't include <math.h>.
19880         (FUNC): Don't use NAN macro.
19881         * modules/isnand-nolibm (Depends-on): Remove math.
19882         * modules/isnanf-nolibm (Depends-on): Remove math.
19883         * modules/isnanl (Depends-on): Remove math.
19884         * modules/isnanl-nolibm (Depends-on): Remove math.
19885
19886         * tests/nan.h: New file.
19887
19888 2008-04-01  Eric Blake  <ebb9@byu.net>
19889
19890         Fix typos.
19891         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
19892         values to be the right type.
19893
19894         For now, cater to gnulib strtod inaccuracies.
19895         * tests/test-strtod.c (main): Allow 1-ulp error on expected
19896         fractional results.  While not as nice from a QoI perspective, it
19897         is a quicker patch than correctly implementing decimal to binary
19898         rounding.
19899
19900 2008-03-31  Eric Blake  <ebb9@byu.net>
19901
19902         Guarantee a definition of NAN.
19903         * lib/math.in.h (NAN): Define if missing.
19904         * tests/test-math.c (main): Test it.
19905         * doc/posix-headers/math.texi (math.h): Document this.
19906         * lib/isnan.c (rpl_isnand): Use it.
19907         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
19908         * tests/test-floorf1.c (NaN): Likewise.
19909         * tests/test-frexp.c (NaN): Likewise.
19910         * tests/test-isnand.c (NaN): Likewise.
19911         * tests/test-isnanf.c (NaN): Likewise.
19912         * tests/test-round1.c (NaN): Likewise.
19913         * tests/test-roundf1.c (NaN): Likewise.
19914         * tests/test-snprintf-posix.h (NaN): Likewise.
19915         * tests/test-sprintf-posix.h (NaN): Likewise.
19916         * tests/test-trunc1.c (NaN): Likewise.
19917         * tests/test-truncf1.c (NaN): Likewise.
19918         * tests/test-vasnprintf-posix.c (NaN): Likewise.
19919         * tests/test-vasprintf-posix.c (NaN): Likewise.
19920         * modules/isnand-nolibm (Depends-on): Add math.
19921         * modules/isnanf-nolibm (Depends-on): Likewise.
19922         * modules/isnanl (Depends-on): Likewise.
19923         * modules/isnanl-nolibm (Depends-on): Likewise.
19924         * modules/snprintf-posix-tests (Depends-on): Likewise.
19925         * modules/sprintf-posix-tests (Depends-on): Likewise.
19926         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
19927         * modules/vsprintf-posix-tests (Depends-on): Likewise.
19928         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
19929         * modules/vasprintf-posix-tests (Depends-on): Likewise.
19930
19931 2008-03-31  Bruno Haible  <bruno@clisp.org>
19932
19933         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
19934         * doc/posix-functions/strtod.texi: Likewise.
19935
19936 2008-03-31  Bruno Haible  <bruno@clisp.org>
19937
19938         * tests/test-strtod.c (main): Don't use C99 syntax.
19939
19940 2008-03-31  Bruno Haible  <bruno@clisp.org>
19941
19942         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
19943         Reported by Eric Blake.
19944
19945 2008-03-31  Jim Meyering  <meyering@redhat.com>
19946
19947         Don't compare actual signbit return values.
19948         * tests/test-strtod.c (main): Rather, compare only their
19949         zero/non-zero nature.
19950
19951 2008-03-31  Eric Blake  <ebb9@byu.net>
19952
19953         More strtod documentation.
19954         * doc/posix-functions/strtod.texi (strtod): Interpret more test
19955         failures as distinct bugs.
19956
19957 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
19958
19959         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
19960         Problem reported by Erik Benada in
19961         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
19962
19963 2008-03-30  Bruno Haible  <bruno@clisp.org>
19964
19965         * tests/test-strtod.c: Add comments about which assertion fails on which
19966         platform.
19967         * doc/posix-functions/strtod.texi: Add info about many more platforms.
19968
19969 2008-03-30  Eric Blake  <ebb9@byu.net>
19970
19971         Test signbit behavior on zeros.
19972         * tests/test-signbit.c (test_signbitf): Add tests for zero.
19973         (test_signbitd, test_signbitl): Likewise.
19974
19975         More strtod touchups.
19976         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
19977         sign of negative underflow, for now.  Use .5, not .1.
19978         * doc/posix-functions/strtod.texi (strtod): Mention these
19979         limitations.
19980         Reported by Jim Meyering.
19981
19982 2008-03-30  Bruno Haible  <bruno@clisp.org>
19983
19984         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
19985         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
19986
19987 2008-03-30  Bruno Haible  <bruno@clisp.org>
19988
19989         Avoid failure when attempting to return empty iconv results on some
19990         platforms.
19991         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
19992         allocation, don't report ENOMEM when the resulting string is empty.
19993
19994 2008-03-30  Bruno Haible  <bruno@clisp.org>
19995
19996         Fix buffer overrun.
19997         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
19998         Don't consider the width for tmp_length. Check count against tmp_length
19999         before doing the padding. Ensure enough allocation during padding.
20000
20001 2008-03-30  Eric Blake  <ebb9@byu.net>
20002
20003         strtod touchups.
20004         * lib/strtod.c (strtod): Avoid compiler warnings.
20005         Reported by Jim Meyering.
20006
20007 2008-03-30  Bruno Haible  <bruno@clisp.org>
20008
20009         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
20010         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
20011         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
20012         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
20013         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
20014         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
20015         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
20016         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
20017
20018         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
20019         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
20020         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
20021         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
20022         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
20023         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
20024         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
20025         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
20026
20027         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
20028         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
20029         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
20030         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
20031         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
20032         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
20033         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
20034         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
20035
20036         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
20037         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
20038
20039         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
20040         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
20041
20042         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
20043         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
20044
20045         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
20046         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
20047         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
20048
20049         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
20050         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
20051         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
20052
20053         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
20054         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
20055         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
20056
20057         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
20058         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
20059         * modules/vasprintf (Depends-on): Add EOVERFLOW.
20060
20061         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
20062         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
20063         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
20064         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
20065         (Depends-on): Add EOVERFLOW.
20066         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
20067         (Depends-on): Add EOVERFLOW.
20068         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
20069         (Depends-on): Add EOVERFLOW.
20070         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
20071         (Depends-on): Add EOVERFLOW.
20072         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
20073         (Depends-on): Add EOVERFLOW.
20074         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
20075         (Depends-on): Add EOVERFLOW.
20076         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
20077         (Depends-on): Add EOVERFLOW.
20078         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
20079         (Depends-on): Add EOVERFLOW.
20080
20081         * lib/sprintf.c (EOVERFLOW): Remove fallback.
20082         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
20083         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
20084
20085         * lib/snprintf.c (EOVERFLOW): Remove fallback.
20086         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
20087         * modules/snprintf (Depends-on): Add EOVERFLOW.
20088
20089         * lib/poll.c (EOVERFLOW): Remove fallback.
20090         * modules/poll (Depends-on): Add EOVERFLOW.
20091
20092         * lib/getugroups.c (EOVERFLOW): Remove fallback.
20093         * modules/getugroups (Depends-on): Add EOVERFLOW.
20094
20095         * lib/getdelim.c (EOVERFLOW): Remove fallback.
20096         * modules/getdelim (Depends-on): Add EOVERFLOW.
20097
20098         * lib/ftell.c (EOVERFLOW): Remove fallback.
20099         * modules/ftell (Depends-on): Add EOVERFLOW.
20100
20101         * lib/fprintf.c (EOVERFLOW): Remove fallback.
20102         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
20103         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
20104
20105         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
20106
20107         * modules/EOVERFLOW-tests: New file.
20108         * tests/test-EOVERFLOW.c: New file.
20109
20110         * modules/EOVERFLOW: New file.
20111         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
20112
20113 2008-03-30  Bruno Haible  <bruno@clisp.org>
20114
20115         Fix bug introduced on 2007-06-10.
20116         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
20117         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
20118
20119 2008-03-30  Bruno Haible  <bruno@clisp.org>
20120
20121         Improve freadseek's efficiency after ungetc.
20122         * lib/freadseek.c: Include freadahead.h.
20123         (freadptrinc): New function, extracted from freadseek.
20124         (freadseek): Use it in a loop. Use freadahead to determine the number
20125         of loop iterations.
20126         * modules/freadseek (Depends-on): Add freadahead.
20127         (configure.ac): Require AC_C_INLINE.
20128
20129 2008-03-30  Bruno Haible  <bruno@clisp.org>
20130
20131         * lib/freadseek.c (freadseek): Don't ignore the return value of
20132         freadptr.
20133
20134 2008-03-29  Eric Blake  <ebb9@byu.net>
20135
20136         Add hex float support.
20137         * modules/strtod (Depends-on): Add c-ctype.
20138         (Link): Mention POW_LIB.
20139         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
20140         whitespace between 'e' and exponent.
20141         * tests/test-strtod.c (main): Enable hex float tests.
20142         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
20143         now provides.
20144
20145         Document various strtod bugs, with some fixes.
20146         * doc/posix-functions/strtod.texi (strtod): Document bugs with
20147         "-0x", "inf", "nan", and hex constants.
20148         * doc/posix-functions/atof.texi (atof): Likewise.
20149         * modules/stdlib (Makefile.am): Support strtod.
20150         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
20151         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
20152         detect additional strtod bugs.
20153         * lib/stdlib.in.h (rpl_strtod): Add declarations.
20154         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
20155         bool where appropriate.  Parse 'inf' and 'nan'.
20156         * tests/test-strtod.c: New file.
20157         * modules/strtod (Depends-on): Add stdbool, stdlib.
20158         (configure.ac): Turn on module indicator.
20159         * modules/strtod-tests: New module.
20160
20161 2008-03-29  Eric Blake  <ebb9@byu.net>
20162
20163         Fix ftell on mingw.
20164         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
20165         * modules/ftell-tests (Depends-on): Add binary-io.
20166         * modules/ftello-tests (Depends-on): Likewise.
20167         * tests/test-ftell.c (main): Enhance test to cover behavior after
20168         ungetc.  Enforce binary mode.
20169         * tests/test-ftello.c (main): Likewise.
20170
20171         Pass test-freadseek on cygwin.
20172         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
20173         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
20174         ungetc buffer.
20175
20176         * tests/test-fflush2.c (main): Fix typo.
20177
20178 2008-03-29  Bruno Haible  <bruno@clisp.org>
20179
20180         * tests/test-fflush2.c (main): Temporarily disable the contents of
20181         this test.
20182         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
20183         Reported by Eric Blake.
20184
20185 2008-03-28  Simon Josefsson  <simon@josefsson.org>
20186
20187         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
20188         (GC_SHA224_DIGEST_SIZE): Add.
20189
20190         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
20191         (gc_hash_digest_length): Likewise.
20192         (gc_hash_buffer): Likewise.
20193
20194 2008-03-25  Bruno Haible  <bruno@clisp.org>
20195
20196         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
20197         detail which gettext release to use.
20198         Reported by Simon Josefsson.
20199
20200 2008-03-26  Jim Meyering  <meyering@redhat.com>
20201
20202         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
20203         * modules/gnumakefile (clean-GNUmakefile): Also, use
20204         test ... && ... || : syntax rather than if-then ... fi.
20205
20206         gnumakefile: Don't double-quote-expand $(VPATH) value.
20207         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
20208
20209 2008-03-24  Eric Blake  <ebb9@byu.net>
20210
20211         Alter GNUmakefile to install into top directory.
20212         * modules/maintainer-makefile: Split, and add dependency...
20213         * modules/gnumakefile: to this new module.
20214         * build-aux/GNUmakefile: Move...
20215         * top/GNUmakefile: ...here.
20216         * build-aux/maint.mk: Move...
20217         * top/maint.mk: ...here.
20218         * MODULES.html.sh (Support for maintaining...): Document new
20219         module.
20220
20221 2008-03-23  Bruno Haible  <bruno@clisp.org>
20222
20223         * gnulib-tool: New options --vc-files, --no-vc-files.
20224         (func_usage): Document them.
20225         (vc_files): New variable.
20226         (func_import): Consider vc_files.
20227         (func_create_testdir): Set vc_files to empty.
20228         Suggested by Jim Meyering and Karl Berry.
20229
20230 2008-03-23  Bruno Haible  <bruno@clisp.org>
20231
20232         Fix regex compilation error on HP-UX 11.
20233         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
20234         * modules/regex (Files): Add m4/mbstate_t.m4.
20235         Reported by Ton Voon <ton.voon@altinity.com>.
20236
20237 2008-03-23  Bruno Haible  <bruno@clisp.org>
20238
20239         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
20240
20241 2008-03-23  Eric Blake  <ebb9@byu.net>
20242             Bruno Haible  <bruno@clisp.org>
20243
20244         Install files from top/ in the destination directory.
20245         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
20246         augmentation also for the files from top/.
20247         (func_import, func_create_testdir): Rewrite file names:
20248         top/filename -> filename.
20249
20250 2008-03-23  Bruno Haible  <bruno@clisp.org>
20251
20252         Tweak "gnulib --version" output.
20253         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
20254
20255 2008-03-23  Bruno Haible  <bruno@clisp.org>
20256
20257         Tweak "gnulib --version" output.
20258         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
20259         rather than contents of ChangeLog, when possible.
20260
20261 2008-03-21  Eric Blake  <ebb9@byu.net>
20262
20263         More --version tweaks.
20264         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
20265         date of last ChangeLog entry.
20266
20267 2008-03-21  Jim Meyering  <meyering@redhat.com>
20268
20269         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
20270
20271 2008-03-20  Eric Blake  <ebb9@byu.net>
20272
20273         VPATH fix.
20274         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
20275
20276 2008-03-20  Simon Josefsson  <simon@josefsson.org>
20277
20278         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
20279         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
20280
20281 2008-03-20  Eric Blake  <ebb9@byu.net>
20282
20283         Sync GNUmakefile with coreutils.
20284         * build-aux/GNUmakefile (have-Makefile): Rename...
20285         (_have-Makefile): ...to this, for namespace consideration.
20286         (GNUmakefile.cfg): Include, if present.
20287         (_autoreconf): Define a default.
20288         (_is-dist-target): New rule for rebuilds to pick up intra-release
20289         version.
20290         (maint-cfg.mk): Rename...
20291         (cfg.mk): ...to this.
20292
20293 2008-03-18  Jim Meyering  <meyering@redhat.com>
20294
20295         New script and module: mktempd
20296         * MODULES.html.sh (maint+release support): Add mktempd.
20297         * build-aux/mktempd: New file.
20298         * modules/mktempd: New file.
20299
20300 2008-03-15  Jim Meyering  <meyering@redhat.com>
20301
20302         Undo last change.
20303         * lib/sha1.c, lib/md5.c: 63 != ~63.
20304         Reported by Andreas Schwab.
20305
20306         sha1.c, md5.c: Hoist a redundant expression.
20307         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
20308         "ctx->buflen" only once, before calling *_process_block.
20309         * lib/md5.c (md5_process_bytes): Likewise.
20310
20311 2008-03-14  Eric Blake  <ebb9@byu.net>
20312
20313         Bump copyright year in files generated by gnulib-tool.
20314         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
20315         gnulib-tool, rather than hard-coding it.
20316
20317         Fix 'gnulib-tool --version' output to work with git.
20318         * gnulib-tool (func_gnulib_dir): New function, extracted from...
20319         (startup): ...here.
20320         (func_version): Use it to invoke git-version-gen, rather than
20321         relying on CVS keyword expansion.  Modernize wording.
20322         (cvsdatestamp, last_checkin_date, version): Kill unused
20323         variables.
20324
20325 2008-03-12  Jim Meyering  <meyering@redhat.com>
20326
20327         Recognize optional cast of the argument to free.
20328         * build-aux/useless-if-before-free: Update regexps.
20329
20330         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
20331
20332 2008-03-11  Bruno Haible  <bruno@clisp.org>
20333
20334         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
20335         by a single package.
20336         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
20337         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
20338         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
20339         Reported by Sam Steingold <sds@gnu.org>.
20340
20341 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
20342
20343         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
20344         repositories.
20345
20346 2008-03-11  Bruno Haible  <bruno@clisp.org>
20347
20348         Avoid conflicts between local macro definitions.
20349         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
20350         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
20351
20352 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
20353             Bruno Haible  <bruno@clisp.org>
20354
20355         Make va_copy work with some version of xlc on AIX 5.1.
20356         * lib/stdarg.in.h: New file.
20357         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
20358         On AIX, use a <stdarg.h> file substitute.
20359         * modules/stdarg (Files): Add lib/stdarg.in.h.
20360         (Depends-on): Add include_next.
20361         (Makefile.am): Build a stdarg.h substitute if requested.
20362         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
20363
20364 2008-03-10  Bruno Haible  <bruno@clisp.org>
20365
20366         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
20367         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20368         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20369
20370 2008-03-10  Bruno Haible  <bruno@clisp.org>
20371
20372         * modules/stdlib (Depends-on): Add include_next, remove
20373         absolute-header.
20374
20375 2008-03-09  Bruno Haible  <bruno@clisp.org>
20376
20377         * lib/freadahead.h (freadahead): Document more precisely.
20378         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
20379         the sum of both buffer sizes.
20380         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
20381         * NEWS: Document the change.
20382
20383 2008-03-09  Bruno Haible  <bruno@clisp.org>
20384
20385         Extend freadptr to return also the buffer size.
20386         * lib/freadptr.h (freadptr): Add sizep argument.
20387         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
20388         (freadptr): Add sizep argument. Determine buffer size like freadahead
20389         does.
20390         * tests/test-freadptr.c: Don't include freadahead.h.
20391         (main): Adapt for new calling convention of freadptr.
20392         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
20393         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
20394         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
20395         tests/test-freadptr2.sh.
20396         (Depends): Remove freadahead.
20397         (TESTS): Add test-freadptr2.sh.
20398         (check_PROGRAMS): Add test-freadptr2.
20399
20400 2008-03-09  Bruno Haible  <bruno@clisp.org>
20401
20402         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
20403         Report and solution by Simon Josefsson.
20404
20405 2008-03-06  Bruno Haible  <bruno@clisp.org>
20406
20407         Make fflush after ungetc work on BSD platforms.
20408         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
20409         * tests/test-fflush2.c: New file.
20410         * tests/test-fflush2.sh: New file.
20411         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
20412         tests/test-fflush2.c.
20413         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
20414         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
20415
20416 2008-03-06  Eric Blake  <ebb9@byu.net>
20417
20418         Likewise for ftello.
20419         * modules/ftello (Dependencies): Add extensions.
20420         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
20421
20422 2008-03-06  Bruno Haible  <bruno@clisp.org>
20423
20424         * modules/fseeko (Dependencies): Add extensions.
20425         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
20426         Needed on glibc systems.
20427
20428 2008-03-06  Bruno Haible  <bruno@clisp.org>
20429
20430         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
20431         email address.
20432         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20433
20434 2008-03-06  Bruno Haible  <bruno@clisp.org>
20435
20436         * users.txt: Add libgnupdf.
20437
20438 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20439
20440         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
20441         (Header File Substitutes, Function Substitutes,
20442         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
20443         (Build robot for gnulib): Fix typo.
20444
20445 2008-03-06  Bruno Haible  <bruno@clisp.org>
20446
20447         * doc/gnulib-tool.texi (VCS Issues): Small updates.
20448         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20449
20450 2008-03-06  Bruno Haible  <bruno@clisp.org>
20451
20452         * doc/func.texi: New file, extracted from doc/gnulib.texi.
20453         * doc/gnulib.texi: Include it.
20454
20455 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20456
20457         * modules/func (License): Change license to unlimited; there was
20458         no LGPL parts in the module anyway.
20459
20460 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20461
20462         * modules/__func__: Renamed to modules/func.
20463         * modules/__func__-tests: Renamed to modules/func-tests.
20464         * tests/test-__func__.c: Renamed to tests/test-func.c.
20465         * m4/__func__.m4: Renamed to m4/func.m4.
20466         * doc/gnulib.texi (__func__): Section renamed to func.
20467         Suggested by Eric Blake <ebb9@byu.net>.
20468
20469 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20470
20471         * doc/gnulib.texi (__func__): Use C99 terminology when talking
20472         about __func__.  Make example self-contained.  Suggested by Eric
20473         Blake <ebb9@byu.net>.
20474
20475         * tests/test-__func__.c (main): Avoid extraneous () around __func.
20476         Suggested by Eric Blake <ebb9@byu.net>.
20477
20478 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20479
20480         * modules/__func__: New file.
20481         * modules/__func__-tests: New file.
20482         * tests/test-__func__.c: New file.
20483         * m4/__func__.m4: New file.
20484         * doc/gnulib.texi (__func__): Document __func__ module.
20485
20486 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20487
20488         * modules/byteswap (License): Re-license as LGPLv2+.
20489
20490 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20491
20492         * doc/Makefile: Add pdf target.
20493
20494 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20495
20496         * modules/inline (License): Use 'unlimited', since there are only
20497         *.m4 files in this module.
20498
20499 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20500             Bruno Haible  <bruno@clisp.org>
20501
20502         Add support for HP C 7.1 on OpenVMS 8.3.
20503         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
20504
20505 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20506
20507         Update VMS specifics.
20508         * lib/getopt.c [VMS]: Remove include of unixlib.h.
20509
20510 2008-03-02  Jim Meyering  <meyering@redhat.com>
20511
20512         Remove the last dependency on the "free" module.
20513         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
20514         Reported by Bob Proulx.
20515
20516         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
20517
20518         Remove useless "if" tests before free.  Deprecate "free" module.
20519         * doc/posix-functions/free.texi: Mention that this
20520         module is no longer useful.
20521         * modules/free (Notice): Say this module is obsolete.
20522         * modules/readutmp (Depends-on): Remove free.
20523         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
20524         * lib/putenv.c (putenv): Likewise.
20525         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
20526         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
20527         * tests/test-c-strcasestr.c (main): Likewise.
20528         * tests/test-c-strstr.c (main): Likewise.
20529         * tests/test-mbscasestr1.c (main): Likewise.
20530         * tests/test-mbscasestr2.c (main): Likewise.
20531         * tests/test-mbsstr1.c (main): Likewise.
20532         * tests/test-mbsstr2.c (main): Likewise.
20533         * tests/test-memmem.c (main): Likewise.
20534         * tests/test-strcasestr.c (main): Likewise.
20535         * tests/test-striconv.c (main): Likewise.
20536         * tests/test-striconveh.c (main): Likewise.
20537         * tests/test-striconveha.c (main): Likewise.
20538         * tests/test-strstr.c (main): Likewise.
20539
20540         * build-aux/git-version-gen: Adjust a comment and the Usage string.
20541
20542         bootstrap: sync from coreutils again
20543         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
20544
20545 2008-03-01  Jim Meyering  <meyering@redhat.com>
20546
20547         bootstrap: sync from coreutils
20548         * build-aux/bootstrap (update_po_files): Copy a .po file into place
20549         also when the target doesn't exist.
20550
20551 2008-03-01  Eric Blake  <ebb9@byu.net>
20552
20553         Fix bugs in last patch.
20554         * lib/memchr2.c (memchr2): Fix typo.
20555         * tests/test-memchr2.c: Test previous bug, and don't use GNU
20556         extension.
20557         Reported by Bruce Korb.
20558
20559         New module 'memchr2'.
20560         * modules/memchr2: New file.
20561         * modules/memchr2-tests: Likewise.
20562         * lib/memchr2.h: Likewise.
20563         * lib/memchr2.c: Likewise, based on memchr.c.
20564         * tests/test-memchr2.c: New test.
20565         * MODULES.html.sh (String handling): Add memchr2.
20566
20567 2008-02-29  Bruno Haible  <bruno@clisp.org>
20568
20569         * modules/freadseek-tests: New file.
20570         * tests/test-freadseek.sh: New file.
20571         * tests/test-freadseek.c: New file.
20572
20573         New module 'freadseek'.
20574         * modules/freadseek: New file.
20575         * lib/freadseek.h: New file.
20576         * lib/freadseek.c: New file.
20577         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
20578
20579 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20580
20581         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
20582         wydawca.
20583
20584         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
20585         program_invocation_name and program_invocation_short_name are
20586         present.
20587
20588 2008-02-28  Bruno Haible  <bruno@clisp.org>
20589
20590         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
20591         * tests/test-freadptr.sh: Also test non-seekable stdin.
20592
20593 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
20594
20595         * build-aux/bootstrap (source_base, m4_base)
20596         (doc_base, tests_base): New variables.
20597         (gnulib_tool_options): Do not hardcode base directories, use
20598         the above variables instead.
20599
20600 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
20601
20602         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
20603
20604 2008-02-28  Bruno Haible  <bruno@clisp.org>
20605
20606         * modules/freadptr-tests: New file.
20607         * tests/test-freadptr.sh: New file.
20608         * tests/test-freadptr.c: New file.
20609
20610         New module 'freadptr'.
20611         * modules/freadptr: New file.
20612         * lib/freadptr.h: New file.
20613         * lib/freadptr.c: New file.
20614         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
20615
20616 2008-02-26  Karl Berry  <karl@freefriends.org>
20617
20618         Sync from Libtool:
20619         * libltdl/argz.c (argz_add, argz_count): New functions.
20620         * libltdl/argz.in.h: Declare them.
20621         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
20622
20623 2008-02-22  Bruno Haible  <bruno@clisp.org>
20624
20625         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
20626         is a pointer type.  Needed for HP-UX 10.
20627         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
20628         * doc/posix-functions/gmtime_r.texi: Likewise.
20629         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20630
20631 2008-02-24  Bruno Haible  <bruno@clisp.org>
20632
20633         * modules/environ-tests: New file.
20634         * tests/test-environ.c: New file.
20635
20636         New module 'environ'.
20637         * modules/environ: New file.
20638         * lib/unistd.in.h (environ): New declaration.
20639         * m4/environ.m4: New file.
20640         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
20641         after use.
20642         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
20643         HAVE_DECL_ENVIRON.
20644         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
20645         HAVE_DECL_ENVIRON.
20646         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
20647         wrong claim that 'environ' is missing on some systems.
20648         * modules/execute (Depends-on): Add environ.
20649         * lib/execute.c (environ): Remove fallback declaration.
20650         * modules/pipe (Depends-on): Add environ.
20651         * lib/pipe.c (environ): Remove fallback declaration.
20652         * modules/setenv (Depends-on): Add environ.
20653         * lib/setenv.c (environ): Remove fallback declaration.
20654         * modules/unsetenv (Depends-on): Add environ.
20655         * lib/unsetenv.c (environ): Remove fallback declaration.
20656         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
20657         m4/environ.m4.
20658         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
20659         (gl_PREREQ_UNSETENV): Likewise.
20660
20661 2008-02-24  Bruno Haible  <bruno@clisp.org>
20662
20663         * doc/posix-functions/environ.texi: Document the MacOS X problem.
20664
20665 2008-02-20  Bob Proulx  <bob@proulx.com>
20666
20667         Enable use of older two part flavor 'git describe'.
20668         * build-aux/git-version-gen: If using the older two part flavor of
20669         git version then recreate the third part now present in the
20670         newer three part flavor of git describe.
20671
20672 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
20673
20674         * lib/fts.c (fts_build): Typo correction to comment.
20675
20676 2008-02-17  Bruno Haible  <bruno@clisp.org>
20677
20678         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
20679         generating no-op conflicts.
20680
20681 2008-02-17  Bruno Haible  <bruno@clisp.org>
20682
20683         Speed up by 10%.
20684         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
20685         result_entries, rather than an index-based loop.
20686
20687 2008-02-17  Bruno Haible  <bruno@clisp.org>
20688
20689         Speed up by 25%.
20690         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
20691         'hashcode_cached'.
20692         (entry_create): New function.
20693         (entry_hashcode): Use the cached hashcode if possible.
20694         (read_changelog_file, try_split_merged_entry): Use entry_create.
20695
20696 2008-02-17  Bruno Haible  <bruno@clisp.org>
20697
20698         Speed up from O(n^2) to O(n) for long ChangeLog files.
20699         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
20700         (read_changelog_file): Change implementation of entries_reversed list
20701         to rbtreehash.
20702         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
20703
20704 2008-02-17  Bruno Haible  <bruno@clisp.org>
20705
20706         New option --split-merged-entry.
20707         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
20708         (find_paragraph_end, try_split_merged_entry): New functions.
20709         (long_options): Add option --split-merged-entry.
20710         (usage): Document option --split-merged-entry.
20711         (main): Implement option --split-merged-entry.
20712         Reported by Eric Blake.
20713
20714 2008-02-17  Bruno Haible  <bruno@clisp.org>
20715
20716         * lib/git-merge-changelog.c: Include c-strstr.h.
20717         (main): Support the "git pull --rebase" situation.
20718         * modules/git-merge-changelog (Depends-on): Add c-strstr.
20719         Reported by Eric Blake.
20720
20721 2008-02-16  Eric Blake  <ebb9@byu.net>
20722
20723         Avoid doubling \ in common case of "c-maybe" quoting style.
20724         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
20725         eliding outer quotes.
20726         * lib/quotearg.h: Document this.
20727         * tests/test-quotearg.c (result_strings, inputs, results_g)
20728         (flag_results, locale_results): Test it by adding a new string to
20729         each test group.
20730         (compare_strings): Test new string.
20731
20732 2008-02-13  Eric Blake  <ebb9@byu.net>
20733
20734         Avoid trigraph quoting in default output.
20735         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
20736         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
20737         unless explicitly requested.
20738         * tests/test-quotearg.c (flag_results, main): Add additional tests.
20739
20740 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
20741
20742         Don't rely on signed integer overflowing to negative value.
20743         * lib/getugroups.c (getugroups): Include <limits.h>.
20744         Instead, compare against INT_MAX, and increment only if the test passes.
20745
20746 2008-02-13  Jim Meyering  <meyering@redhat.com>
20747         and Eric Blake  <ebb9@byu.net>
20748
20749         Avoid shadowing warning and compile errors on Linux.
20750         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
20751         forwarding macros on Linux.
20752         (dcgettext): Define a stub, for Linux.
20753         (results_g, main): Avoid warnings.
20754
20755 2008-02-12  Eric Blake  <ebb9@byu.net>
20756
20757         Silence warning in last patch.
20758         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
20759
20760         Quotearg part 4: add tests, fix c-maybe colon quoting.
20761         * lib/quotearg.h: Improve documentation.
20762         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
20763         escapes when adding outer quotes.  When quoting trigraphs, use
20764         valid C notation.  When quoting NUL, omit extra characters if next
20765         character is not digit.  Alter prototype.
20766         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
20767         callers.
20768         * modules/quotearg-tests: New module.
20769         * tests/test-quotearg.c: New test.
20770
20771 2008-02-07  Eric Blake  <ebb9@byu.net>
20772
20773         Quotearg part 3: add flag to control outer quote elision.
20774         * lib/quotearg.h (c_maybe_quoting_style): New style.
20775         (enum quoting_flags): Better documentation of flags.
20776         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
20777         c-maybe style.
20778         (quotearg_buffer_restyled): Handle new flag to elide outer
20779         quotes.
20780
20781         Quotearg part 2: add flag that can control NUL elision.
20782         * lib/quotearg.h (set_quoting_flags): New prototype.
20783         * lib/quotearg.c (struct quoting_options): Add flag field.
20784         (set_quoting_flags): New function.
20785         (quotearg_buffer_restyled): Add flags parameter.
20786         (quotearg_alloc_mem): Set the flag if length cannot be returned.
20787         (quotearg_n_options): Set the flag, since length cannot be
20788         returned.
20789         (quoting_options_from_style): Default flags correctly.
20790
20791         Quotearg part 1: more wrappers, restore quotearg_char state.
20792         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
20793         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
20794         (quotearg_colon_mem): New wrappers.
20795         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
20796         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
20797         functions.
20798         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
20799         (quotearg_colon_mem): New functions.
20800
20801 2008-02-11  Bruno Haible  <bruno@clisp.org>
20802
20803         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
20804         library in the current directory: it does not work with parallel make.
20805         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20806
20807 2008-02-11  Bruno Haible  <bruno@clisp.org>
20808
20809         * .gitattributes: New file.
20810
20811 2008-02-11  Jim Meyering  <meyering@redhat.com>
20812
20813         useless-if-before-free: Fix reversed exit values.
20814         * build-aux/useless-if-before-free: Use correct values
20815         for EXIT_MATCH and EXIT_NO_MATCH.
20816
20817         * build-aux/useless-if-before-free: Close stdout carefully.
20818
20819 2008-02-10  Bruno Haible  <bruno@clisp.org>
20820
20821         New module 'git-merge-changelog'.
20822         * modules/git-merge-changelog: New file.
20823         * lib/git-merge-changelog.c: New file.
20824
20825 2008-02-10  Jim Meyering  <meyering@redhat.com>
20826
20827         useless-if-before-free: New option: --list (-l).
20828
20829         useless-if-before-free: Don't exit immediately upon open failure.
20830         * build-aux/useless-if-before-free: Exit 2 for errors.
20831         Upon failure to open a file, don't exit immediately.
20832         Rather, just warn and continue with any remaining files.
20833
20834 2008-02-10  Bruno Haible  <bruno@clisp.org>
20835
20836         New abstract list operation 'node_set_value'.
20837         * lib/gl_list.h (gl_list_node_set_value): New function.
20838         (struct gl_list_implementation): New field node_set_value.
20839         * lib/gl_list.c (gl_list_node_set_value): New function.
20840         * lib/gl_array_list.c (gl_array_node_set_value): New function.
20841         (gl_array_list_implementation): Update.
20842         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
20843         (gl_carray_list_implementation): Update.
20844         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
20845         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
20846         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
20847         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
20848         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
20849         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
20850         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
20851         Update.
20852         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
20853         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
20854         (gl_sublist_list_implementation): Update.
20855
20856 2008-02-10  Bruno Haible  <bruno@clisp.org>
20857
20858         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
20859         Needed when ELEMENT is #defined to 'some_type *'.
20860
20861 2008-02-10  Jim Meyering  <meyering@redhat.com>
20862
20863         New script and module: useless-if-before-free
20864         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
20865         * build-aux/useless-if-before-free: New file.
20866         * modules/useless-if-before-free: New file.
20867
20868         * build-aux/gitlog-to-changelog: Use committer date, not author date.
20869
20870         xstrtol_error: Fix typo.
20871         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
20872         s/exit_failure/exit_status/.
20873
20874 2008-02-09  Jim Meyering  <meyering@redhat.com>
20875
20876         New script and module: gitlog-to-changelog
20877         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
20878         * modules/gitlog-to-changelog: New file.
20879         * build-aux/gitlog-to-changelog: New file.
20880
20881 2008-02-08  Jim Meyering  <meyering@redhat.com>
20882
20883         Avoid two "parameter unused" warnings.
20884         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
20885         Mark "st" as used.
20886
20887         Use "git COMMAND", not "git-COMMAND".
20888         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
20889         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
20890         * build-aux/git-version-gen: Use "git status", not "git-status".
20891
20892 2008-02-07  Bruno Haible  <bruno@clisp.org>
20893
20894         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
20895         Avoids a crash on Windows Vista.
20896         Reported by Adam Strzelecki <ono@java.pl> via
20897         Simon Josefsson <simon@josefsson.org>.
20898
20899 2008-02-06  Bruno Haible  <bruno@clisp.org>
20900
20901         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
20902         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
20903         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
20904         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
20905         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20906         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20907         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
20908         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
20909         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20910         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20911         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20912         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20913         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20914         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20915         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20916         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
20917         left-adjust flag.
20918         * tests/test-snprintf-posix.h (test_function): Likewise.
20919         * tests/test-sprintf-posix.h (test_function): Likewise.
20920         * tests/test-vasprintf-posix.c (test_function): Likewise.
20921         * doc/posix-functions/fprintf.texi: Update.
20922         * doc/posix-functions/printf.texi: Update.
20923         * doc/posix-functions/snprintf.texi: Update.
20924         * doc/posix-functions/sprintf.texi: Update.
20925         * doc/posix-functions/vfprintf.texi: Update.
20926         * doc/posix-functions/vprintf.texi: Update.
20927         * doc/posix-functions/vsnprintf.texi: Update.
20928         * doc/posix-functions/vsprintf.texi: Update.
20929         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20930
20931 2008-02-06  Bruno Haible  <bruno@clisp.org>
20932
20933         Fix bug introduced on 2008-01-26.
20934         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
20935
20936 2008-02-06  Bruno Haible  <bruno@clisp.org>
20937
20938         Fix bug introduced on 2007-06-10.
20939         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
20940         !NEED_PRINTF_FLAG_ZERO.
20941
20942 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
20943
20944         getloadavg: use libperfstat on AIX5
20945         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
20946
20947 2008-02-03  Bruno Haible  <bruno@clisp.org>
20948
20949         * lib/diffseq.h: Add comments about required #includes.
20950         Reported by Michael Biggs <gnulib@doubleplum.net>.
20951
20952 2008-02-01  Bruno Haible  <bruno@clisp.org>
20953
20954         * users.txt: Add gnuit.
20955
20956 2008-01-31  Bruno Haible  <bruno@clisp.org>
20957
20958         * lib/md4.c (set_uint32): Mark as inline.
20959         * lib/md5.c (set_uint32): Likewise.
20960         * lib/sha1.c (set_uint32): Likewise.
20961         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
20962         * m4/md5.m4 (gl_MD5): Likewise.
20963         * m4/sha1.m4 (gl_SHA1): Likewise.
20964
20965 2008-01-31  Jim Meyering  <meyering@redhat.com>
20966
20967         Use "sizeof VAR", rather than a literal "4".
20968         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
20969         * lib/md4.c (md4_read_ctx): Likewise.
20970         * lib/sha1.c (sha1_read_ctx): Likewise.
20971
20972 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20973
20974         * tests/test-sha1.c: New file, based on test-md5.c.
20975
20976         * modules/crypto/sha1-tests: New file.
20977
20978 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20979
20980         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
20981
20982 2008-01-31  Jim Meyering  <meyering@redhat.com>
20983
20984         Prefer "sizeof v" over the equivalent "4".
20985         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
20986         * lib/md5.c (set_uint32): Likewise.
20987         * lib/sha1.c (set_uint32): Likewise.
20988
20989 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20990
20991         * lib/sha1.c (set_uint32): Mark function as static.
20992
20993 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20994
20995         md2: clarify comments to say that alignment is not required.
20996         * lib/md2.h: Remove warning about alignment in comment.
20997         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
20998         never been required.
20999
21000 2008-01-31  Simon Josefsson  <simon@josefsson.org>
21001
21002         md4: adapt alignment constraint fix from sha1.
21003         * lib/md4.c (set_uint32): New function, from sha1.c
21004         (md4_read_ctx): Use it.
21005         (md4_finish_ctx): Doc fix.
21006         * lib/md4.h: Doc fix.
21007
21008 2008-01-31  Simon Josefsson  <simon@josefsson.org>
21009
21010         md5: adapt alignment constraint fix from sha1.
21011         * lib/md5.c (set_uint32): New function, from sha1.c
21012         (md5_read_ctx): Use it.
21013         (md5_finish_ctx): Doc fix.
21014         * lib/md5.h: Doc fix.
21015
21016 2008-01-30  Peter Palfrader  <weasel@debian.org>
21017
21018         sha1: remove the result buffer alignment constraint
21019         * lib/sha1.c (set_uint32): New function.
21020         (sha1_read_ctx): Rewrite to remove the result buffer alignment
21021         constraint.
21022         (sha1_finish_ctx): Remove comment warning about alignment constraint.
21023         * lib/sha1.h: Likewise.
21024
21025 2008-01-30  Andreas Schwab  <schwab@suse.de>
21026             Bruno Haible  <bruno@clisp.org>
21027
21028         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
21029         correct definition of LDBL_MIN_EXP.
21030
21031 2008-01-30  Karl Berry  <karl@gnu.org>
21032
21033         * config/srclist-update: try to preserve x bit on updates.
21034         * config/srclistvars.sh: update for karl.
21035
21036 2008-01-29  Jim Meyering  <meyering@redhat.com>
21037
21038         vasnprintf.c: Avoid warning about unused label
21039         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
21040         "overflow" label definition and associated code with the
21041         same cpp condition that guards the sole use of that label.
21042
21043 2008-01-26  Bruno Haible  <bruno@clisp.org>
21044
21045         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
21046         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
21047         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
21048         * lib/isnanl-nolibm.h (isnanl): Likewise.
21049         Reported by Paul Eggert <eggert@cs.ucla.edu>.
21050
21051 2008-01-26  Bruno Haible  <bruno@clisp.org>
21052
21053         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
21054         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
21055
21056 2008-01-26  Bruno Haible  <bruno@clisp.org>
21057
21058         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
21059         GCC >= 4.0 built-in.
21060         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
21061
21062 2008-01-26  Bruno Haible  <bruno@clisp.org>
21063
21064         Rename isnan, applicable to 'double' only, to isnand.
21065         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
21066         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
21067         (configure.ac): Update.
21068         (Include): Replace "isnan.h" with "isnand.h".
21069         * m4/isnand.m4: Renamed from m4/isnan.m4.
21070         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
21071         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
21072         instead of isnan.c.
21073         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
21074         instead of HAVE_ISNAN_IN_LIBC.
21075         (isnand): Renamed from isnan.
21076         * lib/isnand.c: New file.
21077         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
21078         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
21079         (Makefile.am): Update.
21080         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
21081         Include isnand.h instead of isnan.h.
21082         (main): Test isnand instead of isnan.
21083         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
21084         isnan-nolibm.
21085         * modules/frexp (Depends-on): Likewise.
21086         * modules/frexp-tests (Depends-on): Likewise.
21087         * modules/frexp-nolibm (Depends-on): Likewise.
21088         * modules/frexp-nolibm-tests (Depends-on): Likewise.
21089         * modules/isfinite (Depends-on): Likewise.
21090         * modules/round-tests (Depends-on): Likewise.
21091         * modules/signbit (Depends-on): Likewise.
21092         * modules/signbit-tests (Depends-on): Likewise.
21093         * modules/snprintf-posix (Depends-on): Likewise.
21094         * modules/sprintf-posix (Depends-on): Likewise.
21095         * modules/trunc-tests (Depends-on): Likewise.
21096         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
21097         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
21098         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
21099         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
21100         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
21101         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
21102         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
21103         * modules/vasnprintf-posix (Depends-on): Likewise.
21104         * modules/vasprintf-posix (Depends-on): Likewise.
21105         * modules/vfprintf-posix (Depends-on): Likewise.
21106         * modules/vsnprintf-posix (Depends-on): Likewise.
21107         * modules/vsprintf-posix (Depends-on): Likewise.
21108         * lib/frexp.c: Include isnand.h instead of isnan.h.
21109         (ISNAN): Set to isnand instead of isnan.
21110         * lib/isfinite.c: Include isnand.h instead of isnan.h.
21111         (gl_isfinited): Use isnand instead of isnan.
21112         * lib/signbitd.c: Include isnand.h instead of isnan.h.
21113         (gl_signbitd): Use isnand instead of isnan.
21114         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
21115         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
21116         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
21117         (main): Use isnand instead of isnan.
21118         * tests/test-round1.c: Include isnand.h.
21119         (main): Use isnand instead of isnan.
21120         * tests/test-round2.c: Include isnand.h instead of isnan.h.
21121         (ISNAN): Set to isnand instead of isnan.
21122         * tests/test-trunc1.c: Include isnand.h.
21123         (main): Use isnand instead of isnan.
21124         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
21125         (equal): Use isnand instead of isnan.
21126         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
21127         isnand-nolibm.
21128         * NEWS: Mention the change.
21129
21130 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
21131             Bruno Haible  <bruno@clisp.org>
21132
21133         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
21134         the GCC builtins for signbits are present and set
21135         REPLACE_SIGNBIT_USING_GCC if so.
21136         * lib/math.in.h (signbit): Define using GCC builtins if
21137         REPLACE_SIGNBIT_USING_GCC is set.
21138         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
21139         REPLACE_SIGNBIT_USING_GCC.
21140         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
21141
21142 2008-01-25  Jim Meyering  <meyering@redhat.com>
21143
21144         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
21145         * lib/poll.c: Include <config.h>, not "config.h".
21146         * tests/test-getaddrinfo.c: Likewise.
21147
21148 2008-01-25  Simon Josefsson  <simon@josefsson.org>
21149
21150         * modules/sockets-tests: New file.
21151
21152 2008-01-24  Simon Josefsson  <simon@josefsson.org>
21153
21154         * modules/sockets: New module, can be used to call WSA_Startup and
21155         WSA_Cleanup when needed.
21156
21157         * lib/sockets.h, lib/sockets.c: New files.
21158
21159         * m4/sockets.m4: New file.
21160
21161         * tests/test-sockets.c: New file.
21162
21163 2008-01-19  Bruno Haible  <bruno@clisp.org>
21164
21165         * doc/posix-headers: Renamed from doc/headers.
21166         * doc/posix-functions: Renamed from doc/functions.
21167         * doc/gnulib.texi: Update.
21168
21169 2008-01-19  Bruno Haible  <bruno@clisp.org>
21170
21171         * doc/glibc-functions/strcasestr.texi: Include contents of
21172         doc/functions/strcasestr.texi, fixing the list of platforms.
21173         * doc/functions/strcasestr.texi: Remove file.
21174
21175 2008-01-19  Bruno Haible  <bruno@clisp.org>
21176
21177         * doc/glibc-functions/memmem.texi: Include contents of
21178         doc/functions/memmem.texi.
21179         * doc/functions/memmem.texi: Remove file.
21180
21181 2008-01-18  Bruno Haible  <bruno@clisp.org>
21182
21183         * doc/glibc-functions/*.texi: New files.
21184         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
21185         to use the new files.
21186
21187 2008-01-17  Bruno Haible  <bruno@clisp.org>
21188
21189         * tests/test-gethostname.c (main): Fix printf statement.
21190
21191 2008-01-17  Simon Josefsson  <simon@josefsson.org>
21192
21193         * modules/gethostname-tests: New file.
21194
21195         * tests/test-gethostname.c: New file.
21196
21197 2008-01-17  Simon Josefsson  <simon@josefsson.org>
21198
21199         * lib/gethostname.c: Include string.h unconditionally, strncpy is
21200         used by the UNAME case.  Reported by Bruno Haible
21201         <bruno@clisp.org>.
21202
21203 2008-01-17  Eric Blake  <ebb9@byu.net>
21204
21205         Convert c-strcasestr to be more efficient.
21206         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
21207         (Depends-on): Add c-strcase, remove malloca, strnlen.
21208         * tests/test-c-strcasestr.c (main): Enhance test.
21209         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
21210
21211 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
21212
21213         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
21214         Use it in creating po/Makevars.
21215
21216 2008-01-15  Simon Josefsson  <simon@josefsson.org>
21217
21218         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
21219         Applications that requires it should initialize libgcrypt
21220         manually.
21221
21222 2008-01-16  Simon Josefsson  <simon@josefsson.org>
21223
21224         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
21225
21226 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
21227
21228         Fix problem with getdate on mingw32 reported by Simon Josefsson
21229         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
21230         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
21231         tzname", when deciding whether to declare tzname.
21232         * lib/strftime.c (tzname): Likewise.
21233
21234 2008-01-15  Bruno Haible  <bruno@clisp.org>
21235
21236         Work around a MacOS X 10.5 bug in frexpl().
21237         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
21238         * doc/functions/frexpl.texi: Document the bug.
21239         Reported by Elias Pipping <pipping@gentoo.org>.
21240
21241 2008-01-14  Eric Blake  <ebb9@byu.net>
21242
21243         Touch up previous patch.
21244         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
21245         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
21246
21247         Convert strcasestr module to use Two-Way algorithm.
21248         * modules/strcasestr-simple: New module, based on the old
21249         strcasestr, but with Two-Way rather than KMP.
21250         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
21251         * lib/string.in.h (rpl_strcasestr): Declare.
21252         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
21253         performance.
21254         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
21255         * modules/string (Makefile.am): Support strcasestr.
21256         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
21257         * modules/strcasestr-tests (Depends-on): Check for alarm.
21258         * tests/test-strcasestr.c: Augment test.
21259         * lib/str-two-way.h: Clean up stray macro.
21260         * NEWS: Document new module.
21261         * MODULES.html.sh (string handling): Likewise.
21262         * doc/functions/strcasestr.texi: New file.
21263         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
21264         here, since it is not a POSIX function.
21265
21266 2008-01-14  Colin Watson  <cjwatson@debian.org>
21267             Bruno Haible  <bruno@clisp.org>
21268
21269         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
21270         works fine; if not, set REPLACE_STRSIGNAL.
21271         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
21272         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21273         REPLACE_STRSIGNAL.
21274         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
21275         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
21276         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
21277
21278 2008-01-14  Bruno Haible  <bruno@clisp.org>
21279
21280         * modules/strsignal (Include): Change to <string.h>.
21281
21282 2008-01-14  Colin Watson  <cjwatson@debian.org>
21283
21284         * modules/argp (Notice): Add a notice recommending to change
21285         XGETTEXT_OPTIONS.
21286         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
21287
21288 2008-01-13  Colin Watson  <cjwatson@debian.org>
21289
21290         * modules/strsignal-tests: New file.
21291         * tests/test-strsignal.c: New file.
21292
21293         * lib/strsignal.c: New file, from glibc with modifications.
21294         * lib/siglist.h: New file, from glibc with modifications.
21295         * lib/string.in.h (strsignal): New declaration.
21296         * m4/strsignal.m4: New file.
21297         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21298         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
21299         * modules/strsignal: New file.
21300         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
21301         HAVE_DECL_STRSIGNAL.
21302
21303 2008-01-13  Bruno Haible  <bruno@clisp.org>
21304
21305         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
21306         locale encoding is not ASCII. Needed for OpenBSD 4.0.
21307         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
21308         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
21309
21310 2008-01-13  Bruno Haible  <bruno@clisp.org>
21311
21312         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
21313         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
21314         * lib/argp.h (__attribute__): Likewise.
21315         * lib/c-stack.c (__attribute__): Likewise.
21316         * lib/error.h (__attribute__): Likewise.
21317         * lib/fts.c (__attribute__): Likewise.
21318         * lib/openat.h (__attribute__): Likewise.
21319         * lib/stdio.in.h (__attribute__): Likewise.
21320         * lib/string.in.h (__attribute__): Likewise.
21321         * lib/utimens.c (__attribute__): Likewise.
21322         * lib/vasnprintf.h (__attribute__): Likewise.
21323         * lib/xalloc.h (__attribute__): Likewise.
21324         * lib/xprintf.h (__attribute__): Likewise.
21325         * lib/xstrtol.h (__attribute__): Likewise.
21326         * lib/xvasprintf.h (__attribute__): Likewise.
21327
21328 2008-01-12  Bruno Haible  <bruno@clisp.org>
21329
21330         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
21331         * doc/glibc-headers/a.out.texi: New file.
21332         * doc/glibc-headers/aliases.texi: New file.
21333         * doc/glibc-headers/alloca.texi: New file.
21334         * doc/glibc-headers/ar.texi: New file.
21335         * doc/glibc-headers/argp.texi: New file.
21336         * doc/glibc-headers/argz.texi: New file.
21337         * doc/glibc-headers/byteswap.texi: New file.
21338         * doc/glibc-headers/crypt.texi: New file.
21339         * doc/glibc-headers/endian.texi: New file.
21340         * doc/glibc-headers/envz.texi: New file.
21341         * doc/glibc-headers/err.texi: New file.
21342         * doc/glibc-headers/error.texi: New file.
21343         * doc/glibc-headers/execinfo.texi: New file.
21344         * doc/glibc-headers/fpu_control.texi: New file.
21345         * doc/glibc-headers/fstab.texi: New file.
21346         * doc/glibc-headers/fts.texi: New file.
21347         * doc/glibc-headers/getopt.texi: New file.
21348         * doc/glibc-headers/ieee754.texi: New file.
21349         * doc/glibc-headers/ifaddrs.texi: New file.
21350         * doc/glibc-headers/libintl.texi: New file.
21351         * doc/glibc-headers/mcheck.texi: New file.
21352         * doc/glibc-headers/mntent.texi: New file.
21353         * doc/glibc-headers/obstack.texi: New file.
21354         * doc/glibc-headers/paths.texi: New file.
21355         * doc/glibc-headers/printf.texi: New file.
21356         * doc/glibc-headers/pty.texi: New file.
21357         * doc/glibc-headers/resolv.texi: New file.
21358         * doc/glibc-headers/shadow.texi: New file.
21359         * doc/glibc-headers/sysexits.texi: New file.
21360         * doc/glibc-headers/ttyent.texi: New file.
21361
21362 2008-01-12  Jim Meyering  <meyering@redhat.com>
21363
21364         announce-gen: emit Gnulib's git-based version string.
21365         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
21366         New option --gnulib-version=V, where V is expected to be
21367         the output of running git describe in the gnulib directory.
21368         (get_tool_versions): Request feedback on xdelta.  I suspect it's
21369         not useful, and plan to stop publishing an xdelta file with each
21370         coreutils release.
21371
21372         * build-aux/announce-gen: Also check for lzma-compressed files.
21373
21374 2008-01-11  Bruno Haible  <bruno@clisp.org>
21375
21376         * tests/test-memmem.c (main): Increase maximum allowed time.
21377         * tests/test-strstr.c (main): Likewise.
21378
21379 2008-01-11  Bruno Haible  <bruno@clisp.org>
21380
21381         * doc/functions/memmem.texi: Add more precisions about platforms.
21382         * doc/functions/strstr.texi: Likewise.
21383
21384 2008-01-10  Eric Blake  <ebb9@byu.net>
21385
21386         * m4/strstr.m4: Delete cruft from copy-n-paste.
21387         Reported by Bruno Haible.
21388
21389 2008-01-10  Bruno Haible  <bruno@clisp.org>
21390
21391         Make c-strstr rely on strstr.
21392         * lib/c-strstr.c: Don't include str-kmp.h.
21393         (c_strstr): Define in terms of strstr.
21394         * modules/c-strstr (Files): Remove lib/str-kmp.h.
21395         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
21396
21397 2008-01-10  Bruno Haible  <bruno@clisp.org>
21398
21399         * doc/gnulib.texi (String Functions in C Locale): New section.
21400         * doc/c-ctype.texi: New file.
21401         * doc/c-strcase.texi: New file.
21402         * doc/c-strcaseeq.texi: New file.
21403         * doc/c-strcasestr.texi: New file.
21404         * doc/c-strstr.texi: New file.
21405         * doc/c-strtod.texi: New file.
21406         * doc/c-strtold.texi: New file.
21407
21408 2008-01-10  Eric Blake  <ebb9@byu.net>
21409
21410         * lib/relocatable.h: Fix a comment.
21411
21412 2008-01-10  Eric Blake  <ebb9@byu.net>
21413
21414         Share two-way algorithm.
21415         * lib/str-two-way.h: New file, merged from...
21416         * lib/memmem.c: ...here...
21417         * lib/strstr.c: ...and here.
21418         * modules/memmem (Files): Use it.
21419         * modules/strstr (Files): Likewise.
21420
21421         Avoid quadratic strstr implementations.
21422         * lib/strstr.c: New file.
21423         * m4/strstr.m4: Likewise.
21424         * modules/strstr: Likewise.
21425         * modules/strstr-tests: Likewise.
21426         * tests/test-strstr.c: Likewise.
21427         * lib/string.in.h (rpl_strstr): Declare.
21428         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
21429         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
21430         * modules/string (Makefile.am): Likewise.
21431         * MODULES.html.sh (string handling): Mention new module.
21432         * doc/functions/strstr.texi (strstr): Document the bug.
21433
21434 2008-01-10  Bruno Haible  <bruno@clisp.org>
21435
21436         * lib/relocatable.h (relocate): State whether result is freshly
21437         allocated or not.
21438         * lib/relocatable.c (relocate): Return a freshly allocated string
21439         instead of a pointer to a privately held string.
21440         Reported by Sylvain Beucler <beuc@gnu.org>.
21441
21442 2008-01-10  Colin Watson  <cjwatson@debian.org>
21443
21444         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
21445         s/S_ISNLK/S_ISLNK/.
21446
21447 2008-01-09  Bruno Haible  <bruno@clisp.org>
21448
21449         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
21450         and other files.
21451         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
21452         if it's only a guess.
21453         * modules/memmem: Simplify by depending on memmem-simple.
21454
21455 2008-01-09  Bruno Haible  <bruno@clisp.org>
21456
21457         Work around OpenBSD 4.0 tdelete() bug.
21458         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
21459         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
21460         macros and don't redefine the enum values.
21461         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
21462         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
21463         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
21464
21465 2008-01-09  Bruno Haible  <bruno@clisp.org>
21466
21467         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
21468         (main): Don't perform the tests if setlocale did not install a UTF-8
21469         locale. Needed on OpenBSD 4.0.
21470         * modules/wcwidth-tests (Depends-on): Add localcharset.
21471
21472 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21473
21474         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
21475         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
21476         * NEWS: announce this.
21477         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
21478
21479 2008-01-09  Simon Josefsson  <simon@josefsson.org>
21480         and Eric Blake  <ebb9@byu.net>
21481
21482         Add memmem-simple module.
21483         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
21484         (gl_FUNC_MEMMEM): Separate performance from presence checks.
21485         * modules/memmem-simple: New file.
21486         * modules/memmem (Description): Tweak.
21487         * MODULES.html.sh (string handling): Mention new module.
21488         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
21489         addressed by memmem-simple.
21490         * NEWS: Document the difference.
21491
21492 2008-01-09  Eric Blake  <ebb9@byu.net>
21493
21494         Give gcc some memmem optimization hints.
21495         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
21496         (strcasestr): Declare as pure.
21497         * modules/memmem (Maintainer): Claim my implementation.
21498
21499 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21500
21501         Support AIX 6.1 and higher.
21502         * build-aux/config.libpath: Likewise.
21503         * build-aux/config.rpath: Likewise.
21504
21505 2008-01-08  Jim Meyering  <meyering@redhat.com>
21506             Bruno Haible  <bruno@clisp.org>
21507
21508         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
21509         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
21510         Reported by Peter Fales in
21511         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
21512
21513 2008-01-08  Bruno Haible  <bruno@clisp.org>
21514
21515         * modules/unictype/category-of (Depends-on): Add
21516         unictype/category-none.
21517         * modules/unictype/category-and-tests (Depends-on): Add
21518         unictype/category-{L,N,Lu,Nd}.
21519         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
21520         * modules/unictype/category-or-tests (Depends-on): Add
21521         unictype/category-{L,N}.
21522         * modules/unictype/category-name-tests (Depends-on): Add
21523         unictype/category-{Z,Nl}.
21524         Reported by Simon Josefsson.
21525
21526 2008-01-08  Bruno Haible  <bruno@clisp.org>
21527
21528         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
21529         convention better.
21530         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
21531         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
21532         Reported by Peter Miller <millerp@canb.auug.org.au>.
21533
21534 2008-01-08  Eric Blake  <ebb9@byu.net>
21535
21536         Rewrite memmem to guarantee linear complexity without malloc.
21537         * lib/memmem.c (memmem): Use Two-Way rather than
21538         Knuth-Morris-Pratt, to allow O(1) space usage.
21539         (critical_factorization, two_way_short_needle)
21540         (two_way_long_needle): New functions.
21541         (knuth_morris_pratt): Delete.
21542         * modules/memmem (Depends-on): No longer need malloca or stdbool.
21543         Add stdint.
21544         * tests/test-memmem.c (main): Add tests for periodic needle and
21545         sublinear performance.
21546         * doc/functions/memmem.texi (memmem): Document other deficiencies
21547         in cygwin and older glibc.
21548
21549 2008-01-08  Bruno Haible  <bruno@clisp.org>
21550
21551         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
21552         augmentation.
21553
21554 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
21555
21556         Add a configure time option: --disable-acl.
21557         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
21558         AC_ARG_ENABLE(acl).
21559
21560 2008-01-06  Simon Josefsson  <simon@josefsson.org>
21561
21562         * tests/test-localename.c: Don't include obsolete "setenv.h".
21563
21564         * modules/localename-tests (Depends-on): Need unsetenv.
21565
21566 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21567
21568         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
21569
21570 2008-01-06  Colin Watson  <cjwatson@debian.org>
21571
21572         * users.txt: Add man-db.
21573
21574 2008-01-07  Bruno Haible  <bruno@clisp.org>
21575
21576         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
21577         previous section name.
21578
21579 2008-01-07  Bruno Haible  <bruno@clisp.org>
21580
21581         * lib/progname.c (set_program_name): Don't strip off a leading
21582         "lt-" prefix outside a .libs directory.
21583         Suggested by Paul Eggert.
21584
21585 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
21586             Bruno Haible  <bruno@clisp.org>
21587
21588         Improve memory cleanup in 'relocatable' module.
21589         * lib/relocatable.h (compute_curr_prefix): Change return type to
21590         'char *'.
21591         * lib/relocatable.c (compute_curr_prefix): Change return type to
21592         'char *'. Free curr_installdir after use.
21593         (relocate): Free curr_prefix_better after use.
21594         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
21595
21596 2008-01-01  Bruno Haible  <bruno@clisp.org>
21597
21598         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
21599         failure on older glibc systems.
21600         Reported by Peter Fales <psfales@alcatel-lucent.com>.
21601
21602 2008-01-05  Eric Blake  <ebb9@byu.net>
21603
21604         Avoid quadratic system memmem.
21605         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
21606         Reported by Ralf Wildenhues.
21607
21608         Fix memmem test for mingw.
21609         * modules/memmem-tests (configure.ac): Check for alarm.
21610         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
21611         it.
21612         * doc/functions/memmem.texi: New file.
21613         * doc/gnulib.texi (Function Substitutes): Add memmem.
21614         Reported by Bruno Haible.
21615
21616 2008-01-04  Bruno Haible  <bruno@clisp.org>
21617
21618         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
21619         Require gl_HEADER_STRINGS_H_DEFAULTS, not
21620         gl_HEADER_STRING_H_DEFAULTS.
21621
21622 2008-01-04  Eric Blake  <ebb9@byu.net>
21623
21624         Shorten duration of memmem test.
21625         * tests/test-memmem.c (main): Use alarm to declare failure if test
21626         is taking too long.
21627         Reported by Ralf Wildenhues.
21628
21629 2007-12-21  Simon Josefsson  <simon@josefsson.org>
21630
21631         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
21632         string, needed by strerror.
21633
21634 2008-01-03  Colin Watson  <cjwatson@debian.org>
21635             Bruno Haible  <bruno@clisp.org>
21636
21637         * doc/gnulib-tool.texi (Localization): New section.
21638
21639 2008-01-02  Bruno Haible  <bruno@clisp.org>
21640
21641         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
21642         variables to 'unsigned char *' type.
21643         Reported by Paul Eggert.
21644
21645 2008-01-02  Jim Meyering  <jim@meyering.net>
21646
21647         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
21648
21649 2007-12-31  Jim Meyering  <jim@meyering.net>
21650
21651         Avoid use of private FTS type name.
21652         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
21653
21654 2007-12-30  Karl Berry  <karl@gnu.org>
21655
21656         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
21657         work around defect in Texinfo and/or the standalone Info browser.
21658
21659 2007-12-30  Bruno Haible  <bruno@clisp.org>
21660
21661         Unify 5 copies of the KMP code.
21662         * lib/str-kmp.h: New file.
21663         * lib/c-strcasestr.c: Include str-kmp.h.
21664         (knuth_morris_pratt): Remove function.
21665         (c_strcasestr): Update.
21666         * lib/c-strstr.c: Include str-kmp.h.
21667         (knuth_morris_pratt): Remove function.
21668         (c_strcasestr): Update.
21669         * lib/mbscasestr.c: Include str-kmp.h.
21670         (knuth_morris_pratt_unibyte): Remove function.
21671         * lib/mbsstr.c: Include str-kmp.h.
21672         (knuth_morris_pratt_unibyte): Remove function.
21673         * lib/strcasestr.c: Include str-kmp.h.
21674         (knuth_morris_pratt): Remove function.
21675         (strcasestr): Update.
21676         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
21677         * modules/c-strstr (Files): Likewise.
21678         * modules/mbscasestr (Files): Likewise.
21679         * modules/mbsstr (Files): Likewise.
21680         * modules/strcasestr (Files): Likewise.
21681         Suggested by Paul Eggert.
21682
21683 2007-12-30  Bruno Haible  <bruno@clisp.org>
21684
21685         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
21686         defined.
21687
21688 2007-12-30  Bruno Haible  <bruno@clisp.org>
21689
21690         * lib/xmalloca.h: Include xalloc.h.
21691         (xnmalloca): New macro.
21692
21693 2007-12-30  Bruno Haible  <bruno@clisp.org>
21694
21695         * lib/malloca.h (nmalloca): New macro.
21696         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
21697         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
21698         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
21699         knuth_morris_pratt_multibyte): Likewise.
21700         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
21701         knuth_morris_pratt_multibyte): Likewise.
21702         * lib/memmem.c (knuth_morris_pratt): Likewise.
21703         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
21704
21705 2007-12-25  Bruno Haible  <bruno@clisp.org>
21706
21707         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
21708         * lib/glob.c: Don't include openat.h.
21709         (link_exists2_p): Add back the code that deals with the
21710         !GLOB_ALTDIRFUNC case.
21711         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
21712         let it do the filename concatenation.
21713         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
21714         * modules/glob (Depends-on): Remove openat.
21715
21716 2007-12-31  Bruno Haible  <bruno@clisp.org>
21717
21718         * modules/dirfd (License): Change to LGPLv2+.
21719         Approved by Jim Meyering.
21720
21721 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
21722
21723         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
21724         when multiplying M by sizeof (size_t).
21725
21726 2007-12-10  Martin Lambers  <marlam@marlam.de>
21727
21728         Override getpagesize on mingw.
21729         * lib/getpagesize.c: New file.
21730         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
21731         * modules/getpagesize (Files): Add lib/getpagesize.c.
21732         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
21733         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21734         REPLACE_GETPAGESIZE.
21735         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
21736
21737 2007-12-25  Bruno Haible  <bruno@clisp.org>
21738
21739         * modules/localcharset (Notice): New field.
21740         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
21741         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
21742
21743 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
21744             Bruno Haible  <bruno@clisp.org>
21745
21746         Avoid using the syntax symbol() in formatted documentation.
21747         * MODULES.html.sh (func_module): When replacing symbol() with a
21748         hyperlink, remove the parentheses. Show an error if some remain.
21749         Recognize and render the '...' syntax.
21750         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
21751         Rework. Add paragraph about GCC's inlining.
21752         * doc/alloca.texi: Likewise.
21753         * doc/error.texi: Remove parentheses from symbol reference.
21754         * doc/gnulib-intro.texi: Likewise.
21755         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
21756         * modules/fnmatch (Description): Reword to say "the ... function".
21757         * modules/full-read (Description): Likewise.
21758         * modules/full-write (Description): Likewise.
21759         * modules/safe-read (Description): Likewise.
21760         * modules/safe-write (Description): Likewise.
21761         * modules/strchrnul (Description): Likewise.
21762         * modules/trim (Description): Likewise.
21763         * modules/error (Description): Remove parentheses from symbol
21764         references.
21765         * modules/verror (Description): Likewise.
21766         Reported by Karl Berry.
21767
21768 2007-12-25  Bruno Haible  <bruno@clisp.org>
21769
21770         Fixup after 2007-10-16 commit.
21771         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
21772
21773 2007-12-24  Bruno Haible  <bruno@clisp.org>
21774
21775         Make --enable-relocatable work with DESTDIR.
21776         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
21777         to compute installdir from destprog.
21778         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
21779         also set the RELOC_DESTDIR variable.
21780         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21781
21782 2007-12-24  Bruno Haible  <bruno@clisp.org>
21783
21784         Fix link error due to xalloc_die().
21785         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
21786         of xreadlink.
21787         * lib/relocwrapper.c: Update comments.
21788         * build-aux/install-reloc: Remove xreadlink.c from file list.
21789         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
21790         xreadlink.c.
21791         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21792
21793 2007-12-24  Bruno Haible  <bruno@clisp.org>
21794
21795         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
21796         * lib/setenv.h: Remove file.
21797         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
21798         lib/setenv.h.
21799         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
21800         (Depends-on): Add stdlib.
21801         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
21802         gl_FUNC_UNSETENV.
21803         (Include): Replace setenv.h with <stdlib.h>.
21804         * modules/unsetenv: New file.
21805         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
21806         * lib/unsetenv.c: Include <stdlib.h> first.
21807         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
21808         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
21809         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
21810         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
21811         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
21812         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21813         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
21814         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21815         * doc/functions/unsetenv.texi: Update.
21816         * modules/xsetenv (Depends-on): Add unsetenv.
21817         * modules/getdate (Depends-on): Likewise.
21818         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
21819         * lib/xsetenv.c: Don't include setenv.h.
21820         * lib/getdate.y: Likewise.
21821         * lib/relocwrapper.c: Likewise.
21822         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
21823         (Depends-on): Add stdlib.
21824         * NEWS: Mention the changes.
21825         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21826
21827 2007-12-23  Bruno Haible  <bruno@clisp.org>
21828
21829         * lib/memmem.c (memmem): Use lowercase variable names. Tab
21830         indentation.
21831
21832 2007-12-23  Bruno Haible  <bruno@clisp.org>
21833
21834         * lib/c-strcasestr.c: Add more comments.
21835         * lib/c-strstr.c: Likewise.
21836         * lib/mbscasestr.c: Likewise.
21837         * lib/mbsstr.c: Likewise.
21838         * lib/strcasestr.c: Likewise.
21839         * lib/memmem.c: Likewise.
21840
21841 2007-12-23  Bruno Haible  <bruno@clisp.org>
21842
21843         * tests/test-memmem.c: Include <string.h> first.
21844
21845 2007-12-22  Bruno Haible  <bruno@clisp.org>
21846
21847         * gnulib-tool (func_create_testdir): Change $auxdir while generating
21848         the contents of $testsbase.
21849         Reported by Ralf Wildenhues.
21850
21851 2007-12-22  Bruno Haible  <bruno@clisp.org>
21852
21853         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
21854         two variables local_ldadd_before, local_ldadd_last.
21855
21856 2007-12-20  Eric Blake  <ebb9@byu.net>
21857
21858         Work around circular library issue when cross-compiling.
21859         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
21860         that progname.o does not need to pull in rpl_memcmp.
21861
21862 2007-12-19  Eric Blake  <ebb9@byu.net>
21863
21864         Fix memmem to avoid O(n^2) worst-case complexity.
21865         * lib/memmem.c (knuth_morris_pratt): New function.
21866         (memmem): Use it if first few naive iterations fail.
21867         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
21868         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
21869         * modules/memchr (License): Likewise.
21870         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
21871         malloca.
21872         * tests/test-memmem.c: Rewrite, borrowing ideas from
21873         test-mbsstr1.c; the old version wouldn't even compile!
21874         * modules/memmem-tests: New file.
21875         * lib/string.in.h (rpl_memmem): Add declaration.
21876         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
21877         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
21878         REPLACE_MEMMEM.
21879
21880 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
21881
21882         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
21883         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
21884         before any system include files, and undef after them all.  This
21885         should fix a problem on VMS reported by John E. Malmberg in
21886         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
21887
21888 2007-12-17  Eric Blake  <ebb9@byu.net>
21889
21890         Revert addition of verify, for BSD/OS.
21891         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
21892         can't handle large files, for the sake of obsolete platforms.
21893         * modules/fseeko (Depends-on): Remove verify.
21894         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
21895         * doc/functions/ftello.texi (ftello): Likewise.
21896         * doc/functions/fgetpos.texi (fgetpos): Likewise.
21897         Reported by Larry Jones.
21898
21899 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
21900
21901         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
21902         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
21903
21904 2007-12-17  Jim Meyering  <meyering@redhat.com>
21905
21906         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
21907         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
21908         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
21909         * modules/getcwd (Depends-on): Add openat.
21910         Reported by Petr Salinger.
21911
21912 2007-12-17  Bruno Haible  <bruno@clisp.org>
21913
21914         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
21915         avoid a segmentation fault of the configure test on x86_64 systems.
21916
21917 2007-12-15  Jim Meyering  <meyering@redhat.com>
21918
21919         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
21920
21921 2007-12-13  Eric Blake  <ebb9@byu.net>
21922
21923         Another fseek test.
21924         * tests/test-fseek.c (main): Also test ungetc handling.
21925         * tests/test-fseeko.c (main): Likewise.
21926         * modules/fseeko (Depends-on): Add verify.
21927         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
21928         large.
21929         Reported by Larry Jones.
21930
21931         Fix fseeko on mingw.
21932         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
21933         seek.
21934
21935         Beef up fseek tests.
21936         * tests/test-fseek.c (main): Also test eof handling.
21937         * tests/test-fseeko.c (main): Likewise.
21938         Reported by Larry Jones.
21939
21940 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
21941
21942         Fix fseeko on BSD-based platforms.
21943         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
21944         successful seek.
21945
21946 2007-12-12  Eric Blake  <ebb9@byu.net>
21947
21948         Allow circular dependency of separate libtests.a
21949         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
21950         when use_libtests.
21951
21952 2007-12-11  Eric Blake  <ebb9@byu.net>
21953
21954         Fix bug with -0.0L in previous patch.
21955         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
21956         * tests/test-isnan.c (main): Also test on zeroes.
21957         * tests/test-isnanf.c (main): Likewise.
21958         * tests/test-isnanl.h (main): Likewise.
21959
21960         Detect pseudo-denormals on x86 even when cross-compiling.
21961         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
21962         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
21963         invalid bit patterns that happen to satisfy ==.
21964
21965         Avoid link failures with separate libtests.a.
21966         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
21967         last, to satisfy circular dependencies.
21968
21969 2007-12-11  Eric Blake  <ebb9@byu.net>
21970         and Bruno Haible  <bruno@clisp.org>
21971
21972         Fix OpenBSD 4.0 <float.h> handling of long double.
21973         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
21974         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
21975         * doc/headers/float.texi (float.h): Document OpenBSD bug.
21976
21977 2007-12-11  Jim Meyering  <meyering@redhat.com>
21978
21979         * users.txt: Add libvirt.
21980
21981         Support versions of autoconf prior to 2.59c.
21982         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
21983         if it is not already defined.
21984
21985 2007-12-09  Bruno Haible  <bruno@clisp.org>
21986
21987         Let 'gnulib-tool --import' collect sources needed for the tests in
21988         tests/ rather than in lib/.
21989         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
21990         argument. If true, add rules to generate libtests.a, and put libtests.a
21991         into $(LDADD). Consider source files in subdirectories and set
21992         uses_subdirs.
21993         (func_emit_initmacro_start, func_emit_initmacro_end,
21994         func_emit_initmacro_done): Pass all arguments explicitly.
21995         (func_import): Determine two module lists main_modules,
21996         testsrelated_modules. Determine use_libtests. Determine two variables
21997         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
21998         instead of just sed_transform_lib_file. Determine two variables
21999         main_files and testsrelated_files. Compute 'files' as the union of
22000         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
22001         func_add_or_update. In the generated gnulib-comp.m4, collect the
22002         object files for tests/ in different variables than those for lib/.
22003         Substitute LIBTESTS_LIBDEPS.
22004         (func_create_testdir): Combine the uses_subdirs results from
22005         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
22006
22007 2007-12-09  Bruno Haible  <bruno@clisp.org>
22008
22009         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
22010         the build-aux directory.
22011
22012 2007-12-09  Bruno Haible  <bruno@clisp.org>
22013
22014         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
22015         introduced on 2006-09-09.
22016
22017 2007-12-07  Jim Meyering  <meyering@redhat.com>
22018
22019         Let these macros work also with autoconf-2.59.
22020         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
22021         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
22022         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
22023
22024 2007-12-06  Jim Meyering  <meyering@redhat.com>
22025
22026         Avoid a configure-time syntax error in gl_FUNC_ACL.
22027         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
22028         function in each branch, before testing the cache variable.
22029
22030 2007-12-04  Eric Blake  <ebb9@byu.net>
22031
22032         Make scripts executable.
22033         * build-aux/config.guess: Add execute permissions.
22034         * build-aux/config.sub: Likewise.
22035         * build-aux/gendocs.sh: Likewise.
22036
22037         Fix frexp on mingw.
22038         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
22039         cross-compiling.
22040         * doc/functions/frexp.texi (frexp): Document the bug.
22041
22042         Make cygwin fseeko check more reliable.
22043         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
22044         version numbers, rather than unrelated feature check.
22045         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
22046         * doc/functions/ftello.texi (ftello): Likewise.
22047         Reported by Bruno Haible.
22048
22049         * m4/strerror.m4: Bump version number.
22050
22051 2007-12-03  Bruno Haible  <bruno@clisp.org>
22052
22053         * doc/functions/mprotect.texi: Mention the mingw problem.
22054
22055 2007-12-03  Eric Blake  <ebb9@byu.net>
22056
22057         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
22058         REPLACE_STRERROR is initialized before this macro.
22059
22060 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
22061
22062         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
22063         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
22064         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
22065         put -lsec in even for programs other than 'ls'.  This fixes a problem
22066         for gettext reported by Bruno Haible in
22067         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
22068         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
22069         Add support for Solaris 10.  This isn't efficient, but should get the
22070         job done for now.
22071
22072 2007-12-03  James Youngman  <jay@gnu.org>
22073
22074         * doc/regexprops-generic.texi: change "an close-group" to "a
22075         close-group" and "illegal" to "not allowed".
22076
22077 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22078
22079         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
22080         pr_byname.h. Needed for the rare case when the maintainer has done
22081         "make maintainer-clean" in the source directory and then attempts a
22082         build outside the source directory.
22083         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
22084         scripts_byname.h.
22085
22086 2007-12-02  Martin Lambers <marlam@marlam.de>
22087             Bruno Haible  <bruno@clisp.org>
22088
22089         * lib/getpagesize.h: Remove file.
22090         * lib/unistd.in.h: Include declaration of getpagesize here.
22091         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
22092         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
22093         HAVE_SYS_PARAM_H.
22094         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
22095         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
22096         * modules/getpagesize (Files): Remove lib/getpagesize.h.
22097         (Depends-on): Add unistd.
22098         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
22099         (Include): Use <unistd.h> instead of getpagesize.h.
22100         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
22101         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
22102         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
22103         gl_GETPAGESIZE invocation, already handled by module dependency.
22104         * lib/pagealign_alloc.c: Don't include getpagesize.h.
22105
22106 2007-12-02  Bruno Haible  <bruno@clisp.org>
22107
22108         * modules/strings-tests: New file.
22109         * tests/test-strings.c: New file.
22110
22111         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
22112         * lib/strings.in.h: New file.
22113         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
22114         * m4/strings_h.m4: New file.
22115         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
22116         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
22117         * modules/strings: New file.
22118         * modules/string (Makefile.am): Update.
22119         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
22120         Reported by Karl Berry.
22121
22122 2007-12-01  Eric Blake  <ebb9@byu.net>
22123
22124         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
22125         accomodate fix in cygwin 1.5.25.
22126
22127 2007-12-01  Jim Meyering  <meyering@redhat.com>
22128
22129         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
22130         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
22131         that would inhibit utf8-optimization of a regexp containing line-
22132         or buffer-anchors, e.g., `^', `$'.
22133
22134 2007-11-30  Bruno Haible  <bruno@clisp.org>
22135
22136         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
22137         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
22138         glthread_recursive_lock_init.
22139         * lib/lock.c (glthread_recursive_lock_init)
22140         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
22141         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22142
22143 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
22144
22145         New function qset_acl, like set_acl but with syscall semantics.
22146         * lib/acl.h (qset_acl): New decl.
22147         * lib/acl.c (qset_acl): New function.
22148         (set_acl): Use new function.  Use more-consistent diagnostics.
22149
22150 2007-11-28  Jim Meyering  <meyering@redhat.com>
22151
22152         * modules/physmem (License): Change from GPL to LGPLv2+.
22153
22154 2007-11-26  Bruno Haible  <bruno@clisp.org>
22155
22156         * lib/vasnprintf.c (decode_long_double): Don't abort if the
22157         'long double' type has excess precision.
22158         Reported by Jim Meyering in
22159         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
22160
22161 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22162
22163         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
22164         Sync from <http://gnu.org/licenses>.
22165         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
22166         with license text from same location.
22167         * doc/maintain.texi, doc/standards.texi:  Sync from
22168         <http://savannah.gnu.org/projects/gnustandards>.
22169
22170 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
22171         and Jim Meyering  <meyering@redhat.com>
22172
22173         Adjust getdate' grammar to accept a slightly more regular language.
22174         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
22175         Before, the former was rejected.
22176         * lib/getdate.y (digits_to_date_time): New function, factored
22177         out of ...
22178         (number): ...here.  Just call digits_to_date_time.
22179         (hybrid): New non-terminal to handle an <unsigned number,
22180         signed relative offset> sequence consistently.
22181
22182 2007-11-18  Jim Meyering  <meyering@redhat.com>
22183
22184         Pull my changes from coreutils:
22185         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
22186         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
22187         use of $gnulib_tool_option_extras, so that it's separated from the
22188         preceding argument.
22189
22190         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
22191         * build-aux/bootstrap (cp_mark_as_generated): Create any required
22192         parent destination directories before copying a file into place.
22193
22194 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
22195
22196         bootstrap: work also with 4-argument variant of AC_INIT
22197         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
22198
22199 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
22200
22201         Port test-getaddrinfo to Solaris.
22202         Problem reported by Bruno Haible in
22203         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
22204         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
22205         explanation of setting 'hints'.
22206         Don't reject an implementation merely because it returns EAI_SERVICE.
22207         (EAI_SERVICE): Define to 0 if not defined.
22208
22209 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
22210
22211         The license of gnu-make and posix-shell is now "GPLed build tool".
22212         * modules/gnu-make (License): Likewise.
22213         * modules/posix-shell (License): Likewise.
22214
22215         New module posix-shell, for determining a POSIX shell
22216         or perhaps something that is close enough to a POSIX shell.
22217         * m4/posix-shell.m4: New file.
22218         * modules/posix-shell: New file.
22219
22220         * MODULES.html.sh: Mention new module.
22221
22222         New module gnu-make, for determining whether we're using GNU Make.
22223         * m4/gnu-make.m4: New file.
22224         * modules/gnu-make: New file.
22225         * MODULES.html.sh: Mention new module.
22226
22227 2007-11-14  Jim Meyering  <meyering@redhat.com>
22228
22229         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
22230         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
22231         use this macro to create a function _definition_.
22232         Remove useless "#undef ARGMATCH_DIE".
22233
22234 2007-11-14  Bruno Haible  <bruno@clisp.org>
22235
22236         * lib/config.charset: Update for OpenBSD 4.1.
22237         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
22238
22239 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
22240
22241         Document 64-bit #if problems in stdint.texi.
22242         * doc/headers/stdint.texi (stdint.h): Mention problems with
22243         64-bit-#if, and how to work around them.
22244
22245         Don't insist on 'long long int' support in the preprocessor.  It
22246         breaks too many things.  For example, PRIdMAX still uses a 'long
22247         long int' format with the latest Sun compiler, even though
22248         HAVE_LONG_LONG_INT isn't defined due to that compiler's
22249         preprocessor problem.  This causes the latest coreutils to dump
22250         core on Solaris 10 sparc with the Sun C compiler.
22251         Instead, fix the 2007-10-16 problem in a different way, by evaluating
22252         the troublesome expressions at configure-time, not at #if-time.
22253         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
22254         preprocessor.
22255         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
22256         compile-time C checks, done at 'configure'-time.
22257         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
22258         * modules/inttypes (Makefile): Substitute the new symbols that
22259         gl_INTTYPES_H now generates.
22260         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
22261
22262 2007-11-12  Bruno Haible  <bruno@clisp.org>
22263
22264         Tests for Unicode character classification functions.
22265
22266         * modules/unictype/bidicategory-byname-tests: New file.
22267         * modules/unictype/bidicategory-name-tests: New file.
22268         * modules/unictype/bidicategory-of-tests: New file.
22269         * modules/unictype/bidicategory-test-tests: New file.
22270         * modules/unictype/block-list-tests: New file.
22271         * modules/unictype/block-of-tests: New file.
22272         * modules/unictype/block-test-tests: New file.
22273         * modules/unictype/category-C-tests: New file.
22274         * modules/unictype/category-Cc-tests: New file.
22275         * modules/unictype/category-Cf-tests: New file.
22276         * modules/unictype/category-Cn-tests: New file.
22277         * modules/unictype/category-Co-tests: New file.
22278         * modules/unictype/category-Cs-tests: New file.
22279         * modules/unictype/category-L-tests: New file.
22280         * modules/unictype/category-Ll-tests: New file.
22281         * modules/unictype/category-Lm-tests: New file.
22282         * modules/unictype/category-Lo-tests: New file.
22283         * modules/unictype/category-Lt-tests: New file.
22284         * modules/unictype/category-Lu-tests: New file.
22285         * modules/unictype/category-M-tests: New file.
22286         * modules/unictype/category-Mc-tests: New file.
22287         * modules/unictype/category-Me-tests: New file.
22288         * modules/unictype/category-Mn-tests: New file.
22289         * modules/unictype/category-N-tests: New file.
22290         * modules/unictype/category-Nd-tests: New file.
22291         * modules/unictype/category-Nl-tests: New file.
22292         * modules/unictype/category-No-tests: New file.
22293         * modules/unictype/category-P-tests: New file.
22294         * modules/unictype/category-Pc-tests: New file.
22295         * modules/unictype/category-Pd-tests: New file.
22296         * modules/unictype/category-Pe-tests: New file.
22297         * modules/unictype/category-Pf-tests: New file.
22298         * modules/unictype/category-Pi-tests: New file.
22299         * modules/unictype/category-Po-tests: New file.
22300         * modules/unictype/category-Ps-tests: New file.
22301         * modules/unictype/category-S-tests: New file.
22302         * modules/unictype/category-Sc-tests: New file.
22303         * modules/unictype/category-Sk-tests: New file.
22304         * modules/unictype/category-Sm-tests: New file.
22305         * modules/unictype/category-So-tests: New file.
22306         * modules/unictype/category-Z-tests: New file.
22307         * modules/unictype/category-Zl-tests: New file.
22308         * modules/unictype/category-Zp-tests: New file.
22309         * modules/unictype/category-Zs-tests: New file.
22310         * modules/unictype/category-and-not-tests: New file.
22311         * modules/unictype/category-and-tests: New file.
22312         * modules/unictype/category-byname-tests: New file.
22313         * modules/unictype/category-name-tests: New file.
22314         * modules/unictype/category-none-tests: New file.
22315         * modules/unictype/category-of-tests: New file.
22316         * modules/unictype/category-or-tests: New file.
22317         * modules/unictype/category-test-withtable-tests: New file.
22318         * modules/unictype/combining-class-tests: New file.
22319         * modules/unictype/ctype-alnum-tests: New file.
22320         * modules/unictype/ctype-alpha-tests: New file.
22321         * modules/unictype/ctype-blank-tests: New file.
22322         * modules/unictype/ctype-cntrl-tests: New file.
22323         * modules/unictype/ctype-digit-tests: New file.
22324         * modules/unictype/ctype-graph-tests: New file.
22325         * modules/unictype/ctype-lower-tests: New file.
22326         * modules/unictype/ctype-print-tests: New file.
22327         * modules/unictype/ctype-punct-tests: New file.
22328         * modules/unictype/ctype-space-tests: New file.
22329         * modules/unictype/ctype-upper-tests: New file.
22330         * modules/unictype/ctype-xdigit-tests: New file.
22331         * modules/unictype/decimal-digit-tests: New file.
22332         * modules/unictype/digit-tests: New file.
22333         * modules/unictype/mirror-tests: New file.
22334         * modules/unictype/numeric-tests: New file.
22335         * modules/unictype/property-alphabetic-tests: New file.
22336         * modules/unictype/property-ascii-hex-digit-tests: New file.
22337         * modules/unictype/property-bidi-arabic-digit-tests: New file.
22338         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
22339         * modules/unictype/property-bidi-block-separator-tests: New file.
22340         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
22341         * modules/unictype/property-bidi-common-separator-tests: New file.
22342         * modules/unictype/property-bidi-control-tests: New file.
22343         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
22344         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
22345         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
22346         * modules/unictype/property-bidi-european-digit-tests: New file.
22347         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
22348         * modules/unictype/property-bidi-left-to-right-tests: New file.
22349         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
22350         * modules/unictype/property-bidi-other-neutral-tests: New file.
22351         * modules/unictype/property-bidi-pdf-tests: New file.
22352         * modules/unictype/property-bidi-segment-separator-tests: New file.
22353         * modules/unictype/property-bidi-whitespace-tests: New file.
22354         * modules/unictype/property-byname-tests: New file.
22355         * modules/unictype/property-combining-tests: New file.
22356         * modules/unictype/property-composite-tests: New file.
22357         * modules/unictype/property-currency-symbol-tests: New file.
22358         * modules/unictype/property-dash-tests: New file.
22359         * modules/unictype/property-decimal-digit-tests: New file.
22360         * modules/unictype/property-default-ignorable-code-point-tests: New file.
22361         * modules/unictype/property-deprecated-tests: New file.
22362         * modules/unictype/property-diacritic-tests: New file.
22363         * modules/unictype/property-extender-tests: New file.
22364         * modules/unictype/property-format-control-tests: New file.
22365         * modules/unictype/property-grapheme-base-tests: New file.
22366         * modules/unictype/property-grapheme-extend-tests: New file.
22367         * modules/unictype/property-grapheme-link-tests: New file.
22368         * modules/unictype/property-hex-digit-tests: New file.
22369         * modules/unictype/property-hyphen-tests: New file.
22370         * modules/unictype/property-id-continue-tests: New file.
22371         * modules/unictype/property-id-start-tests: New file.
22372         * modules/unictype/property-ideographic-tests: New file.
22373         * modules/unictype/property-ids-binary-operator-tests: New file.
22374         * modules/unictype/property-ids-trinary-operator-tests: New file.
22375         * modules/unictype/property-ignorable-control-tests: New file.
22376         * modules/unictype/property-iso-control-tests: New file.
22377         * modules/unictype/property-join-control-tests: New file.
22378         * modules/unictype/property-left-of-pair-tests: New file.
22379         * modules/unictype/property-line-separator-tests: New file.
22380         * modules/unictype/property-logical-order-exception-tests: New file.
22381         * modules/unictype/property-lowercase-tests: New file.
22382         * modules/unictype/property-math-tests: New file.
22383         * modules/unictype/property-non-break-tests: New file.
22384         * modules/unictype/property-not-a-character-tests: New file.
22385         * modules/unictype/property-numeric-tests: New file.
22386         * modules/unictype/property-other-alphabetic-tests: New file.
22387         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
22388         * modules/unictype/property-other-grapheme-extend-tests: New file.
22389         * modules/unictype/property-other-id-continue-tests: New file.
22390         * modules/unictype/property-other-id-start-tests: New file.
22391         * modules/unictype/property-other-lowercase-tests: New file.
22392         * modules/unictype/property-other-math-tests: New file.
22393         * modules/unictype/property-other-uppercase-tests: New file.
22394         * modules/unictype/property-paired-punctuation-tests: New file.
22395         * modules/unictype/property-paragraph-separator-tests: New file.
22396         * modules/unictype/property-pattern-syntax-tests: New file.
22397         * modules/unictype/property-pattern-white-space-tests: New file.
22398         * modules/unictype/property-private-use-tests: New file.
22399         * modules/unictype/property-punctuation-tests: New file.
22400         * modules/unictype/property-quotation-mark-tests: New file.
22401         * modules/unictype/property-radical-tests: New file.
22402         * modules/unictype/property-sentence-terminal-tests: New file.
22403         * modules/unictype/property-soft-dotted-tests: New file.
22404         * modules/unictype/property-space-tests: New file.
22405         * modules/unictype/property-terminal-punctuation-tests: New file.
22406         * modules/unictype/property-test-tests: New file.
22407         * modules/unictype/property-titlecase-tests: New file.
22408         * modules/unictype/property-unassigned-code-value-tests: New file.
22409         * modules/unictype/property-unified-ideograph-tests: New file.
22410         * modules/unictype/property-uppercase-tests: New file.
22411         * modules/unictype/property-variation-selector-tests: New file.
22412         * modules/unictype/property-white-space-tests: New file.
22413         * modules/unictype/property-xid-continue-tests: New file.
22414         * modules/unictype/property-xid-start-tests: New file.
22415         * modules/unictype/property-zero-width-tests: New file.
22416         * modules/unictype/scripts-tests: New file.
22417         * modules/unictype/syntax-c-ident-tests: New file.
22418         * modules/unictype/syntax-c-whitespace-tests: New file.
22419         * modules/unictype/syntax-java-ident-tests: New file.
22420         * modules/unictype/syntax-java-whitespace-tests: New file.
22421         * tests/unictype/test-bidi_byname.c: New file.
22422         * tests/unictype/test-bidi_name.c: New file.
22423         * tests/unictype/test-bidi_of.c: New file.
22424         * tests/unictype/test-bidi_test.c: New file.
22425         * tests/unictype/test-block_list.c: New file.
22426         * tests/unictype/test-block_of.c: New file.
22427         * tests/unictype/test-block_test.c: New file.
22428         * tests/unictype/test-categ_and.c: New file.
22429         * tests/unictype/test-categ_and_not.c: New file.
22430         * tests/unictype/test-categ_byname.c: New file.
22431         * tests/unictype/test-categ_name.c: New file.
22432         * tests/unictype/test-categ_none.c: New file.
22433         * tests/unictype/test-categ_of.c: New file.
22434         * tests/unictype/test-categ_or.c: New file.
22435         * tests/unictype/test-categ_test_withtable.c: New file.
22436         * tests/unictype/test-combining.c: New file.
22437         * tests/unictype/test-decdigit.c: New file.
22438         * tests/unictype/test-digit.c: New file.
22439         * tests/unictype/test-mirror.c: New file.
22440         * tests/unictype/test-numeric.c: New file.
22441         * tests/unictype/test-pr_byname.c: New file.
22442         * tests/unictype/test-pr_test.c: New file.
22443         * tests/unictype/test-predicate-part1.h: New file.
22444         * tests/unictype/test-predicate-part2.h: New file.
22445         * tests/unictype/test-scripts.c: New file.
22446         * tests/unictype/test-sy_c_ident.c: New file.
22447         * tests/unictype/test-sy_java_ident.c: New file.
22448
22449         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
22450         for Unicode 5.0.0.
22451         * tests/unictype/test-categ_Cc.c: Likewise.
22452         * tests/unictype/test-categ_Cf.c: Likewise.
22453         * tests/unictype/test-categ_Cn.c: Likewise.
22454         * tests/unictype/test-categ_Co.c: Likewise.
22455         * tests/unictype/test-categ_Cs.c: Likewise.
22456         * tests/unictype/test-categ_L.c: Likewise.
22457         * tests/unictype/test-categ_Ll.c: Likewise.
22458         * tests/unictype/test-categ_Lm.c: Likewise.
22459         * tests/unictype/test-categ_Lo.c: Likewise.
22460         * tests/unictype/test-categ_Lt.c: Likewise.
22461         * tests/unictype/test-categ_Lu.c: Likewise.
22462         * tests/unictype/test-categ_M.c: Likewise.
22463         * tests/unictype/test-categ_Mc.c: Likewise.
22464         * tests/unictype/test-categ_Me.c: Likewise.
22465         * tests/unictype/test-categ_Mn.c: Likewise.
22466         * tests/unictype/test-categ_N.c: Likewise.
22467         * tests/unictype/test-categ_Nd.c: Likewise.
22468         * tests/unictype/test-categ_Nl.c: Likewise.
22469         * tests/unictype/test-categ_No.c: Likewise.
22470         * tests/unictype/test-categ_P.c: Likewise.
22471         * tests/unictype/test-categ_Pc.c: Likewise.
22472         * tests/unictype/test-categ_Pd.c: Likewise.
22473         * tests/unictype/test-categ_Pe.c: Likewise.
22474         * tests/unictype/test-categ_Pf.c: Likewise.
22475         * tests/unictype/test-categ_Pi.c: Likewise.
22476         * tests/unictype/test-categ_Po.c: Likewise.
22477         * tests/unictype/test-categ_Ps.c: Likewise.
22478         * tests/unictype/test-categ_S.c: Likewise.
22479         * tests/unictype/test-categ_Sc.c: Likewise.
22480         * tests/unictype/test-categ_Sk.c: Likewise.
22481         * tests/unictype/test-categ_Sm.c: Likewise.
22482         * tests/unictype/test-categ_So.c: Likewise.
22483         * tests/unictype/test-categ_Z.c: Likewise.
22484         * tests/unictype/test-categ_Zl.c: Likewise.
22485         * tests/unictype/test-categ_Zp.c: Likewise.
22486         * tests/unictype/test-categ_Zs.c: Likewise.
22487         * tests/unictype/test-ctype_alnum.c: Likewise.
22488         * tests/unictype/test-ctype_alpha.c: Likewise.
22489         * tests/unictype/test-ctype_blank.c: Likewise.
22490         * tests/unictype/test-ctype_cntrl.c: Likewise.
22491         * tests/unictype/test-ctype_digit.c: Likewise.
22492         * tests/unictype/test-ctype_graph.c: Likewise.
22493         * tests/unictype/test-ctype_lower.c: Likewise.
22494         * tests/unictype/test-ctype_print.c: Likewise.
22495         * tests/unictype/test-ctype_punct.c: Likewise.
22496         * tests/unictype/test-ctype_space.c: Likewise.
22497         * tests/unictype/test-ctype_upper.c: Likewise.
22498         * tests/unictype/test-ctype_xdigit.c: Likewise.
22499         * tests/unictype/test-decdigit.h: Likewise.
22500         * tests/unictype/test-digit.h: Likewise.
22501         * tests/unictype/test-numeric.h: Likewise.
22502         * tests/unictype/test-pr_alphabetic.c: Likewise.
22503         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
22504         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
22505         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
22506         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
22507         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
22508         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
22509         * tests/unictype/test-pr_bidi_control.c: Likewise.
22510         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
22511         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
22512         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
22513         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
22514         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
22515         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
22516         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
22517         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
22518         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
22519         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
22520         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
22521         * tests/unictype/test-pr_combining.c: Likewise.
22522         * tests/unictype/test-pr_composite.c: Likewise.
22523         * tests/unictype/test-pr_currency_symbol.c: Likewise.
22524         * tests/unictype/test-pr_dash.c: Likewise.
22525         * tests/unictype/test-pr_decimal_digit.c: Likewise.
22526         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
22527         * tests/unictype/test-pr_deprecated.c: Likewise.
22528         * tests/unictype/test-pr_diacritic.c: Likewise.
22529         * tests/unictype/test-pr_extender.c: Likewise.
22530         * tests/unictype/test-pr_format_control.c: Likewise.
22531         * tests/unictype/test-pr_grapheme_base.c: Likewise.
22532         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
22533         * tests/unictype/test-pr_grapheme_link.c: Likewise.
22534         * tests/unictype/test-pr_hex_digit.c: Likewise.
22535         * tests/unictype/test-pr_hyphen.c: Likewise.
22536         * tests/unictype/test-pr_id_continue.c: Likewise.
22537         * tests/unictype/test-pr_id_start.c: Likewise.
22538         * tests/unictype/test-pr_ideographic.c: Likewise.
22539         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
22540         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
22541         * tests/unictype/test-pr_ignorable_control.c: Likewise.
22542         * tests/unictype/test-pr_iso_control.c: Likewise.
22543         * tests/unictype/test-pr_join_control.c: Likewise.
22544         * tests/unictype/test-pr_left_of_pair.c: Likewise.
22545         * tests/unictype/test-pr_line_separator.c: Likewise.
22546         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
22547         * tests/unictype/test-pr_lowercase.c: Likewise.
22548         * tests/unictype/test-pr_math.c: Likewise.
22549         * tests/unictype/test-pr_non_break.c: Likewise.
22550         * tests/unictype/test-pr_not_a_character.c: Likewise.
22551         * tests/unictype/test-pr_numeric.c: Likewise.
22552         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
22553         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
22554         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
22555         * tests/unictype/test-pr_other_id_continue.c: Likewise.
22556         * tests/unictype/test-pr_other_id_start.c: Likewise.
22557         * tests/unictype/test-pr_other_lowercase.c: Likewise.
22558         * tests/unictype/test-pr_other_math.c: Likewise.
22559         * tests/unictype/test-pr_other_uppercase.c: Likewise.
22560         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
22561         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
22562         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
22563         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
22564         * tests/unictype/test-pr_private_use.c: Likewise.
22565         * tests/unictype/test-pr_punctuation.c: Likewise.
22566         * tests/unictype/test-pr_quotation_mark.c: Likewise.
22567         * tests/unictype/test-pr_radical.c: Likewise.
22568         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
22569         * tests/unictype/test-pr_soft_dotted.c: Likewise.
22570         * tests/unictype/test-pr_space.c: Likewise.
22571         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
22572         * tests/unictype/test-pr_titlecase.c: Likewise.
22573         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
22574         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
22575         * tests/unictype/test-pr_uppercase.c: Likewise.
22576         * tests/unictype/test-pr_variation_selector.c: Likewise.
22577         * tests/unictype/test-pr_white_space.c: Likewise.
22578         * tests/unictype/test-pr_xid_continue.c: Likewise.
22579         * tests/unictype/test-pr_xid_start.c: Likewise.
22580         * tests/unictype/test-pr_zero_width.c: Likewise.
22581         * tests/unictype/test-sy_c_whitespace.c: Likewise.
22582         * tests/unictype/test-sy_java_whitespace.c: Likewise.
22583
22584 2007-11-12  Bruno Haible  <bruno@clisp.org>
22585
22586         Unicode character classification functions.
22587         * lib/unictype.h: New file.
22588         * modules/unictype/base: New file.
22589         * modules/unictype/category-L: New file.
22590         * modules/unictype/category-Lu: New file.
22591         * modules/unictype/category-Ll: New file.
22592         * modules/unictype/category-Lt: New file.
22593         * modules/unictype/category-Lm: New file.
22594         * modules/unictype/category-Lo: New file.
22595         * modules/unictype/category-M: New file.
22596         * modules/unictype/category-Mn: New file.
22597         * modules/unictype/category-Mc: New file.
22598         * modules/unictype/category-Me: New file.
22599         * modules/unictype/category-N: New file.
22600         * modules/unictype/category-Nd: New file.
22601         * modules/unictype/category-Nl: New file.
22602         * modules/unictype/category-No: New file.
22603         * modules/unictype/category-P: New file.
22604         * modules/unictype/category-Pc: New file.
22605         * modules/unictype/category-Pd: New file.
22606         * modules/unictype/category-Ps: New file.
22607         * modules/unictype/category-Pe: New file.
22608         * modules/unictype/category-Pi: New file.
22609         * modules/unictype/category-Pf: New file.
22610         * modules/unictype/category-Po: New file.
22611         * modules/unictype/category-S: New file.
22612         * modules/unictype/category-Sm: New file.
22613         * modules/unictype/category-Sc: New file.
22614         * modules/unictype/category-Sk: New file.
22615         * modules/unictype/category-So: New file.
22616         * modules/unictype/category-Z: New file.
22617         * modules/unictype/category-Zs: New file.
22618         * modules/unictype/category-Zl: New file.
22619         * modules/unictype/category-Zp: New file.
22620         * modules/unictype/category-C: New file.
22621         * modules/unictype/category-Cc: New file.
22622         * modules/unictype/category-Cf: New file.
22623         * modules/unictype/category-Cs: New file.
22624         * modules/unictype/category-Co: New file.
22625         * modules/unictype/category-Cn: New file.
22626         * modules/unictype/category-or: New file.
22627         * modules/unictype/category-of: New file.
22628         * modules/unictype/category-test: New file.
22629         * modules/unictype/category-test-withtable: New file.
22630         * modules/unictype/category-byname: New file.
22631         * modules/unictype/category-none: New file.
22632         * modules/unictype/category-and: New file.
22633         * modules/unictype/category-and-not: New file.
22634         * modules/unictype/category-name: New file.
22635         * modules/unictype/combining-class: New file.
22636         * modules/unictype/category-all: New file.
22637         * modules/unictype/bidicategory-all: New file.
22638         * modules/unictype/bidicategory-byname: New file.
22639         * modules/unictype/bidicategory-name: New file.
22640         * modules/unictype/bidicategory-of: New file.
22641         * modules/unictype/bidicategory-test: New file.
22642         * modules/unictype/decimal-digit: New file.
22643         * modules/unictype/digit: New file.
22644         * modules/unictype/numeric: New file.
22645         * modules/unictype/mirror: New file.
22646         * modules/unictype/property-white-space: New file.
22647         * modules/unictype/property-alphabetic: New file.
22648         * modules/unictype/property-other-alphabetic: New file.
22649         * modules/unictype/property-not-a-character: New file.
22650         * modules/unictype/property-default-ignorable-code-point: New file.
22651         * modules/unictype/property-other-default-ignorable-code-point: New
22652         file.
22653         * modules/unictype/property-deprecated: New file.
22654         * modules/unictype/property-logical-order-exception: New file.
22655         * modules/unictype/property-variation-selector: New file.
22656         * modules/unictype/property-private-use: New file.
22657         * modules/unictype/property-unassigned-code-value: New file.
22658         * modules/unictype/property-uppercase: New file.
22659         * modules/unictype/property-other-uppercase: New file.
22660         * modules/unictype/property-lowercase: New file.
22661         * modules/unictype/property-other-lowercase: New file.
22662         * modules/unictype/property-titlecase: New file.
22663         * modules/unictype/property-soft-dotted: New file.
22664         * modules/unictype/property-id-start: New file.
22665         * modules/unictype/property-other-id-start: New file.
22666         * modules/unictype/property-id-continue: New file.
22667         * modules/unictype/property-other-id-continue: New file.
22668         * modules/unictype/property-xid-start: New file.
22669         * modules/unictype/property-xid-continue: New file.
22670         * modules/unictype/property-pattern-white-space: New file.
22671         * modules/unictype/property-pattern-syntax: New file.
22672         * modules/unictype/property-join-control: New file.
22673         * modules/unictype/property-grapheme-base: New file.
22674         * modules/unictype/property-grapheme-extend: New file.
22675         * modules/unictype/property-other-grapheme-extend: New file.
22676         * modules/unictype/property-grapheme-link: New file.
22677         * modules/unictype/property-bidi-control: New file.
22678         * modules/unictype/property-bidi-left-to-right: New file.
22679         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
22680         * modules/unictype/property-bidi-arabic-right-to-left: New file.
22681         * modules/unictype/property-bidi-european-digit: New file.
22682         * modules/unictype/property-bidi-eur-num-separator: New file.
22683         * modules/unictype/property-bidi-eur-num-terminator: New file.
22684         * modules/unictype/property-bidi-arabic-digit: New file.
22685         * modules/unictype/property-bidi-common-separator: New file.
22686         * modules/unictype/property-bidi-block-separator: New file.
22687         * modules/unictype/property-bidi-segment-separator: New file.
22688         * modules/unictype/property-bidi-whitespace: New file.
22689         * modules/unictype/property-bidi-non-spacing-mark: New file.
22690         * modules/unictype/property-bidi-boundary-neutral: New file.
22691         * modules/unictype/property-bidi-pdf: New file.
22692         * modules/unictype/property-bidi-embedding-or-override: New file.
22693         * modules/unictype/property-bidi-other-neutral: New file.
22694         * modules/unictype/property-hex-digit: New file.
22695         * modules/unictype/property-ascii-hex-digit: New file.
22696         * modules/unictype/property-ideographic: New file.
22697         * modules/unictype/property-unified-ideograph: New file.
22698         * modules/unictype/property-radical: New file.
22699         * modules/unictype/property-ids-binary-operator: New file.
22700         * modules/unictype/property-ids-trinary-operator: New file.
22701         * modules/unictype/property-zero-width: New file.
22702         * modules/unictype/property-space: New file.
22703         * modules/unictype/property-non-break: New file.
22704         * modules/unictype/property-iso-control: New file.
22705         * modules/unictype/property-format-control: New file.
22706         * modules/unictype/property-dash: New file.
22707         * modules/unictype/property-hyphen: New file.
22708         * modules/unictype/property-punctuation: New file.
22709         * modules/unictype/property-line-separator: New file.
22710         * modules/unictype/property-paragraph-separator: New file.
22711         * modules/unictype/property-quotation-mark: New file.
22712         * modules/unictype/property-sentence-terminal: New file.
22713         * modules/unictype/property-terminal-punctuation: New file.
22714         * modules/unictype/property-currency-symbol: New file.
22715         * modules/unictype/property-math: New file.
22716         * modules/unictype/property-other-math: New file.
22717         * modules/unictype/property-paired-punctuation: New file.
22718         * modules/unictype/property-left-of-pair: New file.
22719         * modules/unictype/property-combining: New file.
22720         * modules/unictype/property-composite: New file.
22721         * modules/unictype/property-decimal-digit: New file.
22722         * modules/unictype/property-numeric: New file.
22723         * modules/unictype/property-diacritic: New file.
22724         * modules/unictype/property-extender: New file.
22725         * modules/unictype/property-ignorable-control: New file.
22726         * modules/unictype/property-test: New file.
22727         * modules/unictype/property-byname: New file.
22728         * modules/unictype/property-all: New file.
22729         * modules/unictype/scripts: New file.
22730         * modules/unictype/scripts-all: New file.
22731         * modules/unictype/block-of: New file.
22732         * modules/unictype/block-test: New file.
22733         * modules/unictype/block-list: New file.
22734         * modules/unictype/block-all: New file.
22735         * modules/unictype/syntax-c-whitespace: New file.
22736         * modules/unictype/syntax-java-whitespace: New file.
22737         * modules/unictype/syntax-c-ident: New file.
22738         * modules/unictype/syntax-java-ident: New file.
22739         * modules/unictype/ctype-alnum: New file.
22740         * modules/unictype/ctype-alpha: New file.
22741         * modules/unictype/ctype-cntrl: New file.
22742         * modules/unictype/ctype-digit: New file.
22743         * modules/unictype/ctype-graph: New file.
22744         * modules/unictype/ctype-lower: New file.
22745         * modules/unictype/ctype-print: New file.
22746         * modules/unictype/ctype-punct: New file.
22747         * modules/unictype/ctype-space: New file.
22748         * modules/unictype/ctype-upper: New file.
22749         * modules/unictype/ctype-xdigit: New file.
22750         * modules/unictype/ctype-blank: New file.
22751         * lib/unictype/bidi_byname.c: New file.
22752         * lib/unictype/bidi_name.c: New file.
22753         * lib/unictype/bidi_of.c: New file.
22754         * lib/unictype/bidi_test.c: New file.
22755         * lib/unictype/bitmap.h: New file.
22756         * lib/unictype/block_test.c: New file.
22757         * lib/unictype/blocks.c: New file.
22758         * lib/unictype/categ_C.c: New file.
22759         * lib/unictype/categ_Cc.c: New file.
22760         * lib/unictype/categ_Cf.c: New file.
22761         * lib/unictype/categ_Cn.c: New file.
22762         * lib/unictype/categ_Co.c: New file.
22763         * lib/unictype/categ_Cs.c: New file.
22764         * lib/unictype/categ_L.c: New file.
22765         * lib/unictype/categ_Ll.c: New file.
22766         * lib/unictype/categ_Lm.c: New file.
22767         * lib/unictype/categ_Lo.c: New file.
22768         * lib/unictype/categ_Lt.c: New file.
22769         * lib/unictype/categ_Lu.c: New file.
22770         * lib/unictype/categ_M.c: New file.
22771         * lib/unictype/categ_Mc.c: New file.
22772         * lib/unictype/categ_Me.c: New file.
22773         * lib/unictype/categ_Mn.c: New file.
22774         * lib/unictype/categ_N.c: New file.
22775         * lib/unictype/categ_Nd.c: New file.
22776         * lib/unictype/categ_Nl.c: New file.
22777         * lib/unictype/categ_No.c: New file.
22778         * lib/unictype/categ_P.c: New file.
22779         * lib/unictype/categ_Pc.c: New file.
22780         * lib/unictype/categ_Pd.c: New file.
22781         * lib/unictype/categ_Pe.c: New file.
22782         * lib/unictype/categ_Pf.c: New file.
22783         * lib/unictype/categ_Pi.c: New file.
22784         * lib/unictype/categ_Po.c: New file.
22785         * lib/unictype/categ_Ps.c: New file.
22786         * lib/unictype/categ_S.c: New file.
22787         * lib/unictype/categ_Sc.c: New file.
22788         * lib/unictype/categ_Sk.c: New file.
22789         * lib/unictype/categ_Sm.c: New file.
22790         * lib/unictype/categ_So.c: New file.
22791         * lib/unictype/categ_Z.c: New file.
22792         * lib/unictype/categ_Zl.c: New file.
22793         * lib/unictype/categ_Zp.c: New file.
22794         * lib/unictype/categ_Zs.c: New file.
22795         * lib/unictype/categ_and.c: New file.
22796         * lib/unictype/categ_and_not.c: New file.
22797         * lib/unictype/categ_byname.c: New file.
22798         * lib/unictype/categ_name.c: New file.
22799         * lib/unictype/categ_none.c: New file.
22800         * lib/unictype/categ_of.c: New file.
22801         * lib/unictype/categ_or.c: New file.
22802         * lib/unictype/categ_test.c: New file.
22803         * lib/unictype/combining.c: New file.
22804         * lib/unictype/ctype_alnum.c: New file.
22805         * lib/unictype/ctype_alpha.c: New file.
22806         * lib/unictype/ctype_blank.c: New file.
22807         * lib/unictype/ctype_cntrl.c: New file.
22808         * lib/unictype/ctype_digit.c: New file.
22809         * lib/unictype/ctype_graph.c: New file.
22810         * lib/unictype/ctype_lower.c: New file.
22811         * lib/unictype/ctype_print.c: New file.
22812         * lib/unictype/ctype_punct.c: New file.
22813         * lib/unictype/ctype_space.c: New file.
22814         * lib/unictype/ctype_upper.c: New file.
22815         * lib/unictype/ctype_xdigit.c: New file.
22816         * lib/unictype/decdigit.c: New file.
22817         * lib/unictype/digit.c: New file.
22818         * lib/unictype/identsyntaxmap.h: New file.
22819         * lib/unictype/mirror.c: New file.
22820         * lib/unictype/numeric.c: New file.
22821         * lib/unictype/pr_alphabetic.c: New file.
22822         * lib/unictype/pr_ascii_hex_digit.c: New file.
22823         * lib/unictype/pr_bidi_arabic_digit.c: New file.
22824         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
22825         * lib/unictype/pr_bidi_block_separator.c: New file.
22826         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
22827         * lib/unictype/pr_bidi_common_separator.c: New file.
22828         * lib/unictype/pr_bidi_control.c: New file.
22829         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
22830         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
22831         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
22832         * lib/unictype/pr_bidi_european_digit.c: New file.
22833         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
22834         * lib/unictype/pr_bidi_left_to_right.c: New file.
22835         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
22836         * lib/unictype/pr_bidi_other_neutral.c: New file.
22837         * lib/unictype/pr_bidi_pdf.c: New file.
22838         * lib/unictype/pr_bidi_segment_separator.c: New file.
22839         * lib/unictype/pr_bidi_whitespace.c: New file.
22840         * lib/unictype/pr_byname.c: New file.
22841         * lib/unictype/pr_byname.gperf: New file.
22842         * lib/unictype/pr_combining.c: New file.
22843         * lib/unictype/pr_composite.c: New file.
22844         * lib/unictype/pr_currency_symbol.c: New file.
22845         * lib/unictype/pr_dash.c: New file.
22846         * lib/unictype/pr_decimal_digit.c: New file.
22847         * lib/unictype/pr_default_ignorable_code_point.c: New file.
22848         * lib/unictype/pr_deprecated.c: New file.
22849         * lib/unictype/pr_diacritic.c: New file.
22850         * lib/unictype/pr_extender.c: New file.
22851         * lib/unictype/pr_format_control.c: New file.
22852         * lib/unictype/pr_grapheme_base.c: New file.
22853         * lib/unictype/pr_grapheme_extend.c: New file.
22854         * lib/unictype/pr_grapheme_link.c: New file.
22855         * lib/unictype/pr_hex_digit.c: New file.
22856         * lib/unictype/pr_hyphen.c: New file.
22857         * lib/unictype/pr_id_continue.c: New file.
22858         * lib/unictype/pr_id_start.c: New file.
22859         * lib/unictype/pr_ideographic.c: New file.
22860         * lib/unictype/pr_ids_binary_operator.c: New file.
22861         * lib/unictype/pr_ids_trinary_operator.c: New file.
22862         * lib/unictype/pr_ignorable_control.c: New file.
22863         * lib/unictype/pr_iso_control.c: New file.
22864         * lib/unictype/pr_join_control.c: New file.
22865         * lib/unictype/pr_left_of_pair.c: New file.
22866         * lib/unictype/pr_line_separator.c: New file.
22867         * lib/unictype/pr_logical_order_exception.c: New file.
22868         * lib/unictype/pr_lowercase.c: New file.
22869         * lib/unictype/pr_math.c: New file.
22870         * lib/unictype/pr_non_break.c: New file.
22871         * lib/unictype/pr_not_a_character.c: New file.
22872         * lib/unictype/pr_numeric.c: New file.
22873         * lib/unictype/pr_other_alphabetic.c: New file.
22874         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
22875         * lib/unictype/pr_other_grapheme_extend.c: New file.
22876         * lib/unictype/pr_other_id_continue.c: New file.
22877         * lib/unictype/pr_other_id_start.c: New file.
22878         * lib/unictype/pr_other_lowercase.c: New file.
22879         * lib/unictype/pr_other_math.c: New file.
22880         * lib/unictype/pr_other_uppercase.c: New file.
22881         * lib/unictype/pr_paired_punctuation.c: New file.
22882         * lib/unictype/pr_paragraph_separator.c: New file.
22883         * lib/unictype/pr_pattern_syntax.c: New file.
22884         * lib/unictype/pr_pattern_white_space.c: New file.
22885         * lib/unictype/pr_private_use.c: New file.
22886         * lib/unictype/pr_punctuation.c: New file.
22887         * lib/unictype/pr_quotation_mark.c: New file.
22888         * lib/unictype/pr_radical.c: New file.
22889         * lib/unictype/pr_sentence_terminal.c: New file.
22890         * lib/unictype/pr_soft_dotted.c: New file.
22891         * lib/unictype/pr_space.c: New file.
22892         * lib/unictype/pr_terminal_punctuation.c: New file.
22893         * lib/unictype/pr_test.c: New file.
22894         * lib/unictype/pr_titlecase.c: New file.
22895         * lib/unictype/pr_unassigned_code_value.c: New file.
22896         * lib/unictype/pr_unified_ideograph.c: New file.
22897         * lib/unictype/pr_uppercase.c: New file.
22898         * lib/unictype/pr_variation_selector.c: New file.
22899         * lib/unictype/pr_white_space.c: New file.
22900         * lib/unictype/pr_xid_continue.c: New file.
22901         * lib/unictype/pr_xid_start.c: New file.
22902         * lib/unictype/pr_zero_width.c: New file.
22903         * lib/unictype/scripts.c: New file.
22904         * lib/unictype/sy_c_ident.c: New file.
22905         * lib/unictype/sy_c_whitespace.c: New file.
22906         * lib/unictype/sy_java_ident.c: New file.
22907         * lib/unictype/sy_java_whitespace.c: New file.
22908
22909         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
22910         Unicode 5.0.0.
22911         * lib/unictype/blocks.h: Likewise.
22912         * lib/unictype/categ_C.h: Likewise.
22913         * lib/unictype/categ_Cc.h: Likewise.
22914         * lib/unictype/categ_Cf.h: Likewise.
22915         * lib/unictype/categ_Cn.h: Likewise.
22916         * lib/unictype/categ_Co.h: Likewise.
22917         * lib/unictype/categ_Cs.h: Likewise.
22918         * lib/unictype/categ_L.h: Likewise.
22919         * lib/unictype/categ_Ll.h: Likewise.
22920         * lib/unictype/categ_Lm.h: Likewise.
22921         * lib/unictype/categ_Lo.h: Likewise.
22922         * lib/unictype/categ_Lt.h: Likewise.
22923         * lib/unictype/categ_Lu.h: Likewise.
22924         * lib/unictype/categ_M.h: Likewise.
22925         * lib/unictype/categ_Mc.h: Likewise.
22926         * lib/unictype/categ_Me.h: Likewise.
22927         * lib/unictype/categ_Mn.h: Likewise.
22928         * lib/unictype/categ_N.h: Likewise.
22929         * lib/unictype/categ_Nd.h: Likewise.
22930         * lib/unictype/categ_Nl.h: Likewise.
22931         * lib/unictype/categ_No.h: Likewise.
22932         * lib/unictype/categ_P.h: Likewise.
22933         * lib/unictype/categ_Pc.h: Likewise.
22934         * lib/unictype/categ_Pd.h: Likewise.
22935         * lib/unictype/categ_Pe.h: Likewise.
22936         * lib/unictype/categ_Pf.h: Likewise.
22937         * lib/unictype/categ_Pi.h: Likewise.
22938         * lib/unictype/categ_Po.h: Likewise.
22939         * lib/unictype/categ_Ps.h: Likewise.
22940         * lib/unictype/categ_S.h: Likewise.
22941         * lib/unictype/categ_Sc.h: Likewise.
22942         * lib/unictype/categ_Sk.h: Likewise.
22943         * lib/unictype/categ_Sm.h: Likewise.
22944         * lib/unictype/categ_So.h: Likewise.
22945         * lib/unictype/categ_Z.h: Likewise.
22946         * lib/unictype/categ_Zl.h: Likewise.
22947         * lib/unictype/categ_Zp.h: Likewise.
22948         * lib/unictype/categ_Zs.h: Likewise.
22949         * lib/unictype/categ_of.h: Likewise.
22950         * lib/unictype/combining.h: Likewise.
22951         * lib/unictype/ctype_alnum.h: Likewise.
22952         * lib/unictype/ctype_alpha.h: Likewise.
22953         * lib/unictype/ctype_blank.h: Likewise.
22954         * lib/unictype/ctype_cntrl.h: Likewise.
22955         * lib/unictype/ctype_digit.h: Likewise.
22956         * lib/unictype/ctype_graph.h: Likewise.
22957         * lib/unictype/ctype_lower.h: Likewise.
22958         * lib/unictype/ctype_print.h: Likewise.
22959         * lib/unictype/ctype_punct.h: Likewise.
22960         * lib/unictype/ctype_space.h: Likewise.
22961         * lib/unictype/ctype_upper.h: Likewise.
22962         * lib/unictype/ctype_xdigit.h: Likewise.
22963         * lib/unictype/decdigit.h: Likewise.
22964         * lib/unictype/digit.h: Likewise.
22965         * lib/unictype/mirror.h: Likewise.
22966         * lib/unictype/numeric.h: Likewise.
22967         * lib/unictype/pr_alphabetic.h: Likewise.
22968         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
22969         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
22970         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
22971         * lib/unictype/pr_bidi_block_separator.h: Likewise.
22972         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
22973         * lib/unictype/pr_bidi_common_separator.h: Likewise.
22974         * lib/unictype/pr_bidi_control.h: Likewise.
22975         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
22976         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
22977         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
22978         * lib/unictype/pr_bidi_european_digit.h: Likewise.
22979         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
22980         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
22981         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
22982         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
22983         * lib/unictype/pr_bidi_pdf.h: Likewise.
22984         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
22985         * lib/unictype/pr_bidi_whitespace.h: Likewise.
22986         * lib/unictype/pr_combining.h: Likewise.
22987         * lib/unictype/pr_composite.h: Likewise.
22988         * lib/unictype/pr_currency_symbol.h: Likewise.
22989         * lib/unictype/pr_dash.h: Likewise.
22990         * lib/unictype/pr_decimal_digit.h: Likewise.
22991         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
22992         * lib/unictype/pr_deprecated.h: Likewise.
22993         * lib/unictype/pr_diacritic.h: Likewise.
22994         * lib/unictype/pr_extender.h: Likewise.
22995         * lib/unictype/pr_format_control.h: Likewise.
22996         * lib/unictype/pr_grapheme_base.h: Likewise.
22997         * lib/unictype/pr_grapheme_extend.h: Likewise.
22998         * lib/unictype/pr_grapheme_link.h: Likewise.
22999         * lib/unictype/pr_hex_digit.h: Likewise.
23000         * lib/unictype/pr_hyphen.h: Likewise.
23001         * lib/unictype/pr_id_continue.h: Likewise.
23002         * lib/unictype/pr_id_start.h: Likewise.
23003         * lib/unictype/pr_ideographic.h: Likewise.
23004         * lib/unictype/pr_ids_binary_operator.h: Likewise.
23005         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
23006         * lib/unictype/pr_ignorable_control.h: Likewise.
23007         * lib/unictype/pr_iso_control.h: Likewise.
23008         * lib/unictype/pr_join_control.h: Likewise.
23009         * lib/unictype/pr_left_of_pair.h: Likewise.
23010         * lib/unictype/pr_line_separator.h: Likewise.
23011         * lib/unictype/pr_logical_order_exception.h: Likewise.
23012         * lib/unictype/pr_lowercase.h: Likewise.
23013         * lib/unictype/pr_math.h: Likewise.
23014         * lib/unictype/pr_non_break.h: Likewise.
23015         * lib/unictype/pr_not_a_character.h: Likewise.
23016         * lib/unictype/pr_numeric.h: Likewise.
23017         * lib/unictype/pr_other_alphabetic.h: Likewise.
23018         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
23019         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
23020         * lib/unictype/pr_other_id_continue.h: Likewise.
23021         * lib/unictype/pr_other_id_start.h: Likewise.
23022         * lib/unictype/pr_other_lowercase.h: Likewise.
23023         * lib/unictype/pr_other_math.h: Likewise.
23024         * lib/unictype/pr_other_uppercase.h: Likewise.
23025         * lib/unictype/pr_paired_punctuation.h: Likewise.
23026         * lib/unictype/pr_paragraph_separator.h: Likewise.
23027         * lib/unictype/pr_pattern_syntax.h: Likewise.
23028         * lib/unictype/pr_pattern_white_space.h: Likewise.
23029         * lib/unictype/pr_private_use.h: Likewise.
23030         * lib/unictype/pr_punctuation.h: Likewise.
23031         * lib/unictype/pr_quotation_mark.h: Likewise.
23032         * lib/unictype/pr_radical.h: Likewise.
23033         * lib/unictype/pr_sentence_terminal.h: Likewise.
23034         * lib/unictype/pr_soft_dotted.h: Likewise.
23035         * lib/unictype/pr_space.h: Likewise.
23036         * lib/unictype/pr_terminal_punctuation.h: Likewise.
23037         * lib/unictype/pr_titlecase.h: Likewise.
23038         * lib/unictype/pr_unassigned_code_value.h: Likewise.
23039         * lib/unictype/pr_unified_ideograph.h: Likewise.
23040         * lib/unictype/pr_uppercase.h: Likewise.
23041         * lib/unictype/pr_variation_selector.h: Likewise.
23042         * lib/unictype/pr_white_space.h: Likewise.
23043         * lib/unictype/pr_xid_continue.h: Likewise.
23044         * lib/unictype/pr_xid_start.h: Likewise.
23045         * lib/unictype/pr_zero_width.h: Likewise.
23046         * lib/unictype/scripts.h: Likewise.
23047         * lib/unictype/scripts_byname.gperf: Likewise.
23048         * lib/unictype/sy_c_ident.h: Likewise.
23049         * lib/unictype/sy_c_whitespace.h: Likewise.
23050         * lib/unictype/sy_java_ident.h: Likewise.
23051         * lib/unictype/sy_java_whitespace.h: Likewise.
23052
23053         * lib/unictype/Makefile: New file.
23054         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
23055         glibc.
23056         * lib/unictype/3level.h: New file, copied from glibc.
23057         * lib/unictype/3levelbit.h: New file.
23058
23059 2007-11-11  Bruno Haible  <bruno@clisp.org>
23060
23061         * modules/gperf: New file.
23062         * modules/iconv_open (Depends-on): Add it.
23063         (Makefile.am): Remove the GPERF definition.
23064
23065 2007-11-11  Bruno Haible  <bruno@clisp.org>
23066
23067         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
23068         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
23069
23070 2007-11-11  Bruno Haible  <bruno@clisp.org>
23071
23072         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
23073         (usage): Remove function.
23074
23075 2007-11-11  Bruno Haible  <bruno@clisp.org>
23076
23077         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
23078         gl_FUNC_CEILF_LIBS.
23079         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
23080         gl_FUNC_CEIL_LIBS.
23081         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
23082         gl_FUNC_CEILL_LIBS.
23083         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
23084         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
23085         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
23086
23087 2007-11-11  Bruno Haible  <bruno@clisp.org>
23088
23089         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
23090         roundf were declared but do not exist on functions.
23091         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
23092         roundl were declared but do not exist on functions.
23093         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
23094         HAVE_FLOORL_AND_CEILL, respectively.
23095         Needed for Sun C on Solaris 10.
23096
23097 2007-11-11  Bruno Haible  <bruno@clisp.org>
23098
23099         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
23100         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
23101         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
23102         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
23103         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
23104         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
23105         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
23106         HAVE_DECL_ROUNDF.
23107         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
23108         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
23109         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
23110         of HAVE_DECL_ROUND*.
23111         * modules/math (Makefile.am): Update.
23112
23113 2007-11-10  Bruno Haible  <bruno@clisp.org>
23114
23115         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
23116         ptrdiff_t as m4/intl.m4.
23117
23118 2007-11-10  Jim Meyering  <meyering@redhat.com>
23119
23120         Avoid link failure for the argmatch test.
23121         * tests/test-argmatch.c (usage): Define function to avoid a link
23122         failure: argmatch_die requires a usage function.
23123
23124 2007-11-09  Bruno Haible  <bruno@clisp.org>
23125
23126         * doc/functions/snprintf.texi: Mention BeOS deficiency.
23127         * doc/functions/vsnprintf.texi: Likewise.
23128         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
23129         with a size argument < 2.
23130
23131 2007-11-09  Bruno Haible  <bruno@clisp.org>
23132
23133         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
23134         buffer. Fixes an inefficiency introduced on 2007-11-03.
23135
23136 2007-11-09  Bruno Haible  <bruno@clisp.org>
23137
23138         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
23139         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
23140
23141 2007-11-08  Jim Meyering  <meyering@redhat.com>
23142
23143         Change cache variable name prefix "jm_" to "gl_" everywhere.
23144         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
23145         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
23146         * m4/uptime.m4: s/gl_/jm_/
23147
23148 2007-11-07  Bruno Haible  <bruno@clisp.org>
23149
23150         Update to GNU gettext 0.17.
23151         * m4/intl.m4: Update to GNU gettext 0.17.
23152         * m4/po.m4: Likewise.
23153         * modules/gettext (Files): Remove m4/ulonglong.m4.
23154         (configure.ac): Require gettext infrastructure from version 0.17.
23155
23156 2007-11-06  Bruno Haible  <bruno@clisp.org>
23157
23158         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
23159         symbolic values are not defined in a public header.
23160         * lib/freadable.c (freadable) [QNX]: Likewise.
23161         * lib/freadahead.c (freadahead) [QNX]: Likewise.
23162         * lib/freading.c (freading) [QNX]: Likewise.
23163         * lib/fseterr.c (fseterr) [QNX]: Likewise.
23164         * lib/fwritable.c (fwritable) [QNX]: Likewise.
23165         * lib/fwriting.c (fwriting) [QNX]: Likewise.
23166         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
23167         Reported by Alain Magloire.
23168
23169         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
23170
23171 2007-11-05  Bruno Haible  <bruno@clisp.org>
23172
23173         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
23174         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
23175         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
23176         Reported by Eric Blake.
23177
23178 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23179             Bruno Haible  <bruno@clisp.org>
23180
23181         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
23182         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
23183         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
23184         (malloc): Undefine also before including <stdlib.h>.
23185         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
23186         Needed on OSF/1 4.0.
23187
23188 2007-11-05  Jim Meyering  <meyering@redhat.com>
23189
23190         git-version-gen: sync from coreutils.
23191         * build-aux/git-version-gen: Add comments.
23192         Change the first '-' to '.' in the snapshot version string,
23193         e.g., 6.9-377-08144 -> 6.9.377-08144
23194         Remove first parameter.
23195         Don't declare a version "-dirty" merely because a time
23196         stamp has changed.
23197
23198 2007-11-04  Bruno Haible  <bruno@clisp.org>
23199
23200         * lib/lock.h: Protect all macro definitions containing an 'if'
23201         statement through a "do { ... } while (0)".
23202         * lib/tls.h: Likewise.
23203
23204 2007-11-04  Bruno Haible  <bruno@clisp.org>
23205
23206         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
23207
23208 2007-11-04  Bruno Haible  <bruno@clisp.org>
23209
23210         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
23211         * modules/fprintf-posix (Depends-on): Add nocrash.
23212         * modules/snprintf-posix (Depends-on): Likewise.
23213         * modules/sprintf-posix (Depends-on): Likewise.
23214         * modules/vasnprintf-posix (Depends-on): Likewise.
23215         * modules/vasprintf-posix (Depends-on): Likewise.
23216         * modules/vfprintf-posix (Depends-on): Likewise.
23217         * modules/vsnprintf-posix (Depends-on): Likewise.
23218         * modules/vsprintf-posix (Depends-on): Likewise.
23219         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
23220         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
23221         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
23222         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
23223         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
23224         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
23225         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
23226
23227 2007-11-04  Bruno Haible  <bruno@clisp.org>
23228
23229         * modules/nocrash: New file.
23230         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
23231         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
23232
23233 2007-11-04  Bruno Haible  <bruno@clisp.org>
23234
23235         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
23236         precision handling.
23237         * tests/test-vasprintf-posix.c (test_function): Likewise.
23238         * tests/test-snprintf-posix.h (test_function): Likewise.
23239         * tests/test-sprintf-posix.h (test_function): Likewise.
23240
23241         Fix *printf behaviour for large precisions on mingw and BeOS.
23242         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
23243         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
23244         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
23245         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23246         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23247         gl_PRINTF_PRECISION and test its result. Invoke
23248         gl_PREREQ_VASNPRINTF_PRECISION.
23249         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23250         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23251         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23252         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23253         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23254         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23255         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23256         * doc/functions/fprintf.texi: Update.
23257         * doc/functions/printf.texi: Update.
23258         * doc/functions/snprintf.texi: Update.
23259         * doc/functions/sprintf.texi: Update.
23260         * doc/functions/vfprintf.texi: Update.
23261         * doc/functions/vprintf.texi: Update.
23262         * doc/functions/vsnprintf.texi: Update.
23263         * doc/functions/vsprintf.texi: Update.
23264
23265 2007-11-04  Bruno Haible  <bruno@clisp.org>
23266
23267         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
23268
23269 2007-11-04  Bruno Haible  <bruno@clisp.org>
23270
23271         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
23272         Reported by Sylvain Beucler <beuc@gnu.org>.
23273
23274 2007-11-03  Bruno Haible  <bruno@clisp.org>
23275
23276         * tests/test-fprintf-posix2.sh: New file.
23277         * tests/test-fprintf-posix2.c: New file.
23278         * modules/fprintf-posix-tests (Files): Add them.
23279         (TESTS): Add test-fprintf-posix2.sh.
23280         (configure.ac): Check for getrlimit and setrlimit.
23281         (check_PROGRAMS): Add test-fprintf-posix2.
23282
23283         * tests/test-printf-posix2.sh: New file.
23284         * tests/test-printf-posix2.c: New file.
23285         * modules/printf-posix-tests (Files): Add them.
23286         (TESTS): Add test-printf-posix2.sh.
23287         (configure.ac): Check for getrlimit and setrlimit.
23288         (check_PROGRAMS): Add test-printf-posix2.
23289
23290         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
23291         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
23292         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
23293         (decode_double): New function, copied from decode_long_double.
23294         (scale10_round_decimal_decoded): New function, extracted from
23295         scale10_round_decimal_long_double.
23296         (scale10_round_decimal_long_double): Use it.
23297         (scale10_round_decimal_double): New function.
23298         (floorlog10): New function.
23299         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
23300         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
23301         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23302         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23303         gl_PRINTF_ENOMEM and test its result. Invoke
23304         gl_PREREQ_VASNPRINTF_ENOMEM.
23305         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23306         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23307         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23308         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23309         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23310         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23311         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23312         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
23313         * modules/snprintf-posix (Depends-on): Likewise.
23314         * modules/sprintf-posix (Depends-on): Likewise.
23315         * modules/vasnprintf-posix (Depends-on): Likewise.
23316         * modules/vasprintf-posix (Depends-on): Likewise.
23317         * modules/vfprintf-posix (Depends-on): Likewise.
23318         * modules/vsnprintf-posix (Depends-on): Likewise.
23319         * modules/vsprintf-posix (Depends-on): Likewise.
23320         * doc/functions/fprintf.texi: Update.
23321         * doc/functions/printf.texi: Update.
23322         * doc/functions/snprintf.texi: Update.
23323         * doc/functions/sprintf.texi: Update.
23324         * doc/functions/vfprintf.texi: Update.
23325         * doc/functions/vprintf.texi: Update.
23326         * doc/functions/vsnprintf.texi: Update.
23327         * doc/functions/vsprintf.texi: Update.
23328
23329 2007-11-03  Bruno Haible  <bruno@clisp.org>
23330
23331         * modules/frexp-nolibm-tests: New file.
23332
23333         * modules/frexp-nolibm: New file.
23334         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
23335
23336 2007-11-03  Bruno Haible  <bruno@clisp.org>
23337
23338         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
23339         value is C99 compliant.
23340         Needed for OSF/1 5.1.
23341
23342 2007-11-03  Bruno Haible  <bruno@clisp.org>
23343
23344         Fix out-of-memory handling of vasnprintf.
23345         * lib/printf-parse.c: Include <errno.h>.
23346         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
23347         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
23348         is already set.
23349
23350 2007-11-02  Eric Blake  <ebb9@byu.net>
23351
23352         Fix tests on cygwin.
23353         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
23354
23355 2007-11-01  Bruno Haible  <bruno@clisp.org>
23356
23357         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
23358         warning.
23359         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
23360         needed for POSIX compatibility.
23361
23362 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
23363
23364         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
23365         for compatibility with GNU.
23366
23367 2007-11-01  Bruno Haible  <bruno@clisp.org>
23368
23369         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
23370         (putenv): Renamed from rpl_putenv. Change argument type from
23371         'const char *' to 'char *'.
23372         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
23373         of defining putenv in config.h, just set REPLACE_PUTENV.
23374         * modules/putenv (Depends-on): Add stdlib.
23375         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23376         (Include): Use <stdlib.h>.
23377         * lib/stdlib.in.h (putenv): New declaration.
23378         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
23379         REPLACE_PUTENV.
23380         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
23381         REPLACE_PUTENV.
23382         Needed for MacOS X 10.5.0.
23383         Reported by Peter O'Gorman <peter@pogma.com>.
23384
23385 2007-11-01  Jim Meyering  <meyering@redhat.com>
23386
23387         Treat an empty date string exactly like "0".
23388         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
23389         if the remaining date string (to be parsed) is empty, use "0".
23390         Reported by Mischa Molhoek and discussed in this thread:
23391         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
23392
23393 2007-10-31  Bruno Haible  <bruno@clisp.org>
23394
23395         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
23396         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
23397         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
23398         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
23399         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
23400         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
23401
23402 2007-10-31  Bruno Haible  <bruno@clisp.org>
23403
23404         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
23405         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
23406         (AC_TYPE_LONG_LONG_INT): Use it.
23407         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
23408         it as well.
23409         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
23410         to m4/longlong.m4.
23411         * modules/stdint (Files): Remove m4/ulonglong.m4.
23412         * modules/strtoull (Files): Use m4/longlong.m4 instead of
23413         m4/ulonglong.m4.
23414         * modules/strtoumax (Files): Likewise.
23415
23416 2007-10-30  Bruno Haible  <bruno@clisp.org>
23417
23418         * modules/xvasprintf-posix: New file.
23419         Suggested by Eric Blake.
23420
23421 2007-10-30  Bruno Haible  <bruno@clisp.org>
23422
23423         * modules/xprintf-posix-tests: New file.
23424         * tests/test-xprintf-posix.sh: New file.
23425         * tests/test-xprintf-posix.c: New file.
23426         * tests/test-xfprintf-posix.c: New file.
23427
23428         * modules/xprintf-posix: New file.
23429
23430 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23431
23432         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
23433         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
23434         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
23435
23436 2007-10-29  Bruno Haible  <bruno@clisp.org>
23437
23438         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
23439         contain the special marker '_cv_'.
23440         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
23441         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
23442         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
23443         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
23444         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
23445         Reported by Ralf Wildenhues.
23446
23447 2007-10-29  Bruno Haible  <bruno@clisp.org>
23448
23449         * gnulib-tool (func_import): When --lgpl is not specified, set
23450         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
23451         GPLv3.
23452         Reported by Simon Josefsson.
23453
23454 2007-10-28  Bruno Haible  <bruno@clisp.org>
23455
23456         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
23457         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
23458         HAVE_DECL_ISFINITE.
23459         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23460         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
23461         HAVE_DECL_ISFINITE.
23462
23463 2007-10-28  Bruno Haible  <bruno@clisp.org>
23464
23465         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
23466         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
23467
23468 2007-10-28  Bruno Haible  <bruno@clisp.org>
23469
23470         Fix link errors with Sun C 5.0 on Solaris 10.
23471         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
23472         function is declared but not present in the compiler's libm.
23473         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
23474         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
23475         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
23476         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
23477         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
23478         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
23479         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
23480         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23481         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
23482         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
23483         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
23484         HAVE_DECL_FLOORL.
23485
23486 2007-10-28  Bruno Haible  <bruno@clisp.org>
23487
23488         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
23489         gl_FUNC_FLOORL. Cache the result.
23490         (gl_FUNC_FLOORL): Use it.
23491         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
23492         gl_FUNC_CEILL. Cache the result.
23493         (gl_FUNC_CEILL): Use it.
23494
23495         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
23496         gl_FUNC_FLOOR. Cache the result.
23497         (gl_FUNC_FLOOR): Use it.
23498         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
23499         gl_FUNC_CEIL. Cache the result.
23500         (gl_FUNC_CEIL): Use it.
23501
23502         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
23503         gl_FUNC_FLOORF. Cache the result.
23504         (gl_FUNC_FLOORF): Use it.
23505         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
23506         gl_FUNC_CEILF. Cache the result.
23507         (gl_FUNC_CEILF): Use it.
23508
23509 2007-10-28  Bruno Haible  <bruno@clisp.org>
23510
23511         * gnulib-tool: Allow specifying the LGPL version number through
23512         --lgpl=2 or --lgpl=3.
23513         (func_usage): Document --lgpl with argument.
23514         Handle --lgpl=... arguments.
23515         (func_import): Recognize also gl_LGPL calls with an argument. When
23516         --lgpl=2 is used and the module's license is just LGPL, report an
23517         error. Set sed_transform_lib_file according to the lgpl variable. In
23518         the generated files, use --lgpl or gl_LGPL invocations with argument,
23519         if necessary.
23520         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
23521         an LGPv2+ license.
23522         * doc/gnulib-tool.texi (Modified imports): Update explanation of
23523         gl_LGPL macro.
23524
23525 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23526             Bruno Haible  <bruno@clisp.org>
23527
23528         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
23529         (u16_uctomb_aux): Likewise.
23530         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
23531         !HAVE_INLINE.
23532         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
23533
23534 2007-10-28  Bruno Haible  <bruno@clisp.org>
23535
23536         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
23537         Invoke AM_GETTEXT_OPTION if it exists.
23538         * modules/vasprintf: Likewise.
23539         * modules/verror: Likewise.
23540         * modules/xprintf: Likewise.
23541         * modules/xvasprintf: Likewise.
23542
23543 2007-10-27  Ben Pfaff  <blp@gnu.org>
23544
23545         * lib/math.in.h: Define isfinite macro and prototypes for
23546         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
23547         implementations.
23548         * m4/math_h.m4: New substitutions for isfinite module.
23549         * lib/isfinite.c: New file.
23550         * m4/isfinite.m4: New file.
23551         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
23552         * modules/isfinite: New file.
23553         * modules/isfinite-tests: New file.
23554         * tests/tests-isfinite.c: New file.
23555         * doc/functions/isfinite.texi: Mention isfinite module.
23556         * MODULES.html.sh: Mention new module.
23557
23558 2007-10-27  Ben Pfaff  <blp@gnu.org>
23559
23560         Ralf Wildenhues reported that Tru64 4.0D declares the round
23561         functions but does not have definitions.
23562         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
23563         cannot be found in any library, set the output variable to
23564         "missing" instead of "".
23565         * m4/round.m4: Also use our substitute if we cannot find round in
23566         any library, even if it is declared.
23567         * m4/roundf.m4: Likewise for roundf.
23568         * m4/roundl.m4: Likewise for roundl.
23569         * lib/math.in.h: Undefine roundf, round, roundl before defining
23570         their replacements, to allow for hypothetical systems where these
23571         may be defined as macros but not available in libraries.
23572
23573 2007-10-27  Bruno Haible  <bruno@clisp.org>
23574
23575         * doc/gnulib.texi: Invoke @firstparagraphindent.
23576         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
23577         changes in gnulib.
23578         (Source changes): New section.
23579
23580 2007-10-26  Bruno Haible  <bruno@clisp.org>
23581
23582         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
23583         borrowed from autoconf.
23584
23585 2007-10-26  Bruno Haible  <bruno@clisp.org>
23586
23587         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
23588         strerror returned the empty string. Needed on HP-UX 11.00.
23589
23590 2007-10-24  Micah Cowan  <micah@cowan.name>
23591
23592         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
23593         * build-aux/bootstrap: Remove support for now-unnecessary option,
23594         --cvs-user, and envvars CVS_USER, CVS_RSH.
23595
23596 2007-10-24  Jim Meyering  <meyering@redhat.com>
23597
23598         Avoid diagnostics from sha1sum when there is no cached checksum.
23599         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
23600         if the po.s1 file hasn't been created yet.
23601
23602         * build-aux/bootstrap: Sync from coreutils:
23603         2007-10-24  Jim Meyering  <meyering@redhat.com>
23604         Get gnulib from the git repository, not from an obsolete cvs one.
23605         * build-aux/bootstrap: Suggestion from Micah Cowan.
23606         2007-10-04  Jim Meyering  <jim@meyering.net>
23607         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
23608         (update_po_files): Work also when there are no .po files in po/.
23609
23610 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
23611
23612         * README: Append ".git" to git and cg examples.
23613         Problem reported by Benoit Sigoure.
23614
23615 2007-10-23  Micah Cowan  <micah@cowan.name>
23616
23617         * users.txt: Add wget.
23618
23619 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23620
23621         Fix linking of some unistdio tests on FreeBSD.
23622         * modules/unistdio/u16-vsnprintf-tests
23623         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
23624         * modules/unistdio/u16-vsprintf-tests
23625         (test_u16_vsnprintf1_LDADD): Likewise.
23626         * modules/unistdio/u32-vsnprintf-tests
23627         (test_u32_vsnprintf1_LDADD): Likewise.
23628         * modules/unistdio/u32-vsprintf-tests
23629         (test_u32_vsprintf1_LDADD): Likewise.
23630         * modules/unistdio/u8-vsnprintf-tests
23631         (test_u8_vsnprintf1_LDADD): Likewise.
23632         * modules/unistdio/u8-vsprintf-tests
23633         (test_u8_vsprintf1_LDADD): Likewise.
23634         * modules/unistdio/ulc-vsnprintf-tests
23635         (test_ulc_vsnprintf1_LDADD): Likewise.
23636         * modules/unistdio/ulc-vsprintf-tests
23637         (test_ulc_vsprintf1_LDADD): Likewise.
23638
23639         Fix linking of some uniconv tests on FreeBSD.
23640         * modules/uniconv/u16-conv-from-enc-tests
23641         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
23642         * modules/uniconv/u16-conv-to-enc-tests
23643         (test_u16_conv_to_enc_LDADD): Likewise.
23644         * modules/uniconv/u16-strconv-from-enc-tests
23645         (test_u16_strconv_from_enc_LDADD): Likewise.
23646         * modules/uniconv/u16-strconv-to-enc-tests
23647         (test_u16_strconv_to_enc_LDADD): Likewise.
23648         * modules/uniconv/u32-conv-from-enc-tests
23649         (test_u32_conv_from_enc_LDADD): Likewise.
23650         * modules/uniconv/u32-conv-to-enc-tests
23651         (test_u32_conv_to_enc_LDADD): Likewise.
23652         * modules/uniconv/u32-strconv-from-enc-tests
23653         (test_u32_strconv_from_enc_LDADD): Likewise.
23654         * modules/uniconv/u32-strconv-to-enc-tests
23655         (test_u32_strconv_to_enc_LDADD): Likewise.
23656         * modules/uniconv/u8-conv-from-enc-tests
23657         (test_u8_conv_from_enc_LDADD): Likewise.
23658         * modules/uniconv/u8-conv-to-enc-tests
23659         (test_u8_conv_to_enc_LDADD): Likewise.
23660         * modules/uniconv/u8-strconv-from-enc-tests
23661         (test_u8_strconv_from_enc_LDADD): Likewise.
23662         * modules/uniconv/u8-strconv-to-enc-tests
23663         (test_u8_strconv_to_enc_LDADD): Likewise.
23664
23665 2007-10-22  Bruno Haible  <bruno@clisp.org>
23666
23667         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
23668         size.
23669
23670 2007-10-22  Eric Blake  <ebb9@byu.net>
23671
23672         Tweak x*printf documentation.
23673         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
23674         variable name and comments.
23675         Suggested by Bruno Haible.
23676
23677 2007-10-22  Bruno Haible  <bruno@clisp.org>
23678
23679         * lib/acl.c (copy_acl): Fix file name in comment.
23680
23681 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23682
23683         Fix Tru64 problem with stdbool.h.
23684         * lib/stdbool.in.h (false, true):
23685         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
23686         Don't declare as an enum in this situation; it runs afoul of Tru64.
23687         Problem reported by Steven M. Schweda in
23688         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
23689
23690 2007-10-22  Eric Blake  <ebb9@byu.net>
23691
23692         Also wrap vf?printf.
23693         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
23694         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
23695         (xvprintf, xvfprintf): New functions.
23696
23697 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23698
23699         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
23700         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
23701
23702         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
23703         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
23704
23705 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23706
23707         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
23708         by Bruno Haible.
23709
23710 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23711
23712         * lib/getloadavg.c
23713         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
23714         Undef `sys' after including sys/table.h, for Tru64 4.0D.
23715
23716         * tests/test-i-ring.c: Work for C89.
23717
23718 2007-10-22  Bruno Haible  <bruno@clisp.org>
23719
23720         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
23721         -1u, in preprocessor expression, so that we don't test for the bug
23722         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
23723         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
23724
23725 2007-10-22  Eric Blake  <ebb9@byu.net>
23726
23727         * tests/test-yesno.sh: Silence stderr during test.
23728
23729 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23730
23731         * modules/crypto/gc-camellia: New file.
23732
23733         * m4/gc-camellia.m4: New file.
23734
23735         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
23736
23737         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
23738
23739 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23740
23741         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
23742         --help to stdout.  Reported by sms@antinode.org (Steven
23743         M. Schweda).
23744
23745 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23746
23747         * users.txt: Fix link to libksba.
23748
23749 2007-10-21  Ben Pfaff  <blp@gnu.org>
23750
23751         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
23752         round.c roundf implementation that depends on floorf and ceilf to
23753         be tested unconditionally.
23754
23755 2007-10-21  Ben Pfaff  <blp@gnu.org>
23756
23757         * m4/check-libm-func.m4: Removed.
23758         * m4/check-math-lib.m4: New file.
23759         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
23760         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
23761         definition and lack of AC_LIBOBJ([roundf]).
23762         * m4/roundl.m4: Ditto, and similarly for roundl.
23763         * modules/round: Reference new m4 file.
23764         * modules/roundf: Ditto.
23765         * modules/roundl: Ditto.
23766         * tests/test-round2.c (main): Use ROUND instead of round.
23767         Bug report from Bruno Haible.
23768
23769 2007-10-21  Bruno Haible  <bruno@clisp.org>
23770
23771         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
23772         context.
23773
23774 2007-10-21  Bruno Haible  <bruno@clisp.org>
23775
23776         * tests/test-wcwidth.c (main): Allow negative result for some control
23777         characters.
23778
23779         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
23780         Needed on OSF/1 5.1.
23781
23782 2007-10-21  Bruno Haible  <bruno@clisp.org>
23783
23784         * tests/test-floorf1.c: Include isnanf.h.
23785         (main): Use isnanf() instead of isnan().
23786         * tests/test-ceilf1.c: Include isnanf.h.
23787         (main): Use isnanf() instead of isnan().
23788         * tests/test-truncf1.c: Include isnanf.h.
23789         (main): Use isnanf() instead of isnan().
23790         * tests/test-roundf1.c: Include isnanf.h.
23791         (main): Use isnanf() instead of isnan().
23792
23793 2007-10-21  Eric Blake  <ebb9@byu.net>
23794
23795         * users.txt: Update URL for m4.
23796
23797 2007-10-21  Bruno Haible  <bruno@clisp.org>
23798
23799         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
23800
23801 2007-10-21  Bruno Haible  <bruno@clisp.org>
23802
23803         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
23804         Git's management files if the CVS files are not present.
23805
23806 2007-10-20  Bruno Haible  <bruno@clisp.org>
23807
23808         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
23809         gcc-3.4.x.
23810
23811 2007-10-20  Ben Pfaff  <blp@gnu.org>
23812
23813         * lib/math.in.h: Declare round, roundf, roundl if we are providing
23814         implementations.
23815         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
23816         * lib/round.c: New file.
23817         * lib/roundf.c: New file.
23818         * lib/roundl.c: New file.
23819         * m4/round.m4: New file.
23820         * m4/roundf.m4: New file.
23821         * m4/roundl.m4: New file.
23822         * m4/check-libm-func-m4: New file.
23823         * modules/math: Replace round, roundf, roundl related @VARS@ in
23824         math.in.h.
23825         * modules/round: New file.
23826         * modules/round-tests: New file.
23827         * modules/roundf: New file.
23828         * modules/roundf-tests: New file.
23829         * modules/roundl: New file.
23830         * modules/roundl-tests: New file.
23831         * tests/test-round1.c: New file.
23832         * tests/test-round2.c: New file.
23833         * tests/test-roundf1.c: New file.
23834         * tests/test-roundf2.c: New file.
23835         * tests/test-roundl.c: New file.
23836         * doc/functions/round.texi: Mention round module.
23837         * doc/functions/roundf.texi: Mention roundf module.
23838         * doc/functions/roundl.texi: Mention roundl module.
23839         * MODULES.html.sh: Mention new modules.
23840         Thanks to Bruno Haible for suggestions.
23841
23842 2007-10-20  Jim Meyering  <meyering@redhat.com>
23843
23844         * lib/xprintf.c: Include <config.h> unconditionally.
23845
23846         Change xprintf's license to GPL.
23847         * modules/xprintf (License): s/LGPL/GPL/, since this module
23848         depends on modules (exit and exitfail) which are GPL.
23849         Suggestion from Bruno Haible.
23850
23851         xprintf fixes.
23852         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
23853         Use a clearer diagnostic.
23854         Patch from Bruno Haible.
23855
23856 2007-10-20  Bruno Haible  <bruno@clisp.org>
23857
23858         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
23859         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
23860         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23861
23862 2007-10-20  Bruno Haible  <bruno@clisp.org>
23863
23864         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
23865         precision in the comparison result > x - 1 or similar.
23866         * tests/test-ceilf2.c (correct_result_p): Likewise.
23867         * tests/test-truncf2.c (correct_result_p): Likewise.
23868         * tests/test-trunc2.c (correct_result_p): Likewise.
23869         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23870
23871 2007-10-20  Bruno Haible  <bruno@clisp.org>
23872
23873         * modules/ceil: New file.
23874         * m4/ceil.m4: New file.
23875         * doc/functions/ceil.texi: Mention the 'ceil' module.
23876
23877 2007-10-20  Bruno Haible  <bruno@clisp.org>
23878
23879         * modules/floor: New file.
23880         * m4/floor.m4: New file.
23881         * doc/functions/floor.texi: Mention the 'floor' module.
23882
23883 2007-10-20  Bruno Haible  <bruno@clisp.org>
23884
23885         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
23886         of %a.
23887         * modules/floorf-tests (Depends-on): Likewise.
23888         * modules/truncf-tests (Depends-on): Likewise.
23889         * modules/trunc-tests (Depends-on): Likewise.
23890         Reported by Ben Pfaff.
23891
23892 2007-10-19  Jim Meyering  <meyering@redhat.com>
23893
23894         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
23895         Don't bother testing specific errno values.  Just test ferror.
23896
23897         New module: xprintf
23898         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
23899
23900 2007-10-19  Bruno Haible  <bruno@clisp.org>
23901
23902         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
23903         syntax.
23904         * modules/javaexec (Makefile.am): Likewise.
23905         * modules/relocatable-prog (Makefile.am): Likewise.
23906         Suggested by Jim Meyering.
23907
23908 2007-10-18  Bruno Haible  <bruno@clisp.org>
23909
23910         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
23911         Reported by Jim Meyering.
23912
23913 2007-10-18  Eric Blake  <ebb9@byu.net>
23914
23915         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
23916
23917 2007-10-18  Bruno Haible  <bruno@clisp.org>
23918
23919         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
23920         the format string into writable memory. Needed in Fortify conditions.
23921
23922 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
23923             Bruno Haible  <bruno@clisp.org>
23924
23925         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
23926         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
23927         * modules/trim (Depends-on): Add mbchar.
23928         (configure.ac): Add gl_FUNC_MBRTOWC.
23929         (Makefile.am): Augment lib_SOURCES.
23930
23931 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
23932
23933         Modify glob.c to use fstatat and dirfd, to simplify it.
23934         Suggested by Eric Blake.
23935         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
23936         Don't include <stdbool.h>; not used.
23937         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
23938         (link_exists_p): Simplify implementation, since we can now assume
23939         dirfd and fstatat.
23940         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
23941
23942 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23943
23944         * gnulib-tool (func_get_dependencies): Fix sed script to
23945         match only tests.
23946
23947 2007-10-17  Bruno Haible  <bruno@clisp.org>
23948
23949         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
23950         allow locale names without encoding suffix.
23951         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23952         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23953
23954 2007-10-16  Bruno Haible  <bruno@clisp.org>
23955
23956         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
23957         * lib/getgroups.c (getgroups): Likewise.
23958         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
23959
23960 2007-10-16  Bruno Haible  <bruno@clisp.org>
23961
23962         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
23963         * modules/malloc-posix (License): Likewise.
23964         * modules/realloc-posix (License): Likewise.
23965         * modules/calloc-posix (License): Likewise.
23966         * modules/intprops (License): Change from GPL to LGPL, with
23967         Paul Eggert's approval.
23968
23969 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23970
23971         Merge glibc changes into lib/glob.c.
23972
23973         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
23974         2007-10-15 04:59:03 UTC.  Here are the changes:
23975
23976         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
23977
23978         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
23979
23980         * lib/glob.c: Add some branch prediction throughout.
23981
23982         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
23983
23984         [BZ #5103]
23985         * lib/glob.c (glob): Recognize patterns starting \/.
23986
23987         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
23988
23989         [BZ #3996]
23990         * lib/glob.c (attribute_hidden): Define if not defined.
23991         (glob): Unescape dirname, filename or username when needed and not
23992         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
23993         is NULL.  Handle unescaped [ in pattern without closing ].
23994         Don't pass GLOB_CHECK down to recursive glob for directories.
23995         (__glob_pattern_type): New function.
23996         (__glob_pattern_p): Implement using __glob_pattern_type.
23997         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
23998         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
23999         Remove unreachable code.
24000
24001         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
24002
24003         * lib/glob.c (glob_in_dir): Add some comments and asserts to
24004         explain why there are no leaks.
24005
24006         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
24007
24008         [BZ #3253]
24009         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
24010         time, rather allocate increasingly bigger arrays of pointers, if
24011         possible with alloca, if too large with malloc.
24012
24013 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
24014
24015         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
24016         Problem reported by H.Merijn Brand in
24017         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
24018         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
24019         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
24020
24021 2007-10-15  Bruno Haible  <bruno@clisp.org>
24022
24023         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
24024         with explicit rpl_ prefix.
24025         * lib/fopen.c (fopen): Likewise.
24026         * lib/freopen.c (freopen): Likewise.
24027         * lib/iconv.c (iconv): Likewise.
24028         * lib/iconv_close.c (iconv_close): Likewise.
24029
24030 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24031
24032         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
24033
24034 2007-10-15  Bruno Haible  <bruno@clisp.org>
24035
24036         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
24037         <stddef.h> instead of <stdlib.h> since we only need NULL.
24038         Reported by Ben Pfaff <blp@cs.stanford.edu>.
24039
24040 2007-10-15  Bruno Haible  <bruno@clisp.org>
24041
24042         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
24043         Replace paragraph talking about LIBOBJS.
24044         Reported by Colin Watson <cjwatson@debian.org>.
24045
24046 2007-10-15  Bruno Haible  <bruno@clisp.org>
24047
24048         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
24049         <stdlib.h> before using NULL.
24050
24051 2007-10-15  Simon Josefsson  <simon@josefsson.org>
24052
24053         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
24054         Reported by Albert Chin <china@thewrittenword.com>.
24055
24056 2007-10-14  Bruno Haible  <bruno@clisp.org>
24057
24058         * modules/iconv_open-utf-tests: New file.
24059         * tests/test-iconv-utf.c: New file.
24060
24061         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
24062         * modules/iconv_open-utf: New file.
24063         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
24064         (iconv, iconv_close): New declarations.
24065         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
24066         be defined.
24067         (iconv_open): Add special handling of conversion between UTF-8 and
24068         UTF-{16,32}{BE,LE}.
24069         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
24070         * lib/iconv_close.c: New file.
24071         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
24072         gl_FUNC_ICONV_OPEN.
24073         (gl_FUNC_ICONV_OPEN): Use it.
24074         (gl_FUNC_ICONV_OPEN_UTF): New macro.
24075         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
24076         and REPLACE_ICONV_UTF.
24077         * modules/iconv_open (Depends-on): Add c-strcase.
24078         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
24079         ICONV_CONST.
24080         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
24081
24082 2007-10-13  Albert Chin  <china@thewrittenword.com>
24083             Bruno Haible  <bruno@clisp.org>
24084
24085         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
24086         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
24087
24088 2007-10-13  Bruno Haible  <bruno@clisp.org>
24089
24090         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
24091         defined, use the ISO C99 inline semantics.
24092         * lib/argp.h (ARGP_EI): Likewise.
24093
24094 2007-10-13  Bruno Haible  <bruno@clisp.org>
24095
24096         Handle 'inline' change in gcc 4.3.0.
24097         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
24098         argp_fmtstream_write, argp_fmtstream_set_lmargin,
24099         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
24100         argp_fmtstream_point): Disable 'extern' declaration if the function
24101         definition is going to be provided inline.
24102         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
24103         semantics, not the ISO C99 inline semantics.
24104         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
24105         'extern' declaration if the function definition is going to be provided
24106         inline.
24107         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
24108         the GNU C inline semantics, not the ISO C99 inline semantics. With
24109         GCC 4.2, avoid a warning.
24110
24111 2007-10-13  Bruno Haible  <bruno@clisp.org>
24112
24113         * lib/freading.h (freading): Enable the use of __freading for
24114         glibc >= 2.7.
24115         * lib/freading.c (freading): Likewise.
24116
24117 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
24118
24119         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
24120         "warning: C99 inline functions are not supported; using GNU89".
24121
24122 2007-10-12  Bruno Haible  <bruno@clisp.org>
24123
24124         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
24125         of 2.
24126         * tests/test-ceilf2.c: New file.
24127         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
24128
24129         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
24130         * modules/ceilf-tests: Update.
24131
24132 2007-10-12  Bruno Haible  <bruno@clisp.org>
24133
24134         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
24135         of 2.
24136         * tests/test-floorf2.c: New file.
24137         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
24138
24139         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
24140         * modules/floorf-tests: Update.
24141
24142 2007-10-12  Bruno Haible  <bruno@clisp.org>
24143
24144         * tests/test-trunc2.c: New file.
24145         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
24146
24147         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
24148         * modules/trunc-tests: Update.
24149
24150 2007-10-12  Bruno Haible  <bruno@clisp.org>
24151
24152         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
24153         of 2.
24154         * tests/test-truncf2.c: New file.
24155         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
24156
24157         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
24158         * modules/truncf-tests: Update.
24159
24160 2007-10-11  Eric Blake  <ebb9@byu.net>
24161
24162         Don't claim strerror is broken on Interix.
24163         * doc/functions/strerror.texi (strerror): Known broken systems are
24164         now Solaris 8, and not Interix.
24165         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
24166         Interix on cross-compile.
24167         Reported by Martin Koeppe in
24168         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
24169
24170 2007-10-11  Bruno Haible  <bruno@clisp.org>
24171
24172         * modules/i-ring-tests: New file.
24173         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
24174         instead of assert.
24175
24176 2007-10-11  Bruno Haible  <bruno@clisp.org>
24177
24178         * modules/filenamecat-tests: New file.
24179         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
24180         * lib/filenamecat.c: Remove test code.
24181
24182 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
24183
24184         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
24185
24186         * lib/strerror.c: Include <string.h> always, to test interface,
24187         and to remove the need for the dummy.
24188         Include intprops.h to compute width instead of doing it ourselves
24189         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
24190         (strerror): Define it to return NULL if there's no system strerror.
24191         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
24192         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
24193         ancient pre-strerror Unix systems well any more.  Saying "unknown
24194         system error" is enough.
24195         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
24196         simpler strerror.c implementation.
24197         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
24198         Simplify the tests to reflect the simpler strerror implementation.
24199         * modules/strerror (Depends-on): Add intprops.
24200
24201 2007-10-09  Eric Blake  <ebb9@byu.net>
24202
24203         Silence test-fpending.
24204         * modules/fpending-tests (Files): Add wrapper script.
24205         * tests/test-fpending.sh: New file.
24206
24207 2007-10-09  Bruno Haible  <bruno@clisp.org>
24208
24209         * MODULES.html.sh (func_module): Don't create a hyperlink for
24210         function names like 'printf_frexp'.
24211         (Misc): Add crc, memxor.
24212         (Characteristics of floating types): New section.
24213         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
24214         isnanf-nolibm, signbit, trunc, truncf, truncl.
24215         (Enhancements for ISO C 99 functions): New subsection Input/output.
24216         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
24217         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
24218         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
24219         (Compatibility checks for POSIX:2001 functions): Add clock-time.
24220         (Enhancements for POSIX:2001 functions): Add chdir-long.
24221         (File system functions): Add areadlink, chdir-safer, read-file.
24222         Remove cycle-check.
24223         (File system as inode set): New section.
24224         (Date and time): Add gethrxtime.
24225         (Multithreading): Add openmp.
24226         (Internationalization functions): Add localename.
24227         (Unicode string functions): Add unistr/u*-mbsnlen.
24228         (Support for maintaining and releasing projects): Add git-version-gen.
24229         (Lone files): Remove directories.
24230
24231 2007-10-08  Ben Pfaff  <blp@gnu.org>
24232
24233         * lib/xmalloca.h: Fix typo in comment.
24234
24235 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
24236
24237         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
24238         when avoiding problems with integer overflow.  Use a portable test
24239         instead.
24240
24241 2007-10-08  Simon Josefsson  <simon@josefsson.org>
24242
24243         * modules/dummy (License): Change to LGPLv2+.
24244         * modules/float (License): Likewise
24245         * modules/realloc (License): Likewise
24246         * modules/stdlib (License): Likewise
24247
24248 2007-10-07  Bruno Haible  <bruno@clisp.org>
24249
24250         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
24251         * floor.c (TWO_MANT_DIG): Likewise.
24252         * ceil.c (TWO_MANT_DIG): Likewise.
24253         Reported by Ben Pfaff.
24254
24255 2007-10-07  Bruno Haible  <bruno@clisp.org>
24256
24257         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
24258         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
24259         * lib/frexp.c (FUNC): Likewise.
24260         * lib/printf-frexp.h (printf_frexp): Likewise.
24261         * lib/printf-frexpl.h (printf_frexpl): Likewise.
24262         * lib/printf-frexp.c (FUNC): Likewise.
24263         Suggested by Jim Meyering.
24264
24265 2007-10-07  Jim Meyering  <meyering@redhat.com>
24266
24267         Make xnanosleep's integer overflow test more robust.
24268         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
24269         so that gcc-4.3.0 doesn't optimize away this test for overflow.
24270
24271 2007-10-07  Bruno Haible  <bruno@clisp.org>
24272
24273         * NEWS: Mention the license change.
24274
24275         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
24276         abbreviations in the modules files.
24277
24278         Change copyright notice from GPLv2+ to GPLv3+.
24279         * README: Change copyright notice.
24280         * MODULES.html.sh: Likewise.
24281         * build-aux/bootstrap.conf: Likewise.
24282         * build-aux/config.libpath: Likewise.
24283         * build-aux/csharpcomp.sh.in: Likewise.
24284         * build-aux/csharpexec.sh.in: Likewise.
24285         * build-aux/install-reloc: Likewise.
24286         * build-aux/javacomp.sh.in: Likewise.
24287         * build-aux/javaexec.sh.in: Likewise.
24288         * build-aux/ldd.sh.in: Likewise.
24289         * build-aux/reloc-ldflags: Likewise.
24290         * build-aux/relocatable.sh.in: Likewise.
24291         * build-aux/x-to-1.in: Likewise.
24292         * check-module: Likewise.
24293         * config/srclistvars.sh: Likewise.
24294         * gnulib-tool: Likewise.
24295         * lib/acl-internal.h: Likewise.
24296         * lib/acl.c: Likewise.
24297         * lib/acl.h: Likewise.
24298         * lib/acl_entries.c: Likewise.
24299         * lib/areadlink-with-size.c: Likewise.
24300         * lib/areadlink.c: Likewise.
24301         * lib/areadlink.h: Likewise.
24302         * lib/argmatch.c: Likewise.
24303         * lib/argmatch.h: Likewise.
24304         * lib/argp-ba.c: Likewise.
24305         * lib/argp-eexst.c: Likewise.
24306         * lib/argp-fmtstream.c: Likewise.
24307         * lib/argp-fmtstream.h: Likewise.
24308         * lib/argp-fs-xinl.c: Likewise.
24309         * lib/argp-help.c: Likewise.
24310         * lib/argp-namefrob.h: Likewise.
24311         * lib/argp-parse.c: Likewise.
24312         * lib/argp-pin.c: Likewise.
24313         * lib/argp-pv.c: Likewise.
24314         * lib/argp-pvh.c: Likewise.
24315         * lib/argp-xinl.c: Likewise.
24316         * lib/argp.h: Likewise.
24317         * lib/at-func.c: Likewise.
24318         * lib/atanl.c: Likewise.
24319         * lib/backupfile.c: Likewise.
24320         * lib/backupfile.h: Likewise.
24321         * lib/basename.c: Likewise.
24322         * lib/binary-io.h: Likewise.
24323         * lib/byteswap.in.h: Likewise.
24324         * lib/c-stack.c: Likewise.
24325         * lib/c-stack.h: Likewise.
24326         * lib/c-strcasestr.c: Likewise.
24327         * lib/c-strcasestr.h: Likewise.
24328         * lib/c-strstr.c: Likewise.
24329         * lib/c-strstr.h: Likewise.
24330         * lib/c-strtod.c: Likewise.
24331         * lib/calloc.c: Likewise.
24332         * lib/canon-host.c: Likewise.
24333         * lib/canon-host.h: Likewise.
24334         * lib/canonicalize-lgpl.c: Likewise.
24335         * lib/canonicalize.c: Likewise.
24336         * lib/canonicalize.h: Likewise.
24337         * lib/ceil.c: Likewise.
24338         * lib/ceilf.c: Likewise.
24339         * lib/ceill.c: Likewise.
24340         * lib/chdir-long.c: Likewise.
24341         * lib/chdir-long.h: Likewise.
24342         * lib/chdir-safer.c: Likewise.
24343         * lib/chdir-safer.h: Likewise.
24344         * lib/chown.c: Likewise.
24345         * lib/classpath.c: Likewise.
24346         * lib/classpath.h: Likewise.
24347         * lib/clean-temp.c: Likewise.
24348         * lib/clean-temp.h: Likewise.
24349         * lib/cloexec.c: Likewise.
24350         * lib/close-stream.c: Likewise.
24351         * lib/closein.c: Likewise.
24352         * lib/closein.h: Likewise.
24353         * lib/closeout.c: Likewise.
24354         * lib/closeout.h: Likewise.
24355         * lib/concat-filename.c: Likewise.
24356         * lib/copy-file.c: Likewise.
24357         * lib/copy-file.h: Likewise.
24358         * lib/count-one-bits.h: Likewise.
24359         * lib/crc.c: Likewise.
24360         * lib/crc.h: Likewise.
24361         * lib/creat-safer.c: Likewise.
24362         * lib/csharpcomp.c: Likewise.
24363         * lib/csharpcomp.h: Likewise.
24364         * lib/csharpexec.c: Likewise.
24365         * lib/csharpexec.h: Likewise.
24366         * lib/cycle-check.c: Likewise.
24367         * lib/cycle-check.h: Likewise.
24368         * lib/diacrit.c: Likewise.
24369         * lib/diacrit.h: Likewise.
24370         * lib/diffseq.h: Likewise.
24371         * lib/dirchownmod.c: Likewise.
24372         * lib/dirent.in.h: Likewise.
24373         * lib/dirfd.c: Likewise.
24374         * lib/dirfd.h: Likewise.
24375         * lib/dirname.c: Likewise.
24376         * lib/dirname.h: Likewise.
24377         * lib/dummy.c: Likewise.
24378         * lib/dup-safer.c: Likewise.
24379         * lib/dup2.c: Likewise.
24380         * lib/eealloc.h: Likewise.
24381         * lib/error.c: Likewise.
24382         * lib/error.h: Likewise.
24383         * lib/euidaccess.c: Likewise.
24384         * lib/exclude.c: Likewise.
24385         * lib/exclude.h: Likewise.
24386         * lib/execute.c: Likewise.
24387         * lib/execute.h: Likewise.
24388         * lib/exitfail.c: Likewise.
24389         * lib/exitfail.h: Likewise.
24390         * lib/expl.c: Likewise.
24391         * lib/fatal-signal.c: Likewise.
24392         * lib/fatal-signal.h: Likewise.
24393         * lib/fbufmode.c: Likewise.
24394         * lib/fbufmode.h: Likewise.
24395         * lib/fchdir.c: Likewise.
24396         * lib/fchmodat.c: Likewise.
24397         * lib/fchownat.c: Likewise.
24398         * lib/fcntl--.h: Likewise.
24399         * lib/fcntl-safer.h: Likewise.
24400         * lib/fcntl.in.h: Likewise.
24401         * lib/fd-safer.c: Likewise.
24402         * lib/fflush.c: Likewise.
24403         * lib/file-has-acl.c: Likewise.
24404         * lib/file-set.c: Likewise.
24405         * lib/file-type.c: Likewise.
24406         * lib/file-type.h: Likewise.
24407         * lib/fileblocks.c: Likewise.
24408         * lib/filemode.c: Likewise.
24409         * lib/filemode.h: Likewise.
24410         * lib/filename.h: Likewise.
24411         * lib/filenamecat.c: Likewise.
24412         * lib/filenamecat.h: Likewise.
24413         * lib/findprog.c: Likewise.
24414         * lib/findprog.h: Likewise.
24415         * lib/float.in.h: Likewise.
24416         * lib/floor.c: Likewise.
24417         * lib/floorf.c: Likewise.
24418         * lib/floorl.c: Likewise.
24419         * lib/fopen-safer.c: Likewise.
24420         * lib/fopen.c: Likewise.
24421         * lib/fpending.c: Likewise.
24422         * lib/fpending.h: Likewise.
24423         * lib/fprintf.c: Likewise.
24424         * lib/fprintftime.h: Likewise.
24425         * lib/fpucw.h: Likewise.
24426         * lib/fpurge.c: Likewise.
24427         * lib/fpurge.h: Likewise.
24428         * lib/freadable.c: Likewise.
24429         * lib/freadable.h: Likewise.
24430         * lib/freadahead.c: Likewise.
24431         * lib/freadahead.h: Likewise.
24432         * lib/freading.c: Likewise.
24433         * lib/freading.h: Likewise.
24434         * lib/free.c: Likewise.
24435         * lib/freopen.c: Likewise.
24436         * lib/frexp.c: Likewise.
24437         * lib/frexpl.c: Likewise.
24438         * lib/fseek.c: Likewise.
24439         * lib/fseterr.c: Likewise.
24440         * lib/fseterr.h: Likewise.
24441         * lib/fstatat.c: Likewise.
24442         * lib/fstrcmp.c: Likewise.
24443         * lib/fstrcmp.h: Likewise.
24444         * lib/fsusage.c: Likewise.
24445         * lib/fsusage.h: Likewise.
24446         * lib/ftell.c: Likewise.
24447         * lib/ftello.c: Likewise.
24448         * lib/fts-cycle.c: Likewise.
24449         * lib/fts.c: Likewise.
24450         * lib/fts_.h: Likewise.
24451         * lib/full-read.c: Likewise.
24452         * lib/full-read.h: Likewise.
24453         * lib/full-write.c: Likewise.
24454         * lib/full-write.h: Likewise.
24455         * lib/fwritable.c: Likewise.
24456         * lib/fwritable.h: Likewise.
24457         * lib/fwriteerror.c: Likewise.
24458         * lib/fwriteerror.h: Likewise.
24459         * lib/fwriting.c: Likewise.
24460         * lib/fwriting.h: Likewise.
24461         * lib/gcd.c: Likewise.
24462         * lib/gcd.h: Likewise.
24463         * lib/getcwd.c: Likewise.
24464         * lib/getdate.h: Likewise.
24465         * lib/getdate.y: Likewise.
24466         * lib/getdomainname.c: Likewise.
24467         * lib/getdomainname.h: Likewise.
24468         * lib/getgroups.c: Likewise.
24469         * lib/gethostname.c: Likewise.
24470         * lib/gethrxtime.c: Likewise.
24471         * lib/gethrxtime.h: Likewise.
24472         * lib/getloadavg.c: Likewise.
24473         * lib/getndelim2.c: Likewise.
24474         * lib/getndelim2.h: Likewise.
24475         * lib/getnline.c: Likewise.
24476         * lib/getnline.h: Likewise.
24477         * lib/getopt.c: Likewise.
24478         * lib/getopt.in.h: Likewise.
24479         * lib/getopt1.c: Likewise.
24480         * lib/getopt_int.h: Likewise.
24481         * lib/getpagesize.h: Likewise.
24482         * lib/getsubopt.c: Likewise.
24483         * lib/gettime.c: Likewise.
24484         * lib/getugroups.c: Likewise.
24485         * lib/getugroups.h: Likewise.
24486         * lib/getusershell.c: Likewise.
24487         * lib/gl_anyavltree_list1.h: Likewise.
24488         * lib/gl_anyavltree_list2.h: Likewise.
24489         * lib/gl_anyhash_list1.h: Likewise.
24490         * lib/gl_anyhash_list2.h: Likewise.
24491         * lib/gl_anylinked_list1.h: Likewise.
24492         * lib/gl_anylinked_list2.h: Likewise.
24493         * lib/gl_anyrbtree_list1.h: Likewise.
24494         * lib/gl_anyrbtree_list2.h: Likewise.
24495         * lib/gl_anytree_list1.h: Likewise.
24496         * lib/gl_anytree_list2.h: Likewise.
24497         * lib/gl_anytree_oset.h: Likewise.
24498         * lib/gl_anytreehash_list1.h: Likewise.
24499         * lib/gl_anytreehash_list2.h: Likewise.
24500         * lib/gl_array_list.c: Likewise.
24501         * lib/gl_array_list.h: Likewise.
24502         * lib/gl_array_oset.c: Likewise.
24503         * lib/gl_array_oset.h: Likewise.
24504         * lib/gl_avltree_list.c: Likewise.
24505         * lib/gl_avltree_list.h: Likewise.
24506         * lib/gl_avltree_oset.c: Likewise.
24507         * lib/gl_avltree_oset.h: Likewise.
24508         * lib/gl_avltreehash_list.c: Likewise.
24509         * lib/gl_avltreehash_list.h: Likewise.
24510         * lib/gl_carray_list.c: Likewise.
24511         * lib/gl_carray_list.h: Likewise.
24512         * lib/gl_linked_list.c: Likewise.
24513         * lib/gl_linked_list.h: Likewise.
24514         * lib/gl_linkedhash_list.c: Likewise.
24515         * lib/gl_linkedhash_list.h: Likewise.
24516         * lib/gl_list.c: Likewise.
24517         * lib/gl_list.h: Likewise.
24518         * lib/gl_oset.c: Likewise.
24519         * lib/gl_oset.h: Likewise.
24520         * lib/gl_rbtree_list.c: Likewise.
24521         * lib/gl_rbtree_list.h: Likewise.
24522         * lib/gl_rbtree_oset.c: Likewise.
24523         * lib/gl_rbtree_oset.h: Likewise.
24524         * lib/gl_rbtreehash_list.c: Likewise.
24525         * lib/gl_rbtreehash_list.h: Likewise.
24526         * lib/gl_sublist.c: Likewise.
24527         * lib/gl_sublist.h: Likewise.
24528         * lib/group-member.c: Likewise.
24529         * lib/group-member.h: Likewise.
24530         * lib/hard-locale.c: Likewise.
24531         * lib/hard-locale.h: Likewise.
24532         * lib/hash-pjw.c: Likewise.
24533         * lib/hash-pjw.h: Likewise.
24534         * lib/hash-triple.c: Likewise.
24535         * lib/hash.c: Likewise.
24536         * lib/hash.h: Likewise.
24537         * lib/human.c: Likewise.
24538         * lib/human.h: Likewise.
24539         * lib/i-ring.c: Likewise.
24540         * lib/i-ring.h: Likewise.
24541         * lib/idcache.c: Likewise.
24542         * lib/imaxabs.c: Likewise.
24543         * lib/imaxdiv.c: Likewise.
24544         * lib/inet_pton.c: Likewise.
24545         * lib/inet_pton.h: Likewise.
24546         * lib/intprops.h: Likewise.
24547         * lib/inttostr.c: Likewise.
24548         * lib/inttostr.h: Likewise.
24549         * lib/inttypes.in.h: Likewise.
24550         * lib/isapipe.c: Likewise.
24551         * lib/isdir.c: Likewise.
24552         * lib/isnan.c: Likewise.
24553         * lib/isnan.h: Likewise.
24554         * lib/isnanf.c: Likewise.
24555         * lib/isnanf.h: Likewise.
24556         * lib/isnanl-nolibm.h: Likewise.
24557         * lib/isnanl.c: Likewise.
24558         * lib/isnanl.h: Likewise.
24559         * lib/javacomp.c: Likewise.
24560         * lib/javacomp.h: Likewise.
24561         * lib/javaexec.c: Likewise.
24562         * lib/javaexec.h: Likewise.
24563         * lib/javaversion.c: Likewise.
24564         * lib/javaversion.h: Likewise.
24565         * lib/javaversion.java: Likewise.
24566         * lib/lbrkprop.h: Likewise.
24567         * lib/lchmod.h: Likewise.
24568         * lib/lchown.c: Likewise.
24569         * lib/ldexpl.c: Likewise.
24570         * lib/linebreak.c: Likewise.
24571         * lib/linebreak.h: Likewise.
24572         * lib/linebuffer.c: Likewise.
24573         * lib/linebuffer.h: Likewise.
24574         * lib/locale.in.h: Likewise.
24575         * lib/logl.c: Likewise.
24576         * lib/long-options.c: Likewise.
24577         * lib/long-options.h: Likewise.
24578         * lib/lstat.c: Likewise.
24579         * lib/lstat.h: Likewise.
24580         * lib/math.in.h: Likewise.
24581         * lib/mbchar.c: Likewise.
24582         * lib/mbchar.h: Likewise.
24583         * lib/mbfile.h: Likewise.
24584         * lib/mbiter.h: Likewise.
24585         * lib/mbscasecmp.c: Likewise.
24586         * lib/mbscasestr.c: Likewise.
24587         * lib/mbschr.c: Likewise.
24588         * lib/mbscspn.c: Likewise.
24589         * lib/mbslen.c: Likewise.
24590         * lib/mbsncasecmp.c: Likewise.
24591         * lib/mbsnlen.c: Likewise.
24592         * lib/mbspbrk.c: Likewise.
24593         * lib/mbspcasecmp.c: Likewise.
24594         * lib/mbsrchr.c: Likewise.
24595         * lib/mbssep.c: Likewise.
24596         * lib/mbsspn.c: Likewise.
24597         * lib/mbsstr.c: Likewise.
24598         * lib/mbstok_r.c: Likewise.
24599         * lib/mbswidth.c: Likewise.
24600         * lib/mbswidth.h: Likewise.
24601         * lib/mbuiter.h: Likewise.
24602         * lib/memcasecmp.c: Likewise.
24603         * lib/memcasecmp.h: Likewise.
24604         * lib/memchr.c: Likewise.
24605         * lib/memcmp.c: Likewise.
24606         * lib/memcoll.c: Likewise.
24607         * lib/memcoll.h: Likewise.
24608         * lib/memcpy.c: Likewise.
24609         * lib/memrchr.c: Likewise.
24610         * lib/mkancesdirs.c: Likewise.
24611         * lib/mkdir-p.c: Likewise.
24612         * lib/mkdir-p.h: Likewise.
24613         * lib/mkdir.c: Likewise.
24614         * lib/mkdirat.c: Likewise.
24615         * lib/mkdtemp.c: Likewise.
24616         * lib/mkstemp-safer.c: Likewise.
24617         * lib/mkstemp.c: Likewise.
24618         * lib/modechange.c: Likewise.
24619         * lib/modechange.h: Likewise.
24620         * lib/mountlist.c: Likewise.
24621         * lib/mountlist.h: Likewise.
24622         * lib/mpsort.c: Likewise.
24623         * lib/nanosleep.c: Likewise.
24624         * lib/obstack.c: Likewise.
24625         * lib/obstack.h: Likewise.
24626         * lib/open-safer.c: Likewise.
24627         * lib/open.c: Likewise.
24628         * lib/openat-die.c: Likewise.
24629         * lib/openat-priv.h: Likewise.
24630         * lib/openat-proc.c: Likewise.
24631         * lib/openat.c: Likewise.
24632         * lib/openat.h: Likewise.
24633         * lib/pagealign_alloc.c: Likewise.
24634         * lib/pagealign_alloc.h: Likewise.
24635         * lib/physmem.c: Likewise.
24636         * lib/physmem.h: Likewise.
24637         * lib/pipe-safer.c: Likewise.
24638         * lib/pipe.c: Likewise.
24639         * lib/pipe.h: Likewise.
24640         * lib/posixtm.c: Likewise.
24641         * lib/posixtm.h: Likewise.
24642         * lib/posixver.c: Likewise.
24643         * lib/printf-frexp.c: Likewise.
24644         * lib/printf-frexp.h: Likewise.
24645         * lib/printf-frexpl.c: Likewise.
24646         * lib/printf-frexpl.h: Likewise.
24647         * lib/printf.c: Likewise.
24648         * lib/progname.c: Likewise.
24649         * lib/progname.h: Likewise.
24650         * lib/progreloc.c: Likewise.
24651         * lib/putenv.c: Likewise.
24652         * lib/quote.c: Likewise.
24653         * lib/quote.h: Likewise.
24654         * lib/quotearg.c: Likewise.
24655         * lib/quotearg.h: Likewise.
24656         * lib/raise.c: Likewise.
24657         * lib/readline.c: Likewise.
24658         * lib/readline.h: Likewise.
24659         * lib/readlink.c: Likewise.
24660         * lib/readtokens.c: Likewise.
24661         * lib/readtokens.h: Likewise.
24662         * lib/readtokens0.c: Likewise.
24663         * lib/readtokens0.h: Likewise.
24664         * lib/readutmp.c: Likewise.
24665         * lib/readutmp.h: Likewise.
24666         * lib/realloc.c: Likewise.
24667         * lib/relocwrapper.c: Likewise.
24668         * lib/rename-dest-slash.c: Likewise.
24669         * lib/rename.c: Likewise.
24670         * lib/rmdir.c: Likewise.
24671         * lib/rpmatch.c: Likewise.
24672         * lib/safe-read.c: Likewise.
24673         * lib/safe-read.h: Likewise.
24674         * lib/safe-write.c: Likewise.
24675         * lib/safe-write.h: Likewise.
24676         * lib/same-inode.h: Likewise.
24677         * lib/same.c: Likewise.
24678         * lib/same.h: Likewise.
24679         * lib/save-cwd.c: Likewise.
24680         * lib/save-cwd.h: Likewise.
24681         * lib/savedir.c: Likewise.
24682         * lib/savedir.h: Likewise.
24683         * lib/savewd.c: Likewise.
24684         * lib/savewd.h: Likewise.
24685         * lib/search.in.h: Likewise.
24686         * lib/setenv.c: Likewise.
24687         * lib/setenv.h: Likewise.
24688         * lib/settime.c: Likewise.
24689         * lib/sh-quote.c: Likewise.
24690         * lib/sh-quote.h: Likewise.
24691         * lib/sig2str.c: Likewise.
24692         * lib/sig2str.h: Likewise.
24693         * lib/signal.in.h: Likewise.
24694         * lib/signbitd.c: Likewise.
24695         * lib/signbitf.c: Likewise.
24696         * lib/signbitl.c: Likewise.
24697         * lib/sigprocmask.c: Likewise.
24698         * lib/sincosl.c: Likewise.
24699         * lib/sleep.c: Likewise.
24700         * lib/sprintf.c: Likewise.
24701         * lib/sqrtl.c: Likewise.
24702         * lib/stat-time.h: Likewise.
24703         * lib/stdio--.h: Likewise.
24704         * lib/stdio-safer.h: Likewise.
24705         * lib/stdlib--.h: Likewise.
24706         * lib/stdlib-safer.h: Likewise.
24707         * lib/stdlib.in.h: Likewise.
24708         * lib/stpcpy.c: Likewise.
24709         * lib/stpncpy.c: Likewise.
24710         * lib/strchrnul.c: Likewise.
24711         * lib/strcspn.c: Likewise.
24712         * lib/strerror.c: Likewise.
24713         * lib/strftime.c: Likewise.
24714         * lib/strftime.h: Likewise.
24715         * lib/striconveh.c: Likewise.
24716         * lib/striconveh.h: Likewise.
24717         * lib/striconveha.c: Likewise.
24718         * lib/striconveha.h: Likewise.
24719         * lib/stripslash.c: Likewise.
24720         * lib/strnlen1.c: Likewise.
24721         * lib/strnlen1.h: Likewise.
24722         * lib/strtod.c: Likewise.
24723         * lib/strtoimax.c: Likewise.
24724         * lib/strtok_r.c: Likewise.
24725         * lib/strtol.c: Likewise.
24726         * lib/strtoll.c: Likewise.
24727         * lib/strtoul.c: Likewise.
24728         * lib/strtoull.c: Likewise.
24729         * lib/sysexits.in.h: Likewise.
24730         * lib/tempname.c: Likewise.
24731         * lib/tempname.h: Likewise.
24732         * lib/timespec.h: Likewise.
24733         * lib/tls.c: Likewise.
24734         * lib/tls.h: Likewise.
24735         * lib/tmpdir.c: Likewise.
24736         * lib/tmpdir.h: Likewise.
24737         * lib/tmpfile-safer.c: Likewise.
24738         * lib/tmpfile.c: Likewise.
24739         * lib/trigl.c: Likewise.
24740         * lib/trigl.h: Likewise.
24741         * lib/trim.c: Likewise.
24742         * lib/trim.h: Likewise.
24743         * lib/trunc.c: Likewise.
24744         * lib/truncf.c: Likewise.
24745         * lib/truncl.c: Likewise.
24746         * lib/tsearch.c: Likewise.
24747         * lib/unicodeio.c: Likewise.
24748         * lib/unicodeio.h: Likewise.
24749         * lib/unistd--.h: Likewise.
24750         * lib/unistd-safer.h: Likewise.
24751         * lib/unistdio/ulc-fprintf.c: Likewise.
24752         * lib/unistdio/ulc-vfprintf.c: Likewise.
24753         * lib/unlinkdir.c: Likewise.
24754         * lib/unlinkdir.h: Likewise.
24755         * lib/unlocked-io.h: Likewise.
24756         * lib/unsetenv.c: Likewise.
24757         * lib/userspec.c: Likewise.
24758         * lib/utime.c: Likewise.
24759         * lib/utimecmp.c: Likewise.
24760         * lib/utimecmp.h: Likewise.
24761         * lib/utimens.c: Likewise.
24762         * lib/verify.h: Likewise.
24763         * lib/verror.c: Likewise.
24764         * lib/verror.h: Likewise.
24765         * lib/version-etc-fsf.c: Likewise.
24766         * lib/version-etc.c: Likewise.
24767         * lib/version-etc.h: Likewise.
24768         * lib/vfprintf.c: Likewise.
24769         * lib/vprintf.c: Likewise.
24770         * lib/vsprintf.c: Likewise.
24771         * lib/w32spawn.h: Likewise.
24772         * lib/wait-process.c: Likewise.
24773         * lib/wait-process.h: Likewise.
24774         * lib/wcwidth.c: Likewise.
24775         * lib/write-any-file.c: Likewise.
24776         * lib/xalloc-die.c: Likewise.
24777         * lib/xalloc.h: Likewise.
24778         * lib/xasprintf.c: Likewise.
24779         * lib/xgetcwd.c: Likewise.
24780         * lib/xgetcwd.h: Likewise.
24781         * lib/xgetdomainname.c: Likewise.
24782         * lib/xgetdomainname.h: Likewise.
24783         * lib/xgethostname.c: Likewise.
24784         * lib/xmalloc.c: Likewise.
24785         * lib/xmalloca.c: Likewise.
24786         * lib/xmalloca.h: Likewise.
24787         * lib/xmemcoll.c: Likewise.
24788         * lib/xnanosleep.c: Likewise.
24789         * lib/xreadlink.c: Likewise.
24790         * lib/xreadlink.h: Likewise.
24791         * lib/xsetenv.c: Likewise.
24792         * lib/xsetenv.h: Likewise.
24793         * lib/xstriconv.c: Likewise.
24794         * lib/xstriconv.h: Likewise.
24795         * lib/xstrndup.c: Likewise.
24796         * lib/xstrndup.h: Likewise.
24797         * lib/xstrtod.c: Likewise.
24798         * lib/xstrtod.h: Likewise.
24799         * lib/xstrtol-error.c: Likewise.
24800         * lib/xstrtol.c: Likewise.
24801         * lib/xstrtol.h: Likewise.
24802         * lib/xtime.h: Likewise.
24803         * lib/xvasprintf.c: Likewise.
24804         * lib/xvasprintf.h: Likewise.
24805         * lib/yesno.c: Likewise.
24806         * lib/yesno.h: Likewise.
24807         * posix-modules: Likewise.
24808         * tests/test-alloca-opt.c: Likewise.
24809         * tests/test-arcfour.c: Likewise.
24810         * tests/test-arctwo.c: Likewise.
24811         * tests/test-argmatch.c: Likewise.
24812         * tests/test-argp-2.sh: Likewise.
24813         * tests/test-argp.c: Likewise.
24814         * tests/test-arpa_inet.c: Likewise.
24815         * tests/test-array_list.c: Likewise.
24816         * tests/test-array_oset.c: Likewise.
24817         * tests/test-atexit.c: Likewise.
24818         * tests/test-avltree_list.c: Likewise.
24819         * tests/test-avltree_oset.c: Likewise.
24820         * tests/test-avltreehash_list.c: Likewise.
24821         * tests/test-base64.c: Likewise.
24822         * tests/test-binary-io.c: Likewise.
24823         * tests/test-byteswap.c: Likewise.
24824         * tests/test-c-ctype.c: Likewise.
24825         * tests/test-c-strcasecmp.c: Likewise.
24826         * tests/test-c-strcasestr.c: Likewise.
24827         * tests/test-c-strncasecmp.c: Likewise.
24828         * tests/test-c-strstr.c: Likewise.
24829         * tests/test-canonicalize-lgpl.c: Likewise.
24830         * tests/test-canonicalize.c: Likewise.
24831         * tests/test-carray_list.c: Likewise.
24832         * tests/test-ceilf.c: Likewise.
24833         * tests/test-ceill.c: Likewise.
24834         * tests/test-count-one-bits.c: Likewise.
24835         * tests/test-crc.c: Likewise.
24836         * tests/test-dirname.c: Likewise.
24837         * tests/test-fbufmode.c: Likewise.
24838         * tests/test-fcntl.c: Likewise.
24839         * tests/test-fflush.c: Likewise.
24840         * tests/test-floorf.c: Likewise.
24841         * tests/test-floorl.c: Likewise.
24842         * tests/test-fopen.c: Likewise.
24843         * tests/test-fprintf-posix.c: Likewise.
24844         * tests/test-fprintf-posix.h: Likewise.
24845         * tests/test-fpurge.c: Likewise.
24846         * tests/test-freadable.c: Likewise.
24847         * tests/test-freadahead.c: Likewise.
24848         * tests/test-freading.c: Likewise.
24849         * tests/test-freopen.c: Likewise.
24850         * tests/test-frexp.c: Likewise.
24851         * tests/test-frexpl.c: Likewise.
24852         * tests/test-fseek.c: Likewise.
24853         * tests/test-fseeko.c: Likewise.
24854         * tests/test-fseterr.c: Likewise.
24855         * tests/test-fstrcmp.c: Likewise.
24856         * tests/test-ftell.c: Likewise.
24857         * tests/test-ftello.c: Likewise.
24858         * tests/test-fwritable.c: Likewise.
24859         * tests/test-fwriting.c: Likewise.
24860         * tests/test-getaddrinfo.c: Likewise.
24861         * tests/test-getpass.c: Likewise.
24862         * tests/test-gettimeofday.c: Likewise.
24863         * tests/test-hmac-md5.c: Likewise.
24864         * tests/test-hmac-sha1.c: Likewise.
24865         * tests/test-iconv.c: Likewise.
24866         * tests/test-iconvme.c: Likewise.
24867         * tests/test-inttypes.c: Likewise.
24868         * tests/test-isnan.c: Likewise.
24869         * tests/test-isnanf.c: Likewise.
24870         * tests/test-isnanl-nolibm.c: Likewise.
24871         * tests/test-isnanl.c: Likewise.
24872         * tests/test-isnanl.h: Likewise.
24873         * tests/test-ldexpl.c: Likewise.
24874         * tests/test-linked_list.c: Likewise.
24875         * tests/test-linkedhash_list.c: Likewise.
24876         * tests/test-locale.c: Likewise.
24877         * tests/test-localename.c: Likewise.
24878         * tests/test-lock.c: Likewise.
24879         * tests/test-lseek.c: Likewise.
24880         * tests/test-malloca.c: Likewise.
24881         * tests/test-math.c: Likewise.
24882         * tests/test-mbscasecmp.c: Likewise.
24883         * tests/test-mbscasestr1.c: Likewise.
24884         * tests/test-mbscasestr2.c: Likewise.
24885         * tests/test-mbscasestr3.c: Likewise.
24886         * tests/test-mbscasestr4.c: Likewise.
24887         * tests/test-mbschr.c: Likewise.
24888         * tests/test-mbscspn.c: Likewise.
24889         * tests/test-mbsncasecmp.c: Likewise.
24890         * tests/test-mbspbrk.c: Likewise.
24891         * tests/test-mbspcasecmp.c: Likewise.
24892         * tests/test-mbsrchr.c: Likewise.
24893         * tests/test-mbsspn.c: Likewise.
24894         * tests/test-mbsstr1.c: Likewise.
24895         * tests/test-mbsstr2.c: Likewise.
24896         * tests/test-mbsstr3.c: Likewise.
24897         * tests/test-md5.c: Likewise.
24898         * tests/test-memmem.c: Likewise.
24899         * tests/test-netinet_in.c: Likewise.
24900         * tests/test-open.c: Likewise.
24901         * tests/test-printf-frexp.c: Likewise.
24902         * tests/test-printf-frexpl.c: Likewise.
24903         * tests/test-printf-posix.c: Likewise.
24904         * tests/test-printf-posix.h: Likewise.
24905         * tests/test-rbtree_list.c: Likewise.
24906         * tests/test-rbtree_oset.c: Likewise.
24907         * tests/test-rbtreehash_list.c: Likewise.
24908         * tests/test-read-file.c: Likewise.
24909         * tests/test-rijndael.c: Likewise.
24910         * tests/test-search.c: Likewise.
24911         * tests/test-signbit.c: Likewise.
24912         * tests/test-sleep.c: Likewise.
24913         * tests/test-snprintf-posix.c: Likewise.
24914         * tests/test-snprintf-posix.h: Likewise.
24915         * tests/test-snprintf.c: Likewise.
24916         * tests/test-sprintf-posix.c: Likewise.
24917         * tests/test-sprintf-posix.h: Likewise.
24918         * tests/test-stat-time.c: Likewise.
24919         * tests/test-stdbool.c: Likewise.
24920         * tests/test-stdint.c: Likewise.
24921         * tests/test-stdio.c: Likewise.
24922         * tests/test-stdlib.c: Likewise.
24923         * tests/test-stpncpy.c: Likewise.
24924         * tests/test-strcasestr.c: Likewise.
24925         * tests/test-striconv.c: Likewise.
24926         * tests/test-striconveh.c: Likewise.
24927         * tests/test-striconveha.c: Likewise.
24928         * tests/test-string.c: Likewise.
24929         * tests/test-sys_select.c: Likewise.
24930         * tests/test-sys_socket.c: Likewise.
24931         * tests/test-sys_stat.c: Likewise.
24932         * tests/test-sys_time.c: Likewise.
24933         * tests/test-sysexits.c: Likewise.
24934         * tests/test-time.c: Likewise.
24935         * tests/test-tls.c: Likewise.
24936         * tests/test-trunc.c: Likewise.
24937         * tests/test-truncf.c: Likewise.
24938         * tests/test-truncl.c: Likewise.
24939         * tests/test-unistd.c: Likewise.
24940         * tests/test-vasnprintf-posix.c: Likewise.
24941         * tests/test-vasnprintf-posix2.c: Likewise.
24942         * tests/test-vasnprintf.c: Likewise.
24943         * tests/test-vasprintf-posix.c: Likewise.
24944         * tests/test-vasprintf.c: Likewise.
24945         * tests/test-verify.c: Likewise.
24946         * tests/test-vfprintf-posix.c: Likewise.
24947         * tests/test-vprintf-posix.c: Likewise.
24948         * tests/test-vsnprintf-posix.c: Likewise.
24949         * tests/test-vsnprintf.c: Likewise.
24950         * tests/test-vsprintf-posix.c: Likewise.
24951         * tests/test-wchar.c: Likewise.
24952         * tests/test-wctype.c: Likewise.
24953         * tests/test-wcwidth.c: Likewise.
24954         * tests/test-xstrtol.c: Likewise.
24955         * tests/test-xvasprintf.c: Likewise.
24956         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
24957         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
24958         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
24959         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
24960         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
24961         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
24962         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
24963         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
24964         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
24965         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
24966         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
24967         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
24968         * tests/uniname/test-uninames.c: Likewise.
24969         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
24970         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
24971         * tests/unistdio/test-u16-printf1.h: Likewise.
24972         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
24973         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
24974         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
24975         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
24976         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
24977         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
24978         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
24979         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
24980         * tests/unistdio/test-u32-printf1.h: Likewise.
24981         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
24982         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
24983         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
24984         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
24985         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
24986         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
24987         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
24988         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
24989         * tests/unistdio/test-u8-printf1.h: Likewise.
24990         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
24991         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
24992         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
24993         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
24994         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
24995         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
24996         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
24997         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
24998         * tests/unistdio/test-ulc-printf1.h: Likewise.
24999         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
25000         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
25001         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
25002         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
25003         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
25004         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
25005         * tests/uniwidth/test-u16-strwidth.c: Likewise.
25006         * tests/uniwidth/test-u16-width.c: Likewise.
25007         * tests/uniwidth/test-u32-strwidth.c: Likewise.
25008         * tests/uniwidth/test-u32-width.c: Likewise.
25009         * tests/uniwidth/test-u8-strwidth.c: Likewise.
25010         * tests/uniwidth/test-u8-width.c: Likewise.
25011         * tests/uniwidth/test-uc_width.c: Likewise.
25012         * config/srclist-update: Likewise.
25013         (fixlicense): Update to GPLv3+.
25014
25015         Change copyright notice from LGPLv2.1+ to LGPLv3+.
25016         * tests/test-tsearch.c: Change copyright notice.
25017
25018         Change copyright notice from LGPLv2.0+ to LGPLv3+.
25019         * lib/c-strcaseeq.h: Change copyright notice.
25020         * lib/streq.h: Likewise.
25021         * lib/uniconv.h: Likewise.
25022         * lib/uniconv/u-conv-from-enc.h: Likewise.
25023         * lib/uniconv/u-conv-to-enc.h: Likewise.
25024         * lib/uniconv/u-strconv-from-enc.h: Likewise.
25025         * lib/uniconv/u-strconv-to-enc.h: Likewise.
25026         * lib/uniconv/u16-conv-from-enc.c: Likewise.
25027         * lib/uniconv/u16-conv-to-enc.c: Likewise.
25028         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
25029         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
25030         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
25031         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
25032         * lib/uniconv/u32-conv-from-enc.c: Likewise.
25033         * lib/uniconv/u32-conv-to-enc.c: Likewise.
25034         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
25035         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
25036         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
25037         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
25038         * lib/uniconv/u8-conv-from-enc.c: Likewise.
25039         * lib/uniconv/u8-conv-to-enc.c: Likewise.
25040         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
25041         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
25042         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
25043         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
25044         * lib/uniname.h: Likewise.
25045         * lib/uniname/uniname.c: Likewise.
25046         * lib/unistdio.h: Likewise.
25047         * lib/unistdio/u-asnprintf.h: Likewise.
25048         * lib/unistdio/u-asprintf.h: Likewise.
25049         * lib/unistdio/u-printf-args.c: Likewise.
25050         * lib/unistdio/u-printf-args.h: Likewise.
25051         * lib/unistdio/u-printf-parse.h: Likewise.
25052         * lib/unistdio/u-snprintf.h: Likewise.
25053         * lib/unistdio/u-sprintf.h: Likewise.
25054         * lib/unistdio/u-vasprintf.h: Likewise.
25055         * lib/unistdio/u-vsnprintf.h: Likewise.
25056         * lib/unistdio/u-vsprintf.h: Likewise.
25057         * lib/unistdio/u16-asnprintf.c: Likewise.
25058         * lib/unistdio/u16-asprintf.c: Likewise.
25059         * lib/unistdio/u16-printf-parse.c: Likewise.
25060         * lib/unistdio/u16-snprintf.c: Likewise.
25061         * lib/unistdio/u16-sprintf.c: Likewise.
25062         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
25063         * lib/unistdio/u16-u16-asprintf.c: Likewise.
25064         * lib/unistdio/u16-u16-snprintf.c: Likewise.
25065         * lib/unistdio/u16-u16-sprintf.c: Likewise.
25066         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
25067         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
25068         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
25069         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
25070         * lib/unistdio/u16-vasnprintf.c: Likewise.
25071         * lib/unistdio/u16-vasprintf.c: Likewise.
25072         * lib/unistdio/u16-vsnprintf.c: Likewise.
25073         * lib/unistdio/u16-vsprintf.c: Likewise.
25074         * lib/unistdio/u32-asnprintf.c: Likewise.
25075         * lib/unistdio/u32-asprintf.c: Likewise.
25076         * lib/unistdio/u32-printf-parse.c: Likewise.
25077         * lib/unistdio/u32-snprintf.c: Likewise.
25078         * lib/unistdio/u32-sprintf.c: Likewise.
25079         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
25080         * lib/unistdio/u32-u32-asprintf.c: Likewise.
25081         * lib/unistdio/u32-u32-snprintf.c: Likewise.
25082         * lib/unistdio/u32-u32-sprintf.c: Likewise.
25083         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
25084         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
25085         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
25086         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
25087         * lib/unistdio/u32-vasnprintf.c: Likewise.
25088         * lib/unistdio/u32-vasprintf.c: Likewise.
25089         * lib/unistdio/u32-vsnprintf.c: Likewise.
25090         * lib/unistdio/u32-vsprintf.c: Likewise.
25091         * lib/unistdio/u8-asnprintf.c: Likewise.
25092         * lib/unistdio/u8-asprintf.c: Likewise.
25093         * lib/unistdio/u8-printf-parse.c: Likewise.
25094         * lib/unistdio/u8-snprintf.c: Likewise.
25095         * lib/unistdio/u8-sprintf.c: Likewise.
25096         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
25097         * lib/unistdio/u8-u8-asprintf.c: Likewise.
25098         * lib/unistdio/u8-u8-snprintf.c: Likewise.
25099         * lib/unistdio/u8-u8-sprintf.c: Likewise.
25100         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
25101         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
25102         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
25103         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
25104         * lib/unistdio/u8-vasnprintf.c: Likewise.
25105         * lib/unistdio/u8-vasprintf.c: Likewise.
25106         * lib/unistdio/u8-vsnprintf.c: Likewise.
25107         * lib/unistdio/u8-vsprintf.c: Likewise.
25108         * lib/unistdio/ulc-asnprintf.c: Likewise.
25109         * lib/unistdio/ulc-asprintf.c: Likewise.
25110         * lib/unistdio/ulc-printf-parse.c: Likewise.
25111         * lib/unistdio/ulc-snprintf.c: Likewise.
25112         * lib/unistdio/ulc-sprintf.c: Likewise.
25113         * lib/unistdio/ulc-vasnprintf.c: Likewise.
25114         * lib/unistdio/ulc-vasprintf.c: Likewise.
25115         * lib/unistdio/ulc-vsnprintf.c: Likewise.
25116         * lib/unistdio/ulc-vsprintf.c: Likewise.
25117         * lib/unistr.h: Likewise.
25118         * lib/unistr/u-cpy-alloc.h: Likewise.
25119         * lib/unistr/u-cpy.h: Likewise.
25120         * lib/unistr/u-endswith.h: Likewise.
25121         * lib/unistr/u-move.h: Likewise.
25122         * lib/unistr/u-set.h: Likewise.
25123         * lib/unistr/u-startswith.h: Likewise.
25124         * lib/unistr/u-stpcpy.h: Likewise.
25125         * lib/unistr/u-stpncpy.h: Likewise.
25126         * lib/unistr/u-strcat.h: Likewise.
25127         * lib/unistr/u-strcpy.h: Likewise.
25128         * lib/unistr/u-strcspn.h: Likewise.
25129         * lib/unistr/u-strdup.h: Likewise.
25130         * lib/unistr/u-strlen.h: Likewise.
25131         * lib/unistr/u-strncat.h: Likewise.
25132         * lib/unistr/u-strncpy.h: Likewise.
25133         * lib/unistr/u-strnlen.h: Likewise.
25134         * lib/unistr/u-strpbrk.h: Likewise.
25135         * lib/unistr/u-strspn.h: Likewise.
25136         * lib/unistr/u-strstr.h: Likewise.
25137         * lib/unistr/u-strtok.h: Likewise.
25138         * lib/unistr/u16-check.c: Likewise.
25139         * lib/unistr/u16-chr.c: Likewise.
25140         * lib/unistr/u16-cmp.c: Likewise.
25141         * lib/unistr/u16-cpy-alloc.c: Likewise.
25142         * lib/unistr/u16-cpy.c: Likewise.
25143         * lib/unistr/u16-endswith.c: Likewise.
25144         * lib/unistr/u16-mblen.c: Likewise.
25145         * lib/unistr/u16-mbsnlen.c: Likewise.
25146         * lib/unistr/u16-mbtouc-aux.c: Likewise.
25147         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
25148         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
25149         * lib/unistr/u16-mbtouc.c: Likewise.
25150         * lib/unistr/u16-mbtoucr.c: Likewise.
25151         * lib/unistr/u16-move.c: Likewise.
25152         * lib/unistr/u16-next.c: Likewise.
25153         * lib/unistr/u16-prev.c: Likewise.
25154         * lib/unistr/u16-set.c: Likewise.
25155         * lib/unistr/u16-startswith.c: Likewise.
25156         * lib/unistr/u16-stpcpy.c: Likewise.
25157         * lib/unistr/u16-stpncpy.c: Likewise.
25158         * lib/unistr/u16-strcat.c: Likewise.
25159         * lib/unistr/u16-strchr.c: Likewise.
25160         * lib/unistr/u16-strcmp.c: Likewise.
25161         * lib/unistr/u16-strcpy.c: Likewise.
25162         * lib/unistr/u16-strcspn.c: Likewise.
25163         * lib/unistr/u16-strdup.c: Likewise.
25164         * lib/unistr/u16-strlen.c: Likewise.
25165         * lib/unistr/u16-strmblen.c: Likewise.
25166         * lib/unistr/u16-strmbtouc.c: Likewise.
25167         * lib/unistr/u16-strncat.c: Likewise.
25168         * lib/unistr/u16-strncmp.c: Likewise.
25169         * lib/unistr/u16-strncpy.c: Likewise.
25170         * lib/unistr/u16-strnlen.c: Likewise.
25171         * lib/unistr/u16-strpbrk.c: Likewise.
25172         * lib/unistr/u16-strrchr.c: Likewise.
25173         * lib/unistr/u16-strspn.c: Likewise.
25174         * lib/unistr/u16-strstr.c: Likewise.
25175         * lib/unistr/u16-strtok.c: Likewise.
25176         * lib/unistr/u16-to-u32.c: Likewise.
25177         * lib/unistr/u16-to-u8.c: Likewise.
25178         * lib/unistr/u16-uctomb-aux.c: Likewise.
25179         * lib/unistr/u16-uctomb.c: Likewise.
25180         * lib/unistr/u32-check.c: Likewise.
25181         * lib/unistr/u32-chr.c: Likewise.
25182         * lib/unistr/u32-cmp.c: Likewise.
25183         * lib/unistr/u32-cpy-alloc.c: Likewise.
25184         * lib/unistr/u32-cpy.c: Likewise.
25185         * lib/unistr/u32-endswith.c: Likewise.
25186         * lib/unistr/u32-mblen.c: Likewise.
25187         * lib/unistr/u32-mbsnlen.c: Likewise.
25188         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
25189         * lib/unistr/u32-mbtouc.c: Likewise.
25190         * lib/unistr/u32-mbtoucr.c: Likewise.
25191         * lib/unistr/u32-move.c: Likewise.
25192         * lib/unistr/u32-next.c: Likewise.
25193         * lib/unistr/u32-prev.c: Likewise.
25194         * lib/unistr/u32-set.c: Likewise.
25195         * lib/unistr/u32-startswith.c: Likewise.
25196         * lib/unistr/u32-stpcpy.c: Likewise.
25197         * lib/unistr/u32-stpncpy.c: Likewise.
25198         * lib/unistr/u32-strcat.c: Likewise.
25199         * lib/unistr/u32-strchr.c: Likewise.
25200         * lib/unistr/u32-strcmp.c: Likewise.
25201         * lib/unistr/u32-strcpy.c: Likewise.
25202         * lib/unistr/u32-strcspn.c: Likewise.
25203         * lib/unistr/u32-strdup.c: Likewise.
25204         * lib/unistr/u32-strlen.c: Likewise.
25205         * lib/unistr/u32-strmblen.c: Likewise.
25206         * lib/unistr/u32-strmbtouc.c: Likewise.
25207         * lib/unistr/u32-strncat.c: Likewise.
25208         * lib/unistr/u32-strncmp.c: Likewise.
25209         * lib/unistr/u32-strncpy.c: Likewise.
25210         * lib/unistr/u32-strnlen.c: Likewise.
25211         * lib/unistr/u32-strpbrk.c: Likewise.
25212         * lib/unistr/u32-strrchr.c: Likewise.
25213         * lib/unistr/u32-strspn.c: Likewise.
25214         * lib/unistr/u32-strstr.c: Likewise.
25215         * lib/unistr/u32-strtok.c: Likewise.
25216         * lib/unistr/u32-to-u16.c: Likewise.
25217         * lib/unistr/u32-to-u8.c: Likewise.
25218         * lib/unistr/u32-uctomb.c: Likewise.
25219         * lib/unistr/u8-check.c: Likewise.
25220         * lib/unistr/u8-chr.c: Likewise.
25221         * lib/unistr/u8-cmp.c: Likewise.
25222         * lib/unistr/u8-cpy-alloc.c: Likewise.
25223         * lib/unistr/u8-cpy.c: Likewise.
25224         * lib/unistr/u8-endswith.c: Likewise.
25225         * lib/unistr/u8-mblen.c: Likewise.
25226         * lib/unistr/u8-mbsnlen.c: Likewise.
25227         * lib/unistr/u8-mbtouc-aux.c: Likewise.
25228         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
25229         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
25230         * lib/unistr/u8-mbtouc.c: Likewise.
25231         * lib/unistr/u8-mbtoucr.c: Likewise.
25232         * lib/unistr/u8-move.c: Likewise.
25233         * lib/unistr/u8-next.c: Likewise.
25234         * lib/unistr/u8-prev.c: Likewise.
25235         * lib/unistr/u8-set.c: Likewise.
25236         * lib/unistr/u8-startswith.c: Likewise.
25237         * lib/unistr/u8-stpcpy.c: Likewise.
25238         * lib/unistr/u8-stpncpy.c: Likewise.
25239         * lib/unistr/u8-strcat.c: Likewise.
25240         * lib/unistr/u8-strchr.c: Likewise.
25241         * lib/unistr/u8-strcmp.c: Likewise.
25242         * lib/unistr/u8-strcpy.c: Likewise.
25243         * lib/unistr/u8-strcspn.c: Likewise.
25244         * lib/unistr/u8-strdup.c: Likewise.
25245         * lib/unistr/u8-strlen.c: Likewise.
25246         * lib/unistr/u8-strmblen.c: Likewise.
25247         * lib/unistr/u8-strmbtouc.c: Likewise.
25248         * lib/unistr/u8-strncat.c: Likewise.
25249         * lib/unistr/u8-strncmp.c: Likewise.
25250         * lib/unistr/u8-strncpy.c: Likewise.
25251         * lib/unistr/u8-strnlen.c: Likewise.
25252         * lib/unistr/u8-strpbrk.c: Likewise.
25253         * lib/unistr/u8-strrchr.c: Likewise.
25254         * lib/unistr/u8-strspn.c: Likewise.
25255         * lib/unistr/u8-strstr.c: Likewise.
25256         * lib/unistr/u8-strtok.c: Likewise.
25257         * lib/unistr/u8-to-u16.c: Likewise.
25258         * lib/unistr/u8-to-u32.c: Likewise.
25259         * lib/unistr/u8-uctomb-aux.c: Likewise.
25260         * lib/unistr/u8-uctomb.c: Likewise.
25261         * lib/unitypes.h: Likewise.
25262         * lib/uniwidth.h: Likewise.
25263         * lib/uniwidth/cjk.h: Likewise.
25264         * lib/uniwidth/u16-strwidth.c: Likewise.
25265         * lib/uniwidth/u16-width.c: Likewise.
25266         * lib/uniwidth/u32-strwidth.c: Likewise.
25267         * lib/uniwidth/u32-width.c: Likewise.
25268         * lib/uniwidth/u8-strwidth.c: Likewise.
25269         * lib/uniwidth/u8-width.c: Likewise.
25270         * lib/uniwidth/width.c: Likewise.
25271
25272 2007-10-07  Bruno Haible  <bruno@clisp.org>
25273
25274         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
25275         The file is still under LGPL (see modules/inttypes).
25276
25277 2007-10-06  Bruno Haible  <bruno@clisp.org>
25278
25279         * modules/trunc (Dependencies): Add 'extensions'.
25280         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
25281         Reported by Ben Pfaff <blp@gnu.org>.
25282
25283 2007-10-06  Bruno Haible  <bruno@clisp.org>
25284
25285         * modules/freopen-tests: New file.
25286         * tests/test-freopen.c: New file.
25287
25288         * modules/fopen-tests: New file.
25289         * tests/test-fopen.c: New file.
25290
25291         * modules/fopen: New file.
25292         * lib/fopen.c: New file.
25293         * m4/fopen.m4: New file.
25294         * modules/freopen: New file.
25295         * lib/freopen.c: New file.
25296         * m4/freopen.m4: New file.
25297         * lib/stdio.in.h (fopen, freopen): New declarations.
25298         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
25299         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25300         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
25301         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25302         * doc/functions/fopen.texi: Mention the 'fopen' module.
25303         * doc/functions/freopen.texi: Mention the 'freopen' module.
25304
25305 2007-10-06  Bruno Haible  <bruno@clisp.org>
25306
25307         * modules/open-tests: New file.
25308         * tests/test-open.c: New file.
25309
25310         * modules/open: New file.
25311         * lib/open.c: New file.
25312         * m4/open.m4: New file.
25313         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
25314         lib/open.c does.
25315         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
25316         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
25317         macros.
25318         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
25319         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
25320         REPLACE_OPEN.
25321         * doc/functions/open.texi: Mention the 'open' module.
25322
25323 2007-10-04  Bruno Haible  <bruno@clisp.org>
25324
25325         * modules/ceill-tests: New file.
25326         * tests/test-ceill.c: New file.
25327
25328         * modules/ceill: New file.
25329         * lib/ceill.c: Replace entire file.
25330         * m4/ceill.m4: New file.
25331         * lib/math.in.h (ceill): Replace declaration.
25332         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
25333         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
25334         * doc/functions/ceill.texi: Mention the 'ceill' module.
25335         * modules/mathl (Files): Remove lib/ceill.c.
25336         (Depends-on): Add ceill.
25337
25338 2007-10-04  Bruno Haible  <bruno@clisp.org>
25339
25340         * modules/ceilf-tests: New file.
25341         * tests/test-ceilf.c: New file.
25342
25343         * modules/ceilf: New file.
25344         * lib/ceil.c: New file.
25345         * lib/ceilf.c: New file.
25346         * m4/ceilf.m4: New file.
25347         * lib/math.in.h (ceilf): New declaration.
25348         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
25349         HAVE_DECL_CEILF.
25350         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
25351         HAVE_DECL_CEILF.
25352         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
25353
25354 2007-10-04  Bruno Haible  <bruno@clisp.org>
25355
25356         * modules/floorl-tests: New file.
25357         * tests/test-floorl.c: New file.
25358
25359         * modules/floorl: New file.
25360         * lib/floorl.c: Replace entire file.
25361         * m4/floorl.m4: New file.
25362         * lib/math.in.h (floorl): Replace declaration.
25363         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
25364         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
25365         * doc/functions/floorl.texi: Mention the 'floorl' module.
25366         * modules/mathl (Files): Remove lib/floorl.c.
25367         (Depends-on): Add floorl.
25368
25369 2007-10-04  Bruno Haible  <bruno@clisp.org>
25370
25371         * modules/floorf-tests: New file.
25372         * tests/test-floorf.c: New file.
25373
25374         * modules/floorf: New file.
25375         * lib/floor.c: New file.
25376         * lib/floorf.c: New file.
25377         * m4/floorf.m4: New file.
25378         * lib/math.in.h (floorf): New declaration.
25379         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
25380         HAVE_DECL_FLOORF.
25381         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
25382         HAVE_DECL_FLOORF.
25383         * doc/functions/floorf.texi: Mention the 'floorf' module.
25384
25385 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
25386             Bruno Haible  <bruno@clisp.org>
25387
25388         Advertise for the Git server instead of the CVS server.
25389         * doc/gnulib-intro.texi (Steady Development): Mention the Git
25390         repository instead of the CVS one.
25391         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
25392         about all VCS systems generically.
25393         * doc/gnulib.texi (Introduction): Capitalize `Git'.
25394
25395 2007-10-04  Bruno Haible  <bruno@clisp.org>
25396
25397         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
25398         means.
25399         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
25400
25401 2007-10-04  Bruno Haible  <bruno@clisp.org>
25402
25403         * modules/truncl-tests: New file.
25404         * tests/test-truncl.c: New file.
25405
25406         * modules/truncl: New file.
25407         * lib/truncl.c: New file.
25408         * m4/truncl.m4: New file.
25409         * lib/math.in.h (truncl): New declaration.
25410         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
25411         HAVE_DECL_TRUNCL.
25412         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
25413         HAVE_DECL_TRUNCL.
25414         * doc/functions/truncl.texi: Mention the 'truncl' module.
25415
25416 2007-10-04  Bruno Haible  <bruno@clisp.org>
25417
25418         * modules/truncf-tests: New file.
25419         * tests/test-truncf.c: New file.
25420
25421         * modules/truncf: New file.
25422         * lib/trunc.c: Make paramerizable through USE_* macros.
25423         * lib/truncf.c: New file.
25424         * m4/truncf.m4: New file.
25425         * lib/math.in.h (truncf): New declaration.
25426         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
25427         HAVE_DECL_TRUNCF.
25428         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
25429         HAVE_DECL_TRUNCF.
25430         * doc/functions/truncf.texi: Mention the 'truncf' module.
25431
25432 2007-10-03  Bruno Haible  <bruno@clisp.org>
25433
25434         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
25435         augmentation also for tests modules.
25436         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
25437         * modules/atexit-tests (Makefile.am): Likewise.
25438         * modules/binary-io-tests (Makefile.am): Likewise.
25439         * modules/c-strcase-tests (Makefile.am): Likewise.
25440         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
25441         * modules/canonicalize-tests (Makefile.am): Likewise.
25442         * modules/closein-tests (Makefile.am): Likewise.
25443         * modules/fprintf-posix-tests (Makefile.am): Likewise.
25444         * modules/freadahead-tests (Makefile.am): Likewise.
25445         * modules/fseek-tests (Makefile.am): Likewise.
25446         * modules/fseeko-tests (Makefile.am): Likewise.
25447         * modules/ftell-tests (Makefile.am): Likewise.
25448         * modules/ftello-tests (Makefile.am): Likewise.
25449         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
25450         * modules/isnanl-tests (Makefile.am): Likewise.
25451         * modules/lseek-tests (Makefile.am): Likewise.
25452         * modules/mbscasecmp-tests (Makefile.am): Likewise.
25453         * modules/mbscasestr-tests (Makefile.am): Likewise.
25454         * modules/mbschr-tests (Makefile.am): Likewise.
25455         * modules/mbscspn-tests (Makefile.am): Likewise.
25456         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
25457         * modules/mbspbrk-tests (Makefile.am): Likewise.
25458         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
25459         * modules/mbsrchr-tests (Makefile.am): Likewise.
25460         * modules/mbsspn-tests (Makefile.am): Likewise.
25461         * modules/mbsstr-tests (Makefile.am): Likewise.
25462         * modules/printf-posix-tests (Makefile.am): Likewise.
25463         * modules/snprintf-posix-tests (Makefile.am): Likewise.
25464         * modules/sprintf-posix-tests (Makefile.am): Likewise.
25465         * modules/tsearch-tests (Makefile.am): Likewise.
25466         * modules/uniname/uniname-tests (Makefile.am): Likewise.
25467         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
25468         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
25469         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
25470         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
25471         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
25472         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
25473         * modules/vprintf-posix-tests (Makefile.am): Likewise.
25474         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
25475         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
25476         * modules/xstrtoimax-tests (Makefile.am): Likewise.
25477         * modules/xstrtol-tests (Makefile.am): Likewise.
25478         * modules/xstrtoumax-tests (Makefile.am): Likewise.
25479         * modules/yesno-tests (Makefile.am): Likewise.
25480
25481 2007-10-03  Bruno Haible  <bruno@clisp.org>
25482
25483         * modules/trunc-tests: New file.
25484         * tests/test-trunc.c: New file.
25485
25486         * modules/trunc: New file.
25487         * lib/trunc.c: New file.
25488         * m4/trunc.m4: New file.
25489         * lib/math.in.h (trunc): New declaration.
25490         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
25491         HAVE_DECL_TRUNC.
25492         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
25493         HAVE_DECL_TRUNC.
25494         * doc/functions/trunc.texi: Mention the 'trunc' module.
25495
25496 2007-10-03  Bruno Haible  <bruno@clisp.org>
25497
25498         * tests/test-fpending.c: New file, mostly copied
25499         from coreutils/lib/t-fpending.c.
25500         * modules/fpending-tests: New file.
25501
25502 2007-10-03  Bruno Haible  <bruno@clisp.org>
25503
25504         Port the stdio extensions to QNX (untested).
25505         * lib/fseterr.c (fseterr): Add support for QNX.
25506         * lib/fbufmode.c (fbufmode): Likewise.
25507         * lib/freadable.c (freadable): Likewise.
25508         * lib/fwritable.c (fwritable): Likewise.
25509         * lib/freading.c (freading): Likewise.
25510         * lib/fwriting.c (fwriting): Likewise.
25511         * lib/freadahead.c (freadahed): Likewise.
25512         * lib/fpurge.c (fpurge): Likewise.
25513         * lib/fseeko.c (rpl_fseeko): Likewise.
25514
25515 2007-10-03  Bruno Haible  <bruno@clisp.org>
25516             Jim Meyering  <jim@meyering.net>
25517             Eric Blake  <ebb9@byu.net>
25518
25519         * doc/relocatable.texi: Use @command instead of @program.
25520
25521 2007-10-02  Jim Meyering  <jim@meyering.net>
25522
25523         Perform one more "_.h" -> ".in.h" substitution.
25524         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
25525         instead of unistd_.h here, too.
25526
25527 2007-10-01  Bruno Haible  <bruno@clisp.org>
25528
25529         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
25530         Needed for the alloca-opt module.
25531
25532 2007-09-30  Bruno Haible  <bruno@clisp.org>
25533
25534         * lib/alloca.in.h: Renamed from lib/alloca_.h.
25535         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
25536         alloca_.h.
25537         * lib/argz.in.h: Renamed from lib/argz_.h.
25538         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
25539         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
25540         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
25541         byteswap_.h.
25542         * lib/dirent.in.h: Renamed from lib/dirent_.h.
25543         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
25544         dirent_.h.
25545         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
25546         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
25547         fcntl_.h.
25548         * lib/float.in.h: Renamed from lib/float_.h.
25549         * modules/float (Files, Makefile.am): Use float.in.h instead of
25550         float_.h.
25551         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
25552         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
25553         fnmatch_.h.
25554         * lib/getopt.in.h: Renamed from lib/getopt_.h.
25555         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
25556         getopt_.h.
25557         * lib/glob.in.h: Renamed from lib/glob_.h.
25558         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
25559         * lib/iconv.in.h: Renamed from lib/iconv_.h.
25560         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
25561         iconv_.h.
25562         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
25563         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
25564         inttypes_.h.
25565         * lib/locale.in.h: Renamed from lib/locale_.h.
25566         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
25567         locale_.h.
25568         * lib/math.in.h: Renamed from lib/math_.h.
25569         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
25570         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
25571         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
25572         of netinet_in_.h. Add dependency.
25573         * lib/poll.in.h: Renamed from lib/poll_.h.
25574         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
25575         * lib/search.in.h: Renamed from lib/search_.h.
25576         * modules/search (Files, Makefile.am): Use search.in.h instead of
25577         search_.h.
25578         * lib/signal.in.h: Renamed from lib/signal_.h.
25579         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
25580         _signal.h.
25581         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
25582         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
25583         stdbool_.h.
25584         * lib/stdint.in.h: Renamed from lib/stdint_.h.
25585         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
25586         stdint_.h.
25587         * lib/stdio.in.h: Renamed from lib/stdio_.h.
25588         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
25589         stdio_.h.
25590         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
25591         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
25592         stdlib_.h.
25593         * lib/string.in.h: Renamed from lib/string_.h.
25594         * modules/string (Files, Makefile.am): Use string.in.h instead of
25595         string_.h.
25596         * doc/gnulib-tool.texi (Initial import): Update.
25597         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
25598         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
25599         of sys_select_.h. Add dependency.
25600         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
25601         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
25602         of sys_socket_.h.
25603         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
25604         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
25605         sys_stat_.h.
25606         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
25607         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
25608         sys_time_.h.
25609         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
25610         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
25611         sysexits_.h.
25612         * lib/time.in.h: Renamed from lib/time_.h.
25613         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
25614         * lib/unistd.in.h: Renamed from lib/unistd_.h.
25615         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
25616         unistd_.h.
25617         * lib/wchar.in.h: Renamed from lib/wchar_.h.
25618         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
25619         wchar_.h.
25620         * lib/wctype.in.h: Renamed from lib/wctype_.h.
25621         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
25622         wctype_.h.
25623         * build-aux/bootstrap (slurp): Update.
25624         * lib/.cppi-disable: Update.
25625
25626 2007-09-30  Bruno Haible  <bruno@clisp.org>
25627
25628         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
25629         Needed on BeOS.
25630
25631 2007-09-30  Bruno Haible  <bruno@clisp.org>
25632
25633         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
25634
25635 2007-09-29  Bruno Haible  <bruno@clisp.org>
25636
25637         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
25638
25639 2007-09-29  Bruno Haible  <bruno@clisp.org>
25640
25641         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
25642         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
25643         * build-aux/install-reloc: Compile also areadlink.c.
25644         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
25645
25646 2007-09-29  Bruno Haible  <bruno@clisp.org>
25647
25648         * gnulib-tool (func_emit_initmacro_done): Indentation.
25649
25650 2007-09-29  Bruno Haible  <bruno@clisp.org>
25651
25652         * README: Add CVS checkout update instructions.
25653         Info from Bob Proulx <bob@proulx.com>.
25654
25655 2007-09-28  Eric Blake  <ebb9@byu.net>
25656
25657         Provide move-if-change.
25658         * build-aux/move-if-change: New file, based on best practice
25659         rather than any canonical upstream location.
25660
25661 2007-09-28  Jim Meyering  <jim@meyering.net>
25662
25663         Fix canonicalize loop-detection corner case.
25664         Do not attempt to stat the symlink values stored via seen_triple.
25665         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
25666         on linux-2.6.18, (but not 2.6.22).
25667         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
25668         triple_compare.  The former compares dev,ino,filename, while the latter
25669         would actually stat dirname(filename) when dev and ino were equal.
25670         * lib/hash-triple.c: Install <string.h>.
25671         (STREQ): Define.
25672         (triple_compare_ino_str): New function.
25673         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
25674
25675 2007-09-28  Eric Blake  <ebb9@byu.net>
25676
25677         Enforce that AC_REPLACE_FUNCS files exist.
25678         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
25679         override check for typos.
25680
25681         Fix test-closein on Solaris 10.
25682         * tests/test-closein.c (main): Don't assume stdin can be inherited
25683         closed on all systems.
25684         * tests/test-closein.sh: Likewise.
25685         Reported by Piotr Tarnowski.
25686
25687 2007-09-28  Jim Meyering  <jim@meyering.net>
25688
25689         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
25690
25691 2007-09-27  Jim Meyering  <jim@meyering.net>
25692
25693         canonicalize: Avoid a false-positive cycle failure.
25694         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
25695         Sort.  Remove cycle-check.
25696         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
25697         not cycle-check.h.
25698         (seen_triple): New function.
25699         (canonicalize_filename_mode): Use it instead of cycle-check.
25700         * tests/test-canonicalize.c: Add a test for this bug.
25701         * tests/test-canonicalize.sh: Set up and run the test.
25702
25703         New module, file-set, from coreutils.
25704         * modules/file-set: Define it.
25705         * lib/file-set.c, lib/file-set.h: Implement.
25706
25707         New module, hash-triple, from coreutils.
25708         * modules/hash-triple: Define it.
25709         * lib/hash-triple.c, lib/hash-triple.h: Implement.
25710
25711 2007-09-25  Eric Blake  <ebb9@byu.net>
25712
25713         Fix strerror on Interix.
25714         * lib/string_.h (strerror): Declare replacement.
25715         * doc/functions/strerror.texi (strerror): Document the Interix
25716         shortcoming.
25717         * modules/string (Makefile.am): Support new hooks.
25718         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
25719         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
25720         gl_FUNC_STRERROR_SEPARATE.
25721         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
25722         * lib/strerror.c (rpl_strerror): Provide replacement.
25723         * modules/strerror (Depends-on): Add string.
25724         (configure.ac): Detect use of module.
25725         * tests/test-strerror.c: New file.
25726         * modules/strerror-tests: New test module.
25727         * modules/argp (Depends-on): Add strerror.
25728         * modules/error (Depends-on): Likewise.
25729         Reported by Martin Koeppe.
25730
25731 2007-09-24  Bruno Haible  <bruno@clisp.org>
25732
25733         * README: Update git instructions.
25734
25735 2007-09-24  Eric Blake  <ebb9@byu.net>
25736
25737         Revert fpending breakage from 2007-09-08.
25738         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
25739         __fpending.c.
25740
25741 2007-09-24  Jim Meyering  <jim@meyering.net>
25742
25743         filenamecat.c: Add a test.
25744         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
25745         showing how the function works when DIR is the empty string.
25746
25747 2007-09-21  Simon Josefsson  <simon@josefsson.org>
25748
25749         * tests/test-canonicalize.sh: Turn on executable bit.
25750
25751 2007-09-19  Eric Blake  <ebb9@byu.net>
25752
25753         * README: Update CVS instructions.
25754
25755 2007-09-18  Bruno Haible  <bruno@clisp.org>
25756
25757         * modules/areadlink: New file.
25758         * lib/areadlink.h (areadlink): New declaration.
25759         * lib/areadlink.c: New file, based on lib/xreadlink.c.
25760
25761 2007-09-17  Jim Meyering  <jim@meyering.net>
25762
25763         * lib/savewd.c (ESTALE) [!defined]: Define.
25764         Reported to be required on Interix by Martin Koeppe.
25765
25766 2007-09-17  Bruno Haible  <bruno@clisp.org>
25767
25768         * gnulib-tool (func_version): Use $version.
25769
25770 2007-09-16  Bruno Haible  <bruno@clisp.org>
25771
25772         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
25773         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
25774         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
25775         Reported by Greg Schafer <gschafer@zip.com.au>.
25776
25777 2007-09-15  Bruno Haible  <bruno@clisp.org>
25778
25779         * gnulib-tool (sed): Try a little harder to make bash understand the
25780         alias.
25781         Reported by Bruce Korb <bruce.korb@gmail.com>.
25782
25783 2007-09-13  Eric Blake  <ebb9@byu.net>
25784
25785         * ChangeLog: Remove conflict markers.
25786
25787 2007-09-13  Simon Josefsson  <simon@josefsson.org>
25788
25789         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
25790         Reported by Bruno Haible <bruno@clisp.org>.
25791
25792 2007-09-12  Bruno Haible  <bruno@clisp.org>
25793
25794         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
25795         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
25796         is not defined.
25797
25798 2007-09-12  Eric Blake  <ebb9@byu.net>
25799
25800         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
25801         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
25802         Autoconf definition.
25803         * modules/euidaccess (Depends-on): Add extensions, for
25804         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
25805         * modules/fnmatch (Depends-on): Likewise.
25806         * modules/getaddrinfo (Depends-on): Likewise.
25807         * modules/getdelim (Depends-on): Likewise.
25808         * modules/getline (Depends-on): Likewise.
25809         * modules/getsubopt (Depends-on): Likewise.
25810         * modules/gettext (Depends-on): Likewise.
25811         * modules/group-member (Depends-on): Likewise.
25812         * modules/mbchar (Depends-on): Likewise.
25813         * modules/memmem (Depends-on): Likewise.
25814         * modules/mempcpy (Depends-on): Likewise.
25815         * modules/memrchr (Depends-on): Likewise.
25816         * modules/pagealign_alloc (Depends-on): Likewise.
25817         * modules/readutmp (Depends-on): Likewise.
25818         * modules/stpcpy (Depends-on): Likewise.
25819         * modules/stpncpy (Depends-on): Likewise.
25820         * modules/strchrnul (Depends-on): Likewise.
25821         * modules/strndup (Depends-on): Likewise.
25822         * modules/strsep (Depends-on): Likewise.
25823         * modules/strverscmp (Depends-on): Likewise.
25824         * modules/vasprintf (Depends-on): Likewise.
25825         * modules/wcwidth (Depends-on): Likewise.
25826         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
25827         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
25828         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
25829         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
25830         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
25831         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25832         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
25833         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
25834         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
25835         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
25836         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25837         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25838         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25839         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
25840         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
25841         * m4/readutmp.m4 (gl_READUTMP): Likewise.
25842         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
25843         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25844         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25845         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25846         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25847         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25848         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25849         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
25850         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
25851         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25852         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
25853         so that lock.m4 can be used in gettext without extensions module.
25854
25855 2007-09-11  Bruno Haible  <bruno@clisp.org>
25856
25857         * m4/isc-posix.m4: Remove file.
25858         Suggested by Eric Blake.
25859
25860 2007-09-11  Eric Blake  <ebb9@byu.net>
25861
25862         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
25863
25864 2007-09-10  Bruno Haible  <bruno@clisp.org>
25865
25866         * posix-modules: Fix typo in error message.
25867         Reported by Matt <mkraai@beckman.com>.
25868
25869 2007-09-09  Bruno Haible  <bruno@clisp.org>
25870
25871         * doc/functions/getdelim.texi: Update list of platforms lacking the
25872         function.
25873         * doc/functions/getline.texi: Likewise.
25874
25875 2007-09-09  Jim Meyering  <jim@meyering.net>
25876
25877         * lib/hash.c (hash_initialize): Detect calloc failure.
25878         Reported by Bruno Haible.
25879
25880 2007-09-09  Bruno Haible  <bruno@clisp.org>
25881
25882         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
25883         malloc or realloc fails.
25884
25885 2007-09-09  Bruno Haible  <bruno@clisp.org>
25886
25887         * modules/getcwd (Depends-on): Add malloc-posix.
25888         * modules/glob (Depends-on): Likewise.
25889         * modules/putenv (Depends-on): Likewise.
25890         * modules/strdup (Depends-on): Likewise.
25891         * modules/getdelim (Depends-on): Add realloc-posix.
25892         * modules/read-file (Depends-on): Likewise.
25893
25894 2007-09-09  Bruno Haible  <bruno@clisp.org>
25895
25896         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
25897         (gl_FUNC_MALLOC_POSIX): Require it.
25898         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
25899         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
25900         * modules/realloc (Files): Add m4/malloc.m4.
25901         * modules/calloc (Files): Likewise.
25902
25903 2007-09-09  Bruno Haible  <bruno@clisp.org>
25904
25905         * modules/malloc-posix: New file.
25906         * modules/malloc (Depends-on): Add malloc-posix.
25907         * lib/malloc.c: Include errno.h.
25908         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
25909         and a POSIX-compatible malloc into a single function. Set ENOMEM
25910         when returning NULL.
25911         * m4/malloc.m4: New file.
25912         * doc/functions/malloc.texi: Mention the malloc-posix module.
25913         * lib/stdlib_.h (malloc): New declaration.
25914         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25915         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
25916         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
25917         and HAVE_MALLOC_POSIX.
25918
25919 2007-09-09  Bruno Haible  <bruno@clisp.org>
25920
25921         * modules/realloc-posix: New file.
25922         * modules/realloc (Depends-on): Add realloc-posix.
25923         * lib/realloc.c: Include errno.h.
25924         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
25925         and a POSIX-compatible realloc into a single function. Set ENOMEM
25926         when returning NULL.
25927         * m4/realloc.m4: New file.
25928         * doc/functions/realloc.texi: Mention the realloc-posix module.
25929         * lib/stdlib_.h (realloc): New declaration.
25930         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25931         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
25932         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
25933         and HAVE_REALLOC_POSIX.
25934
25935 2007-09-09  Bruno Haible  <bruno@clisp.org>
25936
25937         * modules/calloc-posix: New file.
25938         * modules/calloc (Depends-on): Add calloc-posix.
25939         * lib/calloc.c: Include errno.h.
25940         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
25941         and a POSIX-compatible calloc into a single function. Set ENOMEM
25942         when returning NULL.
25943         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
25944         * doc/functions/calloc.texi: Mention the calloc-posix module.
25945         * lib/stdlib_.h (calloc): New declaration.
25946         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25947         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
25948         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
25949         and HAVE_CALLOC_POSIX.
25950
25951 2007-09-09  Bruno Haible  <bruno@clisp.org>
25952
25953         Allow for modules to show an arbitrary notice.
25954         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
25955         * gnulib-tool: New option --extract-notice.
25956         (func_usage): Document it.
25957         (sed_extract_prog): Update.
25958         (func_get_notice): New function.
25959         (func_modules_notice): New function.
25960         (func_import, func_create_testdir): Invoke it.
25961         Suggested by Jim Meyering.
25962
25963 2007-09-09  Bruno Haible  <bruno@clisp.org>
25964
25965         * gnulib-tool: New options --verbose, --quiet.
25966         (func_usage): Document them.
25967         (verbose): New variable.
25968         (func_execute_command): New function.
25969         (func_import): Don't show the module list and the file list if
25970         $verbose < 0.
25971         (func_create_testdir): Likewise. Use func_execute_command.
25972         (func_create_megatestdir): Use func_execute_command.
25973
25974 2007-09-08  Bruno Haible  <bruno@clisp.org>
25975
25976         * gnulib-tool (func_import): Prefer rsync over wget when available,
25977         for fetching the PO files.
25978
25979 2007-09-08  Bruno Haible  <bruno@clisp.org>
25980
25981         * posix-modules: New file. Portions copied from gnulib-tool.
25982         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
25983
25984 2007-09-08  Jim Meyering  <jim@meyering.net>
25985
25986         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
25987         * lib/fpending.h: Rename from __fpending.h.
25988         * lib/fpending.c: Rename from __fpending.c.
25989         Include "fpending.h", not "__fpending.h".
25990         * lib/__fpending.h, lib/__fpending.c: Remove files.
25991         * modules/fpending (Files): Reflect new file names.
25992         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
25993
25994 2007-09-08  Bruno Haible  <bruno@clisp.org>
25995
25996         * m4/inttypes-h.m4: Remove stub file.
25997
25998 2007-09-07  Simon Josefsson  <simon@josefsson.org>
25999
26000         * doc/headers/stdint.texi: Discuss #include_next issue.
26001
26002 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
26003
26004         * build-aux/bootstrap: Remove obsolete comment about wget --help.
26005
26006 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26007
26008         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
26009         in variable name.
26010
26011 2007-09-03  Jim Meyering  <jim@meyering.net>
26012
26013         New module: git-version-gen.
26014         * modules/git-version-gen: New file.
26015
26016         Import changes from coreutils for bootstrap script.
26017
26018         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
26019
26020         bootstrap: uses rsync to download the .po files
26021         * build-aux/bootstrap (po_download_command_format): New global.
26022         (download_po_files): Use rsync.
26023         (update_po_files): Don't remove .po files after download,
26024         so future rsync runs can take advantage of the copies.
26025
26026         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
26027
26028         Solve the unnecessary-.po-file-regeneration problem once and for all.
26029         * build-aux/bootstrap (download_po_files): New function, renamed from
26030         get_translations.  Now, downloads, but doesn't update LINGUAS.
26031         (update_po_files): New function.
26032
26033         bootstrap: Ignore more.
26034         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
26035         uniwidth to e.g., lib/.gitignore.
26036         (slurp): Handle the sys_stat_.h -> sys mapping, too.
26037
26038         * build-aux/bootstrap: New setting: vc_ignore.
26039         (insert_sorted_if_absent): Create $file if absent.
26040         Adapt to new, possibly empty, list: $vc_ignore.
26041
26042         bootstrap: generate more ignorable names
26043         * build-aux/bootstrap (slurp): When generating ignorable names,
26044         also map .sin to .sed, .gperf to .c, and .y to .c.
26045
26046 2007-09-03  Jim Meyering  <jim@meyering.net>
26047
26048         * build-aux/git-version-gen: New file, from coreutils.  For details, see
26049         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
26050
26051 2007-09-02  Bruno Haible  <bruno@clisp.org>
26052
26053         Fix mis-recognition of 'mcs' on QNX 6.
26054         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
26055         output contains the string "Mono".
26056         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
26057         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
26058
26059 2007-09-01  Bruno Haible  <bruno@clisp.org>
26060
26061         Fix collision between uniwidth/* and linebreak modules.
26062         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
26063         u32_width): Remove declarations.
26064         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
26065         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
26066         streq3, streq2, streq1, streq0): Remove functions.
26067         (STREQ): Remove macro.
26068         (is_cjk_encoding): Remove function.
26069         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
26070         (uc_width, u8_width, u16_width, u32_width): Remove functions.
26071         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
26072         * NEWS: Document the change.
26073
26074 2007-09-01  Bruno Haible  <bruno@clisp.org>
26075
26076         * lib/streq.h: Add double-inclusion guard.
26077
26078 2007-09-01  Karl Berry  <karl@gnu.org>
26079
26080         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
26081
26082 2007-08-28  Jim Meyering  <jim@meyering.net>
26083
26084         Rename mreadlink_with_size to areadlink_with_size.
26085         * NEWS: Document the change.
26086         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
26087         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
26088         * lib/mreadlink.h: Rename this to...
26089         * lib/areadlink.h: ...this.
26090         * modules/mreadlink-with-size: Rename this to...
26091         * modules/areadlink-with-size: ...this.
26092         * lib/canonicalize.c: Reflect the renaming.
26093         * modules/canonicalize: Likewise.
26094
26095 2007-08-26  Bruno Haible  <bruno@clisp.org>
26096
26097         * gnulib-tool (func_import): When deciding which files to remove,
26098         consider also dangling symbolic links.
26099         Reported by Eric Blake.
26100
26101 2007-08-26  Bruno Haible  <bruno@clisp.org>
26102
26103         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
26104
26105 2007-08-23  Simon Josefsson  <simon@josefsson.org>
26106
26107         * lib/readline.c: Don't include getline.h, the prototype is now
26108         found in stdio.h.
26109
26110 2007-08-23  Jim Meyering  <jim@meyering.net>
26111
26112         Getdelim touchup.
26113         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
26114         around the funlockfile call, since funlockfile never sets errno.
26115         Don't set errno upon failed realloc.
26116
26117 2007-08-22  Eric Blake  <ebb9@byu.net>
26118
26119         Getline touchups.
26120         * lib/getdelim.c (getdelim): Revert regression that required *n to
26121         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
26122         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
26123         getdelim, rather than whether implementation is missing.
26124         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
26125         * lib/stdio_.h (getline): Also declare if replacement is
26126         required.
26127         * doc/functions/getdelim.texi: New file.
26128         * doc/functions/getline.texi: Likewise.
26129         * doc/gnulib.texi (Function Substitutes): Add new files.
26130         Reported by Bruno Haible.
26131
26132 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
26133
26134         * users.txt: Add Guile.
26135
26136 2007-08-22  Eric Blake  <ebb9@byu.net>
26137
26138         * tests/test-getdelim.c (main): Use remove, not unlink.
26139         * tests/test-getline.c (main): Likewise.
26140
26141         Move getline and getdelim into stdio.h, per POSIX 200x.
26142         * modules/getline (Files): Remove getline.h.
26143         (Depends-on): Add stdio.
26144         (configure.ac): Add module indicator.
26145         * modules/getdelim (Files): Remove getdelim.h.
26146         (Depends-on): Add stdio.
26147         (configure.ac): Add module indicator.
26148         * modules/stdio (Makefile.am): Work with new indicators.
26149         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
26150         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
26151         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
26152         * lib/getdelim.h: Delete.
26153         * lib/getline.h: Delete.
26154         * lib/stdio_.h (getdelim, getline): Declare.
26155         * modules/getdelim-tests: New module.
26156         * modules/getline-tests: Likewise.
26157         * tests/test-getdelim.c: New file.
26158         * tests/test-getline.c: Likewise.
26159         * NEWS: Document the change.
26160         * lib/getline.c: Update choice of header.
26161         * lib/csharpcomp.c: Likewise.
26162         * lib/getpass.c: Likewise.
26163         * lib/javacomp.c: Likewise.
26164         * lib/javaversion.c: Likewise.
26165         * lib/yesno.c: Likewise.
26166         * lib/getdelim.c: Likewise.
26167         (getdelim): Set errno on failure, and avoid memory leak.
26168
26169 2007-08-19  Bruno Haible  <bruno@clisp.org>
26170
26171         * modules/closein (Depends-on): Add freadahead.
26172         * lib/closein.c: Include freadahead.h.
26173         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
26174         is zero.
26175
26176 2007-08-19  Bruno Haible  <bruno@clisp.org>
26177
26178         * modules/freadahead-tests: New file.
26179         * tests/test-freadahead.sh: New file.
26180         * tests/test-freadahead.c: New file.
26181
26182         * modules/freadahead: New file.
26183         * lib/freadahead.h: New file.
26184         * lib/freadahead.c: New file.
26185         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
26186         fbufmode, fpurge, freadable, fwritable.
26187
26188 2007-08-19  Eric Blake  <ebb9@byu.net>
26189
26190         Test yesno in combination with closein.
26191         * lib/yesno.c (yesno): Document use of stdin.
26192         * modules/yesno-tests (Files): New module.
26193         * tests/test-yesno.c (main): New file.
26194         * tests/test-yesno.sh: Likewise.
26195
26196 2007-08-19  Bruno Haible  <bruno@clisp.org>
26197
26198         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
26199         * lib/fseeko.c (rpl_fseeko): Likewise.
26200         * lib/fseterr.c (fseterr): Likewise.
26201
26202 2007-08-19  Bruno Haible  <bruno@clisp.org>
26203
26204         * tests/test-lseek.c (main): Disable a test for BeOS.
26205         * doc/functions/lseek.texi: Document the BeOS bug.
26206
26207 2007-08-19  Bruno Haible  <bruno@clisp.org>
26208             Eric Blake  <ebb9@byu.net>
26209
26210         * lib/lseek.c: Include <sys/stat.h>.
26211         (rpl_lseek): Add workaround code also for Unix platforms.
26212         Needed for BeOS.
26213         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
26214         * doc/functions/lseek.texi: Document BeOS definiency.
26215
26216 2007-08-18  Bruno Haible  <bruno@clisp.org>
26217
26218         * modules/fstrcmp-tests: New file.
26219         * tests/test-fstrcmp.c: New file.
26220
26221 2007-08-18  Bruno Haible  <bruno@clisp.org>
26222
26223         * modules/fstrcmp: New file, from GNU gettext with modifications.
26224         * lib/fstrcmp.h: New file, from GNU gettext.
26225         * lib/fstrcmp.c: New file, from GNU gettext.
26226         * MODULES.html.sh (String handling): Add fstrcmp.
26227
26228 2007-08-18  Bruno Haible  <bruno@clisp.org>
26229
26230         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
26231         'bool'.
26232         (diag, compareseq): Remove const from the ctxt argument.
26233         (USE_HEURISTIC): Undefine at the end.
26234
26235 2007-08-18  Jim Meyering  <jim@meyering.net>
26236
26237         New file: lib/idcache.h
26238         * NEWS: Mention the addition.
26239         * modules/idcache (Files): Add lib/idcache.h
26240         * lib/idcache.c: Include "idcache.h".
26241         Don't include <sys/types.h>.
26242         Add a FIXME comment.
26243         Move file-scoped "static" declarations to the top.
26244         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
26245
26246 2007-08-17  Bruno Haible  <bruno@clisp.org>
26247         and Paul Eggert  <eggert@cs.ucla.edu>
26248
26249         * MODULES.html.sh: Add diffseq.
26250         * modules/diffseq: New file.
26251         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
26252         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
26253
26254 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
26255
26256         Import changes from coreutils for bootstrap script.
26257
26258         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
26259
26260         * build-aux/bootstrap (slurp): Work even in environments where
26261         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
26262         current code does not slurp files whose names start with ".", and
26263         this looks like it might be a troublesome area.
26264
26265         2007-07-11  Jim Meyering  <jim@meyering.net>
26266
26267         If there's a GPL vN copyright comment, require that N == 3.
26268
26269         2007-07-08  Jim Meyering  <jim@meyering.net>
26270
26271         Run the coreutils-specific code only if tests/Makefile.am.in exists.
26272         * build-aux/bootstrap (mam_template): Move definition out of loop.
26273
26274         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
26275
26276         * build-aux/bootstrap (symlink_to_dir): Rename function from
26277         symlink_to_gnulib.  Add a directory parameter.  Update all
26278         callers.
26279         (cp_mark_as_generated): Also check for -- and link to -- files in
26280         gl/.
26281
26282         2007-07-08  Jim Meyering  <jim@meyering.net>
26283
26284         Adapt to deeper hierarchy in gnulib.
26285         * build-aux/bootstrap (symlink_to_dir): If the destination
26286         directory doesn't exist, create it. This is required at least for
26287         "lib/uniwidth/cjk.h".
26288
26289         2007-05-15  Jim Meyering  <jim@meyering.net>
26290
26291         * build-aux/bootstrap: Now that generated Makefile.am files
26292         are no longer under version control, they must be created at
26293         bootstrap time.
26294
26295 2007-08-14  Ben Pfaff  <blp@gnu.org>
26296
26297         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
26298
26299 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
26300
26301         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
26302         given the changes below.
26303         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
26304         even on hosts that have padding bits beyond the supported 64.
26305
26306 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
26307
26308         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
26309         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
26310         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
26311         depends on it.
26312         (xstrtol_error): Remove.
26313         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
26314         but with a different signature.
26315         (ATTRIBUTE_NORETURN, __attribute__): New macros.
26316         * lib/xstrtol-error.c: Include exitfail.h.
26317         (xstrtol_fatal): New function, with a different signature from the
26318         old xstrtol_error, so that the caller need not worry about passing
26319         in an exit status, or about storage management of the option argument.
26320         (xstrtol_error): Now a static function.  Redo signature to
26321         implement xstrtol_fatal.  Output the correct number of hyphens in
26322         front of the option so that the caller need not worry about
26323         storage management.
26324         (N_): New macro.
26325         (_): Remove; not used now.
26326         * modules/xstrtol: Depend on getopt.
26327         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
26328         of old STRTOL_FATAL_ERROR macro.
26329         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
26330         of test program.
26331         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
26332         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
26333
26334 2007-08-08  Eric Blake  <ebb9@byu.net>
26335
26336         * lib/xstrtol-error.c: Add missing include.
26337
26338         Move xstrtol messages into gnulib domain, when --pobase is used.
26339         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
26340         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
26341         * modules/xstrtol (Files): Distribute new file.
26342         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
26343         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
26344         * tests/test-xstrtol.c: ...into new file.
26345         * tests/test-xstrtoul.c: Also test xstrtoul.
26346         * tests/test-xstrtoimax.c: Also test xstrtoimax.
26347         * tests/test-xstrtoumax.c: Also test xstrtoumax.
26348         * tests/test-xstrtol.sh: Drive the tests.
26349         * tests/test-xstrtoimax.sh: Likewise.
26350         * tests/test-xstrtoumax.sh: Likewise.
26351         * modules/xstrtol-tests: New module.
26352         * modules/xstrtoimax-tests: Likewise.
26353         * modules/xstrtoumax-tests: Likewise.
26354
26355 2007-08-08  Jim Meyering  <jim@meyering.net>
26356
26357         New function: mfile_name_concat.
26358         * lib/filenamecat.c (mfile_name_concat): New function, just like
26359         file_name_concat, but return NULL upon failure rather than exiting
26360         with a diagnostic.
26361         * lib/filenamecat.h: Declare it.
26362
26363 2007-08-07  Bruno Haible  <bruno@clisp.org>
26364
26365         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
26366         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
26367         warning from gcc.
26368         Reported by Eric Blake.
26369
26370 2007-08-07  Simon Josefsson  <simon@josefsson.org>
26371
26372         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
26373         * modules/crypto/arcfour (License): Likewise.
26374         * modules/crypto/des-tests (License): Likewise.
26375         * modules/crypto/gc-arctwo-tests (License): Likewise.
26376         * modules/crypto/gc-des-tests (License): Likewise.
26377         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
26378         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
26379         * modules/crypto/gc-md2-tests (License): Likewise.
26380         * modules/crypto/gc-md4-tests (License): Likewise.
26381         * modules/crypto/gc-md5-tests (License): Likewise.
26382         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
26383         * modules/crypto/gc-rijndael-tests (License): Likewise.
26384         * modules/crypto/gc-sha1-tests (License): Likewise.
26385         * modules/crypto/gc-tests (License): Likewise.
26386         * modules/crypto/hmac-md5 (License): Likewise.
26387         * modules/crypto/hmac-sha1 (License): Likewise.
26388         * modules/crypto/md2-tests (License): Likewise.
26389         * modules/crypto/md4-tests (License): Likewise.
26390         * modules/crypto/md5 (License): Likewise.
26391         * modules/crypto/rijndael (License): Likewise.
26392         * modules/crypto/sha1 (License): Likewise.
26393         * modules/memxor (License): Likewise.
26394
26395 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26396         and Bruno Haible  <bruno@clisp.org>
26397
26398         * NEWS: Describe interface changes to human, xstrtol.
26399         * lib/human.h: Include <xstrtol.h>.
26400         (human_options): Return enum strtol_error, not int.  Remove
26401         bool arg; take int * instead.
26402         * lib/human.c: Don't include "gettext.h".
26403         (_): Remove; no longer used.
26404         Don't include <xstrtol.h>, since human.h does it.
26405         (human_options): Adjust to abovementioned interface changes.
26406         Do not report error to stderr; that's now the caller's
26407         responsibility.
26408         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
26409         interface change.
26410         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
26411         Str, Argument_type_string.  All uses changed.  Put " argument"
26412         in diagnostics to make them clearer.  Change wording of suffix
26413         message for clarity.
26414         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
26415         Argument_type_string.
26416         (STRTOL_FATAL_WARN): Remove; no longer used.
26417         * modules/human (Depends-on): Remove gettext-h.
26418
26419 2007-08-06  Simon Josefsson  <simon@josefsson.org>
26420
26421         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
26422
26423 2007-07-31  Bruno Haible  <bruno@clisp.org>
26424
26425         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
26426         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
26427         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
26428
26429 2007-07-31  Bruno Haible  <bruno@clisp.org>
26430
26431         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
26432         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
26433
26434 2007-07-30  Bruno Haible  <bruno@clisp.org>
26435
26436         * modules/base64 (License): Use the synonymous term "LGPLv2+".
26437         * modules/c-ctype (License): Likewise.
26438         * modules/c-strcase (License): Likewise.
26439         * modules/check-version (License): Likewise.
26440         * modules/iconv (License): Likewise.
26441         * modules/iconv_open (License): Likewise.
26442         * modules/read-file (License): Likewise.
26443         * modules/striconv (License): Likewise.
26444         * modules/strverscmp (License): Likewise.
26445         * modules/vasprintf (License): Likewise.
26446         * modules/crypto/des (License): Likewise.
26447         * modules/crypto/gc (License): Likewise.
26448         * modules/crypto/gc-arcfour (License): Likewise.
26449         * modules/crypto/gc-arctwo (License): Likewise.
26450         * modules/crypto/gc-des (License): Likewise.
26451         * modules/crypto/gc-hmac-md5 (License): Likewise.
26452         * modules/crypto/gc-hmac-sha1 (License): Likewise.
26453         * modules/crypto/gc-md2 (License): Likewise.
26454         * modules/crypto/gc-md4 (License): Likewise.
26455         * modules/crypto/gc-md5 (License): Likewise.
26456         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
26457         * modules/crypto/gc-random (License): Likewise.
26458         * modules/crypto/gc-rijndael (License): Likewise.
26459         * modules/crypto/gc-sha1 (License): Likewise.
26460         * modules/crypto/md2 (License): Likewise.
26461         * modules/crypto/md4 (License): Likewise.
26462
26463 2007-07-30  Jim Meyering  <jim@meyering.net>
26464
26465         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
26466         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
26467         it has valid stat data.  This bug would cause du not to count the
26468         sizes of inaccessible directories.
26469         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
26470         in <http://bugzilla.redhat.com/250077>.
26471
26472 2007-07-25  Peter O'Gorman  <peter@pogma.com>
26473             Bruno Haible  <bruno@clisp.org>
26474
26475         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
26476         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
26477         #include_next, gives a diagnostic about it, but reports no error in
26478         the exit code.
26479         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
26480
26481 2007-07-24  Ben Pfaff  <blp@gnu.org>
26482
26483         Improve name: "count-one-bits" is better than "popcount".
26484         * MODULES.html.sh: Update name.
26485         * lib/popcount.h: Renamed lib/count-one-bits.h.
26486         (popcount): Renamed count_one_bits.
26487         (popcountl): Renamed count_one_bits_l.
26488         (popcountll): Renamed count_one_bits_ll.
26489         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
26490         * modules/popcount: Renamed module/count-one-bits.
26491         * modules/popcount-tests: Renamed module/count-one-bits-tests.
26492         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
26493
26494 2007-07-23  Ben Pfaff  <blp@gnu.org>
26495
26496         * lib/popcount.h (popcount32): Reduce size of constants, to allow
26497         better code generation, and add U to large constants to avoid
26498         warnings, in non-GCC case.
26499         Suggested by Bruno Haible.
26500
26501 2007-07-23  Ben Pfaff  <blp@gnu.org>
26502
26503         * lib/popcount.h: Use verify_true instead of if...abort.
26504         * modules/popcount: Depend on verify module.
26505         Suggested by Jim Meyering.
26506
26507 2007-07-23  Bruno Haible  <bruno@clisp.org>
26508
26509         * gnulib-tool (func_import): Create a .cvsignore file also when the
26510         directory is not yet in CVS but the toplevel directory is. When
26511         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
26512         Reported by Karl Berry.
26513
26514 2007-07-22  Ben Pfaff  <blp@gnu.org>
26515
26516         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
26517         case.
26518         Suggested by Eric Blake.
26519
26520 2007-07-22  Ben Pfaff  <blp@gnu.org>
26521
26522         New module: popcount.
26523         * MODULES.html.sh: Add popcount.
26524         * modules/popcount: New file.
26525         * modules/popcount-tests: New file.
26526         * tests/test-popcount.c: New file.
26527         * lib/popcount.h: New file.
26528         * m4/popcount.m4: New file.
26529
26530 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
26531
26532         * build-aux/announce-gen: Update to GPLv3.
26533
26534         * build-aux/config.guess: Update from config.
26535
26536 2007-07-21  Bruno Haible  <bruno@clisp.org>
26537
26538         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
26539         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
26540
26541 2007-07-20  Jim Meyering  <jim@meyering.net>
26542
26543         * check-module: Diagnose a self-dependency.
26544
26545 2007-07-19  Bruno Haible  <bruno@clisp.org>
26546
26547         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
26548         empty.
26549         Reported by Eric Blake.
26550
26551 2007-07-18  Bruno Haible  <bruno@clisp.org>
26552
26553         * gnulib-tool: New options --po-base, --po-domain.
26554         (func_usage): Document them.
26555         (pobase, po_domain): New variables.
26556         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
26557         DEFAULT_TEXT_DOMAIN.
26558         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
26559         (func_import): Consider pobase and po_domain. Create a po/ directory.
26560         (func_create_testdir): Set pobase and po_domain to empty.
26561         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
26562         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
26563
26564 2007-07-18  Bruno Haible  <bruno@clisp.org>
26565
26566         * gnulib-tool (func_get_automake_snippet): Synthesize also an
26567         EXTRA_DIST augmentation for files in build-aux/.
26568
26569 2007-07-16  Bruno Haible  <bruno@clisp.org>
26570
26571         * modules/lseek (License): Use the synonymous term "LGPLv2+".
26572         * modules/getdelim (License): Likewise.
26573
26574 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26575
26576         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
26577         * modules/d-type (License): Likewise.
26578         * modules/extensions (License): Likewise.
26579         * modules/fnmatch (License): Likewise.
26580         * modules/fseeko (License): Likewise.
26581         * modules/getaddrinfo (License): Likewise.
26582         * modules/getline (License): Likewise.
26583         * modules/getlogin_r (License): Likewise.
26584         * modules/getpass (License): Likewise.
26585         * modules/gettimeofday (License): Likewise.
26586         * modules/glob (License): Likewise.
26587         * modules/inet_ntop (License): Likewise.
26588         * modules/malloc (License): Likewise.
26589         * modules/malloca (License): Likewise.
26590         * modules/memmem (License): Likewise.
26591         * modules/mempcpy (License): Likewise.
26592         * modules/memset (License): Likewise.
26593         * modules/minmax (License): Likewise.
26594         * modules/mktime (License): Likewise.
26595         * modules/netinet_in (License): Likewise.
26596         * modules/pathmax (License): Likewise.
26597         * modules/poll (License): Likewise.
26598         * modules/regex (License): Likewise.
26599         * modules/snprintf (License): Likewise.
26600         * modules/stdbool (License): Likewise.
26601         * modules/stdint (License): Likewise.
26602         * modules/stdio (License): Likewise.
26603         * modules/strcase (License): Likewise.
26604         * modules/strcasestr (License): Likewise.
26605         * modules/strdup (License): Likewise.
26606         * modules/string (License): Likewise.
26607         * modules/strndup (License): Likewise.
26608         * modules/strnlen (License): Likewise.
26609         * modules/strpbrk (License): Likewise.
26610         * modules/strptime (License): Likewise.
26611         * modules/strsep (License): Likewise.
26612         * modules/sys_select (License): Likewise.
26613         * modules/sys_socket (License): Likewise.
26614         * modules/sys_stat (License): Likewise.
26615         * modules/sys_time (License): Likewise.
26616         * modules/time (License): Likewise.
26617         * modules/time_r (License): Likewise.
26618         * modules/timegm (License): Likewise.
26619         * modules/unistd (License): Likewise.
26620         * modules/vsnprintf (License): Likewise.
26621         * modules/wctype (License): Likewise.
26622
26623 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26624
26625         * modules/argz (License): LGPLv2+.
26626
26627 2007-07-15  Karl Berry  <karl@gnu.org>
26628
26629         * doc/gnulib.texi: revise node structure per new fdl.texi.
26630
26631 2007-07-14  Bruno Haible  <bruno@clisp.org>
26632
26633         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
26634         the output file.
26635         * lib/uniname/uninames.h: Regenerated.
26636
26637 2007-07-14  Karl Berry  <karl@gnu.org>
26638
26639         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
26640         omitting sectioning and index commands.
26641
26642 2007-07-13  Bruno Haible  <bruno@clisp.org>
26643
26644         New gnulib-tool option --more-symlinks.
26645         * gnulib-tool (func_usage): Document --more-symlinks.
26646         (do_copyrights): New variable.
26647         Recognize option --more-symlinks.
26648         (func_import): Don't add a copyright notice transform to
26649         sed_transform_lib_file if do_copyrights is empty.
26650
26651 2007-07-13  Bruno Haible  <bruno@clisp.org>
26652
26653         * lib/vasnprintf.c (decimal_point_char): Define also if
26654         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
26655         && !NEED_PRINTF_DIRECTIVE_A.
26656         Reported by Clemens Koller <clemens.koller@anagramm.de> via
26657         Gary V. Vaughan <gary@gnu.org>.
26658
26659 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
26660
26661         * lib/inttypes_.h: Undo previous change, since it was fixed
26662         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
26663
26664 2007-07-13  Bruno Haible  <bruno@clisp.org>
26665
26666         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
26667         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
26668
26669 2007-07-13  Jim Meyering  <jim@meyering.net>
26670
26671         df: Don't fail for Tru64's "file-on-file mount".
26672         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
26673         so we fall through and use statfs instead.  Details here:
26674         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
26675         Reported by Albert Chin.
26676
26677 2007-07-13  Bruno Haible  <bruno@clisp.org>
26678
26679         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
26680         * modules/configmake (License): Likewise.
26681         * modules/gettext (License): Likewise.
26682         * modules/gettext-h (License): Likewise.
26683         * modules/include_next (License): Likewise.
26684         * modules/link-warning (License): Likewise.
26685         * modules/localcharset (License): Likewise.
26686         * modules/localename (License): Likewise.
26687         * modules/lock (License): Likewise.
26688         * modules/relocatable-lib-lgpl (License): Likewise.
26689         * modules/size_max (License): Likewise.
26690         * modules/vasnprintf (License): Likewise.
26691         * modules/wchar (License): Likewise.
26692         * modules/xsize (License): Likewise.
26693
26694 2007-07-13  Bruno Haible  <bruno@clisp.org>
26695
26696         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
26697         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
26698
26699 2007-07-12  Bruno Haible  <bruno@clisp.org>
26700
26701         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
26702         in the modules files.
26703
26704 2007-07-11  Karl Berry  <karl@gnu.org>
26705
26706         * MODULES.html.sh (func_module): use
26707          sed -e '\|^'"${includefile}"'$|d'
26708          instead of /.../d, to avoid errors on $includefile's containing /.
26709
26710 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26711
26712         * gnulib-tool (func_import): Avoid duplication of --avoid
26713         statements
26714         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
26715         names to `_' in variable names.
26716
26717 2007-07-10  Eric Blake  <ebb9@byu.net>
26718
26719         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
26720         * NEWS: Document this change.
26721
26722 2007-07-08  Bruno Haible  <bruno@clisp.org>
26723
26724         Update to Unicode 5.0.
26725         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
26726         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
26727         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
26728         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
26729         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
26730         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
26731         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
26732         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
26733         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
26734         U+10A3F, U+1D242..U+1D244.
26735         (nonspacing_table_ind): Update.
26736         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
26737         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
26738
26739 2007-07-08  Bruno Haible  <bruno@clisp.org>
26740
26741         Update to Unicode 5.0.
26742         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
26743         code transform. Extend the name index field of unicode_name_to_code and
26744         unicode_code_to_name from 16 to 24 bits.
26745         * lib/uniname/uniname.c (unicode_character_name,
26746         unicode_name_character): Add the range 0x12xxx to the code transform.
26747         * lib/uniname/uninames.h: Regenerated.
26748         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
26749
26750 2007-07-07  Bruno Haible  <bruno@clisp.org>
26751
26752         * modules/wcwidth-tests: New file.
26753         * tests/test-wcwidth.c: New file.
26754
26755         Work around MacOS X wcwidth() bug.
26756         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
26757         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
26758         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
26759         original wcwidth in non-UTF-8 locales.
26760         * modules/wcwidth (Depends-on): Add localcharset, streq,
26761         uniwidth/width.
26762         * doc/functions/wcwidth.texi: Update.
26763
26764 2007-07-07  Bruno Haible  <bruno@clisp.org>
26765
26766         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
26767         (wcwidth): New declaration.
26768         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
26769         macros.
26770         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
26771         here. Prepare for creating <wchar.h> unconditionally.
26772         * modules/wchar (Depends-on): Add link-warning.
26773         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
26774         REPLACE_WCWIDTH, and GL_LINK_WARNING.
26775         * lib/wcwidth.h: Remove file.
26776         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
26777         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
26778         * modules/wcwidth (Files): Remove lib/wcwidth.h.
26779         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
26780         (Include): Replace wcwidth.h with <wchar.h>.
26781         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
26782         * lib/mbchar.h: Don't include wcwidth.h.
26783         * lib/mbswidth.c: Likewise.
26784         * NEWS: Mention the change.
26785
26786 2007-07-07  Bruno Haible  <bruno@clisp.org>
26787
26788         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
26789         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
26790         definition with an external declaration.
26791         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
26792         defined as a function. Remove AC_C_INLINE requirement.
26793         * modules/wcwidth (Files): Add lib/wcwidth.c.
26794         (Makefile.am): Remove redundant statement.
26795
26796 2007-07-07  Bruno Haible  <bruno@clisp.org>
26797
26798         * MODULES.html.sh (Unicode string functions): Add the new modules.
26799
26800         * tests/uniwidth/test-u32-strwidth.c: New file.
26801         * modules/uniwidth/u32-strwidth-tests: New file.
26802
26803         * lib/uniwidth/u32-strwidth.c: New file.
26804         * modules/uniwidth/u32-strwidth: New file.
26805
26806         * tests/uniwidth/test-u16-strwidth.c: New file.
26807         * modules/uniwidth/u16-strwidth-tests: New file.
26808
26809         * lib/uniwidth/u16-strwidth.c: New file.
26810         * modules/uniwidth/u16-strwidth: New file.
26811
26812         * tests/uniwidth/test-u8-strwidth.c: New file.
26813         * modules/uniwidth/u8-strwidth-tests: New file.
26814
26815         * lib/uniwidth/u8-strwidth.c: New file.
26816         * modules/uniwidth/u8-strwidth: New file.
26817
26818         * tests/uniwidth/test-u32-width.c: New file.
26819         * modules/uniwidth/u32-width-tests: New file.
26820
26821         * lib/uniwidth/u32-width.c: New file.
26822         * modules/uniwidth/u32-width: New file.
26823
26824         * tests/uniwidth/test-u16-width.c: New file.
26825         * modules/uniwidth/u16-width-tests: New file.
26826
26827         * lib/uniwidth/u16-width.c: New file.
26828         * modules/uniwidth/u16-width: New file.
26829
26830         * tests/uniwidth/test-u8-width.c: New file.
26831         * modules/uniwidth/u8-width-tests: New file.
26832
26833         * lib/uniwidth/u8-width.c: New file.
26834         * modules/uniwidth/u8-width: New file.
26835
26836         * tests/uniwidth/test-uc_width.c: New file.
26837         * modules/uniwidth/width-tests: New file.
26838
26839         * lib/uniwidth/width.c: New file, from GNU libiconv.
26840         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
26841         * modules/uniwidth/width: New file.
26842
26843         * lib/uniwidth.h: New file, from GNU libiconv.
26844         * modules/uniwidth/base: New file.
26845
26846 2007-07-07  Bruno Haible  <bruno@clisp.org>
26847
26848         * lib/uniname.h: New file, from GNU gettext.
26849         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
26850         * lib/uniname/uninames.h: New file, from GNU gettext.
26851         * lib/uniname/uniname.c: New file, from GNU gettext.
26852         * tests/uniname/test-uninames.sh: New file.
26853         * tests/uniname/test-uninames.c: New file, from GNU gettext.
26854         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
26855         * modules/uniname/base: New file.
26856         * modules/uniname/uniname: New file.
26857         * modules/uniname/uniname-tests: New file.
26858         * MODULES.html.sh (Unicode string functions): Add the new modules.
26859
26860 2007-07-06  Bruno Haible  <bruno@clisp.org>
26861
26862         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
26863
26864 2007-07-06  Bruno Haible  <bruno@clisp.org>
26865
26866         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
26867         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
26868         includes <cygwin/sys_time.h> which includes <sys/select.h> which
26869         include <sys/time.h>.
26870         Reported by Eric Blake.
26871
26872 2007-07-06  Eric Blake  <ebb9@byu.net>
26873
26874         Fix testing canonicalize on cygwin.
26875         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26876         Revert patch from 2007-06-19.
26877         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
26878         canonicalize module is also in use.
26879         * tests/test-canonicalize.c: New file.
26880         * tests/test-canonicalize.sh: Likewise.
26881         * modules/canonicalize-tests: Likewise.
26882
26883 2007-07-06  Jim Meyering  <jim@meyering.net>
26884
26885         * lib/getugroups.c (getugroups): Detect getgrent failure.
26886         Adjust comment to reflect reality: this function may return -1.
26887
26888 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
26889
26890         * build-aux/bootstrap (TP_URL,get_translations): Update to use
26891         the new TP address.
26892         (usage): Fix typo
26893         (gnulib_mk): New variable.
26894
26895 2007-07-05  Jim Meyering  <jim@meyering.net>
26896
26897         Don't let endgrent clobber errno, no matter how improbable.
26898         * lib/getugroups.c (getugroups): Save and restore errno around
26899         endgrent call.
26900
26901         Close the group DB even when failing with 2^31 or more members.
26902         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
26903
26904 2007-07-04  Jim Meyering  <jim@meyering.net>
26905
26906         * lib/getugroups.h: New file.
26907         * lib/getugroups.c: Include "getugroups.h".
26908         Remove uses of "register" keyword.
26909         Move local variable, "cp", down into scope where used.
26910         Give "username" parameter the "const" attribute.
26911         * modules/getugroups (Files): Add lib/getugroups.h
26912
26913 2007-07-04  Karl Berry  <karl@gnu.org>
26914
26915         * MODULES.html.sh (func_all_modules): Complete rename of
26916         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
26917
26918 2007-07-02  Bruno Haible  <bruno@clisp.org>
26919
26920         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
26921         mode, when inttypes.h comes from gnulib.
26922         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26923
26924 2007-07-02  Simon Josefsson  <simon@josefsson.org>
26925
26926         * NEWS: Mention lgpl module name change.
26927
26928         * modules/lgpl-2.1: Renamed from lgpl.
26929
26930         * NEWS: Mention gpl module name change.
26931
26932         * modules/gpl-3.0: New file, based on gpl-2.0.
26933
26934         * modules/gpl-2.0: Renamed from gpl.
26935
26936         * modules/gpl: Fix filename, doc/gpl.texi is now found at
26937         doc/gpl-2.0.texi.
26938
26939 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
26940
26941         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
26942         #define __STDC_LIMIT_MACROS temporarily while including
26943         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
26944         Problem reported by Joel E. Denny in
26945         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
26946
26947 2007-07-01  Bruno Haible  <bruno@clisp.org>
26948
26949         * lib/unistdio.h: New file.
26950         * lib/unistdio/u-asnprintf.h: New file.
26951         * lib/unistdio/u-asprintf.h: New file.
26952         * lib/unistdio/u-printf-args.c: New file.
26953         * lib/unistdio/u-printf-args.h: New file.
26954         * lib/unistdio/u-printf-parse.h: New file.
26955         * lib/unistdio/u-snprintf.h: New file.
26956         * lib/unistdio/u-sprintf.h: New file.
26957         * lib/unistdio/u-vasprintf.h: New file.
26958         * lib/unistdio/u-vsnprintf.h: New file.
26959         * lib/unistdio/u-vsprintf.h: New file.
26960         * lib/unistdio/ulc-asnprintf.c: New file.
26961         * lib/unistdio/ulc-asprintf.c: New file.
26962         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
26963         * lib/unistdio/ulc-printf-parse.c: New file.
26964         * lib/unistdio/ulc-snprintf.c: New file.
26965         * lib/unistdio/ulc-sprintf.c: New file.
26966         * lib/unistdio/ulc-vasnprintf.c: New file.
26967         * lib/unistdio/ulc-vasprintf.c: New file.
26968         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
26969         * lib/unistdio/ulc-vsnprintf.c: New file.
26970         * lib/unistdio/ulc-vsprintf.c: New file.
26971         * lib/unistdio/u8-asnprintf.c: New file.
26972         * lib/unistdio/u8-asprintf.c: New file.
26973         * lib/unistdio/u8-printf-parse.c: New file.
26974         * lib/unistdio/u8-snprintf.c: New file.
26975         * lib/unistdio/u8-sprintf.c: New file.
26976         * lib/unistdio/u8-vasnprintf.c: New file.
26977         * lib/unistdio/u8-vasprintf.c: New file.
26978         * lib/unistdio/u8-vsnprintf.c: New file.
26979         * lib/unistdio/u8-vsprintf.c: New file.
26980         * lib/unistdio/u8-u8-asnprintf.c: New file.
26981         * lib/unistdio/u8-u8-asprintf.c: New file.
26982         * lib/unistdio/u8-u8-snprintf.c: New file.
26983         * lib/unistdio/u8-u8-sprintf.c: New file.
26984         * lib/unistdio/u8-u8-vasnprintf.c: New file.
26985         * lib/unistdio/u8-u8-vasprintf.c: New file.
26986         * lib/unistdio/u8-u8-vsnprintf.c: New file.
26987         * lib/unistdio/u8-u8-vsprintf.c: New file.
26988         * lib/unistdio/u16-asnprintf.c: New file.
26989         * lib/unistdio/u16-asprintf.c: New file.
26990         * lib/unistdio/u16-printf-parse.c: New file.
26991         * lib/unistdio/u16-snprintf.c: New file.
26992         * lib/unistdio/u16-sprintf.c: New file.
26993         * lib/unistdio/u16-vasnprintf.c: New file.
26994         * lib/unistdio/u16-vasprintf.c: New file.
26995         * lib/unistdio/u16-vsnprintf.c: New file.
26996         * lib/unistdio/u16-vsprintf.c: New file.
26997         * lib/unistdio/u16-u16-asnprintf.c: New file.
26998         * lib/unistdio/u16-u16-asprintf.c: New file.
26999         * lib/unistdio/u16-u16-snprintf.c: New file.
27000         * lib/unistdio/u16-u16-sprintf.c: New file.
27001         * lib/unistdio/u16-u16-vasnprintf.c: New file.
27002         * lib/unistdio/u16-u16-vasprintf.c: New file.
27003         * lib/unistdio/u16-u16-vsnprintf.c: New file.
27004         * lib/unistdio/u16-u16-vsprintf.c: New file.
27005         * lib/unistdio/u32-asnprintf.c: New file.
27006         * lib/unistdio/u32-asprintf.c: New file.
27007         * lib/unistdio/u32-printf-parse.c: New file.
27008         * lib/unistdio/u32-snprintf.c: New file.
27009         * lib/unistdio/u32-sprintf.c: New file.
27010         * lib/unistdio/u32-vasnprintf.c: New file.
27011         * lib/unistdio/u32-vasprintf.c: New file.
27012         * lib/unistdio/u32-vsnprintf.c: New file.
27013         * lib/unistdio/u32-vsprintf.c: New file.
27014         * lib/unistdio/u32-u32-asnprintf.c: New file.
27015         * lib/unistdio/u32-u32-asprintf.c: New file.
27016         * lib/unistdio/u32-u32-snprintf.c: New file.
27017         * lib/unistdio/u32-u32-sprintf.c: New file.
27018         * lib/unistdio/u32-u32-vasnprintf.c: New file.
27019         * lib/unistdio/u32-u32-vasprintf.c: New file.
27020         * lib/unistdio/u32-u32-vsnprintf.c: New file.
27021         * lib/unistdio/u32-u32-vsprintf.c: New file.
27022         * tests/unistdio/test-ulc-asnprintf1.c: New file.
27023         * tests/unistdio/test-ulc-asnprintf1.h: New file.
27024         * tests/unistdio/test-ulc-printf1.h: New file.
27025         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
27026         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
27027         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
27028         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
27029         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
27030         * tests/unistdio/test-ulc-vasprintf1.c: New file.
27031         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
27032         * tests/unistdio/test-ulc-vsprintf1.c: New file.
27033         * tests/unistdio/test-u8-asnprintf1.c: New file.
27034         * tests/unistdio/test-u8-asnprintf1.h: New file.
27035         * tests/unistdio/test-u8-printf1.h: New file.
27036         * tests/unistdio/test-u8-vasnprintf1.c: New file.
27037         * tests/unistdio/test-u8-vasnprintf2.c: New file.
27038         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
27039         * tests/unistdio/test-u8-vasnprintf3.c: New file.
27040         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
27041         * tests/unistdio/test-u8-vasprintf1.c: New file.
27042         * tests/unistdio/test-u8-vsnprintf1.c: New file.
27043         * tests/unistdio/test-u8-vsprintf1.c: New file.
27044         * tests/unistdio/test-u16-asnprintf1.c: New file.
27045         * tests/unistdio/test-u16-asnprintf1.h: New file.
27046         * tests/unistdio/test-u16-printf1.h: New file.
27047         * tests/unistdio/test-u16-vasnprintf1.c: New file.
27048         * tests/unistdio/test-u16-vasnprintf2.c: New file.
27049         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
27050         * tests/unistdio/test-u16-vasnprintf3.c: New file.
27051         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
27052         * tests/unistdio/test-u16-vasprintf1.c: New file.
27053         * tests/unistdio/test-u16-vsnprintf1.c: New file.
27054         * tests/unistdio/test-u16-vsprintf1.c: New file.
27055         * tests/unistdio/test-u32-asnprintf1.c: New file.
27056         * tests/unistdio/test-u32-asnprintf1.h: New file.
27057         * tests/unistdio/test-u32-printf1.h: New file.
27058         * tests/unistdio/test-u32-vasnprintf1.c: New file.
27059         * tests/unistdio/test-u32-vasnprintf2.c: New file.
27060         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
27061         * tests/unistdio/test-u32-vasnprintf3.c: New file.
27062         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
27063         * tests/unistdio/test-u32-vasprintf1.c: New file.
27064         * tests/unistdio/test-u32-vsnprintf1.c: New file.
27065         * tests/unistdio/test-u32-vsprintf1.c: New file.
27066         * modules/unistdio/base: New file.
27067         * modules/unistdio/u-printf-args: New file.
27068         * modules/unistdio/ulc-asnprintf: New file.
27069         * modules/unistdio/ulc-asprintf: New file.
27070         * modules/unistdio/ulc-fprintf: New file.
27071         * modules/unistdio/ulc-printf-parse: New file.
27072         * modules/unistdio/ulc-snprintf: New file.
27073         * modules/unistdio/ulc-sprintf: New file.
27074         * modules/unistdio/ulc-vasnprintf: New file.
27075         * modules/unistdio/ulc-vasprintf: New file.
27076         * modules/unistdio/ulc-vfprintf: New file.
27077         * modules/unistdio/ulc-vsnprintf: New file.
27078         * modules/unistdio/ulc-vsprintf: New file.
27079         * modules/unistdio/u8-asnprintf: New file.
27080         * modules/unistdio/u8-asprintf: New file.
27081         * modules/unistdio/u8-printf-parse: New file.
27082         * modules/unistdio/u8-snprintf: New file.
27083         * modules/unistdio/u8-sprintf: New file.
27084         * modules/unistdio/u8-vasnprintf: New file.
27085         * modules/unistdio/u8-vasprintf: New file.
27086         * modules/unistdio/u8-vsnprintf: New file.
27087         * modules/unistdio/u8-vsprintf: New file.
27088         * modules/unistdio/u8-u8-asnprintf: New file.
27089         * modules/unistdio/u8-u8-asprintf: New file.
27090         * modules/unistdio/u8-u8-snprintf: New file.
27091         * modules/unistdio/u8-u8-sprintf: New file.
27092         * modules/unistdio/u8-u8-vasnprintf: New file.
27093         * modules/unistdio/u8-u8-vasprintf: New file.
27094         * modules/unistdio/u8-u8-vsnprintf: New file.
27095         * modules/unistdio/u8-u8-vsprintf: New file.
27096         * modules/unistdio/u16-asnprintf: New file.
27097         * modules/unistdio/u16-asprintf: New file.
27098         * modules/unistdio/u16-printf-parse: New file.
27099         * modules/unistdio/u16-snprintf: New file.
27100         * modules/unistdio/u16-sprintf: New file.
27101         * modules/unistdio/u16-vasnprintf: New file.
27102         * modules/unistdio/u16-vasprintf: New file.
27103         * modules/unistdio/u16-vsnprintf: New file.
27104         * modules/unistdio/u16-vsprintf: New file.
27105         * modules/unistdio/u16-u16-asnprintf: New file.
27106         * modules/unistdio/u16-u16-asprintf: New file.
27107         * modules/unistdio/u16-u16-snprintf: New file.
27108         * modules/unistdio/u16-u16-sprintf: New file.
27109         * modules/unistdio/u16-u16-vasnprintf: New file.
27110         * modules/unistdio/u16-u16-vasprintf: New file.
27111         * modules/unistdio/u16-u16-vsnprintf: New file.
27112         * modules/unistdio/u16-u16-vsprintf: New file.
27113         * modules/unistdio/u32-asnprintf: New file.
27114         * modules/unistdio/u32-asprintf: New file.
27115         * modules/unistdio/u32-printf-parse: New file.
27116         * modules/unistdio/u32-snprintf: New file.
27117         * modules/unistdio/u32-sprintf: New file.
27118         * modules/unistdio/u32-vasnprintf: New file.
27119         * modules/unistdio/u32-vasprintf: New file.
27120         * modules/unistdio/u32-vsnprintf: New file.
27121         * modules/unistdio/u32-vsprintf: New file.
27122         * modules/unistdio/u32-u32-asnprintf: New file.
27123         * modules/unistdio/u32-u32-asprintf: New file.
27124         * modules/unistdio/u32-u32-snprintf: New file.
27125         * modules/unistdio/u32-u32-sprintf: New file.
27126         * modules/unistdio/u32-u32-vasnprintf: New file.
27127         * modules/unistdio/u32-u32-vasprintf: New file.
27128         * modules/unistdio/u32-u32-vsnprintf: New file.
27129         * modules/unistdio/u32-u32-vsprintf: New file.
27130         * modules/unistdio/ulc-asnprintf-tests: New file.
27131         * modules/unistdio/ulc-vasnprintf-tests: New file.
27132         * modules/unistdio/ulc-vasprintf-tests: New file.
27133         * modules/unistdio/ulc-vsnprintf-tests: New file.
27134         * modules/unistdio/ulc-vsprintf-tests: New file.
27135         * modules/unistdio/u8-asnprintf-tests: New file.
27136         * modules/unistdio/u8-vasnprintf-tests: New file.
27137         * modules/unistdio/u8-vasprintf-tests: New file.
27138         * modules/unistdio/u8-vsnprintf-tests: New file.
27139         * modules/unistdio/u8-vsprintf-tests: New file.
27140         * modules/unistdio/u16-asnprintf-tests: New file.
27141         * modules/unistdio/u16-vasnprintf-tests: New file.
27142         * modules/unistdio/u16-vasprintf-tests: New file.
27143         * modules/unistdio/u16-vsnprintf-tests: New file.
27144         * modules/unistdio/u16-vsprintf-tests: New file.
27145         * modules/unistdio/u32-asnprintf-tests: New file.
27146         * modules/unistdio/u32-vasnprintf-tests: New file.
27147         * modules/unistdio/u32-vasprintf-tests: New file.
27148         * modules/unistdio/u32-vsnprintf-tests: New file.
27149         * modules/unistdio/u32-vsprintf-tests: New file.
27150         * MODULES.html.sh (Unicode string functions): Add the new modules.
27151
27152 2007-07-01  Bruno Haible  <bruno@clisp.org>
27153
27154         * lib/sprintf.c (sprintf): Limit the available length estimation,
27155         to avoid address wraparound.
27156         * lib/vsprintf.c (vsprintf): Likewise.
27157         * modules/sprintf-posix (Dependencies): Add stdint.
27158         * modules/vsprintf-posix (Dependencies): Likewise.
27159
27160 2007-07-01  Bruno Haible  <bruno@clisp.org>
27161
27162         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
27163         Windows PATH as well. Conservative double-quoting. Comments.
27164
27165 2007-07-01  Bruno Haible  <bruno@clisp.org>
27166             Eric Blake  <ebb9@byu.net>
27167             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27168
27169         * gnulib-tool (self_abspathname): Fix algorithm to cope with
27170         empty components in $PATH, denoting '.'.
27171
27172 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27173
27174         * gnulib-tool: Fix indentation.
27175         (func_create_megatestdir): Likewise.
27176         Report by Bruno Haible.
27177
27178 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27179
27180         Sync from Automake.
27181         * build-aux/gnupload: Fix shell portability issues with for loops.
27182         Report by Karl Berry.
27183
27184 2007-06-29  Simon Josefsson  <simon@josefsson.org>
27185
27186         * build-aux/maint.mk (POURL): Use translationproject.org.
27187
27188 2007-06-27  Simon Josefsson  <simon@josefsson.org>
27189             Bruno Haible  <bruno@clisp.org>
27190
27191         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
27192         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
27193         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
27194         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
27195         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
27196
27197 2007-06-27  Bruno Haible  <bruno@clisp.org>
27198
27199         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
27200         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
27201
27202 2007-06-26  Karl Berry  <karl@gnu.org>
27203
27204         * MODULES.html.sh: remove xreadlink-with-size.
27205
27206 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
27207
27208         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
27209         method that I hope also handles the double-include problem noted
27210         by Bruno Haible in
27211         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
27212
27213 2007-06-23  Bruno Haible  <bruno@clisp.org>
27214
27215         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27216         Don't let the 'mostlyclean' target fail if the last subdirectory could
27217         not be removed.
27218         Reported by Karl Berry.
27219
27220 2007-06-23  Bruno Haible  <bruno@clisp.org>
27221
27222         * gnulib-tool (echo): Add a speedier workaround for ksh.
27223         * tests/test-echo.sh: Likewise.
27224
27225 2007-06-23  Bruno Haible  <bruno@clisp.org>
27226
27227         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
27228         * tests/test-echo.sh: Likewise.
27229
27230 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27231
27232         * gnulib-tool (IFS): Initialize early, so we don't set it to
27233         empty later.
27234         (self_abspathname): Rewrite algorithm to set it, reindent.
27235         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
27236         (func_create_megatestdir): Merge some sed scripts.
27237
27238 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
27239
27240         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
27241         exposed by Sun Studio 11 cc on Solaris 8.
27242
27243 2007-06-22  Bruno Haible  <bruno@clisp.org>
27244
27245         * gnulib-tool (echo): Ensure the echo primitive does not interpret
27246         backslashes.
27247         * tests/test-echo.sh: New file.
27248
27249 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27250
27251         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
27252         simplify `sed_replace_build_aux' scripts, they are portable but
27253         echoing them with `echo' is not.
27254         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
27255
27256 2007-06-21  Karl Berry  <karl@gnu.org>
27257
27258         * config/srclist.txt: guess we can't handle the licenses via
27259         srclist at the moment.
27260
27261 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
27262
27263         * MODULES.html.sh: Add include_next.
27264         * modules/include_next: New file.
27265
27266 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
27267
27268         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
27269         INCLUDE_NEXT.
27270         (gl_CHECK_NEXT_HEADERS): New macro.
27271         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
27272         the obsolescent gl_ABSOLUTE_HEADER.
27273         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
27274         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
27275         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
27276         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
27277         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
27278         * m4/math_h.m4 (gl_MATH_H): Likewise.
27279         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
27280         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
27281         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
27282         * m4/stdint.m4 (gl_STDINT_H): Likewise.
27283         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
27284         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
27285         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
27286         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
27287         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
27288         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
27289         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
27290         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
27291         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
27292         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
27293         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
27294         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
27295         * m4/inttypes.m4 (gl_INTTYPES_H): Define
27296         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
27297         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
27298         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
27299         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
27300         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
27301         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
27302         * lib/float_.h: Likewise.
27303         * lib/inttypes_.h: Likewise.
27304         * lib/math_.h: Likewise.
27305         * lib/search_.h: Likewise.
27306         * lib/signal_.h: Likewise.
27307         * lib/stdint_.h: Likewise.
27308         * lib/stdio_.h: Likewise.
27309         * lib/stdlib_.h: Likewise.
27310         * lib/string_.h: Likewise.
27311         * lib/sys_stat_.h: Likewise.
27312         * lib/sys_time_.h: Likewise.
27313         * lib/time_.h: Likewise.
27314         * lib/unistd_.h: Likewise.
27315         * lib/wchar_.h: Likewise.
27316         * lib/wctype_.h: Likewise.
27317         * lib/dirent_.h: Likewise.
27318         * lib/iconv_.h: Likewise.
27319         * lib/locale_.h: Likewise.
27320         * lib/netinet_in_.h: Likewise.
27321         * lib/sys_select_.h: Likewise.
27322         * lib/sys_socket_.h: Likewise.
27323         * lib/sysexits_.h: Likewise.
27324         * modules/fcntl (Depends-on): Depend on include_next, not
27325         absolute_header.
27326         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
27327         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
27328         * modules/fchdir: Likewise.
27329         * modules/float: Likewise.
27330         * modules/iconv_open: Likewise.
27331         * modules/inttypes: Likewise.
27332         * modules/locale: Likewise.
27333         * modules/math: Likewise.
27334         * modules/netinet_in: Likewise.
27335         * modules/search: Likewise.
27336         * modules/signal: Likewise.
27337         * modules/stdint: Likewise.
27338         * modules/stdio: Likewise.
27339         * modules/stdlib: Likewise.
27340         * modules/string: Likewise.
27341         * modules/sys_select: Likewise.
27342         * modules/sys_socket: Likewise.
27343         * modules/sys_stat: Likewise.
27344         * modules/sys_time: Likewise.
27345         * modules/sysexits: Likewise.
27346         * modules/time: Likewise.
27347         * modules/unistd: Likewise.
27348         * modules/wchar: Likewise.
27349         * modules/wctype: Likewise.
27350         * modules/sys_stat: Change maintainer to "all".
27351         * modules/unistd: Likewise.
27352
27353 2007-06-20  Karl Berry  <karl@gnu.org>
27354
27355         * config/srclist.txt: track www changes in license files.
27356
27357 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
27358
27359         * build-aux/bootstrap: Remove stray dot.
27360         Make sure build_aux settings are honored when linking
27361         gnulib_extra_files.
27362
27363 2007-06-19  Eric Blake  <ebb9@byu.net>
27364
27365         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
27366         Allow compilation on cygwin.
27367
27368 2007-06-19  Jim Meyering  <jim@meyering.net>
27369
27370         xreadlink-with-size: Remove module.  No longer used.
27371         Ex-callers now use xreadlink or mreadlink-with-size.
27372         * modules/xreadlink-with-size: Remove module.
27373         * lib/xreadlink-with-size.c: Remove file.
27374         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
27375         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
27376         just before the function definition *is* accurate.
27377
27378         Eliminate one way canonicalize_filename_mode could exit.
27379         * lib/canonicalize.c (canonicalize_filename_mode):
27380         Use mreadlink_with_size, not xreadlink_with_size.
27381
27382 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
27383
27384         Detect porting problems to FreeBSD/arm, which has time_t wider than
27385         long int.  Original problem reported for GNU diff by Xin Li in
27386         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
27387         * modules/getdate (Depends-on): Add intprops, verify.
27388         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
27389         is an integer type no wider than long int.
27390
27391 2007-06-18  Jim Meyering  <jim@meyering.net>
27392
27393         New module: mreadlink-with-size.
27394         * MODULES.html.sh: Add mreadlink-with-size.
27395         * modules/mreadlink-with-size: New module
27396         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
27397         not xreadlink-with-size.
27398         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
27399
27400 2007-06-16  Bruno Haible  <bruno@clisp.org>
27401
27402         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
27403         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
27404         Reported by Gary V. Vaughan <gary@gnu.org>.
27405
27406 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
27407
27408         Revamp lchown so that it lives in unistd.h where it belongs.
27409         * lib/lchown.h: Remove.
27410         * lib/dirchownmod.c: Don't include lib/lchown.h.
27411         * lib/fchownat.c: Likewise.
27412         * lib/openat.c: Likewise.
27413         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
27414         does not follow symlinks.
27415         (EOPNOTSUPP): Define if not defined.
27416         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
27417         is defined to 0.
27418         (lchown): New decl.
27419         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
27420         Do not check for lchown decl.
27421         Set REPLACE_LCHOWN.
27422         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
27423         REPLACE_LCHOWN.
27424         * modules/chown: Make it clear it follows symlinks.
27425         * modules/lchown: Make it clear it doesn't follow symlinks.
27426         (Files): Remove lib/lchown.h
27427         (Depends-on): Add unistd.
27428         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
27429         (Include): Include <unistd.h>, not "lchown.h".
27430         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
27431         REPLACE_LCHOWN.
27432
27433 2007-06-15  Jim Meyering  <jim@meyering.net>
27434
27435         Change license (GPL to LGPL) of fsusage and dependents.
27436         * modules/fsusage (License): Change to LGPL.
27437         * modules/full-read (License): Likewise.
27438         * modules/full-write (License): Likewise.
27439         * modules/safe-read (License): Likewise.
27440         * modules/safe-write (License): Likewise.
27441
27442 2007-06-14  Ben Pfaff  <blp@gnu.org>
27443
27444         Missing part of allocsa -> malloca transition.
27445         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
27446         gl_MALLOCA.
27447
27448 2007-06-12  Bruno Haible  <bruno@clisp.org>
27449
27450         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
27451         to ia64, x86_64, i386.
27452         Reported by Eric Blake.
27453
27454 2007-06-12  Bruno Haible  <bruno@clisp.org>
27455
27456         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
27457         cross-compiling to x86_64.
27458
27459 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
27460
27461         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
27462         glitch reported by Ralf Wildenhues in
27463         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
27464
27465         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
27466         Vin Shelton.
27467
27468 2007-06-11  Bruno Haible  <bruno@clisp.org>
27469
27470         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
27471         replacement string.
27472         Reported by Eric Blake.
27473
27474 2007-06-10  Bruno Haible  <bruno@clisp.org>
27475
27476         Prepare vasnprintf code for use with Unicode strings.
27477         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
27478         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
27479         TYPE_U32_STRING.
27480         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
27481         a_u32_string variants.
27482         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27483         * lib/printf-args.c: Don't include config.h and the specification
27484         header if PRINTF_FETCHARGS is already defined.
27485         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27486         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
27487         TYPE_U16_STRING, TYPE_U32_STRING.
27488         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
27489         u16_directive, u16_directives, u32_directive, u32_directives): New
27490         types.
27491         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
27492         New declarations.
27493         * lib/printf-parse.c: Don't include config.h and the specification
27494         header if PRINTF_PARSE is already defined. Eliminate the set of
27495         parameters for WIDE_CHAR_VERSION; the user of this file must provide
27496         them now. Include c-ctype.h.
27497         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
27498         directive and CHAR_T_ONLY_ASCII.
27499         * lib/vasnprintf.c: Don't include config.h and the specification header
27500         if VASNPRINTF is already defined.
27501         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
27502         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
27503         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
27504         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
27505         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
27506         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
27507         code accordingly.
27508         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
27509         pad_ourselves also in this case, with the 'c' and 's' directives, and
27510         with a different notion of "width".
27511         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
27512
27513 2007-06-10  Bruno Haible  <bruno@clisp.org>
27514
27515         * modules/unistr/u32-mbsnlen: New file.
27516         * lib/unistr/u32-mbsnlen.c: New file.
27517
27518         * modules/unistr/u16-mbsnlen: New file.
27519         * lib/unistr/u16-mbsnlen.c: New file.
27520
27521         * modules/unistr/u8-mbsnlen: New file.
27522         * lib/unistr/u8-mbsnlen.c: New file.
27523
27524         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
27525         declarations.
27526
27527 2007-06-10  Bruno Haible  <bruno@clisp.org>
27528
27529         * lib/string_.h (mbsnlen): New declaration.
27530         * lib/mbsnlen.c: New file.
27531         * m4/mbsnlen.m4: New file.
27532         * modules/mbsnlen: New file.
27533         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
27534         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
27535         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
27536
27537 2007-06-10  Bruno Haible  <bruno@clisp.org>
27538
27539         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
27540
27541 2007-06-10  Bruno Haible  <bruno@clisp.org>
27542
27543         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
27544         * lib/mbuiter.h: Likewise.
27545
27546 2007-06-10  Bruno Haible  <bruno@clisp.org>
27547
27548         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
27549         declaration.
27550
27551 2007-06-10  Karl Berry  <karl@gnu.org>
27552
27553         * config/srclist.txt: remove gettext entries, Bruno prefers
27554         to update individually.
27555
27556 2007-06-10  Bruno Haible  <bruno@clisp.org>
27557
27558         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
27559         'maxlen'. Ensure only length + width bytes are allocated, not
27560         length + 1 + width.
27561
27562 2007-06-09  Bruno Haible  <bruno@clisp.org>
27563
27564         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
27565         (CHAR_T): Remove macro.
27566         (VASNPRINTF): Update.
27567
27568 2007-06-09  Bruno Haible  <bruno@clisp.org>
27569
27570         * MODULES.html.sh (Unicode string functions): Add the new modules.
27571
27572         * modules/uniconv/u32-conv-to-enc: New file.
27573         * lib/uniconv/u32-conv-to-enc.c: New file.
27574         * modules/uniconv/u32-conv-to-enc-tests: New file.
27575         * tests/uniconv/test-u32-conv-to-enc.c: New file.
27576
27577         * modules/uniconv/u16-conv-to-enc: New file.
27578         * lib/uniconv/u16-conv-to-enc.c: New file.
27579         * lib/uniconv/u-conv-to-enc.h: New file.
27580         * modules/uniconv/u16-conv-to-enc-tests: New file.
27581         * tests/uniconv/test-u16-conv-to-enc.c: New file.
27582
27583         * modules/uniconv/u8-conv-to-enc: New file.
27584         * lib/uniconv/u8-conv-to-enc.c: New file.
27585         * modules/uniconv/u8-conv-to-enc-tests: New file.
27586         * tests/uniconv/test-u8-conv-to-enc.c: New file.
27587
27588         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
27589         u32_conv_to_encoding): New declarations.
27590
27591 2007-06-09  Bruno Haible  <bruno@clisp.org>
27592
27593         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
27594
27595 2007-06-09  Bruno Haible  <bruno@clisp.org>
27596
27597         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
27598         * modules/malloca: Renamed from modules/allocsa, updated.
27599         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
27600         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
27601         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
27602         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
27603         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
27604         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
27605         * modules/xmalloca: Renamed from modules/xallocsa, updated.
27606         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
27607         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
27608         * modules/c-strcasestr (Depends-on): Update.
27609         * lib/c-strcasestr.c: Update.
27610         * modules/c-strstr (Depends-on): Update.
27611         * lib/c-strstr.c: Update.
27612         * modules/canonicalize-lgpl (Depends-on): Update.
27613         * lib/canonicalize-lgpl.c: Update.
27614         * modules/clean-temp (Depends-on): Update.
27615         * lib/clean-temp.c: Update.
27616         * modules/csharpcomp (Depends-on): Update.
27617         * lib/csharpcomp.c: Update.
27618         * modules/csharpexec (Depends-on): Update.
27619         * lib/csharpexec.c: Update.
27620         * modules/javacomp (Depends-on): Update.
27621         * lib/javacomp.c: Update.
27622         * modules/javaexec (Depends-on): Update.
27623         * lib/javaexec.c: Update.
27624         * modules/mbscasestr (Depends-on): Update.
27625         * lib/mbscasestr.c: Update.
27626         * modules/mbsstr (Depends-on): Update.
27627         * lib/mbsstr.c: Update.
27628         * modules/setenv (Depends-on): Update.
27629         * lib/setenv.c: Update.
27630         * modules/strcasestr (Depends-on): Update.
27631         * lib/strcasestr.c: Update.
27632         * modules/striconveha (Depends-on): Update.
27633         * lib/striconveha.c: Update.
27634         * modules/relocatable-prog-wrapper (Files): Update.
27635         * lib/relocwrapper.c: Update.
27636         * build-aux/install-reloc: Update.
27637         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
27638
27639 2007-06-08  Bruno Haible  <bruno@clisp.org>
27640
27641         Port to uClibc.
27642         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
27643         * lib/fpurge.c (fpurge): Likewise.
27644         * lib/freading.c (freading): Likewise.
27645         * lib/fseeko.c (rpl_fseeko): Likewise.
27646         * lib/fseterr.c (fseterr): Likewise.
27647         * lib/fwriting.c (fwriting): Likewise.
27648         * tests/test-fflush.c (main): Avoid a failure on uClibc.
27649
27650 2007-06-08  Bruno Haible  <bruno@clisp.org>
27651
27652         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
27653         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
27654         * modules/gettext (Files): Add m4/intlmacosx.m4.
27655
27656 2007-06-07  Bruno Haible  <bruno@clisp.org>
27657
27658         * modules/localename-tests: New file.
27659         * tests/test-localename.c: New file.
27660
27661         New module 'localename'.
27662         * lib/localename.h: New file.
27663         * lib/localename.c: New file, from GNU gettext.
27664         * m4/localename.m4: New file.
27665         * modules/localename: New file.
27666
27667 2007-06-07  Bruno Haible  <bruno@clisp.org>
27668
27669         Work around the lack of <wchar.h> on some builds of uClibc.
27670         * doc/headers/wchar.texi: Update.
27671         * lib/wchar_.h: Include <wchar.h> only if it exists.
27672         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
27673         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
27674         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
27675         doesn't exist.
27676         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
27677         * modules/mbfile (Depends-on): Add wchar.
27678         * modules/mbiter (Depends-on): Likewise.
27679         * modules/mbuiter (Depends-on): Likewise.
27680         Reported by Simon Josefsson.
27681
27682 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27683
27684         Work around problem reported by Steven M. Schweda in
27685         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
27686         Tru64 5.1B with the Compaq compiler environment installed declares
27687         an 'isblank' function but does not define it in the C library.
27688         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
27689         * lib/regex_internal.h (isblank): Likewise.
27690         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
27691         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
27692
27693 2007-06-05  Bruno Haible  <bruno@clisp.org>
27694
27695         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
27696         ia64.
27697         * modules/printf-safe: New file.
27698         * modules/fprintf-posix (Depends-on): Add printf-safe.
27699         * modules/printf-posix (Depends-on): Likewise.
27700         * modules/snprintf-posix (Depends-on): Likewise.
27701         * modules/sprintf-posix (Depends-on): Likewise.
27702         * modules/vasnprintf-posix (Depends-on): Likewise.
27703         * modules/vasprintf-posix (Depends-on): Likewise.
27704         * modules/vfprintf-posix (Depends-on): Likewise.
27705         * modules/vprintf-posix (Depends-on): Likewise.
27706         * modules/vsnprintf-posix (Depends-on): Likewise.
27707         * modules/vsprintf-posix (Depends-on): Likewise.
27708         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
27709         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
27710         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
27711         "no" on i386, x86_64, ia64.
27712         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
27713         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27714         on i386, x86_64, ia64.
27715         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
27716         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27717         on i386, x86_64, ia64.
27718         * tests/test-vasnprintf-posix.c: Include float.h.
27719         (LDBL80_WORDS): New macro.
27720         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27721         on i386, x86_64, ia64.
27722         * tests/test-vasprintf-posix.c: Include float.h.
27723         (LDBL80_WORDS): New macro.
27724         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27725         on i386, x86_64, ia64.
27726         * tests/test-snprintf-posix.c: Include float.h.
27727         * tests/test-sprintf-posix.c: Likewise.
27728         * tests/test-vsnprintf-posix.c: Likewise.
27729         * tests/test-vsprintf-posix.c: Likewise.
27730
27731 2007-06-05  Bruno Haible  <bruno@clisp.org>
27732
27733         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
27734         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
27735         non-IEEE numbers on i386, x86_64, ia64.
27736         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
27737         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
27738         * tests/test-isnanl.h: Include float.h.
27739         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
27740
27741 2007-06-05  Bruno Haible  <bruno@clisp.org>
27742
27743         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
27744         also the %a / %A. Handle the %a / %A code before this extra handling.
27745
27746 2007-06-05  Bruno Haible  <bruno@clisp.org>
27747
27748         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
27749         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
27750
27751 2007-06-05  Bruno Haible  <bruno@clisp.org>
27752
27753         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
27754         typo in variable name.
27755
27756 2007-06-05  Eric Blake  <ebb9@byu.net>
27757
27758         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
27759         Reported by Simon Josefsson.
27760
27761 2007-06-04  Bruno Haible  <bruno@clisp.org>
27762
27763         Avoid test failures on some PowerPC platforms.
27764         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
27765         Define differently for PowerPC.
27766         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
27767         Reported by Gary V. Vaughan <gary@gnu.org>.
27768
27769 2007-06-02  Bruno Haible  <bruno@clisp.org>
27770
27771         Fix test-stdint failure on FreeBSD/ia64.
27772         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
27773         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
27774         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
27775         * doc/headers/stdint.texi: Update.
27776
27777 2007-06-01  Bruno Haible  <bruno@clisp.org>
27778
27779         * tests/test-binary-io.c (main): Pass a third argument to open().
27780         Reported by Gary V. Vaughan <gary@gnu.org>.
27781
27782 2007-06-01  Bruno Haible  <bruno@clisp.org>
27783
27784         * doc/functions/frexpl.texi: Update for mingw.
27785
27786 2007-06-01  Bruno Haible  <bruno@clisp.org>
27787
27788         * tests/test-lseek.c (main): Disable test of errno for invalid third
27789         argument.
27790         * doc/functions/lseek.texi: Update.
27791         Reported by Gary V. Vaughan <gary@gnu.org>.
27792
27793 2007-05-28  Bruno Haible  <bruno@clisp.org>
27794
27795         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
27796
27797 2007-05-31  Eric Blake  <ebb9@byu.net>
27798
27799         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
27800         cross compiling.
27801
27802 2007-05-30  Eric Blake  <ebb9@byu.net>
27803         and Bruno Haible  <bruno@clisp.org>
27804
27805         Work around mingw test failures exposed by m4-1.4.9b.
27806         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
27807         * tests/test-unistd.c: Disable uid_t and git_t tests for the
27808         moment.
27809
27810 2007-05-30  Bruno Haible  <bruno@clisp.org>
27811
27812         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
27813         assuming that they are closed. Needed on HP-UX 11.
27814
27815 2007-05-29  Bruno Haible  <bruno@clisp.org>
27816
27817         Fix a problem with #include_next.
27818         * lib/dirent_.h: Split the double-inclusion guard.
27819         * lib/fcntl_.h: Likewise.
27820         * lib/float_.h: Likewise.
27821         * lib/iconv_.h: Likewise.
27822         * lib/inttypes_.h: Likewise.
27823         * lib/locale_.h: Likewise.
27824         * lib/math_.h: Likewise.
27825         * lib/netinet_in_.h: Likewise.
27826         * lib/search_.h: Likewise.
27827         * lib/signal_.h: Likewise.
27828         * lib/stdint_.h: Likewise.
27829         * lib/stdio_.h: Likewise.
27830         * lib/stdlib_.h: Likewise.
27831         * lib/string_.h: Likewise.
27832         * lib/sys_select_.h: Likewise.
27833         * lib/sys_socket_.h: Likewise.
27834         * lib/sys_stat_.h: Likewise.
27835         * lib/sys_time_.h: Likewise.
27836         * lib/sysexits_.h: Likewise.
27837         * lib/time_.h: Likewise.
27838         * lib/unistd_.h: Likewise.
27839         * lib/wchar_.h: Likewise.
27840         * lib/wctype_.h: Likewise.
27841
27842 2007-05-29  Bruno Haible  <bruno@clisp.org>
27843
27844         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
27845         for the moment.
27846
27847 2007-05-29  Bruno Haible  <bruno@clisp.org>
27848
27849         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
27850         invocation.
27851         Reported by Eric Blake.
27852
27853 2007-05-29  Bruno Haible  <bruno@clisp.org>
27854
27855         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
27856         compiling case.
27857
27858 2007-05-29  Eric Blake  <ebb9@byu.net>
27859             Bruno Haible  <bruno@clisp.org>
27860
27861         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
27862         cross compiles.
27863
27864 2007-05-28  Eric Blake  <ebb9@byu.net>
27865
27866         * modules/closein-tests (test_closein_LDADD): Support test on
27867         cygwin with libtool.
27868
27869 2007-05-28  Bruno Haible  <bruno@clisp.org>
27870
27871         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
27872         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27873         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27874         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27875         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27876         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27877         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27878         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27879         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27880
27881 2007-05-28  Eric Blake  <ebb9@byu.net>
27882
27883         Unconditionally include <config.h> in unit tests.
27884         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
27885         * tests/test-allocsa.c, tests/test-arcfour.c,
27886         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
27887         tests/test-array_list.c, tests/test-array_oset.c,
27888         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
27889         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
27890         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
27891         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
27892         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
27893         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
27894         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
27895         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
27896         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
27897         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
27898         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
27899         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
27900         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
27901         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
27902         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
27903         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
27904         test-md5.c, test-memmem.c, test-printf-posix.c,
27905         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
27906         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
27907         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
27908         test-strcasestr.c, test-striconv.c, test-striconveh.c,
27909         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
27910         test-vasnprintf-posix2.c, test-vasnprintf.c,
27911         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
27912         test-vfprintf-posix.c, test-vprintf-posix.c,
27913         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
27914         test-xvasprintf.c: Likewise.
27915
27916 2007-05-28  Bruno Haible  <bruno@clisp.org>
27917
27918         * gnulib-tool (func_import): Remember the --with-tests command-line
27919         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
27920         Reported by Eric Blake.
27921
27922 2007-05-28  Bruno Haible  <bruno@clisp.org>
27923
27924         * modules/ftell-tests: New file.
27925         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
27926         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
27927
27928         * lib/ftell.c: New file.
27929         * modules/ftell: New file.
27930         * m4/ftell.m4: New file.
27931         * doc/functions/ftell.texi: Update.
27932         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
27933         REPLACE_FTELL.
27934         * lib/stdio_.h (rpl_ftell): New declaration.
27935         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
27936         REPLACE_FTELL.
27937
27938 2007-05-28  Eric Blake  <ebb9@byu.net>
27939
27940         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
27941
27942 2007-05-28  Bruno Haible  <bruno@clisp.org>
27943
27944         * modules/fseek-tests: New file.
27945         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
27946         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
27947
27948         * lib/fseek.c: New file.
27949         * modules/fseek: New file.
27950         * m4/fseek.m4: New file.
27951         * doc/functions/fseek.texi: Update.
27952         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
27953         REPLACE_FSEEK.
27954         * lib/stdio_.h (rpl_fseek): New declaration.
27955         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
27956         REPLACE_FSEEK.
27957
27958 2007-05-28  Bruno Haible  <bruno@clisp.org>
27959
27960         * lib/stdio_.h (fflush): More comments.
27961
27962 2007-05-28  Bruno Haible  <bruno@clisp.org>
27963
27964         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
27965         runtime test.
27966
27967 2007-05-28  Eric Blake  <ebb9@byu.net>
27968
27969         Improve lseek module.
27970         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
27971         * lib/unistd_.h (lseek): Scale back link warning message.
27972         * tests/test-lseek.c: Beef up test.
27973         * tests/test-lseek.sh: Exercise more facets of lseek.
27974         Reported by Bruno Haible.
27975
27976 2007-05-28  Bruno Haible  <bruno@clisp.org>
27977
27978         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
27979         to define.
27980
27981 2007-05-27  Bruno Haible  <bruno@clisp.org>
27982
27983         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
27984
27985 2007-05-27  Bruno Haible  <bruno@clisp.org>
27986
27987         * modules/openmp: New file.
27988         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
27989         Noah Misch.
27990
27991 2007-05-26  Bruno Haible  <bruno@clisp.org>
27992
27993         * modules/chdir-long (Depends-on): Add fchdir.
27994         * modules/chdir-safer (Depends-on): Likewise.
27995         * modules/fts (Depends-on): Likewise.
27996         * modules/fts-lgpl (Depends-on): Likewise.
27997         * modules/openat (Depends-on): Likewise.
27998         * modules/savewd (Depends-on): Likewise.
27999
28000 2007-05-24  Eric Blake  <ebb9@byu.net>
28001
28002         Fix lseek on mingw.
28003         * modules/lseek: New module.
28004         * m4/lseek.m4: New file.
28005         * lib/lseek.c: New file.
28006         * modules/lseek-tests: New file.
28007         * tests/test-lseek.c: New file.
28008         * tests/test-lseek.sh: New file.
28009         * MODULES.html.sh: Document lseek module.
28010         * modules/fflush (Depends-on): Add lseek, fseeko.
28011         * modules/fseeko (Depends-on): Likewise.
28012         * modules/ftello (Depends-on): Likewise.
28013         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
28014         broken.
28015         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
28016         broken.
28017         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
28018         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
28019         * lib/ftello.c (rpl_ftello): Likewise.
28020         * tests/test-fseeko.c (main): Test this.
28021         * tests/test-fseeko.sh: Likewise.
28022         * tests/test-ftello.c (main): Likewise.
28023         * tests/test-ftello.sh: Likewise.
28024         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
28025         implies replacing fseek.
28026         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
28027         HAVE_FTELLO.
28028         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
28029         * modules/unistd (Makefile.am): Likewise.
28030         * lib/unistd_.h (lseek): Declare a replacement.
28031         * doc/functions/lseek.texi (lseek): Document this fix.
28032         * doc/functions/fseek.texi (fseek): Likewise.
28033         * doc/functions/ftell.texi (ftell): Likewise.
28034
28035 2007-05-24  Bruno Haible  <bruno@clisp.org>
28036
28037         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
28038         in the printed representation of a NaN.
28039         * tests/test-vasprintf-posix.c (test_function): Likewise.
28040         * tests/test-snprintf-posix.h (test_function): Likewise.
28041         * tests/test-sprintf-posix.h (test_function): Likewise.
28042         Reported by Eric Blake.
28043
28044 2007-05-23  Eric Blake  <ebb9@byu.net>
28045
28046         Fix fseeko/ftello on cygwin 1.5.24.
28047         * doc/functions/fseeko.texi (fseeko): Document the fix.
28048         * doc/functions/ftello.texi (ftello): Document the fix.
28049         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
28050         * doc/functions/stdout.text (stdout): New file.
28051         * doc/functions/stderr.text (stderr): New file.
28052         * doc/gnulib.texi (Function Substitutes): Use new files.
28053         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
28054         prior to 1.7.0.
28055         * tests/test-ftello.c (main): Likewise for ftello.
28056         * tests/test-fseeko.sh: New file.
28057         * tests/test-ftello.sh: New file.
28058         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
28059         with seekable stdin.
28060         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
28061         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
28062         (gl_REPLACE_FSEEKO): New macro.
28063         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
28064         * modules/fseeko (Files): Distribute fseeko.c.
28065         * modules/ftello (Files): Distribute ftello.c.
28066         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
28067         mode.
28068         * lib/ftello.c (rpl_ftello): New file.
28069         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
28070         fseeko, ftello.
28071         (gl_STDIN_LARGE_OFFSET): New macro.
28072         * modules/stdio (Makefile.am): Perform the replacement.
28073         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
28074
28075 2007-05-23  Bruno Haible  <bruno@clisp.org>
28076
28077         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
28078         GNULIB_POSIXCHECK is defined.
28079
28080 2007-05-21  Bruno Haible  <bruno@clisp.org>
28081
28082         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
28083         Check also the output for NaN arguments. When cross-compiling, guess
28084         no on IRIX.
28085         * lib/vasnprintf.c: Update comments.
28086         * tests/test-vasnprintf-posix.c (strisnan): New function.
28087         (test_function): Use it.
28088         * tests/test-vasprintf-posix.c (strisnan): New function.
28089         (test_function): Use it.
28090         * tests/test-snprintf-posix.h (strisnan): New function.
28091         (test_function): Use it.
28092         * tests/test-sprintf-posix.h (strisnan): New function.
28093         (test_function): Use it.
28094         Reported by Eric Blake.
28095
28096 2007-05-20  Bruno Haible  <bruno@clisp.org>
28097
28098         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
28099         numbers that fails on BeOS.
28100         * doc/functions/frexpl.texi: Update.
28101
28102 2007-05-20  Jim Meyering  <jim@meyering.net>
28103
28104         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
28105         forced upon us by glibc-2.6.
28106
28107 2007-05-20  Bruno Haible  <bruno@clisp.org>
28108
28109         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
28110         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
28111         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
28112         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
28113         NEED_PRINTF_INFINITE.
28114         (is_infinitel): New function.
28115         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
28116         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
28117         gl_PREREQ_VASNPRINTF_INFINITE.
28118         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
28119         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28120         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
28121         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
28122         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
28123         gl_PREREQ_VASNPRINTF_INFINITE.
28124         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28125         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28126         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28127         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28128         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28129         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28130         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28131         * doc/functions/fprintf.texi: Update.
28132         * doc/functions/printf.texi: Update.
28133         * doc/functions/snprintf.texi: Update.
28134         * doc/functions/sprintf.texi: Update.
28135         * doc/functions/vfprintf.texi: Update.
28136         * doc/functions/vprintf.texi: Update.
28137         * doc/functions/vsnprintf.texi: Update.
28138         * doc/functions/vsprintf.texi: Update.
28139
28140 2007-05-20  Bruno Haible  <bruno@clisp.org>
28141
28142         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
28143         was not found in libc.
28144         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
28145
28146 2007-05-20  Bruno Haible  <bruno@clisp.org>
28147
28148         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
28149         printed as "-nan" instead of "nan".
28150         * tests/test-vasprintf-posix.c (test_function): Likewise.
28151         * tests/test-snprintf-posix.h (test_function): Likewise.
28152         * tests/test-sprintf-posix.h (test_function): Likewise.
28153         Needed for HP-UX 11.
28154
28155 2007-05-20  Jim Meyering  <jim@meyering.net>
28156
28157         Fix buggy test for the fchownat-deref bug.
28158         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
28159         symlink required for the run-test.  Without it, this test would
28160         always declare that fchownat doesn't work, and client code would
28161         unnecessarily use the replacement function with fixed libc.
28162         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
28163         Reported by Greg Schafer.
28164
28165 2007-05-19  Bruno Haible  <bruno@clisp.org>
28166
28167         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
28168         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
28169         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
28170         Needed for IRIX 6.5 and Solaris 2.5.1.
28171
28172 2007-05-19  Bruno Haible  <bruno@clisp.org>
28173
28174         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
28175         (test_function): Skip tests involving -0.0 on platforms where
28176         -0.0 = 0.0.
28177         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
28178         (test_function): Skip tests involving -0.0 on platforms where
28179         -0.0 = 0.0.
28180         * tests/test-snprintf-posix.h (have_minus_zero): New function.
28181         (test_function): Skip tests involving -0.0 on platforms where
28182         -0.0 = 0.0.
28183         * tests/test-sprintf-posix.h (have_minus_zero): New function.
28184         (test_function): Skip tests involving -0.0 on platforms where
28185         -0.0 = 0.0.
28186         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
28187         tests.
28188         * tests/test-printf-posix.h (test_function): Likewise.
28189         * tests/test-printf-posix.output: Remove all -0.0 related results.
28190         Needed for IRIX 6.5.
28191
28192 2007-05-19  Bruno Haible  <bruno@clisp.org>
28193
28194         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
28195         printed as "nan0x7fffffff" instead of "nan".
28196         * tests/test-vasprintf-posix.c (test_function): Likewise.
28197         * tests/test-snprintf-posix.h (test_function): Likewise.
28198         * tests/test-sprintf-posix.h (test_function): Likewise.
28199         * tests/test-fprintf-posix.h (NaN): Remove macro.
28200         (test_function): Remove all NaN related tests.
28201         * tests/test-printf-posix.h (NaN): Remove macro.
28202         (test_function): Remove all NaN related tests.
28203         * tests/test-printf-posix.output: Remove all NaN related results.
28204         Needed for IRIX 6.5.
28205
28206 2007-05-19  Bruno Haible  <bruno@clisp.org>
28207
28208         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
28209         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
28210
28211 2007-05-19  Bruno Haible  <bruno@clisp.org>
28212
28213         * lib/float_.h: New file.
28214         * m4/float_h.m4: New file.
28215         * modules/float: New file.
28216         * modules/isnanl (Dependencies): Add float.
28217         * modules/isnanl-nolibm (Dependencies): Likewise.
28218         * modules/mathl (Dependencies): Likewise.
28219         * modules/printf-frexpl (Dependencies): Likewise.
28220         * modules/signbit (Dependencies): Likewise.
28221         * modules/vasnprintf (Dependencies): Likewise.
28222         * doc/headers/float.texi: Update.
28223
28224 2007-05-19  Jim Meyering  <jim@meyering.net>
28225
28226         * lib/utimens.c (gl_futimens): Rename from futimens,
28227         now that glibc-2.6 declares futimens.
28228         * lib/utimens.h: Likewise.
28229
28230 2007-05-19  Bruno Haible  <bruno@clisp.org>
28231
28232         Avoid test failures on mingw.
28233         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
28234         * tests/test-printf-posix.sh: Likewise.
28235         * tests/test-vfprintf-posix.sh: Likewise.
28236         * tests/test-vprintf-posix.sh: Likewise.
28237
28238 2007-05-19  Bruno Haible  <bruno@clisp.org>
28239
28240         Fix *printf result for NaN, Inf, -0.0 on mingw.
28241         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
28242         * lib/vasnprintf.c: Include math.h and isnan.h.
28243         (is_infinite_or_zero): New function.
28244         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
28245         values in the %f, %F, %e, %E, %g, %G directives.
28246         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
28247         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28248         gl_PRINTF_INFINITE and test its result. Invoke
28249         gl_PREREQ_VASNPRINTF_INFINITE.
28250         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28251         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28252         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28253         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28254         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28255         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28256         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28257         * doc/functions/fprintf.texi: Update.
28258         * doc/functions/printf.texi: Update.
28259         * doc/functions/snprintf.texi: Update.
28260         * doc/functions/sprintf.texi: Update.
28261         * doc/functions/vfprintf.texi: Update.
28262         * doc/functions/vprintf.texi: Update.
28263         * doc/functions/vsnprintf.texi: Update.
28264         * doc/functions/vsprintf.texi: Update.
28265
28266 2007-05-19  Bruno Haible  <bruno@clisp.org>
28267
28268         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
28269         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
28270         Instead of multiplying with 10^k, set extra_zeroes to k.
28271         (scale10_round_long_double): Remove function.
28272
28273 2007-05-18  Bruno Haible  <bruno@clisp.org>
28274
28275         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
28276         introduced on 2007-05-06.
28277
28278 2007-05-18  Bruno Haible  <bruno@clisp.org>
28279
28280         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
28281         %g directives.
28282         * tests/test-vasprintf-posix.c (test_function): Likewise.
28283         * tests/test-snprintf-posix.h (test_function): Likewise.
28284         * tests/test-sprintf-posix.h (test_function): Likewise.
28285
28286 2007-05-18  Bruno Haible  <bruno@clisp.org>
28287
28288         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
28289         (strmatch): New function.
28290         (test_function): Test the %f directive on numbers of various exponents.
28291         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
28292         (strmatch): New function.
28293         (test_function): Test the %f directive on numbers of various exponents.
28294         * tests/test-snprintf-posix.h (strmatch): New function.
28295         (test_function): Test the %f directive on numbers of various exponents.
28296         * tests/test-sprintf-posix.h (strmatch): New function.
28297         (test_function): Test the %f directive on numbers of various exponents.
28298         * tests/test-snprintf-posix.c (SIZEOF): New macro.
28299         * tests/test-sprintf-posix.c (SIZEOF): New macro.
28300         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
28301         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
28302
28303 2007-05-18  Bruno Haible  <bruno@clisp.org>
28304
28305         Add support for 'long double' number output.
28306         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
28307         * lib/vasnprintf.c: Include math.h and float+.h.
28308         (mp_limb_t): New type.
28309         (GMP_LIMB_BITS): New macro.
28310         (mp_twolimb_t): New type.
28311         (GMP_TWOLIMB_BITS): New macro.
28312         (mpn_t): New type.
28313         (multiply, divide, convert_to_decimal, decode_long_double,
28314         scale10_round_long_double, scale10_round_decimal_long_double,
28315         floorlog10l): New functions.
28316         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
28317         for the %f, %F, %e, %E, %g, %G directives.
28318         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
28319         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28320         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
28321         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
28322         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28323         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28324         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28325         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28326         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28327         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28328         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28329         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
28330         * modules/snprintf-posix (Depends-on): Likewise.
28331         * modules/sprintf-posix (Depends-on): Likewise.
28332         * modules/vasnprintf-posix (Depends-on): Likewise.
28333         * modules/vasprintf-posix (Depends-on): Likewise.
28334         * modules/vfprintf-posix (Depends-on): Likewise.
28335         * modules/vsnprintf-posix (Depends-on): Likewise.
28336         * modules/vsprintf-posix (Depends-on): Likewise.
28337         * modules/vasnprintf (Files): Add lib/float+.h.
28338         * doc/functions/fprintf.texi: Update.
28339         * doc/functions/printf.texi: Update.
28340         * doc/functions/snprintf.texi: Update.
28341         * doc/functions/sprintf.texi: Update.
28342         * doc/functions/vfprintf.texi: Update.
28343         * doc/functions/vprintf.texi: Update.
28344         * doc/functions/vsnprintf.texi: Update.
28345         * doc/functions/vsprintf.texi: Update.
28346
28347 2007-05-18  Bruno Haible  <bruno@clisp.org>
28348
28349         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
28350
28351 2007-05-18  Bruno Haible  <bruno@clisp.org>
28352
28353         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
28354         for printing 64-bit integers. Needed for mingw.
28355
28356 2007-05-18  Bruno Haible  <bruno@clisp.org>
28357
28358         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
28359         gl_FUNC_FREXPL_WORKS.
28360         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
28361
28362 2007-05-18  Bruno Haible  <bruno@clisp.org>
28363
28364         * modules/frexpl-nolibm-tests: New file.
28365
28366         * modules/frexpl-nolibm: New file.
28367         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
28368
28369 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28370
28371         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
28372         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28373         GCC 4.2, which otherwise issues a lot of warnings.
28374         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
28375         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
28376         Likewise.
28377         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
28378         * modules/iconv_open (iconv.h): Likewise.
28379         * modules/locale (locale.h): Likewise.
28380         * modules/netinet_in (netinet/in.h): Likewise.
28381         * modules/sys_select (sys_select.h): Likewise.
28382         * modules/sys_socket (sys/socket.h): Likewise.
28383         * modules/sys_stat (sys/stat.h): Likewise.
28384         * modules/sysexits (sysexits.h): Likewise.
28385         * modules/unistd (unistd.h): Likewise.
28386
28387 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28388
28389         * modules/closein-tests (Makefile.am): Distribute
28390         `test-closein.sh'.
28391
28392 2007-05-17  Bruno Haible  <bruno@clisp.org>
28393
28394         * tests/test-printf-posix.output: Renamed from
28395         tests/test-fprintf-posix.out.
28396         * modules/fprintf-posix-tests: Update.
28397         * modules/printf-posix-tests: Update.
28398         * modules/vfprintf-posix-tests: Update.
28399         * modules/vprintf-posix-tests: Update.
28400         * tests/test-fprintf-posix.sh: Update.
28401         * tests/test-printf-posix.sh: Update.
28402         * tests/test-vfprintf-posix.sh: Update.
28403         * tests/test-vprintf-posix.sh: Update.
28404         Reported by Ralf Wildenhues.
28405
28406 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28407
28408         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
28409         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28410         GCC 4.2, which otherwise issues a lot of warnings.
28411         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
28412         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
28413         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
28414         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
28415         it should no longer be needed.
28416         * lib/string_.h: Likewise.
28417         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
28418         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
28419         * modules/inttypes (inttypes.h): Likewise.
28420         * modules/math (math.h): Likewise.
28421         * modules/search (search.h): Likewise.
28422         * modules/signal (signal.h): Likewise.
28423         * modules/stdint (stdint.h): Likewise.
28424         * modules/stdio (stdio.h): Likewise.
28425         * modules/stdlib (stdlib.h): Likewise.
28426         * modules/string (string.h): Likewise.
28427         * modules/sys_time (sys/time.h): Likewise.
28428         * modules/time (time.h): Likewise.
28429         * modules/wchar (wchar.h): Likewise.
28430         * modules/wctype (wtype.h): Likewise.
28431
28432 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
28433
28434         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
28435
28436 2007-05-13  Bruno Haible  <bruno@clisp.org>
28437
28438         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
28439         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28440         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
28441         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28442         (gl_PREREQ_STRTOK_R): Don't require it here.
28443
28444 2007-05-13  Bruno Haible  <bruno@clisp.org>
28445
28446         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
28447         when used in C++ mode.
28448
28449 2007-05-12  Bruno Haible  <bruno@clisp.org>
28450
28451         * lib/linebuffer.h: Tweak doc.
28452         * lib/linebuffer.c: Likewise.
28453
28454 2007-05-12  James Youngman  <jay@gnu.org>
28455
28456         * lib/linebuffer.c (readlinebuffer_delim): New function,
28457         like readlinebuffer, but use a caller-specified delimiter.
28458         (readlinebuffer): Just call readlinebuffer_delim with '\n'
28459         as the delimiter.
28460         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
28461
28462 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
28463
28464         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
28465         * modules/openat (Files): Remove openat-die.c.
28466         (Depends-on): Add openat-die.
28467         * modules/openat-die: New module.
28468
28469 2007-05-06  Bruno Haible  <bruno@clisp.org>
28470
28471         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
28472         Update with info about Cygwin.
28473         * doc/functions/fprintf.texi: Update.
28474         * doc/functions/printf.texi: Update.
28475         * doc/functions/snprintf.texi: Update.
28476         * doc/functions/sprintf.texi: Update.
28477         * doc/functions/vfprintf.texi: Update.
28478         * doc/functions/vprintf.texi: Update.
28479         * doc/functions/vsnprintf.texi: Update.
28480         * doc/functions/vsprintf.texi: Update.
28481         Reported by Eric Blake.
28482
28483 2007-05-06  Bruno Haible  <bruno@clisp.org>
28484
28485         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
28486         padding ourselves for the floating-point directives.
28487         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
28488         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
28489         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28490         gl_PRINTF_FLAG_ZERO and test its result. Invoke
28491         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
28492         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28493         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28494         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28495         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28496         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28497         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28498         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28499         * tests/test-snprintf-posix.h (test_function): Also check the width
28500         and some flags in the %f directive.
28501         * tests/test-sprintf-posix.h (test_function): Likewise.
28502         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28503         * tests/test-vasprintf-posix.c (test_function): Likewise.
28504         * doc/functions/fprintf.texi: Update.
28505         * doc/functions/printf.texi: Update.
28506         * doc/functions/snprintf.texi: Update.
28507         * doc/functions/sprintf.texi: Update.
28508         * doc/functions/vfprintf.texi: Update.
28509         * doc/functions/vprintf.texi: Update.
28510         * doc/functions/vsnprintf.texi: Update.
28511         * doc/functions/vsprintf.texi: Update.
28512
28513 2007-05-06  Bruno Haible  <bruno@clisp.org>
28514
28515         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
28516         pass the ' flag character to sprintf or snprintf.
28517         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
28518         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
28519         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28520         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
28521         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
28522         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28523         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28524         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28525         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28526         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28527         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28528         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28529         * tests/test-snprintf-posix.h (test_function): Also check the grouping
28530         flag.
28531         * tests/test-sprintf-posix.h (test_function): Likewise.
28532         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28533         * tests/test-vasprintf-posix.c (test_function): Likewise.
28534         * doc/functions/fprintf.texi: Update.
28535         * doc/functions/printf.texi: Update.
28536         * doc/functions/snprintf.texi: Update.
28537         * doc/functions/sprintf.texi: Update.
28538         * doc/functions/vfprintf.texi: Update.
28539         * doc/functions/vprintf.texi: Update.
28540         * doc/functions/vsnprintf.texi: Update.
28541         * doc/functions/vsprintf.texi: Update.
28542
28543 2007-05-01  Bruno Haible  <bruno@clisp.org>
28544
28545         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
28546
28547 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
28548
28549         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
28550         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
28551
28552 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
28553
28554         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
28555         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
28556         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
28557
28558 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
28559
28560         * lib/argp-help.c (struct hol_entry): New member `ord'.
28561         (HOL_ENTRY_PTRCMP): Use ord for comparison
28562         (hol_sort): Initialize ord.
28563
28564 2007-05-01  Bruno Haible  <bruno@clisp.org>
28565
28566         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
28567         Reported by Eric Blake.
28568         * doc/gnulib.texi (Function Substitutes): Update.
28569
28570 2007-05-01  Bruno Haible  <bruno@clisp.org>
28571
28572         * doc/functions.texi: Remove file, now redundant through
28573         doc/functions/*.texi.
28574
28575 2007-05-01  Bruno Haible  <bruno@clisp.org>
28576
28577         * modules/argp (Depends-on): Add sleep.
28578
28579 2007-05-01  Bruno Haible  <bruno@clisp.org>
28580
28581         * modules/sleep-tests: New file.
28582         * tests/test-sleep.c: New file.
28583
28584         * modules/sleep: New file.
28585         * lib/sleep.c: New file.
28586         * m4/sleep.m4: New file.
28587         * lib/unistd_.h (sleep): New declaration.
28588         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
28589         HAVE_SLEEP.
28590         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
28591         * doc/functions/sleep.texi: Document the sleep module.
28592
28593 2007-05-01  Bruno Haible  <bruno@clisp.org>
28594
28595         * lib/sigprocmask.h: Remove file.
28596         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
28597         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
28598         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
28599         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
28600         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
28601         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
28602         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
28603         HAVE_SIGSET_T as a shell variable.
28604         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
28605         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
28606         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
28607         (Depends-on): Add signal. Remove verify.
28608         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
28609         (Include): Mention <signal.h> instead of sigprocmask.h.
28610         * NEWS: Mention the change.
28611         * lib/fatal-signal.c: Don't include sigprocmask.h.
28612
28613 2007-05-01  Bruno Haible  <bruno@clisp.org>
28614
28615         * modules/signal: New file.
28616         * lib/signal_.h: New file.
28617         * m4/signal_h.m4: New file.
28618
28619 2007-05-01  Bruno Haible  <bruno@clisp.org>
28620
28621         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
28622         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
28623         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
28624         HAVE_WCTYPE_CTMP_BUG into wctype.h.
28625
28626 2007-05-01  Bruno Haible  <bruno@clisp.org>
28627
28628         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
28629         configure time.
28630         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
28631         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
28632         * modules/sys_stat (Makefile.am): Substitute their values into
28633         sys/stat.h.
28634
28635 2007-05-01  Bruno Haible  <bruno@clisp.org>
28636
28637         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
28638         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
28639         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
28640
28641 2007-05-01  Bruno Haible  <bruno@clisp.org>
28642
28643         * doc/header/assert.texi: Undo last change: don't mention the gnulib
28644         'assert' module here.
28645
28646 2007-05-01  Bruno Haible  <bruno@clisp.org>
28647
28648         * doc/functions/*.texi: New files.
28649         * doc/functions/google-ranking.txt: New file.
28650         * doc/gnulib.texi (Function Substitutes): New chapter.
28651         (ctime, inet_ntoa): Remove sections.
28652         * doc/ctime.texi: Remove file.
28653         * doc/inet_ntoa.texi: Remove file.
28654         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
28655         dependencies.
28656         (%.info): New rule, specifying a --reference-limit.
28657
28658 2007-05-01  Bruno Haible  <bruno@clisp.org>
28659
28660         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
28661
28662 2007-05-01  Bruno Haible  <bruno@clisp.org>
28663
28664         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
28665         the portability of 'mkdir' to mingw systems.
28666
28667 2007-05-01  Bruno Haible  <bruno@clisp.org>
28668
28669         * doc/headers/google-ranking.txt: New file.
28670
28671 2007-04-30  Eric Blake  <ebb9@byu.net>
28672
28673         Prefer fseeko to fseek.
28674         * modules/getpass (Depends-on): Add fseeko.
28675         * lib/getpass.c (getpass): Use fseeko, not fseek.
28676
28677 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
28678
28679         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
28680         assumes the sorting is stable, while most qsort implementations
28681         are not.  Use argument addresses to ensure they never compare as
28682         equal.
28683
28684         * tests/test-argp-2.sh (usage-indent test): Fix output
28685         (func_compare): Restore diff options
28686         * tests/test-argp.c: Restore #include "progname.h"
28687
28688 2007-04-29  Bruno Haible  <bruno@clisp.org>
28689
28690         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
28691         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28692         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
28693         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28694         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
28695         (configure.ac): Define CHECK_SNPRINTF_POSIX.
28696         (TESTS, check_PROGRAMS): Add test-snprintf.
28697         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
28698         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
28699         (TESTS, check_PROGRAMS): Add test-vsnprintf.
28700         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
28701         assertions that fail on HP-UX, OSF/1, or IRIX.
28702         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
28703
28704 2007-04-29  Bruno Haible  <bruno@clisp.org>
28705
28706         * MODULES.html.sh (posix_functions): Remove 'contents'.
28707
28708 2007-04-29  Karl Berry  <karl@gnu.org>
28709
28710         * config/srclist.txt (gendocs_template_min): new entry.
28711
28712 2007-04-29  Bruno Haible  <bruno@clisp.org>
28713
28714         Work around fpurge bug on BSD systems.
28715         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
28716         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
28717         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
28718         fpurge to rpl_fpurge if the system already has this function.
28719         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
28720         the case where the system already has this function. Correct invariants
28721         on BSD systems.
28722         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
28723         BSD systems.
28724
28725 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28726
28727         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
28728         proposed by Sven Verdoolaege.
28729
28730         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
28731         options.
28732         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
28733         (usage and help tests): Update
28734
28735 2007-04-29  Bruno Haible  <bruno@clisp.org>
28736
28737         * tests/test-fflush.c (main): Use a file of size 17, not 10.
28738         Print more information in case of failure. Disable a test on BeOS.
28739
28740 2007-04-29  Bruno Haible  <bruno@clisp.org>
28741
28742         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
28743         This helps debugging on systems on which no gdb is available.
28744
28745 2007-04-29  Bruno Haible  <bruno@clisp.org>
28746
28747         * lib/freading.h: Improve comments.
28748         * lib/fwriting.h: Likewise.
28749         * tests/test-freading.c (main): Don't check freading immediately after
28750         repositioning. Needed for glibc.
28751
28752 2007-04-29  Bruno Haible  <bruno@clisp.org>
28753
28754         * lib/freading.c (freading): Trivial simplification.
28755
28756 2007-04-28  Bruno Haible  <bruno@clisp.org>
28757
28758         * tests/test-fwriting.c (main): Also test the interaction between
28759         fflush and fwriting.
28760         * modules/fwriting-tests (Depends-on): Add fflush.
28761
28762         * tests/test-freading.c (main): Also test the interaction between
28763         fflush and freading.
28764         * modules/freading-tests (Depends-on): Add fflush.
28765
28766 2007-04-28  Bruno Haible  <bruno@clisp.org>
28767
28768         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
28769         fseeko and ftello.
28770         Suggested by Eric Blake.
28771
28772 2007-04-28  Jim Meyering  <jim@meyering.net>
28773
28774         Avoid false-negative in gl_STDINT_H's C99 conformance test.
28775         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
28776         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
28777
28778 2007-04-27  Eric Blake  <ebb9@byu.net>
28779
28780         * doc/headers/assert.texi (assert.h): Document assert module use.
28781
28782 2007-04-27  Bruno Haible  <bruno@clisp.org>
28783
28784         * doc/headers/*.texi: New files.
28785         * doc/gnulib.texi (Header File Substitutes): New chapter.
28786         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
28787         dependencies.
28788         (standards.info ,standards.html, standards.dvi): Update dependencies.
28789         (mostlyclean, clean): New targets.
28790
28791 2007-04-27  Bruno Haible  <bruno@clisp.org>
28792
28793         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
28794         * modules/sysexits (Files, Makefile.am): Update.
28795
28796         * lib/sys_socket_.h: Renamed from lib/socket_.h.
28797         * modules/sys_socket (Files, Makefile.am): Update.
28798
28799         * lib/sys_stat_.h: Renamed from lib/stat_.h.
28800         * modules/sys_stat (Files, Makefile.am): Update.
28801
28802 2007-04-27  Eric Blake  <ebb9@byu.net>
28803
28804         * lib/freading.h: Improve comments.
28805         * lib/fwriting.h: Likewise.
28806         * lib/fflush.c: Likewise.
28807
28808         Fix closein for mingw.
28809         * modules/closein-tests: Add tests for closein.
28810         * tests/test-closein.c: New file.
28811         * tests/test-closein.sh: Likewise.
28812         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
28813         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
28814
28815 2007-04-27  Bruno Haible  <bruno@clisp.org>
28816
28817         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
28818         version is < 6.
28819         * lib/math_.h [__DECC]: Likewise.
28820         * lib/stdio_.h [__DECC]: Likewise.
28821         * lib/stdlib_.h [__DECC]: Likewise.
28822         * lib/string_.h [__DECC]: Likewise.
28823         * lib/time_.h [__DECC]: Likewise.
28824         * lib/wchar_.h [__DECC]: Likewise.
28825         * lib/wctype_.h [__DECC]: Likewise.
28826
28827 2007-04-27  Bruno Haible  <bruno@clisp.org>
28828
28829         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
28830
28831 2007-04-27  Bruno Haible  <bruno@clisp.org>
28832
28833         * lib/fflush.c: Add comments.
28834         * modules/fpurge-tests (Depends-on): Add fflush.
28835         * modules/freadable-tests (Depends-on): Likewise.
28836         * modules/fwritable-tests (Depends-on): Likewise.
28837
28838 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
28839
28840         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
28841         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
28842         Report by Bruno Haible <bruno@clisp.org>.
28843
28844 2007-04-26  Eric Blake  <ebb9@byu.net>
28845
28846         Fix fflush on mingw.
28847         * modules/fflush (Depends-on): Add freading.
28848         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
28849         but unread data.
28850
28851 2007-04-26  Eric Blake  <ebb9@byu.net>
28852         and Bruno Haible  <bruno@clisp.org>
28853
28854         Implement freading and fwriting.
28855         * lib/freading.c: New file.
28856         * lib/freading.h: Likewise.
28857         * m4/freading.m4: Likewise.
28858         * modules/freading: Likewise.
28859         * modules/freading-tests: Likewise.
28860         * tests/test-freading.c: Likewise.
28861         * lib/fwriting.c: New file.
28862         * lib/fwriting.h: Likewise.
28863         * m4/fwriting.m4: Likewise.
28864         * modules/fwriting: Likewise.
28865         * modules/fwriting-tests: Likewise.
28866         * tests/test-fwriting.c: Likewise.
28867         * MODULES.html.sh (File stream based Input/Output): Mention them.
28868
28869 2007-04-26  Bruno Haible  <bruno@clisp.org>
28870
28871         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
28872         'long' when we assume it.
28873         Suggested by Eric Blake.
28874
28875 2007-04-26  Bruno Haible  <bruno@clisp.org>
28876
28877         Ensure fseeko, ftello are declared on glibc systems.
28878         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
28879         * modules/fseeko (configure.ac-early): Likewise.
28880         * modules/ftello (configure.ac-early): Likewise.
28881         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
28882         AC_FUNC_FSEEKO for this.
28883         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
28884         (gl_CHECK_FSEEKO): Remove macro.
28885
28886 2007-04-26  Bruno Haible  <bruno@clisp.org>
28887
28888         * tests/test-fflush.c (main): Also check the ftell result after
28889         fflush and fseek/fseeko.
28890         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
28891         file descriptor position cache in the stream.
28892         * lib/fseeko.c (rpl_fseeko): Likewise.
28893
28894 2007-04-26  Bruno Haible  <bruno@clisp.org>
28895
28896         * modules/fflush-tests (Depends-on): Add fseeko.
28897
28898 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
28899             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28900
28901         * lib/argz_.h: ensure error_t definition is obtained in same
28902         mechanism system argz.h would have.
28903         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
28904         argz facilities are known bad.  Err on the side of caution if
28905         cross-compiling.
28906
28907 2007-04-25  Eric Blake  <ebb9@byu.net>
28908
28909         * lib/fpurge.c (includes): Use stdlib.h for free.
28910         * tests/test-fflush.c (main): Also test fflush-fseeko.
28911
28912 2007-04-25  Bruno Haible  <bruno@clisp.org>
28913
28914         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
28915         * lib/fseeko.c: New file.
28916         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
28917         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
28918         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
28919         gl_FUNC_FSEEKO.
28920         (gl_FUNC_FSEEKO): Invoke it.
28921         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
28922         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
28923         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
28924
28925 2007-04-25  Bruno Haible  <bruno@clisp.org>
28926
28927         * modules/fflush (Depends-on): Add ftello.
28928
28929 2007-04-25  Bruno Haible  <bruno@clisp.org>
28930
28931         * modules/ftello-tests: New file.
28932         * tests/test-ftello.c: New file.
28933
28934         * modules/ftello: New file.
28935         * m4/ftello.m4: New file.
28936         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
28937         HAVE_FTELLO.
28938         * lib/stdio_.h (ftello): New declaration.
28939         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
28940         HAVE_FTELLO.
28941
28942 2007-04-25  Bruno Haible  <bruno@clisp.org>
28943
28944         * modules/fseeko-tests: New file.
28945         * tests/test-fseeko.c: New file.
28946
28947         * modules/fseeko: New file.
28948         * m4/fseeko.m4: New file.
28949         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
28950         HAVE_FSEEKO.
28951         * lib/stdio_.h (fseeko): New declaration.
28952         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
28953         HAVE_FSEEKO.
28954
28955 2007-04-25  Bruno Haible  <bruno@clisp.org>
28956
28957         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
28958
28959 2007-04-25  Bruno Haible  <bruno@clisp.org>
28960
28961         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
28962         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
28963         * tests/test-unistd.c: Likewise.
28964         * tests/test-fcntl.c: Likewise.
28965
28966 2007-04-23  Eric Blake  <ebb9@byu.net>
28967
28968         * lib/fflush.c: Fix missing include.
28969         Reported by Bruno Haible.
28970
28971 2007-04-23  Bruno Haible  <bruno@clisp.org>
28972
28973         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
28974         Reported by Eric Blake.
28975
28976 2007-04-23  Bruno Haible  <bruno@clisp.org>
28977
28978         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
28979
28980 2007-04-23  Bruno Haible  <bruno@clisp.org>
28981
28982         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
28983
28984 2007-04-23  Bruno Haible  <bruno@clisp.org>
28985
28986         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
28987         Needed on HP-UX 11.
28988
28989 2007-04-16  Eric Blake  <ebb9@byu.net>
28990
28991         Make fflush rely on fpurge.
28992         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
28993         open coding all variants.
28994         * modules/fflush (Depends-on): Add fpurge and unistd.
28995         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
28996         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
28997
28998         Fix --with-tests compilation on cygwin.
28999         * modules/argmatch-tests (Makefile.am): List gnulib library first
29000         in LDADD.
29001         * modules/argp-tests (Makefile.am): Likewise.
29002         * modules/array-list-tests (Makefile.am): Likewise.
29003         * modules/array-oset-tests (Makefile.am): Likewise.
29004         * modules/avltree-list-tests (Makefile.am): Likewise.
29005         * modules/avltree-oset-tests (Makefile.am): Likewise.
29006         * modules/avltreehash-list-tests (Makefile.am): Likewise.
29007         * modules/carray-list-tests (Makefile.am): Likewise.
29008         * modules/dirname-tests (Makefile.am): Likewise.
29009         * modules/frexp-tests (Makefile.am): Likewise.
29010         * modules/isnanl-tests (Makefile.am): Likewise.
29011         * modules/linked-list-tests (Makefile.am): Likewise.
29012         * modules/linkedhash-list-tests (Makefile.am): Likewise.
29013         * modules/lock-tests (Makefile.am): Likewise.
29014         * modules/rbtree-list-tests (Makefile.am): Likewise.
29015         * modules/rbtree-oset-tests (Makefile.am): Likewise.
29016         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
29017         * modules/tls-tests (Makefile.am): Likewise.
29018         * modules/tsearch-tests (Makefile.am): Likewise.
29019         * modules/xvasprintf-tests (Makefile.am): Likewise.
29020
29021         Fix fpurge for cygwin.
29022         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
29023         value.
29024         * modules/fpurge-tests (Depends-on): Clean up trash.
29025
29026 2007-04-16  Simon Josefsson  <simon@josefsson.org>
29027
29028         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
29029
29030         * m4/autobuild.m4: Re-indent.
29031
29032 2007-04-13  Bruno Haible  <bruno@clisp.org>
29033
29034         * modules/fpurge-tests: New file.
29035         * tests/test-fpurge.c: New file.
29036
29037         * modules/fpurge: New file.
29038         * lib/fpurge.h: New file.
29039         * lib/fpurge.c: New file.
29040         * m4/fpurge.m4: New file.
29041
29042 2007-04-13  Bruno Haible  <bruno@clisp.org>
29043
29044         * modules/fbufmode-tests: New file.
29045         * tests/test-fbufmode.c: New file.
29046
29047         * modules/fbufmode: New file.
29048         * lib/fbufmode.h: New file.
29049         * lib/fbufmode.c: New file.
29050         * m4/fbufmode.m4: New file.
29051
29052 2007-04-13  Bruno Haible  <bruno@clisp.org>
29053
29054         * modules/fwritable-tests: New file.
29055         * tests/test-fwritable.c: New file.
29056
29057         * modules/fwritable: New file.
29058         * lib/fwritable.h: New file.
29059         * lib/fwritable.c: New file.
29060         * m4/fwritable.m4: New file.
29061
29062 2007-04-13  Bruno Haible  <bruno@clisp.org>
29063
29064         * modules/freadable-tests: New file.
29065         * tests/test-freadable.c: New file.
29066
29067         * modules/freadable: New file.
29068         * lib/freadable.h: New file.
29069         * lib/freadable.c: New file.
29070         * m4/freadable.m4: New file.
29071
29072 2007-04-13  Bruno Haible  <bruno@clisp.org>
29073
29074         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
29075         MOSTLYCLEANFILES.
29076
29077 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
29078
29079         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
29080         gzip bootstrap.conf to avoid dragging in i18n machinery.
29081         (gnulib_tool_option): Use it.
29082
29083 2007-04-13  Bruno Haible  <bruno@clisp.org>
29084
29085         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
29086         %F directives.
29087         * tests/test-vasprintf-posix.c (test_function): Likewise.
29088         * tests/test-snprintf-posix.h (test_function): Likewise.
29089         * tests/test-sprintf-posix.h (test_function): Likewise.
29090         * tests/test-fprintf-posix.h (test_function): Likewise.
29091         * tests/test-printf-posix.h (test_function): Likewise.
29092         * tests/test-fprintf-posix.out: Likewise.
29093
29094 2007-04-13  Bruno Haible  <bruno@clisp.org>
29095
29096         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
29097         * modules/tls-tests (configure.ac): Likewise.
29098         Reported by Arto C. Nirkko <anirkko@insel.ch>.
29099
29100 2007-04-13  Bruno Haible  <bruno@clisp.org>
29101
29102         * lib/tls.c (glthread_tls_get): Fix return type.
29103         Patch by Arto C. Nirkko <anirkko@insel.ch>.
29104
29105 2007-04-12  Eric Blake  <ebb9@byu.net>
29106
29107         * modules/gettime (Depends-on): Remove gettime.
29108         Reported by Dmitry V. Levin.
29109
29110 2007-04-12  Bruno Haible  <bruno@clisp.org>
29111
29112         * modules/fflush (Include): Mention <stdio.h>.
29113         * modules/strtoimax (Include): Mention <inttypes.h>.
29114         * modules/strtoumax (Include): Likewise.
29115
29116 2007-04-12  Eric Blake  <ebb9@byu.net>
29117
29118         * .cvsignore: New file.
29119         * .gitignore: Likewise.
29120
29121 2007-04-12  Bruno Haible  <bruno@clisp.org>
29122
29123         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
29124         not before, since $(LDADD) often contains libgnu.a.
29125         * modules/striconv-tests (test_striconv_LDADD): Likewise.
29126         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
29127         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
29128         Needed on Cygwin.
29129
29130 2007-04-12  Eric Blake  <ebb9@byu.net>
29131
29132         Work around glibc's failure to flush stdin on fclose.
29133         * lib/closein.c (close_stdin): Flush stdin before closing.
29134
29135         Work around glibc's failure to reset seekable stdin on exit.
29136         * modules/closein: New module.
29137         * lib/closein.c: New file.
29138         * lib/closein.h: Likewise.
29139         * m4/closein.m4: Likewise.
29140         * MODULES.html.sh (File stream based Input/Output): Document it.
29141
29142 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29143
29144         * gnulib-tool: Rename generated 'autobuild' script to
29145         'do-autobuild' in --create-megatestdir output.
29146
29147         * doc/gnulib.texi (Build robot for gnulib): Fix.
29148
29149 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29150
29151         * modules/sysexits (Depends-on): Add absolute-header.
29152
29153 2007-04-12  Eric Blake  <ebb9@byu.net>
29154
29155         No need to preserve errno on success.
29156         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
29157         Reported by Bruno Haible.
29158
29159 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29160
29161         * MODULES.html.sh (Support for maintaining and releasing
29162         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
29163
29164 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29165
29166         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
29167
29168 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29169
29170         * modules/autobuild: New module.
29171
29172         * m4/autobuild.m4: New file.
29173
29174 2007-04-11  Bruno Haible  <bruno@clisp.org>
29175
29176         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
29177         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
29178         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
29179         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
29180         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29181         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29182         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29183         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
29184         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29185         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29186         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
29187         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29188         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29189         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
29190         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29191         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29192         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
29193         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29194         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29195         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
29196         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29197         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29198         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
29199         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29200         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29201         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
29202         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29203         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29204         Reported by Eric Blake.
29205
29206 2007-04-11  Bruno Haible  <bruno@clisp.org>
29207
29208         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
29209
29210 2007-04-10  Bruno Haible  <bruno@clisp.org>
29211
29212         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
29213         for NaN and Infinity. Needed on FreeBSD 6.1.
29214         * tests/test-vasnprintf-posix.c (test_function): Undo last change
29215         regarding results for "%010a" of Infinity and NaN.
29216         * tests/test-vasprintf-posix.c (test_function): Likewise.
29217         * tests/test-snprintf-posix.h (test_function): Likewise.
29218         * tests/test-sprintf-posix.h (test_function): Likewise.
29219         * tests/test-fprintf-posix.h (test_function): Likewise.
29220         * tests/test-printf-posix.h (test_function): Likewise.
29221         * tests/test-fprintf-posix.out: Likewise.
29222
29223 2007-04-10  Bruno Haible  <bruno@clisp.org>
29224
29225         * modules/locale-tests: New file.
29226         * tests/test-locale.c: New file.
29227
29228         * modules/locale: New file.
29229         * lib/locale_.h: New file.
29230         * m4/locale_h.m4: New file.
29231
29232 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
29233             Bruno Haible  <bruno@clisp.org>
29234
29235         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
29236         be determined, test for availability of the copysignf, copysign,
29237         copysignl functions.
29238         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
29239         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
29240         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
29241
29242 2007-04-09  Eric Blake  <ebb9@byu.net>
29243
29244         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
29245         * modules/stdio (Makefile.am): Support fflush.
29246         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
29247         * modules/fflush: New file.
29248         * lib/fflush.c: Likewise.
29249         * m4/fflush.m4: Likewise.
29250         * modules/fflush-tests: New test.
29251         * tests/test-fflush.c: Likewise.
29252         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
29253
29254 2007-04-06  Bruno Haible  <bruno@clisp.org>
29255
29256         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
29257         (VASNPRINTF): Use signbit for faster determination whether to print a
29258         minus sign.
29259         * modules/vasnprintf (Files): Remove lib/float+.h.
29260         * modules/fprintf-posix (Depends-on): Add signbit.
29261         * modules/snprintf-posix (Depends-on): Likewise.
29262         * modules/sprintf-posix (Depends-on): Likewise.
29263         * modules/vasnprintf-posix (Depends-on): Likewise.
29264         * modules/vasprintf-posix (Depends-on): Likewise.
29265         * modules/vfprintf-posix (Depends-on): Likewise.
29266         * modules/vsnprintf-posix (Depends-on): Likewise.
29267         * modules/vsprintf-posix (Depends-on): Likewise.
29268
29269 2007-04-06  Bruno Haible  <bruno@clisp.org>
29270
29271         * tests/test-frexp.c (main): Test also the sign bit of zero results.
29272         * tests/test-frexpl.c (main): Likewise.
29273         * tests/test-ldexpl.c (main): Likewise.
29274         * modules/frexp-tests (Depends-on): Add signbit.
29275         * modules/frexpl-tests (Depdends-on): Likewise.
29276         * modules/ldexpl-tests (Depdends-on): Likewise.
29277
29278 2007-04-06  Bruno Haible  <bruno@clisp.org>
29279
29280         * modules/signbit-tests: New file.
29281         * tests/test-signbit.c: New file.
29282
29283         * modules/signbit: New file.
29284         * lib/signbitf.c: New file.
29285         * lib/signbitd.c: New file.
29286         * lib/signbitl.c: New file.
29287         * m4/signbit.m4: New file.
29288         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
29289         (signbit): New macro.
29290         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
29291         REPLACE_SIGNBIT.
29292         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
29293         REPLACE_FREXPL into math.h.
29294
29295 2007-04-06  Bruno Haible  <bruno@clisp.org>
29296
29297         * modules/isnanf-nolibm-tests: New file.
29298         * tests/test-isnanf.c: New file.
29299
29300         * modules/isnanf-nolibm: New file.
29301         * lib/isnanf.h: New file.
29302         * lib/isnanf.c: New file.
29303         * lib/isnan.c: Consider the USE_FLOAT macro.
29304         * m4/isnanf.m4: New file.
29305
29306 2007-04-06  Bruno Haible  <bruno@clisp.org>
29307
29308         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
29309         (Link): New section.
29310
29311         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
29312
29313 2007-04-06  Bruno Haible  <bruno@clisp.org>
29314
29315         Assume the 'long double' type.
29316         * m4/longdouble.m4: Remove file.
29317         * config/srclist.txt: Don't mention longdouble.m4.
29318         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
29319         * lib/float+.h: Likewise.
29320         * lib/frexp.c: Likewise.
29321         * lib/printf-args.h: Likewise.
29322         * lib/printf-args.c: Likewise.
29323         * lib/printf-frexp.c: Likewise.
29324         * lib/printf-parse.c: Likewise.
29325         * lib/vasnprintf.c: Likewise.
29326         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
29327         * m4/intl.m4: Likewise.
29328         * m4/isnanl.m4: Likewise.
29329         * m4/printf.m4: Likewise.
29330         * m4/printf-frexpl.m4: Likewise.
29331         * m4/vasnprintf.m4: Likewise.
29332         * modules/allocsa (Files): Remove m4/longdouble.m4.
29333         * modules/gettext (Files): Likewise.
29334         * modules/relocatable-prog-wrapper (Files): Likewise.
29335         * modules/vasnprintf (Files): Likewise.
29336         * modules/isnanl (Files): Likewise.
29337         (Include): Simplify.
29338         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
29339         (Include): Simplify.
29340         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
29341         (Include): Simplify.
29342         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
29343         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29344         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
29345         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29346         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29347         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29348         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
29349         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29350         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29351         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29352         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
29353         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29354         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
29355         * tests/test-isnanl.c: Likewise.
29356         * tests/test-snprintf-posix.h: Likewise.
29357         * tests/test-sprintf-posix.h: Likewise.
29358         * tests/test-vasnprintf-posix.c: Likewise.
29359         * tests/test-vasnprintf-posix2.c: Likewise.
29360         * tests/test-vasprintf-posix.c: Likewise.
29361
29362 2007-04-06  Bruno Haible  <bruno@clisp.org>
29363
29364         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
29365         * lib/math_.h [__DECC]: Include the overridden include file through
29366         #include_next, outside the double-inclusion guard.
29367         * lib/stdio_.h [__DECC]: Likewise.
29368         * lib/stdlib_.h [__DECC]: Likewise.
29369         * lib/string_.h [__DECC]: Likewise.
29370         * lib/time_.h [__DECC]: Likewise.
29371         * lib/wchar_.h [__DECC]: Likewise.
29372         * lib/wctype_.h [__DECC]: Likewise.
29373         * lib/inttypes_.h [__DECC]: Likewise.
29374         Reported by Albert Chin <china@thewrittenword.com> in
29375         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
29376
29377 2007-04-04  Eric Blake  <ebb9@byu.net>
29378
29379         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
29380         1.5.x.
29381
29382 2007-04-04  Bruno Haible  <bruno@clisp.org>
29383
29384         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
29385         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
29386
29387 2007-04-04  Bruno Haible  <bruno@clisp.org>
29388
29389         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
29390         results for "%010a" of Infinity and NaN.
29391         * tests/test-vasprintf-posix.c (test_function): Likewise.
29392         * tests/test-snprintf-posix.h (test_function): Likewise.
29393         * tests/test-sprintf-posix.h (test_function): Likewise.
29394         * tests/test-fprintf-posix.h (test_function): Remove these tests.
29395         * tests/test-printf-posix.h (test_function): Likewise.
29396         * tests/test-fprintf-posix.out: Update.
29397         Needed for FreeBSD 6.1.
29398
29399 2007-04-04  Bruno Haible  <bruno@clisp.org>
29400
29401         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
29402         directly used by the gnulib modules nor by gnulib-tool.
29403
29404 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29405
29406         * DEPENDENCIES: Give overall description of version dependency
29407         desirability.  Use more-typical names for apps.
29408         Add shell, coreutils, diffutils, grep, tar, gzip.
29409
29410 2007-04-04  Simon Josefsson  <simon@josefsson.org>
29411
29412         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
29413
29414 2007-04-04  Karl Berry  <karl@gnu.org>
29415
29416         * MODULES.html.sh (func_module): missing '.
29417
29418 2007-04-03  Bruno Haible  <bruno@clisp.org>
29419
29420         * modules/argmatch-tests (Makefile.am): New variable
29421         test_argmatch_LDADD.
29422         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
29423         * modules/array-list-tests (Makefile.am): New variable
29424         test_array_list_LDADD.
29425         * modules/array-oset-tests (Makefile.am): New variable
29426         test_array_oset_LDADD.
29427         * modules/avltree-list-tests (Makefile.am): New variable
29428         test_avltree_list_LDADD.
29429         * modules/avltree-oset-tests (Makefile.am): New variable
29430         test_avltree_oset_LDADD.
29431         * modules/avltreehash-list-tests (Makefile.am): New variable
29432         test_avltreehash_list_LDADD.
29433         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
29434         test_canonicalize_lgpl_LDADD.
29435         * modules/carray-list-tests (Makefile.am): New variable
29436         test_carray_list_LDADD.
29437         * modules/dirname-tests (Makefile.am): New variable
29438         test_dirname_LDADD.
29439         * modules/linked-list-tests (Makefile.am): New variable
29440         test_linked_list_LDADD.
29441         * modules/linkedhash-list-tests (Makefile.am): New variable
29442         test_linkedhash_list_LDADD.
29443         * modules/rbtree-list-tests (Makefile.am): New variable
29444         test_rbtree_list_LDADD.
29445         * modules/rbtree-oset-tests (Makefile.am): New variable
29446         test_rbtree_oset_LDADD.
29447         * modules/rbtreehash-list-tests (Makefile.am): New variable
29448         test_rbtreehash_list_LDADD.
29449         * modules/xvasprintf-tests (Makefile.am): New variable
29450         test_xvasprintf_LDADD.
29451         Reported by Eric Blake.
29452
29453 2007-04-03  Eric Blake  <ebb9@byu.net>
29454
29455         * DEPENDENCIES: Weaken m4 requirements.
29456
29457 2007-04-03  Bruno Haible  <bruno@clisp.org>
29458
29459         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
29460         * modules/isnanl-tests (configure.ac): Likewise.
29461
29462 2007-04-03  Ben Pfaff  <blp@gnu.org>
29463
29464         * modules/iconv_open: Add $(srcdir)/ to source directory
29465         references in Makefile fragments that call gperf, to fix VPATH
29466         builds.
29467
29468 2007-04-03  Bruno Haible  <bruno@clisp.org>
29469
29470         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
29471         * lib/ldexpl.c: Undo last change.
29472
29473 2007-04-03  Bruno Haible  <bruno@clisp.org>
29474
29475         * modules/printf-frexpl (Depends-on): Undo last change.
29476         (Files): Add m4/ldexpl.m4.
29477
29478 2007-04-03  Bruno Haible  <bruno@clisp.org>
29479
29480         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
29481         * modules/isnanl (Link): New section.
29482
29483         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
29484         * modules/frexp (Link): New section.
29485
29486         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
29487         * modules/frexpl (Link): New section.
29488
29489         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
29490         * modules/ldexpl (Link): New section.
29491
29492 2007-04-03  Bruno Haible  <bruno@clisp.org>
29493
29494         * modules/TEMPLATE-EXTENDED: New file.
29495         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
29496
29497 2007-04-03  Bruno Haible  <bruno@clisp.org>
29498
29499         * DEPENDENCIES: New file.
29500         Suggested by Simon Josefsson.
29501
29502 2007-04-03  Bruno Haible  <bruno@clisp.org>
29503
29504         * doc/gnulib.texi: Escape @.
29505
29506 2007-04-03  James Youngman  <jay@gnu.org>
29507         and Paul Eggert  <eggert@cs.ucla.edu>
29508
29509         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
29510         birthtime on all systems that have birthtime, not just those which
29511         use st_birthtimensec rather than st_birthtim.  Putting zero in
29512         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
29513         that the birth time is not available for files on an NFS mount.
29514
29515 2007-04-03  Simon Josefsson  <simon@josefsson.org>
29516
29517         * modules/memxor: Move back from crypto/, suggested by Bruno.
29518         * modules/crypto/hmac-sha1: Fix memxor dependency.
29519
29520         * modules/crypto/gc: Moved from ../.
29521
29522 2007-04-02  Eric Blake  <ebb9@byu.net>
29523
29524         * lib/ldexpl.c (includes): Avoid libm.
29525
29526         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
29527
29528 2007-04-02  Bruno Haible  <bruno@clisp.org>
29529
29530         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
29531         on IRIX.
29532
29533 2007-04-02  Bruno Haible  <bruno@clisp.org>
29534
29535         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
29536         x86 or x86_64 platforms running MacOS X.
29537         Reported by Ryan Schmidt <@ryandesign.com>.
29538
29539 2007-04-02  Bruno Haible  <bruno@clisp.org>
29540
29541         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
29542         i386.
29543
29544 2007-04-01  Simon Josefsson  <simon@josefsson.org>
29545
29546         * modules/crypto/arcfour: Moved from ../.
29547         * modules/crypto/arcfour-tests: Moved from ../.
29548         * modules/crypto/arctwo: Moved from ../.
29549         * modules/crypto/arctwo-tests: Moved from ../.
29550         * modules/crypto/des: Moved from ../.
29551         * modules/crypto/des-tests: Moved from ../.
29552         * modules/crypto/gc-arcfour: Moved from ../.
29553         * modules/crypto/gc-arcfour-tests: Moved from ../.
29554         * modules/crypto/gc-arctwo: Moved from ../.
29555         * modules/crypto/gc-arctwo-tests: Moved from ../.
29556         * modules/crypto/gc-des: Moved from ../.
29557         * modules/crypto/gc-des-tests: Moved from ../.
29558         * modules/crypto/gc-hmac-md5: Moved from ../.
29559         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
29560         * modules/crypto/gc-hmac-sha1: Moved from ../.
29561         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
29562         * modules/crypto/gc-md2: Moved from ../.
29563         * modules/crypto/gc-md2-tests: Moved from ../.
29564         * modules/crypto/gc-md4: Moved from ../.
29565         * modules/crypto/gc-md4-tests: Moved from ../.
29566         * modules/crypto/gc-md5: Moved from ../.
29567         * modules/crypto/gc-md5-tests: Moved from ../.
29568         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
29569         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
29570         * modules/crypto/gc-random: Moved from ../.
29571         * modules/crypto/gc-rijndael: Moved from ../.
29572         * modules/crypto/gc-rijndael-tests: Moved from ../.
29573         * modules/crypto/gc-sha1: Moved from ../.
29574         * modules/crypto/gc-sha1-tests: Moved from ../.
29575         * modules/crypto/gc-tests: Moved from ../.
29576         * modules/crypto/hmac-md5: Moved from ../.
29577         * modules/crypto/hmac-md5-tests: Moved from ../.
29578         * modules/crypto/hmac-sha1: Moved from ../.
29579         * modules/crypto/hmac-sha1-tests: Moved from ../.
29580         * modules/crypto/md2: Moved from ../.
29581         * modules/crypto/md2-tests: Moved from ../.
29582         * modules/crypto/md4: Moved from ../.
29583         * modules/crypto/md4-tests: Moved from ../.
29584         * modules/crypto/md5: Moved from ../.
29585         * modules/crypto/md5-tests: Moved from ../.
29586         * modules/crypto/memxor: Moved from ../.
29587         * modules/crypto/rijndael: Moved from ../.
29588         * modules/crypto/rijndael-tests: Moved from ../.
29589         * modules/crypto/sha1: Moved from ../.
29590
29591 2007-03-30  James Youngman  <jay@gnu.org>
29592
29593         * tests/test-stat-time.c (prepare_test): use chmod() rather than
29594         rename() to change the ctime of a file (because ctime is unaffected
29595         by rename on jfs2 on AIX 5.1).
29596         (main): Start by doing cleanup, in case a previous run failed leaving
29597         test files behind.
29598
29599 2007-03-31  Bruno Haible  <bruno@clisp.org>
29600
29601         Support old proprietary implementations of iconv.
29602         * modules/iconv_open: New file.
29603         * lib/iconv_.h: New file.
29604         * m4/iconv_h.m4: New file.
29605         * lib/iconv_open.c: New file.
29606         * lib/iconv_open-aix.gperf: New file.
29607         * lib/iconv_open-hpux.gperf: New file.
29608         * lib/iconv_open-irix.gperf: New file.
29609         * lib/iconv_open-osf.gperf: New file.
29610         * m4/iconv_open.m4: New file.
29611         * modules/linebreak (Depends-on): Add iconv_open.
29612         * modules/striconv (Depends-on): Likewise.
29613         * modules/striconveh (Depends-on): Likewise.
29614         * modules/unicodeio (Depends-on): Likewise.
29615         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
29616         (iconv_t)(-1).
29617         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
29618         conversion if cd is (iconv_t)(-1).
29619         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
29620         is not possible.
29621
29622 2007-03-31  Bruno Haible  <bruno@clisp.org>
29623
29624         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29625         work on Solaris either. Protect also second use of "autodetect_jp".
29626
29627 2007-03-31  Bruno Haible  <bruno@clisp.org>
29628
29629         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
29630         the function is not present.
29631
29632 2007-03-31  Bruno Haible  <bruno@clisp.org>
29633
29634         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
29635         the function is not present.
29636
29637 2007-03-31  Bruno Haible  <bruno@clisp.org>
29638
29639         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
29640         a bug in HP-UX iconv_open().
29641
29642 2007-03-31  Bruno Haible  <bruno@clisp.org>
29643
29644         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
29645         (Mathematics <math.h>): New section, add fpieee.
29646         (Input/output <stdio.h>): Add fseterr.
29647         (Mathematics <math.h>): New section, add printf-frexp.
29648         (Container data structures): Add sublist.
29649         (Core language properties): Add fpucw, inline.
29650         (Functions for greatest-width integer types <inttypes.h>): Add
29651         imaxabs, imaxdiv, inttypes.
29652         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
29653         isnanl-nolibm, ldexp.
29654         (Mathematics <math.h>): New section, add printf-frexpl.
29655         (Support for systems lacking POSIX:2001): Add fprintf-posix,
29656         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
29657         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
29658         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
29659         (Unicode string functions): Add unistr/u*-mbtoucr.
29660         (Java): Add javacomp-script, javaexec-script.
29661         (C#): Add csharpcomp-script, csharpexec-script.
29662         (Support for building libraries and executables): Add havelib,
29663         relocatable-*.
29664         (Support for maintaining and releasing projects): Renamed from
29665         'Support for maintaining and release projects'. Add announce-gen.
29666
29667 2007-03-31  Bruno Haible  <bruno@clisp.org>
29668
29669         * README: Talk primarily about git.
29670         (git and CVS): Renamed from CVS.
29671         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
29672         gnulib is available through git.
29673         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
29674
29675 2007-03-30  Bruno Haible  <bruno@clisp.org>
29676
29677         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
29678         * lib/poll_.h: Likewise.
29679         * lib/stat_.h: Likewise.
29680         * lib/sys_time_.h: Likewise.
29681         * lib/sysexit_.h: Likewise.
29682         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
29683         * lib/stdbool_.h: Likewise.
29684         * lib/byteswap_.h: Add double-inclusion guard.
29685
29686 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
29687
29688         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
29689
29690 2007-03-30  Karl Berry  <karl@gnu.org>
29691
29692         * config/srclist-update: double space after USA in the license
29693         substitution, since that's how it's usually (?) written.
29694
29695 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29696
29697         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
29698         reported by Bruno Haible.
29699
29700 2007-03-29  Bruno Haible  <bruno@clisp.org>
29701
29702         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
29703         a bug in AIX iconv().
29704
29705 2007-03-29  Bruno Haible  <bruno@clisp.org>
29706
29707         * modules/ldexpl-tests: New file.
29708         * tests/test-ldexpl.c: New file.
29709
29710 2007-03-29  Bruno Haible  <bruno@clisp.org>
29711
29712         * lib/ldexpl.c: Include fpucw.h.
29713         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
29714         multiplication.
29715         * modules/ldexpl (Depends-on): Add fpucw.
29716
29717 2007-03-29  Bruno Haible  <bruno@clisp.org>
29718
29719         * modules/ldexpl: New file.
29720         * m4/ldexpl.m4: New file.
29721         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
29722         set.
29723         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
29724         REPLACE_LDEXPL.
29725         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
29726         REPLACE_LDEXPL.
29727         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
29728         gl_FUNC_LDEXPL_WORKS.
29729         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
29730         * modules/mathl (Files): Remove lib/ldexpl.c.
29731         (Depends-on): Add ldexpl.
29732
29733 2007-03-29  Bruno Haible  <bruno@clisp.org>
29734
29735         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
29736
29737 2007-03-29  Bruno Haible  <bruno@clisp.org>
29738
29739         * tests/test-striconveh.c (main): Don't assume that a direct conversion
29740         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
29741         and possibly also HP-UX.
29742         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29743         work on AIX, IRIX, HP-UX, OSF/1.
29744         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
29745         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
29746         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
29747         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
29748         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
29749         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
29750
29751 2007-03-29  Bruno Haible  <bruno@clisp.org>
29752
29753         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
29754
29755 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29756
29757         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
29758         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
29759
29760 2007-03-29  Eric Blake  <ebb9@byu.net>
29761
29762         * lib/acl-internal.h: Remove redundant include.
29763         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
29764         Cygwin when a file is locked.
29765
29766 2007-03-29  Bruno Haible  <bruno@clisp.org>
29767
29768         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
29769         file.
29770         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
29771
29772 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29773
29774         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
29775         try to remove a parent directory if the child couldn't be removed
29776         (except for the first rmdir, which could fail because the child
29777         doesn't exist).  Problem reported by Jeff Blaine in
29778         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
29779
29780 2007-03-28  Bruno Haible  <bruno@clisp.org>
29781
29782         * lib/striconveh.c (utf8conv_carefully): New function.
29783         (mem_cd_iconveh_internal): Invoke it.
29784
29785 2007-03-28  Bruno Haible  <bruno@clisp.org>
29786
29787         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
29788         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
29789         input.
29790         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
29791         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
29792         unistr/u8-uctomb.
29793
29794 2007-03-28  Bruno Haible  <bruno@clisp.org>
29795
29796         * modules/unistr/u8-mbtoucr: New file.
29797         * lib/unistr/u8-mbtoucr.c: New file.
29798         * modules/unistr/u16-mbtoucr: New file.
29799         * lib/unistr/u16-mbtoucr.c: New file.
29800         * modules/unistr/u16-mbtoucr: New file.
29801         * lib/unistr/u16-mbtoucr.c: New file.
29802         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
29803
29804 2007-03-27  Simon Josefsson  <simon@josefsson.org>
29805             Bruno Haible  <bruno@clisp.org>
29806
29807         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
29808         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
29809         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
29810
29811         * m4/stdio_h.m4: Add stubs for vasprintf too.
29812
29813         * modules/stdio: Support vasprintf in sed command.
29814
29815         * modules/vasprintf: Depend on stdio for prototypes.  Remove
29816         vasprintf.h.  Add stdio module indicator.
29817
29818         * lib/stdio_.h: Declare asprintf and vasprintf, based on
29819         vasprintf.h.
29820
29821         * lib/vasprintf.h: File removed.
29822
29823         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
29824         * lib/vasprintf.c: Ditto.
29825         * lib/xvasprintf.c: Ditto.
29826         * tests/test-vasprintf-posix.c: Ditto.
29827         * tests/test-vasprintf.c: Ditto.
29828
29829 2007-03-27  Bruno Haible  <bruno@clisp.org>
29830
29831         Make vasnprintf multithread-safe.
29832         * lib/vasnprintf.c (decimal_point_char): New function.
29833         (VASNPRINTF): Use it.
29834         Suggested by Simon Josefsson.
29835
29836 2007-03-27  Eric Blake  <ebb9@byu.net>
29837
29838         Support sub-second birthtime on cygwin.
29839         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
29840         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
29841         (get_stat_birthtime): Also work with st_birthtim.
29842
29843 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
29844
29845         * lib/stat-time.h (USE_BIRTHTIME): Remove.
29846         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
29847         (get_stat_birthtime_ns): Do not try to use "spare" fields.
29848         (get_stat_birthtime_ns): Simplify compile-time tests.
29849         (get_stat_birthtime): Change the API to look like
29850         get_stat_mtime etc., except return a negative tv_nsec on error.
29851         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
29852         Don't check for "spare" fields.
29853         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
29854         or for struct stat.st_birthtime, as these tests aren't used.
29855         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
29856
29857 2007-03-27  Bruno Haible  <bruno@clisp.org>
29858
29859         * lib/stat-time.h: Include <sys/stat.h>.
29860
29861 2007-03-27  James Youngman  <jay@gnu.org>
29862
29863         * lib/stat-time.h (get_stat_birthtime): New function for
29864           retrieving st_birthtime as provided by UFS2 (hence *BSD).
29865         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
29866           and its variants.
29867         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
29868         * modules/stat-time-test: New file.
29869         * tests/test-stat-time.c: New test, devised by Bruno Haible.
29870
29871 2007-03-26  Bruno Haible  <bruno@clisp.org>
29872
29873         Better support of signalling NaNs.
29874         * lib/atanl.c: Include isnanl.h.
29875         (atanl): Perform test for NaN at the beginning of the function and
29876         through a call to isnanl.
29877         * lib/cosl.c: Include isnanl.h.
29878         (cosl): Perform test for NaN at the beginning of the function and
29879         through a call to isnanl.
29880         * lib/ldexpl.c: Include isnanl.h.
29881         (ldexpl): Perform test for NaN through a call to isnanl.
29882         * lib/logl.c: Include isnanl.h.
29883         (logl): Perform test for NaN at the beginning of the function and
29884         through a call to isnanl.
29885         * lib/sinl.c: Include isnanl.h.
29886         (sinl): Perform test for NaN at the beginning of the function and
29887         through a call to isnanl.
29888         * lib/sqrtl.c: Include isnanl.h.
29889         (sqrtl): Perform test for NaN at the beginning of the function and
29890         through a call to isnanl.
29891         * lib/tanl.c: Include isnanl.h.
29892         (tanl): Perform test for NaN at the beginning of the function and
29893         through a call to isnanl.
29894         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
29895         * modules/mathl (Depends-on): Add isnanl.
29896
29897 2007-03-26  Eric Blake  <ebb9@byu.net>
29898
29899         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
29900         regression in logic sense of previous patch.
29901
29902 2007-03-26  Bruno Haible  <bruno@clisp.org>
29903
29904         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
29905         unportable shell command "if ! ...".
29906         Reported by Ralf Wildenhues.
29907
29908 2007-03-25  Bruno Haible  <bruno@clisp.org>
29909
29910         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
29911         <sysexits.h> file, and only add EX_CONFIG.
29912         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
29913         absolute file name and whether it is sufficient. Substitute also
29914         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
29915         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
29916         ABSOLUTE_SYSEXITS_H into sysexits.h.
29917
29918 2007-03-25  Bruno Haible  <bruno@clisp.org>
29919
29920         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
29921         hints is NULL.
29922
29923 2007-03-25  Bruno Haible  <bruno@clisp.org>
29924
29925         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
29926         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
29927
29928 2007-03-25  Bruno Haible  <bruno@clisp.org>
29929
29930         * lib/vasnprintf.c: Include langinfo.h.
29931         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
29932         multithread-safe.
29933         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
29934         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
29935         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29936         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29937         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29938         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29939         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29940         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
29941         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29942         Reported by Simon Josefsson.
29943
29944 2007-03-25  Bruno Haible  <bruno@clisp.org>
29945
29946         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
29947         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
29948         * modules/vasnprintf (Depends-on): Add stdint.
29949
29950 2007-03-25  Bruno Haible  <bruno@clisp.org>
29951
29952         * modules/fpieee: New file.
29953         * m4/fpieee.m4: New file.
29954         * modules/isnan-nolibm (Depends-on): Add fpieee.
29955         * modules/isnanl-nolibm (Depends-on): Add fpieee.
29956         * modules/isnanl (Depends-on): Add fpieee.
29957
29958 2007-03-25  Bruno Haible  <bruno@clisp.org>
29959
29960         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
29961
29962 2007-03-25  Bruno Haible  <bruno@clisp.org>
29963
29964         Avoid test failures on IRIX 6.5.
29965         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
29966         (main): Use it.
29967         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
29968         macros.
29969         (main): Use them.
29970
29971 2007-03-25  Bruno Haible  <bruno@clisp.org>
29972
29973         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
29974         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
29975         exists but doesn't work.
29976         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
29977         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
29978         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
29979         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
29980
29981 2007-03-25  Bruno Haible  <bruno@clisp.org>
29982
29983         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
29984         returns inf. Needed on IRIX 6.5.
29985
29986 2007-03-25  Bruno Haible  <bruno@clisp.org>
29987
29988         * tests/test-frexpl.c: Include isnanl-nolibm.h.
29989         (main): Use isnanl instead of x != x idiom.
29990         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
29991
29992         * tests/test-frexp.c: Include isnan.h.
29993         (main): Use isnan instead of x != x idiom.
29994         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
29995
29996 2007-03-25  Bruno Haible  <bruno@clisp.org>
29997
29998         * tests/test-frexp.c (NaN): New function/macro.
29999         (main): Use it instead of 0.0 / 0.0.
30000         * tests/test-isnan.c (NaN): New function/macro.
30001         (main): Use it instead of 0.0 / 0.0.
30002         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
30003         (test_function): Use it instead of 0.0 / 0.0.
30004         * tests/test-vasprintf-posix.c (NaN): New function/macro.
30005         (test_function): Use it instead of 0.0 / 0.0.
30006         * tests/test-snprintf-posix.h (NaN): New function/macro.
30007         (test_function): Use it instead of 0.0 / 0.0.
30008         * tests/test-sprintf-posix.h (NaN): New function/macro.
30009         (test_function): Use it instead of 0.0 / 0.0.
30010         * tests/test-fprintf-posix.h (NaN): New function/macro.
30011         (test_function): Use it instead of 0.0 / 0.0.
30012         * tests/test-printf-posix.h (NaN): New function/macro.
30013         (test_function): Use it instead of 0.0 / 0.0.
30014
30015         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
30016
30017 2007-03-25  Bruno Haible  <bruno@clisp.org>
30018
30019         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
30020
30021 2007-03-25  Bruno Haible  <bruno@clisp.org>
30022
30023         * lib/regexec.c (merge_state_with_log): Make static.
30024
30025 2007-03-25  Bruno Haible  <bruno@clisp.org>
30026
30027         * lib/trigl.c (kernel_rem_pio2): Make static.
30028
30029 2007-03-25  Bruno Haible  <bruno@clisp.org>
30030
30031         * lib/sincosl.c (sincosl_table): Make static.
30032
30033 2007-03-25  Bruno Haible  <bruno@clisp.org>
30034
30035         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
30036         if the compiler does not support C99.
30037
30038 2007-03-25  Bruno Haible  <bruno@clisp.org>
30039
30040         * modules/time (Makefile.am): Ensure all rule action lines start with a
30041         tab.
30042
30043 2007-03-24  Bruno Haible  <bruno@clisp.org>
30044
30045         * modules/tsearch-tests: New file.
30046         * tests/test-tsearch.sh: New file.
30047         * tests/test-tsearch.c: New file, mostly copied from glibc.
30048
30049         * modules/search-tests: New file.
30050         * tests/test-search.c: New file.
30051
30052         * modules/search: New file.
30053         * lib/search_.h: New file, incorporating lib/tsearch.h.
30054         * m4/search_h.m4: New file.
30055         * lib/tsearch.h: Remove file.
30056         * lib/tsearch.c: Include search.h instead of tsearch.h.
30057         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
30058         HAVE_TSEARCH.
30059         * modules/tsearch (Files): Remove lib/tsearch.h.
30060         (Depends-on): Add search.
30061         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
30062         (Include): Change tsearch.h into search.h.
30063
30064 2007-03-24  Bruno Haible  <bruno@clisp.org>
30065
30066         * modules/fpucw: New file.
30067         * lib/fpucw.h: New file.
30068         * lib/frexp.c: Include fpucw.h.
30069         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
30070         (FUNC): Use them.
30071         * lib/printf-frexp.c: Include fpucw.h.
30072         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
30073         (FUNC): Use them.
30074         * lib/vasnprintf.c: Include fpucw.h.
30075         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
30076         'long double' calculations.
30077         * tests/test-frexpl.c: Include fpucw.h.
30078         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
30079         * tests/test-printf-frexpl.c: Include fpucw.h.
30080         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
30081         * modules/frexpl (Depends-on): Add fpucw.
30082         * modules/printf-frexpl (Depends-on): Likewise.
30083         * modules/fprintf-posix (Depends-on): Likewise.
30084         * modules/snprintf-posix (Depends-on): Likewise.
30085         * modules/sprintf-posix (Depends-on): Likewise.
30086         * modules/vasnprintf-posix (Depends-on): Likewise.
30087         * modules/vasprintf-posix (Depends-on): Likewise.
30088         * modules/vfprintf-posix (Depends-on): Likewise.
30089         * modules/vsnprintf-posix (Depends-on): Likewise.
30090         * modules/vsprintf-posix (Depends-on): Likewise.
30091         * modules/frexpl-tests (Depends-on): Likewise.
30092         * modules/printf-frexpl-tests (Depends-on): Likewise.
30093
30094 2007-03-24  Bruno Haible  <bruno@clisp.org>
30095
30096         * lib/float+.h: New file.
30097         * lib/isnan.c: Include float+.h.
30098         (SIZE): New macro.
30099         (FUNC): Compare only SIZE bytes of the value.
30100         * lib/vasnprintf.c: Include float+.h.
30101         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
30102         SIZEOF_LDBL or SIZEOF_DBL bytes.
30103         * modules/isnan-nolibm (Files): Add lib/float+.h.
30104         * modules/isnanl-nolibm (Files): Add lib/float+.h.
30105         * modules/isnanl (Files): Add lib/float+.h.
30106         * modules/vasnprintf (Files): Add lib/float+.h.
30107
30108 2007-03-24  Bruno Haible  <bruno@clisp.org>
30109
30110         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
30111         include isnanl-nolibm.h.
30112
30113 2007-03-24  Bruno Haible  <bruno@clisp.org>
30114
30115         * tests/test-read-file.c (main): Don't produce spurious output for
30116         expected situations. Make the test fail if it encountered unexpected
30117         results.
30118
30119 2007-03-24  Bruno Haible  <bruno@clisp.org>
30120
30121         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
30122         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
30123
30124 2007-03-24  Bruno Haible  <bruno@clisp.org>
30125
30126         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
30127
30128 2007-03-24  Bruno Haible  <bruno@clisp.org>
30129
30130         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
30131         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
30132
30133         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
30134         * modules/utf8-ucs4: Turn into a symbolic link to module
30135         unistr/u8-mbtouc.
30136
30137         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
30138         utf8-ucs4-unsafe.
30139         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
30140         unistr/u8-mbtouc-unsafe.
30141
30142         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
30143         * modules/utf16-ucs4: Turn into a symbolic link to module
30144         unistr/u16-mbtouc.
30145
30146         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
30147         utf16-ucs4-unsafe.
30148         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
30149         unistr/u16-mbtouc-unsafe.
30150
30151         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
30152         * modules/ucs4-utf8: Turn into a symbolic link to module
30153         unistr/u8-ubtomb.
30154
30155         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
30156         * modules/ucs4-utf16: Turn into a symbolic link to module
30157         unistr/u16-ubtomb.
30158
30159 2007-03-24  Bruno Haible  <bruno@clisp.org>
30160
30161         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
30162         Enable the function only if HAVE_INLINE.
30163         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
30164         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
30165         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
30166         Enable the function only if HAVE_INLINE.
30167         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
30168         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
30169         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
30170         Enable the function only if HAVE_INLINE.
30171         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
30172         Enable the function only if HAVE_INLINE.
30173         * modules/utf8-ucs4: Update.
30174         * modules/utf8-ucs4-unsafe: Update.
30175         * modules/utf16-ucs4: Update.
30176         * modules/utf16-ucs4-unsafe: Update.
30177         * modules/ucs4-utf8: Update.
30178         * modules/ucs4-utf16: Update.
30179
30180 2007-03-24  Bruno Haible  <bruno@clisp.org>
30181
30182         * lib/utf8-ucs4.h: Remove file.
30183         * lib/utf8-ucs4-unsafe.h: Remove file.
30184         * lib/utf16-ucs4.h: Remove file.
30185         * lib/utf16-ucs4-unsafe.h: Remove file.
30186         * lib/ucs4-utf8.h: Remove file.
30187         * lib/ucs4-utf16.h: Remove file.
30188         * lib/unistr.h: Include their previous contents.
30189         * m4/utf-ucs4.m4: Remove file.
30190         * m4/ucs4-utf.m4: Remove file.
30191         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
30192         (Depends-on): Add unistr/base.
30193         (configure.ac): Remove gl_UTF_UCS4.
30194         (Makefile.am): Update.
30195         (Include): Change to unistr.h.
30196         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
30197         (Depends-on): Add unistr/base.
30198         (configure.ac): Remove gl_UTF_UCS4.
30199         (Makefile.am): Update.
30200         (Include): Change to unistr.h.
30201         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
30202         (Depends-on): Add unistr/base.
30203         (configure.ac): Remove gl_UTF_UCS4.
30204         (Makefile.am): Update.
30205         (Include): Change to unistr.h.
30206         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
30207         (Depends-on): Add unistr/base.
30208         (configure.ac): Remove gl_UTF_UCS4.
30209         (Makefile.am): Update.
30210         (Include): Change to unistr.h.
30211         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
30212         (Depends-on): Add unistr/base.
30213         (configure.ac): Remove gl_UCS4_UTF.
30214         (Makefile.am): Update.
30215         (Include): Change to unistr.h.
30216         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
30217         (Depends-on): Add unistr/base.
30218         (configure.ac): Remove gl_UCS4_UTF.
30219         (Makefile.am): Update.
30220         (Include): Change to unistr.h.
30221         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
30222         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
30223         utf8-ucs4-unsafe.h.
30224         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
30225         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
30226         utf16-ucs4-unsafe.h.
30227         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
30228         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
30229         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
30230         * lib/unistr/u8-strchr.c: Likewise.
30231         * lib/unistr/u8-strrchr.c: Likewise.
30232         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
30233         * lib/unistr/u16-strchr.c: Likewise.
30234         * lib/unistr/u16-strrchr.c: Likewise.
30235         * lib/striconveh.c: Update.
30236         * lib/linebreak.c: Update.
30237
30238 2007-03-24  Bruno Haible  <bruno@clisp.org>
30239
30240         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
30241         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
30242
30243 2007-03-22  Bruno Haible  <bruno@clisp.org>
30244
30245         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
30246
30247 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
30248
30249         * MODULES.html.sh (File system functions): New module write-any-file.
30250         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
30251         * m4/write-any-file.m4: New files.
30252
30253 2007-03-23  Eric Blake  <ebb9@byu.net>
30254
30255         * gnulib-tool: Rearrange space-tab sequences, since some editors
30256         like to eat them.
30257
30258 2007-03-23  Eric Blake  <ebb9@byu.net>
30259
30260         * lib/version-etc.c (version_etc_va): Update license wording to
30261         be more concise.  Recommended by Richard Stallman.
30262
30263 2007-03-22  Bruno Haible  <bruno@clisp.org>
30264
30265         * lib/poll.c (MSG_PEEK): New fallback definition.
30266
30267 2007-03-22  Bruno Haible  <bruno@clisp.org>
30268
30269         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
30270         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
30271         (main): Update.
30272         Fixes a compilation error on BeOS.
30273
30274 2007-03-22  Bruno Haible  <bruno@clisp.org>
30275
30276         * modules/frexpl-tests: New file.
30277         * tests/test-frexpl.c: New file.
30278
30279         * modules/frexpl: New file.
30280         * m4/frexpl.m4: New file.
30281         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
30282         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
30283         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
30284         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
30285         (Depends-on): Add frexpl. Remove isnanl-nolibm.
30286         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
30287
30288 2007-03-22  Bruno Haible  <bruno@clisp.org>
30289
30290         * lib/frexpl.c: Share code with lib/frexp.c.
30291         * modules/mathl (Files): Add lib/frexp.c.
30292         (Depends-on): Add isnanl-nolibm.
30293
30294 2007-03-22  Bruno Haible  <bruno@clisp.org>
30295
30296         * modules/printf-frexp (Files): Add m4/frexp.m4.
30297         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
30298         only if the found frexp function actually works.
30299
30300 2007-03-22  Bruno Haible  <bruno@clisp.org>
30301
30302         * lib/frexp.c: Remove older implementation that uses divisions.
30303
30304 2007-03-21  Bruno Haible  <bruno@clisp.org>
30305
30306         * modules/frexp-tests: New file.
30307         * tests/test-frexp.c: New file.
30308
30309         * modules/frexp: New file.
30310         * lib/frexp.c: New file.
30311         * m4/frexp.m4: New file.
30312         * lib/math_.h (frexp): New declaration.
30313         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
30314         REPLACE_FREXP.
30315         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
30316
30317 2007-03-21  Bruno Haible  <bruno@clisp.org>
30318
30319         * modules/isnanl-tests: New file.
30320         * tests/test-isnanl.c: New file.
30321
30322         * modules/isnanl: New file.
30323         * lib/isnanl.h: New file.
30324         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
30325         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
30326         gl_FUNC_ISNANL_WORKS.
30327         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
30328         New macros.
30329
30330 2007-03-21  Bruno Haible  <bruno@clisp.org>
30331
30332         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
30333         lib/isnanl.h.
30334         (Include): Update.
30335         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
30336         * lib/vasnprintf.c: Update.
30337         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
30338         tests/test-isnanl.h, remove tests/test-isnanl.c.
30339         (Makefile.am): Update.
30340         * tests/test-isnanl-nolibm.c: New file.
30341         * tests/test-isnanl.h: New file.
30342         * tests/test-isnanl.c: Remove file.
30343
30344 2007-03-21  Jim Meyering  <jim@meyering.net>
30345
30346         When trying to open ".", treat ESTALE like EACCES.
30347         * lib/savewd.c (savewd_save): Resort to forking not just upon
30348         failure with EACCES, but also when errno is ESTALE.
30349
30350 2007-03-20  Bruno Haible  <bruno@clisp.org>
30351
30352         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
30353         Needed on AIX 5.1. Reported by Matthew Woehlke.
30354
30355 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30356
30357         Suggestions by Bruno Haible:
30358         * lib/acl-internal.h: Include "gettext.h" rather than rolling
30359         our own.
30360         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
30361         * modules/acl (Depends-on): Add gettext.
30362
30363 2007-03-19  Bruno Haible  <bruno@clisp.org>
30364
30365         * modules/iconvme: Remove file.
30366         * lib/iconvme.h: Remove file.
30367         * lib/iconvme.c: Remove file.
30368         * m4/iconvme.m4: Remove file.
30369
30370 2007-03-19  Bruno Haible  <bruno@clisp.org>
30371
30372         * doc/relocatable-maint.texi: Break long shell script line.
30373         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30374
30375 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30376
30377         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
30378         handle file_has_acl.
30379         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
30380         * lib/acl.c: Move header inclusions and related macro defns into
30381         lib/acl-internal.h.
30382         (S_ISLNK): Remove defn, since that's now done for us.
30383         (file_has_acl): Move to lib/file-has-acl.c.
30384         Call acl_trivial if available.  This is the crucial part of the fix.
30385         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
30386         shared within the library.  Rewrite a bit, partly to make it compatible
30387         with the GNU coding style.
30388         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
30389         Remove unnecessary double-quotes.
30390         Don't test for acl_to_text; the build will catch that.
30391         Replace acl_entries if it doesn't exist and it is needed.
30392         Check for -lsec and acl_trivial (as used on Solaris 10).
30393         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
30394         lib/file-has-acl.c.
30395         (Depends-on): Add sys_stat, for S_ISLNK.
30396
30397 2007-03-19  Ben Pfaff  <blp@gnu.org>
30398
30399         * doc/gnulib.texi: Fix typos.
30400         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30401
30402 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30403
30404         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
30405         If size is zero here, buf must be zero.
30406
30407 2007-03-19  Simon Josefsson  <simon@josefsson.org>
30408
30409         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
30410         <bruno@clisp.org>.
30411
30412 2007-03-18  Bruno Haible  <bruno@clisp.org>
30413
30414         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
30415         Suggested by Eric Blake.
30416
30417 2007-03-18  Ben Pfaff  <blp@gnu.org>
30418
30419         * doc/relocatable.texi: Recommend using as prefix a directory
30420         that does not exist and will never be created.  Based on
30421         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
30422         and others.
30423
30424 2007-03-17  Bruno Haible  <bruno@clisp.org>
30425
30426         * lib/fchownat.c: Include lchown.h.
30427
30428 2007-03-17  Bruno Haible  <bruno@clisp.org>
30429
30430         Fix endless loop when the given allocated size was > INT_MAX.
30431         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
30432         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
30433         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
30434         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
30435         * lib/sprintf.c (sprintf): Likewise.
30436
30437 2007-03-17  Bruno Haible  <bruno@clisp.org>
30438
30439         * tests/test-argp-2.sh (func_compare): Output a context diff.
30440
30441 2007-03-17  Bruno Haible  <bruno@clisp.org>
30442
30443         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
30444         locale's decimal-point character.
30445
30446 2007-03-17  Bruno Haible  <bruno@clisp.org>
30447
30448         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
30449         before comparing it. Needed because on some platforms (e.g. x86) a
30450         'long double' occupies less bytes than sizeof (long double).
30451
30452 2007-03-17  Bruno Haible  <bruno@clisp.org>
30453
30454         * tests/test-crc.c (main): Make printf statements 64-bit clean.
30455         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
30456         * tests/test-getaddrinfo.c (simple): Likewise.
30457         * tests/test-read-file.c (main): Likewise.
30458
30459 2007-03-17  Bruno Haible  <bruno@clisp.org>
30460
30461         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
30462
30463 2007-03-17  Bruno Haible  <bruno@clisp.org>
30464
30465         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
30466         unused variable.
30467
30468 2007-03-17  Bruno Haible  <bruno@clisp.org>
30469
30470         * tests/test-c-strcasecmp.c: Include c-strcase.h.
30471         * tests/test-c-strncasecmp.c: Likewise.
30472
30473 2007-03-17  Bruno Haible  <bruno@clisp.org>
30474
30475         * modules/stdlib (Depends-on): Add unistd.
30476         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
30477         Needed for MacOS X 10.3.
30478
30479 2007-03-17  Bruno Haible  <bruno@clisp.org>
30480
30481         * lib/unistr/u-strdup.h: Include <stdlib.h>.
30482
30483 2007-03-17  Bruno Haible  <bruno@clisp.org>
30484
30485         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
30486
30487 2007-03-17  Bruno Haible  <bruno@clisp.org>
30488
30489         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
30490         to reflect files copied from gnulib (with or without modifications).
30491         Suggested by Jim Meyering.
30492
30493 2007-03-17  Eric Blake  <ebb9@byu.net>
30494
30495         * NEWS: Document stdlib change from 2007-02-18.
30496
30497 2007-03-17  Jim Meyering  <jim@meyering.net>
30498
30499         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
30500         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
30501         someone uses a name containing shell meta-characters.
30502         Reported by Alfred M. Szmidt.
30503
30504         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
30505
30506 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30507
30508         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
30509         and copy gettext configuration files only if configure.ac contains
30510         a use of AM_GNU_GETTEXT_VERSION.
30511
30512 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30513
30514         * build-aux/bootstrap (gnulib_name): New variable.
30515         (gnulib_tool_options): Use it.
30516
30517 2007-03-13  Simon Josefsson  <simon@josefsson.org>
30518
30519         * tests/test-des.c: Use new namespace.
30520
30521 2007-03-15  Bruno Haible  <bruno@clisp.org>
30522
30523         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
30524         Reported by James Youngman <jay@gnu.org>.
30525
30526 2007-03-15  Bruno Haible  <bruno@clisp.org>
30527
30528         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
30529         declared prototype. Needed with cc on OSF/1 5.1.
30530
30531 2007-03-15  Bruno Haible  <bruno@clisp.org>
30532
30533         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
30534         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
30535         (struct gl_list_implementation): Add dispose_fn argument to the
30536         'create_empty', 'create' methods.
30537         (struct gl_list_impl_base): Add field 'dispose_fn'.
30538         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
30539         argument.
30540         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
30541         dispose_fn argument.
30542         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
30543         dispose_fn on the dropped values.
30544         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
30545         dispose_fn argument.
30546         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
30547         dropped values.
30548         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
30549         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30550         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
30551         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30552         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
30553         argument.
30554         (gl_tree_list_free): Call dispose_fn on the dropped values.
30555         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
30556         the dropped values.
30557         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30558         Add dispose_fn argument.
30559         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
30560         Call dispose_fn on the dropped values.
30561         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
30562         Add dispose_fn argument.
30563         (gl_sublist_create): Initialize the 'dispose_fn' field.
30564         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
30565         * tests/test-array_list.c (main): Update.
30566         * tests/test-carray_list.c (main): Update.
30567         * tests/test-avltree_list.c (main): Update.
30568         * tests/test-rbtree_list.c (main): Update.
30569         * tests/test-avltreehash_list.c (main): Update.
30570         * tests/test-rbtreehash_list.c (main): Update.
30571         * tests/test-linked_list.c (main): Update.
30572         * tests/test-linkedhash_list.c (main): Update.
30573         * tests/test-array_oset.c (main): Update.
30574
30575 2007-03-15  Bruno Haible  <bruno@clisp.org>
30576
30577         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
30578         (gl_oset_create_empty): Add dispose_fn argument.
30579         (struct gl_oset_implementation): Add dispose_fn argument to
30580         'create_empty' method.
30581         (struct gl_oset_impl_base): Add dispose_fn field.
30582         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
30583         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
30584         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
30585         values.
30586         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
30587         (gl_tree_oset_free): Call dispose_fn on the dropped values.
30588         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30589         dropped value.
30590         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30591         dropped value.
30592         * tests/test-array_oset.c (main): Update.
30593         * tests/test-avltree_oset.c (main): Update.
30594         * tests/test-rbtree_oset.c (main): Update.
30595         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
30596
30597 2007-03-13  Bruno Haible  <bruno@clisp.org>
30598
30599         * tests/test-stdbool.c (i): Update after last patch.
30600
30601 2007-03-12  Bruno Haible  <bruno@clisp.org>
30602
30603         * lib/quotearg.c: Include <wctype.h> early, before the definition of
30604         the iswprint macro. Needed on Solaris 2.5.1.
30605
30606 2007-03-12  Bruno Haible  <bruno@clisp.org>
30607
30608         * tests/test-printf-frexp.c (main): Declare x as volatile.
30609
30610 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30611
30612         * doc/gnulib.texi (Build robot for gnulib): New section.
30613
30614 2007-03-12  Jim Meyering  <jim@meyering.net>
30615
30616         * build-aux/bootstrap: New file.
30617         * build-aux/bootstrap.conf: New file, from coreutils.
30618
30619 2007-03-11  Bruno Haible  <bruno@clisp.org>
30620
30621         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
30622
30623 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30624
30625         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
30626         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
30627         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
30628
30629 2007-03-11  Bruno Haible  <bruno@clisp.org>
30630
30631         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
30632         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
30633
30634 2007-03-11  Bruno Haible  <bruno@clisp.org>
30635
30636         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
30637         formula. Needed for SunPRO C 5.0.
30638
30639 2007-03-11  Bruno Haible  <bruno@clisp.org>
30640
30641         * modules/long-options (Depends-on): Add getopt.
30642
30643 2007-03-11  Bruno Haible  <bruno@clisp.org>
30644
30645         * modules/modechange (Depends-on): Add stdbool.
30646
30647 2007-03-11  Bruno Haible  <bruno@clisp.org>
30648
30649         * modules/i-ring (Depends-on): Add stdbool.
30650
30651 2007-03-11  Bruno Haible  <bruno@clisp.org>
30652
30653         * modules/gc-des (Depends-on): Add stdbool.
30654
30655 2007-03-11  Bruno Haible  <bruno@clisp.org>
30656
30657         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
30658
30659 2007-03-11  Bruno Haible  <bruno@clisp.org>
30660
30661         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
30662
30663 2007-03-11  Bruno Haible  <bruno@clisp.org>
30664
30665         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
30666
30667 2007-03-11  Bruno Haible  <bruno@clisp.org>
30668
30669         * lib/vasnprintf.c (sprintf): Undefine.
30670
30671 2007-03-11  Bruno Haible  <bruno@clisp.org>
30672
30673         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
30674         initializers in SunPRO C and Compaq C compilers.
30675
30676 2007-03-11  Bruno Haible  <bruno@clisp.org>
30677
30678         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
30679         decrementing code ANSI C compliant.
30680
30681 2007-03-11  Bruno Haible  <bruno@clisp.org>
30682
30683         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
30684         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
30685
30686 2007-03-11  Bruno Haible  <bruno@clisp.org>
30687
30688         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
30689         <stdbool.h> substitute doesn't pass.
30690
30691 2007-03-11  Bruno Haible  <bruno@clisp.org>
30692
30693         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
30694
30695 2007-03-11  Bruno Haible  <bruno@clisp.org>
30696
30697         * gnulib-tool (func_create_megatestdir): Create also an autobuild
30698         script, for submission to autobuild.josefsson.org.
30699
30700 2007-03-10  Bruno Haible  <bruno@clisp.org>
30701
30702         * modules/canonicalize-lgpl-tests: New file.
30703         * tests/test-canonicalize-lgpl.sh: New file.
30704         * tests/test-canonicalize-lgpl.c: New file.
30705
30706         * modules/c-strcase-tests: New file.
30707         * tests/test-c-strcase.sh: New file.
30708         * tests/test-c-strcasecmp.c: New file.
30709         * tests/test-c-strncasecmp.c: New file.
30710
30711         * modules/atexit-tests: New file.
30712         * tests/test-atexit.sh: New file.
30713         * tests/test-atexit.c: New file.
30714
30715 2007-03-10  Bruno Haible  <bruno@clisp.org>
30716
30717         * tests/test-binary-io.sh: Use temporary filenames that are not so
30718         likely to clash with those of other tests (in a parallel make).
30719         * tests/test-binary-io.c: Likewise.
30720
30721 2007-03-10  Bruno Haible  <bruno@clisp.org>
30722
30723         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
30724         fallback; use #error instead.
30725         Suggested by Simon Josefsson.
30726
30727 2007-03-10  Bruno Haible  <bruno@clisp.org>
30728
30729         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
30730         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
30731         first and the last.
30732
30733 2007-03-10  Bruno Haible  <bruno@clisp.org>
30734
30735         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
30736
30737 2007-03-10  Bruno Haible  <bruno@clisp.org>
30738
30739         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
30740         "make distcheck".
30741         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
30742         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
30743         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
30744
30745 2007-03-10  Bruno Haible  <bruno@clisp.org>
30746
30747         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
30748         variable.
30749         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
30750         variable.
30751
30752 2007-03-09  Eric Blake  <ebb9@byu.net>
30753         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
30754
30755         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
30756         types are not being provided by gnulib.
30757         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
30758         types are supported.
30759
30760 2007-03-10  Bruno Haible  <bruno@clisp.org>
30761
30762         * lib/stdio_.h (__attribute__): New macro.
30763         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
30764         vsprintf): Specify __attribute__ __format__ for GCC.
30765         Suggested by Eric Blake.
30766
30767 2007-03-09  Bruno Haible  <bruno@clisp.org>
30768
30769         * modules/printf-posix-tests: New file.
30770         * tests/test-printf-posix.sh: New file.
30771         * tests/test-printf-posix.c: New file.
30772
30773         * modules/printf-posix: New file.
30774         * lib/printf.c: New file.
30775         * m4/printf-posix-rpl.m4: New file.
30776         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
30777         REPLACE_PRINTF.
30778         * lib/stdio_.h (printf): New declaration.
30779         (format, __format__, ____printf____, ____scanf____, ____strftime____,
30780         ____strfmon____): New macros.
30781         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
30782         REPLACE_PRINTF.
30783
30784 2007-03-09  Bruno Haible  <bruno@clisp.org>
30785
30786         * tests/test-vasnprintf-posix2.sh: New file.
30787         * tests/test-vasnprintf-posix2.c: New file.
30788         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
30789         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
30790         (Makefile.am): Activate test-vasnprintf-posix2.sh.
30791
30792         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
30793         a locale dependent decimal point, rather than always '.'.
30794
30795 2007-03-09  Eric Blake  <ebb9@byu.net>
30796
30797         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
30798         spite of platforms like Tandem/NSK that define it to -1.
30799
30800 2007-03-08  Bruno Haible  <bruno@clisp.org>
30801
30802         * modules/vprintf-posix-tests: New file.
30803         * tests/test-vprintf-posix.sh: New file.
30804         * tests/test-vprintf-posix.c: New file.
30805         * tests/test-printf-posix.h: New file.
30806
30807         * modules/vprintf-posix: New file.
30808         * lib/vprintf.c: New file.
30809         * m4/vprintf-posix.m4: New file.
30810         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
30811         REPLACE_VPRINTF.
30812         * lib/stdio_.h (vprintf): New declaration.
30813         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
30814         REPLACE_VPRINTF.
30815
30816 2007-03-08  Bruno Haible  <bruno@clisp.org>
30817
30818         * modules/fprintf-posix-tests: New file.
30819         * tests/test-fprintf-posix.sh: New file.
30820         * tests/test-fprintf-posix.c: New file.
30821
30822         * modules/fprintf-posix: New file.
30823         * lib/fprintf.c: New file.
30824         * m4/fprintf-posix.m4: New file.
30825         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
30826         REPLACE_FPRINTF.
30827         * lib/stdio_.h (fprintf): New declaration.
30828         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
30829         REPLACE_FPRINTF.
30830
30831 2007-03-08  Bruno Haible  <bruno@clisp.org>
30832
30833         * modules/vfprintf-posix-tests: New file.
30834         * tests/test-vfprintf-posix.sh: New file.
30835         * tests/test-vfprintf-posix.c: New file.
30836         * tests/test-fprintf-posix.h: New file.
30837         * tests/test-fprintf-posix.out: New file.
30838
30839         * modules/vfprintf-posix: New file.
30840         * lib/vfprintf.c: New file.
30841         * m4/vfprintf-posix.m4: New file.
30842         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
30843         REPLACE_VFPRINTF.
30844         * lib/stdio_.h (vfprintf): New declaration.
30845         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
30846         REPLACE_VFPRINTF.
30847
30848 2007-03-08  Bruno Haible  <bruno@clisp.org>
30849
30850         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
30851
30852 2007-03-08  Bruno Haible  <bruno@clisp.org>
30853
30854         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
30855         instead of 'expr' invocations.
30856         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30857         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30858         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30859         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30860         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30861         Suggested by Paul Eggert.
30862
30863 2007-03-08  Bruno Haible  <bruno@clisp.org>
30864
30865         * modules/fseterr-tests: New file.
30866         * tests/test-fseterr.c: New file.
30867
30868         * modules/fseterr: New file.
30869         * lib/fseterr.h: New file.
30870         * lib/fseterr.c: New file.
30871
30872 2007-03-08  Bruno Haible  <bruno@clisp.org>
30873
30874         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
30875         * lib/getopt_.h: Likewise.
30876         * lib/mbswidth.h: Likewise.
30877         * lib/setenv.h: Likewise.
30878         * lib/vasnprintf.h: Likewise.
30879         * lib/vasprintf.h: Likewise.
30880         * lib/verror.h: Likewise.
30881         * lib/xsetenv.h: Likewise.
30882         * lib/xvasprintf.h: Likewise.
30883
30884 2007-03-08  Jim Meyering  <jim@meyering.net>
30885
30886         * users.txt: Add parted.
30887
30888         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
30889
30890 2007-03-07  Bruno Haible  <bruno@clisp.org>
30891
30892         * m4/printf.m4: Make the shell script snippets copy&pastable.
30893
30894 2007-03-02  Bruno Haible  <bruno@clisp.org>
30895
30896         * lib/netinet_in_.h: New file.
30897         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
30898         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
30899         * modules/netinet_in (Files): Add lib/netinet_in_.h.
30900         (Depends-on): Add absolute-header.
30901         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
30902         into netinet/in.h.
30903
30904 2007-03-03  Bruno Haible  <bruno@clisp.org>
30905
30906         * lib/sys_select_.h: New file.
30907         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
30908         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
30909         * modules/sys_select (Files): Add lib/sys_select_.h.
30910         (Depends-on): Add absolute-header.
30911         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
30912         into sys/select.h.
30913
30914 2007-03-02  Bruno Haible  <bruno@clisp.org>
30915
30916         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
30917         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
30918         values.
30919         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
30920         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
30921         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
30922         * modules/sys_socket (Depends-on): Add absolute-header.
30923         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
30924         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
30925         (Include): Remove requirement of inclusion of <sys/types.h>.
30926
30927 2007-03-02  Bruno Haible  <bruno@clisp.org>
30928
30929         * lib/byteswap_.h (bswap_32): Fix formula.
30930
30931 2007-03-06  Bruno Haible  <bruno@clisp.org>
30932
30933         * modules/sprintf-posix-tests: New file.
30934         * tests/test-sprintf-posix.c: New file.
30935
30936         * modules/sprintf-posix: New file.
30937         * lib/sprintf.c: New file.
30938         * m4/sprintf-posix.m4: New file.
30939         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
30940         REPLACE_SPRINTF.
30941         * lib/stdio_.h (sprintf): New declaration.
30942         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
30943         REPLACE_SPRINTF.
30944
30945 2007-03-06  Bruno Haible  <bruno@clisp.org>
30946
30947         * modules/vsprintf-posix-tests: New file.
30948         * tests/test-vsprintf-posix.c: New file.
30949         * tests/test-sprintf-posix.h: New file.
30950
30951         * modules/vsprintf-posix: New file.
30952         * lib/vsprintf.c: New file.
30953         * m4/vsprintf-posix.m4: New file.
30954         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
30955         REPLACE_VSPRINTF.
30956         * lib/stdio_.h (vsprintf): New declaration.
30957         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
30958         REPLACE_VSPRINTF.
30959
30960 2007-03-06  Bruno Haible  <bruno@clisp.org>
30961
30962         * modules/vsnprintf (Depend-on): Remove minmax.
30963
30964 2007-03-06  Bruno Haible  <bruno@clisp.org>
30965
30966         * modules/snprintf-posix-tests: New file.
30967         * tests/test-snprintf-posix.c: New file.
30968
30969         * modules/snprintf-posix: New file.
30970         * m4/snprintf-posix.m4: New file.
30971         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
30972         gl_FUNC_SNPRINTF.
30973         (gl_FUNC_SNPRINTF): Invoke it.
30974         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
30975         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
30976         is set.
30977         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
30978
30979 2007-03-06  Bruno Haible  <bruno@clisp.org>
30980
30981         * modules/vsnprintf-posix-tests: New file.
30982         * tests/test-vsnprintf-posix.c: New file.
30983         * tests/test-snprintf-posix.h: New file.
30984
30985         * modules/vsnprintf-posix: New file.
30986         * m4/vsnprintf-posix.m4: New file.
30987         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
30988         gl_FUNC_VSNPRINTF.
30989         (gl_FUNC_VSNPRINTF): Invoke it.
30990         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
30991         * lib/stdio_.h (vsnprintf): Define as a replacement if
30992         REPLACE_VSNPRINTF is set.
30993         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
30994
30995 2007-03-06  Bruno Haible  <bruno@clisp.org>
30996
30997         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
30998         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
30999
31000 2007-03-06  Bruno Haible  <bruno@clisp.org>
31001
31002         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
31003         (asinl): Declare also if HAVE_DECL_ASINL is set.
31004         (atanl): Declare also if HAVE_DECL_ATANL is set.
31005         (ceill): Declare also if HAVE_DECL_CEILL is set.
31006         (cosl): Declare also if HAVE_DECL_COSL is set.
31007         (expl): Declare also if HAVE_DECL_EXPL is set.
31008         (floorl): Declare also if HAVE_DECL_FLOORL is set.
31009         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
31010         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
31011         (logl): Declare also if HAVE_DECL_LOGL is set.
31012         (sinl): Declare also if HAVE_DECL_SINL is set.
31013         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
31014         (tanl): Declare also if HAVE_DECL_TANL is set.
31015         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
31016         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
31017         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
31018         declaration of frexpl, ldexpl.
31019         * modules/printf-frexpl (Depends-on): Add math.
31020         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
31021
31022 2007-03-05  Bruno Haible  <bruno@clisp.org>
31023
31024         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
31025         frexpl and ldexpl are declared.
31026         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
31027
31028 2007-03-05  Bruno Haible  <bruno@clisp.org>
31029
31030         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
31031         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
31032
31033 2007-03-05  Bruno Haible  <bruno@clisp.org>
31034
31035         * lib/stdio_.h: Include <stddef.h>.
31036
31037 2007-03-05  Bruno Haible  <bruno@clisp.org>
31038
31039         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
31040
31041 2007-03-05  Bruno Haible  <bruno@clisp.org>
31042
31043         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
31044         NetBSD 4, from Ralf Wildenhues.
31045
31046 2007-03-04  Bruno Haible  <bruno@clisp.org>
31047
31048         * lib/vasprintf.h: Update #if logic for the case when the functions
31049         exist but are overridden.
31050
31051 2007-03-04  Bruno Haible  <bruno@clisp.org>
31052
31053         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
31054         implementations: glibc-2.4 and MacOS X 10.3.
31055         * tests/test-vasnprintf-posix.c (test_function): Test also the case
31056         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
31057         * tests/test-vasprintf-posix.c (test_function): Likewise.
31058
31059 2007-03-04  Bruno Haible  <bruno@clisp.org>
31060
31061         * modules/vasprintf-posix-tests: New file.
31062         * tests/test-vasprintf-posix.c: New file.
31063
31064         * modules/vasprintf-posix: New file.
31065         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
31066         defined.
31067         * m4/vasprintf-posix.m4: New file.
31068         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
31069         gl_FUNC_VASPRINTF.
31070         (gl_FUNC_VASPRINTF): Invoke it.
31071         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
31072         here.
31073         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
31074
31075 2007-03-04  Bruno Haible  <bruno@clisp.org>
31076
31077         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
31078         REPLACE_GETTIMEOFDAY.
31079         * modules/sys_time (Makefile.am): Likewise.
31080         * m4/sys_time_h.m4: Likewise.
31081         * m4/gettimeofday.m4: Likewise.
31082
31083 2007-03-04  Bruno Haible  <bruno@clisp.org>
31084
31085         * modules/vasnprintf-posix-tests: New file.
31086         * tests/test-vasnprintf-posix.c: New file.
31087
31088         * modules/vasnprintf-posix: New file.
31089         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
31090         printf-frexpl.h.
31091         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
31092         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
31093         REPLACE_VASNPRINTF is defined.
31094         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
31095         gl_FUNC_VASNPRINTF.
31096         (gl_FUNC_VASNPRINTF): Invoke it.
31097         * m4/vasnprintf-posix.m4: New file.
31098         * m4/printf.m4: New file.
31099
31100 2007-03-04  Bruno Haible  <bruno@clisp.org>
31101
31102         Compile progreloc.c only if --enable-relocatable is specified.
31103         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
31104         if --enable-relocatable was specified.
31105         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
31106         lib_SOURCES.
31107
31108 2007-03-04  Jim Meyering  <jim@meyering.net>
31109
31110         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
31111         Use it consistently, rather than enumerating errno constants.
31112
31113 2007-03-04  Bruno Haible  <bruno@clisp.org>
31114
31115         * modules/xvasprintf-tests: New file.
31116         * tests/test-xvasprintf.c: New file.
31117
31118         * modules/vasprintf-tests: New file.
31119         * tests/test-vasprintf.c: New file.
31120
31121         * modules/vasnprintf-tests: New file.
31122         * tests/test-vasnprintf.c: New file.
31123
31124         * modules/vsnprintf-tests: New file.
31125         * tests/test-vsnprintf.c: New file.
31126
31127         * modules/snprintf-tests: New file.
31128         * tests/test-snprintf.c: New file.
31129
31130 2007-03-04  Bruno Haible  <bruno@clisp.org>
31131
31132         Compile relocatable.c only if --enable-relocatable is specified.
31133         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
31134         gl_RELOCATABLE_LIBRARY.
31135         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
31136         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
31137         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
31138         gl_RELOCATABLE_LIBRARY.
31139         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
31140         (Makefile.am): Remove lib_SOURCES.
31141         * modules/relocatable-lib-lgpl (configure.ac): Invoke
31142         gl_RELOCATABLE_LIBRARY.
31143         (Makefile.am): Remove lib_SOURCES.
31144         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
31145         always.
31146         * modules/relocatable-prog-wrapper (configure.ac): Invoke
31147         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
31148
31149 2007-03-04  Bruno Haible  <bruno@clisp.org>
31150
31151         * modules/argmatch-tests: New file.
31152         * tests/test-argmatch.c: New file.
31153
31154         * tests/test-allocsa.c (main): Halve the number of loop runs.
31155
31156         * modules/alloca-opt-tests: New file.
31157         * tests/test-alloca-opt.c: New file.
31158
31159 2007-03-04  Jim Meyering  <jim@meyering.net>
31160
31161         Work around difference between Linux ACLs and Solaris 10 ZFS.
31162         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
31163         for EINVAL.
31164
31165 2007-03-03  Bruno Haible  <bruno@clisp.org>
31166
31167         * modules/relocatable-prog (Depends-on): Add back progreloc's
31168         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
31169
31170 2007-03-03  Bruno Haible  <bruno@clisp.org>
31171
31172         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
31173         * modules/relocatable-lib: New file.
31174
31175 2007-03-03  Bruno Haible  <bruno@clisp.org>
31176
31177         * modules/relocatable-prog: Renamed from modules/relocatable.
31178         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
31179
31180 2007-03-03  Bruno Haible  <bruno@clisp.org>
31181
31182         * modules/relocatable-script (Files): Add doc/relocatable.texi,
31183         m4/relocatable-lib.m4.
31184         (Depends-on): Remove 'relocatable'.
31185         (configure.ac): Add gl_RELOCATABLE_NOP.
31186
31187 2007-03-03  Bruno Haible  <bruno@clisp.org>
31188
31189         * modules/relocatable-prog-wrapper: New file.
31190         * modules/relocatable (Depends-on): Add it. Remove all other
31191         dependencies except progname.
31192         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
31193
31194         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
31195         (gl_FUNC_STRERROR): Nop.
31196         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
31197
31198         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
31199         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
31200
31201         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
31202         (gl_FUNC_READLINK): Update.
31203
31204         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
31205
31206 2007-03-03  Bruno Haible  <bruno@clisp.org>
31207
31208         * lib/xreadlink.c: Include <unistd.h> unconditionally.
31209         * modules/xreadlink (Depends-on): Add unistd.
31210         * modules/xreadlink-with-size (Depends-on): Likewise.
31211
31212 2007-03-03  Bruno Haible  <bruno@clisp.org>
31213
31214         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
31215         extracted from gt_FUNC_SETENV.
31216         (gt_FUNC_SETENV): Remove macro.
31217         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
31218         remove gt_FUNC_SETENV.
31219
31220 2007-03-03  Bruno Haible  <bruno@clisp.org>
31221
31222         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
31223         ENABLE_RELOCATABLE here.
31224         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
31225
31226 2007-03-03  Bruno Haible  <bruno@clisp.org>
31227
31228         * modules/rbtreehash-list-tests (Depends-on): Add progname.
31229         * tests/test-rbtreehash_list.c: Include progname.h.
31230         (main): Call set_program_name.
31231
31232         * modules/rbtree-oset-tests (Depends-on): Add progname.
31233         * tests/test-rbtree_oset.c: Include progname.h.
31234         (main): Call set_program_name.
31235
31236         * modules/rbtree-list-tests (Depends-on): Add progname.
31237         * tests/test-rbtree_list.c: Include progname.h.
31238         (main): Call set_program_name.
31239
31240         * modules/linked-list-tests (Depends-on): Add progname.
31241         * tests/test-linked_list.c: Include progname.h.
31242         (main): Call set_program_name.
31243
31244 2007-03-03  Bruno Haible  <bruno@clisp.org>
31245
31246         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
31247         All uses of __restrict changed to _Restrict_.
31248         * lib/glob_.h (__restrict): Remove macro.
31249
31250 2007-03-02  Bruno Haible  <bruno@clisp.org>
31251
31252         * modules/gettext (configure.ac): Require gettext infrastructure
31253         from version 0.16.1.
31254
31255 2007-03-02  Bruno Haible  <bruno@clisp.org>
31256
31257         * modules/linkedhash-list-tests (Depends-on): Add progname.
31258         * tests/test-linkedhash_list.c: Include progname.h.
31259         (main): Call set_program_name.
31260
31261         * modules/carray-list-tests (Depends-on): Add progname.
31262         * tests/test-carray_list.c: Include progname.h.
31263         (main): Call set_program_name.
31264
31265         * modules/avltreehash-list-tests (Depends-on): Add progname.
31266         * tests/test-avltreehash_list.c: Include progname.h.
31267         (main): Call set_program_name.
31268
31269         * modules/avltree-oset-tests (Depends-on): Add progname.
31270         * tests/test-avltree_oset.c: Include progname.h.
31271         (main): Call set_program_name.
31272
31273         * modules/avltree-list-tests (Depends-on): Add progname.
31274         * tests/test-avltree_list.c: Include progname.h.
31275         (main): Call set_program_name.
31276
31277         * modules/array-oset-tests (Depends-on): Add progname.
31278         * tests/test-array_oset.c: Include progname.h.
31279         (main): Call set_program_name.
31280
31281         * modules/array-list-tests (Depends-on): Add progname.
31282         * tests/test-array_list.c: Include progname.h.
31283         (main): Call set_program_name.
31284
31285         * modules/argp-tests (Depends-on): Add progname.
31286         * tests/test-argp.c: Include argp.h first. Include progname.h.
31287         (main): Call set_program_name.
31288
31289 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
31290
31291         * doc/gnulib-tool.texi (Initial import): Reword description of
31292         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
31293         limited effect even if defined after the first system include.
31294
31295 2007-03-01  Bruno Haible  <bruno@clisp.org>
31296
31297         * build-aux/config.libpath: Update to libtool-1.5.22.
31298         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
31299
31300 2007-03-01  Bruno Haible  <bruno@clisp.org>
31301
31302         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
31303         foo_CFLAGS.
31304         Reported by Ralf Wildenhues.
31305
31306 2007-03-01  Bruno Haible  <bruno@clisp.org>
31307
31308         * build-aux/install-reloc: Remove object files left over by some
31309         compilers.
31310         Reported by Ralf Wildenhues.
31311
31312 2007-03-01  Bruno Haible  <bruno@clisp.org>
31313
31314         * build-aux/install-reloc: Break long lines.
31315
31316 2007-03-01  Bruno Haible  <bruno@clisp.org>
31317
31318         * doc/relocatable.texi: Document that it may not work on OpenBSD.
31319         Reported by Ralf Wildenhues.
31320
31321 2007-03-01  Bruno Haible  <bruno@clisp.org>
31322
31323         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
31324         include ordering constraints.
31325
31326 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31327
31328         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
31329         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
31330         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
31331         as another example.
31332         * lib/time_.h: Fix misspelling.
31333         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
31334         Require gl_HEADER_TIME_H_DEFAULTS.
31335         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
31336         * m4/time_r.m4 (gl_TIME_R): Likewise.
31337         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
31338
31339 2007-03-01  Bruno Haible  <bruno@clisp.org>
31340
31341         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
31342         * m4/utimens.m4 (gl_UTIMENS): Likewise.
31343
31344 2007-03-01  Jim Meyering  <jim@meyering.net>
31345
31346         * modules/xreadlink (Maintainer): Add my name.
31347         * modules/xreadlink-with-size (Depends-on): Alphabetize.
31348
31349 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
31350             Bruno Haible  <bruno@clisp.org>
31351
31352         * build-aux/install-reloc: Compile also c-ctype.c.
31353         * build-aux/relocatable.sh.in: New file.
31354         * doc/relocatable.texi: New file.
31355         * doc/relocatable-maint.texi: New file.
31356         * doc/gnulib.texi: Include relocatable-maint.texi.
31357         * lib/progreloc.c: Include unistd.h unconditionally.
31358         * lib/relocwrapper.c: Include unistd.h unconditionally.
31359         Include c-ctype.h.
31360         (add_dotbin): Use c_tolower.
31361         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
31362         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
31363         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
31364         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
31365         to m4/relocatable-lib.m4.
31366         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
31367         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
31368         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
31369         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
31370         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
31371         * modules/relocatable: New file.
31372         * modules/relocatable-lib: New file.
31373         * modules/relocatable-script: New file.
31374
31375 2007-02-28  Bruno Haible  <bruno@clisp.org>
31376
31377         Import --enable-relocatable infrastructure.
31378         * build-aux/config.libpath: New file, from GNU gettext.
31379         * build-aux/install-reloc: New file, from GNU gettext.
31380         * build-aux/reloc-ldflags: New file, from GNU gettext.
31381         * lib/relocatable.h: New file, from GNU gettext.
31382         * lib/relocatable.c: New file, from GNU gettext.
31383         * lib/relocwrapper.c: New file, from GNU gettext.
31384         * m4/relocatable.m4: New file, from GNU gettext.
31385
31386 2007-02-28  Bruno Haible  <bruno@clisp.org>
31387
31388         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
31389
31390         * modules/xreadlink: New file, from GNU gettext with modifications.
31391         * lib/xreadlink.c: New file, from GNU gettext.
31392         * lib/xreadlink.h: Add comments.
31393         (xreadlink): New declaration.
31394
31395         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
31396         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
31397         lib/xreadlink-with-size.c.
31398         (configure.ac): Remove gl_XREADLINK invocation.
31399         (Makefile.am): Augment lib_SOURCES.
31400         * m4/xreadlink.m4: Remove file.
31401         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
31402         (xreadlink_with_size): Renamed from xreadink.
31403         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
31404         * modules/canonicalize (Depends-on): Replace xreadlink with
31405         xreadlink-with-size.
31406         * lib/canonicalize.c (canonicalize_filename_mode): Update.
31407
31408 2007-02-25  Jim Meyering  <jim@meyering.net>
31409
31410         * build-aux/announce-gen: When complaining about excess arguments,
31411         list them.
31412
31413 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31414
31415         * README: Document signed integer overflow situation more
31416         accurately.
31417
31418 2007-02-25  Bruno Haible  <bruno@clisp.org>
31419
31420         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
31421         'a' or 'A' conversion.
31422
31423 2007-02-25  Bruno Haible  <bruno@clisp.org>
31424
31425         * modules/filename: Renamed from modules/pathname.
31426         (Files): Replace lib/pathname.h with lib/filename.h. Replace
31427         lib/concatpath.c with lib/concat-filename.c.
31428         (Makefile.am): Update.
31429         (Include): Replace pathname.h with filename.h.
31430         * lib/filename.h: Renamed from lib/pathname.h.
31431         (concatenated_filename): Renamed from concatenated_pathname.
31432         * lib/concat-filename.c: Renamed from lib/concatpath.c.
31433         (concatenated_filename): Renamed from concatenated_pathname.
31434         * lib/findprog.c: Include filename.h instead of pathname.h.
31435         (find_in_path): Update.
31436         * lib/javacomp.c: Include filename.h instead of pathname.h.
31437         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
31438         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
31439         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
31440         is_oldgcj_14_13_usable, is_javac_usable): Update.
31441         * lib/javaexec.c: Include filename.h instead of pathname.h.
31442         (execute_java_class): Update.
31443         * modules/findprog: Update.
31444         * modules/javacomp: Update.
31445         * modules/javaexec: Update.
31446         * MODULES.html.sh (File system functions): Add 'filename', remove
31447         'pathname'.
31448
31449 2007-02-25  Bruno Haible  <bruno@clisp.org>
31450
31451         * modules/printf-frexpl-tests: New file.
31452         * tests/test-printf-frexpl.c: New file.
31453
31454         * modules/printf-frexpl: New file.
31455         * lib/printf-frexpl.h: New file.
31456         * lib/printf-frexpl.c: New file.
31457         * m4/printf-frexpl.m4: New file.
31458
31459 2007-02-25  Bruno Haible  <bruno@clisp.org>
31460
31461         * modules/printf-frexp-tests: New file.
31462         * tests/test-printf-frexp.c: New file.
31463
31464         * modules/printf-frexp: New file.
31465         * lib/printf-frexp.h: New file.
31466         * lib/printf-frexp.c: New file.
31467         * m4/printf-frexp.m4: New file.
31468
31469 2007-02-25  Bruno Haible  <bruno@clisp.org>
31470
31471         Assume automake >= 1.10 for the tests.
31472         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
31473         * modules/arctwo-tests: Likewise.
31474         * modules/argp-tests: Likewise.
31475         * modules/avltree-list-tests: Likewise.
31476         * modules/avltree-oset-tests: Likewise.
31477         * modules/avltreehash-list-tests: Likewise.
31478         * modules/carray-list-tests: Likewise.
31479         * modules/crc-tests: Likewise.
31480         * modules/des-tests: Likewise.
31481         * modules/gc-arcfour-tests: Likewise.
31482         * modules/gc-arctwo-tests: Likewise.
31483         * modules/gc-des-tests: Likewise.
31484         * modules/gc-hmac-md5-tests: Likewise.
31485         * modules/gc-hmac-sha1-tests: Likewise.
31486         * modules/gc-md2-tests: Likewise.
31487         * modules/gc-md4-tests: Likewise.
31488         * modules/gc-md5-tests: Likewise.
31489         * modules/gc-pbkdf2-sha1-tests: Likewise.
31490         * modules/gc-rijndael-tests: Likewise.
31491         * modules/gc-sha1-tests: Likewise.
31492         * modules/gc-tests: Likewise.
31493         * modules/getaddrinfo-tests: Likewise.
31494         * modules/hmac-md5-tests: Likewise.
31495         * modules/hmac-sha1-tests: Likewise.
31496         * modules/linked-list-tests: Likewise.
31497         * modules/linkedhash-list-tests: Likewise.
31498         * modules/lock-tests: Likewise.
31499         * modules/md2-tests: Likewise.
31500         * modules/md4-tests: Likewise.
31501         * modules/md5-tests: Likewise.
31502         * modules/rbtree-list-tests: Likewise.
31503         * modules/rbtree-oset-tests: Likewise.
31504         * modules/rbtreehash-list-tests: Likewise.
31505         * modules/read-file-tests: Likewise.
31506         * modules/rijndael-tests: Likewise.
31507         * modules/stdint-tests: Likewise.
31508         * modules/tls-tests: Likewise.
31509
31510 2007-02-24  Bruno Haible  <bruno@clisp.org>
31511
31512         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
31513         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
31514         function; instead check whether isnan with a double argument links.
31515         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
31516         function; instead check whether isnan with a 'long double' argument
31517         links.
31518         Reported by Eric Blake <ebb9@byu.net>.
31519
31520 2007-02-24  Bruno Haible  <bruno@clisp.org>
31521
31522         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
31523         defined.
31524         * lib/isnanl.c: Remove all code. Just include isnan.c.
31525         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
31526
31527 2007-02-25  Jim Meyering  <jim@meyering.net>
31528
31529         Avoid conflicting types for 'unsetenv' on FreeBSD.
31530         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
31531         conflicting with FreeBSD's (5.0 and 6.1) function declaration
31532         in stdlib.h.
31533
31534 2007-02-24  Bruno Haible  <bruno@clisp.org>
31535
31536         * modules/isnanl-nolibm-tests: New file.
31537         * tests/test-isnanl.c: New file.
31538
31539         * modules/isnanl-nolibm: New file.
31540         * lib/isnanl.h: New file.
31541         * lib/isnanl.c: New file.
31542         * m4/isnanl.m4: New file.
31543
31544 2007-02-24  Bruno Haible  <bruno@clisp.org>
31545
31546         * modules/isnan-nolibm-tests: New file.
31547         * tests/test-isnan.c: New file.
31548
31549         * modules/isnan-nolibm: New file.
31550         * lib/isnan.h: New file.
31551         * lib/isnan.c: New file.
31552         * m4/isnan.m4: New file.
31553
31554 2007-02-24  Bruno Haible  <bruno@clisp.org>
31555
31556         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
31557         assume that an exponent fits in 20 bits.
31558
31559 2007-02-24  Jim Meyering  <jim@meyering.net>
31560
31561         * m4/regex.m4: Update the description of the configure-time option,
31562         --without-included-regex, to state accurately what the defaults are,
31563         and perhaps to give people an idea why using this option is risky.
31564
31565 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
31566
31567         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
31568         loops on small arguments.  This attempts to avoid the problem
31569         Bruno Haible reported for AIX 4.3.2 in
31570         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
31571
31572 2007-02-23  Bruno Haible  <bruno@clisp.org>
31573
31574         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
31575         Needed for help2man.
31576
31577 2007-02-23  Karl Berry  <karl@gnu.org>
31578
31579         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
31580         exists, foo.h should be cvs-ignored, not committed.
31581
31582 2007-02-23  Eric Blake  <ebb9@byu.net>
31583
31584         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
31585         * lib/stat-time.h (includes): Likewise.
31586         * lib/utimecmp.c (includes): Likewise.
31587         * lib/utimens.h (includes): Likewise.
31588         * lib/getdate.y (includes): Also include "timespec.h" for use
31589         internal to the module.
31590         * modules/utimens (Depends-on): Revert yesterday's patch.
31591         * modules/nanosleep (Depends-on): Add missing dependency.
31592
31593 2007-02-22  Bruno Haible  <bruno@clisp.org>
31594
31595         * lib/glob.c: Don't include getlogin_r.h.
31596
31597 2007-02-22  Jim Meyering  <jim@meyering.net>
31598
31599         * modules/utimens (Depends-on): Add timespec, required for
31600         utimens.h's inclusion of timespec.h.
31601
31602 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
31603
31604         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
31605         long unreadable paths in GNU/Linux.  Problem reported by Andreas
31606         Schwab in
31607         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
31608         I'll try to think of a better way to fix the Solaris problem.
31609
31610         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
31611         like glibc; on Solaris 10, it fails with errno == EINVAL.
31612         POSIX says the behavior is unspecified if the first argument is NULL,
31613         so play it safe and never pass NULL to the system getcwd.
31614
31615 2007-02-21  Jim Meyering  <jim@meyering.net>
31616
31617         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
31618         of gettimeofday.  It would conflict with the one now always
31619         provided via sys_time_.h.  Reported by Matthew Woehlke, as
31620         an IRIX 6.5 build failure.
31621
31622 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
31623
31624         Minor fixups to port to Solaris 10 with Sun C 5.8.
31625         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
31626         * modules/getcwd (Depends-on): Add dirfd.
31627         * lib/putenv.c (putenv): #undef it.
31628         (rpl_putenv): New decl.
31629         (malloc, free): Include <stdlib.h> rather than prototyping separately.
31630
31631 2007-02-20  Bruno Haible  <bruno@clisp.org>
31632
31633         * modules/stdio-tests: New file.
31634         * tests/test-stdio.c: New file.
31635
31636         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
31637         (Depends-on): Add stdio.
31638         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31639         (Include): Use <stdio.h> instead of vsnprintf.h.
31640         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31641         HAVE_DECL_VSNPRINTF.
31642         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
31643
31644         * modules/snprintf (Files): Remove lib/snprintf.h.
31645         (Depends-on): Add stdio.
31646         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31647         (Include): Use <stdio.h> instead of snprintf.h.
31648         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31649         HAVE_DECL_SNPRINTF.
31650         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
31651         * lib/getaddrinfo.c: Likewise.
31652
31653         * modules/stdio: New file.
31654         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
31655         * lib/snprintf.h: Remove file.
31656         * lib/vsnprintf.h: Remove file.
31657         * lib/.cppi-disable: Remove snprintf.h.
31658         * m4/stdio_h.m4: New file.
31659         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
31660
31661 2007-02-20  Jim Meyering  <jim@meyering.net>
31662
31663         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
31664         used by e.g., mingw.  From Bruno Haible.
31665
31666 2007-02-19  Bruno Haible  <bruno@clisp.org>
31667
31668         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
31669         warnings.
31670         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31671
31672 2007-02-19  Bruno Haible  <bruno@clisp.org>
31673
31674         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
31675         from mingw users.
31676
31677 2007-02-19  Bruno Haible  <bruno@clisp.org>
31678
31679         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
31680         warnings.
31681         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
31682
31683 2007-02-19  Jim Meyering  <jim@meyering.net>
31684
31685         Don't use FD after a successful "fdopendir (fd)".
31686         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
31687         Reset it by calling dirfd on the just-obtained DIR*.
31688
31689         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
31690         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
31691
31692 2007-02-18  Bruno Haible  <bruno@clisp.org>
31693
31694         * lib/readlink.c: Include <unistd.h>.
31695         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
31696         HAVE_READLINK.
31697         * modules/readlink (Depends-on): Add unistd.
31698         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31699         (Include): Add <unistd.h>.
31700
31701         * lib/getlogin_r.h: Remove file.
31702         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
31703         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
31704         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
31705         HAVE_DECL_GETLOGIN_R.
31706         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
31707         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31708         (Include): Use <unistd.h> instead of getlogin_r.h.
31709
31710         * lib/getcwd.h: Remove file.
31711         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
31712         * lib/xgetcwd.c: Likewise.
31713         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
31714         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
31715         * modules/getcwd (Files): Remove lib/getcwd.h.
31716         (Depends-on): Add unistd.
31717         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31718         (Include): Use <unistd.h> instad of getcwd.h.
31719
31720         * lib/ftruncate.c: Include <unistd.h> first.
31721         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
31722         Set HAVE_FTRUNCATE.
31723         * modules/ftruncate (Depends-on): Add unistd.
31724         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31725
31726         * lib/fchdir.c: Include <unistd.h> first.
31727         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
31728         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
31729         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
31730         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31731         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
31732
31733         * lib/dup2.c: Include <unistd.h> first.
31734         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
31735         HAVE_DUP2.
31736         * modules/dup2 (Depends-on): Add unistd.
31737         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31738
31739         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
31740         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
31741         REPLACE_CHOWN. Don't define chown as a macro here.
31742         * modules/chown (Depends-on): Add unistd.
31743         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31744
31745         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
31746         Add definition for GL_LINK_WARNING.
31747         (chown, dup2): New declarations.
31748         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
31749         link warning.
31750         (ftruncate): New declaration.
31751         (getcwd): New declaration, taken from old getcwd.h.
31752         (getlogin_r): New declaration, taken from old getlogin_r.h.
31753         (readlink): New declaration.
31754         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
31755         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
31756         (gl_PREREQ_UNISTD): Remove macro.
31757         (gl_UNISTD_MODULE_INDICATOR): New macro.
31758         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
31759         many new variables. Don't set UNISTD_H.
31760         * modules/unistd (Description): Change.
31761         (Depends-on): Add link-warning.
31762         (configure.ac): Update.
31763         (Makefile.am): Create unistd.h always. Substitute many new variables
31764         into it.
31765
31766 2007-02-18  Bruno Haible  <bruno@clisp.org>
31767
31768         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
31769         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
31770         HAVE_GETSUBOPT.
31771         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
31772         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
31773         * lib/getsubopt.h: Remove file.
31774         * modules/getsubopt (Files): Remove lib/getsubopt.h.
31775         (Depends-on): Add stdlib.
31776         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31777         (Includes): Use <stdlib.h> instead of getsubopt.h.
31778         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
31779         Set HAVE_GETSUBOPT.
31780         * lib/getsubopt.c: Don't include getsubopt.h.
31781
31782 2007-02-18  Bruno Haible  <bruno@clisp.org>
31783
31784         * modules/fchdir (Depends-on): Add dup2.
31785
31786 2007-02-18  Bruno Haible  <bruno@clisp.org>
31787
31788         * lib/stdlib_.h: Handle glibc's special invocation convention
31789         specially.
31790
31791 2007-02-18  Bruno Haible  <bruno@clisp.org>
31792
31793         * modules/stdlib-tests: New file.
31794         * tests/test-stdlib.c: New file.
31795
31796         * modules/mkstemp (Files): Remove lib/mkstemp.h.
31797         (Depends-on): Add stdlib.
31798         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31799         (Includes): Use <stdlib.h> instead of mkstemp.h.
31800         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31801         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
31802         * lib/mkstemp.c: Don't include mkstemp.h.
31803         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
31804         * lib/stdlib--.h: Don't include mkstemp.h.
31805
31806         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
31807         (Depends-on): Add stdlib.
31808         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31809         (Includes): Use <stdlib.h> instead of mkdtemp.h.
31810         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31811         HAVE_MKDTEMP.
31812         * lib/mkdtemp.c: Don't include mkdtemp.h.
31813         * lib/clean-temp.c: Don't include mkdtemp.h.
31814
31815         * modules/exit (Files): Remove lib/exit.h.
31816         (Depends-on): Add stdlib.
31817         (Makefile.am): Remove lib_SOURCES.
31818         (Include): Use <stdlib.h> instead of exit.h.
31819         * lib/argmatch.c: Don't include exit.h.
31820         * lib/execute.c: Likewise.
31821         * lib/pagealign_alloc.c: Likewise.
31822         * lib/pipe.c: Likewise.
31823         * lib/wait-process.c: Likewise.
31824         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
31825         * lib/exitfail.c: Likewise.
31826         * lib/savewd.c: Likewise.
31827         * lib/xsetenv.c: Likewise.
31828
31829         * modules/stdlib: New file.
31830         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
31831         and extra comments about mkstemp().
31832         * lib/exit.h: Remove file.
31833         * lib/mkdtemp.h: Remove file.
31834         * lib/mkstemp.h: Remove file.
31835         * m4/stdlib_h.m4: New file.
31836         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
31837
31838 2007-02-18  Bruno Haible  <bruno@clisp.org>
31839
31840         * modules/math-tests: New file.
31841         * tests/test-math.c: New file.
31842
31843         * modules/math: New file.
31844         * modules/mathl (Files): Remove lib/mathl.h.
31845         (Depends-on): Add math.
31846         (Makefile.am): Don't mention mathl.h.
31847         (Include): Use <math.h> instead of mathl.h.
31848         * lib/math_.h: New file.
31849         * lib/mathl.h: Remove file.
31850         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
31851         mathl.h.
31852         * lib/asinl.c: Likewise.
31853         * lib/atanl.c: Likewise.
31854         * lib/ceill.c: Likewise.
31855         * lib/cosl.c: Likewise.
31856         * lib/expl.c: Likewise.
31857         * lib/floorl.c: Likewise.
31858         * lib/frexpl.c: Likewise.
31859         * lib/ldexpl.c: Likewise.
31860         * lib/logl.c: Likewise.
31861         * lib/sincosl.c: Likewise.
31862         * lib/sinl.c: Likewise.
31863         * lib/sqrtl.c: Likewise.
31864         * lib/tanl.c: Likewise.
31865         * lib/trigl.c: Likewise.
31866         * m4/math_h.m4: New file.
31867         * MODULES.html.sh (Mathematics): Add math.
31868
31869 2007-02-17  Bruno Haible  <bruno@clisp.org>
31870
31871         * modules/wctype-tests: New file.
31872         * tests/test-wctype.c: New file.
31873
31874         * modules/wchar-tests: New file.
31875         * tests/test-wchar.c: New file.
31876
31877         * modules/unistd-tests: New file.
31878         * tests/test-unistd.c: New file.
31879
31880         * modules/time-tests: New file.
31881         * tests/test-time.c: New file.
31882
31883         * modules/sysexits-tests: New file.
31884         * tests/test-sysexits.c: New file.
31885
31886         * modules/sys_time-tests: New file.
31887         * tests/test-sys_time.c: New file.
31888
31889         * modules/sys_stat-tests: New file.
31890         * tests/test-sys_stat.c: New file.
31891
31892         * modules/sys_socket-tests: New file.
31893         * tests/test-sys_socket.c: New file.
31894
31895         * modules/sys_select-tests: New file.
31896         * tests/test-sys_select.c: New file.
31897
31898         * modules/string-tests: New file.
31899         * tests/test-string.c: New file.
31900
31901         * modules/stdbool-tests: New file.
31902         * tests/test-stdbool.c: New file.
31903
31904         * modules/netinet_in-tests: New file.
31905         * tests/test-netinet_in.c: New file.
31906
31907         * modules/inttypes-tests: New file.
31908         * tests/test-inttypes.c: New file.
31909
31910         * modules/fcntl-tests: New file.
31911         * tests/test-fcntl.c: New file.
31912
31913         * modules/byteswap-tests: New file.
31914         * tests/test-byteswap.c: New file.
31915
31916         * modules/arpa_inet-tests: New file.
31917         * tests/test-arpa_inet.c: New file.
31918
31919 2007-02-17  Bruno Haible  <bruno@clisp.org>
31920
31921         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
31922         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
31923         if the corresponding module is not enabled. Emit link warnings if
31924         the function is used nevertheless.
31925         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
31926         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
31927         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
31928         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
31929         * modules/inttypes (Depends-on): Add link-warning.
31930         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31931         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
31932         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
31933         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
31934         * modules/imaxdiv (configure.ac): Likewise.
31935         * modules/strtoimax (configure.ac): Likewise.
31936         * modules/strtoumax (configure.ac): Likewise.
31937
31938 2007-02-17  Bruno Haible  <bruno@clisp.org>
31939
31940         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
31941         gl_STRING_MODULE_INDICATOR_DEFAULTS.
31942         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
31943         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
31944
31945 2007-02-17  Bruno Haible  <bruno@clisp.org>
31946
31947         * modules/link-warning: New file.
31948         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
31949         * lib/string_.h (GL_LINK_WARNING): Remove definition.
31950         * modules/string (Depends-on): Add link-warning.
31951         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31952         string.h.
31953         * MODULES.html.sh (Support for building libraries and executables): Add
31954         link-warning.
31955
31956 2007-02-17  Bruno Haible  <bruno@clisp.org>
31957
31958         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
31959         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
31960         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
31961         long lines.
31962
31963 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
31964             Bruno Haible  <bruno@clisp.org>
31965
31966         * modules/tmpfile: New file.
31967         * lib/tmpfile.c: New file.
31968         * m4/tmpfile.m4: New file.
31969         * MODULES.html.sh (func_all_modules): New section "Input/output".
31970
31971 2007-02-15  Bruno Haible  <bruno@clisp.org>
31972
31973         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
31974         (supports_delete_on_close): New function.
31975         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
31976
31977 2007-02-14  Bruno Haible  <bruno@clisp.org>
31978
31979         * modules/mbspcasecmp-tests: New file.
31980         * tests/test-mbspcasecmp.sh: New file.
31981         * tests/test-mbspcasecmp.c: New file.
31982
31983         New module mbspcasecmp.
31984         * modules/mbspcasecmp: New file.
31985         * lib/mbspcasecmp.c: New file.
31986         * lib/string_.h (strncasecmp): Change warning message.
31987         (mbspcasecmp): New declaration.
31988         * m4/mbspcasecmp.m4: New file.
31989         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31990         GNULIB_MBSPCASECMP.
31991         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
31992         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
31993
31994 2007-02-14  Bruno Haible  <bruno@clisp.org>
31995
31996         * modules/mbsncasecmp-tests: New file.
31997         * tests/test-mbsncasecmp.sh: New file.
31998         * tests/test-mbsncasecmp.c: New file.
31999
32000         New module mbsncasecmp.
32001         * modules/mbsncasecmp: New file.
32002         * lib/mbsncasecmp.c: New file.
32003         * lib/string_.h (mbsncasecmp): New declaration.
32004         * m4/mbsncasecmp.m4: New file.
32005         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32006         GNULIB_MBSNCASECMP.
32007         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
32008         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
32009
32010 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
32011
32012         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
32013         Verify that it doesn't overlap with our flags.
32014         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
32015         do not have the desired effect in multibyte locales; instead, use
32016         mbscasecmp.
32017         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
32018         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
32019         we don't require GNU fnmatch ourselves (if our users require it, they
32020         should do so explicitly).
32021
32022         Fix regex code so it doesn't rely on strcasecmp.
32023         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
32024         Otherwise, include gnulib's langinfo.h.
32025         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
32026         undesirable behavior in non-C locales.  Instead, rely on localecharset.
32027         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
32028         * modules/regex (FILES): Remove m4/codeset.m4.
32029         (Depends-on): Add localcharset.  Remove strcase.
32030
32031 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32032
32033         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
32034         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
32035
32036 2007-02-13  Bruno Haible  <bruno@clisp.org>
32037
32038         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
32039         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32040
32041 2007-02-12  Bruno Haible  <bruno@clisp.org>
32042
32043         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32044         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
32045         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
32046         time warning rather than a link error.
32047
32048 2007-02-12  Bruno Haible  <bruno@clisp.org>
32049
32050         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
32051         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
32052         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32053
32054 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
32055
32056         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
32057         args, not 2.
32058
32059 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
32060
32061         New module 'time', so that apps can include <time.h> as per
32062         POSIX and GNU instead of separate include files like time_r.h
32063         and timegm.h.  This implementation tries out a simpler approach
32064         for replacing decls in standard include files (as compared to
32065         the string module), somewhat as an experiment.
32066
32067         * config/srclist.txt: Comment out mktime.c for now.
32068         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
32069         since it doesn't apply any more.  Use generic wording instead.
32070         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
32071         'time'.
32072         * lib/time_.h, m4/time_h.m4, modules/time: New files.
32073         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
32074         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
32075         Don't include <sys/types.h>; no longer needed since we assume C89.
32076         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
32077         * lib/strftime.c: Likewise.
32078         * lib/time_r.c: Likewise.
32079         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
32080         * lib/nanosleep.c: Include <time.h> first, to check interface.
32081         * lib/strptime.c: Likewise.
32082         * lib/time_r.c: Likewise.
32083         * lib/timegm.c: Likewise.
32084         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
32085         needed.
32086         * lib/timegm.c: Don't include timegm.h; no longer needed.
32087         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
32088         time.h now handles any problems in that area.
32089         (struct timespec, nanosleep): Remove; time.h now arranges for these.
32090         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
32091         that time.h defines struct timespec.
32092         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
32093         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
32094         handles that.
32095         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
32096         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
32097         needed.  Set REPLACE_LOCALTIME.
32098         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
32099         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
32100         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
32101         nanosleep; time_h.m4 now does that.  Don't require
32102         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
32103         module handles this now.
32104         * modules/getdate (Depends-on): Remove timespec.  Add time.
32105         * modules/nanosleep (Depends-on): Likewise.
32106         * modules/stat-time (Depends-on): Likewise.
32107         * modules/nanosleep (Include): Include time.h, not timespec.h.
32108         * modules/strptime (Files): Remove lib/strptime.h.
32109         (Depends-on): Add extensions, time.
32110         (Include): Include time.h, not strptime.h.
32111         * modules/time_r (Files): Remove lib/time_r.h.
32112         (Depends-on): Add time.
32113         (Include): Include time.h, not time_r.h.
32114         * modules/timegm: Likewise.
32115         * modules/timespec (Description): Now does timespec-related decls
32116         of our own, instead of struct timespec itself.
32117         (Depends-on): Add time; remove extensions.
32118         (Maintainer): Add self.
32119         * modules/utimecmp (Depends-on): Add time; remove timespec.
32120         * modules/utimens (Depends-on): Likewise.
32121         * modules/xnanosleep (Depends-on): Likewise.
32122
32123 2007-02-11  Bruno Haible  <bruno@clisp.org>
32124
32125         * lib/c-strstr.c: Include allocsa.h.
32126         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
32127         * lib/c-strcasestr.c: Include allocsa.h.
32128         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
32129         * lib/strcasestr.c: Include allocsa.h.
32130         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
32131         * lib/mbsstr.c: Include allocsa.h.
32132         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
32133         allocsa/freesa instead of malloc/free.
32134         * lib/mbscasestr.c: Include allocsa.h.
32135         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
32136         allocsa/freesa instead of malloc/free.
32137         * modules/c-strstr (Depends-on): Add allocsa.
32138         * modules/c-strcasestr (Depends-on): Likewise.
32139         * modules/strcasestr (Depends-on): Likewise.
32140         * modules/mbsstr (Depends-on): Likewise.
32141         * modules/mbscasestr (Depends-on): Likewise.
32142
32143 2007-02-11  Bruno Haible  <bruno@clisp.org>
32144
32145         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
32146
32147         * modules/mbsspn-tests: New file.
32148         * tests/test-mbsspn.sh: New file.
32149         * tests/test-mbsspn.c: New file.
32150
32151 2007-02-11  Bruno Haible  <bruno@clisp.org>
32152
32153         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
32154
32155         * modules/mbspbrk-tests: New file.
32156         * tests/test-mbspbrk.sh: New file.
32157         * tests/test-mbspbrk.c: New file.
32158
32159 2007-02-11  Bruno Haible  <bruno@clisp.org>
32160
32161         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
32162         unneeded cast.
32163
32164         * modules/mbscspn-tests: New file.
32165         * tests/test-mbscspn.sh: New file.
32166         * tests/test-mbscspn.c: New file.
32167
32168 2007-02-11  Bruno Haible  <bruno@clisp.org>
32169
32170         * modules/mbscasecmp-tests: New file.
32171         * tests/test-mbscasecmp.sh: New file.
32172         * tests/test-mbscasecmp.c: New file.
32173
32174 2007-02-11  Bruno Haible  <bruno@clisp.org>
32175
32176         Ensure O(n) worst-case complexity of mbscasestr.
32177         * lib/mbscasestr.c: Include stdbool.h.
32178         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
32179         functions.
32180         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
32181         the bookkeeping indicates that it's worth it.
32182         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
32183
32184         * modules/mbscasestr-tests: New file.
32185         * tests/test-mbscasestr1.c: New file.
32186         * tests/test-mbscasestr2.sh: New file.
32187         * tests/test-mbscasestr2.c: New file.
32188         * tests/test-mbscasestr3.sh: New file.
32189         * tests/test-mbscasestr3.c: New file.
32190         * tests/test-mbscasestr4.sh: New file.
32191         * tests/test-mbscasestr4.c: New file.
32192         * m4/locale-tr.m4: New file.
32193
32194 2007-02-11  Bruno Haible  <bruno@clisp.org>
32195
32196         Ensure O(n) worst-case complexity of mbsstr.
32197         * lib/mbsstr.c: Include stdbool.h.
32198         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
32199         functions.
32200         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
32201         bookkeeping indicates that it's worth it.
32202         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
32203
32204         * modules/mbsstr-tests: New file.
32205         * tests/test-mbsstr1.c: New file.
32206         * tests/test-mbsstr2.sh: New file.
32207         * tests/test-mbsstr2.c: New file.
32208         * tests/test-mbsstr3.sh: New file.
32209         * tests/test-mbsstr3.c: New file.
32210         * m4/locale-fr.m4: New file.
32211
32212 2007-02-11  Bruno Haible  <bruno@clisp.org>
32213
32214         * lib/mbsrchr.c (mbsrchr): Fix bug.
32215
32216         * modules/mbsrchr-tests: New file.
32217         * tests/test-mbsrchr.sh: New file.
32218         * tests/test-mbsrchr.c: New file.
32219
32220 2007-02-11  Bruno Haible  <bruno@clisp.org>
32221
32222         * lib/mbschr.c (mbschr): Fix bug.
32223
32224         * modules/mbschr-tests: New file.
32225         * tests/test-mbschr.sh: New file.
32226         * tests/test-mbschr.c: New file.
32227         * m4/locale-zh.m4: New file.
32228
32229 2007-02-11  Bruno Haible  <bruno@clisp.org>
32230
32231         Support for copying multibyte string iterators.
32232         * lib/mbiter.h: Include <string.h>.
32233         (mbiter_multi_copy): New function.
32234         (mbi_copy): New macro.
32235         * lib/mbuiter.h: Include <string.h>.
32236         (mbuiter_multi_copy): New function.
32237         (mbui_copy): New macro.
32238
32239 2007-02-11  Bruno Haible  <bruno@clisp.org>
32240
32241         New module mbslen.
32242         * modules/mbslen: New file.
32243         * lib/mbslen.c: New file.
32244         * lib/string_.h (mbslen): New declaration.
32245         * m4/mbslen.m4: New file.
32246         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32247         GNULIB_MBSLEN.
32248         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
32249         * MODULES.html.sh (Internationalization functions): Add mbslen.
32250
32251 2007-02-11  Bruno Haible  <bruno@clisp.org>
32252
32253         Ensure O(n) worst-case complexity of strcasestr substitute.
32254         * lib/strcasestr.c: Include stdbool.h.
32255         (knuth_morris_pratt): New function.
32256         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
32257         bookkeeping indicates that it's worth it.
32258         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
32259
32260         * modules/strcasestr-tests: New file.
32261         * tests/test-strcasestr.c: New file.
32262
32263 2007-02-11  Bruno Haible  <bruno@clisp.org>
32264
32265         Ensure O(n) worst-case complexity of c_strcasestr.
32266         * lib/c-strcasestr.c: Include stdbool.h, string.h.
32267         (knuth_morris_pratt): New function.
32268         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
32269         the bookkeeping indicates that it's worth it.
32270         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
32271
32272         * modules/c-strcasestr-tests: New file.
32273         * tests/test-c-strcasestr.c: New file.
32274
32275 2007-02-11  Bruno Haible  <bruno@clisp.org>
32276
32277         Ensure O(n) worst-case complexity of c_strstr.
32278         * lib/c-strstr.c: Include stdbool.h, string.h.
32279         (knuth_morris_pratt): New function.
32280         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
32281         bookkeeping indicates that it's worth it.
32282         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
32283
32284         * lib/c-strstr.c: Complete rewrite for maintainability.
32285
32286         * modules/c-strstr-tests: New file.
32287         * tests/test-c-strstr.c: New file.
32288
32289 2007-02-11  Bruno Haible  <bruno@clisp.org>
32290
32291         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
32292         5.2.1 and earlier, whereby \055 was treated just like the range
32293         delimiter '-'.
32294         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32295
32296 2007-02-08  Bruno Haible  <bruno@clisp.org>
32297
32298         * modules/regex (Depends-on): Add stdbool.
32299         Reported by Dalibor Topic <robilad@kaffe.org>.
32300
32301 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
32302
32303         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
32304         Prefer returning from main to exiting from it.
32305         Remove unnecessary parens after sizeof.
32306
32307 2007-02-05  Bruno Haible  <bruno@clisp.org>
32308
32309         New module mbssep.
32310         * modules/mbssep: New file.
32311         * lib/mbssep.c: New file.
32312         * lib/string_.h (strsep): Add a conditional link warning.
32313         (mbssep): New declaration.
32314         * m4/mbssep.m4: New file.
32315         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32316         GNULIB_MBSSEP.
32317         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
32318         * MODULES.html.sh (Internationalization functions): Add mbssep.
32319
32320 2007-02-05  Bruno Haible  <bruno@clisp.org>
32321
32322         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
32323         Optimize search in case of 1 delimiter.
32324
32325 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32326
32327         * lib/acl.h: Include sys/types.h before sys/acl.h.
32328
32329 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32330
32331         Merge upstream fix for glibc bugzilla #3957:
32332
32333         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
32334
32335         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
32336         bit for RE_HAT_LISTS_NOT_NEWLINE.
32337         (build_charclass_op): Remove bogus comment.
32338
32339 2007-02-05  Simon Josefsson  <simon@josefsson.org>
32340
32341         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
32342
32343 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32344
32345         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
32346         * lib/memmem.c [!defined _LIBC]: Include config.h.
32347
32348 2007-02-04  Bruno Haible  <bruno@clisp.org>
32349
32350         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
32351         warning message.
32352
32353 2007-02-04  Bruno Haible  <bruno@clisp.org>
32354
32355         New module mbstok_r.
32356         * modules/mbstok_r: New file.
32357         * lib/mbstok_r.c: New file.
32358         * lib/string_.h (strtok_r): Change argument names to match the
32359         comments. Add a conditional link warning.
32360         (mbstok_r): New declaration.
32361         * m4/mbstok_r.m4: New file.
32362         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32363         GNULIB_MBSTOK_R.
32364         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
32365         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
32366
32367 2007-02-04  Bruno Haible  <bruno@clisp.org>
32368
32369         New module mbsspn.
32370         * modules/mbsspn: New file.
32371         * lib/mbsspn.c: New file.
32372         * lib/string_.h (strspn): Add a conditional link warning.
32373         (mbsspn): New declaration.
32374         * m4/mbsspn.m4: New file.
32375         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32376         GNULIB_MBSSPN.
32377         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
32378         * MODULES.html.sh (Internationalization functions): Add mbsspn.
32379
32380 2007-02-04  Bruno Haible  <bruno@clisp.org>
32381
32382         New module mbspbrk.
32383         * modules/mbspbrk: New file.
32384         * lib/mbspbrk.c: New file.
32385         * lib/string_.h (strpbrk): Add a conditional link warning.
32386         (mbspbrk): New declaration.
32387         * m4/mbspbrk.m4: New file.
32388         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32389         GNULIB_MBSPBRK.
32390         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
32391         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
32392
32393 2007-02-04  Bruno Haible  <bruno@clisp.org>
32394
32395         New module mbscspn.
32396         * modules/mbscspn: New file.
32397         * lib/mbscspn.c: New file.
32398         * lib/string_.h (strcspn): Add a conditional link warning.
32399         (mbscspn): New declaration.
32400         * m4/mbscspn.m4: New file.
32401         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32402         GNULIB_MBSCSPN.
32403         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
32404         * MODULES.html.sh (Internationalization functions): Add mbscspn.
32405
32406 2007-02-04  Bruno Haible  <bruno@clisp.org>
32407
32408         New module mbscasestr, reduced goal of strcasestr.
32409         * modules/mbscasestr: New file.
32410         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
32411         (mbscasestr): Renamed from strcasestr.
32412         * lib/strcasestr.c: Don't include mbuiter.h.
32413         (strcasestr): Remove support for multibyte locales.
32414         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
32415         Change the conditional link warning.
32416         (mbscasestr): New declaration.
32417         * m4/mbscasestr.m4: New file.
32418         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
32419         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
32420         REPLACE_STRCASESTR.
32421         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
32422         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32423         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32424         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
32425         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
32426         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32427         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
32428         (Depends-on): Remove mbuiter.
32429         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
32430
32431 2007-02-04  Bruno Haible  <bruno@clisp.org>
32432
32433         Simplify handling of strncasecmp.
32434         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
32435         the conditional link warning.
32436         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32437         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
32438         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
32439         * modules/strcase (configure.ac): Don't invoke
32440         gl_STRING_MODULE_INDICATOR.
32441         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
32442
32443 2007-02-04  Bruno Haible  <bruno@clisp.org>
32444
32445         New module mbscasecmp, reduced goal of strcasecmp.
32446         * modules/mbscasecmp: New file.
32447         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
32448         (mbscasecmp): Renamed from strcasecmp.
32449         * lib/strcasecmp.c: Don't include mbuiter.h.
32450         (strcasecmp): Remove support for multibyte locales.
32451         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
32452         Change the conditional link warning.
32453         (mbscasecmp): New declaration.
32454         * m4/mbscasecmp.m4: New file.
32455         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
32456         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
32457         REPLACE_STRCASECMP.
32458         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
32459         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32460         GNULIB_MBSCASECMP.
32461         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
32462         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
32463         * modules/strcase (Files): Remove m4/mbrtowc.m4.
32464         (Depends-on): Remove mbuiter.
32465         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
32466
32467 2007-02-04  Bruno Haible  <bruno@clisp.org>
32468
32469         New module mbsstr. Remove module strstr.
32470         * modules/mbsstr: New file.
32471         * modules/strstr: Remove file.
32472         * lib/mbsstr.c: Renamed from lib/strstr.c.
32473         (mbsstr): Renamed from strstr.
32474         * lib/string_.h (strstr): Remove declaration. Change the conditional
32475         link warning.
32476         (mbsstr): New declaration.
32477         * m4/mbsstr.m4: New file.
32478         * m4/strstr.m4: Remove file.
32479         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
32480         REPLACE_STRSTR.
32481         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
32482         Don't initialize GNULIB_STRSTR.
32483         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
32484         substitute GNULIB_STRSTR and REPLACE_STRSTR.
32485         * MODULES.html.sh (Internationalization functions): Add mbsstr.
32486         (Support for systems lacking ANSI C 89): Remove strstr.
32487
32488 2007-02-04  Bruno Haible  <bruno@clisp.org>
32489
32490         New module mbsrchr.
32491         * modules/mbsrchr: New file.
32492         * lib/mbsrchr.c: New file.
32493         * lib/string_.h (strrchr): Add a conditional link warning.
32494         (mbsrchr): New declaration.
32495         * m4/mbsrchr.m4: New file.
32496         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32497         GNULIB_MBSRCHR.
32498         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
32499         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
32500
32501 2007-02-04  Bruno Haible  <bruno@clisp.org>
32502
32503         New module mbschr.
32504         * modules/mbschr: New file.
32505         * lib/mbschr.c: New file.
32506         * lib/string_.h (strchr): Add a conditional link warning.
32507         (mbschr): New declaration.
32508         * m4/mbschr.m4: New file.
32509         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32510         GNULIB_MBSCHR.
32511         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
32512         * MODULES.html.sh (Internationalization functions): Add mbschr.
32513
32514 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32515
32516         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
32517
32518         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
32519
32520 2007-02-04  Bruno Haible  <bruno@clisp.org>
32521
32522         New module description section 'configure.ac-early'.
32523         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
32524         (func_get_autoconf_early_snippet): New function.
32525         (func_import, func_create_testdir): Use it. Remove special cases for
32526         modules 'extensions' and 'lock'.
32527         * modules/extensions (configure.ac-early): Require
32528         gl_USE_SYSTEM_EXTENSIONS.
32529         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
32530
32531 2007-02-04  Bruno Haible  <bruno@clisp.org>
32532
32533         Make use of gcj-4.3's -fsource and -ftarget option.
32534         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
32535         and if so try the options -fsource and -ftarget.
32536         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
32537         source_version, ftarget_option, target_version arguments.
32538         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
32539         (is_envjavac_oldgcj_14_14_usable): Renamed from
32540         is_envjavac_gcj_14_14_usable.
32541         (is_envjavac_oldgcj_14_13_usable): Renamed from
32542         is_envjavac_gcj_14_13_usable.
32543         (is_gcj_present): Update.
32544         (is_gcj_43, is_gcj43_usable): New functions.
32545         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
32546         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
32547         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
32548         try the options -fsource and -ftarget.
32549
32550 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32551
32552         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
32553         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
32554         larger value.
32555
32556 2007-02-03  Jim Meyering  <jim@meyering.net>
32557
32558         Give tools a better chance to allocate space for very large buffers.
32559         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
32560
32561         Make pwd and readlink work also when run with an unreadable parent dir
32562         on systems with openat support.
32563         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
32564         provided getcwd function, even when we have openat support.
32565         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
32566
32567 2007-02-02  Bruno Haible  <bruno@clisp.org>
32568
32569         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32570         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
32571         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
32572         portability problems if one of these functions is only used on specific
32573         platforms.
32574         Reported by Paul Eggert.
32575
32576 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
32577
32578         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
32579         is causing more trouble than it's curing.
32580         * lib/regex_internal.h (__mempcpy): Remove.
32581         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
32582         (and make the code a tad smaller to boot).
32583         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
32584
32585 2007-02-02  Jim Meyering  <jim@meyering.net>
32586
32587         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
32588         section, not in the Makefile.am: one.
32589
32590 2007-02-02  Eric Blake  <ebb9@byu.net>
32591
32592         * lib/strchrnul.c: Always include config.h first.
32593
32594         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
32595         gnulib strstr is not necessary here.
32596
32597 2007-02-02  Simon Josefsson  <simon@josefsson.org>
32598
32599         * m4/socklen.m4: Fix typo.
32600
32601 2007-02-02  Eric Blake  <ebb9@byu.net>
32602
32603         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
32604         * modules/netinet_in (Makefile.am): Likewise.
32605
32606 2007-02-01  Bruno Haible  <bruno@clisp.org>
32607
32608         * lib/string_.h (GL_LINK_WARNING): New macro.
32609         (strcasecmp, strstr, strcasestr): If provided by the system,
32610         conditionally define as a macro that leads to a warning instead of to
32611         an error.
32612         (strncasecmp): Conditionally define as a macro that leads to a warning.
32613
32614 2007-02-01  Karl Berry  <karl@gnu.org>
32615
32616         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
32617
32618 2007-02-01  Bruno Haible  <bruno@clisp.org>
32619
32620         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
32621         renamings.
32622
32623 2007-02-01  Eric Blake  <ebb9@byu.net>
32624
32625         * modules/regex (Depends-on): Revert dependence on mempcpy.
32626         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
32627         module's definition of mempcpy.
32628         Reported by Paul Eggert.
32629
32630 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32631
32632         * lib/string_.h: If the gnulib module XYZ is not present, undefine
32633         the symbol XYZ before redefining it.  This fixes a problem with
32634         programs that don't use XYZ, when compiled on systems that define
32635         XYZ to something else.
32636
32637 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
32638
32639         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
32640         occurs when "mkdir -m foo" creates a setgid directory that is (1)
32641         writeable to group or other and (2) is intended to have a special
32642         mode bit that is set or cleared.  In such a case, the directory
32643         should be neither group- nor other-writeable until the special
32644         mode bits are right.
32645
32646 2007-01-31  Eric Blake  <ebb9@byu.net>
32647
32648         * modules/mountlist (Depends-on): Add strstr.
32649
32650         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
32651         bug.
32652         * modules/string (Makefile.am): Remove redundant replacement.
32653         * modules/regex (Depends-on): Add mempcpy.
32654
32655 2007-01-31  Bruno Haible  <bruno@clisp.org>
32656
32657         New module description field 'Link'.
32658         * gnulib-tool (func_usage): Document --extract-link-directive.
32659         (sed_extract_prog): Recognize 'Link' directive.
32660         (func_get_link_directive): New function.
32661         (func_import): Show summary of link directives.
32662         Handle --extract-link-directive option.
32663         * modules/acl (Link): New section.
32664         * modules/clock-time (Link): New section.
32665         * modules/euidaccess (Link): New section.
32666         * modules/gettext (Link): New section.
32667         * modules/iconv (Link): New section.
32668         * modules/lock (Link): New section.
32669         * modules/nanosleep (Link): New section.
32670         * modules/readline (Link): New section.
32671
32672 2007-01-27  Bruno Haible  <bruno@clisp.org>
32673
32674         Enforce the use of gnulib modules for unportable <string.h> functions.
32675         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
32676         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
32677         (gl_HEADER_STRING_H_BODY): Require it.
32678         * lib/string_.h: If the gnulib module XYZ is not present, redefine
32679         the symbol XYZ to one that gives a link error.
32680         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
32681         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
32682         * modules/mempcpy (configure.ac): Likewise.
32683         * modules/memrchr (configure.ac): Likewise.
32684         * modules/stpcpy (configure.ac): Likewise.
32685         * modules/stpncpy (configure.ac): Likewise.
32686         * modules/strcase (configure.ac): Likewise.
32687         * modules/strcasestr (configure.ac): Likewise.
32688         * modules/strchrnul (configure.ac): Likewise.
32689         * modules/strdup (configure.ac): Likewise.
32690         * modules/strndup (configure.ac): Likewise.
32691         * modules/strnlen (configure.ac): Likewise.
32692         * modules/strpbrk (configure.ac): Likewise.
32693         * modules/strsep (configure.ac): Likewise.
32694         * modules/strstr (configure.ac): Likewise.
32695         * modules/strtok_r (configure.ac): Likewise.
32696
32697 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
32698
32699         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
32700
32701 2007-01-30  Jim Meyering  <jim@meyering.net>
32702
32703         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
32704
32705 2007-01-29  Bruno Haible  <bruno@clisp.org>
32706
32707         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
32708         * lib/execute.c: Likewise.
32709         * lib/pipe.c: Likewise.
32710         * lib/printf-args.h: Likewise.
32711         * lib/printf-args.c: Likewise.
32712         * lib/printf-parse.c: Likewise.
32713         * lib/vasnprintf.c: Likewise.
32714
32715 2007-01-29  Eric Blake  <ebb9@byu.net>
32716
32717         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
32718         declaration.
32719
32720 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
32721
32722         * lib/strptime.h (strptime): Use 'restrict' for args where
32723         POSIX requires this.
32724         * lib/strptime.c (strptime): Likewise.
32725         Change license notice from LGPL to GPL, since gnulib-tool will
32726         change this as needed.
32727         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
32728         defined.
32729         Include "strptime.h" first, to check interface.
32730         Do not #undef _LIBC and _NL_CURRENT.
32731         Do not include <stdlib.h>; no longer needed.
32732         Include "time_r.h" and declare ptime_locale_status
32733         only if _LIBC is not defined.
32734         (__P): Remove unused macro.
32735         (match_string): Bring back glibc version, but use it only if _LIBC
32736         is defined.
32737         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
32738         Remove unnecessary assertion and abort() call.
32739         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
32740         * m4/strptime.m4: Fix serial number comment.
32741         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
32742         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
32743         (Depends-on): Add time_r.
32744
32745 2007-01-29  Bruno Haible  <bruno@clisp.org>
32746
32747         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32748         strptime.
32749         * modules/strptime (Depends-on): Add stdbool.
32750         * lib/strptime.h: Include <time.h> always. Add comments.
32751
32752 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32753
32754         * modules/strptime: New file.
32755         * lib/strptime.h: New file.
32756         * lib/strptime.c: New file.
32757         * m4/strptime.m4: New file.
32758
32759 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32760
32761         * MODULES.html.sh: New module mpsort.
32762         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
32763
32764         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
32765         a circularity problem with HP-UX ia64 reported by Bob Proulx in
32766         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
32767         All uses changed.
32768         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
32769         All uses changed.
32770         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
32771         to _Restrict_.
32772         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
32773         the parameter matches the prototype.
32774
32775 2007-01-28  Jim Meyering  <jim@meyering.net>
32776
32777         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
32778         sys/time.h here, reverting that part of the previous patch:
32779         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
32780
32781 2007-01-28  Bruno Haible  <bruno@clisp.org>
32782
32783         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
32784         value of $(SYS_TIME_H).
32785         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
32786         remove it conditionally, too. [added by Jim Meyering]
32787         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
32788         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32789         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
32790         GETTIMEOFDAY_REPLACEMENT to 1.
32791
32792 2007-01-28  Bruno Haible  <bruno@clisp.org>
32793
32794         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
32795         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
32796         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
32797         Set UNISTD_H instead of UNISTD_H2.
32798         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
32799
32800 2007-01-28  Bruno Haible  <bruno@clisp.org>
32801
32802         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
32803         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
32804
32805 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32806
32807         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
32808         (func_create_testdir): Ensure C locale for `grep' and `tr'
32809         character ranges.
32810         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
32811         ACLOCAL_AMFLAGS parsing state machine.
32812
32813 2007-01-27  Bruno Haible  <bruno@clisp.org>
32814
32815         * modules/unistr/base: Update.
32816
32817 2007-01-27  Bruno Haible  <bruno@clisp.org>
32818
32819         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
32820         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
32821         * modules/unistr/u32-mbtouc-unsafe: Renamed from
32822         modules/unistr/u32-mbtouc.
32823         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
32824         * lib/unistr.h: Update.
32825         * lib/linebreak.c: Update.
32826         * modules/unistr/u32-mbtouc: Renamed from
32827         modules/unistr/u32-mbtouc-safe.
32828         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
32829         * lib/unistr.h: Update.
32830         * lib/unistr/u32-to-u8.c: Update.
32831         * lib/unistr/u32-to-u16.c: Update.
32832
32833 2007-01-27  Bruno Haible  <bruno@clisp.org>
32834
32835         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
32836         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
32837         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
32838         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
32839         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
32840         * modules/unistr/u16-mbtouc-unsafe: Renamed from
32841         modules/unistr/u16-mbtouc.
32842         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
32843         * lib/unistr.h: Update.
32844         * lib/linebreak.c: Update.
32845         * modules/linebreak: Update.
32846         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
32847         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
32848         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
32849         * modules/unistr/u16-mbtouc: Renamed from
32850         modules/unistr/u16-mbtouc-safe.
32851         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
32852         * lib/unistr.h: Update.
32853         * lib/unistr/u16-to-u8.c: Update.
32854         * modules/unistr/u16-to-u8: Update.
32855         * lib/unistr/u16-to-u32.c: Update.
32856         * modules/unistr/u16-to-u32: Update.
32857
32858 2007-01-27  Bruno Haible  <bruno@clisp.org>
32859
32860         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
32861         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
32862         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
32863         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
32864         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
32865         * modules/unistr/u8-mbtouc-unsafe: Renamed from
32866         modules/unistr/u8-mbtouc.
32867         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
32868         * lib/unistr.h: Update.
32869         * lib/striconveh.c: Update.
32870         * modules/striconveh: Update.
32871         * lib/linebreak.c: Update.
32872         * modules/linebreak: Update.
32873         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
32874         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
32875         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
32876         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
32877         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
32878         * lib/unistr.h: Update.
32879         * lib/striconveh.c: Update.
32880         * modules/striconveh: Update.
32881         * lib/unistr/u8-to-u16.c: Update.
32882         * modules/unistr/u8-to-u16: Update.
32883         * lib/unistr/u8-to-u32.c: Update.
32884         * modules/unistr/u8-to-u32: Update.
32885
32886 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32887
32888         Sync from Libtool.
32889         * lib/argz.c: Do not include strings.h nor memory.h, include
32890         string.h unconditionally.  Patch by Simon Josefsson.
32891
32892 2007-01-27  Bruno Haible  <bruno@clisp.org>
32893
32894         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
32895         from gl_HEADER_STRING_H_BODY.
32896         (gl_HEADER_STRING_H_BODY): Require it.
32897         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
32898         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32899         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32900         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32901         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32902         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
32903         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
32904         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32905         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
32906         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32907         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32908         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
32909         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32910         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
32911         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32912
32913 2007-01-27  Bruno Haible  <bruno@clisp.org>
32914
32915         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
32916         check_PROGRAMS into noinst_PROGRAMS.
32917         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
32918         check_PROGRAMS in this case.
32919         (func_import): Set for_test to false.
32920         (func_create_testdir): Set for_test to true.
32921
32922 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
32923             Bruno Haible  <bruno@clisp.org>
32924
32925         * modules/strcasestr (Files): Remove lib/strcasestr.h.
32926         (Depends-on): Add string.
32927         (Includes): Use <string.h> instead of strcasestr.h.
32928         * modules/string (Makefile.am): Also substitute the value of
32929         REPLACE_STRCASESTR.
32930         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
32931         assume strcasestr is declared in <string.h> not <strings.h>. Also
32932         set REPLACE_STRCASESTR.
32933         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
32934         REPLACE_STRCASESTR.
32935         * lib/strcasestr.h: Remove file.
32936         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
32937         * lib/string_.h (strcasestr): New declaration.
32938
32939 2007-01-27  Bruno Haible  <bruno@clisp.org>
32940
32941         * lib/string_.h: Use 'extern'.
32942
32943 2007-01-27  Jim Meyering  <jim@meyering.net>
32944
32945         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
32946         of set-but-not-used local, "q".
32947
32948         * lib/mempcpy.c: Include <config.h> before <string.h>.
32949         This fixes a compilation error on HP-UX, due to the system's
32950         "restrict"-using mempcpy prototype.
32951
32952 2007-01-26  Bruno Haible  <bruno@clisp.org>
32953
32954         Small optimization.
32955         * lib/javacomp.c: Include c-strstr.h.
32956          (is_envjavac_gcj): Use c_strstr instead of strstr.
32957         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
32958
32959 2007-01-26  Bruno Haible  <bruno@clisp.org>
32960
32961         * MODULES.html.sh (Unicode string functions): Add the new modules.
32962
32963         * modules/uniconv/u32-strconv-to-locale: New file.
32964         * lib/uniconv/u32-strconv-to-locale.c: New file.
32965
32966         * modules/uniconv/u16-strconv-to-locale: New file.
32967         * lib/uniconv/u16-strconv-to-locale.c: New file.
32968
32969         * modules/uniconv/u8-strconv-to-locale: New file.
32970         * lib/uniconv/u8-strconv-to-locale.c: New file.
32971
32972         * modules/uniconv/u32-strconv-from-locale: New file.
32973         * lib/uniconv/u32-strconv-from-locale.c: New file.
32974
32975         * modules/uniconv/u16-strconv-from-locale: New file.
32976         * lib/uniconv/u16-strconv-from-locale.c: New file.
32977
32978         * modules/uniconv/u8-strconv-from-locale: New file.
32979         * lib/uniconv/u8-strconv-from-locale.c: New file.
32980
32981         * modules/uniconv/u32-strconv-to-enc: New file.
32982         * lib/uniconv/u32-strconv-to-enc.c: New file.
32983         * modules/uniconv/u32-strconv-to-enc-tests: New file.
32984         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
32985
32986         * modules/uniconv/u16-strconv-to-enc: New file.
32987         * lib/uniconv/u16-strconv-to-enc.c: New file.
32988         * lib/uniconv/u-strconv-to-enc.h: New file.
32989         * modules/uniconv/u16-strconv-to-enc-tests: New file.
32990         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
32991
32992         * modules/uniconv/u8-strconv-to-enc: New file.
32993         * lib/uniconv/u8-strconv-to-enc.c: New file.
32994         * modules/uniconv/u8-strconv-to-enc-tests: New file.
32995         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
32996
32997         * modules/uniconv/u32-strconv-from-enc: New file.
32998         * lib/uniconv/u32-strconv-from-enc.c: New file.
32999         * modules/uniconv/u32-strconv-from-enc-tests: New file.
33000         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
33001
33002         * modules/uniconv/u16-strconv-from-enc: New file.
33003         * lib/uniconv/u16-strconv-from-enc.c: New file.
33004         * modules/uniconv/u16-strconv-from-enc-tests: New file.
33005         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
33006
33007         * modules/uniconv/u8-strconv-from-enc: New file.
33008         * lib/uniconv/u8-strconv-from-enc.c: New file.
33009         * lib/uniconv/u-strconv-from-enc.h: New file.
33010         * modules/uniconv/u8-strconv-from-enc-tests: New file.
33011         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
33012
33013         * modules/uniconv/u32-conv-from-enc: New file.
33014         * lib/uniconv/u32-conv-from-enc.c: New file.
33015         * modules/uniconv/u32-conv-from-enc-tests: New file.
33016         * tests/uniconv/test-u32-conv-from-enc.c: New file.
33017
33018         * modules/uniconv/u16-conv-from-enc: New file.
33019         * lib/uniconv/u16-conv-from-enc.c: New file.
33020         * lib/uniconv/u-conv-from-enc.h: New file.
33021         * modules/uniconv/u16-conv-from-enc-tests: New file.
33022         * tests/uniconv/test-u16-conv-from-enc.c: New file.
33023
33024         * modules/uniconv/u8-conv-from-enc: New file.
33025         * lib/uniconv/u8-conv-from-enc.c: New file.
33026         * modules/uniconv/u8-conv-from-enc-tests: New file.
33027         * tests/uniconv/test-u8-conv-from-enc.c: New file.
33028
33029         * modules/uniconv/base: New file.
33030         * lib/uniconv.h: New file.
33031
33032 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
33033
33034         * doc/gnulib-tool.texi (Initial import): Update to match current
33035         behavior with strdup module.
33036         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
33037         * lib/memmem.h: Remove; all uses removed.  This is now done
33038         by <string.h>.
33039         * lib/mempcpy.h: Likewise.
33040         * lib/memrchr.h: Likewise.
33041         * lib/stpcpy.h: Likewise.
33042         * lib/stpncpy.h: Likewise.
33043         * lib/strcase.h: Likewise.
33044         * lib/strchrnul.h: Likewise.
33045         * lib/strdup.h: Likewise.
33046         * lib/strndup.h: Likewise.
33047         * lib/strnlen.h: Likewise.
33048         * lib/strpbrk.h: Likewise.
33049         * lib/strsep.h: Likewise.
33050         * lib/strstr.h: Likewise.
33051         * lib/strtok_r.h: Likewise.
33052         * lib/string_.h: New file.
33053         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
33054         Rely on <string.h> instead.
33055         * lib/canon-host.c: Likewise.
33056         * lib/chdir-long.c: Likewise.
33057         * lib/concatpath.c: Likewise.
33058         * lib/exclude.c: Likewise.
33059         * lib/fchdir.c: Likewise.
33060         * lib/getaddrinfo.c: Likewise.
33061         * lib/getcwd.c: Likewise.
33062         * lib/getsubopt.c: Likewise.
33063         * lib/glob.c: Likewise.
33064         * lib/hard-locale.c: Likewise.
33065         * lib/iconvme.c: Likewise.
33066         * lib/javacomp.c: Likewise.
33067         * lib/mempcpy.c: Likewise.
33068         * lib/memrchr.c: Likewise.
33069         * lib/regex_internal.h: Likewise.
33070         * lib/stpncpy.c: Likewise.
33071         * lib/strcasecmp.c: Likewise.
33072         * lib/strchrnul.c: Likewise.
33073         * lib/strdup.c: Likewise.
33074         * lib/striconv.c: Likewise.
33075         * lib/striconveh.c: Likewise.
33076         * lib/striconveha.c: Likewise.
33077         * lib/strncasecmp.c: Likewise.
33078         * lib/strndup.c: Likewise.
33079         * lib/strnlen.c: Likewise.
33080         * lib/strsep.c: Likewise.
33081         * lib/strstr.c: Likewise.
33082         * lib/strtok_r.c: Likewise.
33083         * lib/userspec.c: Likewise.
33084         * lib/w32spawn.h: Likewise.
33085         * lib/xstrndup.c: Likewise.
33086         * lib/mountlist.c (strstr): Remove decl.
33087         * m4/string_h.m4: New file.
33088         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
33089         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
33090         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
33091         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
33092         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
33093         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
33094         Set REPLACE_STRCASECMP if necessary.
33095         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
33096         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
33097         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
33098         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
33099         HAVE_DECL_STRDUP if necessary.
33100         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
33101         since gl_FUNC_STRNDUP does that now.
33102         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
33103         Check for decl here...
33104         (gl_PREREQ_STRNLEN): ... not here.
33105         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
33106         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
33107         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
33108         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
33109         necessary.
33110         * modules/string: New file.
33111         * modules/memmem (Files): Remove special-purpose include file.
33112         (Depends-on): Add string.
33113         (Include): Include <string.h>, not the removed file.
33114         * modules/mempcpy: Likewise.
33115         * modules/memrchr: Likewise.
33116         * modules/stpcpy: Likewise.
33117         * modules/stpncpy: Likewise.
33118         * modules/strcase: Likewise.
33119         * modules/strchrnul: Likewise.
33120         * modules/strdup: Likewise.
33121         * modules/strndup: Likewise.
33122         * modules/strnlen: Likewise.
33123         * modules/strpbrk: Likewise.
33124         * modules/strsep: Likewise.
33125         * modules/strstr: Likewise.
33126         * modules/strtok_r: Likewise.
33127         * tests/test-dirname.c: Don't include "strdup.h", since
33128         <string.h> now suffices.
33129         * tests/test-memmem.c: Don't include "memmem.h", since
33130         <string.h> now suffices.
33131
33132 2007-01-25  Bruno Haible  <bruno@clisp.org>
33133
33134         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
33135         *resultp is 0.
33136
33137         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
33138         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
33139         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
33140         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
33141
33142         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
33143         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
33144         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
33145         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
33146         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
33147         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
33148
33149 2007-01-24  Bruno Haible  <bruno@clisp.org>
33150
33151         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
33152         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
33153         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
33154         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
33155         gl_FUNC_FTS_CORE.
33156         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
33157         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
33158         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
33159         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
33160         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
33161         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
33162         gl_FUNC_FCHOWNAT.
33163         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
33164         gl_FUNC_STRFTIME.
33165         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
33166         Reported by Ralf Wildenhues.
33167
33168 2007-01-24  Bruno Haible  <bruno@clisp.org>
33169
33170         Drop AC_REQUIRE calls that are redundant with the module dependencies.
33171         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
33172         gl_GETADDRINFO.
33173         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
33174         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
33175         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
33176
33177 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
33178
33179         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
33180         Don't use 'exit'; just return from 'main'.
33181         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
33182
33183         * lib/fnmatch_.h: Readjust white space and comments to match
33184         glibc, to avoid spurious diffs.
33185
33186 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33187
33188         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
33189         2004-12-01 change by Jakub Jelinek, since this code won't compile
33190         if !LIBC.  Problem reported by Bob Proulx.
33191
33192 2007-01-23  Bruno Haible  <bruno@clisp.org>
33193
33194         * lib/striconveh.c: Include c-strcaseeq.h.
33195         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
33196         * modules/striconveh (Depends-on): Add c-strcaseeq.
33197
33198 2007-01-23  Bruno Haible  <bruno@clisp.org>
33199
33200         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
33201
33202         * modules/c-strcaseeq: New file.
33203         * lib/c-strcaseeq.h: New file.
33204
33205         * modules/streq: New file.
33206         * lib/streq.h: New file.
33207
33208 2007-01-23  Bruno Haible  <bruno@clisp.org>
33209
33210         * modules/striconveha-tests: New file.
33211         * tests/test-striconveha.c: New file.
33212
33213         * lib/striconveha.h: Include <stdbool.h>.
33214         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
33215         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
33216         (mem_iconveha_notranslit): Renamed from mem_iconveha.
33217         (mem_iconveha): New function.
33218         (str_iconveha_notranslit): Renamed from str_iconveha.
33219         (str_iconveha): New function.
33220         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
33221         c-strcase.
33222
33223 2007-01-23  Bruno Haible  <bruno@clisp.org>
33224
33225         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
33226         encodings without forgiving before trying any encoding with handler.
33227         (str_iconveha): Try all encodings without forgiving before trying any
33228         encoding with handler.
33229
33230 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33231
33232         Import the following changes from libc.
33233
33234         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
33235
33236         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
33237
33238         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
33239
33240         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
33241         normal_bracket label.
33242
33243         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
33244
33245         [BZ #361]
33246         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
33247         to normal_bracket after fetching the next character.
33248
33249 2007-01-22  Bruno Haible  <bruno@clisp.org>
33250
33251         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
33252         argument.
33253         * lib/striconveh.c (iconv_carefully_1): New function.
33254         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
33255         argument.
33256         (str_cd_iconveh): Update.
33257         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
33258         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
33259         * tests/test-striconveh.c (MAGIC): New macro.
33260         (new_offsets): New function.
33261         (main): Test call with and without offsets.
33262
33263 2007-01-22  Bruno Haible  <bruno@clisp.org>
33264
33265         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
33266         * modules/sys_select (Makefile.am): Likewise.
33267         * modules/sys_socket (Makefile.am): Likewise.
33268         * modules/sys_time (Makefile.am): Likewise.
33269
33270 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
33271
33272         * modules/gettimeofday (License): Change from GPL to LGPL, since
33273         gettimeofday is a library function.
33274
33275 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33276
33277         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
33278
33279 2007-01-21  Bruno Haible  <bruno@clisp.org>
33280
33281         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
33282
33283 2007-01-21  Bruno Haible  <bruno@clisp.org>
33284
33285         * modules/striconveha: New file.
33286         * lib/striconveha.h: New file.
33287         * lib/striconveha.c: New file.
33288         * MODULES.html.sh (Internationalization functions): Add striconveha.
33289         * lib/striconv.c (str_iconv): Optimize the case of an empty input
33290         string.
33291         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
33292
33293 2007-01-21  Bruno Haible  <bruno@clisp.org>
33294
33295         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
33296         * lib/striconveh.c (str_iconveh): Likewise.
33297
33298 2007-01-21  Bruno Haible  <bruno@clisp.org>
33299
33300         * lib/striconveh.h (mem_iconveh): New declaration.
33301         * lib/striconveh.c (mem_iconveh): New function.
33302         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
33303
33304 2007-01-21  Bruno Haible  <bruno@clisp.org>
33305
33306         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
33307
33308         * lib/striconveh.h (mem_cd_iconveh): Change specification.
33309         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
33310         original result buffer.
33311         (str_cd_iconveh): Update.
33312         * tests/test-striconveh.c (main): Update.
33313
33314         * lib/striconv.h (mem_cd_iconv): Change specification.
33315         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
33316         result buffer.
33317         (str_cd_iconv): Update.
33318         * tests/test-striconv.c (main): Update.
33319
33320 2007-01-21  Bruno Haible  <bruno@clisp.org>
33321
33322         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
33323
33324 2007-01-20  Jim Meyering  <jim@meyering.net>
33325
33326         * lib/userspec.c (parse_with_separator): If a user or group string
33327         starts with "+", skip the corresponding name-to-ID look-up, since
33328         such a look-up must fail: user and group names may not include "+".
33329
33330 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
33331
33332         * lib/poll.c: Include sys/time.h and time.h unconditionally,
33333         since we now assume the sys_time module.
33334         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
33335         check for sys/time.h; no longer needed.
33336         * modules/poll (Depends-on): Depend on sys_time.
33337
33338 2007-01-18  Bruno Haible  <bruno@clisp.org>
33339
33340         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
33341         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33342
33343         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
33344         gettimeofday.
33345
33346         * tests/test-gettimeofday.c: Include <time.h>.
33347         (dummy): Remove variable.
33348
33349         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
33350         gl_HEADER_SYS_TIME_H.
33351         (gl_HEADER_SYS_TIME_H): New macro.
33352
33353         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
33354         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33355         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
33356         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
33357         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33358         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
33359         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
33360         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33361         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
33362         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
33363         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33364
33365         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
33366         last change; it caused a compilation error when cross-compiling to
33367         Cygwin.
33368
33369 2007-01-18  Jim Meyering  <jim@meyering.net>
33370
33371         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
33372         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
33373         than the race-prone "test -d sys || mkdir sys".
33374         (configure.ac): Use AC_PROG_MKDIR_P.
33375         * modules/sys_select: Likewise.
33376         * modules/sys_socket: Likewise.
33377         * modules/sys_time: Likewise.
33378
33379 2007-01-18  Eric Blake  <ebb9@byu.net>
33380
33381         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
33382         replace gettimeofday.
33383         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
33384         name, to avoid infinite recursion.
33385
33386 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
33387
33388         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
33389         module sys_time.
33390         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
33391         assume timespec.h defines struct timeval.
33392         * lib/settime.c: Likewise.
33393         * lib/utimens.c: Likewise.
33394         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
33395         since we now assume the gettimeofday module.
33396         * lib/tempname.c (__gen_tempname): Likewise.
33397         * lib/gettimeofday.h: Remove.
33398         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
33399         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
33400         Include <time.h>, for 'time()'.
33401         (localtime_buffer_addr): Also use this workaround if
33402         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
33403         to simplify the uses.  All uses changed.
33404         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
33405         that #undef is inside {}, and 'const' follows type name consistently.
33406         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
33407         (gettimeofday): Do not use the maximum possible value for
33408         tv->tv_usec, since that might break usages other than ls.c.
33409         Instead, we'll leave ls.c alone.  This undoes today's patch
33410         by Bruno.  Add a compile-time warning for 1s-clock resolution;
33411         we've never observed the problem but might as well keep the
33412         canary.
33413         * lib/nanosleep.c: Include timespec.h first, for interface check.
33414         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
33415         now assume the sys_time module.
33416         * lib/tempname.c: Likewise.
33417         * lib/timespec.h: Likewise.
33418         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
33419         needed.
33420         * lib/strftime.c: Likewise.
33421         * lib/timespec.h: Likewise.
33422         * lib/posixtm.c: Include posixtm.h first, for interface check.
33423         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
33424         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
33425         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
33426         * lib/sys_time_.h: New file.
33427         * lib/timespec.h (struct timespec): Use long int, not long.
33428         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
33429         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
33430         Remove obsolescent call to AC_HEADER_TIME.
33431         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
33432         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33433         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33434         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
33435         Likewise.
33436         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
33437         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
33438         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
33439         into the sys_time module.  Check for gettimeofday just once.
33440         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
33441         for gettimeofday signature to just check the signature.  Merely
33442         compile it, since linking doesn't test signature.  Improve test for
33443         whether gettimeofday.o is actually needed.
33444         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
33445         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
33446         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
33447         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33448         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
33449         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
33450         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
33451         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
33452         than worrying about sys/time.h.
33453         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33454         Don't bother worrying about TIME_WITH_SYS_TIME.
33455         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
33456         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
33457         * m4/sys_time_h.m4: New file.
33458         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
33459         Don't include sys/time.h.  Return from main rather than exiting.
33460         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
33461         all uses changed.
33462         * modules/gethrxtime (Depends-on): Add sys_time.
33463         * modules/gettime (Depends-on): Likewise.
33464         * modules/gettimeofday (Depends-on): Likewise.
33465         * modules/nanosleep (Depends-on): Likewise.
33466         * modules/settime (Depends-on): Likewise.
33467         * modules/tempname (Depends-on): Likewise.
33468         * modules/utimens (Depends-on): Likewise.
33469         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
33470         (Include:) Change back to <sys/time.h>.
33471         (Maintainer:) Add self.
33472         * modules/sys_time: New file.
33473         * modules/tempname (Depends-on): Add gettimeofday.
33474         * tests/test-gettimeofday.c: Include <sys/time.h>
33475         rather than gettimeofday.h.
33476
33477 2007-01-17  Bruno Haible  <bruno@clisp.org>
33478
33479         * gnulib-tool (func_get_license): Revert last patch. Instead, let
33480         the license default to GPL.
33481         (func_create_testdir): Don't complain if a module is LGPL and its
33482         tests module depends on GPLed modules.
33483
33484 2007-01-17  Bruno Haible  <bruno@clisp.org>
33485
33486         * lib/gettimeofday.c (gettimeofday): Add code for the case
33487         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
33488         maximum possible value for tv->tv_usec, rather than the minimum one.
33489
33490 2005-10-08  Martin Lambers  <marlam@marlam.de>
33491 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33492 2007-01-16  Bruno Haible  <bruno@clisp.org>
33493
33494         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
33495         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
33496         gl_FUNC_GETTIMEOFDAY.
33497         (Include): Add gettimeofday.h.
33498         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
33499         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
33500         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
33501         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
33502         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
33503         * lib/gettimeofday.h: New file.
33504         * lib/gettimeofday.c: Include <sys/timeb.h>.
33505         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
33506         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33507         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
33508         fall back on time().
33509
33510         * tests/test-gettimeofday.c: New file.
33511         * modules/gettimeofday-tests: New file.
33512
33513 2007-01-16  Eric Blake  <ebb9@byu.net>
33514
33515         * modules/fnmatch (Depends-on): Depend on wchar.
33516         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
33517         * m4/fnmatch.m4: Likewise.
33518         * modules/mbchar (Makefile.am): Assume <wchar.h>.
33519         * m4/mbchar.m4: Likewise.
33520         * modules/mbswidth (Depends-on): Depend on wchar.
33521         * lib/mbswidth.c: Assume <wchar.h>.
33522         * m4/mbswidth.m4: Likewise.
33523         * modules/quotearg (Depends-on): Depend on wchar.
33524         * lib/quotearg.c: Assume <wchar.h>.
33525         * m4/quotearg.m4: Likewise.
33526         * modules/regex (Depends-on): Depend on wchar.
33527         * lib/regex_internal.h: Assume <wchar.h>.
33528         * m4/regex.m4: Likewise.
33529         * modules/stdint (Depends-on): Depend on wchar.
33530         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
33531         * m4/stdint.m4: Likewise.
33532         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
33533         * modules/strftime (Depends-on): Depend on wchar.
33534         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
33535         * modules/strtol (Depends-on): Depend on wchar.
33536         * lib/strtol.c: Assume <wchar.h>.
33537         * modules/wcwidth (Depends-on): Depend on wchar.
33538         * lib/wcwidth.h: Assume <wchar.h>.
33539         * m4/wcwidth.m4: Likewise.
33540
33541 2007-01-16  Bruno Haible  <bruno@clisp.org>
33542
33543         * modules/csharpexec-script: New, created from...
33544         * modules/csharpexec: ... this.
33545
33546 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33547
33548         * modules/javaexec-script: New, created from...
33549         * modules/javaexec: ... this.
33550
33551 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33552
33553         * modules/poll (Dependencies): Add sys_select.
33554
33555 2007-01-15  Jim Meyering  <jim@meyering.net>
33556
33557         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
33558         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
33559         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
33560         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
33561
33562 2007-01-15  Bruno Haible  <bruno@clisp.org>
33563
33564         * modules/striconveh: New file.
33565         * lib/striconveh.h: New file.
33566         * lib/striconveh.c: New file.
33567         * MODULES.html.sh (Internationalization functions): Add striconveh.
33568
33569         * modules/striconveh-tests: New file.
33570         * tests/test-striconveh.c: New file.
33571
33572 2007-01-15  Bruno Haible  <bruno@clisp.org>
33573
33574         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
33575         not from GNU libiconv or GNU libc.
33576
33577 2007-01-15  Bruno Haible  <bruno@clisp.org>
33578
33579         * doc/gnulib-intro.texi (Copyright): Explain the different license
33580         terms for module descriptions, autoconf macros, tests, documentation.
33581
33582 2007-01-14  Bruno Haible  <bruno@clisp.org>
33583
33584         * modules/striconv-tests: New file.
33585         * tests/test-striconv.c: New file.
33586
33587 2007-01-14  Bruno Haible  <bruno@clisp.org>
33588
33589         * modules/iconv-tests: New file.
33590         * tests/test-iconv.c: New file.
33591
33592 2007-01-14  Bruno Haible  <bruno@clisp.org>
33593
33594         * gnulib-tool (func_get_license): For test modules, use the license of
33595         the main module.
33596
33597 2007-01-14  Bruno Haible  <bruno@clisp.org>
33598
33599         * modules/iconv (Include): Clarify that <iconv.h> can only be included
33600         if iconv is found to exist.
33601
33602 2007-01-14  Bruno Haible  <bruno@clisp.org>
33603
33604         * modules/c-ctype-tests: New file.
33605         * tests/test-c-ctype.c: New file.
33606
33607 2007-01-14  Bruno Haible  <bruno@clisp.org>
33608
33609         * modules/binary-io-tests: New file.
33610         * tests/test-binary-io.sh: New file.
33611         * tests/test-binary-io.c: New file.
33612
33613 2007-01-14  Bruno Haible  <bruno@clisp.org>
33614
33615         * modules/array-oset-tests: New file.
33616         * tests/test-array_oset.c: New file.
33617
33618 2007-01-14  Bruno Haible  <bruno@clisp.org>
33619
33620         * modules/array-list-tests: New file.
33621         * tests/test-array_list.c: New file.
33622
33623 2007-01-14  Bruno Haible  <bruno@clisp.org>
33624
33625         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
33626         and make.
33627         Reported by Simon Josefsson in
33628         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
33629
33630 2007-01-14  Bruno Haible  <bruno@clisp.org>
33631
33632         * modules/allocsa-tests: New file.
33633         * tests/test-allocsa.c: New file.
33634
33635 2007-01-14  Bruno Haible  <bruno@clisp.org>
33636
33637         * modules/fchdir (Depends-on): Add absolute-header.
33638         * modules/unistd (Depends-on): Likewise.
33639
33640 2006-12-30  Bruno Haible  <bruno@clisp.org>
33641
33642         * modules/fchdir: New file.
33643         * modules/unistd (Files): Add lib/unistd_.h.
33644         (Makefile.am): Generate unistd.h from unistd_.h.
33645         * lib/fchdir.c: New file.
33646         * lib/dirent_.h: New file.
33647         * lib/unistd_.h: New file.
33648         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
33649         * m4/fchdir.m4: New file.
33650         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
33651         (gl_HEADER_UNISTD): Invoke it.
33652         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
33653         function.
33654         * lib/backupfile.c (opendir, closedir): Undefine.
33655         * lib/chown.c (open, close): Undefine.
33656         * lib/clean-temp.c (open, close): Undefine.
33657         * lib/copy-file.c (open, close): Undefine.
33658         * lib/execute.c (open, close): Undefine.
33659         * lib/fsusage.c (open, close): Undefine.
33660         * lib/gc-gnulib.c (open, close): Undefine.
33661         * lib/getcwd.c (opendir, closedir): Undefine.
33662         * lib/glob.c (opendir, closedir): Undefine.
33663         * lib/javacomp.c (open, close): Undefine.
33664         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
33665         * lib/openat-proc.c (open, close): Undefine.
33666         * lib/pagealign_alloc.c (open, close): Undefine.
33667         * lib/pipe.c (open, close): Undefine.
33668         * lib/progreloc.c (open, close): Undefine.
33669         * lib/savedir.c (opendir, closedir): Undefine.
33670         * lib/utime.c (open, close): Undefine.
33671         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
33672
33673 2007-01-10  Bruno Haible  <bruno@clisp.org>
33674
33675         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
33676
33677 2007-01-12  Eric Blake  <ebb9@byu.net>
33678
33679         Provide a robust <wchar.h>.  Further simplifications are now
33680         possible in other modules, but not included here.
33681         * modules/wchar: New module.
33682         * m4/wchar.m4: New file.
33683         * lib/wchar_.h: Likewise.
33684         * modules/mbchar (Depends-on): Depend on wchar, as the first use
33685         of the new module.
33686         * MODULES.html.sh (Extended multibyte and wide character utilities):
33687         New section.
33688
33689 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
33690
33691         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
33692         to a reasonable default for memory allocation.
33693         (xreadlink): Don't allocate a huge buffer, to work around a buggy
33694         file system that reports garbage st_size values for symlinks.
33695         Problem reported by Liyang Hu.
33696
33697 2007-01-11  Simon Josefsson  <simon@josefsson.org>
33698
33699         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
33700         Emacs .#* auto-save files).
33701
33702 2007-01-11  Bruno Haible  <bruno@clisp.org>
33703
33704         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
33705         directory.
33706
33707 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
33708
33709         Use @...@ consistently in lib/wctype_.h.
33710         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
33711         on it being set to 1 or 0.
33712         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
33713         go back to AC_SUBSTing it.
33714         * modules/wctype (Makefile.am): Undo previous change.
33715
33716 2007-01-10  Eric Blake  <ebb9@byu.net>
33717
33718         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
33719         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
33720         * modules/wctype (Makefile.am): Likewise.
33721         Reported by Chris McGuire.
33722
33723 2007-01-10  Jim Meyering  <jim@meyering.net>
33724
33725         fts.c: a small readability/maintainability improvement
33726         * lib/fts.c (fts_read): Make this code slightly more readable and
33727         maintainable by hoisting the "sp->fts_cur = p" assignments to
33728         immediately follow the statements that set P.  Derived from
33729         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
33730
33731 2007-01-10  Eric Blake  <ebb9@byu.net>
33732
33733         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
33734         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
33735         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33736         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
33737         Reported by Chris McGuire.
33738
33739 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33740
33741         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
33742         in sed script.
33743
33744 2007-01-09  Bruno Haible  <bruno@clisp.org>
33745
33746         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
33747         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
33748         variables.
33749         (func_module): Use them.
33750
33751 2007-01-09  Bruno Haible  <bruno@clisp.org>
33752
33753         * modules/unistr/base: New file.
33754         * lib/unistr.h: New file.
33755
33756         * modules/unistr/u8-to-u16: New file.
33757         * lib/unistr/u8-to-u16.c: New file.
33758
33759         * modules/unistr/u8-to-u32: New file.
33760         * lib/unistr/u8-to-u32.c: New file.
33761
33762         * modules/unistr/u16-to-u8: New file.
33763         * lib/unistr/u16-to-u8.c: New file.
33764
33765         * modules/unistr/u16-to-u32: New file.
33766         * lib/unistr/u16-to-u32.c: New file.
33767
33768         * modules/unistr/u32-to-u8: New file.
33769         * lib/unistr/u32-to-u8.c: New file.
33770
33771         * modules/unistr/u32-to-u16: New file.
33772         * lib/unistr/u32-to-u16.c: New file.
33773
33774         * modules/unistr/u8-check: New file.
33775         * modules/unistr/u16-check: New file.
33776         * modules/unistr/u32-check: New file.
33777         * lib/unistr/u8-check.c: New file.
33778         * lib/unistr/u16-check.c: New file.
33779         * lib/unistr/u32-check.c: New file.
33780
33781         * modules/unistr/u8-chr: New file.
33782         * modules/unistr/u16-chr: New file.
33783         * modules/unistr/u32-chr: New file.
33784         * lib/unistr/u8-chr.c: New file.
33785         * lib/unistr/u16-chr.c: New file.
33786         * lib/unistr/u32-chr.c: New file.
33787
33788         * modules/unistr/u8-cmp: New file.
33789         * modules/unistr/u16-cmp: New file.
33790         * modules/unistr/u32-cmp: New file.
33791         * lib/unistr/u8-cmp.c: New file.
33792         * lib/unistr/u16-cmp.c: New file.
33793         * lib/unistr/u32-cmp.c: New file.
33794
33795         * modules/unistr/u8-cpy: New file.
33796         * modules/unistr/u16-cpy: New file.
33797         * modules/unistr/u32-cpy: New file.
33798         * lib/unistr/u8-cpy.c: New file.
33799         * lib/unistr/u16-cpy.c: New file.
33800         * lib/unistr/u32-cpy.c: New file.
33801         * lib/unistr/u-cpy.h: New file.
33802
33803         * modules/unistr/u8-cpy-alloc: New file.
33804         * modules/unistr/u16-cpy-alloc: New file.
33805         * modules/unistr/u32-cpy-alloc: New file.
33806         * lib/unistr/u8-cpy-alloc.c: New file.
33807         * lib/unistr/u16-cpy-alloc.c: New file.
33808         * lib/unistr/u32-cpy-alloc.c: New file.
33809         * lib/unistr/u-cpy-alloc.h: New file.
33810
33811         * modules/unistr/u8-endswith: New file.
33812         * modules/unistr/u16-endswith: New file.
33813         * modules/unistr/u32-endswith: New file.
33814         * lib/unistr/u8-endswith.c: New file.
33815         * lib/unistr/u16-endswith.c: New file.
33816         * lib/unistr/u32-endswith.c: New file.
33817         * lib/unistr/u-endswith.h: New file.
33818
33819         * modules/unistr/u8-mblen: New file.
33820         * modules/unistr/u16-mblen: New file.
33821         * modules/unistr/u32-mblen: New file.
33822         * lib/unistr/u8-mblen.c: New file.
33823         * lib/unistr/u16-mblen.c: New file.
33824         * lib/unistr/u32-mblen.c: New file.
33825
33826         * modules/unistr/u8-mbtouc: New file.
33827         * modules/unistr/u16-mbtouc: New file.
33828         * modules/unistr/u32-mbtouc: New file.
33829         * lib/unistr/u8-mbtouc.c: New file.
33830         * lib/unistr/u16-mbtouc.c: New file.
33831         * lib/unistr/u32-mbtouc.c: New file.
33832
33833         * modules/unistr/u8-mbtouc-safe: New file.
33834         * modules/unistr/u16-mbtouc-safe: New file.
33835         * modules/unistr/u32-mbtouc-safe: New file.
33836         * lib/unistr/u8-mbtouc-safe.c: New file.
33837         * lib/unistr/u16-mbtouc-safe.c: New file.
33838         * lib/unistr/u32-mbtouc-safe.c: New file.
33839
33840         * modules/unistr/u8-move: New file.
33841         * modules/unistr/u16-move: New file.
33842         * modules/unistr/u32-move: New file.
33843         * lib/unistr/u8-move.c: New file.
33844         * lib/unistr/u16-move.c: New file.
33845         * lib/unistr/u32-move.c: New file.
33846         * lib/unistr/u-move.h: New file.
33847
33848         * modules/unistr/u8-next: New file.
33849         * modules/unistr/u16-next: New file.
33850         * modules/unistr/u32-next: New file.
33851         * lib/unistr/u8-next.c: New file.
33852         * lib/unistr/u16-next.c: New file.
33853         * lib/unistr/u32-next.c: New file.
33854
33855         * modules/unistr/u8-prev: New file.
33856         * modules/unistr/u16-prev: New file.
33857         * modules/unistr/u32-prev: New file.
33858         * lib/unistr/u8-prev.c: New file.
33859         * lib/unistr/u16-prev.c: New file.
33860         * lib/unistr/u32-prev.c: New file.
33861
33862         * modules/unistr/u8-set: New file.
33863         * modules/unistr/u16-set: New file.
33864         * modules/unistr/u32-set: New file.
33865         * lib/unistr/u8-set.c: New file.
33866         * lib/unistr/u16-set.c: New file.
33867         * lib/unistr/u32-set.c: New file.
33868         * lib/unistr/u-set.h: New file.
33869
33870         * modules/unistr/u8-startswith: New file.
33871         * modules/unistr/u16-startswith: New file.
33872         * modules/unistr/u32-startswith: New file.
33873         * lib/unistr/u8-startswith.c: New file.
33874         * lib/unistr/u16-startswith.c: New file.
33875         * lib/unistr/u32-startswith.c: New file.
33876         * lib/unistr/u-startswith.h: New file.
33877
33878         * modules/unistr/u8-stpcpy: New file.
33879         * modules/unistr/u16-stpcpy: New file.
33880         * modules/unistr/u32-stpcpy: New file.
33881         * lib/unistr/u8-stpcpy.c: New file.
33882         * lib/unistr/u16-stpcpy.c: New file.
33883         * lib/unistr/u32-stpcpy.c: New file.
33884         * lib/unistr/u-stpcpy.h: New file.
33885
33886         * modules/unistr/u8-stpncpy: New file.
33887         * modules/unistr/u16-stpncpy: New file.
33888         * modules/unistr/u32-stpncpy: New file.
33889         * lib/unistr/u8-stpncpy.c: New file.
33890         * lib/unistr/u16-stpncpy.c: New file.
33891         * lib/unistr/u32-stpncpy.c: New file.
33892         * lib/unistr/u-stpncpy.h: New file.
33893
33894         * modules/unistr/u8-strcat: New file.
33895         * modules/unistr/u16-strcat: New file.
33896         * modules/unistr/u32-strcat: New file.
33897         * lib/unistr/u8-strcat.c: New file.
33898         * lib/unistr/u16-strcat.c: New file.
33899         * lib/unistr/u32-strcat.c: New file.
33900         * lib/unistr/u-strcat.h: New file.
33901
33902         * modules/unistr/u8-strchr: New file.
33903         * modules/unistr/u16-strchr: New file.
33904         * modules/unistr/u32-strchr: New file.
33905         * lib/unistr/u8-strchr.c: New file.
33906         * lib/unistr/u16-strchr.c: New file.
33907         * lib/unistr/u32-strchr.c: New file.
33908
33909         * modules/unistr/u8-strcmp: New file.
33910         * modules/unistr/u16-strcmp: New file.
33911         * modules/unistr/u32-strcmp: New file.
33912         * lib/unistr/u8-strcmp.c: New file.
33913         * lib/unistr/u16-strcmp.c: New file.
33914         * lib/unistr/u32-strcmp.c: New file.
33915
33916         * modules/unistr/u8-strcpy: New file.
33917         * modules/unistr/u16-strcpy: New file.
33918         * modules/unistr/u32-strcpy: New file.
33919         * lib/unistr/u8-strcpy.c: New file.
33920         * lib/unistr/u16-strcpy.c: New file.
33921         * lib/unistr/u32-strcpy.c: New file.
33922         * lib/unistr/u-strcpy.h: New file.
33923
33924         * modules/unistr/u8-strcspn: New file.
33925         * modules/unistr/u16-strcspn: New file.
33926         * modules/unistr/u32-strcspn: New file.
33927         * lib/unistr/u8-strcspn.c: New file.
33928         * lib/unistr/u16-strcspn.c: New file.
33929         * lib/unistr/u32-strcspn.c: New file.
33930         * lib/unistr/u-strcspn.h: New file.
33931
33932         * modules/unistr/u8-strdup: New file.
33933         * modules/unistr/u16-strdup: New file.
33934         * modules/unistr/u32-strdup: New file.
33935         * lib/unistr/u8-strdup.c: New file.
33936         * lib/unistr/u16-strdup.c: New file.
33937         * lib/unistr/u32-strdup.c: New file.
33938         * lib/unistr/u-strdup.h: New file.
33939
33940         * modules/unistr/u8-strlen: New file.
33941         * modules/unistr/u16-strlen: New file.
33942         * modules/unistr/u32-strlen: New file.
33943         * lib/unistr/u8-strlen.c: New file.
33944         * lib/unistr/u16-strlen.c: New file.
33945         * lib/unistr/u32-strlen.c: New file.
33946         * lib/unistr/u-strlen.h: New file.
33947
33948         * modules/unistr/u8-strmblen: New file.
33949         * modules/unistr/u16-strmblen: New file.
33950         * modules/unistr/u32-strmblen: New file.
33951         * lib/unistr/u8-strmblen.c: New file.
33952         * lib/unistr/u16-strmblen.c: New file.
33953         * lib/unistr/u32-strmblen.c: New file.
33954
33955         * modules/unistr/u8-strmbtouc: New file.
33956         * modules/unistr/u16-strmbtouc: New file.
33957         * modules/unistr/u32-strmbtouc: New file.
33958         * lib/unistr/u8-strmbtouc.c: New file.
33959         * lib/unistr/u16-strmbtouc.c: New file.
33960         * lib/unistr/u32-strmbtouc.c: New file.
33961
33962         * modules/unistr/u8-strncat: New file.
33963         * modules/unistr/u16-strncat: New file.
33964         * modules/unistr/u32-strncat: New file.
33965         * lib/unistr/u8-strncat.c: New file.
33966         * lib/unistr/u16-strncat.c: New file.
33967         * lib/unistr/u32-strncat.c: New file.
33968         * lib/unistr/u-strncat.h: New file.
33969
33970         * modules/unistr/u8-strncmp: New file.
33971         * modules/unistr/u16-strncmp: New file.
33972         * modules/unistr/u32-strncmp: New file.
33973         * lib/unistr/u8-strncmp.c: New file.
33974         * lib/unistr/u16-strncmp.c: New file.
33975         * lib/unistr/u32-strncmp.c: New file.
33976
33977         * modules/unistr/u8-strncpy: New file.
33978         * modules/unistr/u16-strncpy: New file.
33979         * modules/unistr/u32-strncpy: New file.
33980         * lib/unistr/u8-strncpy.c: New file.
33981         * lib/unistr/u16-strncpy.c: New file.
33982         * lib/unistr/u32-strncpy.c: New file.
33983         * lib/unistr/u-strncpy.h: New file.
33984
33985         * modules/unistr/u8-strnlen: New file.
33986         * modules/unistr/u16-strnlen: New file.
33987         * modules/unistr/u32-strnlen: New file.
33988         * lib/unistr/u8-strnlen.c: New file.
33989         * lib/unistr/u16-strnlen.c: New file.
33990         * lib/unistr/u32-strnlen.c: New file.
33991         * lib/unistr/u-strnlen.h: New file.
33992
33993         * modules/unistr/u8-strpbrk: New file.
33994         * modules/unistr/u16-strpbrk: New file.
33995         * modules/unistr/u32-strpbrk: New file.
33996         * lib/unistr/u8-strpbrk.c: New file.
33997         * lib/unistr/u16-strpbrk.c: New file.
33998         * lib/unistr/u32-strpbrk.c: New file.
33999         * lib/unistr/u-strpbrk.h: New file.
34000
34001         * modules/unistr/u8-strrchr: New file.
34002         * modules/unistr/u16-strrchr: New file.
34003         * modules/unistr/u32-strrchr: New file.
34004         * lib/unistr/u8-strrchr.c: New file.
34005         * lib/unistr/u16-strrchr.c: New file.
34006         * lib/unistr/u32-strrchr.c: New file.
34007
34008         * modules/unistr/u8-strspn: New file.
34009         * modules/unistr/u16-strspn: New file.
34010         * modules/unistr/u32-strspn: New file.
34011         * lib/unistr/u8-strspn.c: New file.
34012         * lib/unistr/u16-strspn.c: New file.
34013         * lib/unistr/u32-strspn.c: New file.
34014         * lib/unistr/u-strspn.h: New file.
34015
34016         * modules/unistr/u8-strstr: New file.
34017         * modules/unistr/u16-strstr: New file.
34018         * modules/unistr/u32-strstr: New file.
34019         * lib/unistr/u8-strstr.c: New file.
34020         * lib/unistr/u16-strstr.c: New file.
34021         * lib/unistr/u32-strstr.c: New file.
34022         * lib/unistr/u-strstr.h: New file.
34023
34024         * modules/unistr/u8-strtok: New file.
34025         * modules/unistr/u16-strtok: New file.
34026         * modules/unistr/u32-strtok: New file.
34027         * lib/unistr/u8-strtok.c: New file.
34028         * lib/unistr/u16-strtok.c: New file.
34029         * lib/unistr/u32-strtok.c: New file.
34030         * lib/unistr/u-strtok.h: New file.
34031
34032         * modules/unistr/u8-uctomb: New file.
34033         * modules/unistr/u16-uctomb: New file.
34034         * modules/unistr/u32-uctomb: New file.
34035         * lib/unistr/u8-uctomb.c: New file.
34036         * lib/unistr/u16-uctomb.c: New file.
34037         * lib/unistr/u32-uctomb.c: New file.
34038
34039         * MODULES.html.sh (Unicode string functions): Add the new modules.
34040
34041 2007-01-08  Bruno Haible  <bruno@clisp.org>
34042
34043         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
34044         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
34045         subdirectories.
34046
34047 2007-01-08  Karl Berry  <karl@gnu.org>
34048
34049         * doc/error.texi: mention that main() fns must set program_name
34050         when progname is used.
34051
34052 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
34053
34054         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
34055         WCTYPE_H is empty, for the benefit of builds from non-distclean
34056         directories.  Problem reported by Eric Blake in
34057         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
34058
34059 2007-01-08  Bruno Haible  <bruno@clisp.org>
34060
34061         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
34062         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
34063         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
34064         PROVIDE_CANONICALIZE_FILENAME_MODE.
34065         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
34066
34067 2007-01-08  Bruno Haible  <bruno@clisp.org>
34068
34069         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
34070         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
34071         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
34072         * lib/fts.c: Likewise.
34073         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
34074
34075 2006-12-25  Bruno Haible  <bruno@clisp.org>
34076
34077         * modules/utf8-ucs4-safe: New file.
34078         * lib/utf8-ucs4-safe.h: New file.
34079         * lib/unistr/utf8-ucs4-safe.c: New file.
34080
34081         * modules/utf16-ucs4-safe: New file.
34082         * lib/utf16-ucs4-safe.h: New file.
34083         * lib/unistr/utf16-ucs4-safe.c: New file.
34084
34085         * MODULES.html.sh (Unicode string functions): Add the new modules.
34086
34087 2007-01-08  Bruno Haible  <bruno@clisp.org>
34088
34089         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
34090         (Depends-on): Add unitypes.
34091         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
34092         (u8_mbtouc_aux): Move out to separate file.
34093         (u8_mbtouc): Use ucs4_t, uint8_t types.
34094         * lib/unistr/utf8-ucs4.c: New file.
34095
34096         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
34097         (Depends-on): Add unitypes.
34098         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
34099         (u16_mbtouc_aux): Move out to separate file.
34100         (u16_mbtouc): Use ucs4_t, uint16_t types.
34101         * lib/unistr/utf16-ucs4.c: New file.
34102
34103         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
34104         (Depends-on): Add unitypes.
34105         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
34106         (u8_uctomb_aux): Move out to separate file.
34107         (u8_uctomb): Use ucs4_t, uint8_t types.
34108         * lib/unistr/ucs4-utf8.c: New file.
34109
34110         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
34111         (Depends-on): Add unitypes.
34112         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
34113         (u16_uctomb_aux): Move out to separate file.
34114         (u16_uctomb): Use ucs4_t, uint16_t types.
34115         * lib/unistr/ucs4-utf16.c: New file.
34116
34117 2006-12-25  Bruno Haible  <bruno@clisp.org>
34118
34119         * modules/unitypes: New file.
34120         * lib/unitypes.h: New file.
34121         * MODULES.html.sh (func_all_modules): New section "Unicode string
34122         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
34123         this section. Add unitypes.
34124
34125 2007-01-08  Bruno Haible  <bruno@clisp.org>
34126
34127         Avoid variable names that conflict with those from libtool.
34128         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
34129         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
34130         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
34131         library_names_spec to acl_library_names_spec, hardcode_* to
34132         acl_hardcode_*.
34133         Reported by Ralf Wildenhues.
34134
34135 2007-01-08  Bruno Haible  <bruno@clisp.org>
34136
34137         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
34138         definition.
34139         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
34140         definition.
34141         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
34142         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
34143         definition.
34144         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
34145         definition.
34146         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
34147         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
34148         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
34149         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
34150         definition.
34151         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
34152         definition.
34153         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
34154         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
34155         GC_USE_<algorithm>.
34156         * lib/gc-libgcrypt.c: Likewise.
34157         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
34158         * modules/gc-arctwo (configure.ac): Likewise.
34159         * modules/gc-des (configure.ac): Likewise.
34160         * modules/gc-hmac-md5 (configure.ac): Likewise.
34161         * modules/gc-hmac-sha1 (configure.ac): Likewise.
34162         * modules/gc-md2 (configure.ac): Likewise.
34163         * modules/gc-md4 (configure.ac): Likewise.
34164         * modules/gc-md5 (configure.ac): Likewise.
34165         * modules/gc-random (configure.ac): Likewise.
34166         * modules/gc-rijndael (configure.ac): Likewise.
34167         * modules/gc-sha1 (configure.ac): Likewise.
34168
34169 2007-01-08  Bruno Haible  <bruno@clisp.org>
34170
34171         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
34172         macro definition.
34173         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
34174         definition.
34175         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
34176         definition.
34177         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
34178         * modules/fcntl-safer (configure.ac): Likewise.
34179         * modules/fopen-safer (configure.ac): Likewise.
34180         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
34181         GNULIB_FWRITEERROR macro definition.
34182
34183 2007-01-08  Bruno Haible  <bruno@clisp.org>
34184
34185         * m4/gnulib-common.m4: New file.
34186         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
34187         (func_get_filelist): Add m4/gnulib-common.m4.
34188
34189 2007-01-08  Bruno Haible  <bruno@clisp.org>
34190
34191         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
34192         command.
34193
34194 2007-01-08  Jim Meyering  <jim@meyering.net>
34195
34196         Use a more robust test for a "can't happen" condition.
34197         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
34198         narrowed the st_size value.  Presuming the "can't happen" condition
34199         is true, that narrowing could conceivably convert an invalid st_size
34200         value into a valid one.  Instead, use a change based on Matthew
34201         Woehlke's original patch.
34202
34203         Slight readability improvement: use an assert-like macro
34204         in place of literal "abort ()" uses.
34205         * lib/fts.c (fts_assert): Define.
34206         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
34207         Use this macro instead of a bare 'abort'.
34208
34209 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
34210
34211         Don't worry about using IRIX 5.3's wctype.h broken definitions;
34212         simply work around them.
34213         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
34214         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
34215         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
34216         declaring.
34217         Don't bother to define as macros, since the standard doesn't require it.
34218         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
34219         longer worry about IRIX 5.3.
34220         (HAVE_WCTYPE_CTMP_BUG): Remove.
34221
34222 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
34223
34224         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
34225         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
34226         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
34227         Problems reported by Georg Schwarz for IRIX 5.3.
34228
34229         * gnulib-tool (autoconf_minversion): Take the maximum version number
34230         found, not the minimum.  Problem reported by James Youngman.
34231
34232 2007-01-03  Karl Berry  <karl@gnu.org>
34233
34234         * doc/error.texi: new file, explaining interaction with progname.
34235         * doc/gnulib.texi: include it.  Update copyright.
34236
34237 2007-01-03  Simon Josefsson  <simon@josefsson.org>
34238
34239         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
34240         AC_CANONICAL_HOST, to improve autobuild outputs.
34241
34242 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
34243             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
34244
34245         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
34246         sockets, server sockets, and other file descriptors.  Count errors
34247         to compute the return value.  Reorder the code a bit to be easier
34248         to follow.  Don't set event bits that were not requested (except
34249         POLLERR and POLLHUP).
34250
34251 2007-01-01  Bruno Haible  <bruno@clisp.org>
34252
34253         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
34254
34255 2007-01-03  Jim Meyering  <jim@meyering.net>
34256
34257         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
34258
34259 2007-01-02  Bruno Haible  <bruno@clisp.org>
34260
34261         * modules/settime (Include): Require timespec.h.
34262         * modules/nanosleep (Include): Likewise.
34263
34264 2007-01-01  Bruno Haible  <bruno@clisp.org>
34265
34266         * gnulib-tool (func_emit_copyright_notice): Bump year.
34267         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
34268
34269 2007-01-01  Bruno Haible  <bruno@clisp.org>
34270
34271         Improve support for OpenBSD.
34272         * build-aux/config.rpath (libname_spec): Export.
34273         (library_names_spec): New variable. Export.
34274         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
34275         library_names_spec from the config.rpath output. Locate shared library
34276         through the name pattern in library_names_spec.
34277
34278 2007-01-01  Eric Blake  <ebb9@byu.net>
34279
34280         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
34281
34282 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
34283
34284         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
34285         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
34286         assume the C locale, and avoid an "eval" that could cause trouble.
34287         Problem with SORT reported by Bob Proulx.
34288
34289         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
34290         Define.  Trivial patch from Henning Nielsen Lund, originally
34291         sent to bug-grep@gnu.org today.
34292
34293 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
34294
34295         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
34296         struct stat.  Problem reported by Henning Nielsen Lund.
34297         * lib/acl.c: Include acl.h first, to check interface.  Don't
34298         bother to include sys/types.h and sys/stat.h again.
34299
34300 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
34301
34302         Import the following change from libc; problem reported by
34303         Sven Verdoolaege.
34304
34305         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
34306
34307         [BZ #1373]
34308         * lib/argp.h: Remove __NTH for __argp_usage inline function.
34309
34310 2006-12-28  Jim Meyering  <jim@meyering.net>
34311
34312         * build-aux/announce-gen: Do not assume that the package
34313         builds any of tar.gz, tar.bz2, and .xdelta files.
34314         Suggestion from Simon Josefsson.
34315
34316 2006-12-28  Simon Josefsson  <simon@josefsson.org>
34317
34318         * modules/announce-gen: New file.
34319
34320 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
34321
34322         * lib/mbchar.h: Just include <wctype.h>; the wctype module
34323         handles its gotchas now.
34324         * lib/mbswidth.c: Likewise.
34325         * lib/wcwidth.h: Likewise.
34326         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
34327         and iswcntrl; the wctype module does this stuff now.
34328         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
34329         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
34330         * modules/mbchar (Depends-on): Add wctype.
34331         * modules/mbswidth (Depends-on): Likewise.
34332         * modules/wcwidth (Depends-on): Likewise.
34333
34334 2006-12-27  Eric Blake  <ebb9@byu.net>
34335
34336         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
34337         module uses more than what <wctype.h> is required to provide.
34338
34339 2006-12-26  Eric Blake  <ebb9@byu.net>
34340
34341         * gnulib-tool (sed_extract_prog): Avoid space-tab.
34342
34343 2006-12-26  Eric Blake  <ebb9@byu.net>
34344
34345         * modules/absolute-header: New module.
34346         * modules/fcntl (Depends-on): Depend on it.
34347         * modules/inttypes (Depends-on): Likewise.
34348         * modules/stdint (Depends-on): Likewise.
34349         * modules/sys_stat (Depends-on): Likewise.
34350         * modules/wctype (Depends-on): Likewise.
34351         * MODULES.html.sh (Support for building libraries and
34352         executables): Document it.
34353
34354 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
34355
34356         * gnulib-tool (SED): Remove, undoing previous change.
34357         The problem was that it broke coreutils on Solaris, because
34358         "sed --posix" leaked into a makefile.
34359         (sed): New alias, if 'alias' and GNU sed.
34360
34361 2006-12-24  Jim Meyering  <jim@meyering.net>
34362
34363         Work around an fchownat bug in glibc-2.4:
34364         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
34365         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
34366         in spite of the -P option.
34367         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
34368         New macros.
34369         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
34370         * modules/openat (Files): Add lib/fchownat.c.
34371         * lib/openat.c (fchownat): Don't define here.  Move to...
34372         * lib/fchownat.c: ...this new file.
34373
34374 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
34375
34376         Fix bug reported by Bruno Haible in
34377         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
34378         where quotearg.c didn't compile on Mac OS X 10.2 because it
34379         lacks <wchar.h> and wint_t.
34380         * lib/wctype_.h (__wctype_wint_t): New type.
34381         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
34382         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
34383         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
34384         Arg is now of type __wctype_wint_t, not wint_t.
34385         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
34386         substitute HAVE_WINT_T.
34387         * modules/wctype (Files): Add m4/wint_t.m4.
34388         (wctype.h): Substitute HAVE_WINT_T.
34389
34390 2006-12-23  Bruno Haible  <bruno@clisp.org>
34391
34392         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
34393
34394 2006-12-23  Bruno Haible  <bruno@clisp.org>
34395
34396         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
34397         S_ISLNK.
34398         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
34399         mingw.
34400
34401 2006-12-22  Bruno Haible  <bruno@clisp.org>
34402
34403         * lib/copy-file.c: Include acl.h.
34404         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
34405         Close the file descriptors only after being done with copy_acl.
34406         * modules/copy-file (Depends-on): Add acl.
34407
34408 2006-12-22  Bruno Haible  <bruno@clisp.org>
34409
34410         * gnulib-tool (SED): New variable.
34411         Use $SED instead of sed everywhere.
34412
34413 2006-12-22  Bruno Haible  <bruno@clisp.org>
34414
34415         * modules/no-c++: New file.
34416         * m4/no-c++.m4: New file.
34417         * MODULES.html.sh (Support for building libraries and executables):
34418         Add no-c++.
34419
34420 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
34421
34422         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34423         Include <limits.h>, and use its INT_MAX to rewrite the
34424         j loop so that it does not overflow 'int'.  Problem reported by
34425         Ralf Wildenhues in
34426         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
34427         Play it safe by shifting left by 1 rather than multiplying by 2,
34428         as GCC is less likely to optimize this away when the value
34429         is signed (when it assumes overflow leads to undefined behavior).
34430         Also, don't assume time_t uses two's complement.
34431
34432 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
34433
34434         * MODULES.html.sh: New module wctype.
34435         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
34436         * lib/fnmatch.c: Don't bother to include <wchar.h> before
34437         <wctype.h>, since the new wctype module should fix this.
34438         * lib/quotearg.c: Include <wctype.h> unconditionally, since
34439         the wctype module should arrange for it.
34440         * lib/regex_internal.h: Likewise.
34441         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
34442         since the wctype module should handle this now.
34443         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
34444         * modules/fnmatch (Depends-on): Add wctype.
34445         * modules/quotearg (Depends-on): Likewise.
34446         * modules/regex (Depends-on): Likewise.
34447
34448 2006-12-19  Bruno Haible  <bruno@clisp.org>
34449
34450         * lib/strdup.h [C++]: Wrap definitions in extern "C".
34451         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
34452
34453 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34454
34455         * modules/savewd (Depends-on): Fix dependency on fcntl.
34456
34457 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34458
34459         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
34460         conforms to C99, rather than relying on the user's environment
34461         setting of STDINT_H.
34462
34463 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34464         and Eric Blake  <ebb9@byu.net>
34465
34466         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
34467         This is more consistent with the other defines here.
34468         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
34469         Port to z/OS.  Problem reported by Paul Gilmartin.
34470         Change local vars to use gl_ prefix rather than ac_.
34471         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
34472         with other defines.
34473         * modules/double-slash-root: New module.
34474         * modules/dirname (Files): Remove m4/double-slash-root.m4.
34475         (Depends-on): Add double-slash-root.
34476         * MODULES.html.sh (File system functions): Mention new module.
34477
34478 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
34479
34480         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
34481         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
34482         This is for the benefit of gzip, which doesn't do i18n.
34483
34484 2006-12-12  Jim Meyering  <jim@meyering.net>
34485
34486         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
34487         Reported by Andreas Schwab <schwab@suse.de>.
34488
34489 2006-12-12  Bruno Haible  <bruno@clisp.org>
34490
34491         Merge these changes.
34492         2006-09-05  Bruno Haible  <bruno@clisp.org>
34493         * lib/iconvme.c (iconv_string): No need to save and restore errno when
34494         iconv_alloc succeeded.
34495         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
34496         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
34497         test for " && dest " at the end - dest is always != NULL there. Call
34498         iconv with 4xNULL arguments initially, to reset the state. Call iconv
34499         with 2xNULL arguments, also to flush the state storage. Handle the
34500         IRIX iconv behaviour. Realloc the final result, to throw away unused
34501         memory.
34502
34503 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
34504
34505         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
34506         and fchmodat unconditionally, since glibc 2.4 has them.
34507         Problem reported by Arkadiusz Miskiewicz.
34508
34509 2006-12-10  Bruno Haible  <bruno@clisp.org>
34510
34511         * gnulib-tool (func_import): Show the include files only for those
34512         modules that are copied and specified.
34513         Reported by Karl Berry.
34514
34515 2006-12-08  Jim Meyering  <jim@meyering.net>
34516
34517         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
34518         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
34519
34520         * build-aux/announce-gen: Add two new options, both optional:
34521         --bootstrap-tools=TOOL_LIST
34522               a comma-separated list of tools, e.g.,
34523               autoconf,automake,bison,gnulib
34524         --gnulib-snapshot-date=DATE
34525               if gnulib is in the bootstrap tool list,
34526               then report this as the snapshot date.
34527               If not specified, use the current date/time.
34528               If you specify a date here, be sure it's UTC.
34529
34530 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34531
34532         * tests/test-argp-2.sh: Fix test to match actual output.
34533         (func_compare): Fix sed script to be portable.
34534
34535 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
34536
34537         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
34538         workaround for this case.  It is not autoconfigured now; offhand
34539         it's hard to see how to autoconfigure it.
34540
34541 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34542
34543         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
34544         a directory that is about to be chowned.  Such a directory's
34545         initial file permissions should permit the owner only and this
34546         should not be changed until after the chown, since the group and
34547         other bits would be incorrect if they granted permission before
34548         the chown.
34549
34550         Fix porting problem for iswctype reported by Georg Schwarz in:
34551         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
34552         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
34553         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
34554         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
34555         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34556
34557 2006-12-03  Jim Meyering  <jim@meyering.net>
34558
34559         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
34560         p->fts_statp may not yet be defined.
34561         (fts_read): Instead, set it in the caller, once p->fts_statp is
34562         sure to be defined, and corresponds to a top-level directory.
34563         This bug made du -x fail.  Here's the coreutils test case:
34564         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
34565         Reported by Mike Frysinger.
34566
34567 2006-12-01  Jim Meyering  <jim@meyering.net>
34568
34569         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
34570         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
34571         Reported by Simon Josefsson.
34572
34573 2006-11-30  Jim Meyering  <jim@meyering.net>
34574
34575         * m4/warning.m4: Use the all-permissive copyright notice
34576         recommended by RMS (rather than LGPL).
34577         * m4/vararrays.m4: Likewise.
34578         * m4/flexmember.m4: Likewise.
34579
34580 2006-11-29  Bruno Haible  <bruno@clisp.org>
34581
34582         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34583         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
34584         using +=.
34585         Reported by Simon Josefsson <simon@josefsson.org>.
34586
34587 2006-11-28  James Youngman <jay@gnu.org>
34588
34589         * README: Advise users that they might find the bug-gnulib@gnu.org
34590         and autotools-announce@gnu.org mailing lists useful.
34591
34592 2006-11-28  Bruno Haible  <bruno@clisp.org>
34593
34594         * m4/ptrdiff_max.m4: Remove file.
34595
34596 2006-11-21  Bruno Haible  <bruno@clisp.org>
34597
34598         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
34599         _AC_COMPUTE_INT.
34600         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34601         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
34602         _AC_COMPUTE_INT.
34603         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34604         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
34605         _AC_COMPUTE_INT.
34606         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34607
34608 2006-11-28  Jim Meyering  <jim@meyering.net>
34609
34610         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
34611         warning from "gcc -Wshadow" about shadowing the builtin.
34612
34613 2006-11-27  Bruno Haible  <bruno@clisp.org>
34614
34615         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
34616         _AC_COMPUTE_INT.
34617         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34618
34619 2006-11-27  Bruno Haible  <bruno@clisp.org>
34620             Paul Eggert  <eggert@cs.ucla.edu>
34621
34622         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
34623
34624 2006-11-26  Bruno Haible  <bruno@clisp.org>
34625
34626         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34627         noinst_LTLIBRARIES.
34628
34629 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
34630             Bruno Haible  <bruno@clisp.org>
34631
34632         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
34633         if compiling with "gcc -ansi".
34634
34635 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
34636
34637         Fix some incompatibilities with gcc -ansi -pedantic.
34638         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
34639         if compiling pedantically with GCC, unless it's C99 or later.
34640         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
34641         it mishandles gcc -ansi -pedantic as well.
34642         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
34643         if gcc -pedantic.
34644         * lib/regexec.c (check_node_accept_bytes): Don't use auto
34645         initializers for struct if -pedantic, unless it's C99 or later.
34646
34647 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
34648
34649         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
34650         Don't close an fd more than once. Identical atimes indicate
34651         success, not failure.
34652
34653 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
34654
34655         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
34656
34657 2006-11-23  Jim Meyering  <jim@meyering.net>
34658
34659         * build-aux/announce-gen: New file.  From coreutils.
34660
34661 2006-11-22  Jim Meyering  <jim@meyering.net>
34662
34663         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
34664         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
34665         (fts_read): Use a temporary to narrow the overused st_size member
34666         before using it in a switch statement.  Reported by Matthew Woehlke.
34667
34668         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
34669         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
34670
34671 2006-11-20  Bruno Haible  <bruno@clisp.org>
34672
34673         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
34674         changequote instead of pairs of brackets.
34675         Reported by Andreas Schwab <schwab@suse.de>.
34676
34677 2006-11-21  Jim Meyering  <jim@meyering.net>
34678
34679         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
34680         so as to remain compatible with older compilers.
34681         Patch from Michael Deutschmann.
34682
34683 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34684
34685         * MODULES.html.sh (File system functions): Add openat.
34686
34687         * lib/openat.h (rpl_fstatat): New macro, if
34688         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
34689         (fstatat): Define to rpl_fstatat under the same conditions,
34690         unless COMPILING_FSTATAT.
34691         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
34692         seems to have the bug.
34693         * lib/fstatat.c: New file.
34694         * modules/openat (Files): Add it.
34695
34696 2006-11-20  Bruno Haible  <bruno@clisp.org>
34697
34698         * Makefile: New file.
34699
34700 2006-11-20  Jim Meyering  <jim@meyering.net>
34701
34702         The beginnings of syntax-related checks for gnulib.
34703         * lib/Makefile: New file.
34704         * lib/t-idcache: New script.  Ensure that the two halves of
34705         idcache.c stay in sync.
34706
34707         * lib/idcache.c: Adjust comments in user- and group- portions to
34708         be more accurate, and to be consistent with one another.
34709
34710 2006-11-20  Jim Meyering  <jim@meyering.net>
34711
34712         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
34713         continue using the flexible array member (thus, this module performs
34714         half as many malloc calls), with the addition that...
34715         (getgroup, getuser): Consistently record a non-match via an empty
34716         "name" string, and map an empty string match to a NULL return value.
34717         * modules/idcache (Depends-on): Re-add flexmember.
34718
34719         * lib/idcache.c (getuser): Remove all uses of the register keyword.
34720         (getuidbyname, getgroup, getgidbyname): Likewise.
34721
34722         Use cleaner syntax: NULL rather than 0.
34723         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
34724
34725 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34726
34727         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
34728         It mishandled the case where the group was missing.
34729         Problem reported by Greg Schafer.
34730         * modules/idcache: Likewise.
34731
34732 2006-11-18  Jim Meyering  <jim@meyering.net>
34733
34734         * check-module (%exempt_header): Add exception for some
34735         conditionally-included headers.
34736
34737         * modules/i-ring (Depends-on): Add verify.
34738         (License): Change to LGPL.
34739
34740 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34741
34742         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
34743         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
34744         and inttostr.h.  Use snprintf rather than uinttostr, so that
34745         LGPLed code doesn't depend on GPLed.
34746
34747 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
34748
34749         * modules/inline (License): Change from GPL to LGPL.
34750
34751 2006-11-17  Jim Meyering  <jim@meyering.net>
34752
34753         * modules/d-type (License): Switch to LGPL.
34754
34755 2006-11-15  Bruno Haible  <bruno@clisp.org>
34756
34757         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
34758
34759 2006-11-15  Eric Blake  <ebb9@byu.net>
34760
34761         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
34762         the module dependency.
34763
34764 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34765             Bruno Haible  <bruno@clisp.org>
34766
34767         * gnulib-tool (func_create_testdir): Add license consistency check.
34768
34769 2006-11-15  Eric Blake  <ebb9@byu.net>
34770
34771         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
34772         random "(cached)" in configure output.
34773
34774 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34775
34776         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
34777         test for conforming inttypes.h is both announced and cached.
34778
34779         * MODULES.html.sh (seen_modules, seen_files): New variables.
34780         (func_module): Rewrite to use a few less gnulib-tool and sed
34781         invocations.  Avoid a couple of quadratic algorithms for ...
34782         (missed_modules, missed_files): ... these, with ...
34783         (func_append, func_tmpdir): ... these new functions, from
34784         gnulib-tool.  Analogously, install traps for cleanup.
34785
34786         * tests/test-gc.c (main): Remove unused variables.
34787         * tests/test-read-file.c: Include stdlib.h, for 'free'.
34788
34789 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
34790
34791         * modules/inttostr (License): Change to LGPL.
34792
34793 2006-11-14  Eric Blake  <ebb9@byu.net>
34794
34795         * modules/tempname (License): Change to LGPL.
34796
34797 2006-11-14  Eric Blake  <ebb9@byu.net>
34798
34799         * doc/functions.texi (Function Portability): *printf functions on
34800         Cygwin now understand all POSIX size specifiers.
34801
34802 2006-11-14  Bruno Haible  <bruno@clisp.org>
34803
34804         * modules/c-ctype (License): Change to LGPL.
34805
34806 2006-11-12  Bruno Haible  <bruno@clisp.org>
34807
34808         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
34809         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
34810         for GNOME libraries, for which the include files are installed in
34811         subdirectories of $prefix/include.
34812
34813 2006-11-12  Bruno Haible  <bruno@clisp.org>
34814
34815         * m4/lib-link.m4: Require at least autoconf-2.54.
34816         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
34817         name to underscores for the --with option.
34818
34819 2006-11-13  Bruno Haible  <bruno@clisp.org>
34820
34821         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
34822         the tests directory.
34823         Reported by Ralf Wildenhues.
34824
34825 2006-11-13  Bruno Haible  <bruno@clisp.org>
34826
34827         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
34828         (func_emit_initmacro_end): Undo the override here.
34829         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
34830         Works around the famous automake error in coreutils.
34831
34832 2006-11-13  Eric Blake  <ebb9@byu.net>
34833
34834         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
34835         element, not its node.
34836
34837 2006-11-12  Bruno Haible  <bruno@clisp.org>
34838
34839         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
34840         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
34841
34842 2006-11-12  Bruno Haible  <bruno@clisp.org>
34843
34844         * gnulib-tool: New option --local-symlink.
34845         (func_usage): Document it.
34846         (lsymbolic): New variable.
34847         (func_import, func_create_testdir): If --symlink was not specified,
34848         test whether --local-symlink was specified and the file comes from
34849         the local_gnulib_dir.
34850
34851 2006-11-12  Bruno Haible  <bruno@clisp.org>
34852
34853         * gnulib-tool (func_ln): New function.
34854         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
34855
34856 2006-11-12  Bruno Haible  <bruno@clisp.org>
34857
34858         Finish support for source files in subdirectories.
34859         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
34860         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
34861         AUTOMAKE_OPTIONS.
34862         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
34863
34864 2006-11-12  Bruno Haible  <bruno@clisp.org>
34865
34866         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34867         EXTRA_lib_SOURCES augmentation.
34868         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
34869
34870 2006-11-12  Jim Meyering  <jim@meyering.net>
34871
34872         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
34873         file descriptors.  This also averts a failure on systems with
34874         native openat support when a traversed directory lacks "x" access.
34875         * lib/fts_.h: Include "i-ring.h"
34876         (struct FTS) [fts_fd_ring]: New member.
34877         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
34878         (FCHDIR): Add parentheses.
34879         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
34880         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
34881         When descending, rather than simply closing the previous
34882         fts_cwd_fd value, push that file descriptor onto the ring.
34883         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
34884         (fts_open): Initialize the new fd_ring member.
34885         (fts_close): Clear the ring.
34886         (fts_safe_changedir): When possible, use our new fd_ring to skip
34887         the diropen and fstat and dev/ino comparison that would normally
34888         accompany a virtual `chdir ("..")'.
34889
34890         * modules/fts (Depends-on): Add i-ring.
34891         * modules/i-ring: New module.
34892         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
34893         * m4/i-ring.m4: New file.
34894
34895 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34896
34897         * gnulib-tool (func_create_testdir): Fix replacement of
34898         `build-aux' in configure.ac.  Run autotools in gltests
34899         subdirectory.
34900         (func_create_testdir, func_create_megatestdir, test): There is
34901         no need for '--force' in most autotool invocations in a new
34902         tree.  Actually fail the whole test if any of the tools, or the
34903         configure or make stages fail.
34904
34905         Sync from Automake.
34906         * build-aux/gnupload: Revert last change.  Add pointer to upload
34907         instructions of the GNU Maintenance Instructions.
34908         Suggestion by Karl Berry.
34909
34910 2006-11-10  Jim Meyering  <jim@meyering.net>
34911
34912         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
34913
34914 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34915
34916         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
34917         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
34918         (bind_textdomain_codeset) [! ENABLE_NLS]:
34919         Evaluate all the arguments.  That way, callers get compatible behavior
34920         if the arguments have side effects.  Also, it avoids some GCC
34921         diagnostics in some cases; Joel E. Denny reported problems when Bison
34922         was configured with --enable-gcc-warnigs.
34923
34924 2006-11-10  Jim Meyering  <jim@meyering.net>
34925
34926         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
34927         relevant options in CFLAGS (like -O, -fno-inline) are taken into
34928         account.
34929
34930 2006-11-10  Jim Meyering  <jim@meyering.net>
34931
34932         * modules/inline: New file/module.
34933         * modules/xalloc (Files): Remove m4/inline.m4.
34934         (Depends-on): Add inline, instead.
34935         * modules/oset: Likewise.
34936         * modules/list: Likewise.
34937
34938 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34939
34940         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
34941         Problem reported by Matthew Woehlke.
34942
34943 2006-11-09  Bruno Haible  <bruno@clisp.org>
34944
34945         * lib/tempname.c (gen_tempname): Remove variant that invokes
34946         __gen_tempname.
34947         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
34948         __gen_tempname.
34949
34950 2006-11-08  Bruno Haible  <bruno@clisp.org>
34951
34952         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
34953         to 'yes' instead of 'cross-compiling'.
34954
34955 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
34956
34957         * lib/quotearg.h (quotearg_free): New decl.
34958         * lib/quotearg.c (quotearg_free): New function.
34959         (slot0, nslots, slotvec0, slotvec):
34960         Now file-scope so that quotearg_free can get at them.
34961
34962 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34963
34964         Sync from Automake.
34965         * build-aux/gnupload: Add missing 'gnu' to example URL.
34966         Report by Karl Berry.
34967
34968 2006-11-08  Bruno Haible  <bruno@clisp.org>
34969
34970         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
34971         Suggested by Paul Eggert.
34972
34973 2006-11-08  Jim Meyering  <jim@meyering.net>
34974
34975         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
34976         It's already included if !_LIBC.
34977         (fts_safe_changedir): Add a comment.
34978
34979 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34980
34981         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
34982         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
34983         Matthew Woehlke.
34984
34985         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
34986         definitions up, to avoid colliding with change below.
34987         (static_inline) [HAVE_INLINE]: New macro.
34988         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
34989         Provide extern decls when !HAVE_INLINE.  Do not define unless
34990         static_inline is defined, either by us or by xmalloc.c.  Use
34991         static_inline rather than static inline.
34992         (XCALLOC): Optimize sizeof(T) = 1 case.
34993         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
34994
34995 2006-11-07  Bruno Haible  <bruno@clisp.org>
34996
34997         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
34998         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
34999         AC_C_INLINE.
35000         * modules/xalloc (Files): Add m4/inline.m4.
35001
35002 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35003
35004         * README: Fix typo.
35005         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
35006         (Miscellanous Notes): ...from this.
35007
35008 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
35009
35010         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
35011         Mention that offsetof should be used instead of sizeof.
35012         From Bruno Haible.
35013
35014 2006-11-07  Bruno Haible  <bruno@clisp.org>
35015
35016         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
35017
35018 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
35019
35020         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
35021         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
35022         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
35023         (gl_tree_add_before, gl_tree_add_after):
35024         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
35025         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
35026         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
35027         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
35028         (gl_linked_add_after, gl_linked_add_at): Likewise.
35029         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
35030         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
35031         (gl_tree_add_before, gl_tree_add_after): Likewise.
35032         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
35033         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
35034         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
35035
35036 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35037
35038         * lib/gl_oset.h: Use C comment style, not C++ comment style.
35039
35040 2006-11-06  Bruno Haible  <bruno@clisp.org>
35041
35042         * m4/inline.m4: New file.
35043         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
35044         * modules/list (Files): Add m4/inline.m4.
35045         * modules/oset (Files): Likewise.
35046
35047 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
35048
35049         * lib/idcache.c: Include <stddef.h>, for offsetof.
35050         (struct userid.name): Change from char * to a flexible array member.
35051         All uses changed.
35052         * modules/idcache (Depends-on): Add flexmember.
35053
35054         * MODULES.html.sh (Core language properties): New module flexmember.
35055         * modules/flexmember, m4/flexmember.m4: New files.
35056
35057         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
35058         inline functions that are identical with the old xnmalloc_inline,
35059         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
35060         that we can avoid some unnecessary integer multiplications and
35061         divisions in the common case where the element size is known at
35062         compile time.
35063         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
35064         needed.
35065         (xnboundedmalloc): Remove.
35066         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
35067         arguments, for consistency with rest of this header.
35068         (xcharalloc): Rewrite using XNMALLOC.
35069         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
35070         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
35071         versions have been moved to lib/xalloc.h and renamed to be the
35072         non-*_inline versions.
35073         (xmalloc, xrealloc): Implement without reference to the xnmalloc
35074         and xnrealloc functions, since those functions are now inline and
35075         now call us.
35076         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
35077         renaming described above.
35078         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
35079         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
35080         captures the dependency in AC_C_INLINE.
35081
35082         New module canonicalize-lgpl, proposed by Charles Wilson in
35083         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
35084         with a few small changes afterwards.
35085         * MODULES.html.sh (File system functions): New module
35086         canonicalize-lgpl.
35087         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
35088         and canonicalize_file_name.
35089         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
35090         * modules/canonicalize-lgpl: New files.
35091
35092 2006-11-05  Bruno Haible  <bruno@clisp.org>
35093
35094         * gnulib-tool (func_import, func_create_testdir): Create directories
35095         also for files in subdirectories of lib/.
35096
35097 2006-11-05  Bruno Haible  <bruno@clisp.org>
35098
35099         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
35100         ANSI C compliant.
35101
35102 2006-11-03  Bruno Haible  <bruno@clisp.org>
35103
35104         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
35105         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
35106         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
35107         (xnboundedmalloc): New inline function.
35108         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
35109         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
35110         xmalloc.
35111         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
35112         xmalloc.
35113         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
35114         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
35115         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
35116         xmalloc.
35117         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
35118         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
35119         xmalloc.
35120         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
35121         gl_tree_add_after): Use XMALLOC instead of xmalloc.
35122         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
35123         xmalloc.
35124         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
35125         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
35126         gl_tree_add_after): Use XMALLOC instead of xmalloc.
35127         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
35128         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
35129         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
35130         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
35131
35132 2006-11-03  Bruno Haible  <bruno@clisp.org>
35133
35134         * lib/c-ctype.h [C++]: Define functions without name mangling.
35135         * lib/fwriteerror.h [C++]: Likewise.
35136         * lib/gcd.h [C++]: Likewise.
35137         * lib/linebreak.h [C++]: Likewise.
35138
35139 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
35140
35141         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
35142         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
35143         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
35144         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
35145         Check for functions and headers just once.
35146         Check for declaration of canonicalize_file_name.
35147         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
35148
35149 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35150
35151         * gnulib-tool (func_import): Fix typo in actioncmd.
35152
35153 2006-11-02  Bruno Haible  <bruno@clisp.org>
35154
35155         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
35156         newline sequence in the Makefile.am snippet as a space, like "make"
35157         does.
35158         Reported by Roger Persson <perrog@gmail.com>.
35159
35160 2006-11-01  Bruno Haible  <bruno@clisp.org>
35161
35162         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
35163         already declared in <string.h>.
35164         * lib/strcase.h (strncasecmp): Don't declare it if yes.
35165
35166 2006-11-01  Bruno Haible  <bruno@clisp.org>
35167
35168         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
35169         * lib/strcase.h: Include <string.h>.
35170         (strcasecmp): Define to rpl_strcasecmp here.
35171
35172 2006-11-01  Bruno Haible  <bruno@clisp.org>
35173
35174         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
35175
35176 2006-11-01  Eric Blake  <ebb9@byu.net>
35177
35178         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
35179
35180         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
35181
35182 2006-10-29  Bruno Haible  <bruno@clisp.org>
35183
35184         Make it compile in C++ mode.
35185         * lib/full-write.c (full_rw): Add a cast.
35186
35187 2006-11-01  Bruno Haible  <bruno@clisp.org>
35188
35189         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
35190         be POSIX compliant.
35191         Reported by Roger Persson <perrog@gmail.com>.
35192
35193 2006-11-01  Eric Blake  <ebb9@byu.net>
35194
35195         * lib/getopt_.h: Fix comments.
35196
35197 2006-10-31  Eric Blake  <ebb9@byu.net>
35198
35199         * modules/tmpdir (Depends-on): Add sys_stat.
35200         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
35201         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
35202         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
35203         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
35204         tempname.
35205
35206 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
35207
35208         Avoid some C++ diagnostics reported by Bruno Haible.
35209         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
35210         xmalloc.
35211         (quotearg_alloc): Use xcharalloc rather than xmalloc.
35212         (struct slotvec): Move to top level.
35213         (quotearg_n_options): Rewrite to avoid xmalloc.
35214         * lib/xalloc.h (xcharalloc): New function.
35215         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
35216         [defined __cplusplus]: Add function template that provides result
35217         type propagation.  This part of the change is from Bruno Haible.
35218
35219 2006-10-29  Bruno Haible  <bruno@clisp.org>
35220
35221         Make it compile in C++ mode.
35222         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
35223         * lib/strnlen1.c (strnlen1): Cast memchr result.
35224         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
35225         * lib/clean-temp.c (string_equals, string_hash): Add casts.
35226         (create_temp_dir): Rename local variable 'template'.
35227         (compile_csharp_using_sscli): Add cast.
35228         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
35229         * lib/findprog.c (find_in_path): Likewise.
35230         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
35231         * lib/wait-process.c (register_slave_subprocess): Likewise.
35232
35233 2006-10-22  Bruno Haible  <bruno@clisp.org>
35234
35235         * modules/tsearch: New file.
35236         * lib/tsearch.h: New file.
35237         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
35238         * m4/tsearch.m4: New file.
35239         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
35240
35241 2006-10-29  Eric Blake  <ebb9@byu.net>
35242
35243         * lib/arcfour.c: Assume config.h.
35244         * lib/arctwo.c: Likewise.
35245         * lib/base64.c: Likewise.
35246         * lib/check-version.c: Likewise.
35247         * lib/crc.c: Likewise.
35248         * lib/des.c: Likewise.
35249         * lib/gc-gnulib.c: Likewise.
35250         * lib/gc-libgcrypt.c: Likewise.
35251         * lib/gc-pbkdf2-sha1.c: Likewise.
35252         * lib/getaddrinfo.c: Likewise.
35253         * lib/getdelim.c: Likewise.
35254         * lib/getline.c: Likewise.
35255         * lib/hmac-md5.c: Likewise.
35256         * lib/hmac-sha1.c: Likewise.
35257         * lib/iconvme.c: Likewise.
35258         * lib/md2.c: Likewise.
35259         * lib/md4.c: Likewise.
35260         * lib/memxor.c: Likewise.
35261         * lib/read-file.c: Likewise.
35262         * lib/readline.c: Likewise.
35263         * lib/rijndael-alg-fst.c: Likewise.
35264         * lib/rijndael-api-fst.c: Likewise.
35265         * lib/xgetdomainname.c: Likewise.
35266
35267 2006-10-28  Eric Blake  <ebb9@byu.net>
35268
35269         * lib/xstrndup.c: Assume config.h.
35270
35271 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
35272
35273         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
35274         stat-macros.h is now for our own macros, whereas stat_h is for
35275         macros in the <sys/stat.h> name space.
35276         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
35277         (STAT_MACROS_H): Remove.
35278         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
35279         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
35280         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
35281         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
35282         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
35283         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
35284         Move these macros to ...
35285         * lib/stat_.h: here.  Don't include stat-macros.h.
35286         * lib/canonicalize.c: Don't include stat-macros.h.
35287         * lib/chown.c: Likewise.
35288         * lib/euidaccess.c: Likewise.
35289         * lib/file-type.c: Likewise.
35290         * lib/filemode.c: Likewise.
35291         * lib/glob.c: Likewise.
35292         * lib/isapipe.c: Likewise.
35293         * lib/lchown.c: Likewise.
35294         * lib/lstat.c: Likewise.
35295         * lib/mkdir-p.c: Likewise.
35296         * lib/rmdir.c: Likewise.
35297         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
35298         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
35299         unless mkdir isn't declared, to speed up 'configure'.
35300         Always create sys/stat.h, since it's unlikely any real sys/stat.h
35301         would define all the S_* symbols.
35302         * modules/canonicalize (Depends-on):
35303         Depend on sys_stat, not stat-macros.
35304         * modules/chown: Likewise.
35305         * modules/euidaccess: Likewise.
35306         * modules/filemode: Likewise.
35307         * modules/file-type: Likewise.
35308         * modules/glob: Likewise.
35309         * modules/isapipe: Likewise.
35310         * modules/lchown: Likewise.
35311         * modules/lstat: Likewise.
35312         * modules/mkancesdirs: Likewise.
35313         * modules/rmdir: Likewise.
35314         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
35315         * modules/modechange: Likewise.
35316         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
35317         (configure.ac): Remove gl_STAT_MACROS.
35318         * modules/sys_stat (Depends-on): Remove stat-macros.
35319
35320 2006-10-27  Bruno Haible  <bruno@clisp.org>
35321
35322         * m4/signed.m4: Remove file.
35323         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
35324         invocation.
35325         * modules/vasnprintf (Files): Remove m4/signed.m4.
35326
35327 2006-10-27  Bruno Haible  <bruno@clisp.org>
35328
35329         Update to GNU gettext 0.16.
35330         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
35331         m4/inttypes-h.m4, m4/signed.m4.
35332         * m4/gettext.m4: Update to GNU gettext 0.16.
35333         * m4/intl.m4: New file, from GNU gettext.
35334         * m4/intldir.m4: New file, from GNU gettext.
35335         * config/srclist.txt: Update
35336
35337 2006-10-27  Eric Blake  <ebb9@byu.net>
35338
35339         * MODULES.html.sh: Document tempname.
35340         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
35341         dependencies.
35342         (Files): Move lib/tempname.c...
35343         * modules/tempname: ...to this new module.
35344         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
35345         (gl_PREREQ_TEMPNAME): Move...
35346         * m4/tempname.m4: ...to this new file.
35347         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
35348         * modules/sys_stat (Depends-on): Add stat-macros.
35349         * lib/stat_.h (includes): Pick up stat macros.
35350         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
35351         if stat macros are broken.
35352         * lib/tempname.c (includes): No need to include "stat-macros.h".
35353         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
35354         (direxists, __path_search) [!_LIBC]: Don't compile these in
35355         gnulib; the tmpdir module covers that.
35356         * lib/tempname.h: New file.
35357
35358 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
35359
35360         * COPYING: Explain how gnulib-tool converts licence headers.
35361         Almost all wording by Eric Blake.
35362
35363 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
35364
35365         * lib/mbchar.h (is_basic_table): Make read-only.
35366         * lib/mbchar.c (is_basic_table): Likewise.
35367         Reported by John Darrington.
35368
35369 2006-10-25  Bruno Haible  <bruno@clisp.org>
35370
35371         * lib/progname.h (set_program_name): Undefine before defining.
35372
35373 2006-10-25  Bruno Haible  <bruno@clisp.org>
35374
35375         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
35376         false for non-gcc C++ compilers.
35377         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
35378
35379 2006-10-24  Bruno Haible  <bruno@clisp.org>
35380
35381         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
35382         iconv implementations like Irix iconv.
35383
35384 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35385
35386         * modules/vararrays: New file.
35387         * m4/vararrays.m4: New file, taken from diffutils.
35388         * MODULES.html.sh: New module vararrays.
35389
35390 2006-10-24  Karl Berry  <karl@gnu.org>
35391
35392         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
35393         Don't call GNU Unix.
35394
35395 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35396
35397         * users.txt: Add Libtool.
35398
35399         Sync from Libtool:
35400
35401         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35402
35403         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
35404         to gnulib's policy of including config.h unconditionally.
35405
35406 2006-10-24  Bruno Haible  <bruno@clisp.org>
35407
35408         * modules/wcwidth (Files): Add m4/wint_t.m4.
35409         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
35410         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
35411
35412 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35413
35414         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
35415         to pacify GCC with some -W flags enabled.  Problem reported by
35416         Bruno Haible.
35417
35418 2006-10-24  Jim Meyering  <jim@meyering.net>
35419
35420         * MODULES.html.sh: Remove uinttostr.  It's not a module.
35421         Reported by Karl Berry.
35422
35423 2006-10-23  Bruno Haible  <bruno@clisp.org>
35424
35425         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
35426
35427 2006-10-24  Bruno Haible  <bruno@clisp.org>
35428
35429         * lib/gl_list.h: Use C comment style, not C++ comment style.
35430
35431 2006-10-23  Eric Blake  <ebb9@byu.net>
35432
35433         * lib/getaddrinfo.c (includes): Add missing include.
35434
35435 2006-10-23  Bruno Haible  <bruno@clisp.org>
35436             Paul Eggert  <eggert@cs.ucla.edu>
35437
35438         Ability to rename obstack_free.
35439         * lib/obstack.h (__obstack_free): New macro. Declare instead of
35440         obstack_free.
35441         (obstack_free): Invoke the __obstack_free macro.
35442         * lib/obstack.c (obstack_free): Use __obstack_free macro.
35443
35444 2006-10-23  Bruno Haible  <bruno@clisp.org>
35445             Paul Eggert  <eggert@cs.ucla.edu>
35446
35447         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
35448         __argc, __argv from the declaration. (They are defined as macros on
35449         mingw.)
35450
35451 2006-10-22  Bruno Haible  <bruno@clisp.org>
35452
35453         * doc/gnulib-intro.texi: New file.
35454         * doc/gnulib.texi: Include it.
35455
35456 2006-10-21  Bruno Haible  <bruno@clisp.org>
35457
35458         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
35459         "Introduction", "Miscellanous Notes", "Particular Modules".
35460
35461 2006-10-21  Bruno Haible  <bruno@clisp.org>
35462
35463         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35464         Change mostlyclean-local rule to avoid sh syntax error from bash
35465         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
35466
35467 2006-10-23  Jim Meyering  <jim@meyering.net>
35468
35469         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
35470         in place of snprintf.
35471
35472         * modules/inttostr (Files): Add lib/uinttostr.c.
35473         * lib/uinttostr.c (inttostr): New file/function.
35474         * lib/inttostr.h (uinttostr): Declare.
35475         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
35476         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35477         Add uinttostr.
35478         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
35479
35480 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35481
35482         * lib/canonicalize.c (ELOOP): Define if not already defined.
35483         Problem reported by Bruno Haible in
35484         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
35485
35486 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35487
35488         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
35489         Problem reported by Perry Smith and Ville Laurikari.
35490
35491         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
35492         uses.
35493
35494 2006-10-19  Bruno Haible  <bruno@clisp.org>
35495
35496         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
35497         for mingw.
35498
35499 2006-10-19  Bruno Haible  <bruno@clisp.org>
35500
35501         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
35502         Needed for mingw.
35503
35504 2006-10-19  Bruno Haible  <bruno@clisp.org>
35505
35506         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
35507
35508 2006-10-19  Bruno Haible  <bruno@clisp.org>
35509
35510         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
35511         it.
35512
35513 2006-10-19  Bruno Haible  <bruno@clisp.org>
35514
35515         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
35516         invocation.
35517
35518 2006-10-19  Bruno Haible  <bruno@clisp.org>
35519
35520         * gnulib-tool (func_create_testdir): Don't include ftruncate and
35521         mountlist by default.
35522
35523 2006-10-16  Bruno Haible  <bruno@clisp.org>
35524
35525         * lib/c-strstr.c: Include c-strstr.h.
35526
35527 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35528
35529         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
35530         in a slash.
35531
35532 2006-10-18  Bruno Haible  <bruno@clisp.org>
35533
35534         * lib/lock.h [C++]: Wrap definitions in extern "C".
35535
35536 2006-10-18  Bruno Haible  <bruno@clisp.org>
35537
35538         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
35539         gl_LIBOBJS list.
35540
35541 2006-10-18  Bruno Haible  <bruno@clisp.org>
35542
35543         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
35544
35545 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
35546
35547         * lib/xstrtol.h: Include gettext.h.
35548         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
35549         Problem reported by Eric Blake.
35550         * modules/xstrtol (Depends-on): Add gettext-h.
35551
35552 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
35553
35554         * lib/strftime.c (advance): New macro.
35555         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
35556         incomplete type, so you can't add 0 to it.  Problem and patch
35557         reported by Eelco Dolstra for dietlibc.
35558
35559 2006-10-18  Jim Meyering  <jim@meyering.net>
35560
35561         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
35562         type for a local, and rename it: s/up/user_proc/.
35563
35564 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
35565
35566         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
35567         READ_UTMP_USER_PROCESS.
35568         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
35569
35570 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
35571
35572         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
35573         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
35574
35575 2006-10-17  Eric Blake  <ebb9@byu.net>
35576
35577         * lib/sigprocmask.c (sigprocmask): Fix typo.
35578
35579         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
35580
35581         * modules/clean-temp (Makefile.am): Don't add to make output...
35582         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
35583         config.h.
35584
35585 2006-10-17  Bruno Haible  <bruno@clisp.org>
35586
35587         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
35588         differently if DEFAULT_TEXT_DOMAIN is set.
35589
35590 2006-10-16  Bruno Haible  <bruno@clisp.org>
35591
35592         * lib/clean-temp.c: Include fwriteerror.h.
35593
35594 2006-10-16  Bruno Haible  <bruno@clisp.org>
35595
35596         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
35597
35598 2006-10-16  Bruno Haible  <bruno@clisp.org>
35599
35600         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
35601         * lib/sigprocmask.h: Include <sys/types.h>.
35602         (sigset_t): Use the system's definition if present.
35603
35604 2006-10-17  Eric Blake  <ebb9@byu.net>
35605
35606         * lib/xvasprintf.c (includes): Assume config.h.
35607         * lib/xasprintf.c (includes): Likewise.
35608
35609 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
35610
35611         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
35612         at least as wide as intmax_t.
35613
35614 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
35615
35616         (Imported from Automake.)
35617         * build-aux/gnupload: Update to version 1.1 of directive file.
35618
35619 2006-10-16  Eric Blake  <ebb9@byu.net>
35620
35621         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
35622         match Automake 1.10a.
35623
35624 2006-10-14  Bruno Haible  <bruno@clisp.org>
35625
35626         * modules/sigprocmask: New file.
35627         * lib/sigprocmask.h: New file.
35628         * lib/sigprocmask.c: New file.
35629         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
35630         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
35631         request sigprocmask.o.
35632         (gl_PREREQ_SIGPROCMASK): New macro.
35633         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
35634         (Depends-on): Add sigprocmask.
35635         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
35636         gt_SIGNALBLOCKING. Test for 'raise' only once.
35637         * lib/fatal-signal.c: Include sigprocmask.h.
35638         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
35639         unblock_fatal_signals): Define always.
35640         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35641         sigprocmask.
35642
35643 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35644
35645         Sync from Automake.
35646         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
35647         which incorrectly sets the mode of an existing destination
35648         directory.  In some cases the unpatched install-sh could do the
35649         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
35650         system.  We hope this is rare in practice, but it's clearly worth
35651         fixing.  Problem reported by Alex Unleashed in
35652         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
35653         Also, don't bother to check for -m bugs unless we're using -m;
35654         suggested by Stepan Kasal.
35655
35656 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35657
35658         Sync from Automake.
35659         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
35660         `-c' flag, so they appear at the same position as in %FASTDEP%
35661         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
35662         which ignores unknown options only after the first non-option.
35663         Bug report against M4 by Nelson H. F. Beebe.
35664
35665 2006-10-13  Jim Meyering  <jim@meyering.net>
35666
35667         Fix a bug in yesterday's change.
35668         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
35669         p->fts_statp->st_dev would be used uninitialized.
35670         Ensures that we always call fts_stat on the very first entry.
35671         Miklos Szeredi reported that find -xdev stopped working.
35672
35673 2006-10-12  Bruno Haible  <bruno@clisp.org>
35674
35675         * gnulib-tool (func_get_automake_snippet): Append an automatically
35676         computed EXTRA_DIST augmentation.
35677         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
35678         * modules/alloca-opt (Makefile.am): Likewise.
35679         * modules/allocsa (Makefile.am): Likewise.
35680         * modules/arcfour (Makefile.am): Likewise.
35681         * modules/arctwo (Makefile.am): Likewise.
35682         * modules/argmatch (Makefile.am): Likewise.
35683         * modules/argz (Makefile.am): Likewise.
35684         * modules/atexit (Makefile.am): Likewise.
35685         * modules/backupfile (Makefile.am): Likewise.
35686         * modules/byteswap (Makefile.am): Likewise.
35687         * modules/c-strtod (Makefile.am): Likewise.
35688         * modules/c-strtold (Makefile.am): Likewise.
35689         * modules/calloc (Makefile.am): Likewise.
35690         * modules/canon-host (Makefile.am): Likewise.
35691         * modules/canonicalize (Makefile.am): Likewise.
35692         * modules/chdir-long (Makefile.am): Likewise.
35693         * modules/chdir-safer (Makefile.am): Likewise.
35694         * modules/check-version (Makefile.am): Likewise.
35695         * modules/chown (Makefile.am): Likewise.
35696         * modules/cloexec (Makefile.am): Likewise.
35697         * modules/close-stream (Makefile.am): Likewise.
35698         * modules/closeout (Makefile.am): Likewise.
35699         * modules/crc (Makefile.am): Likewise.
35700         * modules/csharpexec (Makefile.am): Likewise.
35701         * modules/cycle-check (Makefile.am): Likewise.
35702         * modules/des (Makefile.am): Likewise.
35703         * modules/dev-ino (Makefile.am): Likewise.
35704         * modules/dirfd (Makefile.am): Likewise.
35705         * modules/dirname (Makefile.am): Likewise.
35706         * modules/dup2 (Makefile.am): Likewise.
35707         * modules/eealloc (Makefile.am): Likewise.
35708         * modules/error (Makefile.am): Likewise.
35709         * modules/euidaccess (Makefile.am): Likewise.
35710         * modules/exclude (Makefile.am): Likewise.
35711         * modules/exitfail (Makefile.am): Likewise.
35712         * modules/fcntl-safer (Makefile.am): Likewise.
35713         * modules/fcntl (Makefile.am): Likewise.
35714         * modules/file-type (Makefile.am): Likewise.
35715         * modules/fileblocks (Makefile.am): Likewise.
35716         * modules/filemode (Makefile.am): Likewise.
35717         * modules/filenamecat (Makefile.am): Likewise.
35718         * modules/fnmatch (Makefile.am): Likewise.
35719         * modules/fopen-safer (Makefile.am): Likewise.
35720         * modules/fpending (Makefile.am): Likewise.
35721         * modules/fprintftime (Makefile.am): Likewise.
35722         * modules/free (Makefile.am): Likewise.
35723         * modules/fsusage (Makefile.am): Likewise.
35724         * modules/ftruncate (Makefile.am): Likewise.
35725         * modules/fts (Makefile.am): Likewise.
35726         * modules/gc-arcfour (Makefile.am): Likewise.
35727         * modules/gc-des (Makefile.am): Likewise.
35728         * modules/gc-hmac-md5 (Makefile.am): Likewise.
35729         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
35730         * modules/gc-md4 (Makefile.am): Likewise.
35731         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35732         * modules/gc-sha1 (Makefile.am): Likewise.
35733         * modules/gc (Makefile.am): Likewise.
35734         * modules/getaddrinfo (Makefile.am): Likewise.
35735         * modules/getcwd (Makefile.am): Likewise.
35736         * modules/getdelim (Makefile.am): Likewise.
35737         * modules/getdomainname (Makefile.am): Likewise.
35738         * modules/getgroups (Makefile.am): Likewise.
35739         * modules/gethostname (Makefile.am): Likewise.
35740         * modules/gethrxtime (Makefile.am): Likewise.
35741         * modules/getline (Makefile.am): Likewise.
35742         * modules/getloadavg (Makefile.am): Likewise.
35743         * modules/getlogin_r (Makefile.am): Likewise.
35744         * modules/getndelim2 (Makefile.am): Likewise.
35745         * modules/getopt (Makefile.am): Likewise.
35746         * modules/getpagesize (Makefile.am): Likewise.
35747         * modules/getpass-gnu (Makefile.am): Likewise.
35748         * modules/getpass (Makefile.am): Likewise.
35749         * modules/getsubopt (Makefile.am): Likewise.
35750         * modules/gettime (Makefile.am): Likewise.
35751         * modules/gettimeofday (Makefile.am): Likewise.
35752         * modules/getugroups (Makefile.am): Likewise.
35753         * modules/getusershell (Makefile.am): Likewise.
35754         * modules/glob (Makefile.am): Likewise.
35755         * modules/group-member (Makefile.am): Likewise.
35756         * modules/hard-locale (Makefile.am): Likewise.
35757         * modules/hash (Makefile.am): Likewise.
35758         * modules/hmac-md5 (Makefile.am): Likewise.
35759         * modules/hmac-sha1 (Makefile.am): Likewise.
35760         * modules/human (Makefile.am): Likewise.
35761         * modules/idcache (Makefile.am): Likewise.
35762         * modules/imaxabs (Makefile.am): Likewise.
35763         * modules/imaxdiv (Makefile.am): Likewise.
35764         * modules/inet_ntop (Makefile.am): Likewise.
35765         * modules/inet_pton (Makefile.am): Likewise.
35766         * modules/intprops (Makefile.am): Likewise.
35767         * modules/inttostr (Makefile.am): Likewise.
35768         * modules/inttypes (Makefile.am): Likewise.
35769         * modules/isapipe (Makefile.am): Likewise.
35770         * modules/javaversion (Makefile.am): Likewise.
35771         * modules/lchmod (Makefile.am): Likewise.
35772         * modules/lchown (Makefile.am): Likewise.
35773         * modules/localcharset (Makefile.am): Likewise.
35774         * modules/long-options (Makefile.am): Likewise.
35775         * modules/lstat (Makefile.am): Likewise.
35776         * modules/malloc (Makefile.am): Likewise.
35777         * modules/mathl (Makefile.am): Likewise.
35778         * modules/mbchar (Makefile.am): Likewise.
35779         * modules/md2 (Makefile.am): Likewise.
35780         * modules/md4 (Makefile.am): Likewise.
35781         * modules/md5 (Makefile.am): Likewise.
35782         * modules/memcasecmp (Makefile.am): Likewise.
35783         * modules/memchr (Makefile.am): Likewise.
35784         * modules/memcmp (Makefile.am): Likewise.
35785         * modules/memcoll (Makefile.am): Likewise.
35786         * modules/memcpy (Makefile.am): Likewise.
35787         * modules/memmem (Makefile.am): Likewise.
35788         * modules/memmove (Makefile.am): Likewise.
35789         * modules/mempcpy (Makefile.am): Likewise.
35790         * modules/memrchr (Makefile.am): Likewise.
35791         * modules/memset (Makefile.am): Likewise.
35792         * modules/memxor (Makefile.am): Likewise.
35793         * modules/mkancesdirs (Makefile.am): Likewise.
35794         * modules/mkdir-p (Makefile.am): Likewise.
35795         * modules/mkdir (Makefile.am): Likewise.
35796         * modules/mkdtemp (Makefile.am): Likewise.
35797         * modules/mkstemp (Makefile.am): Likewise.
35798         * modules/mktime (Makefile.am): Likewise.
35799         * modules/modechange (Makefile.am): Likewise.
35800         * modules/mountlist (Makefile.am): Likewise.
35801         * modules/nanosleep (Makefile.am): Likewise.
35802         * modules/obstack (Makefile.am): Likewise.
35803         * modules/openat (Makefile.am): Likewise.
35804         * modules/pagealign_alloc (Makefile.am): Likewise.
35805         * modules/pathmax (Makefile.am): Likewise.
35806         * modules/physmem (Makefile.am): Likewise.
35807         * modules/poll (Makefile.am): Likewise.
35808         * modules/posixtm (Makefile.am): Likewise.
35809         * modules/posixver (Makefile.am): Likewise.
35810         * modules/putenv (Makefile.am): Likewise.
35811         * modules/quote (Makefile.am): Likewise.
35812         * modules/quotearg (Makefile.am): Likewise.
35813         * modules/raise (Makefile.am): Likewise.
35814         * modules/read-file (Makefile.am): Likewise.
35815         * modules/readline (Makefile.am): Likewise.
35816         * modules/readlink (Makefile.am): Likewise.
35817         * modules/readtokens (Makefile.am): Likewise.
35818         * modules/readutmp (Makefile.am): Likewise.
35819         * modules/realloc (Makefile.am): Likewise.
35820         * modules/regex (Makefile.am): Likewise.
35821         * modules/rename-dest-slash (Makefile.am): Likewise.
35822         * modules/rename (Makefile.am): Likewise.
35823         * modules/rijndael (Makefile.am): Likewise.
35824         * modules/rmdir (Makefile.am): Likewise.
35825         * modules/rpmatch (Makefile.am): Likewise.
35826         * modules/safe-read (Makefile.am): Likewise.
35827         * modules/safe-write (Makefile.am): Likewise.
35828         * modules/same-inode (Makefile.am): Likewise.
35829         * modules/same (Makefile.am): Likewise.
35830         * modules/save-cwd (Makefile.am): Likewise.
35831         * modules/savedir (Makefile.am): Likewise.
35832         * modules/setenv (Makefile.am): Likewise.
35833         * modules/settime (Makefile.am): Likewise.
35834         * modules/sha1 (Makefile.am): Likewise.
35835         * modules/sig2str (Makefile.am): Likewise.
35836         * modules/snprintf (Makefile.am): Likewise.
35837         * modules/stat-macros (Makefile.am): Likewise.
35838         * modules/stat-time (Makefile.am): Likewise.
35839         * modules/stdbool (Makefile.am): Likewise.
35840         * modules/stdint (Makefile.am): Likewise.
35841         * modules/stdlib-safer (Makefile.am): Likewise.
35842         * modules/stpcpy (Makefile.am): Likewise.
35843         * modules/stpncpy (Makefile.am): Likewise.
35844         * modules/strcase (Makefile.am): Likewise.
35845         * modules/strcasestr (Makefile.am): Likewise.
35846         * modules/strchrnul (Makefile.am): Likewise.
35847         * modules/strcspn (Makefile.am): Likewise.
35848         * modules/strdup (Makefile.am): Likewise.
35849         * modules/strerror (Makefile.am): Likewise.
35850         * modules/strftime (Makefile.am): Likewise.
35851         * modules/strndup (Makefile.am): Likewise.
35852         * modules/strnlen (Makefile.am): Likewise.
35853         * modules/strpbrk (Makefile.am): Likewise.
35854         * modules/strsep (Makefile.am): Likewise.
35855         * modules/strstr (Makefile.am): Likewise.
35856         * modules/strtod (Makefile.am): Likewise.
35857         * modules/strtoimax (Makefile.am): Likewise.
35858         * modules/strtok_r (Makefile.am): Likewise.
35859         * modules/strtol (Makefile.am): Likewise.
35860         * modules/strtoll (Makefile.am): Likewise.
35861         * modules/strtoul (Makefile.am): Likewise.
35862         * modules/strtoull (Makefile.am): Likewise.
35863         * modules/strtoumax (Makefile.am): Likewise.
35864         * modules/strverscmp (Makefile.am): Likewise.
35865         * modules/sys_socket (Makefile.am): Likewise.
35866         * modules/sys_stat (Makefile.am): Likewise.
35867         * modules/sysexits (Makefile.am): Likewise.
35868         * modules/time_r (Makefile.am): Likewise.
35869         * modules/timegm (Makefile.am): Likewise.
35870         * modules/timespec (Makefile.am): Likewise.
35871         * modules/tmpfile-safer (Makefile.am): Likewise.
35872         * modules/trim (Makefile.am): Likewise.
35873         * modules/unistd-safer (Makefile.am): Likewise.
35874         * modules/unlinkdir (Makefile.am): Likewise.
35875         * modules/unlocked-io (Makefile.am): Likewise.
35876         * modules/userspec (Makefile.am): Likewise.
35877         * modules/utime (Makefile.am): Likewise.
35878         * modules/utimecmp (Makefile.am): Likewise.
35879         * modules/utimens (Makefile.am): Likewise.
35880         * modules/vasnprintf (Makefile.am): Likewise.
35881         * modules/vasprintf (Makefile.am): Likewise.
35882         * modules/vsnprintf (Makefile.am): Likewise.
35883         * modules/xalloc (Makefile.am): Likewise.
35884         * modules/xgetcwd (Makefile.am): Likewise.
35885         * modules/xnanosleep (Makefile.am): Likewise.
35886         * modules/xreadlink (Makefile.am): Likewise.
35887         * modules/xstrtod (Makefile.am): Likewise.
35888         * modules/xstrtol (Makefile.am): Likewise.
35889         * modules/xstrtold (Makefile.am): Likewise.
35890         * modules/yesno (Makefile.am): Likewise.
35891         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
35892
35893 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35894
35895         * modules/error (Makefile.am): Distribute files through
35896         EXTRA_DIST, not lib_SOURCES.
35897
35898 2006-10-12  Eric Blake  <ebb9@byu.net>
35899
35900         * modules/error (Makefile.am): Distribute files in /lib.
35901         * modules/obstack (Makefile.am): Likewise.
35902
35903 2006-10-12  Bruno Haible  <bruno@clisp.org>
35904
35905         * modules/acl (Makefile.am): Distribute all files in lib/ through
35906         EXTRA_DIST.
35907         * modules/arcfour (Makefile.am): Likewise.
35908         * modules/arctwo (Makefile.am): Likewise.
35909         * modules/argmatch (Makefile.am): Likewise.
35910         * modules/argz (Makefile.am): Likewise.
35911         * modules/atexit (Makefile.am): Likewise.
35912         * modules/backupfile (Makefile.am): Likewise.
35913         * modules/c-strtod (Makefile.am): Likewise.
35914         * modules/c-strtold (Makefile.am): Likewise.
35915         * modules/calloc (Makefile.am): Likewise.
35916         * modules/canon-host (Makefile.am): Likewise.
35917         * modules/canonicalize (Makefile.am): Likewise.
35918         * modules/chdir-long (Makefile.am): Likewise.
35919         * modules/chdir-safer (Makefile.am): Likewise.
35920         * modules/check-version (Makefile.am): Likewise.
35921         * modules/chown (Makefile.am): Likewise.
35922         * modules/cloexec (Makefile.am): Likewise.
35923         * modules/close-stream (Makefile.am): Likewise.
35924         * modules/closeout (Makefile.am): Likewise.
35925         * modules/crc (Makefile.am): Likewise.
35926         * modules/cycle-check (Makefile.am): Likewise.
35927         * modules/des (Makefile.am): Likewise.
35928         * modules/dirfd (Makefile.am): Likewise.
35929         * modules/dirname (Makefile.am): Likewise.
35930         * modules/dup2 (Makefile.am): Likewise.
35931         * modules/euidaccess (Makefile.am): Likewise.
35932         * modules/exclude (Makefile.am): Likewise.
35933         * modules/exitfail (Makefile.am): Likewise.
35934         * modules/fcntl-safer (Makefile.am): Likewise.
35935         * modules/file-type (Makefile.am): Likewise.
35936         * modules/fileblocks (Makefile.am): Likewise.
35937         * modules/filemode (Makefile.am): Likewise.
35938         * modules/filenamecat (Makefile.am): Likewise.
35939         * modules/fnmatch (Makefile.am): Likewise.
35940         * modules/fopen-safer (Makefile.am): Likewise.
35941         * modules/fpending (Makefile.am): Likewise.
35942         * modules/fprintftime (Makefile.am): Likewise.
35943         * modules/free (Makefile.am): Likewise.
35944         * modules/fsusage (Makefile.am): Likewise.
35945         * modules/ftruncate (Makefile.am): Likewise.
35946         * modules/fts (Makefile.am): Likewise.
35947         * modules/gc (Makefile.am): Likewise.
35948         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35949         * modules/getaddrinfo (Makefile.am): Likewise.
35950         * modules/getcwd (Makefile.am): Likewise.
35951         * modules/getdelim (Makefile.am): Likewise.
35952         * modules/getdomainname (Makefile.am): Likewise.
35953         * modules/getgroups (Makefile.am): Likewise.
35954         * modules/gethostname (Makefile.am): Likewise.
35955         * modules/gethrxtime (Makefile.am): Likewise.
35956         * modules/getline (Makefile.am): Likewise.
35957         * modules/getloadavg (Makefile.am): Likewise.
35958         * modules/getlogin_r (Makefile.am): Likewise.
35959         * modules/getopt (Makefile.am): Likewise.
35960         * modules/getpass (Makefile.am): Likewise.
35961         * modules/getpass-gnu (Makefile.am): Likewise.
35962         * modules/getsubopt (Makefile.am): Likewise.
35963         * modules/gettime (Makefile.am): Likewise.
35964         * modules/gettimeofday (Makefile.am): Likewise.
35965         * modules/getugroups (Makefile.am): Likewise.
35966         * modules/getusershell (Makefile.am): Likewise.
35967         * modules/glob (Makefile.am): Likewise.
35968         * modules/group-member (Makefile.am): Likewise.
35969         * modules/hard-locale (Makefile.am): Likewise.
35970         * modules/hash (Makefile.am): Likewise.
35971         * modules/hmac-md5 (Makefile.am): Likewise.
35972         * modules/hmac-sha1 (Makefile.am): Likewise.
35973         * modules/human (Makefile.am): Likewise.
35974         * modules/idcache (Makefile.am): Likewise.
35975         * modules/imaxabs (Makefile.am): Likewise.
35976         * modules/imaxdiv (Makefile.am): Likewise.
35977         * modules/inet_ntop (Makefile.am): Likewise.
35978         * modules/inet_pton (Makefile.am): Likewise.
35979         * modules/inttostr (Makefile.am): Likewise.
35980         * modules/isapipe (Makefile.am): Likewise.
35981         * modules/lchown (Makefile.am): Likewise.
35982         * modules/long-options (Makefile.am): Likewise.
35983         * modules/lstat (Makefile.am): Likewise.
35984         * modules/malloc (Makefile.am): Likewise.
35985         * modules/mathl (Makefile.am): Likewise.
35986         * modules/mbchar (Makefile.am): Likewise.
35987         * modules/md2 (Makefile.am): Likewise.
35988         * modules/md4 (Makefile.am): Likewise.
35989         * modules/md5 (Makefile.am): Likewise.
35990         * modules/memcasecmp (Makefile.am): Likewise.
35991         * modules/memchr (Makefile.am): Likewise.
35992         * modules/memcmp (Makefile.am): Likewise.
35993         * modules/memcoll (Makefile.am): Likewise.
35994         * modules/memcpy (Makefile.am): Likewise.
35995         * modules/memmem (Makefile.am): Likewise.
35996         * modules/memmove (Makefile.am): Likewise.
35997         * modules/mempcpy (Makefile.am): Likewise.
35998         * modules/memrchr (Makefile.am): Likewise.
35999         * modules/memset (Makefile.am): Likewise.
36000         * modules/memxor (Makefile.am): Likewise.
36001         * modules/mkancesdirs (Makefile.am): Likewise.
36002         * modules/mkdir (Makefile.am): Likewise.
36003         * modules/mkdir-p (Makefile.am): Likewise.
36004         * modules/mkdtemp (Makefile.am): Likewise.
36005         * modules/mkstemp (Makefile.am): Likewise.
36006         * modules/mktime (Makefile.am): Likewise.
36007         * modules/modechange (Makefile.am): Likewise.
36008         * modules/mountlist (Makefile.am): Likewise.
36009         * modules/nanosleep (Makefile.am): Likewise.
36010         * modules/openat (Makefile.am): Likewise.
36011         * modules/pagealign_alloc (Makefile.am): Likewise.
36012         * modules/physmem (Makefile.am): Likewise.
36013         * modules/poll (Makefile.am): Likewise.
36014         * modules/posixtm (Makefile.am): Likewise.
36015         * modules/posixver (Makefile.am): Likewise.
36016         * modules/putenv (Makefile.am): Likewise.
36017         * modules/quote (Makefile.am): Likewise.
36018         * modules/quotearg (Makefile.am): Likewise.
36019         * modules/raise (Makefile.am): Likewise.
36020         * modules/read-file (Makefile.am): Likewise.
36021         * modules/readline (Makefile.am): Likewise.
36022         * modules/readlink (Makefile.am): Likewise.
36023         * modules/readtokens (Makefile.am): Likewise.
36024         * modules/readutmp (Makefile.am): Likewise.
36025         * modules/realloc (Makefile.am): Likewise.
36026         * modules/regex (Makefile.am): Likewise.
36027         * modules/rename (Makefile.am): Likewise.
36028         * modules/rename-dest-slash (Makefile.am): Likewise.
36029         * modules/rijndael (Makefile.am): Likewise.
36030         * modules/rmdir (Makefile.am): Likewise.
36031         * modules/rpmatch (Makefile.am): Likewise.
36032         * modules/safe-read (Makefile.am): Likewise.
36033         * modules/safe-write (Makefile.am): Likewise.
36034         * modules/same (Makefile.am): Likewise.
36035         * modules/save-cwd (Makefile.am): Likewise.
36036         * modules/savedir (Makefile.am): Likewise.
36037         * modules/setenv (Makefile.am): Likewise.
36038         * modules/settime (Makefile.am): Likewise.
36039         * modules/sha1 (Makefile.am): Likewise.
36040         * modules/sig2str (Makefile.am): Likewise.
36041         * modules/snprintf (Makefile.am): Likewise.
36042         * modules/stdlib-safer (Makefile.am): Likewise.
36043         * modules/stpcpy (Makefile.am): Likewise.
36044         * modules/stpncpy (Makefile.am): Likewise.
36045         * modules/strcase (Makefile.am): Likewise.
36046         * modules/strcasestr (Makefile.am): Likewise.
36047         * modules/strchrnul (Makefile.am): Likewise.
36048         * modules/strcspn (Makefile.am): Likewise.
36049         * modules/strdup (Makefile.am): Likewise.
36050         * modules/strerror (Makefile.am): Likewise.
36051         * modules/strftime (Makefile.am): Likewise.
36052         * modules/strndup (Makefile.am): Likewise.
36053         * modules/strnlen (Makefile.am): Likewise.
36054         * modules/strpbrk (Makefile.am): Likewise.
36055         * modules/strsep (Makefile.am): Likewise.
36056         * modules/strstr (Makefile.am): Likewise.
36057         * modules/strtod (Makefile.am): Likewise.
36058         * modules/strtoimax (Makefile.am): Likewise.
36059         * modules/strtok_r (Makefile.am): Likewise.
36060         * modules/strtol (Makefile.am): Likewise.
36061         * modules/strtoll (Makefile.am): Likewise.
36062         * modules/strtoul (Makefile.am): Likewise.
36063         * modules/strtoull (Makefile.am): Likewise.
36064         * modules/strtoumax (Makefile.am): Likewise.
36065         * modules/strverscmp (Makefile.am): Likewise.
36066         * modules/time_r (Makefile.am): Likewise.
36067         * modules/timegm (Makefile.am): Likewise.
36068         * modules/tmpfile-safer (Makefile.am): Likewise.
36069         * modules/unistd-safer (Makefile.am): Likewise.
36070         * modules/unlinkdir (Makefile.am): Likewise.
36071         * modules/userspec (Makefile.am): Likewise.
36072         * modules/utime (Makefile.am): Likewise.
36073         * modules/utimecmp (Makefile.am): Likewise.
36074         * modules/utimens (Makefile.am): Likewise.
36075         * modules/vasnprintf (Makefile.am): Likewise.
36076         * modules/vasprintf (Makefile.am): Likewise.
36077         * modules/vsnprintf (Makefile.am): Likewise.
36078         * modules/xalloc (Makefile.am): Likewise.
36079         * modules/xgetcwd (Makefile.am): Likewise.
36080         * modules/xnanosleep (Makefile.am): Likewise.
36081         * modules/xreadlink (Makefile.am): Likewise.
36082         * modules/xstrtod (Makefile.am): Likewise.
36083         * modules/xstrtol (Makefile.am): Likewise.
36084         * modules/xstrtold (Makefile.am): Likewise.
36085         * modules/yesno (Makefile.am): Likewise.
36086
36087 2006-10-12  Jim Meyering  <jim@meyering.net>
36088
36089         * m4/getloadavg.m4: Revert the change below.
36090
36091         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
36092         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
36093         fail with a symlink, which is what coreutils' ./bootstrap now
36094         creates by default.
36095
36096 2006-10-12  Bruno Haible  <bruno@clisp.org>
36097
36098         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
36099         mingw.
36100         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
36101         MSVC and mingw explicitly.
36102
36103 2006-10-11  Simon Josefsson  <jas@extundo.com>
36104             Bruno Haible  <bruno@clisp.org>
36105
36106         Add support for multiple gnulib-tool invocations in the scope of a
36107         single configure.ac file.
36108         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
36109         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
36110         with the same contents as the _LIBADD variable.
36111         (func_emit_initmacro_start, func_emit_initmacro_end,
36112         func_emit_initmacro_done): New functions.
36113         (func_import, func_create_testdir): Invoke them. Allow the identifiers
36114         gl_LIBOBJS and gl_LTLIBOBJS.
36115
36116 2006-10-11  Bruno Haible  <bruno@clisp.org>
36117
36118         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
36119         (func_create_testdir): Don't create po/Makefile.am, don't invoke
36120         autoreconf. Instead, invoke autopoint explicitly but move back the
36121         *.m4 files from gnulib.
36122
36123 2006-10-11  Bruno Haible  <bruno@clisp.org>
36124
36125         * gnulib-tool (func_usage): Make module names after --create-testdir
36126         optional.
36127         (func_create_testdir): If no module was specified, use nearly all
36128         modules.
36129
36130 2006-10-12  Jim Meyering  <jim@meyering.net>
36131
36132         Big performance improvement for fts-based tools that use FTS_NOSTAT.
36133         Avoid spurious inode-mismatch problems on non-POSIX file systems.
36134         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
36135         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
36136         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
36137         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
36138         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
36139         (fts_set_stat_required): New function.
36140         (fts_open): Defer the calls to fts_stat, if possible or requested.
36141         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
36142         into fts_stat itself.
36143         (fts_read): Perform any required (deferred) fts_stat call.
36144         (fts_build): Likewise, for the directory we're about to open and read.
36145         In the readdir loop, carefully decide whether each entry will require
36146         an eventual call to fts_stat, using dirent.d_type info if available.
36147         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
36148         a command line argument into this function.  Update all callers.
36149         Map a return value of FTS_DOT to FTS_D for a command line argument.
36150         * modules/fts (Depends-on): Add d-type.  Alphabetize.
36151         Thanks to Miklos Szeredi for his tenacity and for the initial
36152         bug report about "find" failing on a FUSE-based file system.
36153
36154         * lib/fts.c (fts_open): Use consistent indentation.
36155
36156 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
36157
36158         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
36159         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
36160         reported by Jim Meyering.  All uses of cache variables renamed
36161         to match Autoconf's.
36162         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
36163         the other one.
36164
36165         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
36166         Fix misspelling in diagnostic.
36167
36168 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
36169
36170         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
36171         defined.  Problem reported by Matthew Woehlke.
36172
36173         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
36174         Add support for Tandem NonStop R series.
36175         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
36176         Use new macro.
36177
36178         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
36179         (has_trailing_slash): Omit size arg; all callers changed.
36180         Omit 'inline', since it doesn't help performance and we'd
36181         need to configure it.
36182         Don't count //, ///, etc. as having a trailing slash.
36183         As a side effect, this removes a C99ism reported by Matthew Woehlke.
36184         (rpl_rename_dest_slash): On failure, use rename's errno rather
36185         than (in some cases) an incorrect or junk errno.
36186         Simplify code by removing need to compute length; this does
36187         cause it to make two passes instead of one over the file name,
36188         but it's worth it.
36189
36190         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
36191         change, since Autoconf's version may no longer be appropriate now
36192         that we are using CVS Autoconf's version.  Add support for Tandem.
36193
36194 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
36195             Bruno Haible  <bruno@clisp.org>
36196
36197         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
36198         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
36199         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
36200         gl_AC_TYPE_LONG_LONG.
36201
36202         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
36203         instead of HAVE_LONG_LONG.
36204         * lib/printf-args.c (printf_fetchargs): Likewise.
36205         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
36206         * lib/vasnprintf.c (VASNPRINTF): Likewise.
36207         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
36208         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
36209         gl_AC_TYPE_LONG_LONG.
36210
36211 2006-10-11  Bruno Haible  <bruno@clisp.org>
36212
36213         * m4/longlong.m4: Add comments.
36214         * m4/ulonglong.m4: Likewise.
36215
36216 2006-10-10  Bruno Haible  <bruno@clisp.org>
36217
36218         Make it possible to #define stpcpy, strdup to aliases.
36219         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
36220         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
36221
36222 2006-10-10  Bruno Haible  <bruno@clisp.org>
36223
36224         Make it possible to #define gcd to an alias.
36225         * lib/gcd.c: Include config.h.
36226
36227 2006-10-10  Bruno Haible  <bruno@clisp.org>
36228
36229         Make it possible to #define c_isascii to an alias.
36230         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
36231         defined. Undefine the macros before defining them, to avoid gcc
36232         warnings.
36233         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
36234         define NO_C_CTYPE_MACROS early.
36235
36236 2006-10-10  Bruno Haible  <bruno@clisp.org>
36237
36238         Make it possible to #define set_program_name to an alias.
36239         * lib/progname.c: Don't undefine set_program_name; instead, undefine
36240         ENABLE_RELOCATABLE early.
36241
36242 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
36243
36244         Port to Tandem NSK OSS, which has 64-bit signed int but at most
36245         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
36246         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
36247         More generally, don't assume that 64-bit signed int is available
36248         if unsigned int is, and vice versa.
36249         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
36250         unsigned symbols, not on their signed counterparts.
36251         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
36252         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
36253         (UINT64_C, UINTMAX_C):
36254         Likewise.
36255         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
36256         unsigned counterparts.
36257         (Have_long_long, Unsigned): New macros.
36258         (Int): Renamed from INT.
36259         (strtoimax): Use the new macros.
36260         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
36261         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
36262         * modules/inttypes (inttypes.h): Substitute
36263         HAVE_UNSIGNED_LONG_LONG_INT.
36264         * modules/stdint (stdint.h): Likewise.
36265         (Files): Add m4/ulonglong.m4.
36266
36267 2006-10-10  Bruno Haible  <bruno@clisp.org>
36268
36269         Fix a gcc -Wshadow warning.
36270         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
36271         to 'bucket'.
36272         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
36273         gl_linked_indexof_from_to): Likewise.
36274         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
36275         Likewise.
36276         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
36277         Likewise.
36278         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
36279         Reported by Eric Blake.
36280
36281 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
36282
36283         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
36284         for NetBSD.  Problem reported by Bruno Haible.
36285
36286 2006-10-09  Jim Meyering  <jim@meyering.net>
36287
36288         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
36289         Patch from Bruno Haible.
36290
36291 2006-10-09  Jim Meyering  <jim@meyering.net>
36292
36293         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
36294         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
36295         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
36296
36297 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
36298
36299         Don't include <config.h> twice; this doesn't work in some cases,
36300         e.g., when config.h has "#define intmax_t long long int" and
36301         we include <config.h>, <inttypes.h>, <config.h> in that order.
36302         Problem reported by Matthew Woehlke in:
36303         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
36304         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
36305         * lib/fts-cycle.c: Don't include config.h.
36306         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
36307         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
36308         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
36309         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
36310         inttypes.h.
36311         * lib/xstrtoumax.c: Likewise.
36312         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
36313         __strtol and the like, so that this module is more like its siblings.
36314         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
36315         Remove; no longer needed now that we assume gnulib inttypes.h.
36316
36317 2006-10-08  Bruno Haible  <bruno@clisp.org>
36318
36319         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
36320         option.
36321
36322 2006-10-07  Jim Meyering  <jim@meyering.net>
36323
36324         * modules/inttypes (inttypes.h): Revert what seems to have been
36325         an inadvertent part of today's change: use "|", not "/" in the
36326         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
36327
36328 2006-10-07  Bruno Haible  <bruno@clisp.org>
36329
36330         * modules/sublist: New file.
36331
36332 2006-10-07  Bruno Haible  <bruno@clisp.org>
36333
36334         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
36335         * modules/argz (argz.h): Likewise.
36336         * modules/arpa_inet (arpa/inet.h): Likewise.
36337         * modules/byteswap (byteswap.h): Likewise.
36338         * modules/configmake (configmake.h): Likewise.
36339         * modules/fcntl (fcntl.h): Likewise.
36340         * modules/fnmatch (fnmatch.h): Likewise.
36341         * modules/getopt (getopt.h): Likewise.
36342         * modules/glob (glob.h): Likewise.
36343         * modules/inttypes (inttypes.h): Likewise.
36344         * modules/netinet_in (netinet/in.h): Likewise.
36345         * modules/poll (poll.h): Likewise.
36346         * modules/stdbool (stdbool.h): Likewise.
36347         * modules/stdint (stdint.h): Likewise.
36348         * modules/sys_select (sys/select.h): Likewise.
36349         * modules/sys_socket (sys/socket.h): Likewise.
36350         * modules/sys_stat (sys/stat.h): Likewise.
36351         * modules/sysexits (sysexits.h): Likewise.
36352         * modules/unistd (unistd.h): Likewise.
36353         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
36354         Add a "DO NOT EDIT" comment to the generated file.
36355         (func_import): Likewise for gnulib-comp.m4.
36356
36357 2006-10-07  Bruno Haible  <bruno@clisp.org>
36358
36359         * lib/gl_sublist.h: New file.
36360         * lib/gl_sublist.c: New file.
36361
36362 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36363
36364         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
36365         name (relative to the original working directory) and the file
36366         name component (relative to the temporary working directory).  All
36367         callers changed.
36368         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
36369         * lib/mkdir-p.c (make_dir_parents): Likewise.
36370         * lib/mkdir-p.h (make_dir_parents): Likewise.
36371
36372 2006-10-06  Eric Blake  <ebb9@byu.net>
36373
36374         Define several macros for use by the clean-temp module.
36375         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
36376         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
36377         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
36378
36379         * lib/clean-temp.h (close_stream_temp): New declaration.
36380         * lib/clean-temp.c (includes): Pull in headers according to what
36381         other modules are in use.
36382         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
36383
36384 2006-10-06  Bruno Haible  <bruno@clisp.org>
36385
36386         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
36387         instead of fopen, fwriteerror.
36388
36389 2006-10-06  Bruno Haible  <bruno@clisp.org>
36390
36391         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
36392         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
36393         int.
36394         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
36395         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
36396         Return an error indicator.
36397         Suggested by Eric Blake.
36398
36399 2006-10-06  Bruno Haible  <bruno@clisp.org>
36400
36401         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
36402         Reported by Eric Blake.
36403
36404 2006-10-06  Bruno Haible  <bruno@clisp.org>
36405
36406         * modules/closeout (Description): Mention stderr too.
36407
36408 2006-10-06  Bruno Haible  <bruno@clisp.org>
36409         and Paul Eggert  <eggert@cs.ucla.edu>
36410
36411         * lib/closeout.c (close_stdout): Also close stderr.
36412         * lib/closeout.h: Update comment.
36413
36414 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36415
36416         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
36417         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
36418         * lib/dirchownmod.c: Include lchown.h.
36419         * lib/lchown.c: Don't include files that lchown.h now includes.
36420         Don't declare chown, since lchown.h now does that.
36421         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
36422         (lchown): Define to rpl_chown if lchown is declared but
36423         does not exist.  Declare using a prototype if lchown is not
36424         declared.  Add a copyright notice.
36425         * lib/mkstemp.h: Include <unistd.h>.
36426         * lib/openat.c: Include lchown.h.
36427
36428         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
36429         we now test for that separately.
36430         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
36431         rather than O_NOFOLLOW, when testing whether it's possible to
36432         avoid a race condition reliably.
36433         * lib/savewd.c (savewd_chdir): Likewise.
36434
36435         Remove macros that are no longer needed now that stdint.h is
36436         reliable.
36437         * lib/fsusage.c (UINTMAX_MAX): Remove.
36438         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
36439         * lib/utimecmp.c (SIZE_MAX): Remove.
36440
36441         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
36442
36443         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
36444         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
36445         O_NOATIME works.
36446
36447 2006-10-05  Bruno Haible  <bruno@clisp.org>
36448
36449         * lib/gl_list.h (gl_sortedlist_search_from_to,
36450         gl_sortedlist_indexof_from_to): New declarations.
36451         (gl_list_implementation): New fields sortedlist_search_from_to,
36452         sortedlist_indexof_from_to.
36453         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
36454         inline functions.
36455         * lib/gl_list.c (gl_sortedlist_search_from_to,
36456         gl_sortedlist_indexof_from_to): New functions.
36457         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
36458         function.
36459         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
36460         (gl_array_sortedlist_search_from_to): New function.
36461         (gl_array_list_implementation): Update.
36462         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
36463         function.
36464         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
36465         (gl_carray_sortedlist_search_from_to): New function.
36466         (gl_carray_list_implementation): Update.
36467         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
36468         gl_linked_sortedlist_indexof_from_to): New functions.
36469         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36470         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36471         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
36472         gl_tree_sortedlist_indexof_from_to): New functions.
36473         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36474         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36475         Update.
36476         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36477         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
36478         Update.
36479
36480 2006-10-05  Bruno Haible  <bruno@clisp.org>
36481
36482         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
36483         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
36484         (struct gl_list_implementation): Add fields search_from_to,
36485         indexof_from_to. Remove fields search, indexof.
36486         (gl_list_search): Use the search_from_to method.
36487         (gl_list_search_from, gl_list_search_from_to): New functions.
36488         (gl_list_indexof): Use the indexof_from_to method.
36489         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36490         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
36491         (gl_list_search_from, gl_list_search_from_to): New functions.
36492         (gl_list_indexof): Use the indexof_from_to method.
36493         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36494         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
36495         gl_array_indexof. Add start_index, end_index arguments.
36496         (gl_array_search_from_to): Renamed from gl_array_search. Add
36497         start_index, end_index arguments.
36498         (gl_array_remove, gl_array_list_implementation): Update.
36499         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
36500         gl_carray_indexof. Add start_index, end_index arguments.
36501         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
36502         start_index, end_index arguments.
36503         (gl_carray_remove, gl_carray_list_implementation): Update.
36504         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
36505         gl_linked_search. Add start_index, end_index arguments.
36506         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
36507         start_index, end_index arguments.
36508         (gl_linked_remove): Update.
36509         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36510         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36511         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
36512         field to 'size_t'.
36513         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
36514         gl_tree_search. Add start_index, end_index arguments.
36515         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36516         start_index, end_index arguments.
36517         (gl_tree_remove): Update.
36518         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36519         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36520         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
36521         function.
36522         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
36523         gl_tree_search. Add start_index, end_index arguments.
36524         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36525         start_index, end_index arguments.
36526         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36527         Update.
36528         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
36529
36530 2006-10-05  Bruno Haible  <bruno@clisp.org>
36531
36532         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
36533
36534         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
36535         fwriteerror_temp): New declarations.
36536         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
36537         (descriptors): New variable.
36538         (cleanup): First, close the descriptors.
36539         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
36540         fclose_temp, fwriteerror_temp): New functions.
36541
36542 2006-10-04  Jim Meyering  <jim@meyering.net>
36543
36544         * lib/fts.c (fts_open): Tiny comment change.
36545
36546 2006-10-04  Bruno Haible  <bruno@clisp.org>
36547
36548         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
36549         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
36550         gl_LOCK_BODY.
36551         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
36552         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
36553         gl_LOCK_EARLY_BODY.
36554         (gl_LOCK): Require gl_LOCK_BODY.
36555
36556 2006-10-04  Bruno Haible  <bruno@clisp.org>
36557
36558         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
36559         (gl_oset_search_atleast): New declaration.
36560         (struct gl_oset_implementation): Add field 'search_atleast'.
36561         (gl_oset_search_atleast): New inline function.
36562         * lib/gl_oset.c (gl_oset_search_atleast): New function.
36563         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
36564         (gl_array_oset_implementation): Update.
36565         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
36566         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
36567         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
36568
36569 2006-10-04  Bruno Haible  <bruno@clisp.org>
36570
36571         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
36572
36573 2006-10-03  Bruno Haible  <bruno@clisp.org>
36574
36575         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
36576         from gl_avltreehash_list_implementation.
36577
36578 2006-10-03  Bruno Haible  <bruno@clisp.org>
36579
36580         * lib/gl_oset.c (gl_oset_add): Fix return type.
36581
36582 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
36583
36584         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
36585
36586 2006-10-02  Eric Blake  <ebb9@byu.net>
36587
36588         * modules/strnlen (Depends-on): Add extensions.
36589
36590 2006-10-02  Eric Blake  <ebb9@byu.net>
36591
36592         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
36593         definition in 2.60+.
36594
36595 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36596
36597         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
36598         checks.
36599
36600 2006-10-02  Bruno Haible  <bruno@clisp.org>
36601
36602         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
36603         to the AUTOMAKE_OPTIONS.
36604         Reported by Jim Meyering.
36605
36606 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36607
36608         Work around bug in Solaris 10 /proc file system:
36609         /proc/self/fd/NNN/.. isn't the parent directory of
36610         the directory whose file descriptor is NNN.  This needs to
36611         be worked around at run time, not compile time, since a
36612         program might be built on Solaris 8, where things work, and
36613         run on Solaris 10.
36614         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
36615         to use the following interface instead:
36616         (OPENAT_BUFFER_SIZE): New macro.
36617         (openat_proc_name): New function.
36618         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
36619         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
36620         Likewise.
36621         * lib/openat-proc.c: New file.
36622         * modules/openat (Files): Add lib/openat-proc.c.
36623         (Depends-on): Add same-inode, stdbool.
36624         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
36625
36626 2006-09-29  Bruno Haible  <bruno@clisp.org>
36627
36628         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
36629         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
36630         argument. Set stdout_closed before testing for ferror, not after.
36631         (fwriteerror, fwriteerror_no_ebadf): New functions.
36632
36633 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36634
36635         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
36636
36637 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
36638
36639         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
36640         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
36641
36642 2006-09-28  Jim Meyering  <jim@meyering.net>
36643
36644         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
36645         Include <unistd.h>.
36646
36647 2006-09-28  Bruno Haible  <bruno@clisp.org>
36648
36649         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
36650         * modules/linkedhash-list (Depends-on): Likewise.
36651         * modules/rbtreehash-list (Depends-on): Likewise.
36652
36653 2006-09-28  Bruno Haible  <bruno@clisp.org>
36654
36655         * lib/strndup.h: Simplify the redefinition of strndup.
36656         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
36657         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
36658
36659 2006-09-28  Bruno Haible  <bruno@clisp.org>
36660
36661         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
36662         * lib/gl_linkedhash_list.c: Likewise.
36663         * lib/gl_rbtreehash_list.c: Likewise.
36664
36665 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36666
36667         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
36668         getaddrinfo.
36669
36670         * lib/__fpending.h: Don't include <stdio_ext.h> unless
36671         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
36672         it causes <stdio_ext.h> to cause a compile-time error.
36673         Problem reported by Nelson H. F. Beebe.
36674         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
36675         of HAVE_DECL___PENDING.
36676
36677         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
36678         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
36679         declaration.
36680
36681 2006-09-27  Jim Meyering  <jim@meyering.net>
36682
36683         This file could end up with a definition for a function
36684         named __strndup, rather than rpl_strndup on a system with
36685         incomplete weak_alias support.
36686         * lib/strndup.c (strndup): Rename from __strndup.
36687         Remove #defines that used to map __strndup to strndup.
36688         Don't use K&R prototypes.
36689         Remove LIBC-related code, since this file is not sync'd with glibc.
36690         * lib/strndup.h: Revamp, accordingly.
36691         * m4/strndup.m4: Modernize.
36692
36693 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36694
36695         * modules/savewd (Depends-on): Add 'raise'.
36696         * lib/savewd.c: Include <signal.h>, for 'raise'.
36697
36698 2006-09-26  Jim Meyering  <jim@meyering.net>
36699
36700         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
36701         when we detect Darwin 8.7.0's acl_get_file bug.
36702         Rearrange to perform the new (below) run-test while $LIBS
36703         contains any acl-related library.  Set USE_ACL at the end.
36704         (gl_ACL_GET_FILE): New function.
36705
36706 2006-09-26  Eric Blake  <ebb9@byu.net>
36707
36708         * lib/verror.c: Include <config.h> unconditionally.
36709
36710 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
36711
36712         * modules/clock-time (Maintainer): Add self.
36713         * modules/getlogin_r (Depends-on): Add extensions.
36714
36715 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36716
36717         * modules/clock-time: New module.
36718         * modules/nanosleep (Depends-on): Add clock-time.
36719         * modules/gethrxtime (Depends-on): Likewise.
36720         * modules/gettime (Depends-on): Likewise.
36721         * modules/settime (Depends-on): Likewise.
36722
36723         * modules/fts-lgpl: Depend on openat.
36724         * modules/mkancesdirs: Depend on savewd.
36725         * modules/mkdir-p: Likewise.
36726
36727 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36728
36729         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
36730
36731         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
36732         `gl_have_arbitrary_file_name_length_limit' to
36733         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
36734         actually works between configure runs.
36735
36736 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36737             Bruno Haible  <bruno@clisp.org>
36738
36739         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
36740
36741 2006-09-25  Jim Meyering  <jim@meyering.net>
36742
36743         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
36744         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
36745
36746 2006-09-25  Eric Blake  <ebb9@byu.net>
36747
36748         * gnulib-tool (func_import, func_create_testdir): Fix typos in
36749         exec's in 2006-09-18 patch when shuffling fds.
36750
36751 2006-09-25  Bruno Haible  <bruno@clisp.org>
36752
36753         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
36754         Reported by Jim Meyering.
36755
36756 2006-09-24  Jim Meyering  <jim@meyering.net>
36757
36758         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
36759         compare a pointer against a literal "0".  That caused failures with
36760         at least HP-UX's hpcc.
36761
36762 2006-09-22  Simon Josefsson  <jas@extundo.com>
36763
36764         * modules/gc-sha1:
36765         * modules/gc-md4:
36766         * modules/gc-hmac-sha1:
36767         * modules/gc-hmac-md5:
36768         * modules/gc-des:
36769         * modules/gc-arcfour: Distribute more files.
36770
36771 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36772
36773         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
36774         (gl_linked_iterator_from_to): Initialize struct completely.
36775         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
36776         (gl_tree_iterator_from_to): Likewise
36777         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
36778         * lib/gl_array_list.c [lint] (gl_array_iterator)
36779         (gl_array_iterator_from_to): Likewise.
36780         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
36781         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
36782         (gl_carray_iterator_from_to): Likewise.
36783
36784         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
36785         * lib/md4.c (md4_process_block): Remove unused variable.
36786         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
36787         parentheses for clarity.
36788
36789 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36790
36791         * modules/bison-i18n (Depends-on): Add gettext.
36792
36793 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36794
36795         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
36796         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
36797         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
36798         also add missing comma that caused broken test.
36799         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
36800         stdlib.h, for `abort'.
36801         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
36802         variables.
36803         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
36804         include unistd.h if present, for `rmdir'.
36805         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
36806         variables.
36807         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
36808         in the process include standard headers for prototypes.
36809         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
36810         gets declared on GNU/Linux.
36811         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
36812         unistd.h, for `rmdir'.
36813         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
36814
36815         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
36816         always true.
36817         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
36818
36819         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
36820
36821 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36822
36823         * gnulib-tool (func_version): Create output all at once.  This
36824         may help avoid triggering unnecessary SIGPIPEs, and at any
36825         rate it doesn't hurt.
36826
36827 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36828             Bruno Haible  <bruno@clisp.org>
36829
36830         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
36831         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36832         * m4/signed.m4 (bh_C_SIGNED): Likewise.
36833
36834         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
36835         (gl_FUNC_VASPRINTF): Invoke it.
36836
36837 2006-09-22  Bruno Haible  <bruno@clisp.org>
36838
36839         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
36840         getloadavg.c as first argument.
36841
36842 2006-09-22  Bruno Haible  <bruno@clisp.org>
36843
36844         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
36845         at the beginning of the gl_INIT macro.
36846         * modules/getloadavg (configure.ac): Pass $gl_source_base to
36847         gl_GETLOADAVG.
36848
36849 2006-09-22  Bruno Haible  <bruno@clisp.org>
36850
36851         * gnulib-tool (func_create_megatestdir): Don't include the config-h
36852         module.
36853         Suggested by Ralf Wildenhues.
36854
36855 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
36856
36857         Import this patch from libc:
36858
36859         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
36860
36861         * lib/regex_internal.c (re_string_reconstruct): Handle
36862         offset < pstr->valid_raw_len && pstr->offsets_needed case.
36863         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
36864         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
36865         re_string_context_at.
36866
36867         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
36868         now requires it.
36869         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
36870         gl_REGEX now does it for us.
36871         (gl_REGEX): Add test taken from
36872         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
36873
36874         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
36875         Check that large offsets work.  Modernize Autoconf usages.
36876         Prefer "yes" to mean a good thing rather than a bad.
36877         Don't put "#define mkstemp" in config.h, as this might interfere
36878         with standard system headers that "#define mkstemp mkstemp64".
36879
36880         * modules/mkstemp (Depends-on): Add extensions, so that
36881         mkstemp is visible on some platforms.
36882         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
36883         (Include): Change to "mkstemp.h" from <stdlib.h>.
36884         (Files): Add mkstemp.h.
36885
36886         * lib/mkstemp.h: New file, since some standard headers
36887         #define mkstemp.
36888         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
36889         Include "mkstemp.h".
36890         Make the _LIBC code resemble glibc original more,
36891         e.g., use K&R style.
36892         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
36893         (mkstemp): Remove, since mkstemp.h does this for us.
36894         * lib/stdlib--.h: Include mkstemp.h.
36895
36896         Import this patch from libc:
36897
36898         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36899
36900         * lib/tempname.c (__gen_tempname): Change attempts_min
36901         into a macro.  Use preprocessor to decide how to initialize
36902         attempts [Coverity CID 67].
36903
36904 2006-09-20  Bruno Haible  <bruno@clisp.org>
36905
36906         * lib/mkdtemp.c: Import from libc.
36907         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36908                 * sysdeps/posix/tempname.c (__gen_tempname): Change
36909                 attempts_min into a macro.  Use preprocessor to decide how to
36910                 initialize attempts [Coverity CID 67].
36911         2001-11-27  Paul Eggert  <eggert@twinsun.com>
36912                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
36913                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
36914
36915 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36916
36917         * gnulib-tool (func_exit): New function, to allow to pass the
36918         exit status portably through the trap.  Use everywhere.
36919         (--help, --version): Signal a write error.
36920         (trap): catch SIGPIPE, for write errors.
36921         Exit at the end of the trap, with the correct exit status.
36922
36923 2006-09-19  Karl Berry  <karl@gnu.org>
36924
36925         * doc/gnulib.texi: note about the license texinfo files.
36926
36927 2006-09-19  Eric Blake  <ebb9@byu.net>
36928
36929         * gnulib-tool: Avoid space-tab.
36930
36931 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36932
36933         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
36934         that prevented coreutils 6.1 from building.  Problem reported
36935         by Petter Reinholdtsen.
36936
36937 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36938
36939         * gnulib-tool (avoidlist): Fix typo that broke options like
36940         --avoid=lock that are used by coreutils bootstrap.
36941
36942 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
36943
36944         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
36945         more systematically.
36946
36947 2006-09-18  Jim Meyering  <jim@meyering.net>
36948
36949         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
36950
36951 2006-09-18  Bruno Haible  <bruno@clisp.org>
36952
36953         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
36954
36955 2006-09-18  Bruno Haible  <bruno@clisp.org>
36956
36957         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
36958         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
36959         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
36960         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
36961         * m4/gettext.m4: Require autoconf >= 2.52.
36962         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
36963         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
36964         of gl_cv_header_inttypes_h.
36965
36966 2006-09-18  Bruno Haible  <bruno@clisp.org>
36967
36968         * lib/javaversion.c: Include configmake.h.
36969
36970 2006-09-18  Bruno Haible  <bruno@clisp.org>
36971
36972         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
36973         avoid that the while loops be executed in a subshell.
36974
36975 2006-09-18  Bruno Haible  <bruno@clisp.org>
36976
36977         * MODULES.html.sh (func_module): Break long lines.
36978         Suggested by Bruce Korb <bkorb@gnu.org>.
36979
36980 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36981
36982         Speed up by a factor of 1.12.
36983         * gnulib-tool (nl): New variable.
36984         (func_import): Rewrite include directive extraction to only read each
36985         directive once.
36986
36987 2006-09-17  Bruno Haible  <bruno@clisp.org>
36988
36989         * modules/javaversion (Makefile.am): Remove DEFS setting.
36990         (Depends-on): Add configmake, for PKGDATADIR definition.
36991
36992 2006-09-17  Bruno Haible  <bruno@clisp.org>
36993
36994         * gnulib-tool (func_create_testdir): Rewrite all files at once.
36995
36996 2006-09-17  Bruno Haible  <bruno@clisp.org>
36997
36998         * gnulib-tool (func_append): New function, stolen from libtool.m4.
36999         (func_modules_transitive_closure, func_modules_add_dummy,
37000         func_modules_to_filelist, func_import, func_create_testdir,
37001         func_create_megatestdir, ...): Use it wherever possible.
37002         Suggested by Ralf Wildenhues.
37003
37004 2006-09-16  Karl Berry  <karl@gnu.org>
37005
37006         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
37007         to avoid sectioning errors.
37008         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
37009         [ifinfo]: blank line after @center-ed titles.
37010         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
37011         Spell FSF address consistently with others.
37012         (These changes approved by rms.)
37013
37014 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37015
37016         Speed up by a factor of 1.61.
37017         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
37018         already checked module names again.
37019
37020 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37021
37022         Speed up by a factor of 1.13.
37023         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
37024         for new_files, and the input to func_add_or_update.
37025
37026 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37027
37028         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
37029         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
37030
37031 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37032
37033         * modules/mkancesdirs (Depends-on): Add fcntl.
37034         * modules/savewd: New file.
37035         * MODULES.html.sh (File system functions): Add savewd.
37036
37037         * modules/configmake (Makefile.am): Add support for the
37038         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
37039
37040 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37041
37042         * m4/savewd.m4: New file.
37043
37044 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37045
37046         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
37047         (dirchownmod): New arg FD.  All callers changed.
37048         Use FD rather than opening the directory ourself, as opening is
37049         now the caller's responsibility.
37050         * lib/dirchownmod.h: Likewise.
37051         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
37052         hosts that require <sys/types.h> before <sys/stat.h>.  Include
37053         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
37054         (test_dir): Remove.
37055         (mkancesdirs): Return length of prefix of FILE that has already
37056         been made, or -2 if there is a child doing the work.  Redo
37057         algorithm so that it is O(N) rather than O(N**2).  Optimize away
37058         ".", and treat ".." specially since it might stray back into
37059         already-created areas.  Use a subprocess if necessary.  New arg
37060         WD; all users changed.  MAKE_DIR function should now return 1
37061         if it creates a directory that is not readable.  Return -2 if
37062         a child process is spun off.
37063         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
37064         Adjust signature to match code.
37065         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
37066         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
37067         all users changed.
37068         * lib/savewd.c, lib/savewd.h: New files.
37069
37070 2006-09-15  Jim Meyering  <jim@meyering.net>
37071
37072         * modules/rename-dest-slash: New module.
37073         * MODULES.html.sh (posix_compat): Add it here.
37074
37075         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
37076
37077 2006-09-15  Jim Meyering  <jim@meyering.net>
37078
37079         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
37080         file.
37081
37082         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
37083
37084 2006-09-15  Jim Meyering  <jim@meyering.net>
37085
37086         * lib/rename-dest-slash.c (has_trailing_slash): Use
37087         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
37088         (rpl_rename_dest_slash): Perform the cheaper trailing slash
37089         test before testing whether SRC is a directory.
37090         Suggestions from Bruno Haible.
37091
37092         Avoid a warning about an unused variable.
37093         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
37094         into the #ifdef block where it's used.
37095
37096         * lib/rename-dest-slash.c: New file.
37097
37098 2006-09-14  Bruno Haible  <bruno@clisp.org>
37099
37100         * lib/allocsa.c: Include <config.h> unconditionally.
37101         * lib/asnprintf.c: Likewise.
37102         * lib/asprintf.c: Likewise.
37103         * lib/c-strcasecmp.c: Likewise.
37104         * lib/c-strcasestr.c: Likewise.
37105         * lib/c-strncasecmp.c: Likewise.
37106         * lib/c-strstr.c: Likewise.
37107         * lib/classpath.c: Likewise.
37108         * lib/clean-temp.c: Likewise.
37109         * lib/concatpath.c: Likewise.
37110         * lib/copy-file.c: Likewise.
37111         * lib/csharpcomp.c: Likewise.
37112         * lib/csharpexec.c: Likewise.
37113         * lib/execute.c: Likewise.
37114         * lib/fatal-signal.c: Likewise.
37115         * lib/findprog.c: Likewise.
37116         * lib/fwriteerror.c: Likewise.
37117         * lib/gl_array_list.c: Likewise.
37118         * lib/gl_array_oset.c: Likewise.
37119         * lib/gl_avltree_list.c: Likewise.
37120         * lib/gl_avltree_oset.c: Likewise.
37121         * lib/gl_avltreehash_list.c: Likewise.
37122         * lib/gl_carray_list.c: Likewise.
37123         * lib/gl_linked_list.c: Likewise.
37124         * lib/gl_linkedhash_list.c: Likewise.
37125         * lib/gl_list.c: Likewise.
37126         * lib/gl_oset.c: Likewise.
37127         * lib/gl_rbtree_list.c: Likewise.
37128         * lib/gl_rbtree_oset.c: Likewise.
37129         * lib/gl_rbtreehash_list.c: Likewise.
37130         * lib/imaxabs.c: Likewise.
37131         * lib/imaxdiv.c: Likewise.
37132         * lib/javacomp.c: Likewise.
37133         * lib/javaexec.c: Likewise.
37134         * lib/javaversion.c: Likewise.
37135         * lib/linebreak.c: Likewise.
37136         * lib/localcharset.c: Likewise.
37137         * lib/lock.c: Likewise.
37138         * lib/mbchar.c: Likewise.
37139         * lib/mbswidth.c: Likewise.
37140         * lib/mkdtemp.c: Likewise.
37141         * lib/pipe.c: Likewise.
37142         * lib/printf-args.c: Likewise.
37143         * lib/printf-parse.c: Likewise.
37144         * lib/progname.c: Likewise.
37145         * lib/progreloc.c: Likewise.
37146         * lib/readlink.c: Likewise.
37147         * lib/sh-quote.c: Likewise.
37148         * lib/stpcpy.c: Likewise.
37149         * lib/stpncpy.c: Likewise.
37150         * lib/strcasecmp.c: Likewise.
37151         * lib/strcasestr.c: Likewise.
37152         * lib/strcspn.c: Likewise.
37153         * lib/striconv.c: Likewise.
37154         * lib/strncasecmp.c: Likewise.
37155         * lib/strnlen1.c: Likewise.
37156         * lib/strstr.c: Likewise.
37157         * lib/strtok_r.c: Likewise.
37158         * lib/tls.c: Likewise.
37159         * lib/tmpdir.c: Likewise.
37160         * lib/unicodeio.c: Likewise.
37161         * lib/unsetenv.c: Likewise.
37162         * lib/vasnprintf.c: Likewise.
37163         * lib/vasprintf.c: Likewise.
37164         * lib/wait-process.c: Likewise.
37165         * lib/xallocsa.c: Likewise.
37166         * lib/xsetenv.c: Likewise.
37167         * lib/xstriconv.c: Likewise.
37168
37169 2006-09-13  Simon Josefsson  <jas@extundo.com>
37170
37171         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
37172         that internally, suggested by Ralf Wildenhues
37173         <Ralf.Wildenhues@gmx.de>.
37174
37175 2006-09-13  Simon Josefsson  <jas@extundo.com>
37176
37177         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
37178         @LIBOBJS@.
37179         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
37180
37181 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
37182
37183         * lib/_fpending.c: Include <config.h> unconditionally, since we no
37184         longer worry about uses that don't define HAVE_CONFIG_H.
37185         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
37186         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
37187         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
37188         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
37189         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
37190         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
37191         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
37192         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
37193         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
37194         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
37195         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
37196         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
37197         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
37198         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
37199         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
37200         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
37201         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
37202         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
37203         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
37204         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
37205         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
37206         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
37207         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
37208         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
37209         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
37210         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
37211         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
37212         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
37213         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
37214         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
37215         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
37216         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
37217         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
37218         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
37219         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
37220         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
37221         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
37222         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
37223         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
37224         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
37225         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
37226         Likewise.
37227
37228 2006-09-13  Eric Blake  <ebb9@byu.net>
37229
37230         * lib/getopt.c: Fix typo in last commit.
37231
37232 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
37233
37234         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
37235         dgettext.
37236
37237 2006-09-12  Jim Meyering  <jim@meyering.net>
37238
37239         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
37240         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
37241         Reported by Nelson H. F. Beebe.
37242
37243 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
37244
37245         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
37246         program_invocation_name and program_invocation_short_name are
37247         initialized.
37248         * lib/argp-namefrob.h: Move declarations of program_invocation_name
37249         and program_invocation_short_name to argp.h, so they are visible
37250         to user programs.
37251         * lib/argp.h: Likewise
37252
37253 2006-09-10  Bruno Haible  <bruno@clisp.org>
37254
37255         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
37256         m4/inttypes_h.m4, m4/uintmax_t.m4.
37257
37258 2006-09-10  Bruno Haible  <bruno@clisp.org>
37259
37260         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
37261         gl_AC_TYPE_UINTMAX_T.
37262
37263 2006-09-10  Bruno Haible  <bruno@clisp.org>
37264
37265         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
37266
37267 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
37268
37269         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
37270         convention.  Text proposed by Bruno Haible.
37271         (struct argp_option): Document the use of N_() wrappers.
37272
37273         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
37274         '\v', and translate the two parts separately, instead of feeding
37275         the whole string to gettext.  This allows to exclude
37276         '\v' from the strings visible to the translator by writing doc
37277         strings as N_("..") "\v" N_("..").
37278
37279 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
37280
37281         * config/srclist.txt: Undo latest change; the bug was fixed.
37282
37283 2006-09-09  Bruno Haible  <bruno@clisp.org>
37284
37285         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
37286         assignments if building a library without libtool.
37287         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
37288         in func_emit_lib_Makefile_am.
37289         (func_import): When building a static library libfoo.a, arrange to
37290         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
37291         (func_create_testdir): Likewise.
37292         * modules/gc (configure.ac, Makefile.am): If building statically,
37293         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
37294         * modules/iconvme (configure.ac, Makefile.am): Likewise.
37295         * modules/striconv (configure.ac, Makefile.am): Likewise.
37296         Based on a suggestion by Ralf Wildenhues.
37297
37298 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37299
37300         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
37301         Check for unistd.h too, since Autoconf doesn't assume POSIX.
37302         Also:
37303
37304         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37305         Add year_2050_test to catch glibc bug 2821
37306         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37307
37308         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37309         Prefer #ifdef to #if.
37310
37311         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
37312         Return from 'main' instead of calling 'exit'.
37313
37314 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37315
37316         * lib/mktime.c (guess_time_tm): Fix bug where mktime
37317         returned the maximum time_t value rather than (time_t) -1.
37318         Problem originally reported by William Bardwell
37319         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37320
37321         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37322         Moved to here ...
37323         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37324         ... from here.
37325
37326 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37327
37328         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
37329         2821 is fixed.
37330
37331 2006-09-08  Jim Meyering  <jim@meyering.net>
37332
37333         Don't make generated files read-only.  That would bother too many
37334         people.  However, do retain the ability to work when targets are
37335         read-only: remove the destination and temporary files before writing
37336         them (when generated via sed or echo), or by using the -f option for
37337         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
37338         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37339         * modules/byteswap, modules/configmake, modules/fcntl:
37340         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37341         * modules/localcharset, modules/netinet_in, modules/poll:
37342         * modules/stdbool, modules/stdint, modules/sys_select:
37343         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37344
37345 2006-09-08  Jim Meyering  <jim@meyering.net>
37346
37347         Avoid new build failure on FreeBSD 6.0.
37348         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
37349         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
37350         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
37351
37352 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37353
37354         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
37355
37356 2006-09-07  Jim Meyering  <jim@meyering.net>
37357
37358         Fix global typo in last change: use chmod u-w, not chmod u-x.
37359         Spotted by Paul Eggert and Bruce Korb.
37360         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37361         * modules/byteswap, modules/configmake, modules/fcntl:
37362         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37363         * modules/localcharset, modules/netinet_in, modules/poll:
37364         * modules/stdbool, modules/stdint, modules/sys_select:
37365         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37366
37367 2006-09-06  Jim Meyering  <jim@meyering.net>
37368
37369         Make generated files be read-only.
37370         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
37371         Ensure that each generated file is now read-only.
37372         * modules/argz: Likewise.
37373         * modules/arpa_inet: Likewise.
37374         * modules/byteswap: Likewise.
37375         * modules/configmake: Likewise.
37376         * modules/fcntl: Likewise.
37377         * modules/fnmatch: Likewise.
37378         * modules/getopt: Likewise.
37379         * modules/glob: Likewise.
37380         * modules/inttypes: Likewise.
37381         * modules/netinet_in: Likewise.
37382         * modules/poll: Likewise.
37383         * modules/stdbool: Likewise.
37384         * modules/stdint: Likewise.
37385         * modules/sys_select: Likewise.
37386         * modules/sys_socket: Likewise.
37387         * modules/sys_stat: Likewise.
37388         * modules/sysexits: Likewise.
37389         * modules/localcharset: Same as above, but continue using temporary
37390         file named "t-$@" (why different?) rather than the "$@-t" used
37391         everywhere else.
37392
37393         * modules/sysexits (Makefile.am): Replace literal occurrences
37394         of "sysexit.h" more readable, and more consistent, "$@".
37395
37396 2006-09-06  Bruno Haible  <bruno@clisp.org>
37397
37398         * modules/striconv: New file.
37399         * modules/xstriconv: New file.
37400         * MODULES.html.sh (Internationalization functions): Add striconv,
37401         xstriconv.
37402
37403 2006-09-06  Bruno Haible  <bruno@clisp.org>
37404
37405         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
37406         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
37407         not using libtool correctly.
37408
37409 2006-09-06  Bruno Haible  <bruno@clisp.org>
37410
37411         * lib/striconv.h: New file.
37412         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
37413         iconvstring.c.
37414         * lib/xstriconv.h: New file.
37415         * lib/xstriconv.c: New file.
37416
37417 2006-09-06  Bruno Haible  <bruno@clisp.org>
37418
37419         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
37420         lib_..._LDFLAGS.
37421
37422 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37423
37424         * lib/argz_.h: Sync from Libtool.
37425
37426         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
37427                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37428
37429         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
37430
37431 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37432
37433         * modules/trim: New file.
37434
37435 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37436
37437         * lib/trim.h: New file.
37438         * lib/trim.c: New file.
37439
37440 2006-09-05  Bruno Haible  <bruno@clisp.org>
37441
37442         * MODULES.html.sh (String handling): Add trim.
37443
37444 2006-09-04  Karl Berry  <karl@gnu.org>
37445
37446         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
37447         until next release.
37448
37449 2006-09-03  Bruno Haible  <bruno@clisp.org>
37450
37451         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
37452         correctly.
37453
37454 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37455
37456         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
37457         not gl_GETLOADAVG.  Omit unneeded semicolons.
37458         Problems reported by Ralf Wildenhues in
37459         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37460         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
37461         at the end, which is the usual gnulib style.
37462
37463         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
37464         of doing all the work ourselves.
37465         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
37466         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
37467
37468 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37469
37470         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
37471         Problem reported by Ralf Wildenhues in
37472         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37473
37474         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
37475         HAVE_STRUCT_STATFS_F_FSTYPENAME.
37476
37477 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37478
37479         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
37480         yesterday's patch by changing test -n to test -z.
37481
37482 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37483
37484         * modules/getloadavg (Files): Add m4/getloadavg.m4.
37485         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
37486         the former is now obsolescent.
37487
37488         * modules/chdir-long (Depends-on): Add fcntl.
37489
37490 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37491
37492         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
37493         obsolescent, and programs should use gnulib instead.
37494         * m4/getloadavg.m4: New file, with contents taken from Autoconf
37495         but with prefixes changed.
37496
37497 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37498
37499         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
37500         or stdbool.h, because they might not exist while configuring.
37501
37502         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
37503         Don't include unistd.h or limits.h; not needed, since chdir-long.h
37504         does that for us.
37505         (O_DIRECTORY): Remove.
37506
37507 2006-08-31  Eric Blake  <ebb9@byu.net>
37508
37509         * gnulib-tool: Don't let emacs change spaces to TAB.
37510
37511 2006-08-31  Bruno Haible  <bruno@clisp.org>
37512
37513         * gnulib-tool: When calling func_import more than once, do it in a
37514         subshell.
37515         Reported by Eric Blake <ebb9@byu.net>.
37516
37517 2006-08-31  Bruno Haible  <bruno@clisp.org>
37518
37519         * gnulib-tool (nl): Remove variable.
37520         (sed_transform_lib_file): Use more robust test for config-h module.
37521         (func_import): Fix typo in 2006-08-25 patch.
37522
37523 2006-08-31  Bruno Haible  <bruno@clisp.org>
37524
37525         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
37526         specified, augment Makefile.am variables instead of assigning them.
37527
37528 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37529
37530         Work around a bug in both the Linux and SunOS 64-bit kernels:
37531         nanosleep mishandles sleeps for longer than 2**31 seconds.
37532         Problem reported by Frank v Waveren in
37533         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37534         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
37535         Check for nanosleep bug.
37536         (LIB_NANOSLEEP): Append clock_gettime library if needed.
37537
37538 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37539
37540         Work around a bug in both the Linux and SunOS 64-bit kernels:
37541         nanosleep mishandles sleeps for longer than 2**31 seconds.
37542         Problem reported by Frank v Waveren in
37543         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37544         * lib/nanosleep.c (BILLION): New constant.
37545         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
37546         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
37547         implementation.
37548
37549 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37550
37551         * modules/nanosleep (Depends-on): Add gettime.
37552
37553 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37554         and Simon Josefsson  <jas@extundo.com>
37555         and Oskar Liljeblad  <oskar@osk.mine.nu>
37556
37557         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
37558         * gnulib-tool (func_import): New license type 'unmodifiable license
37559         text'.
37560         * modules/fdl: Use it.  Longer description.
37561         * module/gpl, module/lgpl: New files.
37562
37563 2006-08-30  Jim Meyering  <jim@meyering.net>
37564
37565         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
37566         shadowing the parameter.
37567
37568 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37569
37570         Sync from Libtool:
37571
37572         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37573
37574         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
37575         sharing with gnulib.  Report by Eric Blake.
37576
37577 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37578
37579         * modules/isapipe: New file.
37580         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
37581
37582 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37583
37584         * modules/configmake (Makefile.am): Add a comment, and omit
37585         the CONFIGMAKE_ prefix from generated macro names.  Suggested
37586         by Bruno Haible.
37587
37588 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37589
37590         * m4/isapipe.m4: New file.
37591
37592 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37593
37594         * lib/isapipe.c, lib/isapipe.h: New files.
37595
37596 2006-08-29  Jim Meyering  <jim@meyering.net>
37597
37598         * modules/configmake (Makefile.am): Make configmake.h depend on
37599         Makefile.  Otherwise, a stale configmake.h could hang around.
37600
37601 2006-08-29  Eric Blake  <ebb9@byu.net>
37602
37603         * lib/error.c (error_at_line, print_errno_message): Match libc, after
37604         resolution of upstream bug 3044.
37605
37606 2006-08-29  Bruno Haible  <bruno@clisp.org>
37607
37608         * modules/localcharset (Depends-on): Add configmake.
37609         (Makefile.am): Remove setting of LIBDIR through DEFS.
37610
37611 2006-08-29  Bruno Haible  <bruno@clisp.org>
37612
37613         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
37614         defined.
37615
37616 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37617
37618         * modules/fcntl: New file.
37619         * modules/chdir-safer (Depends-on): Add fcntl.
37620         * modules/fts: Likewise.
37621         * modules/mkdir-p: Likewise.
37622
37623         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
37624         This undoes the most recent change, since we're now addressing the
37625         problem in a different way.
37626
37627         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
37628         into output, since the output might be called Makefile.am even
37629         if $makefile_name is something different.
37630         (func_import): Use $makefile_am rather than
37631         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
37632         empty.
37633
37634         * modules/inttypes (Files): Add m4/inttypes-h.m4.
37635
37636 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37637
37638         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
37639         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
37640         recent change to stdint.m4, since we're now addressing the problem in a
37641         different way.
37642
37643 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37644
37645         * m4/fcntl_h.m4: New file.
37646
37647 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37648
37649         * lib/fcntl_.h: New file.
37650         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
37651         the fcntl module.
37652         * lib/dirchownmod.c: Likewise.
37653         * lib/fts.c: Likewise.
37654
37655         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
37656         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
37657         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
37658         just before including <inttypes.h>, to avoid circular inclusion.
37659
37660 2006-08-28  Jim Meyering  <jim@meyering.net>
37661
37662         * doc/visibility.texi: Actually read and correct the grammar of the
37663         sentence affected by yesterday's change.
37664
37665 2006-08-28  Eric Blake  <ebb9@byu.net>
37666
37667         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
37668         needs wrapper.
37669
37670 2006-08-28  Eric Blake  <ebb9@byu.net>
37671
37672         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
37673
37674 2006-08-28  Eric Blake  <ebb9@byu.net>
37675
37676         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
37677
37678 2006-08-28  Bruno Haible  <bruno@clisp.org>
37679
37680         * modules/c-strstr: New file, from GNU gettext.
37681         * MODULES.html.sh (String handling): Add c-strstr.
37682
37683 2006-08-28  Bruno Haible  <bruno@clisp.org>
37684
37685         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
37686         macros.
37687         Reported by Eric Blake.
37688
37689 2006-08-28  Bruno Haible  <bruno@clisp.org>
37690
37691         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
37692         (VASNPRINTF): Return a string of length > INT_MAX without failing.
37693         * lib/vasprintf.c: Include errno.h, limits.h.
37694         (EOVERFLOW): New fallback definition.
37695         (vasprintf): Test here whether the string length is > INT_MAX.
37696         * lib/vsnprintf.c: Include errno.h, limits.h.
37697         (EOVERFLOW): New fallback definition.
37698         (vsnprintf): Fix bug when generated string was too long for the buffer.
37699         Test here whether the string length is > INT_MAX.
37700
37701 2006-08-28  Bruno Haible  <bruno@clisp.org>
37702
37703         * lib/inttypes_.h (SCNX*): Remove definitions.
37704         Reported by Eric Blake.
37705
37706 2006-08-28  Bruno Haible  <bruno@clisp.org>
37707
37708         * lib/c-strstr.h: New file, from GNU gettext.
37709         * lib/c-strstr.c: New file, from GNU gettext.
37710
37711 2006-08-28  Bruno Haible  <bruno@clisp.org>
37712
37713         * gnulib-tool: Reorder some statements.
37714
37715 2006-08-28  Bruno Haible  <bruno@clisp.org>
37716
37717         * gnulib-tool: New option --makefile-name.
37718         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
37719         $makefile_name.
37720         (func_import): Write $makefile_name to the cache file, and read it from
37721         there unless explicitly specified. Use $makefile_name as file name
37722         instead of Makefile.am. Adjust the recommendations accordingly.
37723
37724 2006-08-28  Bruno Haible  <bruno@clisp.org>
37725
37726         * gnulib-tool (func_verify_module): Check against misapplying patch.
37727
37728 2006-08-28  Bruno Haible  <bruno@clisp.org>
37729
37730         * gnulib-tool (func_relativize, func_relconcat): New functions.
37731         Give an error if --local-dir is given with --update.
37732         Remove trailing slashes from $local_gnulib_dir.
37733         (func_import): Store the relativized $local_gnulib_dir in
37734         gnulib-cache.m4, and read it from there if not specified explicitly.
37735
37736 2006-08-28  Bruno Haible  <bruno@clisp.org>
37737
37738         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
37739         is the current directory. Respect also $local_gnulib_dir.
37740
37741 2006-08-28  Bruno Haible  <bruno@clisp.org>
37742             Simon Josefsson  <jas@extundo.com>
37743
37744         BeOS portability.
37745         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
37746
37747 2006-08-27  Jim Meyering  <jim@meyering.net>
37748
37749         * doc/visibility.texi: Remove duplicate word: "pointer".
37750
37751 2006-08-26  Bruno Haible  <bruno@clisp.org>
37752
37753         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
37754         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
37755         (Makefile.am): Create inttypes.h from inttypes_.h.
37756         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
37757
37758         * modules/imaxabs: New file.
37759
37760         * modules/imaxdiv: New file.
37761
37762 2006-08-26  Bruno Haible  <bruno@clisp.org>
37763
37764         * m4/inttypes.m4: New file.
37765         * m4/_inttypes_h.m4: Remove file.
37766         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
37767         PRI_MACROS_BROKEN.
37768         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
37769
37770         * m4/imaxabs.m4: New file.
37771
37772         * m4/imaxdiv.m4: New file.
37773
37774 2006-08-26  Bruno Haible  <bruno@clisp.org>
37775
37776         * lib/inttypes_.h: New file.
37777         * lib/inttypes.h: Remove file.
37778         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
37779
37780         * lib/imaxabs.c: New file.
37781
37782         * lib/imaxdiv.c: New file.
37783
37784 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37785
37786         New config-h module, so that "make" output needn't be cluttered
37787         by -DHAVE_CONFIG_H.
37788         * MODULES.html.sh (Support for building libraries and executables):
37789         Add config-h.
37790         * modules/config-h: New file.
37791         * gnulib-tool (nl, sed_transform_lib_file): New vars.
37792         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
37793         the config-h module is used.
37794
37795         New configmake module, so that "make" output needn't be cluttered
37796         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
37797         * MODULES.html.sh (Support for building libraries and executables):
37798         Add configmake.
37799         * modules/configmake: New file.
37800
37801 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37802
37803         * m4/config-h.m4: New file.
37804
37805 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37806
37807         * config/srclist.txt: Add elisp-comp.
37808
37809 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37810
37811         * MODULES.html.sh (Support for building libraries and executables):
37812         Add elisp-comp.
37813         * build-aux/elisp-comp: New file.
37814         * modules/elisp-comp: New file.
37815
37816 2006-08-24  Bruno Haible  <bruno@clisp.org>
37817
37818         * gnulib-tool (func_create_testdir): Use non-default values of
37819         sourcebase and m4base.
37820
37821 2006-08-24  Bruno Haible  <bruno@clisp.org>
37822
37823         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
37824         HTML structure.
37825
37826 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
37827
37828         * modules/openat (Depends-on): Add lchown.
37829
37830 2006-08-23  Bruno Haible  <bruno@clisp.org>
37831
37832         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
37833         of gl_LOCK_EARLY instead of gl_LOCK.
37834
37835 2006-08-23  Bruno Haible  <bruno@clisp.org>
37836
37837         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
37838         on OSF/1 to no.
37839         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
37840
37841 2006-08-23  Bruno Haible  <bruno@clisp.org>
37842
37843         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
37844         as unusable.
37845
37846         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
37847         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
37848         (gl_LOCK): New macro.
37849
37850 2006-08-22  Simon Josefsson  <jas@extundo.com>
37851
37852         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
37853         to md5 module.
37854
37855 2006-08-22  Simon Josefsson  <jas@extundo.com>
37856
37857         * MODULES.html.sh: Add "Support for maintaining and release
37858         projects".
37859
37860         * build-aux/gnupload: New file, from coreutils.
37861
37862 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37863
37864         Avoid the need for AC_LIBSOURCES in m4 macros.
37865         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
37866         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
37867         * modules/check-version (EXTRA_DIST): Add check-version.h.
37868         * modules/crc (EXTRA_DIST): Add crc.h.
37869         * modules/des (EXTRA_DIST): Add des.h.
37870         * modules/gc (EXTRA_DIST): Add gc.h.
37871         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
37872         * modules/getline (EXTRA_DIST): Add getline.h.
37873         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
37874         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
37875         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
37876         * modules/md2 (EXTRA_DIST): Add md2.h.
37877         * modules/md4 (EXTRA_DIST): Add md4.h.
37878         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
37879         * modules/read-file (EXTRA_DIST): Add read-file.h.
37880         * modules/readline (EXTRA_DIST): Add readline.h.
37881         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
37882         rijndael-api-fst.h.
37883
37884 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37885
37886         * m4/rijndael.m4 (gl_ARCFOUR):
37887         * m4/arctwo.m4 (gl_ARCTWO):
37888         * m4/check-version.m4 (gl_CHECK_VERSION):
37889         * m4/crc.m4 (gl_CRC):
37890         * m4/des.m4 (gl_DES):
37891         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
37892         * m4/gc.m4 (gl_GC):
37893         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
37894         * m4/getline.m4 (gl_FUNC_GETLINE):
37895         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
37896         * m4/hmac-md5.m4 (gl_HMAC_MD5):
37897         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
37898         * m4/md2.m4 (gl_MD2):
37899         * m4/md4.m4 (gl_MD4):
37900         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
37901         * m4/read-file.m4 (gl_FUNC_READ_FILE):
37902         * m4/readline.m4 (gl_FUNC_READLINE):
37903         * m4/rijndael.m4 (gl_RIJNDAEL):
37904         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37905         to get the necessary .h files and whatnot.
37906
37907 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37908
37909         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
37910         gnulib rather than the other way around.
37911         * config/srclistvars.sh (COREUTILS): Remove.
37912
37913 2006-08-22  Jim Meyering  <jim@meyering.net>
37914
37915         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
37916
37917         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
37918
37919 2006-08-22  Eric Blake  <ebb9@byu.net>
37920
37921         * modules/regexprops-generic: New file.
37922         * MODULES.html.sh (Support for building documentation): List it.
37923
37924 2006-08-22  Eric Blake  <ebb9@byu.net>
37925
37926         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
37927         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
37928         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
37929         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
37930
37931 2006-08-22  Bruno Haible  <bruno@clisp.org>
37932
37933         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
37934         and lib_LTLIBRARIES like the other lib_* variables.
37935
37936 2006-08-22  Bruno Haible  <bruno@clisp.org>
37937
37938         * build-aux/x-to-1.in: New file, from GNU gettext.
37939
37940 2006-08-22  Bruno Haible  <bruno@clisp.org>
37941
37942         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
37943         <utmpx.h> exists.
37944
37945 2006-08-22  Bruno Haible  <bruno@clisp.org>
37946
37947         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
37948         <utmpx.h> exists.
37949
37950 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37951
37952         BeOS portability.
37953         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
37954         exist.
37955         Problem reported by Bruno Haible.
37956
37957 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37958
37959         Avoid the need for AC_LIBSOURCES in m4 macros.
37960         * modules/acl (EXTRA_DIST): Add acl.h.
37961         * modules/argmatch (Files): Add m4/argmatch.m4.
37962         (configure.ac): Add gl_ARGMATCH.
37963         (EXTRA_DIST): Renamed from lib_SOURCES, for
37964         consistency with the other modules.  Remove argmatch.c.
37965         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
37966         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
37967         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
37968         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
37969         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
37970         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
37971         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
37972         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
37973         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
37974         * modules/closeout (EXTRA_DIST): Add closeout.h.
37975         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
37976         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
37977         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
37978         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
37979         dirname.h; remove basename.c and stripslash.c.
37980         * modules/exclude (EXTRA_DIST): Add exclude.h.
37981         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
37982         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
37983         * modules/file-type (EXTRA_DIST): Add file-type.h.
37984         * modules/filemode (EXTRA_DIST): Add filemode.h.
37985         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
37986         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37987         * modules/fpending (EXTRA_DIST): Add __fpending.h.
37988         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
37989         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
37990         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
37991         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
37992         * modules/getdate (EXTRA_DIST): Add getdate.c.
37993         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
37994         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
37995         * modules/getpass (EXTRA_DIST): Add getpass.h.
37996         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
37997         * modules/group-member (EXTRA_DIST): Add group-member.h.
37998         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
37999         * modules/hash (EXTRA_DIST): Add hash.h.
38000         * modules/human (EXTRA_DIST): Add human.h.
38001         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
38002         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
38003         * modules/lchown (EXTRA_DIST): Add lchown.h.
38004         * modules/long-options (EXTRA_DIST): Add long-options.h.
38005         * modules/lstat (EXTRA_DIST): Add lstat.h.
38006         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
38007         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
38008         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
38009         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
38010         * modules/memxor (EXTRA_DIST): Add memxor.h.
38011         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
38012         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
38013         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
38014         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
38015         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
38016         * modules/physmem (EXTRA_DIST): Add physmem.h.
38017         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
38018         * modules/posixver (EXTRA_DIST): Add posixver.h.
38019         * modules/quote (EXTRA_DIST): Add quote.h.
38020         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
38021         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
38022         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
38023         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
38024         regex_internal.h regexec.c.
38025         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
38026         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
38027         * modules/same (EXTRA_DIST): Add same.h.
38028         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
38029         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
38030         * modules/savedir (EXTRA_DIST): Add savedir.h.
38031         * modules/sha1 (EXTRA_DIST): Add sha1.h.
38032         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
38033         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
38034         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
38035         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
38036         * modules/strdup (EXTRA_DIST): Add strdup.h.
38037         * modules/strftime (EXTRA_DIST): Add strftime.h.
38038         * modules/strndup (EXTRA_DIST): Add strndup.h.
38039         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
38040         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
38041         * modules/time_r (EXTRA_DIST): Add time_r.h.
38042         * modules/timespec (EXTRA_DIST): Add timespec.h.
38043         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
38044         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
38045         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
38046         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
38047         * modules/userspec (EXTRA_DIST): Add userspec.h.
38048         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
38049         * modules/utimens (EXTRA_DIST): Add utimens.h.
38050         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
38051         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
38052         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
38053         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
38054         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
38055         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
38056         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
38057         * modules/yesno (EXTRA_DIST): Add yesno.h.
38058
38059 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
38060
38061         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
38062
38063         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
38064         * m4/dev-ino.m4, same-inode.m4: Remove.
38065
38066         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
38067         * m4/acl.m4 (AC_FUNC_ACL):
38068         * m4/backupfile.m4 (gl_BACKUPFILE):
38069         * m4/c-strtod.m4 (gl_C99_STRTOLD):
38070         * m4/canon-host.m4 (gl_CANON_HOST):
38071         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
38072         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
38073         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
38074         * m4/cloexec.m4 (gl_CLOEXEC):
38075         * m4/close-stream.m4 (gl_CLOSE_STREAM):
38076         * m4/closeout.m4 (gl_CLOSEOUT):
38077         * m4/dirfd.m4 (gl_FUNC_DIRFD):
38078         * m4/dirname.m4 (gl_DIRNAME):
38079         * m4/exclude.m4 (gl_EXCLUDE):
38080         * m4/exitfail.m4 (gl_EXITFAIL):
38081         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
38082         * m4/file-type.m4 (gl_FILE_TYPE):
38083         * m4/filemode.m4 (gl_FILEMODE):
38084         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
38085         * m4/fpending.m4 (gl_FUNC_FPENDING):
38086         * m4/fprintftime.m4 (gl_FPRINTFTIME):
38087         * m4/fts.m4 (gl_FUNC_FTS):
38088         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
38089         * m4/getdate.m4 (gl_GETDATE):
38090         * m4/gethrxtime.m4 (gl_GETHRXTIME):
38091         * m4/getpagesize.m4 (gl_GETPAGESIZE):
38092         * m4/getpass.m4 (gl_FUNC_GETPASS):
38093         * m4/gettime.m4 (gl_GETTIME):
38094         * m4/getugroups.m4 (gl_GETUGROUPS):
38095         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
38096         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
38097         * m4/hard-locale.m4 (gl_HARD_LOCALE):
38098         * m4/hash.m4 (gl_HASH):
38099         * m4/idcache.m4 (gl_IDCACHE):
38100         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
38101         * m4/lchown.m4 (gl_FUNC_LCHOWN):
38102         * m4/long-options.m4 (gl_LONG_OPTIONS):
38103         * m4/lstat.m4 (gl_FUNC_LSTAT):
38104         * m4/md5.m4 (gl_MD5):
38105         * m4/memcasecmp.m4 (gl_MEMCASECMP):
38106         * m4/memcoll.m4 (gl_MEMCOLL):
38107         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
38108         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
38109         * m4/memxor.m4 (gl_MEMXOR):
38110         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
38111         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
38112         * m4/modechange.m4 (gl_MODECHANGE):
38113         * m4/mountlist.m4 (gl_MOUNTLIST):
38114         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
38115         * m4/openat.m4 (gl_FUNC_OPENAT):
38116         * m4/pathmax.m4 (gl_PATHMAX):
38117         * m4/physmem.m4 (gl_PHYSMEM):
38118         * m4/posixtm.m4 (gl_POSIXTM):
38119         * m4/posixver.m4 (gl_POSIXVER):
38120         * m4/quote.m4 (gl_QUOTE):
38121         * m4/quotearg.m4 (gl_QUOTEARG):
38122         * m4/readtokens.m4 (gl_READTOKENS):
38123         * m4/readutmp.m4 (gl_READUTMP):
38124         * m4/regex.m4 (gl_REGEX):
38125         * m4/safe-read.m4 (gl_SAFE_READ):
38126         * m4/safe-write.m4 (gl_SAFE_WRITE):
38127         * m4/same.m4 (gl_SAME):
38128         * m4/save-cwd.m4 (gl_SAVE_CWD):
38129         * m4/savedir.m4 (gl_SAVEDIR):
38130         * m4/settime.m4 (gl_SETTIME):
38131         * m4/sha1.m4 (gl_SHA1):
38132         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
38133         * m4/stat-macros.m4 (gl_STAT_MACROS):
38134         * m4/stat-time.m4 (gl_STAT_TIME):
38135         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
38136         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
38137         * m4/strdup.m4 (gl_FUNC_STRDUP):
38138         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
38139         * m4/strndup.m4 (gl_FUNC_STRNDUP):
38140         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
38141         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
38142         * m4/time_r.m4 (gl_TIME_R):
38143         * m4/timespec.m4 (gl_TIMESPEC):
38144         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
38145         * m4/unlinkdir.m4 (gl_UNLINKDIR):
38146         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
38147         * m4/userspec.m4 (gl_USERSPEC):
38148         * m4/utimecmp.m4 (gl_UTIMECMP):
38149         * m4/utimens.m4 (gl_UTIMENS):
38150         * m4/xalloc.m4 (gl_XALLOC):
38151         * m4/xgetcwd.m4 (gl_XGETCWD):
38152         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
38153         * m4/xreadlink.m4 (gl_XREADLINK):
38154         * m4/xstrtod.m4 (gl_XSTRTOD):
38155         * m4/yesno.m4 (gl_YESNO):
38156         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
38157         to get the necessary .h files and whatnot.
38158
38159 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
38160             Bruno Haible  <bruno@clisp.org>
38161
38162         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
38163         /bin/sh understanding of '!' conditional negation.
38164
38165 2006-08-21  Jim Meyering  <jim@meyering.net>
38166
38167         * modules/openat (Depends-on): Really alphabetize.
38168
38169         * modules/acl (Depends-on): Add error and quote.
38170
38171         * check-module (find_included_lib_files): Add at-func.c to the
38172         ok-to-include-more-than-once white list.
38173
38174         * modules/openat (Depends-on): Add lstat.  Alphabetize.
38175
38176 2006-08-21  Bruno Haible  <bruno@clisp.org>
38177
38178         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38179         Emit a pkgdata_DATA variable only if some snippets add contents to it.
38180         Reported by Martin Lambers <marlam@marlam.de>.
38181
38182 2006-08-21  Bruno Haible  <bruno@clisp.org>
38183
38184         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
38185         specify an installation location, don't emit a noinst_LIBRARIES or
38186         noinst_LTLIBRARIES assignment.
38187
38188 2006-08-21  Bruno Haible  <bruno@clisp.org>
38189
38190         BeOS portability.
38191         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
38192         BeOS has mbrtowc() but no <wctype.h>.
38193
38194 2006-08-21  Bruno Haible  <bruno@clisp.org>
38195
38196         BeOS portability.
38197         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
38198         exist.
38199
38200 2006-08-21  Bruno Haible  <bruno@clisp.org>
38201
38202         BeOS portability.
38203         * lib/mbchar.h: Include <wctype.h> only if it exists.
38204
38205 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38206
38207         Remove files that are no longer needed by their respective modules.
38208         * m4/obstack.m4: Remove.
38209         * m4/strerror_r.m4: Remove.
38210         * m4/uint32_t.m4: Remove.
38211         * m4/uintptr_t.m4: Remove.
38212         * m4/ullong_max.m4: Remove.
38213         * m4/xstrtoimax.m4: Remove.
38214         * m4/xstrtoumax.m4: Remove.
38215
38216         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
38217         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
38218         dependencies now capture this.
38219
38220         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
38221         Do not use AC_LIBSOURCES, since gnulib modules now do this.
38222         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
38223         * m4/human.m4 (gl_HUMAN): Likewise.
38224         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
38225         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
38226
38227         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
38228
38229         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
38230         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
38231         stdint.
38232         * m4/human.m4 (gl_HUMAN): Likewise.
38233         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
38234         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
38235         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
38236         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
38237         * m4/xstrtol (gl_XSTRTOL): Likewise.
38238
38239         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
38240         AC_TYPE_LONG_LONG_INT.
38241         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
38242         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
38243         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
38244         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
38245
38246         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
38247         on stdbool.
38248
38249         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
38250         (gl_PREREQ_XSTRTOUL): Remove.
38251
38252         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
38253
38254         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
38255         mode.
38256
38257 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38258
38259         Add and change modules to make it easier for coreutils to use
38260         gnulib-tool.
38261         * modules/backupfile (Files): Remove m4/d-ino.m4.
38262         (Depends-on): Add d-ino.
38263         * modules/cycle-check (Depends-on): Add stdint.
38264         (lib_SOURCES): Add cycle-check.h.
38265         * modules/d-ino: New module.
38266         * modules/d-type: New module.
38267         * modules/error (Files): Remove m4/strerror_r.m4.
38268         * modules/filemode (Files): Add m4/st_dm_mode.m4.
38269         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
38270         m4/inttypes_h.m4, m4/uintmax_t.m4.
38271         (Depends-on): Add stdint.
38272         (lib_SOURCES): Add fsusage.h.
38273         * modules/getcwd (Files): Remove d-ino.m4.
38274         (Depends-on): Add d-ino.
38275         * modules/getndelim2 (Depends-on): Add stdint.
38276         * modules/glob (Files): Remove m4/d-type.m4.
38277         (Depends-on): Add d-type.
38278         * modules/host-os: New module.
38279         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
38280         m4/inttypes_h.m4, m4/uintmax_t.m4.
38281         * Depends-on: Add stdint.
38282         (lib_SOURCES): Add human.h.
38283         * modules/inttostr (Files): Remove m4/intmax_t.m4,
38284         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
38285         m4/uintmax_t.m4, m4/ulonglong.m4.
38286         (Depends-on): Add stdint.
38287         (EXTRA_DIST): Add inttostr.h.
38288         * modules/lchmod: New module.
38289         * modules/link-follow: New module.
38290         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
38291         (Depends-on): Add lchmod.
38292         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
38293         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
38294         (Depends-on): Add stdint.
38295         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
38296         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
38297         (Depends-on): Add stdint.
38298         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
38299         * modules/perl: New module.
38300         * modules/regex (Depends-on): Add stdint.
38301         * modules/rmdir-errno: New module.
38302         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38303         m4/intmax_t.m4.
38304         (Depends-on): Add stdint.
38305         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38306         m4/uintmax_t.m4.
38307         (Depends-on): Add stdint.
38308         * modules/unlink-busy: New module.
38309         * modules/utimecmp (Depends-on): Add stdint.
38310         * modules/uptime: New module.
38311         * modules/winsz-ioctl: New module.
38312         * modules/winsz-termios: New module.
38313         * modules/xnanosleep (Depends-on): Add nanosleep.
38314         * modules/ullong_max: Remove.
38315         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
38316         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
38317         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
38318         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
38319         (Depends-on): Add inttypes.
38320         (lib_SOURCES): Add xstrtol.h.
38321         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
38322         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
38323         * MODULES.html.sh: Move 'assert' into the assert section.
38324         Move 'dummy' into the linking section.
38325         Remove ullong_max.
38326         Add section for compatibility checks for POSIX:2001 functions,
38327         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
38328         winsz-ioctl, and winsz-termios into it.
38329         Add lchmod.
38330         Add top-level Misc section and put host-os, perl, and uptime
38331         into it.
38332
38333 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38334
38335         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
38336         now assume the stdint module.  Do not include inttypes.h.
38337         * lib/fsusage.h: Likewise.
38338         * lib/getndelim2.c: Likewise.
38339         * lib/human.h: Likewise.
38340         * lib/inttostr.h: Likewise.
38341         * lib/obstack.c: Likewise.
38342         * lib/regex_internal.h: Likewise.
38343         * lib/tempname.c: Likewise.
38344         * lib/utimecmp.c: Likewise.
38345         * lib/xstrtol.h: Likewise.
38346
38347         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
38348
38349         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
38350         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
38351         * lib/xtime.h: Likewise.
38352
38353 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38354
38355         * modules/openat (Files): Add lib/fchmodat.c.
38356         Fixes problem reported by Jay Youngman.
38357
38358 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38359
38360         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
38361         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
38362
38363 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
38364             Bruno Haible  <bruno@clisp.org>
38365
38366         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
38367         and is a script that invokes bison. Tighten the code. Add comments.
38368
38369 2006-08-18  Jim Meyering  <jim@meyering.net>
38370
38371         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
38372         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
38373         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
38374         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
38375
38376 2006-08-18  Bruno Haible  <bruno@clisp.org>
38377
38378         * modules/bison-i18n: New file.
38379         * MODULES.html.sh (Internationalization functions): Add it.
38380
38381 2006-08-18  Bruno Haible  <bruno@clisp.org>
38382
38383         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
38384         sys/statvfs.h. When getmntinfo was found, check its declaration and
38385         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
38386
38387 2006-08-18  Bruno Haible  <bruno@clisp.org>
38388
38389         * m4/bison-i18n.m4: New file, from bison.
38390
38391 2006-08-18  Bruno Haible  <bruno@clisp.org>
38392
38393         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
38394         (ME_DUMMY): Treat "kernfs" as a dummy.
38395         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
38396
38397 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38398
38399         Update from coreutils.
38400
38401         2006-08-15  Jim Meyering  <jim@meyering.net>
38402
38403         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
38404
38405         2006-01-17  Jim Meyering  <jim@meyering.net>
38406
38407         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
38408
38409         2006-01-11  Jim Meyering  <jim@meyering.net>
38410
38411         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
38412         Check for the lchmod function.
38413
38414 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38415
38416         Update from coreutils.
38417
38418         * lib/__fpending.h: Add copyright notice.
38419         * lib/fprintftime.h: Likewise.
38420         * lib/savedir.c: Use (C) in copyright notice.
38421         * lib/savedir.h: Likewise.
38422
38423         2006-08-15  Jim Meyering  <jim@meyering.net>
38424
38425         * lib/at-func.c: New file, with the logic of all emulated at-functions.
38426         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
38427         in support of the EXPECTED_ERRNO macro.
38428         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
38429         definitions.  Instead, define the appropriate symbols and include
38430         "at-func.c".
38431         * lib/mkdirat.c (mkdirat): Likewise.
38432         * lib/fchmodat.c (fchmodat): Likewise.
38433         (ENOSYS): Remove definition.
38434         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
38435         it.  Don't include "unistd--.h" -- it wasn't ever used.
38436
38437         2006-01-17  Jim Meyering  <jim@meyering.net>
38438
38439         Rewrite fts.c not to change the current working directory,
38440         by using openat, fstatat, fdopendir, etc..
38441
38442         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
38443         (HAVE_OPENAT_SUPPORT): Define.
38444         [_LIBC] (fchdir): Don't undef or define; no longer used.
38445         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
38446         Now, this `function' always succeeds, and consumes its file descriptor
38447         parameter -- so callers must not close such FDs.  Update callers.
38448         (diropen_fd, opendirat, cwd_advance_fd): New functions.
38449         (diropen): Add parameter, SP.  Adjust all callers.
38450         Implement using diropen_fd, rather than open.
38451         (fts_open): Initialize new member, fts_cwd_fd.
38452         Remove fts_rft-setting code.
38453         (fts_close): Close fts_cwd_fd, if necessary.
38454         (__opendir2): Define in terms of opendir or opendirat,
38455         depending on whether the FST_NOCHDIR flag is set.
38456         (fts_build): Since fts_safe_changedir consumes its FD, and since
38457         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
38458         and close the dup'd file descriptor upon failure.
38459         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
38460         (fts_safe_changedir): Tweak semantics to reflect that this function
38461         now calls cwd_advance_fd and hence consumes its FD argument.
38462         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
38463         [struct FTS] (fts_rft): Remove now-unused member.
38464         [struct FTS] (fts_cycle.state): Improve comment.
38465
38466         * lib/openat.c (openat_needs_fchdir): New function.
38467         * lib/openat.h (openat_needs_fchdir): Declare it.
38468
38469 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38470
38471         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
38472         Problem and fix reported by Pádraig Brady in
38473         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
38474
38475 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38476
38477         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
38478
38479 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38480
38481         * lib/memcoll.c (memcoll): Optimize for the common case where the
38482         arguments are bytewise equal.
38483
38484 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38485
38486         * doc/regexprops-generic.texi: Add a copyright notice.
38487
38488 2006-08-15  Bruno Haible  <bruno@clisp.org>
38489
38490         * modules/tmpdir (License): Change to LGPL.
38491
38492 2006-08-15  Bruno Haible  <bruno@clisp.org>
38493
38494         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
38495         module.
38496
38497 2006-08-14  Simon Josefsson  <jas@extundo.com>
38498
38499         * config/srclist.txt: Add gnupload.
38500
38501 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38502
38503         Change copyright notice from LGPL 2 to GPL 2, since that's the
38504         standard form used in the gnulib repository.
38505         * tests/test-lock.c: Likewise.
38506         * tests/test-stdint.c: Likewise.
38507         * tests/test-tls.c: Likewise.
38508
38509         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
38510         prelude-manager.  User shorter URLs for GNU projects, without '?'.
38511         Add copyright notice.
38512
38513         * check-module: Add copyright notice.  Output a copyright
38514         notice if "--version" is specified.
38515         * modules/COPYING: New file.
38516         * tests/test-getaddrinfo.c: Add copyright notice.
38517         * tests/test-verify.c: Likewise.
38518
38519 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38520
38521         Change copyright notice from LGPL 2 to GPL 2, since that's the
38522         standard form used in the gnulib repository.
38523         * lib/lock.c: LGPL -> GPL.
38524         * lib/lock.h: Likewise.
38525         * lib/strnlen1.c: Likewise.
38526         * lib/strnlen1.h: Likewise.
38527         * lib/tls.c: Likewise.
38528         * lib/tls.h: Likewise.
38529         * lib/tmpdir.c: Likewise.
38530
38531         * lib/TODO: Remove; this belongs only in coreutils.
38532
38533 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38534
38535         Add copyright notices to long-enough files that lack them, since
38536         otherwise the files aren't clearly free.  Use the same notice that
38537         getdate.texi already uses.
38538         * doc/alloca-opt.texi: Add copyright notice.
38539         * doc/alloca.texi: Likewise.
38540         * doc/ctime.texi: Likewise.
38541         * doc/functions.texi: Likewise.
38542         * doc/gcd.texi: Likewise.
38543         * doc/gnulib-tool.texi: Likewise.
38544         * doc/inet_ntoa.texi: Likewise.
38545         * doc/visibility.texi: Likewise.
38546
38547         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
38548         * doc/quote.texi: Add copyright notice.
38549
38550         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
38551         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
38552         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
38553         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
38554         is now obsolete, and give a pointer to the Sun list.
38555         Add copyright notice.
38556
38557 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38558
38559         * config/srclistvars.sh: Add copyright notice.
38560
38561 2006-08-14  Eric Blake  <ebb9@byu.net>
38562
38563         Import the following change from libc:
38564
38565         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
38566
38567         Upstream bug 2997.
38568         * lib/misc/error.c: Add space between program name and message if file
38569         name is missing.
38570
38571 2006-08-12  Karl Berry  <karl@gnu.org>
38572
38573         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
38574         remove, these originate in gnulib now.
38575
38576 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38577
38578         * doc/Makefile (standards.info standards.html standards.dvi):
38579         Also depend on make-stds.texi.
38580
38581 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
38582
38583         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
38584         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
38585
38586         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
38587         in wchar_t.  Problem reported by Eric Blake.
38588
38589         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
38590         LEN is smaller than SIZE.  Suggested by Bruno Haible.
38591         Also, help the compiler to keep LEN in a register.
38592
38593 2006-08-11  Eric Blake  <ebb9@byu.net>
38594
38595         * users.txt: Sort.  Add tar.
38596
38597 2006-08-11  Bruno Haible  <bruno@clisp.org>
38598
38599         * users.txt: New file.
38600
38601 2006-08-11  Bruno Haible  <bruno@clisp.org>
38602
38603         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
38604         before <wchar.h>. Needed for OSF/1 and BSD/OS.
38605
38606 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38607
38608         * modules/snprintf (Depends-on): Remove minmax.
38609         (Maintainer): Add self and Bruno.
38610
38611 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38612
38613         * lib/.cppi-disable: Add snprintf.h, socket_.h.
38614         * lib/snprintf.c: Include <errno.h> and <limits.h>.
38615         (EOVERFLOW): Define if the system does not.
38616         Do not include "minmax.h"; it wasn't used.
38617         (snprintf): Don't assume size_t promotes to an unsigned type.
38618         Fix bug when generated string was too long for the buffer: the
38619         buffer's contents are supposed to be the initial prefix of the
38620         output.  Don't assume vasnprintf returns EOVERFLOW if the size
38621         exceeds INT_MAX; do the check ourselves.
38622
38623         Import the following changes from libc:
38624
38625         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
38626
38627         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
38628         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
38629         set wc to the byte which couldn't be converted.
38630         (re_string_reconstruct): Don't clear valid_raw_len before calling
38631         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
38632         tip_context using re_string_context_at.
38633
38634         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
38635
38636         * lib/posix/regex.h: g++ still cannot handled [restrict].
38637
38638         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
38639
38640         * lib/posix/regex.h: Remove special handling for VMS.
38641
38642 2006-08-10  Jim Meyering  <jim@meyering.net>
38643
38644         * modules/same-inode: New module.
38645         * modules/dev-ino: New module.
38646         * modules/cycle-check: Depend on these modules, rather than simply
38647         including their .h files.
38648         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
38649         required via m4/cycle-check.m4.
38650         * modules/same: Depend on new same-inode module, rather than
38651         including same-inode.h.
38652         * modules/chdir-safer: New file.
38653
38654         * modules/chown (Depends-on): Add stat-macros.
38655
38656 2006-08-10  Jim Meyering  <jim@meyering.net>
38657
38658         * m4/cycle-check.m4: New file.
38659         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
38660         * m4/dev-ino.m4, m4/same-inode.m4: New files.
38661
38662 2006-08-10  Eric Blake  <ebb9@byu.net>
38663
38664         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
38665         in from original proposal.
38666
38667 2006-08-10  Eric Blake  <ebb9@byu.net>
38668         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
38669
38670         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
38671         namespace.
38672
38673 2006-08-10  Bruno Haible  <bruno@clisp.org>
38674
38675         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
38676         as well.
38677
38678 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38679
38680         Sync from coreutils.
38681
38682         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
38683
38684         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
38685         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
38686
38687 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38688
38689         * modules/restrict: Remove; no longer needed now that we assume
38690         Autoconf 2.59 or later.
38691         * MODULES.html.sh: Remove 'restrict'.
38692         * modules/argp (Depends-on): Remove 'restrict'.
38693         * modules/base64 (Depends-on): Likewise.
38694         * modules/gc (Depends-on): Likewise.
38695         * modules/getaddrinfo (Depends-on): Likewise.
38696         * modules/glob (Depends-on): Likewise.
38697         * modules/inet_ntop (Depends-on): Likewise.
38698         * modules/inet_pton (Depends-on): Likewise.
38699         * modules/memxor (Depends-on): Likewise.
38700         * modules/regex (Depends-on): Likewise.
38701         * modules/strtok_r (Depends-on): Likewise.
38702         * modules/time_r (Depends-on): Likewise.
38703
38704 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38705
38706         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
38707         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
38708         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38709         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
38710         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
38711         * m4/memxor.m4 (gl_MEMXOR): Likewise.
38712         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
38713         gl_C_RESTRICT replaced by AC_C_RESTRICT.
38714
38715         Merge from coreutils.
38716         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
38717         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
38718         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38719         * m4/time_r.m4 (gl_TIME_R): Likewise.
38720
38721 2006-08-09  Karl Berry  <karl@gnu.org>
38722
38723         * config/srclist.txt: no more gettext-tools, per Bruno.
38724
38725 2006-08-08  Eric Blake  <ebb9@byu.net>
38726
38727         * modules/verror: New module.
38728         * MODULES.html.sh: Document it.
38729
38730 2006-08-08  Eric Blake  <ebb9@byu.net>
38731
38732         * lib/verror.h, lib/verror.c: New files.
38733
38734 2006-08-08  Eric Blake  <ebb9@byu.net>
38735
38736         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
38737         verror_at_line output complies with GNU Coding Standards even when
38738         file is NULL.
38739
38740 2006-08-07  Bruno Haible  <bruno@clisp.org>
38741
38742         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
38743         versions of AIX.
38744         Reported by Ralf Wildenhues.
38745
38746 2006-08-07  Bruno Haible  <bruno@clisp.org>
38747
38748         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
38749         in an AC_DEFUN. Needed so that the autoconf snippets can use
38750         AC_REQUIRE.
38751
38752 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38753
38754         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38755         Initialize pkgdata_DATA.
38756         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
38757         overriding it.
38758
38759 2006-08-06  Eric Blake  <ebb9@byu.net>
38760
38761         * lib/error.h: Fold in some upstream changes from glibc.
38762         * lib/error.c: Likewise.
38763
38764 2006-08-04  Bruno Haible  <bruno@clisp.org>
38765
38766         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38767         Make the mostlyclean-local rule depend on mostlyclean-generic.
38768         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
38769
38770 2006-07-31  Bruno Haible  <bruno@clisp.org>
38771
38772         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
38773         <stdlib.h>, <string.h>.
38774
38775 2006-07-30  Bruno Haible  <bruno@clisp.org>
38776
38777         * modules/readlink (License): Change to LGPL.
38778
38779 2006-07-30  Bruno Haible  <bruno@clisp.org>
38780
38781         * modules/javaversion (Makefile.am): Distribute javaversion.java and
38782         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
38783         set PKGDATADIR to point to it.
38784
38785 2006-07-30  Bruno Haible  <bruno@clisp.org>
38786
38787         * modules/csharpexec (configure.ac): Comment out macro invocation.
38788         * modules/javaexec (configure.ac): Likewise.
38789         * modules/javacomp-script (configure.ac): Likewise.
38790
38791         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
38792
38793 2006-07-30  Bruno Haible  <bruno@clisp.org>
38794
38795         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
38796         linked-list.
38797
38798 2006-07-30  Bruno Haible  <bruno@clisp.org>
38799
38800         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
38801
38802 2006-07-30  Bruno Haible  <bruno@clisp.org>
38803
38804         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38805         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
38806         get removed.
38807
38808 2006-07-29  Bruno Haible  <bruno@clisp.org>
38809
38810         Make it possible for gnulib-tool to work with locally modified or
38811         augmented gnulib repositories.
38812         * gnulib-tool (func_usage): Document --local-dir option.
38813         (local_gnulib_dir): New variable.
38814         Handle --local-dir option.
38815         (func_lookup_file): New function.
38816         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
38817         (func_get_description, func_get_filelist, func_get_description,
38818         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
38819         func_get_automake_snippet, func_get_include_directive,
38820         func_get_license, func_get_maintainer): Use func_lookup_file.
38821         (func_import, func_create_testdir): Use func_lookup_file.
38822
38823 2006-07-29  Bruno Haible  <bruno@clisp.org>
38824
38825         * modules/setenv (Depends-on): Add unistd.
38826
38827 2006-07-29  Bruno Haible  <bruno@clisp.org>
38828
38829         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
38830
38831 2006-07-29  Bruno Haible  <bruno@clisp.org>
38832
38833         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
38834
38835 2006-07-29  Bruno Haible  <bruno@clisp.org>
38836
38837         * gnulib-tool (import, update): If there is no Makefile.am, look at
38838         aclocal.m4, instead of bailing out.
38839
38840 2006-07-29  Bruno Haible  <bruno@clisp.org>
38841
38842         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
38843         Categorize the options by when they are useful.
38844
38845 2006-07-29  Bruno Haible  <bruno@clisp.org>
38846
38847         * gnulib-tool (func_usage): Document option --no-libtool.
38848         Handle option --no-libtool.
38849         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
38850         for changed semantics of $libtool variable.
38851         (func_import): Likewise. If libtool is not used, show this through
38852         an option --no-libtool.
38853         (func_create_testdir): Update.
38854
38855 2006-07-29  Bruno Haible  <bruno@clisp.org>
38856
38857         * gnulib-tool (func_import): Extend error message about missing
38858         --doc-base.
38859
38860 2006-07-29  Bruno Haible  <bruno@clisp.org>
38861
38862         * gnulib-tool (func_import): Don't create the $docbase directory if
38863         there is no file to store there.
38864
38865 2006-07-29  Bruno Haible  <bruno@clisp.org>
38866
38867         * gnulib-tool (autoconf_minversion): If a --dir option is given and
38868         relevant, look for configure.ac there, not in the current directory.
38869         Also use a simple search for AC_PREREQ, not "autoconf --trace".
38870
38871 2006-07-29  Bruno Haible  <bruno@clisp.org>
38872
38873         * gnulib-tool (SORT): New variable.
38874         (func_usage): Undocument --assume-autoconf option.
38875         Remove --assume-autoconf option handling.
38876         (autoconf_minversion): Determine from the contents of configure.ac.
38877         (func_import): Remove autoconf_minversion handling.
38878         Suggested by Eric Blake.
38879
38880 2006-07-29  Bruno Haible  <bruno@clisp.org>
38881
38882         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
38883
38884 2006-07-29  Bruno Haible  <bruno@clisp.org>
38885
38886         * config/srclist.txt (*setenv.[ch]): Remove rules.
38887
38888 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38889
38890         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
38891
38892 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38893
38894         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
38895         arpa/inet.h.
38896
38897 2006-07-28  Simon Josefsson  <jas@extundo.com>
38898
38899         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
38900         * modules/inet_pton (Depends-on): Likewise.
38901
38902 2006-07-28  Simon Josefsson  <jas@extundo.com>
38903
38904         * m4/netinet_in_h.m4: New file.
38905
38906 2006-07-28  Simon Josefsson  <jas@extundo.com>
38907
38908         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
38909         #include's.
38910
38911 2006-07-28  Simon Josefsson  <jas@extundo.com>
38912
38913         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
38914         #include's.
38915
38916 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
38917
38918         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
38919         setgid on directories only if they set these bits.
38920         * lib/modechange.h: Remove obsolete comment about masks.
38921
38922 2006-07-28  Eric Blake  <ebb9@byu.net>
38923
38924         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
38925         macro expansion.
38926
38927 2006-07-28  Bruno Haible  <bruno@clisp.org>
38928
38929         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
38930
38931 2006-07-28  Bruno Haible  <bruno@clisp.org>
38932
38933         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
38934
38935 2006-07-28  Bruno Haible  <bruno@clisp.org>
38936
38937         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
38938         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
38939         Define fallbacks.
38940         Avoids link error on FreeBSD 4.x.
38941         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38942
38943         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
38944         encoding.
38945         * lib/mbswidth.c (iswcntrl): Likewise.
38946
38947 2006-07-27  Bruno Haible  <bruno@clisp.org>
38948
38949         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
38950         test.
38951
38952 2006-07-27  Bruno Haible  <bruno@clisp.org>
38953
38954         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
38955         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
38956         defined.
38957
38958 2006-07-26  Eric Blake  <ebb9@byu.net>
38959
38960         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
38961
38962 2006-07-26  Eric Blake  <ebb9@byu.net>
38963
38964         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
38965         like mingw that lack mkstemp.
38966         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
38967         avoid compilation warning on mingw.
38968
38969 2006-07-26  Bruno Haible  <bruno@clisp.org>
38970
38971         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
38972         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
38973         INT_FAST*_MIN, INTPTR_MIN.
38974
38975 2006-07-25  Bruno Haible  <bruno@clisp.org>
38976
38977         * modules/version-etc (Depends-on): Add stdarg.
38978
38979 2006-07-25  Bruno Haible  <bruno@clisp.org>
38980
38981         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
38982         complex commands.
38983
38984 2006-07-25  Bruno Haible  <bruno@clisp.org>
38985
38986         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
38987         defined in <stdarg.h> or config.h.
38988
38989 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38990
38991         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
38992         (gl_STDIO_SAFER): Remove.
38993
38994 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38995
38996         * MODULES.html.sh (File stream based Input/Output):
38997         Add fopen-safer, tmpfile-safer; remove stdio-safer.
38998         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
38999         * modules/fopen-safer, modules/tmpfile-safer: New files.
39000         * modules/stdio-safer: Remove.
39001
39002 2006-07-24  Bruno Haible  <bruno@clisp.org>
39003
39004         * modules/tmpdir: New file.
39005         * MODULES.html.sh (File system functions): Add it.
39006
39007 2006-07-24  Bruno Haible  <bruno@clisp.org>
39008
39009         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
39010         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
39011
39012 2006-07-24  Bruno Haible  <bruno@clisp.org>
39013
39014         * modules/clean-temp: New file.
39015
39016 2006-07-24  Bruno Haible  <bruno@clisp.org>
39017
39018         * m4/tmpdir.m4: New file, from GNU gettext.
39019
39020 2006-07-24  Bruno Haible  <bruno@clisp.org>
39021
39022         * lib/tmpdir.h: New file, from GNU gettext.
39023         * lib/tmpdir.c: New file, from GNU gettext.
39024
39025 2006-07-24  Bruno Haible  <bruno@clisp.org>
39026
39027         * lib/clean-temp.h: New file, from GNU gettext.
39028         * lib/clean-temp.c: New file, from GNU gettext.
39029
39030 2006-07-23  Eric Blake  <ebb9@byu.net>
39031
39032         * modules/stdio-safer (Files): Add tmpfile-safer.c.
39033         (Depends-on): Add binary-io.
39034
39035 2006-07-23  Eric Blake  <ebb9@byu.net>
39036
39037         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
39038
39039 2006-07-23  Eric Blake  <ebb9@byu.net>
39040
39041         * lib/tmpfile-safer.c: New file.
39042         * lib/stdio-safer.h (fopen_safer): Add prototype.
39043         * lib/stdio--.h (tmpfile): Make safer.
39044
39045 2006-07-23  Bruno Haible  <bruno@clisp.org>
39046
39047         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
39048         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
39049         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
39050         gl_linked_remove_at): Use it.
39051
39052 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39053         and Simon Josefsson <jas@extundo.com>
39054
39055         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
39056
39057         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
39058
39059 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
39060
39061         * modules/close-stream: New file.
39062         * modules/closeout (Description): Make it clear that it exits
39063         with a diagnostic on error.
39064         (Depends-on): Add close-stream.  Remove fpending, stdbool.
39065         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
39066
39067 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
39068
39069         * m4/close-stream.m4: New file.
39070
39071 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
39072
39073         * lib/close-stream.c, lib/close-stream.h: New files.
39074
39075 2006-07-22  Bruno Haible  <bruno@clisp.org>
39076
39077         Merge from GNU gettext 0.15.
39078
39079         2006-05-01  Bruno Haible  <bruno@clisp.org>
39080
39081                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
39082
39083         2006-07-22  Bruno Haible  <bruno@clisp.org>
39084
39085                 * modules/javaversion: New file.
39086                 * MODULES.html.sh (Java): Add javaversion.
39087
39088         2006-03-12  Bruno Haible  <bruno@clisp.org>
39089
39090                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
39091
39092         2005-12-04  Bruno Haible  <bruno@clisp.org>
39093
39094                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
39095                 (untested).
39096
39097         2006-06-21  Bruno Haible  <bruno@clisp.org>
39098
39099                 Avoid warnings from recent versions of mcs.
39100                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
39101                 -o, -L, -r any more. Use options documented since mcs-1.0
39102                 instead. Similarly for -g.
39103
39104         2005-12-04  Bruno Haible  <bruno@clisp.org>
39105
39106                 * build-aux/csharpcomp.sh.in: Suffix for resources is
39107                 .resources, not .resource.
39108
39109         2005-07-09  Bruno Haible  <bruno@clisp.org>
39110
39111                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
39112                 add a .dll suffix.
39113                 Reported by Mark Junker <mjscod@gmx.de>.
39114
39115         2006-07-22  Bruno Haible  <bruno@clisp.org>
39116
39117                 * modules/gettext: Upgrade to gettext-0.15.
39118                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
39119                 m4/visibility.m4.
39120                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
39121
39122 2006-07-22  Bruno Haible  <bruno@clisp.org>
39123
39124         Merge from GNU gettext 0.15.
39125
39126         2006-03-25  Bruno Haible  <bruno@clisp.org>
39127
39128                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
39129
39130         2006-07-21  Bruno Haible  <bruno@clisp.org>
39131
39132                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
39133                 "1.1".
39134
39135         2006-05-09  Bruno Haible  <bruno@clisp.org>
39136
39137                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
39138                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
39139                 for the conftestver execution.
39140
39141         2006-05-01  Bruno Haible  <bruno@clisp.org>
39142
39143                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
39144                 optional target-version argument. Verify that the compiler
39145                 groks source of the specified source-version, or add -source
39146                 option as necessary. Verify that the compiler produces
39147                 bytecode in the specified target-version, or add -target and
39148                 -source options as necessary. Make the result of the test
39149                 available as variable CONF_JAVAC. Also log error output in
39150                 config.log.
39151
39152         2006-03-11  Bruno Haible  <bruno@clisp.org>
39153
39154                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
39155
39156         2006-05-09  Bruno Haible  <bruno@clisp.org>
39157
39158                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
39159                 CLASSPATH_SEPARATOR to a semicolon.
39160
39161         2006-03-12  Bruno Haible  <bruno@clisp.org>
39162
39163                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
39164                 available as variable CONF_JAVA, for subsequent autoconf
39165                 tests. Also log error output in config.log.
39166
39167         2006-07-19  Bruno Haible  <bruno@clisp.org>
39168
39169                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
39170                 that getline works on glibc2 systems. Needed to avoid trouble
39171                 in relocatable.c.
39172                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
39173
39174         2005-12-04  Bruno Haible  <bruno@clisp.org>
39175
39176                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
39177                 launcher (untested).
39178
39179         2005-12-04  Bruno Haible  <bruno@clisp.org>
39180
39181                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
39182
39183         2006-07-22  Bruno Haible  <bruno@clisp.org>
39184
39185                 * gettext.m4: Update from GNU gettext-0.15.
39186                 * nls.m4: Likewise.
39187                 * po.m4: Likewise.
39188                 * inttypes-pri.m4: Likewise.
39189                 * inttypes-h.m4: Renamed from inttypes.m4.
39190                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
39191
39192 2006-07-22  Bruno Haible  <bruno@clisp.org>
39193
39194         Merge from GNU gettext 0.15.
39195
39196         2005-07-05  Bruno Haible  <bruno@clisp.org>
39197
39198                 * printf-args.c (printf_fetchargs): Work around broken
39199                 definition of wint_t on mingw.
39200
39201         2005-02-12  Bruno Haible  <bruno@clisp.org>
39202
39203                 * xallocsa.h: Add extern "C" for C++.
39204
39205         2006-05-17  Bruno Haible  <bruno@clisp.org>
39206
39207                 Cygwin portability.
39208                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
39209
39210         2006-04-30  Bruno Haible  <bruno@clisp.org>
39211
39212                 * progreloc.c: Include <mach-o/dyld.h> if available.
39213                 (find_executable): Use _NSGetExecutablePath when possible.
39214
39215         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
39216
39217                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
39218                 function.
39219
39220         2005-12-29  Bruno Haible  <bruno@clisp.org>
39221
39222                 * progreloc.c (set_program_name_and_installdir): Fix
39223                 compilation error.
39224
39225         2005-12-04  Bruno Haible  <bruno@clisp.org>
39226
39227                 Cygwin portability.
39228                 * progreloc.c: Include <windows.h> also on Cygwin.
39229                 (find_executable): Add support for Cygwin.
39230                 (set_program_name_and_installdir): Handle also platforms with
39231                 nonempty EXEEXT.
39232
39233         2006-07-11  Bruno Haible  <bruno@clisp.org>
39234
39235                 * javacomp.c: Fix a comment.
39236                 Reported by Jim Meyering.
39237
39238         2006-04-30  Bruno Haible  <bruno@clisp.org>
39239
39240                 * javacomp.h (compile_java_class): Add source_version,
39241                 target_version arguments.
39242                 * javacomp.c: Rewritten to choose only a compiler that
39243                 respects the specified source_version and target_version.
39244
39245         2006-06-27  Bruno Haible  <bruno@clisp.org>
39246
39247                 Assume correct S_ISDIR macro.
39248                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
39249
39250         2006-07-22  Bruno Haible  <bruno@clisp.org>
39251
39252                 * javaversion.h: New file, from GNU gettext.
39253                 * javaversion.c: New file, from GNU gettext.
39254                 * javaversion.java: New file, from GNU gettext.
39255                 * javaversion.class: New file, from GNU gettext.
39256
39257         2006-05-17  Bruno Haible  <bruno@clisp.org>
39258
39259                 Cygwin portability.
39260                 * javaexec.c (execute_java_class): Test for jview program
39261                 also on Cygwin.
39262
39263         2006-04-09  Bruno Haible  <bruno@clisp.org>
39264
39265                 * fatal-signal.c: Don't include string.h.
39266                 (at_fatal_signal): Use a copying loop instead of memcpy.
39267
39268         2005-12-04  Bruno Haible  <bruno@clisp.org>
39269
39270                 * csharpexec.c: Add support for 'clix' launcher (untested).
39271                 (execute_csharp_using_sscli): New function.
39272                 (execute_csharp_program): Call it.
39273
39274         2006-06-21  Bruno Haible  <bruno@clisp.org>
39275
39276                 Avoid warnings from recent versions of mcs.
39277                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
39278                 -o, -L, -r any more. Use options documented since mcs-1.0
39279                 instead. Similarly for -g.
39280
39281         2005-07-09  Bruno Haible  <bruno@clisp.org>
39282
39283                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
39284                 add a .dll suffix.
39285                 Reported by Mark Junker <mjscod@gmx.de>.
39286
39287         2006-06-17  Bruno Haible  <bruno@clisp.org>
39288
39289                 * config.charset: Update for NetBSD 3.0.
39290
39291         2006-05-17  Bruno Haible  <bruno@clisp.org>
39292
39293                 Cygwin portability.
39294                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
39295
39296         2006-05-16  Bruno Haible  <bruno@clisp.org>
39297
39298                 * localcharset.c [CYGWIN]: Include <windows.h>.
39299                 (get_charset_aliases): For Cygwin, return the same CPxxx
39300                 aliases list as under WIN32.
39301                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
39302                 the environment variables. Fall back to GetACP().
39303
39304         2006-04-05  Bruno Haible  <bruno@clisp.org>
39305
39306                 * config.charset: Update Juan Manuel Guerrero's address.
39307
39308         2005-02-12  Bruno Haible  <bruno@clisp.org>
39309
39310                 * allocsa.h: Add extern "C" for C++.
39311
39312         2005-02-10  Bruno Haible  <bruno@clisp.org>
39313
39314                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
39315                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
39316
39317         2006-07-22  Bruno Haible  <bruno@clisp.org>
39318
39319                 * gettext.h: Update to GNU gettext-0.15.
39320
39321 2006-07-22  Bruno Haible  <bruno@clisp.org>
39322
39323         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
39324         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
39325         lib-prefix.m4, longdouble.m4, ssize_t.m4.
39326
39327 2006-07-21  Eric Blake  <ebb9@byu.net>
39328
39329         * modules/stdlib-safer: New file.
39330         * MODULES.html.sh (File stream based Input/Output): Add
39331         stdlib-safer.
39332
39333 2006-07-21  Eric Blake  <ebb9@byu.net>
39334
39335         * lib/stdlib-safer.h: New file from coreutils, required by
39336         stdlib--.h.
39337
39338 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
39339
39340         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
39341
39342 2006-07-20  Bruno Haible  <bruno@clisp.org>
39343
39344         * gnulib-tool: Recognize new option --assume-autoconf.
39345         (autoconf_minversion): New variable.
39346         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
39347
39348 2006-07-20  Bruno Haible  <bruno@clisp.org>
39349
39350         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
39351
39352 2006-07-19  Derek R. Price  <derek@ximbiot.com>
39353
39354         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
39355         Reindent and repaginate.
39356
39357 2006-07-19  Derek Price  <derek@ximbiot.com>
39358
39359         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
39360         Correct grammar.
39361
39362 2006-07-17  Bruno Haible  <bruno@clisp.org>
39363
39364         * modules/list: New file.
39365         * modules/array-list: New file.
39366         * modules/carray-list, modules/carray-list-tests: New files.
39367         * modules/linked-list, modules/linked-list-tests: New files.
39368         * modules/avltree-list, modules/avltree-list-tests: New files.
39369         * modules/rbtree-list, modules/rbtree-list-tests: New files.
39370         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
39371         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
39372         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
39373         * modules/oset: New file.
39374         * modules/array-oset: New file.
39375         * modules/avltree-oset, modules/avltree-oset-tests: New files.
39376         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
39377         * tests/test-carray_list.c: New file.
39378         * tests/test-linked_list.c: New file.
39379         * tests/test-avltree_list.c: New file.
39380         * tests/test-rbtree_list.c: New file.
39381         * tests/test-linkedhash_list.c: New file.
39382         * tests/test-avltreehash_list.c: New file.
39383         * tests/test-rbtreehash_list.c: New file.
39384         * tests/test-avltree_oset.c: New file.
39385         * tests/test-rbtree_oset.c: New file.
39386         * MODULES.html.sh (Container data structures): New section.
39387
39388 2006-07-17  Bruno Haible  <bruno@clisp.org>
39389
39390         * m4/gl_list.m4: New file.
39391
39392 2006-07-17  Bruno Haible  <bruno@clisp.org>
39393
39394         * lib/gl_list.h: New file.
39395         * lib/gl_list.c: New file.
39396         * lib/gl_array_list.h: New file.
39397         * lib/gl_array_list.c: New file.
39398         * lib/gl_carray_list.h: New file.
39399         * lib/gl_carray_list.c: New file.
39400         * lib/gl_linked_list.h: New file.
39401         * lib/gl_linked_list.c: New file.
39402         * lib/gl_anylinked_list1.h: New file.
39403         * lib/gl_anylinked_list2.h: New file.
39404         * lib/gl_avltree_list.h: New file.
39405         * lib/gl_avltree_list.c: New file.
39406         * lib/gl_anyavltree_list1.h: New file.
39407         * lib/gl_anyavltree_list2.h: New file.
39408         * lib/gl_rbtree_list.h: New file.
39409         * lib/gl_rbtree_list.c: New file.
39410         * lib/gl_anyrbtree_list1.h: New file.
39411         * lib/gl_anyrbtree_list2.h: New file.
39412         * lib/gl_anytree_list1.h: New file.
39413         * lib/gl_anytree_list2.h: New file.
39414         * lib/gl_linkedhash_list.h: New file.
39415         * lib/gl_linkedhash_list.c: New file.
39416         * lib/gl_anyhash_list1.h: New file.
39417         * lib/gl_anyhash_list2.h: New file.
39418         * lib/gl_avltreehash_list.h: New file.
39419         * lib/gl_avltreehash_list.c: New file.
39420         * lib/gl_rbtreehash_list.h: New file.
39421         * lib/gl_rbtreehash_list.c: New file.
39422         * lib/gl_anytreehash_list1.h: New file.
39423         * lib/gl_anytreehash_list2.h: New file.
39424
39425         * lib/gl_oset.h: New file.
39426         * lib/gl_oset.c: New file.
39427         * lib/gl_array_oset.h: New file.
39428         * lib/gl_array_oset.c: New file.
39429         * lib/gl_avltree_oset.h: New file.
39430         * lib/gl_avltree_oset.c: New file.
39431         * lib/gl_rbtree_oset.h: New file.
39432         * lib/gl_rbtree_oset.c: New file.
39433         * lib/gl_anytree_oset.h: New file.
39434
39435 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39436
39437         * m4/mkancesdirs.m4: New file.
39438         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
39439         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
39440         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
39441         it.
39442
39443 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39444
39445         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
39446         * lib/mkancesdirs.h: New files.
39447         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
39448         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
39449         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
39450         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
39451         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
39452         callers changed.  Revamp internals significantly, by not
39453         attempting to create directories that are temporarily more
39454         permissive than the final results.  Do not attempt to use
39455         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
39456         This removes some race conditions, fixes some bugs, and simplifies
39457         things.  Use new dirchownmod function to do owner and mode changes.
39458         * lib/mkdir-p.h: Likewise.
39459         * lib/modechange.c (octal_to_mode): New function.
39460         (struct mode_change): New member mentioned.
39461         (make_node_op_equals): New arg mentioned.  All callers changed.
39462         (mode_compile): Keep track of which mode bits the user has explicitly
39463         mentioned.
39464         (mode_adjust): New arg DIR, so that we implement the X op correctly.
39465         New arg PMODE_BITS, to keep track of which mode bits the user
39466         mentioned; it treats S_ISUID and S_ISGID speciall.
39467         All callers changed.
39468         * lib/modechange.h: Likewise.
39469
39470 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39471
39472         * MODULES.html.sh: Add mkancestors.
39473         * modules/mkancesdirs: New module.
39474         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
39475         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
39476         The chdir-safer and afs files are now orphans; I'll remove them
39477         unless someone speaks up.
39478         Add lib/dirchownmod.c, lib/dirchownmod.h.
39479         (Depends-on): Remove alloca, chown, save-cwd, dirname.
39480         Add lchown, mkancesdirs.
39481         (Maintainer): Add self.
39482
39483 2006-07-15  Karl Berry  <karl@gnu.org>
39484
39485         * gnulib-tool: help message wording/arrangement.
39486
39487 2006-07-14  Simon Josefsson  <jas@extundo.com>
39488
39489         * doc/gnulib.texi (Libtool and Windows): New section.
39490
39491 2006-07-12  Simon Josefsson  <jas@extundo.com>
39492
39493         * modules/gendocs (License): Fix license, approved by Karl.
39494
39495 2006-07-12  Eric Blake  <ebb9@byu.net>
39496
39497         * MODULES.html.sh: Add gendocs.
39498
39499 2006-07-11  Eric Blake  <ebb9@byu.net>
39500
39501         * modules/fdl: New module, to install doc/fdl.texi.
39502         * MODULES.html.sh: Add new section for documentation modules.
39503         * gnulib-tool: Avoid space-tab.
39504         (--doc-base): New option, to manage files from doc.
39505
39506 2006-07-11  Eric Blake  <ebb9@byu.net>
39507
39508         * m4/absolute-header.m4: Fix comments to match recent change.
39509
39510 2006-07-11  Eric Blake  <ebb9@byu.net>
39511
39512         * gnulib-tool: List --doc-base before --tests-base.
39513
39514 2006-07-11  Derek R. Price  <derek@ximbiot.com>
39515
39516         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
39517
39518 2006-07-11  Bruno Haible  <bruno@clisp.org>
39519
39520         * README: Mention where to put documentation.
39521
39522 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39523
39524         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
39525
39526 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39527
39528         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
39529         to stdint.m4.
39530
39531 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39532
39533         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
39534         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
39535         "no/such/file/stdint.h" when there is no such file, so that
39536         the resulting C code can be parsed by dodgy compilers.
39537         Problems reported by Bob Proulx.
39538
39539 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39540
39541         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
39542         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39543         macros into the GNU _D_EXACT_NAMLEN.
39544         * lib/savedir.c:  Likewise.
39545         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
39546
39547 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39548         and Paul Eggert  <eggert@cs.ucla.edu>
39549
39550         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
39551         * m4/savedir.m4:
39552         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39553         macros into the GNU _D_EXACT_NAMLEN.
39554
39555 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39556
39557         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
39558         around the absolute name, to work around a problem with the HP-UX
39559         11.23 native C compiler, reported by Bob Proulx.
39560
39561 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39562
39563         * doc/maintain.texi, make-stds.texi: Sync from
39564         <http://savannah.gnu.org/projects/gnustandards>.
39565
39566 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39567
39568         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
39569
39570 2006-07-09  Jim Meyering  <jim@meyering.net>
39571
39572         * m4/glob.m4: Remove a doubled word in a comment.
39573
39574 2006-07-09  Jim Meyering  <jim@meyering.net>
39575
39576         * lib/argp-pv.c: Remove a doubled word in a comment.
39577         * lib/check-version.c (check_version): Likewise.
39578         * lib/javacomp.c (compile_java_class): Likewise.
39579
39580 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39581
39582         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
39583         for the benefit of people using Autoconf 2.60.  If you want to
39584         support older Autoconf versions you can copy m4/onceonly_2_57.m4
39585         (or m4/onceonly.m4, if pre-2.57) manually.
39586
39587 2006-07-08  Jim Meyering  <jim@meyering.net>
39588
39589         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
39590         comment.
39591         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
39592         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
39593         comment.
39594
39595 2006-07-08  Jim Meyering  <jim@meyering.net>
39596
39597         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
39598
39599 2006-07-07  Simon Josefsson  <jas@extundo.com>
39600
39601         * tests/test-crc.c: Change expected crc value, the test vector
39602         were probably computed using the old broken crc.c?
39603
39604 2006-07-06  Simon Josefsson  <jas@extundo.com>
39605
39606         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
39607         now the canonical place for the M4 file).
39608
39609         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
39610         from the sys_socket dependency now.
39611
39612         * modules/inet_pton (Files): Ditto.
39613
39614         * modules/inet_ntop (Files): Ditto.
39615
39616 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39617
39618         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
39619         not gl_PREREQ_GETUSERSHELL.
39620
39621 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39622
39623         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
39624         with only one argument, for Autoconf 2.60.
39625         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
39626         expand to nothing, so add a shell command to avoid syntax error.
39627         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39628
39629 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39630
39631         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
39632
39633 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39634
39635         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
39636         no longer needed.  Check for isblank decl.
39637         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
39638         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
39639         of existence.
39640
39641 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39642
39643         * lib/getloadavg.c: Use __VMS, not VMS.
39644         * lib/getopt.c: Likewise.
39645         * lib/getpagesize.h: Likewise.
39646         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
39647         and probably does not work.
39648
39649 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39650
39651         * lib/.cppi-disable: Add wcwidth.
39652         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
39653         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
39654         (ISGRAPH): Remove.  All uses changed to isgraph.
39655         (FOLD) [!defined _LIBC]: Remove special case.
39656         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
39657         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
39658         HAVE_ISBLANK.
39659         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
39660         case.
39661
39662 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39663
39664         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
39665         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
39666         brackets.  Other minor changes to suppress some compiler
39667         warnings.
39668
39669 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39670         and Paul Eggert  <eggert@cs.ucla.edu>
39671
39672         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
39673         of invoking obsolescent AC_HEADER_DIRENT macro.
39674         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
39675         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
39676         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
39677         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
39678         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
39679         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
39680         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
39681         * m4/readdir.m4: Remove; no longer needed.
39682
39683 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39684         and Paul Eggert  <eggert@cs.ucla.edu>
39685
39686         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
39687         Don't worry about this obsolete case any more.
39688         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
39689         directories.
39690         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
39691         worry about this obsolete case any more.
39692         * lib/fts.c: Likewise.
39693         * lib/getcwd.c: Likewise.
39694         * lib/glob.h: Likewise.
39695         * lib/savedir.c: Likewise.
39696
39697 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39698
39699         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
39700         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
39701         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
39702         needed.
39703         All uses removed.
39704         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39705         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39706         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
39707         needed.
39708         * m4/getdate.m4 (gl_GETDATE): Likewise.
39709         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39710         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39711         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39712         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39713         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39714         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39715         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
39716         needed.
39717
39718 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39719
39720         * lib/memcasecmp.c: Include <limits.h>.
39721         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
39722         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
39723         Don't assume isdigit succeeds only on '0' through '9'.
39724
39725 2006-07-05  Eric Blake  <ebb9@byu.net>
39726
39727         * modules/getaddrinfo (Depends-on): Add snprintf.
39728
39729 2006-07-05  Eric Blake  <ebb9@byu.net>
39730
39731         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
39732         to avoid 'header present but could not be compiled' on cygwin.
39733
39734 2006-07-05  Eric Blake  <ebb9@byu.net>
39735
39736         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
39737         missing from netdb.h.
39738         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
39739
39740 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39741
39742         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
39743         no longer needed.
39744         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
39745         * m4/getdate.m4 (gl_GETDATE): Likewise.
39746         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39747         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39748         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39749         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39750         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39751
39752 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39753
39754         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
39755         All uses of is_space replaced by isspace.
39756         * lib/exit.h: Don't talk about STDC_HEADERS.
39757         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
39758         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
39759         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
39760         replaced by isprint etc.
39761         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
39762         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39763         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
39764         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
39765         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
39766         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39767
39768 2006-07-05  Bruno Haible  <bruno@clisp.org>
39769
39770         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
39771         the function exists, before testing against AIX.
39772         Reported by Martin Lambers <marlam@marlam.de>.
39773
39774 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39775
39776         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
39777         From Mark D. Baushke.
39778
39779 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39780
39781         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
39782         to the absolute name, not just one, to bypass Sun C 5.8's
39783         "warning: #include of /usr/include/... may be non-portable".
39784
39785 2006-07-04  Eric Blake  <ebb9@byu.net>
39786
39787         * modules/dirname-tests: New test module.
39788         * tests/test-dirname.c: New file, replacing dirname.c
39789         TEST_DIRNAME section that was recently deleted.
39790
39791 2006-07-04  Bruno Haible  <bruno@clisp.org>
39792
39793         Assume ANSI C header files and <ctype.h> functions.
39794         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
39795         (mbsnwidth): Use isprint, iscntrl instead.
39796
39797 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39798
39799         Merge from coreutils.
39800         * MODULES.html.sh: Add xstrtold.
39801         * modules/xstrtold: New file.
39802         * modules/cycle-check (Files): Add lib/same-inode.h.
39803         * modules/dirname (Files): Add m4/double-slash-root.m4.
39804         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
39805         * modules/mkdir-p (Files): Add lib/same-inode.h.
39806         * modules/same (Files): Add lib/same-inode.h.
39807
39808 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39809
39810         * m4/absolute-header.m4: Renamed from full-header-path.m4.
39811         This is to keep the terminology clean; POSIX talks about
39812         "absolute pathnames", not "full pathnames", but the GNU
39813         Coding Standards say to use "path" for something else;
39814         so use "absolute" to keep both sides happy.
39815         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
39816         Set gl_absolute_header, not gl_full_header_path.
39817         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
39818         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
39819         All uses changed.
39820
39821         Merge from coreutils.
39822
39823         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39824
39825         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
39826         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
39827         want to require the building of c-strtod.o.
39828         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
39829         needs -lm directly.
39830         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
39831
39832         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39833
39834         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
39835         --as-needed option if available.  Problem reported by Albert Chin in
39836         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
39837         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
39838         cc merely issues a bunch of annoying warnings for --as-needed
39839         (this problem was reported by Bob Proulx).  Also, try linking with
39840         -lm to detect a bug in binutils 2.16 (this problem was reported
39841         by Ralf Wildenhues).
39842
39843         2006-06-18  Jim Meyering  <jim@meyering.net>
39844
39845         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
39846         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
39847         macro.
39848         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
39849         also check for glibc-2.4's abort-inducing bug.
39850
39851         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
39852         Low-probability clean-up should be to use rmdir to get rid of
39853         the just-created directory, not unlink.
39854
39855         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
39856         configure fail, and request a bug report to inform us about it.
39857         Add a comment that, barring reports to the contrary, in 2007 we'll
39858         assume ftruncate is universally available.
39859
39860         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39861
39862         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
39863
39864         2006-03-12  Jim Meyering  <jim@meyering.net>
39865
39866         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
39867         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
39868         * m4/same.m4 (gl_SAME): Likewise.
39869         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
39870
39871         2006-03-11  Eric Blake  <ebb9@byu.net>
39872
39873         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
39874         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
39875         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
39876         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
39877
39878 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39879
39880         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
39881         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
39882         reported by Mark D. Baushke, one in
39883         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
39884
39885         Merge from coreutils.
39886
39887         * lib/.cppi-disable: Add stdint_.h.
39888         * lib/.cvsignore: Add stdint.h.
39889
39890         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39891
39892         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
39893         both double and long double versions.
39894         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
39895         * lib/xstrtold.c: New file.
39896         * lib/xstrtod.h (xstrtold): New decl.
39897
39898         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39899
39900         * lib/filemode.c (setst): Remove.
39901         (strmode): Rewrite to avoid setst.  This makes the code shorter,
39902         (arguably) clearer, and the generated code is a bit smaller on my
39903         Debian GNU/Linux stable x86 host.
39904
39905         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39906
39907         * lib/filemode.c: Include "filemode.h" first, to test the interface.
39908         Assume that filemode.h includes sys/types.h and sys/stat.h.
39909         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
39910         (ftypelet): Reorder to put common cases first, for efficiency.
39911         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
39912         to do 'M'.
39913         (strmode): Renamed from mode_string, and now stores 12 bytes instead
39914         of 10, for compatibility with FreeBSD.  All callers changed.
39915         (filemodestring): Now stores 12 bytes instead of 10, and sets file
39916         types that can't be deduced solely from st_mode.  First arg is now a
39917         const pointer.
39918         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
39919         (strmode): Renamed from mode_string.
39920         (filemodestring): New decl.
39921         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
39922         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
39923         needed.
39924         (S_ISPORT, S_ISWHT): New macros, if not already defined.
39925
39926         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
39927
39928         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
39929         fsusage.h now does that.  Include fsusage.h first, to test interface.
39930         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
39931         at most one method (the old code could have generated decls that
39932         didn't conform to C89, not that this was ever exercised).
39933         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
39934
39935         2006-03-19  Jim Meyering  <jim@meyering.net>
39936
39937         Work even in a chroot where d_ino values for entries in "/"
39938         don't match the stat.st_ino values for the same names.
39939         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
39940         number, iterate through all entries again, using lstat instead.
39941         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
39942         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
39943
39944         * lib/getcwd.c (__getcwd): Clarify a comment.
39945         Use memcpy in place of a call to strcpy.
39946
39947         2006-03-12  Jim Meyering  <jim@meyering.net>
39948
39949         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
39950         matches that of the current directory (which we're about to chdir ".."
39951         out of), then save the dev-ino of the parent, instead.
39952
39953         * lib/same-inode.h (SAME_INODE): New file/macro.
39954         * lib/chdir-safer.c (SAME_INODE): Remove definition.
39955         Include "same-inode.h", instead.
39956         * lib/same.c: Likewise.
39957         * lib/cycle-check.h: Include "same-inode.h".
39958         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
39959         * lib/cycle-check.c (SAME_INODE): Remove definition.
39960         * lib/root-dev-ino.h: Include "same-inode.h".
39961
39962         2006-03-11  Eric Blake  <ebb9@byu.net>
39963
39964         * lib/same.c (same_name): s/base_name/last_component/
39965         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
39966         * lib/filenamecat.c (file_name_concat): Likewise.
39967
39968         2006-03-11  Eric Blake  <ebb9@byu.net>,
39969                     Paul Eggert  <eggert@cs.ucla.edu>
39970
39971         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
39972         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
39973         drive prefix.
39974         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
39975         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
39976         (last_component): New method.
39977         * lib/dirname.c (dir_len): Determine when drive letters need a
39978         subsequent slash.  Preserve // when it is special.
39979         (dir_name): Don't append dot when drive letter is absolute.
39980         [TEST_DIRNAME]: Move into a full-blown gnulib test.
39981         * lib/basename.c (base_name): New semantics - malloc the result.
39982         Preserve // when it is special.  Preserve relative files that look
39983         like drive letters.
39984         (base_len): Preserve // when it is special.
39985         (last_component): New method, similar to old base_name semantics.
39986         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
39987         base_name.  Strip redundant slashes from ///.
39988
39989 2006-07-03  Jim Meyering  <jim@meyering.net>
39990
39991         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
39992         macro is used before the first cycle_check call.
39993
39994 2006-07-03  Eric Blake  <ebb9@byu.net>
39995
39996         * modules/dirname (Depends-on): Add xstrndup.
39997
39998 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39999
40000         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
40001         test cases, so that config.log is a bit easier to follow.
40002
40003 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
40004
40005         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
40006         both are 64 bits, since this seems to be the tradition, and this
40007         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
40008         we ever run into a host that prefers long long to long in this
40009         case, we'll need another configure-time test.  Problem reported by
40010         Jim Meyering.
40011
40012 2006-07-02  Eric Blake  <ebb9@byu.net>
40013
40014         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
40015
40016 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
40017
40018         * modules/inttypes (Depends-on): No longer depends on stdint.
40019         * modules/stdint (Description): Say more about assumptions.
40020         Say that the fast types might differ.  Say macros are used.
40021         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
40022         (Makefile.am): Revise list of substituted symbols to match
40023         new stdint.m4.
40024         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
40025         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
40026         * tests/test-stdint.c (verify_same_types)
40027         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
40028         the code conforms to C99/C89.
40029         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
40030         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
40031
40032 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
40033
40034         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
40035         but fix a bug, by requiring at least 64 bits.
40036         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
40037         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
40038         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
40039         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
40040
40041         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
40042         changes.  Make 2.59 a prerequisite.  Check and substitute for
40043         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
40044         inttypes.h.  Do not use special include files; just use the
40045         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
40046         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
40047         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
40048         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
40049         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
40050         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
40051         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
40052         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
40053         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
40054         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
40055         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
40056         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
40057         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
40058         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
40059         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
40060         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
40061         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
40062         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
40063         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
40064         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
40065         WINT_MAX.  Check for C99 conformance more strictly, by detecting
40066         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
40067         not check for things that C99 does not require, e.g., int8_t.  If
40068         a test isn't needed unless <stdint.h> isn't working, and is
40069         unlikely to be needed for any other reason, then don't do it
40070         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
40071         size_t, since we assume C89 freestanding at least.  Do not check
40072         for sig_atomic_t, wchar_t, or wint_t, since the code now does
40073         the right thing even if the types are not defined.  Instead use:
40074         (gl_STDINT_TYPE_PROPERTIES): New macro.
40075         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
40076         testing whether <sys/types.h> clashes, as Autoconf does this for
40077         us now.  All uses removed.
40078         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
40079         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
40080         (gl_CHECK_TYPE_SAME):
40081         Remove; no longer needed.
40082         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
40083         exists, since we'll return 0 anyway in that case.
40084         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
40085
40086 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
40087
40088         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
40089         possible collision with system files.
40090         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
40091         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
40092         WCHAR_MIN and WCHAR_MAX in this case.
40093         (<stddef.h>): Do not include; no longer needed.
40094         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
40095         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
40096         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
40097         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
40098         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
40099         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
40100         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
40101         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
40102         !defined(__c99))]: Include in this case too, since it's harmless
40103         now.
40104         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
40105         dangerous to do so.
40106         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
40107         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
40108         (_STDINT_MIN, _STDINT_MAX): New macros.
40109         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
40110         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
40111         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
40112         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
40113         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
40114         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
40115         macros, not typedefs; this simplifies things quite a bit.
40116         Use long int for all types narrower than int64_t.
40117         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
40118         Define in terms of long long int or int64_t or long int,
40119         not int64_t or int32_t.  This saves some compile-time testing.
40120         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
40121         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
40122         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
40123         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
40124         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
40125         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
40126         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
40127         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
40128         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
40129         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
40130         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
40131         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
40132         undef any previous version and define our own version, for
40133         simplicity and consistency with the new macros for types.
40134         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
40135         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
40136         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
40137         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
40138         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
40139         @WINT_T_SUFFIX@ to keep things simple here.
40140         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
40141         Simplify by assuming typical 8/16/32/64 host, since we're
40142         already doing that elsewhere anyway.
40143         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
40144         and assume long long int is 64 bits if available.  This
40145         speeds up 'configure'.
40146
40147 2006-07-01  Eric Blake  <ebb9@byu.net>
40148
40149         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
40150         Reported by Andreas Buening.
40151
40152 2006-07-01  Eric Blake  <ebb9@byu.net>
40153
40154         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
40155
40156 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
40157
40158         * lib/getaddrinfo.c: fixed typo
40159
40160 2006-06-29  Jim Meyering  <jim@meyering.net>
40161
40162         * modules/strftime (Maintainer): Add my name, since with the
40163         FPRINTFTIME changes strftime.c has forked from glibc.
40164
40165 2006-06-29  Eric Blake  <ebb9@byu.net>
40166
40167         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
40168
40169 2006-06-29  Eric Blake  <ebb9@byu.net>
40170
40171         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
40172
40173 2006-06-29  Eric Blake  <ebb9@byu.net>
40174
40175         * lib/stat_.h: New file.
40176
40177 2006-06-29  Eric Blake  <ebb9@byu.net>
40178
40179         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
40180         unused static function.
40181
40182 2006-06-29  Eric Blake  <ebb9@byu.net>
40183
40184         * doc/functions.texi (Function Portability): Document missing lstat
40185         on mingw.
40186
40187 2006-06-29  Eric Blake  <ebb9@byu.net>
40188
40189         * MODULES.html.sh: Add sys_stat.
40190         * modules/sys_stat: New module.
40191         * modules/mkstemp (Depends-on): Add sys_stat.
40192
40193 2006-06-29  Derek R. Price  <derek@ximbiot.com>
40194
40195         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
40196
40197 2006-06-29  Derek R. Price  <derek@ximbiot.com>
40198
40199         * m4/c-bs-a.m4: Removed.
40200
40201 2006-06-29  Derek R. Price  <derek@ximbiot.com>
40202
40203         * lib/strftime.c: Assume strftime() exists.
40204
40205 2006-06-29  Derek Price  <derek@ximbiot.com>
40206
40207         * modules/c-bs-a: Removed - \a is C89.
40208         * MODULES.html.sh: Remove c-bs-a.
40209
40210 2006-06-29  Bruno Haible  <bruno@clisp.org>
40211
40212         * modules/wcwidth (License): Change to LGPL.
40213
40214 2006-06-28  Simon Josefsson  <jas@extundo.com>
40215
40216         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
40217         on _WIN32.
40218
40219         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
40220         getnameinfo.
40221
40222 2006-06-28  Simon Josefsson  <jas@extundo.com>
40223
40224         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
40225
40226 2006-06-28  Simon Josefsson  <jas@extundo.com>
40227
40228         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
40229         functions there.  It will succeed on Windows XP, but on Windows
40230         2000 and (presumably) earlier, it will fail, and use the internal
40231         re-implementation.
40232         (use_win32_p): New function.
40233         (getaddrinfo): Use strtoul on servname, to support numeric ports.
40234         Support AI_NUMERICSERV to disable getservbyname.
40235         (getnameinfo): New function, only supports
40236         NI_NUMERICHOST|NI_NUMERICSERV for now.
40237
40238         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
40239         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
40240         getnameinfo.
40241
40242 2006-06-28  Eric Blake  <ebb9@byu.net>
40243
40244         * modules/wcwidth: New file.
40245         * modules/mbchar (Depends-on): Add wcwidth.
40246         * modules/mbswidth (Depends-on): Add wcwidth.
40247         * MODULES.html.sh: Add wcwidth.
40248
40249 2006-06-28  Eric Blake  <ebb9@byu.net>
40250
40251         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
40252         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
40253
40254 2006-06-28  Eric Blake  <ebb9@byu.net>
40255
40256         * lib/xvasprintf.h: Fix comments.
40257
40258 2006-06-28  Eric Blake  <ebb9@byu.net>
40259
40260         * lib/mbchar.h (wcwidth): Include wcwidth.h.
40261         * lib/mbswidth.c (wcwidth): Move from here...
40262         * lib/wcwidth.h: ...to this new file.
40263
40264 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40265
40266         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
40267
40268         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
40269         it's obsolete.
40270         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
40271
40272 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40273
40274         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
40275         Autoconf 2.60 says this stuff was obsolete.
40276
40277 2006-06-28  Bruno Haible  <bruno@clisp.org>
40278
40279         * modules/wcwidth (Files): Add m4/wchar_t.m4.
40280
40281 2006-06-28  Bruno Haible  <bruno@clisp.org>
40282
40283         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
40284         gt_TYPE_WCHAR_T.
40285
40286 2006-06-28  Bruno Haible  <bruno@clisp.org>
40287
40288         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
40289         declaration for wcwidth.
40290         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
40291
40292 2006-06-28  Bruno Haible  <bruno@clisp.org>
40293
40294         * lib/mkdtemp.c [MINGW]: Include <io.h>.
40295         (mkdir): Define using _mkdir.
40296
40297 2006-06-28  Bruno Haible  <bruno@clisp.org>
40298
40299         * lib/getaddrinfo.h: Fix POSIX URL.
40300         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
40301         _WIN32.
40302         (use_win32_p): Make static.
40303         (getaddrinfo): Reject service name if it is empty or does not consist
40304         solely of decimal digits, or if its value is > 65535.
40305         (getnameinfo): Remove useless casts.
40306
40307 2006-06-27  Simon Josefsson  <jas@extundo.com>
40308
40309         * modules/sys_select: New file, suggested by Bruno Haible, Paul
40310         Eggert and Martin Lambers.
40311
40312 2006-06-27  Simon Josefsson  <jas@extundo.com>
40313
40314         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
40315         Eggert and Martin Lambers.
40316
40317 2006-06-27  Bruno Haible  <bruno@clisp.org>
40318
40319         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
40320         result to 0, not to empty.
40321         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
40322
40323 2006-06-27  Bruno Haible  <bruno@clisp.org>
40324
40325         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
40326
40327 2006-06-26  Simon Josefsson  <jas@extundo.com>
40328
40329         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
40330         present.
40331
40332 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
40333
40334         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
40335         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
40336         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
40337
40338 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
40339
40340         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
40341
40342 2006-06-26  Bruno Haible  <bruno@clisp.org>
40343
40344         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
40345
40346 2006-06-26  Bruno Haible  <bruno@clisp.org>
40347
40348         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
40349
40350 2006-06-26  Bruno Haible  <bruno@clisp.org>
40351
40352         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
40353         SGI C compiler in pre-C99 mode.
40354         Suggested by Mark D. Baushke and Larry Jones.
40355
40356 2006-06-26  Bruno Haible  <bruno@clisp.org>
40357
40358         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
40359         WCHAR_MAX.
40360         Reported by Mark D. Baushke and Larry Jones.
40361
40362 2006-06-26  Bruno Haible  <bruno@clisp.org>
40363
40364         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
40365         in pre-C99 mode.
40366         Suggested by Mark D. Baushke and Larry Jones.
40367
40368 2006-06-23  Simon Josefsson  <jas@extundo.com>
40369             Bruno Haible  <bruno@clisp.org>
40370
40371         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
40372         Emit mostlyclean-local rule.
40373         (func_emit_tests_Makefile_am): Likewise.
40374         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
40375
40376 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
40377
40378         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
40379
40380 2006-06-23  Bruno Haible  <bruno@clisp.org>
40381
40382         * tests/test-stdint.c: Update to match ISO C 99 Technical
40383         Corrigendum 1.
40384
40385 2006-06-23  Bruno Haible  <bruno@clisp.org>
40386
40387         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
40388
40389 2006-06-23  Bruno Haible  <bruno@clisp.org>
40390
40391         * lib/stdint_.h: Treat IRIX like OpenBSD.
40392
40393 2006-06-23  Bruno Haible  <bruno@clisp.org>
40394
40395         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
40396         ISO C 99 Technical Corrigendum 1.
40397
40398 2006-06-22  Simon Josefsson  <jas@extundo.com>
40399
40400         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
40401         MinGW.
40402
40403 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
40404
40405         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
40406         needed.  Some compiler complained about some of them.  Problem reported
40407         by Larry Jones in
40408         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
40409
40410 2006-06-21  Simon Josefsson  <jas@extundo.com>
40411
40412         * tests/test-getaddrinfo.c: New file.
40413
40414         * modules/getaddrinfo-tests: New file.
40415
40416         * MODULES.html.sh: Add inet_pton.
40417
40418         * modules/inet_pton: New file.
40419
40420 2006-06-21  Simon Josefsson  <jas@extundo.com>
40421
40422         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
40423         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
40424         of using the (limited) gnulib implementation on Windows XP.
40425
40426         * m4/inet_pton.m4: New file.
40427
40428 2006-06-21  Simon Josefsson  <jas@extundo.com>
40429
40430         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
40431         variable.
40432
40433         * lib/socket_.h: Don't define WINVER.
40434
40435         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
40436         slightly modified to work in gnulib.
40437
40438 2006-06-21  Simon Josefsson  <jas@extundo.com>
40439
40440         * doc/gnulib.texi (Windows sockets): Add.
40441
40442 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
40443
40444         * lib/read-file.c (fread_file): Start with buffer allocation of
40445         0 bytes rather than 1 byte; this simplifies the code.
40446         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
40447         code to free buffer and save/restore errno.
40448         (internal_read_file): Remove unused local.
40449
40450 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
40451
40452         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
40453         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
40454         Problem reported by Denis Excoffier in
40455         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
40456
40457 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40458
40459         * modules/sys_socket, modules/socklen: Include sys/types since
40460         FreeBSD 4.x's sys/socket.h needs it.
40461
40462 2006-06-19  Simon Josefsson  <jas@extundo.com>
40463
40464         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
40465
40466 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
40467
40468         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
40469
40470 2006-06-19  Bruno Haible  <bruno@clisp.org>
40471
40472         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
40473         and FULL_PATH_INTTYPES_H in angle brackets.
40474         Reported by Mark D. Baushke <mdb@gnu.org>.
40475
40476 2006-06-17  Eric Blake  <ebb9@byu.net>
40477
40478         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
40479         errno.
40480
40481 2006-06-17  Bruno Haible  <bruno@clisp.org>
40482
40483         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
40484         <sys/inttypes.h>.
40485
40486 2006-06-17  Bruno Haible  <bruno@clisp.org>
40487
40488         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
40489         whether errno is declared. Assume <errno.h> declares errno.
40490
40491 2006-06-17  Bruno Haible  <bruno@clisp.org>
40492
40493         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
40494
40495 2006-06-17  Bruno Haible  <bruno@clisp.org>
40496
40497         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
40498         problem on Solaris 2.5.1.
40499
40500 2006-06-16  Eric Blake  <ebb9@byu.net>
40501
40502         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
40503         * lib/unicodeio.c [!defined errno]: Likewise.
40504         * lib/strtol.c [!defined errno]: Likewise.
40505         * lib/strtod.c [!defined errno]: Likewise.
40506
40507 2006-06-15  Eric Blake  <ebb9@byu.net>
40508
40509         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
40510
40511 2006-06-15  Eric Blake  <ebb9@byu.net>
40512
40513         * config/srclist.txt (ssize_t.m4): Lose sync.
40514
40515 2006-06-15  Bruno Haible  <bruno@clisp.org>
40516
40517         * modules/stdint (Files): Include m4/full-header-path.m4,
40518         m4/size_max.m4, m4/wchar_t.m4.
40519         (Makefile.am): Many more substitutions.
40520         * modules/stdint-tests: New file.
40521         * tests/test-stdint.c: New file.
40522
40523 2006-06-15  Bruno Haible  <bruno@clisp.org>
40524
40525         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
40526         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
40527         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
40528         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
40529         gl_CHECK_TYPE_SAME): New macros.
40530
40531 2006-06-15  Bruno Haible  <bruno@clisp.org>
40532
40533         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
40534
40535 2006-06-15  Bruno Haible  <bruno@clisp.org>
40536
40537         * lib/stdint_.h: Rewritten to be fully auto-configured.
40538         Fixes bug on HP-UX/IA64.
40539
40540 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
40541
40542         * lib/getdate.y (__attribute__): Don't define if already defined.
40543         Problem reported by Larry Jones.
40544         * lib/utimens.c (__attribute__): Likewise.
40545
40546 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
40547
40548         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
40549         reported by Andreas Schwab.
40550
40551 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40552             Bruno Haible  <bruno@clisp.org>
40553
40554         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
40555         check for the declaration of strnlen and a run test that exposes the
40556         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
40557         rpl_strndup.
40558
40559 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40560             Bruno Haible  <bruno@clisp.org>
40561
40562         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
40563
40564 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40565
40566         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
40567         compile test, for Tru64 4.0D.
40568
40569 2006-05-28  Karl Berry  <karl@gnu.org>
40570
40571         * config/srclist.txt (printf-args.c): lose sync.
40572
40573 2006-05-26  Martin Lambers  <marlam@marlam.de>
40574
40575         * lib/getpass.c: Updates the test for the native W32 API, and adds
40576         missing includes, thus fixing compilation warnings.
40577
40578 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40579
40580         * lib/exclude.c (exclude_fnmatch): New function.
40581         (excluded_file_name): Call exclude_fnmatch.
40582         * lib/exclude.h (excluded_file_name): New prototype
40583
40584 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
40585
40586         * lib/tempname.c (small_open, large_open): New macros.
40587         (__open, __open64) [!_LIBC]: Remove.
40588         (__gen_tempname): Use small_open and large_open instead of __open
40589         and __open64.  This fixes a portability bug on HP-UX 11.11i
40590         reported by Simon Wing-Tang in
40591         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
40592
40593 2006-05-24  Bruno Haible  <bruno@clisp.org>
40594
40595         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
40596         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
40597         Reported by Thorsten Maerz <torte@netztorte.de> via
40598         Aaron Stone <aaron@serendipity.cx>.
40599
40600 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40601
40602         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
40603         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
40604         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
40605         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
40606         not really conditional on the cache.
40607         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
40608
40609 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40610
40611         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
40612         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
40613         (my_usleep): Don't mishandle maximum value.
40614
40615 2006-05-19  Jim Meyering  <jim@meyering.net>
40616
40617         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
40618
40619 2006-05-17  Bruno Haible  <bruno@clisp.org>
40620
40621         Cygwin portability.
40622         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
40623
40624 2006-05-17  Bruno Haible  <bruno@clisp.org>
40625
40626         * lib/stdint_.h: Fix recognition of Cygwin.
40627
40628 2006-05-15  Bruno Haible  <bruno@clisp.org>
40629
40630         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
40631         on libtool patch by Ralf Wildenhues.
40632
40633 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
40634
40635         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
40636         test for C99 conformance; (bool) 0.5 is an integer constant
40637         expression, but (bool) -0.5 is not.  Problem reported by Fedor
40638         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
40639
40640 2006-05-11  Simon Josefsson  <jas@extundo.com>
40641
40642         * m4/xvasprintf.m4: Fix obvious typo.
40643
40644 2006-05-11  Jim Meyering  <jim@meyering.net>
40645
40646         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
40647         James Lemley.
40648
40649 2006-05-10  Simon Josefsson  <jas@extundo.com>
40650
40651         * lib/md4.c: Typo fix, update copyright years.
40652         (K1, K2): Don't use L because it turn computations into 64-bit on
40653         64-bit platforms.
40654
40655 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
40656
40657         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
40658         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
40659         unwanted sign propagation, e.g., on hosts with 64-bit int.
40660         There still are some problems with reeelly weird theoretical hosts
40661         (e.g., 33-bit int) but it's not worth worrying about now.
40662         * lib/sha1.c (rol): Likewise.
40663         (K1, K2, K3, K4): Remove unnecessary L suffix.
40664
40665 2006-05-10  Bruno Haible  <bruno@clisp.org>
40666
40667         * lib/des.c: Cast to avoid warnings.
40668
40669 2006-05-09  Bruno Haible  <bruno@clisp.org>
40670
40671         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
40672         (Depends-on): Depend also on xsize, stdarg.
40673         (configure.ac): Add gl_XVASPRINTF.
40674
40675 2006-05-09  Bruno Haible  <bruno@clisp.org>
40676
40677         * m4/xvasprintf.m4: New file.
40678
40679 2006-05-09  Bruno Haible  <bruno@clisp.org>
40680
40681         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
40682         (EOVERFLOW): Define fallback value.
40683         (xstrcat): New function.
40684         (xvasprintf): Recognize the special case of a string concatenation.
40685
40686 2006-05-08  Eric Blake  <ebb9@byu.net>
40687
40688         * gnulib-tool (func_version): Base copyright year on CVS date.
40689         (func_emit_copyright_notice): New function.
40690         (func_emit_lib_Makefile_am): Use it.
40691         (func_emit_tests_Makefile_am): Likewise.
40692         (func_import): Likewise.
40693
40694 2006-05-08  Bruno Haible  <bruno@clisp.org>
40695
40696         * modules/stdarg: New file.
40697         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
40698
40699 2006-05-08  Bruno Haible  <bruno@clisp.org>
40700
40701         * m4/stdarg.m4: New file, from GNU gettext.
40702
40703 2006-05-08  Bruno Haible  <bruno@clisp.org>
40704
40705         * config/srclist.txt (build-aux/config.rpath): different from latest
40706         release.
40707
40708 2006-05-08  Bruno Haible  <bruno@clisp.org>
40709
40710         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
40711
40712 2006-05-05  Jim Meyering  <jim@meyering.net>
40713
40714         * m4/warning.m4: New file, derived from bison's file by the same name.
40715
40716 2006-05-03  Bruno Haible  <bruno@clisp.org>
40717
40718         * lib/stdint_.h: Shorter URL.
40719         * lib/inttypes.h: Likewise.
40720
40721 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40722
40723         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
40724
40725 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40726
40727         * lib/verify.h: Document the internals better.  Most of this change
40728         was written by Bruno Haible.
40729
40730 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40731
40732         * doc/verify.texi: New file, partly based on a proposal by
40733         Bruno Haible.
40734
40735 2006-05-02  Bruno Haible  <bruno@clisp.org>
40736
40737         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
40738         test from here...
40739         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
40740
40741 2006-04-29  Bruno Haible  <bruno@clisp.org>
40742
40743         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
40744         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
40745
40746 2006-04-29  Bruno Haible  <bruno@clisp.org>
40747
40748         * gnulib-tool: Make --update option actually work.
40749
40750 2006-04-29  Bruno Haible  <bruno@clisp.org>
40751
40752         * doc/gcd.texi: New file.
40753         * doc/gnulib.texi: Include it.
40754
40755 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
40756
40757         * lib/getdate.y (get_date): When adding relative date, start with the
40758         initial time, not with the result of the first mktime call.
40759
40760 2006-04-25  Bruno Haible  <bruno@clisp.org>
40761
40762         * gnulib-tool (func_import): Output the include directives in three
40763         blocks, sorted separately.
40764         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40765
40766 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40767
40768         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
40769         to define main with arguments, for C++.  Reported by Eric Blake.
40770         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
40771         Prefer 'int main ()' to 'int main (void)', for C++.
40772         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
40773         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
40774         for 'main', for C99 and C++.
40775
40776 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40777
40778         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
40779         Don't assume that exit status -1 is valid.
40780         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40781         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
40782         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
40783         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
40784         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
40785         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
40786         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
40787         functions can be used without declaring them, or that you can
40788         exit with status -1.
40789         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
40790
40791 2006-04-24  Karl Berry  <karl@gnu.org>
40792
40793         * config/srclist.txt (longdouble.m4): sync lost.
40794
40795 2006-04-24  Eric Blake  <ebb9@byu.net>
40796
40797         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
40798
40799 2006-04-24  Bruno Haible  <bruno@clisp.org>
40800
40801         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
40802         poll() implementation in AIX.
40803         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40804
40805 2006-04-24  Bruno Haible  <bruno@clisp.org>
40806
40807         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
40808         assigned exactly once.
40809
40810 2006-04-23  Claudio Fontana  <claudio@gnu.org>
40811             Bruno Haible  <bruno@clisp.org>
40812
40813         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
40814         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
40815         for AM_CPPFLAGS.
40816
40817 2006-04-23  Bruno Haible  <bruno@clisp.org>
40818
40819         * modules/copy-file: Depend on unistd.
40820         * modules/execute: Likewise.
40821         * modules/fatal-signal: Likewise.
40822         * modules/findprog: Likewise.
40823         * modules/mkdtemp : Likewise.
40824         * modules/pipe: Likewise.
40825         * modules/wait-process: Likewise.
40826
40827 2006-04-23  Bruno Haible  <bruno@clisp.org>
40828
40829         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
40830         condition was already detected.
40831         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40832
40833 2006-04-23  Bruno Haible  <bruno@clisp.org>
40834
40835         * lib/copy-file.c: Include <unistd.h> unconditionally.
40836         * lib/execute.c: Likewise.
40837         * lib/fatal-signal.c: Likewise.
40838         * lib/findprog.c: Likewise.
40839         * lib/mkdtemp.c: Likewise.
40840         * lib/pipe.h: Likewise.
40841         * lib/pipe.c: Likewise.
40842         * lib/wait-process.h: Likewise.
40843
40844 2006-04-23  Bruno Haible  <bruno@clisp.org>
40845
40846         * gnulib-tool (func_usage): Fix --import description. Document
40847         --update.
40848         (func_import): Create temporary file in a temporary directory, if
40849         --dry-run is specified. Silence errors from 'grep' when there are no
40850         m4 files in $m4dir.
40851         (func_create_testdir): Silence errors from 'grep' when there are no
40852         m4 files in $m4dir.
40853         Reported by Karl Berry <karl@freefriends.org>.
40854
40855 2006-04-20  Bruno Haible  <bruno@clisp.org>
40856
40857         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
40858         one argument, so that the code will be portable to Autoconf 2.60.
40859         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
40860         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
40861         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
40862
40863 2006-04-19  Derek Price  <derek@ximbiot.com>
40864             Eric Blake  <ebb9@byu.net>
40865
40866         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
40867         rather than "/full/path.h".  Update comment to match.  Shorten &
40868         generalize m4_translit call via AS_TR_CPP.
40869
40870 2006-04-19  Derek Price  <derek@ximbiot.com>
40871             Eric Blake  <ebb9@byu.net>
40872
40873         * lib/inttypes.h: Correct grammar in comment.
40874
40875 2006-04-18  Derek Price  <derek@ximbiot.com>
40876             Paul Eggert  <eggert@cs.ucla.edu>
40877
40878         * modules/inttypes: New file.
40879         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
40880
40881 2006-04-18  Derek Price  <derek@ximbiot.com>
40882             Paul Eggert  <eggert@cs.ucla.edu>
40883
40884         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
40885         New files.
40886
40887 2006-04-18  Derek Price  <derek@ximbiot.com>
40888             Paul Eggert  <eggert@cs.ucla.edu>
40889
40890         * lib/inttypes.h: New file.
40891         * lib/strtoimax.c: Assume <inttypes.h>.
40892
40893 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
40894
40895         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
40896         isn't mounted.  Problem reported by Kir Kolyshkin.
40897
40898 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40899
40900         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
40901         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
40902         Derek R. Price.
40903         * lib/regex.h (RE_DUP_MAX): Update comment to match current
40904         implementation.
40905
40906 2006-04-12  Eric Blake  <ebb9@byu.net>
40907
40908         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
40909         is now done automatically by the corresponding Autoconf macro.
40910
40911 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
40912
40913         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
40914         time_r.h.
40915
40916 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40917
40918         Merge regex changes from libc, removing some of our
40919         POSIX-conformance changes that were rejected and redoing them in a
40920         less-intrusive way.
40921
40922         * lib/regcomp.c (re_compile_internal, init_dfa):
40923         Length arg is now size_t, not Idx.  All uses changed.
40924         (peek_token): Forward decl now says internal_function.
40925         (__re_error_msgid, __re_error_msgid_idx):
40926         Now static rather than extern with attribute_hidden.
40927         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
40928         For some reason libc prefers K&R style defns for external functions.
40929         (regerror) [!defined _LIBC]: Likewise.
40930         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
40931         (seek_collating_symbol_entry, lookup_collation_sequence_value):
40932         (build_range_exp, build_collating_symbol):
40933         Use K&R-style defn.
40934         (re_compile_fastmap): Use '\0' to memset, not 0.
40935         (utf8_sb_map): Make the calculations more obvious.
40936         (init_dfa, parse_bracket_exp, build_charclass_op):
40937         Call calloc and cast result, as glibc does.
40938         (init_word_char, fetch_token, peek_token, peek_token_bracket):
40939         (build_range_exp, build_collating_symbol):
40940         Now internal functions.
40941
40942         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
40943
40944         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
40945         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
40946         Don't depend on VMS; depend on __VMS instead, for POSIX
40947         namespace cleanness.
40948         (regoff_t): Define to ssize_t, not long int.
40949
40950         Remove the REG_ macros named below.  Instead, make the old names
40951         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
40952         __USE_GNU_REGEX.
40953         (REG_BACKSLASH_ESCAPE_IN_LISTS):
40954         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
40955         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
40956         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
40957         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
40958         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
40959         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
40960         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
40961         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
40962         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
40963         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
40964         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
40965         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
40966         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
40967         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
40968         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
40969         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
40970         (REG_NREGS):
40971         Remove.  All uses replaced by the old RE_* names.
40972         (RE_BACKSLASH_ESCAPE_IN_LISTS):
40973         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
40974         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
40975         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
40976         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
40977         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
40978         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
40979         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
40980         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
40981         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
40982         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
40983         Don't bother having these macros be independent of each others'
40984         values, since they no longer exist in the POSIX name space.
40985
40986         Rename the following member names back to their old names,
40987         unless !__USE_GNU_REGEX.  All uses changed back.
40988         (buffer): Renamed from re_buffer.
40989         (allocated): Renamed from re_allocated.
40990         (used): Renamed from re_used.
40991         (syntax): Renamed from re_syntax.
40992         (fastmap): Renamed from re_fastmap.
40993         (translate): Renamed from re_translate.
40994         (can_be_null): Renamed from re_can_be_null.
40995         (regs_allocated): Renamed from re_regs_allocated.
40996         (fastmap_accurate): Renamed from re_fastmap_accurate.
40997         (no_sub): Renamed from re_no_sub.
40998         (not_bol): Renamed from re_not_bol.
40999         (not_eol): Renamed from re_not_eol.
41000         (newline_anchor): Renamed from re_newline_anchor.
41001         (num_regs): Renamed from rm_num_regs.
41002         (start): Renamed from rm_start.
41003         (end): Renamed from rm_end.
41004
41005         (free_state): Move up a bit.
41006
41007         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
41008         #define to be empty.
41009         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
41010         when that is what is intended.
41011         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
41012         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
41013         (MAX): New macro.
41014         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
41015         All uses changed back to re_malloc, etc.  It's now the caller's
41016         responsibility to check for overflow; all callers changed.
41017         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
41018         (re_x2nrealloc): Remove.
41019         (free_state): Remove decl.
41020
41021         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
41022         (re_set_registers, re_exec):
41023         Use K&R-style defn.
41024
41025         2006-01-31  Roland McGrath  <roland@redhat.com>
41026
41027         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
41028         Reported by Mike Frysinger <vapier@gentoo.org>.
41029
41030         2006-01-15  Andreas Jaeger  <aj@suse.de>
41031
41032         [BZ #1950]
41033         * lib/regex_internal.c (re_string_reconstruct): Adjust for
41034         build_wcs_upper_buffer change.
41035         (build_wcs_upper_buffer): Change return type.
41036
41037         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
41038
41039         * lib/regex_internal.h: Include <stdint.h> if available.
41040
41041         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
41042
41043         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
41044
41045         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
41046
41047         * lib/regcomp.c: Adjust for changed secondary hash function.
41048
41049         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
41050
41051         * lib/regex.h: Pretty printing.
41052         Clean up namespace a bit.
41053
41054         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
41055
41056         * lib/regexec.c (update_cur_sifted_state, check_arrival,
41057         check_arrival_add_next_nodes): Avoid using uninitialized variable.
41058
41059         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
41060                     Ulrich Drepper  <drepper@redhat.com>
41061
41062         [BZ #1302]
41063         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
41064         changed.
41065         (bitset_word_t): Renamed from bitset_word.  All uses changed.
41066
41067         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
41068
41069         [BZ #281]
41070         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
41071         * lib/regcomp.c: Remove unnecessary uses of
41072         unsigned RE_TRANSLATE_TYPE.
41073         * lib/regex_internal.h: Likewise.
41074         * lib/regex_internal.c: Likewise.
41075         * lib/regexec.c: Likewise.
41076         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
41077
41078         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
41079
41080         * lib/regexec.c (find_recover_state): Remove unnecessary
41081         initialization.
41082         (transit_state_bkref): Make DFA a const pointer.
41083         (get_subexp): Likewise.
41084         (check_arrival): Likewise.
41085         (update_cur_sifted_state): Likewise.
41086         (re_search_internal): Likewise.
41087         (prune_impossible_nodes): Likewise.
41088         (acquire_init_state_context): Likewise.
41089         (proceed_next_node): Likewise.
41090         (set_regs): Likewise.
41091         (free_fail_stack_return): Likewise.
41092         (check_arrival_expand_ecl): Mark DFA parameter as const.
41093         (check_arrival_expand_ecl_sub): Likewise.
41094         (check_subexp_limits): Likewise.
41095         (sub_epsilon_src_nodes):  Likewise.
41096         (add_epsilon_src_nodes):  Likewise.
41097         (merge_state_array): Likewise.
41098         (update_regs): Likewise.
41099         (build_trtable): Likewise.
41100         (sift_states_backward): Mark MCTX parameter as const.
41101         (build_sifted_states): Likewise.
41102         (update_cur_sifted_state): Likewise.
41103         (sift_states_mkref): Likewise.
41104         (check_arrival_expand_ecl): Mark eclosure as const.
41105         (check_dst_limits_calc_pos_1): Likewise.
41106         * lib/regex_internal.h (re_match_context_t): Make dfa a const
41107         pointer.
41108
41109         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
41110
41111         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
41112         (transit_state_sb): Likewise.
41113         (transit_state_mb): Likewise.
41114         (sift_states_iter_mb): Likewise.
41115         (check_arrival_add_next_nodes): Likewise.
41116         (check_node_accept_bytes): Change first parameter to pointer-to-const.
41117         [_LIBC] (re_search_2_stub): Use mempcpy.
41118
41119         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
41120         mbrtowc for very simple UTF-8 case.
41121
41122         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
41123         a pointer-to-const.
41124         (re_acquire_state_context): Likewise.
41125         * lib/regex_internal.h: Adjust prototypes.
41126
41127         * lib/regex.c: Prevent using C++ compilers.
41128
41129         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
41130         (re_acquire_state_context): Likewise.
41131
41132 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
41133
41134         * modules/regex (Depends-on): Add ssize_t.
41135
41136 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
41137
41138         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
41139         translation table.
41140
41141 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
41142
41143         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
41144
41145 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
41146             Bruno Haible  <bruno@clisp.org>
41147
41148         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
41149         <sys/types.h> and <inttypes.h>.
41150
41151 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41152
41153         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
41154         `__error_t_defined', so argp.h will not typedef the former.
41155
41156 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
41157
41158         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
41159         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
41160         glibc names.  Even if glibc is changed to conform to POSIX, the
41161         traditional names will be available anyway, since regex depends on
41162         the extensions module.  Also, fix a longstanding typo in the
41163         implementation of Spencer ERE test #75 from grep 2.3.  Problems
41164         reported by Emanuele Giaquinta.  Also, change sense of cached
41165         variable, so that the message makes sense.
41166
41167 2006-03-24  Simon Josefsson  <jas@extundo.com>
41168
41169         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
41170         including some doc fixes.
41171         (base64_encode_alloc): Fix +1 bug on allocation failures.
41172
41173 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41174
41175         * lib/base64.c (base64_encode): Do not read past end of array with
41176         unsanitized input on systems with CHAR_BIT > 8.
41177
41178 2006-03-24  Eric Blake  <ebb9@byu.net>
41179
41180         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
41181
41182 2006-03-22  Karl Berry  <karl@gnu.org>
41183
41184         * config/srclist.txt (*setenv.[ch]): get from coreutils.
41185         * config/srclistvars.sh (COREUTILS): new var.
41186
41187 2006-03-17  Jim Meyering  <jim@meyering.net>
41188
41189         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
41190         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
41191
41192 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
41193
41194         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
41195         no longer needs it.  Instead, check that regoff_t is as least
41196         as wide as ptrdiff_t.
41197
41198         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
41199         so that our regex.h stays compatible with the installed regex.
41200         This is helpful for installers who configure --without-included-regex.
41201         Problem reported by Emanuele Giaquinta.
41202
41203 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
41204
41205         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
41206         Typedef to long int, not to off_, as POSIX will likely change
41207         in that direction.
41208
41209 2006-03-15  Eric Blake  <ebb9@byu.net>
41210
41211         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
41212
41213 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41214
41215         * lib/argp-help.c (validate_uparams): Fix typo
41216         * lib/argp-parse.c (argp_default_options): Consistently begin help
41217         messages with a lowercase letter.
41218
41219 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
41220
41221         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
41222         overrun buffers and shouldn't be used (much as gets shouldn't be
41223         used).
41224         * lib/time_r.c (asctime_r, ctime_r): Likewise.
41225
41226 2006-03-08  Simon Josefsson  <jas@extundo.com>
41227
41228         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
41229         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41230
41231 2006-03-08  Simon Josefsson  <jas@extundo.com>
41232
41233         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
41234         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41235
41236 2006-03-08  Simon Josefsson  <jas@extundo.com>
41237
41238         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
41239         signal that configure disabled the device.
41240
41241 2006-03-08  Simon Josefsson  <jas@extundo.com>
41242
41243         * build-aux/maint.mk: Fix refresh-po, to handle no translated
41244         languages.
41245
41246 2006-03-07  Simon Josefsson  <jas@extundo.com>
41247
41248         * modules/getopt (Depends-on): Add unistd.
41249
41250         * modules/unistd: New file.
41251
41252 2006-03-07  Simon Josefsson  <jas@extundo.com>
41253
41254         * modules/gc-random: New file.
41255
41256 2006-03-07  Simon Josefsson  <jas@extundo.com>
41257
41258         * m4/unistd_h.m4: New file.
41259
41260 2006-03-07  Simon Josefsson  <jas@extundo.com>
41261
41262         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
41263         test to be side-effect free by storing the result in the cache
41264         variable gl_cv_lib_readline, and moving the assignment of
41265         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
41266         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41267
41268 2006-03-07  Simon Josefsson  <jas@extundo.com>
41269
41270         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
41271         error on missing devices (the functions will return an error).
41272
41273         * m4/gc.m4: Move random stuff to gc-random.m4
41274
41275 2006-03-07  Simon Josefsson  <jas@extundo.com>
41276
41277         * lib/unistd_.h: New file.
41278
41279 2006-03-07  Simon Josefsson  <jas@extundo.com>
41280
41281         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
41282
41283 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41284
41285         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
41286         Problem reported by Juan Manuel Guerrero.
41287
41288 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41289
41290         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
41291         the unistd module.
41292         * lib/getlogin_r.c: Likewise.
41293         * lib/getlogin_r.h: Likewise.
41294         * lib/glob.c: Likewise.
41295         * lib/pagealign_alloc.c: Likewise.
41296         * lib/unistd_.h: Remove; no longer needed.
41297
41298 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41299
41300         * MODULES.html.sh (Support for systems lacking POSIX:2001):
41301         Add unistd.
41302         * modules/c-stack (Depends-on): Add unistd.
41303         * modules/getlogin_r: Likewise.
41304         * modules/glob: Likewise.
41305         * modules/pagealign_alloc: Likewise.
41306         * modules/unistd (Files): Remove lib/unistd_.h.
41307         (EXTRA_DIST): Remove.
41308         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
41309         need unistd_.h.
41310         (MOSTLYCLEANFILES): Remove unistd.h-t.
41311
41312 2006-03-03  Simon Josefsson  <jas@extundo.com>
41313
41314         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
41315
41316 2006-03-03  Simon Josefsson  <jas@extundo.com>
41317
41318         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
41319         libidn and bison.
41320
41321 2006-03-03  Simon Josefsson  <jas@extundo.com>
41322
41323         * build-aux/maint.mk: Add indent target.
41324
41325 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
41326
41327         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
41328         our replacement poll.h in any case, to avoid a differing
41329         declaration from a system header.  Seen on AIX.
41330
41331 2006-03-01  Simon Josefsson  <jas@extundo.com>
41332
41333         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
41334         <kasal@ucw.cz>.
41335
41336 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41337
41338         * modules/gettime (Depends-on): Add extensions module.
41339         * modules/nanosleep (Depends-on): Likewise.
41340         * modules/settime (Depends-on): Likewise.
41341
41342 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41343
41344         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
41345         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
41346         pedantically.
41347         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
41348         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
41349
41350         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
41351         not "==".  Reported by Ralf Wildenhues.
41352
41353 2006-03-01  Karl Berry  <karl@gnu.org>
41354
41355         * doc/Copyright/request-*: new files, synced from gnuorg.
41356
41357 2006-03-01  Karl Berry  <karl@gnu.org>
41358
41359         * config/srclist.txt (Copyright/*): new entries.
41360
41361 2006-02-28  Simon Josefsson  <jas@extundo.com>
41362
41363         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
41364
41365 2006-02-27  Simon Josefsson  <jas@extundo.com>
41366
41367         * lib/base64.h: Indent #define's.  From Jim Meyering
41368         <jim@meyering.net>.
41369
41370 2006-02-27  Jim Meyering  <jim@meyering.net>
41371
41372         Revert the change of 2006-02-24, so these files can continue
41373         to be sync'd from gettext.
41374         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
41375         of `config.h'.
41376
41377 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
41378
41379         * modules/intprops: New file.
41380         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41381         Add intprops.
41382         * modules/getloadavg (Files): Remove lib/intprops.h.
41383         (Depends-on): Add intprops.
41384         * modules/human: Likewise.
41385         * modules/inttostr: Likewise.
41386         * modules/openat: Likewise.
41387         * modules/sig2str: Likewise.
41388         * modules/userspec: Likewise.
41389         * modules/utimecmp: Likewise.
41390         * modules/xnanosleep: Likewise.
41391         * modules/xstrtol: Likewise.
41392
41393 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
41394
41395         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
41396         * modules/lock-tests (TESTS): Use $(EXEEXT).
41397         * modules/tls-tests: Likewise.
41398         * modules/argp-tests: Likewise.
41399         (check_PROGRAMS): New var, replacing...
41400         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
41401
41402 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41403
41404         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
41405         `config.h'.
41406
41407 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
41408
41409         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
41410
41411 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41412
41413         Sync from coreutils.
41414         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
41415         gl_CHDIR_SAFER.
41416
41417 2006-02-22  Jim Meyering  <jim@meyering.net>
41418
41419         Sync from coreutils.
41420         * m4/chdir-safer.m4: New file.
41421
41422 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
41423
41424         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
41425         AT_FDCWD exceeds INT_MAX.
41426         * lib/openat.h (AT_FDCWD): Likewise.
41427
41428 2006-02-17  Eric Blake  <address@hidden>
41429
41430         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
41431
41432 2006-02-16  Simon Josefsson  <jas@extundo.com>
41433
41434         * modules/getaddrinfo (Depends-on): Add sys_socket.
41435
41436 2006-02-15  Simon Josefsson  <jas@extundo.com>
41437
41438         * build-aux/maint.mk: Add dsyntax-check rule.
41439
41440 2006-02-15  Eric Blake  <ebb9@byu.net>
41441
41442         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
41443         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
41444         'present but cannot compile' warnings on cygwin.
41445         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
41446         use ws2tcpip.h if sys/socket.h works.
41447         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
41448         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
41449
41450 2006-02-14  Simon Josefsson  <jas@extundo.com>
41451
41452         * modules/maintainer-makefile (Files): Rename.
41453
41454         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
41455         and (the local) Makefile.cfg to maint-cfg.mk.
41456
41457         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
41458         to the latter.
41459
41460         * modules/maintainer-makefile: New module.
41461
41462         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
41463         severaly stripped to make it possible to build it up from scratch
41464         with reliable tests.
41465
41466         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
41467         fixes to permit overriding the default actions when configure and
41468         makefile are not available.
41469
41470 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
41471
41472         Sync from coreutils.
41473         * modules/lstat (Depends-on): Don't depend on xalloc.
41474         (License): Change from GPL to LGPL, since this is now simply a
41475         replacement for a libc function.
41476
41477 2006-02-14  Jim Meyering  <jim@meyering.net>
41478
41479         Sync from coreutils.
41480
41481         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
41482         failure on deficient systems, and simplify gnulib lgpl dependencies.
41483         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
41484         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
41485
41486         * lib/xalloc-die.c: Remove unused definition of N_.
41487
41488 2006-02-14  Jim Meyering  <jim@meyering.net>
41489
41490         Sync from coreutils.
41491         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
41492         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
41493         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
41494         double-quote uses of that variable, to accommodate the rare case in
41495         which getmntent is available in none of the libraries checked.  This
41496         happens at least on FreeBSD 5.0.
41497
41498 2006-02-13  Simon Josefsson  <jas@extundo.com>
41499
41500         * gnulib-tool (Usage): Fix --import, from
41501         karl@freefriends.org (Karl Berry).
41502
41503 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41504
41505         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
41506
41507 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
41508
41509         * lib/argp-namefrob.h: Restore changes accidentally lost during the
41510         "autoupdate" on 2005-12-12.
41511
41512 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41513
41514         * modules/closeout (Depends-on): Remove atexit.
41515
41516 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41517
41518         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
41519         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
41520
41521 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
41522
41523         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
41524         __EXTENSIONS__ if this causes compilation to fail.  Problem
41525         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
41526         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
41527
41528 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
41529
41530         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
41531         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
41532         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
41533         All uses changed.
41534
41535 2006-01-26  Simon Josefsson  <jas@extundo.com>
41536
41537         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
41538         prototype is visible on mingw32.
41539
41540         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
41541         for mingw32.
41542
41543         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
41544         mingw32).
41545
41546 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
41547
41548         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
41549         attempt to open for write; this always fails, at least on POSIX
41550         hosts.  This reinstates the 2006-01-09 change, which was
41551         inadvertently removed.
41552
41553 2006-01-26  Bruno Haible  <bruno@clisp.org>
41554
41555         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
41556         Reported by Paul Eggert.
41557
41558 2006-01-26  Bruno Haible  <bruno@clisp.org>
41559             Paul Eggert  <eggert@cs.ucla.edu>
41560
41561         * lib/stdbool_.h (_Bool)
41562         [(! (defined __cplusplus || defined __BEOS__)
41563           && !defined __GNUC__
41564           && !(defined __HP_cc || defined __xlc__
41565                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
41566                || defined __sgi))]:
41567         #define to signed char in these cases too; this simplifies
41568         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
41569         etc., separately) and makes it more conservative.
41570
41571 2006-01-25  Simon Josefsson  <jas@extundo.com>
41572
41573         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
41574         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
41575         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
41576
41577 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
41578
41579         * lib/argp-namefrob.h: Bugfix. Remove stray #
41580
41581 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
41582
41583         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
41584         so that we test the test.
41585         Check for yet another HP-UX cc bug involving *bool |= bool.
41586
41587 2006-01-25  Karl Berry  <karl@gnu.org>
41588
41589         * config/srclist.txt (vasnprintf.c): sync lost.
41590
41591 2006-01-25  Jim Meyering  <jim@meyering.net>
41592
41593         Sync from the stable (b5) branch of coreutils:
41594
41595         * lib/fts.c (fts_children): Don't let close() clobber errno from
41596         failed fchdir().
41597
41598         * lib/fts.c (fts_stat): When following a symlink-to-directory,
41599         don't necessarily interpret stat-fails+lstat-succeeds as indicating
41600         a dangling symlink.  That can also happen at least for ELOOP.
41601         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
41602         FYI, this bug predates the inclusion of fts.c in coreutils.
41603
41604         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
41605         in their own block, so pre-c99 compilers don't object.
41606
41607         Avoid the double-free (first in fts_read, second in fts_close) that
41608         would occur when an `active' directory is made inaccessible (e.g.,
41609         via chmod a-x) during a traversal.
41610         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41611         before returning.  Reproduce this failure by
41612         mkdir -p a/b; cd a; chmod a-x . b
41613         Reported by Stavros Passas.
41614
41615 2006-01-25  Jim Meyering  <jim@meyering.net>
41616
41617         * lib/fileblocks.c: Remove more useless parentheses.
41618         * lib/readutmp.h: Likewise.
41619
41620 2006-01-25  Bruno Haible  <bruno@clisp.org>
41621
41622         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
41623         warnings.
41624         Reported by Paul Eggert.
41625
41626 2006-01-25  Bruno Haible  <bruno@clisp.org>
41627
41628         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
41629         rid of a trap command. For Solaris sh.
41630         Reported by Mark D. Baushke <mdb@gnu.org>.
41631
41632 2006-01-24  Simon Josefsson  <jas@extundo.com>
41633
41634         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
41635         Bruno.
41636
41637 2006-01-24  Karl Berry  <karl@gnu.org>
41638
41639         * config/srclist.txt (argp-namefrob.h): sync lost.
41640
41641 2006-01-24  Jim Meyering  <jim@meyering.net>
41642
41643         * modules/openat (Files): Add lib/intprops.h.
41644         From Mark D. Baushke.
41645
41646 2006-01-24  Jim Meyering  <jim@meyering.net>
41647
41648         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
41649         Reported by Mark D. Baushke.
41650
41651 2006-01-24  Jim Meyering  <jim@meyering.net>
41652
41653         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
41654
41655 2006-01-24  Bruno Haible  <bruno@clisp.org>
41656
41657         * modules/strnlen (Maintainer): Change from glibc to all.
41658
41659 2006-01-24  Bruno Haible  <bruno@clisp.org>
41660
41661         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
41662         Patch by Paul Eggert.
41663
41664 2006-01-24  Bruno Haible  <bruno@clisp.org>
41665
41666         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
41667         already has it.
41668         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
41669         2005-11-26.
41670
41671         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
41672         'signed char' to avoid problems with the built-in _Bool type.
41673         Reported by Paul Eggert on 2005-11-26.
41674
41675 2006-01-24  Bruno Haible  <bruno@clisp.org>
41676
41677         * gnulib-tool (func_import): Avoid constructing complicated sed
41678         expressions inside backquote.
41679         Report and solution by Mark D. Baushke <mdb@gnu.org>.
41680
41681 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
41682
41683         These changes imported from libc.
41684         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
41685         test and two separate function calls.
41686         * lib/strndup.c (__strndup): Add libc_hidden_def.
41687
41688 2006-01-23  Simon Josefsson  <jas@extundo.com>
41689
41690         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
41691         Remove the test_*_SOURCES variable: automake infers it by default.
41692         * modules/tls-tests: Likewise.
41693
41694 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41695
41696         Work around porting bugs reported by Dieter in
41697         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
41698         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
41699         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
41700         Include "getopt.h" first, to check interface.
41701         (getenv): Declare only if defined HAVE_DECL_GETENV &&
41702         !HAVE_DECL_GETENV.
41703         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
41704         (__strndup): Revert to K&R-style function dfns, the glibc style.
41705         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
41706         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
41707         Include strnlen.h first, to get prototype properly.
41708         (strnlen): Renamed from __strnlen.
41709         Remove weak alias.
41710
41711 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41712
41713         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
41714
41715 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41716
41717         * config/srclist.txt: Adjust to reflect glibc reorganization.
41718         This affects only comments.
41719
41720 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41721
41722          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
41723          Reported by Bruce Korb <bkorb@gnu.org>.
41724
41725 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
41726
41727         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
41728         to pacify gcc -Wswitch-default.
41729
41730 2006-01-22  Bruno Haible  <bruno@clisp.org>
41731
41732         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
41733         temporary buffer for sprintf, take into account the precision also
41734         for 'd', 'i', 'u', 'o', 'x', 'X'.
41735
41736 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41737
41738         * modules/argp-tests: New module
41739         * tests/test-argp.c: New file
41740         * tests/test-argp-2.sh: New file
41741
41742 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41743
41744         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
41745         (__argp_base_name): Removed
41746         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
41747         typo.
41748         (__argp_base_name): Provide macro definition or extern declaration
41749         depending on the configuration
41750
41751 2006-01-20  Simon Josefsson  <jas@extundo.com>
41752
41753         * modules/inet_ntop (Depends-on): Depend on sys_socket.
41754
41755 2006-01-20  Simon Josefsson  <jas@extundo.com>
41756
41757         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
41758
41759 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
41760
41761         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
41762         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
41763         Suggested by Bruno Haible.
41764
41765 2006-01-20  Karl Berry  <karl@gnu.org>
41766
41767         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
41768         until changes propagate, I guess.
41769
41770 2006-01-19  Simon Josefsson  <jas@extundo.com>
41771
41772         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
41773
41774 2006-01-19  Simon Josefsson  <jas@extundo.com>
41775
41776         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
41777
41778 2006-01-19  Simon Josefsson  <jas@extundo.com>
41779
41780         * gnulib-tool: Set check_PROGRAMS.
41781
41782         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41783         modules/des-tests, modules/gc-arcfour-tests,
41784         modules/gc-arctwo-tests, modules/gc-des-tests,
41785         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41786         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41787         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41788         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41789         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41790         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
41791         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
41792         test_*_SOURCES.
41793
41794 2006-01-18  Simon Josefsson  <jas@extundo.com>
41795
41796         * modules/socklen (Depends-on): Depend on sys_socket.
41797
41798 2006-01-18  Simon Josefsson  <jas@extundo.com>
41799
41800         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41801         modules/des-tests, modules/gc-arcfour-tests,
41802         modules/gc-arctwo-tests, modules/gc-des-tests,
41803         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41804         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41805         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41806         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41807         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41808         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
41809         $(EXEEXT) to automake TESTS variable, for mingw32.
41810
41811 2006-01-17  Simon Josefsson  <jas@extundo.com>
41812
41813         * modules/socklen (Include): Need sys/socket.h.
41814
41815 2006-01-17  Bruno Haible  <bruno@clisp.org>
41816
41817         * modules/ssize_t (Include): Add <sys/types.h>.
41818
41819 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
41820
41821         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
41822         it's not portable and it doesn't work with cross-compiles.
41823         Problem reported by Bruno Haible.  Fix missing-$ typo in
41824         'test "gl_cv_ignore_unused_libraries" ...' that prevented
41825         -zignore from being used with Sun's C compiler.
41826
41827 2006-01-12  Simon Josefsson  <jas@extundo.com>
41828
41829         * lib/base64.c: Fix warning, reported by Bruno Haible
41830         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
41831
41832 2006-01-12  Bruno Haible  <bruno@clisp.org>
41833
41834         * modules/ldd: New file.
41835         * build-aux/ldd.sh.in: New file.
41836         * MODULES.html.sh (Support for building libraries and executables): Add
41837         ldd.
41838
41839 2006-01-12  Bruno Haible  <bruno@clisp.org>
41840
41841         * m4/ldd.m4: New file.
41842
41843 2006-01-12  Bruno Haible  <bruno@clisp.org>
41844
41845         * gnulib-tool (func_import, func_create_testdir): Don't go into an
41846         endless loop while replacing $auxdir with build-aux.
41847
41848 2006-01-11  Simon Josefsson  <jas@extundo.com>
41849
41850         * lib/stdint_.h (SIZE_MAX): Add missing (.
41851
41852 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
41853
41854         Sync from coreutils.
41855         * lib/md5.c: Fix commentary typos.
41856         (alignof, UNALIGNED_P): No need for a GCC-specific version.
41857         * lib/md5.h (__attribute__): Remove; unused.
41858         * lib/sha1.c: Fix commentary to match md5 better.
41859         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
41860         so that we don't need to worry about alignment.  All uses changed.
41861         This merges the 2005-10-28 md5 change into sha1.
41862
41863 2006-01-11  Jim Meyering  <jim@meyering.net>
41864
41865         Sync from coreutils.
41866         * lib/md5.c (OP): Fix spacing.
41867
41868 2006-01-11  Bruno Haible  <bruno@clisp.org>
41869
41870         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41871         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
41872         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
41873
41874 2006-01-11  Bruno Haible  <bruno@clisp.org>
41875
41876         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41877         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
41878         the "early" section as well.
41879
41880 2006-01-11  Bruno Haible  <bruno@clisp.org>
41881
41882         Avoid "ar: no archive members specified" error on MacOS X.
41883         * gnulib-tool (func_modules_add_dummy): New function.
41884         (func_import, func_create_testdir): Invoke it.
41885
41886 2006-01-11  Bruno Haible  <bruno@clisp.org>
41887
41888         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
41889         with $auxdir in AC_CONFIG_FILES statements.
41890
41891 2006-01-11  Bruno Haible  <bruno@clisp.org>
41892
41893         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41894         Initialize also noinst_HEADERS to empty.
41895
41896 2006-01-11  Bruno Haible  <bruno@clisp.org>
41897
41898         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
41899         variables.
41900         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
41901         autoreconf.
41902
41903 2006-01-11  Bruno Haible  <bruno@clisp.org>
41904
41905         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
41906         overridable by the user.
41907         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41908
41909 2006-01-10  Simon Josefsson  <jas@extundo.com>
41910
41911         * modules/sys_socket: New file.
41912
41913 2006-01-10  Simon Josefsson  <jas@extundo.com>
41914
41915         * m4/sys_socket_h.m4: New file.
41916
41917 2006-01-10  Simon Josefsson  <jas@extundo.com>
41918
41919         * lib/socket_.h: New file.
41920
41921 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41922
41923         * modules/readutmp (Maintainer): Add myself.
41924
41925 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41926
41927         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
41928         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
41929         People who are still concerned with buggy memcmp implementations
41930         can invoke gl_FUNC_MEMCMP themselves.
41931
41932 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41933
41934         * lib/regex_internal.h (BITSET_WORD_BITS):
41935         Work around a bug in 64-bit PGC (before version 6.1-2), where the
41936         preprocessor mishandles large unsigned values as if they were signed.
41937         Problem reported by Claudio Fontana in
41938         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
41939
41940 2006-01-10  Jim Meyering  <jim@meyering.net>
41941
41942         Avoid the double-free (first in fts_read, second in fts_close) that
41943         would occur when an `active' directory is made inaccessible (e.g.,
41944         via chmod a-x) during a traversal.
41945         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41946         before returning.  Reproduce this failure by
41947         mkdir -p a/b; cd a; chmod a-x . b
41948         Reported by Stavros Passas.
41949
41950         Sync from coreutils.
41951         * lib/sha1.c: Tweak grammar in a comment.
41952
41953 2006-01-10  Jim Meyering  <jim@meyering.net>
41954
41955         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
41956         Patch by Joerg Sonnenberger.
41957
41958 2006-01-10  Bruno Haible  <bruno@clisp.org>
41959
41960         * modules/readutmp: Depend on module free.
41961         * modules/strtok_r: Depend on module restrict.
41962
41963 2006-01-10  Bruno Haible  <bruno@clisp.org>
41964
41965         * modules/gettext (configure.ac): Add an invocation of
41966         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
41967
41968 2006-01-10  Bruno Haible  <bruno@clisp.org>
41969
41970         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
41971         Reported by Werner Lemberg <wl@gnu.org>.
41972
41973 2006-01-10  Bruno Haible  <bruno@clisp.org>
41974
41975         * lib/localcharset.c: Update from GNU gettext.
41976
41977 2006-01-10  Bruno Haible  <bruno@clisp.org>
41978
41979         * lib/argp.h (__const): Remove macro. Use const instead.
41980         * lib/argp-fmtstream.h (__const): Likewise.
41981         * lib/glob_.h (__const): Remove macro.
41982         * lib/glob-libc.h: Use const instead of __const.
41983
41984 2006-01-10  Bruno Haible  <bruno@clisp.org>
41985
41986         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
41987         variable.
41988         Needed to avoid an automake error regarding the 'gettext' module.
41989
41990 2006-01-09  Simon Josefsson  <jas@extundo.com>
41991
41992         * modules/inet_ntop (Depends-on): Add restrict.
41993
41994 2006-01-09  Simon Josefsson  <jas@extundo.com>
41995
41996         * modules/gc-rijndael-tests (License): Put under LGPL.
41997
41998         * modules/gc-des-tests (License): Likewise.
41999
42000         * modules/gc-arcfour-tests (License): Likewise.
42001
42002         * modules/gc-arctwo-tests (License): Likewise.
42003
42004         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
42005
42006         * modules/gc-hmac-sha1-tests (Files): Likewise.
42007
42008         * modules/gc-hmac-md5-tests (License): Likewise.
42009
42010         * modules/gc-sha1-tests (License): Likewise.
42011
42012         * modules/gc-md5-tests (License): Likewise.
42013
42014         * modules/gc-md4-tests (License): Likewise.
42015
42016         * modules/gc-md2-tests (License): Likewise.
42017
42018         * modules/gc-tests (License): Likewise.
42019
42020         * modules/des-tests (License): Likewise.
42021
42022         * modules/md4-tests (License): Likewise.
42023
42024         * modules/md2-tests (License): Likewise.
42025
42026 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42027
42028         Sync from coreutils:
42029
42030         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
42031         * modules/lib-ignore: New file.
42032         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
42033         chdir-safer.m4, lchmod.m4.
42034         * modules/openat: Add mkdirat.c, openat-priv.h.
42035
42036 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42037
42038         Sync from coreutils.
42039         * m4/lib-ignore.m4: New file.
42040         * m4/lchmod.m4: New file.
42041
42042 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42043
42044         Sync from coreutils.
42045         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
42046         for write access: POSIX says that must fail.
42047         * lib/fts.c (diropen): Likewise.
42048         * lib/save-cwd.c (save_cwd): Likewise.
42049         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
42050         well, for minor improvements on hosts that lack O_DIRECTORY.
42051         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
42052         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
42053         Fall back on chown if open failed with EACCES.
42054
42055         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
42056         Report an error at compile-time if only a 1-second nominal clock
42057         resolution is found.
42058
42059         * lib/lchmod.h: New file.
42060         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
42061         (make_dir_parents): Use lchown rather than chown, and
42062         lchmod rather than chmod.
42063
42064         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
42065         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
42066         "proc" reported by n0dalus.
42067
42068         * lib/mountlist.c: Include <limits.h>.
42069         (dev_from_mount_options)
42070         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
42071         New function.  It no longer assumes "dev=" has the System V meaning
42072         on Linux (since it doesn't).  It also parses "dev=" more carefully.
42073         (read_file_system_list)
42074         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
42075         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
42076         dev= in that case.
42077
42078         * lib/posixtm.h (PDS_PRE_2000): New macro.
42079         * lib/posixtm.c (year): Arg is now syntax_bits rather than
42080         allow_century.  All usages changed.  Reject dates outside the range
42081         1969-1999 if PDS_PRE_2000 is used.
42082
42083 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42084
42085         Sync from coreutils.
42086         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
42087         (Time of day items): Mention the possibility of leap seconds.
42088         Problem reported by Dr. David Alan Gilbert.
42089
42090 2006-01-09  Jim Meyering  <jim@meyering.net>
42091
42092         Sync from coreutils.
42093
42094         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
42095
42096         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
42097
42098         * lib/modechange.c (mode_compile): Reject an invalid mode string
42099         that starts with an octal digit.  From Andreas Gruenbacher.
42100
42101         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
42102         and dup to open_safer and dup_safer, respectively.
42103         (openat_permissive): Fix typo in comment.
42104
42105         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
42106         "gettext.h"; either no longer needed or are guaranteed by openat.h.
42107         (_): Remove; no longer needed.
42108         (openat): Renamed from rpl_openat; no need for rpl_openat
42109         since openat.h renames openat for us.
42110         Replace most of the body with a call to openat_permissive,
42111         to avoid duplicate code.
42112         Port to (probably hypothetical) environments were mode_t is
42113         wider than int.
42114         (openat_permissive): Require mode arg, so that we can check
42115         types better.  Put it just after flags.  Change cwd failure
42116         indicator from pointer-to-bool to pointer-to-errno-value.
42117         All callers changed.
42118         Invoke openat_save_fail and/or openat_restore_fail if
42119         cwd_errno is null, so that openat can call us.
42120         (openat_permissive, fdopendir, fstatat, unlinkat):
42121         Simplify errno handling to avoid some duplicate code,
42122         as it's OK to set errno on success.
42123         * lib/openat.h: Revamp code so that function macros depend on
42124         __OPENAT_PREFIX only, not also on AT_FDCWD.
42125         (openat_ro): Remove.  Caller changed to use openat_permissive.
42126         (openat_permissive): Now a macro, if not a function.
42127         (openat_restore_fail, openat_save_fail): Now always functions,
42128         since mkdirat needs them even if __OPENAT_PREFIX is defined.
42129
42130         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
42131         and openat.c.
42132         * lib/mkdirat.c: Include openat-priv.h.
42133         Remove definitions of macros defined therein.
42134         * lib/openat.c: Likewise.
42135
42136         * lib/mkdirat.c (mkdirat): New file and function.
42137         * lib/openat.h (mkdirat): Declare.
42138
42139         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
42140
42141         * lib/openat.h (openat_permissive): Declare.
42142         (openat_ro): Define.
42143
42144         * lib/openat.c (EXPECTED_ERRNO): New macro.
42145         (openat_permissive): New function -- used in remove.c rewrite.
42146         (all functions): Set errno just before returning, only if there
42147         was an actual failure.
42148         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
42149
42150         Emulate openat-family functions using Linux's procfs, if possible.
42151         Idea and some code based on Ulrich Drepper's glibc changes.
42152
42153         * lib/openat.c: (BUILD_PROC_NAME): New macro.
42154         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
42155         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
42156         before falling back on save_cwd and restore_cwd.
42157         (fdopendir, fstatat, unlinkat): Likewise.
42158
42159         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
42160         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
42161
42162         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
42163         as second argument to va_arg.  Otherwise, some versions of gcc
42164         warn that `if this code is reached, the program will abort'.
42165
42166 2006-01-09  Jim Meyering  <jim@meyering.net>
42167
42168         Sync from coreutils.
42169         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
42170         Require openat-priv.h.
42171
42172 2006-01-09  Bruno Haible  <bruno@clisp.org>
42173
42174         * modules/strnlen (Include): Use strnlen.h.
42175
42176 2006-01-09  Bruno Haible  <bruno@clisp.org>
42177
42178         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
42179
42180 2006-01-09  Bruno Haible  <bruno@clisp.org>
42181
42182         * lib/sysexit_.h (EX_OK): New macro.
42183         Suggested by Martin Lambers <marlam@marlam.de>.
42184
42185 2006-01-09  Bruno Haible  <bruno@clisp.org>
42186
42187         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
42188         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
42189
42190 2006-01-09  Bruno Haible  <bruno@clisp.org>
42191
42192         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
42193         numbers.
42194
42195 2006-01-09  Bruno Haible  <bruno@clisp.org>
42196
42197         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
42198         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
42199         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
42200         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
42201
42202 2006-01-09  Bruno Haible  <bruno@clisp.org>
42203
42204         * build-aux/javacomp.sh.in: New file, moved from lib/.
42205         * modules/javacomp-script (Files): Update.
42206         (configure.ac): Add AC_CONFIG_FILES invocation.
42207         (EXTRA_DIST): Remove variable.
42208
42209         * build-aux/javaexec.sh.in: New file, moved from lib/.
42210         * modules/javaexec (Files): Update.
42211         (configure.ac): Add AC_CONFIG_FILES invocation.
42212         (EXTRA_DIST): Remove javaexec.sh.in.
42213
42214         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
42215         * modules/csharpcomp-script (Files): Update.
42216         (configure.ac): Add AC_CONFIG_FILES invocation.
42217         (EXTRA_DIST): Remove variable.
42218
42219         * build-aux/csharpexec.sh.in: New file, moved from lib/.
42220         * modules/csharpexec (Files): Update.
42221         (configure.ac): Add AC_CONFIG_FILES invocation.
42222         (EXTRA_DIST): Remove csharpexec.sh.in.
42223
42224 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
42225
42226         Sync from coreutils.
42227
42228         Add POSIX ACL support
42229         * lib/acl.h (copy_acl, set_acl): Add declarations.
42230         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
42231         systems other than Linux.
42232         (chmod_or_fchmod): New function: use fchmod when possible,
42233         and chmod otherwise.
42234         (file_has_acl): Add a POSIX ACL implementation, with a
42235         Linux-specific subcase.
42236         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
42237         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
42238         acls are unsupported.
42239         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
42240         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
42241         are unsupported.
42242
42243 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
42244
42245         Sync from coreutils.
42246         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
42247
42248 2006-01-07  Bruno Haible  <bruno@clisp.org>
42249
42250         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
42251         gl_EARLY.
42252
42253 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
42254
42255         * lib/strftime.c (tzname): Don't declare if it is already #defined.
42256         Problem reported for Mingw by Mark Junker.
42257
42258 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
42259
42260         * README: Gnulib normally doesn't generate a tarball.
42261
42262 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
42263
42264         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
42265         long int, not int, for nanosecond counts, so that people who are
42266         used to POSIX struct timespec won't be surprised.  Reported by Jim
42267         Meyering.
42268
42269 2005-12-28  Bruno Haible  <bruno@clisp.org>
42270
42271         * build-aux/config.rpath: Update from GNU gettext.
42272
42273 2005-12-16  Jim Meyering  <jim@meyering.net>
42274
42275         * modules/fprintftime: New module.
42276         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
42277
42278 2005-12-16  Jim Meyering  <jim@meyering.net>
42279
42280         * m4/fprintftime.m4: New file.
42281
42282 2005-12-16  Jim Meyering  <jim@meyering.net>
42283
42284         * lib/fprintftime.c, lib/fprintftime.h: New files.
42285
42286 2005-12-15  Simon Josefsson  <jas@extundo.com>
42287
42288         * modules/socklen (configure.ac): Fix M4 macro name, to align with
42289         new m4/socklen.m4.
42290
42291 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42292
42293         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
42294         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
42295
42296 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42297
42298         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
42299         * lib/argp-help.c (fill_in_uparams): Check if the constructed
42300         struct uparams is valid. Fall back to the default values if it is
42301         not.
42302
42303 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42304
42305         * modules/argp (Files): Add argp-pin.c
42306         (Depends-on): dirname
42307         (lib_SOURCES): Add argp-pin.c
42308
42309 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42310
42311         * m4/argp.m4:  Check if program_invocation_name and
42312         program_invocation_short_name are declared and define appropriate
42313         macros if they are not.
42314
42315 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42316
42317         * lib/argp-help.c (__argp_base_name): New function
42318         (__argp_short_program_name): Rewrite using __argp_base_name
42319         * lib/argp-namefrob.h: Define program_invocation_name and
42320         program_invocation_short_name if requested
42321         (__argp_base_name): Add prototype
42322         * lib/argp-parse.c (argp_def): Use gettext wrappers
42323         (argp_default_parser): Use __argp_base_name
42324         * lib/argp-pin.c: New file. Defines program_invocation_name and
42325         program_invocation_short_name on systems that lack them.
42326
42327 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42328
42329         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
42330         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42331         porting problem reported by Georg Schwarz in
42332         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42333
42334 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42335
42336         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
42337         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42338         porting problem reported by Georg Schwarz in
42339         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42340
42341 2005-12-05  Bruno Haible  <bruno@clisp.org>
42342
42343         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
42344         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
42345         Reported by Mark Junker <mjscod@gmx.de>.
42346
42347 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
42348
42349         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
42350         Use implementation from Albert Chin, with some
42351         comments/corrections by Stepan Kasal and myself.
42352
42353 2005-12-02  Bruno Haible  <bruno@clisp.org>
42354
42355         * gnulib-tool (func_import): Accept GPLed build tool modules when
42356         --lgpl is given.
42357         * modules/csharpcomp-script: New file.
42358         * modules/csharpcomp: Depend on it.
42359         * modules/javacomp-script: New file.
42360         * modules/javacomp: Depend on it.
42361         Suggested by Simon Josefsson.
42362
42363 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
42364
42365         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
42366         statement, to work around an HP-UX 10.20 compiler bug reported by
42367         Peter O'Gorman.
42368
42369 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42370
42371         * modules/savedir (Depends-on): Add openat.
42372
42373 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42374
42375         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
42376         (uintmax_t) [defined uintmax_t]: Do not declare.
42377         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
42378         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
42379         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
42380         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
42381         sake of portability to weird hosts that C allows (though we don't
42382         know of any practical examples).
42383
42384         * lib/savedir.h (fdsavedir): New decl.
42385         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
42386         contains most of the former guts of savedir.
42387         (savedir): Use savedirstream.
42388         Include "openat.h".
42389
42390 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
42391
42392         * modules/obstack (Files): Add m4/ulonglong.m4.
42393         Problem reported by Davide Angelocola.
42394
42395 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
42396
42397         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
42398         coreutils no longer futzes with rounding modes.
42399
42400 2005-11-14  Jim Meyering  <jim@meyering.net>
42401
42402         * lib/mkstemp-safer.c: Include <config.h>, required for possible
42403         replacement of mkstemp.
42404
42405 2005-11-10  Simon Josefsson  <jas@extundo.com>
42406
42407         * lib/readline.c: Remove EOL.
42408
42409 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42410
42411         * modules/gethrxtime (Depends-on): Add gettime.
42412
42413 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42414
42415         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
42416         or gettimeofday; no longer needed.
42417
42418 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42419
42420         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
42421         time business.
42422         (gethrxtime) [! (HAVE_NANOUPTIME
42423         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
42424         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
42425         our own approximation.
42426
42427 2005-11-08  Eric Blake  <ebb9@byu.net>
42428
42429         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42430
42431 2005-11-08  Eric Blake  <ebb9@byu.net>
42432
42433         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42434
42435 2005-11-04  Bruno Haible  <bruno@clisp.org>
42436
42437         * gnulib-tool: Implement --update mode.
42438
42439 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42440
42441         Fix porting problem reported by Theodoros V. Kalamatianos.
42442         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
42443         Don't assume that futimes failing means we must fail.
42444
42445 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42446
42447         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
42448         variables to suggest the intended function of the PATH_MAX check.
42449
42450 2005-10-30  Kean Johnston  <jkj@sco.com>
42451
42452         Trivial changes to support SCO systems.
42453         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
42454         as PATH_MAX.
42455         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
42456         where __ptr is null when no I/O is pending.
42457
42458 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
42459
42460         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
42461         leave errno alone.  Problem reported by Dmitry V. Levin.
42462
42463 2005-10-28  Simon Josefsson  <jas@extundo.com>
42464
42465         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
42466         Test more.
42467
42468         * tests/test-gc-md2.c, tests/test-md2.c: New files.
42469
42470         * modules/md2, modules/md2-tests: New files.
42471
42472 2005-10-28  Simon Josefsson  <jas@extundo.com>
42473
42474         * m4/inet_ntop.m4: More tests.
42475
42476         * m4/gc-md2.m4, md2.m4: New file.
42477
42478 2005-10-28  Simon Josefsson  <jas@extundo.com>
42479
42480         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
42481         "restrict" keywords, as per POSIX.  Protect the function
42482         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
42483         Don't use K&R prototypes.  Check the sprintf return values.
42484         Re-define EAFNOSUPPORT if not present.  Indent.
42485
42486         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
42487         suggested by Bruno Haible <bruno@clisp.org>.
42488
42489         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
42490
42491         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
42492
42493         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
42494         libgcrypt).
42495
42496         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
42497
42498         * lib/md2.h, lib/md2.c: New files.
42499
42500 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
42501
42502         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
42503         errno alone.  Problem reported by Frederic Jolliton.
42504
42505 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42506
42507         * modules/verify (License): Change from GPL to LGPL.  This is a
42508         tiny module and there are apparently near-equivalents that are
42509         under the BSD license.
42510
42511 2005-10-24  Simon Josefsson  <jas@extundo.com>
42512
42513         * modules/sha1: Relicense to LGPL.
42514
42515 2005-10-24  Simon Josefsson  <jas@extundo.com>
42516
42517         * lib/md4.h: Shrink buffer size, now that we changed the type.
42518
42519 2005-10-23  Simon Josefsson  <jas@extundo.com>
42520
42521         * gnulib-tool (func_import): Fix --tests-base.
42522
42523 2005-10-22  Simon Josefsson  <jas@extundo.com>
42524
42525         * modules/arcfour (Depends-on): Need stdint.
42526
42527 2005-10-22  Simon Josefsson  <jas@extundo.com>
42528
42529         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
42530         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
42531
42532 2005-10-22  Simon Josefsson  <jas@extundo.com>
42533
42534         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
42535         suggested by Bruno Haible <bruno@clisp.org>.
42536
42537 2005-10-22  Simon Josefsson  <jas@extundo.com>
42538
42539         * lib/crc.h: Include stddef.h, for size_t.
42540
42541 2005-10-22  Simon Josefsson  <jas@extundo.com>
42542
42543         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
42544         arcfour_context struct (simplify test vector testing in GNU
42545         Shishi).
42546
42547 2005-10-21  Simon Josefsson  <jas@extundo.com>
42548
42549         * modules/des, modules/des-tests: New files.
42550
42551         * modules/gc-des, modules/gc-des-tests: New files.
42552
42553         * tests/test-des.c, tests/test-gc-des.c: New file.
42554
42555 2005-10-21  Simon Josefsson  <jas@extundo.com>
42556
42557         * modules/arctwo, modules/arctwo-tests: New files.
42558
42559         * tests/test-arctwo.c: New file.
42560
42561         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
42562
42563         * tests/test-gc-arctwo.c: New file.
42564
42565 2005-10-21  Simon Josefsson  <jas@extundo.com>
42566
42567         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
42568         Bruno Haible <bruno@clisp.org>.
42569
42570         * m4/gc-des.m4: New file.
42571
42572 2005-10-21  Simon Josefsson  <jas@extundo.com>
42573
42574         * m4/arctwo.m4: New file.
42575
42576         * m4/gc-arctwo.m4: New file.
42577
42578 2005-10-21  Simon Josefsson  <jas@extundo.com>
42579
42580         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
42581         block.
42582
42583 2005-10-21  Simon Josefsson  <jas@extundo.com>
42584
42585         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
42586         <bruno@clisp.org>.
42587
42588         * lib/hmac-sha1.c (hmac_sha1): Likewise.
42589
42590         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
42591         Bruno Haible <bruno@clisp.org>.
42592
42593         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
42594         <bruno@clisp.org>.
42595
42596 2005-10-21  Simon Josefsson  <jas@extundo.com>
42597
42598         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
42599
42600 2005-10-21  Simon Josefsson  <jas@extundo.com>
42601
42602         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
42603
42604 2005-10-21  Simon Josefsson  <jas@extundo.com>
42605
42606         * lib/des.h, lib/des.c: New files.
42607
42608         * lib/gc-gnulib.c: Support DES.c
42609
42610 2005-10-21  Simon Josefsson  <jas@extundo.com>
42611
42612         * lib/arctwo.h, lib/arctwo.c: New files.
42613
42614         * lib/gc-gnulib.c: Support ARCTWO.
42615
42616 2005-10-21  Simon Josefsson  <jas@extundo.com>
42617
42618         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
42619         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
42620
42621 2005-10-21  Simon Josefsson  <jas@extundo.com>
42622
42623         * gnulib-tool (func_import, func_create_testdir): Define automake
42624         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
42625         Makefile.am snippet),
42626         suggested by Bruno Haible <bruno@clisp.org>.
42627
42628         * modules/gc (Makefile.am): Use it.
42629
42630 2005-10-21  Bruno Haible  <bruno@clisp.org>
42631
42632         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
42633         patch.
42634
42635 2005-10-19  Simon Josefsson  <jas@extundo.com>
42636
42637         * tests/test-gc-rijndael.c: New file.
42638
42639         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
42640
42641 2005-10-19  Simon Josefsson  <jas@extundo.com>
42642
42643         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
42644         interface too.
42645
42646 2005-10-19  Simon Josefsson  <jas@extundo.com>
42647
42648         * tests/test-gc-arcfour.c: New file.
42649
42650         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
42651
42652 2005-10-19  Simon Josefsson  <jas@extundo.com>
42653
42654         * modules/gc-md4, modules/gc-md4-tests: New file.
42655
42656         * tests/test-gc-md4.c: New file.
42657
42658 2005-10-19  Simon Josefsson  <jas@extundo.com>
42659
42660         * m4/gc-md4.m4: New file.
42661
42662 2005-10-19  Simon Josefsson  <jas@extundo.com>
42663
42664         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
42665         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
42666         <kasal@ucw.cz>.
42667
42668 2005-10-19  Simon Josefsson  <jas@extundo.com>
42669
42670         * m4/gc-arcfour.m4: New file.
42671
42672         * m4/gc-rijndael.m4: New file.
42673
42674 2005-10-19  Simon Josefsson  <jas@extundo.com>
42675
42676         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
42677
42678 2005-10-19  Simon Josefsson  <jas@extundo.com>
42679
42680         * lib/gc-gnulib.c: Support ARCFOUR.
42681
42682 2005-10-19  Simon Josefsson  <jas@extundo.com>
42683
42684         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
42685         support.
42686
42687         * lib/gc.h: Add ECB enum type.
42688
42689         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
42690
42691 2005-10-18  Simon Josefsson  <jas@extundo.com>
42692
42693         * tests/test-md5.c: New file.
42694
42695         * modules/md5-tests: New file.
42696
42697 2005-10-18  Simon Josefsson  <jas@extundo.com>
42698
42699         * tests/test-md4.c: New file.
42700
42701         * modules/md4, modules/md4-tests: New files.
42702
42703 2005-10-18  Simon Josefsson  <jas@extundo.com>
42704
42705         * m4/md4.m4: New file.
42706
42707 2005-10-18  Simon Josefsson  <jas@extundo.com>
42708
42709         * lib/md4.h, lib/md4.c: New files, based on md5.?.
42710
42711 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
42712
42713         * gnulib-tool (func_create_testdir): Omit the second check whether
42714         BUILT_SOURCES in nonempty.
42715
42716 2005-10-17  Simon Josefsson  <jas@extundo.com>
42717
42718         * tests/test-rijndael.c: New file.
42719
42720 2005-10-17  Simon Josefsson  <jas@extundo.com>
42721
42722         * modules/sha1: Depend on stdint instead of md5.
42723
42724         * modules/md5: Depend on stdint, remove uint32_t.
42725
42726 2005-10-17  Simon Josefsson  <jas@extundo.com>
42727
42728         * modules/gc-sha1-tests: New file.
42729
42730         * tests/test-gc-sha1.c: New file.
42731
42732 2005-10-17  Simon Josefsson  <jas@extundo.com>
42733
42734         * m4/md5.m4: Remove call to uint32_t.m4.
42735
42736 2005-10-17  Simon Josefsson  <jas@extundo.com>
42737
42738         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
42739
42740         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
42741         md5.h.
42742
42743         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
42744
42745         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
42746
42747 2005-10-17  Simon Josefsson  <jas@extundo.com>
42748
42749         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
42750
42751 2005-10-17  Simon Josefsson  <jas@extundo.com>
42752
42753         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
42754
42755 2005-10-17  Simon Josefsson  <jas@extundo.com>
42756
42757         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
42758
42759         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
42760
42761 2005-10-17  Bruno Haible  <bruno@clisp.org>
42762
42763         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
42764         that it can also be used in a test.
42765
42766 2005-10-16  Bruno Haible  <bruno@clisp.org>
42767
42768         * gnulib-tool (func_emit_tests_Makefile_am): Also define
42769         TESTS_ENVIRONMENT, so that individual tests can augment it.
42770
42771         * gnulib-tool (func_create_testdir): Use an intermediate target for
42772         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
42773         macros, like $(ALLOCA_H), which cannot be passed through the command
42774         line.
42775
42776 2005-10-15  Simon Josefsson  <jas@extundo.com>
42777
42778         * modules/rijndael-tests: New file.
42779
42780         * modules/rijndael: New file.
42781
42782 2005-10-15  Simon Josefsson  <jas@extundo.com>
42783
42784         * m4/rijndael.m4: New file.
42785
42786 2005-10-15  Simon Josefsson  <jas@extundo.com>
42787
42788         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
42789
42790         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
42791
42792 2005-10-14  Simon Josefsson  <jas@extundo.com>
42793
42794         * tests/test-arcfour.c: New file.
42795
42796         * modules/arcfour, modules/arcfour-tests: New files.
42797
42798 2005-10-14  Simon Josefsson  <jas@extundo.com>
42799
42800         * m4/arcfour.m4: New file.
42801
42802 2005-10-14  Simon Josefsson  <jas@extundo.com>
42803
42804         * lib/arcfour.h, lib/arcfour.c: New files.
42805
42806 2005-10-14  Roland McGrath  <roland@redhat.com>
42807
42808         Import from libc.  [BZ #1331]
42809         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
42810         macro argument.
42811         Reported by Matej Vela <vela@debian.org>.
42812
42813 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42814
42815         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
42816         include <wchar.h>; no longer needed.
42817
42818 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42819
42820         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
42821
42822 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
42823         and  Ulrich Drepper  <drepper@redhat.com>
42824
42825         Import from libc.
42826         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
42827         instead of inline stream orientation test and two separate
42828         function calls.  Pay no attention to USE_IN_LIBIO.
42829
42830 2005-10-13  Simon Josefsson  <jas@extundo.com>
42831
42832         * modules/gc-hmac-md5-tests: New file.
42833
42834         * tests/test-gc-hmac-sha1.c: New file.
42835
42836         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
42837
42838         * modules/gc-hmac-md5-tests: New file.
42839
42840         * tests/test-gc-md5.c: New file.
42841
42842         * modules/gc-md5-tests: New file.
42843
42844 2005-10-13  Simon Josefsson  <jas@extundo.com>
42845
42846         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
42847         Move memory allocation outside of loop.
42848
42849 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
42850
42851         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
42852         intermediate directory is in a read-only file system.  Problem
42853         reported by Eric Blake.
42854
42855 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
42856
42857         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
42858
42859 2005-10-12  Simon Josefsson  <jas@extundo.com>
42860
42861         * tests/test-hmac-sha1.c: New file.
42862
42863         * modules/hmac-sha1-tests: New file.
42864
42865         * modules/hmac-sha1: New file.
42866
42867 2005-10-12  Simon Josefsson  <jas@extundo.com>
42868
42869         * modules/gc-sha1: New file.
42870
42871 2005-10-12  Simon Josefsson  <jas@extundo.com>
42872
42873         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
42874
42875         * tests/test-gc-pbkdf2-sha1.c: New file.
42876
42877 2005-10-12  Simon Josefsson  <jas@extundo.com>
42878
42879         * modules/gc-md5, modules/gc-hmac-md5: New files.
42880
42881         * modules/gc (Files): Remove md5, memxor and hmac files.
42882
42883 2005-10-12  Simon Josefsson  <jas@extundo.com>
42884
42885         * m4/gc-pbkdf2-sha1.m4: New file.
42886
42887         * m4/gc-hmac-sha1.m4: New file.
42888
42889         * m4/gc-sha1: New file.
42890
42891         * m4/hmac-sha1.m4: New file.
42892
42893 2005-10-12  Simon Josefsson  <jas@extundo.com>
42894
42895         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
42896
42897         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
42898
42899 2005-10-12  Simon Josefsson  <jas@extundo.com>
42900
42901         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
42902         suggested by Bruno Haible <bruno@clisp.org>.
42903
42904 2005-10-12  Simon Josefsson  <jas@extundo.com>
42905
42906         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
42907
42908 2005-10-12  Simon Josefsson  <jas@extundo.com>
42909
42910         * lib/gc-pbkdf2-sha1.c: New file.
42911
42912         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
42913
42914 2005-10-12  Simon Josefsson  <jas@extundo.com>
42915
42916         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
42917
42918         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
42919
42920 2005-10-12  Simon Josefsson  <jas@extundo.com>
42921
42922         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
42923         GC_USE_HMAC_MD5, respectively.
42924
42925         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
42926         (gc_md5): Fix typo.
42927
42928         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
42929
42930         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
42931
42932         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
42933
42934 2005-10-12  Bruno Haible  <bruno@clisp.org>
42935
42936         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
42937         Reported by Stepan Kasal <kasal@ucw.cz>.
42938
42939 2005-10-11  Simon Josefsson  <jas@extundo.com>
42940
42941         * tests/test-crc.c: New file.
42942
42943         * modules/crc, modules/crc-tests: New files.
42944
42945 2005-10-11  Simon Josefsson  <jas@extundo.com>
42946
42947         * m4/crc.m4: New file.
42948
42949 2005-10-11  Simon Josefsson  <jas@extundo.com>
42950
42951         * lib/gc.h: Add gc_hash and gc_hash_buffer.
42952
42953         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
42954
42955         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
42956
42957 2005-10-11  Simon Josefsson  <jas@extundo.com>
42958
42959         * lib/crc.h, lib/crc.c: New files.
42960
42961         * lib/gc.h (gc_hash_buffer): Add doc.
42962
42963 2005-10-11  Bruno Haible  <bruno@clisp.org>
42964
42965         * modules/c-strcasestr: New file.
42966         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
42967
42968 2005-10-11  Bruno Haible  <bruno@clisp.org>
42969
42970         * modules/c-strcase: New file.
42971         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
42972
42973 2005-10-11  Bruno Haible  <bruno@clisp.org>
42974
42975         * lib/strcasecmp.c: Include limits.h.
42976         (strcasecmp): Avoid integer overflow on exotic platforms.
42977         * lib/strncasecmp.c: Include limits.h.
42978         (strncasecmp): Avoid integer overflow on exotic platforms.
42979         Reported by Paul Eggert.
42980
42981 2005-10-11  Bruno Haible  <bruno@clisp.org>
42982
42983         * lib/c-strcasestr.h: New file, from GNU gettext.
42984         * lib/c-strcasestr.c: New file, from GNU gettext.
42985
42986 2005-10-11  Bruno Haible  <bruno@clisp.org>
42987
42988         * lib/c-strcase.h: New file, from GNU gettext.
42989         * lib/c-strcasecmp.c: New file, from GNU gettext.
42990         * lib/c-strncasecmp.c: New file, from GNU gettext.
42991
42992 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42993
42994         * modules/mempcpy (License): GPL -> LGPL.
42995         * modules/strchrnul (License): Likewise.
42996         * modules/sysexits (License): Likewise.
42997
42998 2005-10-08  Simon Josefsson  <jas@extundo.com>
42999
43000         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
43001
43002 2005-10-07  Simon Josefsson  <jas@extundo.com>
43003
43004         * m4/memxor.m4: Remove gl_C_RESTRICT call.
43005
43006 2005-10-06  Simon Josefsson  <jas@extundo.com>
43007
43008         * tests/test-hmac-md5.c: New file.
43009
43010         * modules/hmac-md5-tests: New file.
43011
43012         * modules/hmac-md5: New file.
43013
43014 2005-10-06  Simon Josefsson  <jas@extundo.com>
43015
43016         * m4/hmac-md5.m4: New file.
43017
43018         * m4/memxor.m4: Require gl_C_RESTRICT.
43019
43020 2005-10-06  Simon Josefsson  <jas@extundo.com>
43021
43022         * lib/memxor.c (memxor): Avoid casts and warnings.
43023
43024 2005-10-06  Simon Josefsson  <jas@extundo.com>
43025
43026         * lib/hmac-md5.c: New file.
43027
43028         * lib/hmac.h: New file.
43029
43030 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
43031
43032         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
43033         promotes to int, not unsigned int, to catch the AIX 5.3
43034         compiler bug.
43035
43036 2005-10-05  Simon Josefsson  <jas@extundo.com>
43037
43038         * modules/memxor: New file.
43039
43040         * modules/iconv (Files): Move config.rpath to havelib, it is used
43041         there.
43042
43043         * modules/havelib (Files): Add config.rpath.
43044
43045 2005-10-05  Simon Josefsson  <jas@extundo.com>
43046
43047         * m4/memxor.m4: New file.
43048
43049 2005-10-05  Simon Josefsson  <jas@extundo.com>
43050
43051         * lib/memxor.c (memxor): Fix compiler error.
43052
43053         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
43054         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
43055
43056         * lib/memxor.h, lib/memxor.c: New files.
43057
43058         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
43059         we assume all systems have it, suggested by Jim Meyering
43060         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
43061         any systems lack sys/socket.h; mingw32 is known to lack it, but we
43062         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
43063         same reasons.
43064
43065 2005-10-05  Simon Josefsson  <jas@extundo.com>
43066
43067         * config/srclist.txt: Add glibc bug 1423 for md5.h.
43068
43069 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
43070
43071         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
43072         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
43073         needed, since the source code now assumes these .h files.
43074
43075 2005-10-05  Derek Price  <derek@ximbiot.com>
43076
43077         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
43078
43079 2005-10-05  Bruno Haible  <bruno@clisp.org>
43080
43081         * modules/stdint (License): Change to LGPL.
43082
43083 2005-10-04  Simon Josefsson  <jas@extundo.com>
43084
43085         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
43086         D. Baushke" <mdb@gnu.org>.
43087
43088 2005-10-04  Bruno Haible  <bruno@clisp.org>
43089
43090         * lib/verify.h (verify_true): Provide alternative definition for C++.
43091
43092 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
43093
43094         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
43095         (SSIZE_MAX): New macro, if not already defined.
43096         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
43097         than 2 GiB.
43098
43099 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
43100
43101         Sync from coreutils.
43102         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
43103         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
43104         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
43105         ULLONG_MAX doesn't work with 2.7.2.1.
43106
43107 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
43108
43109         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
43110         From Ben Pfaff.
43111
43112         * modules/exclude (Depends-on): Depend on verify.
43113         * modules/strtoimax (Depends-on): Likewise.
43114         * modules/utimecmp (Depends-on): Likewise.
43115
43116 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
43117
43118         * lib/exclude.c: Include verify.h.
43119         (verify): Remove.  All callers changed to use verify.h's version.
43120         * lib/strtoimax.c: Likewise.
43121         * lib/utimecmp.c: Likewis.e
43122
43123         Sync from coreutils.
43124         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
43125         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
43126         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
43127         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
43128         bother returning ENOSYS if settimeofday or stime fails; just let
43129         them return whatever errno they want to return.
43130         * lib/utimens.c: Include unistd.h, for dup2.
43131         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
43132         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
43133
43134 2005-10-02  Jim Meyering  <jim@meyering.net>
43135
43136         Sync from coreutils.
43137         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
43138         from glibc-2.2.5 that fails for read-only files.
43139
43140 2005-10-02  Jim Meyering  <jim@meyering.net>
43141
43142         Sync from coreutils.
43143         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
43144         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
43145         `#if HAVE_CONFIG_H'.
43146         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
43147         Remove AT_FDCWD test.
43148         Do not consume the fd unless successful.
43149         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
43150         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
43151         block, so that we don't even try to compile it if settimeofday is
43152         available.  This works around a compilation failure on OSF1 V5.1,
43153         due to stime requiring a `long int*' while tv_sec is `int'.
43154
43155 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
43156
43157         Sync from coreutils.
43158         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
43159         against `yes', rather than just testing for nonempty.
43160
43161 2005-10-01  Simon Josefsson  <jas@extundo.com>
43162
43163         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
43164         and Darwin.
43165
43166         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
43167         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
43168         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
43169         freeaddrinfo and gai_strerror are declared by the POSIX headers.
43170         Check if struct addrinfo is declared.
43171
43172 2005-10-01  Simon Josefsson  <jas@extundo.com>
43173
43174         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
43175         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
43176         AI_* and EAI_* definitions.  Protect function declarations.
43177
43178 2005-10-01  Jim Meyering  <jim@meyering.net>
43179
43180         Sync from coreutils.
43181
43182         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
43183         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
43184         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
43185         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
43186         in the inet and nsl libraries.  Required on Solaris 5.7.
43187
43188 2005-10-01  Jim Meyering  <jim@meyering.net>
43189
43190         Sync from coreutils.
43191         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
43192         in the inet and nsl libraries.  Required on Solaris 5.7.
43193
43194 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
43195
43196         * lib/getdelim.c (getdelim): Remove unused variables.
43197
43198 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
43199
43200         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
43201         so that the code works even with ancient cpp.  Portability problem
43202         with GCC 2.7.2.1 reported by Thomas M.Ott.
43203
43204 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
43205
43206         * modules/regex (Depends-on): Add strcase.
43207
43208         * modules/gethostname (Licence): Change from GPL to LGPL, since
43209         gethostname.c is a trivial implementation of a standard library
43210         function.
43211         * modules/poll (License): Change from GPL to LGPL, since it's
43212         derived from LGPL code.
43213
43214 2005-09-27  Jim Meyering  <jim@meyering.net>
43215
43216         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
43217         HAVE_CONFIG_H.
43218
43219         * lib/intprops.h (signed_type_or_expr__): Define.
43220         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
43221         for unsigned types.
43222
43223 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
43224
43225         * lib/verify.h (verify_expr): Remove, replacing with:
43226         (verify_true): New macro that returns true instead of void.
43227         (verify_type__): Remove.
43228         (verify): Use verify_true rather than verify_type__.
43229
43230 2005-09-26  Bruno Haible  <bruno@clisp.org>
43231
43232         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
43233         is necessary.
43234         (lib_SOURCES): Remove mbchar.c.
43235         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
43236         (Files): Add m4/mbrtowc.m4.
43237         * modules/mbiter: Likewise.
43238         * modules/mbuiter: Likewise.
43239
43240 2005-09-26  Bruno Haible  <bruno@clisp.org>
43241
43242         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
43243         compile mbchar.c if they are not both present.
43244         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
43245         * m4/mbiter.m4 (gl_MBITER): Likewise.
43246         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
43247         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
43248         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
43249
43250 2005-09-25  Jim Meyering  <jim@meyering.net>
43251
43252         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
43253         also uses socklen_t.
43254
43255 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
43256
43257         * lib/utimens.c (ENOSYS): Define if not already defined.
43258         (futimens): Support having a null PATH if the file descriptor
43259         is nonnegative.
43260
43261         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
43262         Remove.
43263         (__attribute): Define to empty unless GCC 3.1 or later.
43264         This works around a core dump on OpenBSD 3.4, which has GCC
43265         2.95.3, which dumps core when given __attribute__(()).  It also
43266         simplifies other tests, since we really don't want to bother with
43267         worrying about which ancient version of GCC supported what.
43268         Original problem reported by Yoann Vandoorselaere, with part of
43269         the fix suggested by Derek Price.
43270
43271 2005-09-24  Jim Meyering  <jim@meyering.net>
43272
43273         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
43274         so we can once again use a positive bitfield width of 1 -- now we
43275         don't have to explain why we were using a bitfield width of 2.
43276
43277 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43278
43279         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
43280         and similarly for the other external symbols.  Problem reported
43281         by James Gallager.
43282
43283         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
43284         bug reported by Jim Meyering.
43285
43286         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
43287         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
43288         not needed, since socklen is a prerequisite module.
43289
43290 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43291
43292         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
43293         Problem reported by Eric Blake.
43294         (getaddrinfo): Initialize se so that it's not garbage.
43295         Redo internal storage allocation so that it doesn't make unportable
43296         assumptions about alignment.
43297         Fix a memory leak.
43298
43299         * lib/utimens.c (futimens): Use futimesat if available.
43300         Prefer it to futimes since it doesn't have the futimes bug.
43301
43302         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
43303         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
43304         Instead, declare a function that returns a pointer to an array,
43305         and use verify_type__ to declare the size of the array.
43306         Problem and germ of a solution reported by Bruno Haible.
43307         (verify_type__): Use 2, not 1, for bitfield size, to avoid
43308         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
43309
43310 2005-09-23  Jim Meyering  <jim@meyering.net>
43311
43312         Sync from coreutils.
43313         Correct build failure (socklen_t not defined) on at least
43314         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
43315         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
43316
43317 2005-09-23  Jim Meyering  <jim@meyering.net>
43318
43319         * modules/getaddrinfo (Depends-on): Add socklen.
43320
43321 2005-09-23  Bruno Haible  <bruno@clisp.org>
43322
43323         * tests/test-verify.c: New file.
43324
43325 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43326
43327         Sync from coreutils.
43328
43329         * modules/argmatch (Depends-on): Add verify.
43330         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
43331         unistd-safer.
43332         * modules/save-cwd (Depends-on): Likewise.
43333
43334         * modules/openat (Files): Add lib/openat-die.c.
43335         (Depends-on): Remove error, exitfail.
43336         Add dirname.
43337
43338         * modules/verify: New file.
43339         * MODULES.html.sh (Diagnostics <assert.h>): New section,
43340         with "verify" module.
43341
43342 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43343
43344         Sync from coreutils.
43345
43346         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
43347         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
43348         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
43349         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
43350         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
43351         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
43352         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
43353         Don't bother checking for string.h, stdlib.h, unistd.h.
43354         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
43355         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
43356         module's job.
43357         * m4/jm-macros.m4 (gl_MACROS): Likewise.
43358         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
43359
43360         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
43361         (gl_GETDATE): Use it.
43362
43363         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
43364
43365 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43366
43367         Sync from coreutils.
43368
43369         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
43370         stat-time.h.
43371         * lib/argmatch.h: Include verify.h
43372         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
43373         (ARGMATCH_ASSERT): Remove; unused.
43374         * lib/canonicalize.c: Assume STDC_HEADERS.
43375         * lib/exclude.c: Include "strcase.h".
43376         * lib/regex_internal.h [!defined _LIBC]: Likewise.
43377         * lib/getusershell.c: Include stdio--.h rather than stdio.h
43378         and stdio-safer.h.
43379         (getusershell): Call fopen, not fopen_safer.
43380         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
43381         Do not include unistd-safer.h.
43382         (save_cwd): Don't call fd_safer; no longer needed
43383         now that we include fcntl--.h.
43384
43385         * lib/getdate.y (relative_time): New type.
43386         (RELATIVE_TIME_0): New constant.
43387         (parser_control): Use relative_time instead of doing it ourselves.
43388         (%union): Add new relative_time rel member.
43389         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
43390         Now typeless.
43391         (relunit, relunit_snumber): Now of type rel.
43392         (zone, rel, relunit, get_date): Adjust to above changes.
43393
43394         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
43395         Do not include unistd-safer.h.
43396         (getloadavg): Don't call fd_safer; no longer needed
43397         now that we include fcntl--.h.
43398
43399         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
43400         (make_dir_parents): Treat ENOSYS like EEXIST.
43401
43402         Improve quality of diagnostics on restore_cwd failure.
43403         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
43404         (make_dir_parents): Last arg is now int * (for errno), not bool *.
43405         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
43406         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
43407         each time through the loop.  Do not diagnose restore_cwd failure;
43408         that is the caller's job (and perhaps the caller does not care).
43409
43410         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
43411         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
43412         If the file already exists but is not a directory, don't bother
43413         to try to make its parents.
43414         Close potential file descriptor leak if we can't chdir("/") (!).
43415         Don't always return true if chdir($PWD) fails; return true only
43416         if the requested action was done successfully (except for the
43417         chdir($PWD)).
43418         Don't log final directory unless we actually made it.
43419         Refactor to avoid duplicate code to fix up permissions.
43420         Don't attempt to fix up parent permissions if chdir($PWD) fails.
43421
43422         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
43423         to make it a bit faster and (I hope) clearer.
43424         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
43425         Fix bug in formats like %2N.
43426
43427         * lib/verify.h: New file.
43428
43429 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43430
43431         Sync from coreutils.
43432         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
43433
43434 2005-09-22  Jim Meyering  <jim@meyering.net>
43435
43436         Sync from coreutils.
43437
43438         * m4/lstat.m4 (gl_FUNC_LSTAT):
43439         Use AC_LIBSOURCES to require lstat.c and lstat.h.
43440         Remove obsolete comment.
43441         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
43442         * m4/xstrtod.m4: Likewise.
43443
43444         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
43445
43446 2005-09-22  Jim Meyering  <jim@meyering.net>
43447
43448         Sync from coreutils.
43449
43450         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
43451
43452         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
43453         the .tm_year member, since otherwise gcc-4.0 would now warn about
43454         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
43455
43456         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
43457         order to avoid an unsuppressible warning from gcc on 64-bit systems.
43458
43459         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
43460         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
43461         when run in a time zone for which daylight savings time is in effect
43462         for the starting date.
43463
43464         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
43465         stop us from restricting permissions of just-created absolute-named
43466         directories.
43467         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
43468         to restore initial working directory.
43469         * lib/mkdir-p.c (make_dir_parents): New parameter:
43470         different_working_dir, to tell caller if/when we change the working
43471         directory and are unable to return to the initial one.
43472         * lib/mkdir-p.h (make_dir_parents): Update prototype.
43473         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
43474         `return false'.  This fixes a bug introduced on 2004-07-30.
43475
43476         * lib/openat.c (fdopendir): Be sure to close the supplied
43477         file descriptor before returning.  This makes our replacement
43478         implementation a little closer to Solaris's, where fdopendir
43479         ties the file descriptor to the returned DIR* pointer.
43480         * lib/openat.c (unlinkat): New function.
43481         * lib/openat.h (unlinkat): Add prototype.
43482         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
43483         (openat_restore_fail): Rename from openat_restore_die.
43484         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
43485
43486         Provide an alternative to exiting immediately upon save_cwd or
43487         restore_cwd failure.  Now, an application can arrange e.g.,
43488         to perform a longjump in that case.
43489         * lib/openat.c: Include dirname.h.
43490         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
43491         (rpl_openat, fdopendir, fstatat): Call openat_save_die
43492         and openat_restore_die rather than calling error directly.
43493         Don't include "error.h" or "exitfail.h"; they're no longer needed.
43494
43495         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
43496         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
43497         define.
43498
43499         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
43500         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
43501                             int utc, int nanoseconds);
43502         Background:
43503         date should not have to allocate a megabyte of virtual memory to
43504         handle a format argument like +%1048575T.  When implemented with
43505         strftime, it must allocate such a buffer, use strftime to fill it
43506         in, print it, then free it.
43507         With fprintftime, it simply prints everything and exits.
43508         With no need for memory allocation, that's one fewer way to fail.
43509         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
43510         optional field width, not before, so we accept %9:z, not %:9z.
43511         (my_strftime): Be sure to use L_('x') for literals.
43512
43513         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
43514         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
43515         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
43516         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
43517         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
43518         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
43519         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
43520         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
43521         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
43522         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
43523         * lib/xgethostname.c, lib/xreadlink.c:
43524         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
43525
43526         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
43527         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
43528         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
43529         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
43530         and don't include <sys/file.h>).
43531
43532 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
43533
43534         Sync from coreutils.
43535
43536         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
43537         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
43538         [!LDAV_DONE]: Avoid unused variable warning.
43539
43540 2005-09-21  Bruno Haible  <bruno@clisp.org>
43541
43542         * lib/unicodeio.h (unicode_to_mb): New declaration.
43543
43544 2005-09-20  Derek Price  <derek@ximbiot.com>
43545
43546         * lib/getaddrinfo.c: Don't include <netdb.h> included from
43547         getaddrinfo.h.
43548
43549 2005-09-20  Bruno Haible  <bruno@clisp.org>
43550
43551         * gnulib-tool: Remove trailing slashes from the values specified for
43552         --source-base, --m4-base, --tests-base, --aux-dir.
43553         Suggested by Simon Josefsson <jas@extundo.com>.
43554
43555 2005-09-20  Bruno Haible  <bruno@clisp.org>
43556
43557         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
43558         func_modules_to_filelist, func_import, func_create_testdir): Make all
43559         sorting results locale-independent, so that gnulib-cache.m4 doesn't
43560         change when gnulib-tool is invoked in a different locale.
43561
43562 2005-09-19  Simon Josefsson  <jas@extundo.com>
43563
43564         * m4/socklen.m4: Fix typo.
43565
43566 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43567
43568         Use a consistent style for including <config.h>.
43569         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
43570         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
43571         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
43572         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
43573         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
43574         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
43575         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
43576         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
43577         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
43578         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
43579         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
43580         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
43581         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
43582         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
43583         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
43584         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
43585         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
43586         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
43587         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
43588         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
43589         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
43590         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
43591         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
43592         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
43593         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
43594         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
43595         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
43596         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
43597         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
43598         lib/xstrtoumax.c, lib/yesno.c:
43599         Standardize inclusion of config.h.
43600         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
43601         lib/inttostr.h:  Removed inclusion of config.h from header files.
43602         * lib/inttostr.c:  Adjusted in-tree users.
43603         * lib/timespec.h: Remove superfluous warning to include config.h.
43604         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
43605         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
43606         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
43607         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
43608         config.h with HAVE_CONFIG_H.
43609
43610 2005-09-19  Jim Meyering  <jim@meyering.net>
43611
43612         * modules/pathmax (License): Change to LGPL.
43613
43614 2005-09-19  Derek Price  <derek@ximbiot.com>
43615
43616         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
43617
43618 2005-09-19  Bruno Haible  <bruno@clisp.org>
43619
43620         * gnulib-tool (import): Provide default for --tests-base.
43621
43622 2005-09-19  Bruno Haible  <bruno@clisp.org>
43623
43624         * doc/quote.texi: New file, extracted from gnulib.texi.
43625         * doc/ctime.texi: New file, extracted from gnulib.texi.
43626         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
43627         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
43628         * doc/gnulib.texi: Include them.
43629
43630 2005-09-18  Bruno Haible  <bruno@clisp.org>
43631
43632         Portability fix.
43633         * gnulib-tool (func_readlink): New function.
43634         (func_ln_if_changed): Use it.
43635
43636 2005-09-18  Bruno Haible  <bruno@clisp.org>
43637
43638         * gnulib-tool: Support --with-tests also with --import.
43639         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
43640         (func_import): Use variables $testsbase and $inctests. Emit a
43641         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
43642         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
43643         SUBDIRS += $testsdir.
43644         (func_create_testdir): Update.
43645
43646 2005-09-18  Bruno Haible  <bruno@clisp.org>
43647
43648         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
43649         instead of $dry_run.
43650         (func_cp_if_changed, func_mv_if_changed): Remove functions.
43651         (func_ln_if_changed): Don't handle dry-run here.
43652         (func_import): In dry-run mode, detect more precisely which actions
43653         would be performed, and don't use "...ing" verbs.
43654
43655 2005-09-18  Bruno Haible  <bruno@clisp.org>
43656
43657         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
43658         (func_import): Use join on two temporary files instead of three nested
43659         loops, in order to determine which files are new or old.
43660
43661 2005-09-18  Bruno Haible  <bruno@clisp.org>
43662
43663         * gnulib-tool (func_import): Comment out code that spits out the
43664         new files with --dry-run.
43665
43666 2005-09-18  Bruno Haible  <bruno@clisp.org>
43667
43668         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
43669
43670 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43671
43672         * lib/stat-time.h: New file.
43673         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
43674         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
43675         in a different way.
43676         (timespec_cmp): New function.
43677         * lib/utimecmp.c: Include stat-time.h.
43678         (SYSCALL_RESOLUTION): Depend on whether various struct stat
43679         members exist, not on the obsolescent ST_MTIM_NSEC.
43680         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
43681
43682 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43683
43684         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
43685
43686 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43687
43688         * MODULES.html.sh (File system functions): Add stat-time.
43689         * modules/stat-time: New file.
43690         * modules/timespec (Files): Remove m4/st_mtim.m4; this
43691         is now done in a different way, by the stat-time module.
43692         * modules/utimecmp (Depends-on): Add stat-time.
43693
43694 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43695
43696         * m4/st_mtim.m4: Remove.  Superseded by...
43697         * m4/stat-time.m4: New file.
43698         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
43699         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
43700
43701 2005-09-15  Derek Price  <derek@ximbiot.com>
43702
43703         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
43704
43705 2005-09-15  Derek Price  <derek@ximbiot.com>
43706
43707         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
43708         * lib/regex_internal.c: Ditto, using this...
43709         (__GNUC_PREREQ): ...new macro.
43710         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
43711         using...
43712         (__GNUC_PREREQ): ...this new macro.
43713
43714         * lib/strstr.h: Include string.h. Define strstr as a macro here.
43715
43716 2005-09-15  Derek Price  <derek@ximbiot.com>
43717             Paul Eggert  <eggert@cs.ucla.edu>
43718
43719         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
43720         changes, consolidating in...
43721         * lib/regex_internal.h: ...this file.
43722
43723 2005-09-13  Jim Meyering  <jim@meyering.net>
43724
43725         * lib/canon-host.c: Filter through gnu indent and reword comments
43726         slightly.
43727         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
43728
43729 2005-09-13  Derek Price  <derek@ximbiot.com>
43730
43731         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
43732         failure.
43733         Reported by Jim Meyering  <jim@meyering.net>.
43734
43735 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
43736
43737         * lib/base64.c: Typo.
43738         (base64_encode): Put b64str in initialized data section.
43739
43740 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
43741
43742         Merge glibc and coreutils changes into gnulib, plus a few
43743         extra fixes.
43744         * lib/md5.c: Use #error rather than a string.
43745         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
43746         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
43747         (__attribute__): Define to empty for non recent-GCC.
43748         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
43749         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
43750         Renamed from their non-__ counterparts, with new macros replacing
43751         them if not _LIBC.  Add __THROW attribute.
43752         (rol): Remove.
43753         (struct md5_ctx): Align buffer if using GCC.
43754         * lib/sha1.h (struct sha1_ctx): Likewise.
43755         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
43756         The old name was backwards.
43757         (NOTSWAP): Remove; not used.
43758         (rol): New macro, moved here from md5.h.
43759         (sha1_process_block): Remove a FIXME that doesn't make sense.
43760
43761 2005-09-12  Derek Price  <derek@ximbiot.com>
43762
43763         Return usable errors from canon-host.
43764         * lib/canon-host.h: New file.
43765         * lib/canon-host.c (canon_host): Wrap...
43766         (canon_host_r): ...this new function, which now relies exclusively on
43767         getaddrinfo.
43768         (ch_strerror): New function.
43769         (last_cherror): New global.
43770         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
43771         interface.
43772         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
43773         void *.
43774         (freeaddrinfo): Free ai->ai_canonname when set.
43775
43776 2005-09-12  Derek Price  <derek@ximbiot.com>
43777
43778         Make canon-host require getaddrinfo.
43779         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
43780         AC_LIBSOURCE canon-host.h.  Call...
43781         (gl_PREREQ_CANON_HOST): ...this new function, which requires
43782         gl_GETADDRINFO.
43783         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
43784
43785 2005-09-12  Derek Price  <derek@ximbiot.com>
43786
43787         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
43788         LGPL.
43789         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
43790
43791 2005-09-12  Derek Price  <derek@ximbiot.com>
43792
43793         * lib/gai_strerror.c: Include config.h when available.  Include
43794         getaddrinfo.h before other headers to test interface.
43795         Reported by Larry Jones <lawrence.jones@ugs.com>.
43796
43797 2005-09-12  Derek Price  <derek@ximbiot.com>
43798             Paul Eggert  <eggert@cs.ucla.edu>
43799
43800         * modules/glob (Files): Add glob-libc.h.
43801
43802 2005-09-12  Derek Price  <derek@ximbiot.com>
43803             Paul Eggert  <eggert@cs.ucla.edu>
43804
43805         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
43806         glob_.h, glob-libc.h.
43807         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
43808
43809 2005-09-12  Derek Price  <derek@ximbiot.com>
43810             Paul Eggert  <eggert@cs.ucla.edu>
43811
43812         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
43813         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
43814         protecting things that should be done only in gnulib contexts.
43815         * lib/glob_.h: New file, containing only the glob things needed for
43816         gnulib.
43817         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
43818         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
43819         (glob, globfree, glob_pattern_p): Now defined simply in terms of
43820         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
43821         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
43822         and to respect the namespace rules better.
43823
43824 2005-09-08  Simon Josefsson  <jas@extundo.com>
43825
43826         * modules/socklen: New file.
43827
43828 2005-09-08  Simon Josefsson  <jas@extundo.com>
43829
43830         * m4/socklen.m4: New file.
43831
43832 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43833
43834         * modules/utimens (Files): Add m4/utimbuf.m4, since
43835         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
43836         Reported by Sergey Poznyakoff.
43837
43838 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43839
43840         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
43841         definitions, since that's the preferred style in glibc.
43842         Fix a minor spacing issue, and update copyright notice to match
43843         glibc's.
43844
43845 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43846
43847         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
43848
43849 2005-09-06  Simon Josefsson  <jas@extundo.com>
43850
43851         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
43852         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
43853
43854 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43855
43856         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
43857         warning.
43858
43859 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43860
43861         * config/srclist.txt: Add glibc bug 1302.
43862
43863 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
43864
43865         Change bitset word type from unsigned int to unsigned long int,
43866         as this has better performance on typical 64-bit hosts.
43867         Port bitset code to hosts with unusual word sizes.
43868         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
43869         (build_collating_symbol):
43870         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
43871         argument is a bitset.  This is merely a style issue, but it makes
43872         it clearer that an entire array is expected.
43873         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
43874         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
43875         Port to the case where bitset_word is not the same as unsigned int.
43876         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43877         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
43878         Likewise.
43879         * lib/regexec.c (check_dst_limits_calc_pos_1,
43880         check_subexp_matching_top):
43881         (build_trtable, group_nodes_into_DFAstates):
43882         Likewise.
43883         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
43884         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
43885         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
43886         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
43887         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
43888         * lib/regcomp.c (optimize_subexps, lower_subexp):
43889         Work even if bitset_word has holes in its bitwise representation.
43890         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
43891         * lib/regexec.c (check_dst_limits_calc_pos_1,
43892         check_subexp_matching_top):
43893         Likewise.
43894         * lib/regex_internal.c (re_string_reconstruct):
43895         Don't assume UCHAR_MAX == 255.
43896         * lib/regex_internal.h (bitset_set_all): Likewise.
43897         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
43898         All uses changed.
43899         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
43900         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
43901         All uses changed.
43902         (BITSET_WORD_MAX): New macro.
43903         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
43904         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
43905         (bitset_empty, bitset_copy):
43906         Prefer sizeof (bitset) to multiplying it out ourselves.
43907         (bitset_not_merge): Remove; unused.
43908         (bitset_contain): Return bool, not unsigned int with one bit on.
43909         All callers changed.
43910         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
43911         alignment than re_node_set; do this by defining a new internal
43912         type struct dests_alloc and using it to allocate memory.
43913
43914 2005-09-05  Bruno Haible  <bruno@clisp.org>
43915
43916         * gnulib-tool (func_import): Fix comparison in handling of symbolic
43917         links.
43918
43919 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
43920
43921         * modules/size_max (Makefile.am): Add size_max.h
43922
43923 2005-09-04  Derek Price  <derek@ximbiot.com>
43924
43925         * gnulib-tool (func_import): Fix reversed $symbolic logic.
43926
43927 2005-09-03  Simon Josefsson  <jas@extundo.com>
43928
43929         * gnulib-tool: Fix typo.
43930
43931 2005-09-03  Simon Josefsson  <jas@extundo.com>
43932
43933         * config/srclist.txt: Add glibc bug 1293.
43934
43935 2005-09-03  Derek Price  <derek@ximbiot.com>
43936
43937         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
43938         From Larry Jones <lawrence.jones@ugs.com>.
43939
43940 2005-09-02  Simon Josefsson  <jas@extundo.com>
43941
43942         * modules/socklen: New file.
43943
43944 2005-09-02  Simon Josefsson  <jas@extundo.com>
43945
43946         * modules/havelib: New module.
43947
43948         * modules/gettext, modules/iconv, modules/lock, modules/readline:
43949         Use havelib.
43950
43951 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43952
43953         Check for arithmetic overflow when calculating sizes, to prevent
43954         some buffer-overflow issues.  These patches are conservative, in the
43955         sense that when I couldn't determine whether an overflow was possible,
43956         I inserted a run-time check.
43957         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
43958         macros.
43959         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
43960         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
43961         (re_xnrealloc, re_x2nrealloc): New inline functions.
43962         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
43963         parse_bracket_exp):
43964         (build_equiv_class, build_charclass): Check for arithmetic overflow
43965         in size expression calculations.
43966         * lib/regex_internal.c (re_string_realloc_buffers):
43967         (build_wcs_upper_buffer, re_node_set_add_intersect):
43968         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
43969         (re_dfa_add_node, register_state): Likewise.
43970         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
43971         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
43972         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
43973         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
43974
43975 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43976
43977         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
43978         m4/ulonglong.m4.  Problem reported by Martin Lambers.
43979
43980 2005-09-02  Bruno Haible  <bruno@clisp.org>
43981
43982         Support for lib vs. lib64 distinction on biarch platforms.
43983         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
43984         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
43985         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
43986
43987 2005-09-02  Bruno Haible  <bruno@clisp.org>
43988
43989         * gnulib-tool (import): In the other first-use case, provide defaults
43990         as well.
43991
43992 2005-09-02  Bruno Haible  <bruno@clisp.org>
43993
43994         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
43995         patches not yet found in the latest gettext release.
43996
43997 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43998
43999         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
44000         to avoid a collision with bits/local_lim.h in glibc.
44001         All uses changed.  Problem reported by Dmitry V. Levin in
44002         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
44003
44004         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
44005         bugs in int versus size_t comparisons.
44006         (re_string_context_at): Fix bug where the code assumed that
44007         Idx is signed.
44008
44009         Use bool where appropriate.
44010         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
44011         All callers changed.
44012         (calc_eclosure_iter): Likewise, for ROOT arg.
44013         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
44014         (build_charclass_op): Likewise, for NON_MATCH arg.
44015         * lib/regex_internal.c (re_string_allocate, re_string_construct):
44016         (re_string_construct_common): Likewise, for ICASE arg.
44017         * lib/regexec.c (re_search_2_stub, re_search_stub):
44018         Likewise, for RET_LEN arg.
44019         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
44020         (set_regs): Likewise, for FL_BACKTRACK arg.
44021         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
44022         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
44023         (calc_eclosure_iter, parse_bracket_exp):
44024         Use bool for internal variables that are booleans.
44025         * lib/regexec.c (re_search_internal, check_matching,
44026         proceed_next_node):
44027         (set_regs, build_sifted_states, sift_states_bkref):
44028         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
44029         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44030         (find_collation_sequence_value):
44031         Likewise.
44032         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
44033         (re_node_set_compare):
44034         Return bool, not int. All callers changed.
44035         * lib/regexec.c (check_halt_node_context, check_dst_limits):
44036         (build_trtable, check_node_accept): Likewise.
44037         * lib/regex_internal.h: Include stdbool.h.
44038
44039         Fix bugs uncovered when converting to bool.
44040         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
44041         failure instead of charging ahead blindly.
44042         * lib/regex_internal.c (register_state): Likewise.
44043         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
44044         for freeing internal storage.
44045         (group_nodes_into_DFA_states): Use unsigned int, not int, for
44046         bitset pieces used as boolean, to avoid undefined behavior
44047         on hosts that do int overflow checking.
44048
44049 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44050
44051         * config/srclist.txt: Add glibc bugs 1285-1287.
44052
44053 2005-09-01  Jim Meyering  <jim@meyering.net>
44054
44055         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
44056         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
44057         Require gl_STAT_MACROS, too.
44058
44059 2005-09-01  Bruno Haible  <bruno@clisp.org>
44060
44061         * gnulib-tool (import): In the first-use case, provide defaults.
44062
44063 2005-09-01  Bruno Haible  <bruno@clisp.org>
44064
44065         * gnulib-tool (func_import): Remove the .tmp files.
44066
44067 2005-09-01  Bruno Haible  <bruno@clisp.org>
44068
44069         * gnulib-tool (func_import): Fix handling of symbolic links.
44070
44071 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44072
44073         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
44074         old glibc regex code mishandles strings longer than 2**31 bytes.
44075         This patch fixes this when the regex code is used in gnulib
44076         (i.e., outside glibc).
44077
44078         This patch should not affect the use of the regex code inside
44079         glibc.  No doubt this problem also needs to be handled for glibc
44080         as well, but the result will be an incompatible change to the
44081         glibc ABI, and the old ABI will have to be supported too.  That
44082         can be the the subject for another patch.
44083
44084         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
44085         governing whether the rest of this patch is active.  By default,
44086         the macro is disabled and the patch has no effect.
44087         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
44088         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
44089         (struct re_pattern_buffer, re_search, re_search_2, re_match):
44090         (re_match_2, re_set_registers): Use the new types.
44091         * lib/regex_internal.h (Idx, re_hashval_t): New types.
44092         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
44093         New macros.
44094         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
44095         (re_string_context_at, bin_tree_t, re_dfastate_t):
44096         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
44097         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
44098         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
44099         (re_string_char_size_at, re_string_wchar_at):
44100         (re_string_elem_size_at):
44101         Use the new types and macros to port to 64-bit hosts.
44102         Use unsigned types for internal values, so that the code
44103         mostly works even for arrays larger than SSIZE_MAX.
44104         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
44105         (search_duplicated_node, calc_eclosure_iter, fetch_number):
44106         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
44107         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
44108         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
44109         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
44110         (calc_inveclosure, parse_dup_op, build_range_exp):
44111         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
44112         (fetch_number, create_token_tree, mark_opt_subexp):
44113         Likewise.
44114         * lib/regex_internal.c (re_string_construct_common,
44115         create_ci_newstate):
44116         (create_cd_newstate, re_string_allocate, re_string_construct):
44117         (re_string_realloc_buffers, build_wcs_upper_buffer):
44118         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44119         (re_string_reconstruct, re_string_peek_byte_case):
44120         (re_string_fetch_byte_case, re_string_context_at):
44121         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44122         (re_node_set_init_copy, re_node_set_add_intersect):
44123         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44124         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44125         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44126         (re_acquire_state, re_acquire_state_context, register_state):
44127         Likewise.
44128         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
44129         search_cur_bkref_entry):
44130         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
44131         (re_search_internal, re_search_2_stub, re_search_stub)
44132         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
44133         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
44134         (update_cur_sifted_state, check_dst_limits):
44135         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
44136         (check_subexp_limits, sift_states_bkref, merge_state_array):
44137         (check_subexp_matching_top, get_subexp, get_subexp_sub):
44138         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
44139         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44140         (expand_bkref_cache, check_node_accept_bytes):
44141         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
44142         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
44143         (acquire_init_state_context, check_halt_node_context):
44144         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
44145         (sift_states_backward, clean_state_log_if_needed):
44146         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
44147         (find_recover_state, transit_state_sb, transit_state_mb):
44148         (transit_state_bkref, build_trtable, match_ctx_clean):
44149         Likewise.
44150         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
44151         to work around an assumption that REG_MISSING is negative.
44152
44153         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
44154         (seek_collating_symbol_entry) [defined _LIBC]:
44155         (lookup_collation_sequence_value) [defined _LIBC]:
44156         (build_range_exp, build_collating_symbol) [defined _LIBC]:
44157         Use prototypes rather than old-style function definitions.
44158         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
44159         (transit_state_sb) [0]:
44160         (find_collation_sequence_value) [defined _LIBC]: Likewise.
44161
44162         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
44163         rm_eo.
44164
44165         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
44166         (optimize_subexps, lower_subexp):
44167         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
44168         since the signed shift might overflow.  Use 1u<<31 instead.
44169         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
44170         Likewise.
44171         * lib/regexec.c (check_dst_limits_calc_pos_1,
44172         check_subexp_matching_top): Likewise.
44173
44174         * lib/regcomp.c (optimize_subexps, lower_subexp):
44175         Use CHAR_BIT rather than 8, for clarity.
44176         * lib/regexec.c (check_dst_limits_calc_pos_1):
44177         (check_subexp_matching_top): Likewise.
44178         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
44179         have to worry about portability issues when shifting it left.
44180         Remove no-longer-needed test for table_size > 0.
44181         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
44182         in a word, as the resulting behavior is undefined.
44183         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
44184         in one case, a <= should have been an <, and in another case the
44185         whole test was missing.
44186         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
44187         the standard name CHAR_BIT.
44188         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
44189         this is not true on one's complement and signed-magnitude hosts.
44190
44191         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
44192         next_last_offset.
44193         (struct re_dfa_t): Remove unused member states_alloc.
44194         * lib/regcomp.c (init_dfa): Don't initialize unused members.
44195
44196 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44197
44198         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
44199         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
44200         and large-file glibc and in 32-bit large-file Solaris.
44201
44202 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44203
44204         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
44205         lengths fit in regoff_t; this isn't true if regoff_t is the same
44206         width as size_t.
44207         * lib/regex.c (re_search_internal): 5th arg is LAST_START
44208         (= START + RANGE) instead of RANGE.  This avoids overflow
44209         problems when regoff_t is the same width as size_t.
44210         All callers changed.
44211         (re_search_2_stub): Check for overflow when adding the
44212         sizes of the two strings.
44213         (re_search_stub): Check for overflow when adding START
44214         to RANGE; if it occurs, substitute the extreme value.
44215
44216 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44217
44218         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
44219
44220 2005-08-31  Jim Meyering  <jim@meyering.net>
44221
44222         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
44223         a pointer-to-const.
44224         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
44225         (register_state): Likewise.
44226         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
44227         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
44228         (group_nodes_into_DFAstates): Likewise.
44229
44230 2005-08-31  Jim Meyering  <jim@meyering.net>
44231
44232         * check-module: Add a FIXME comment.
44233
44234 2005-08-31  Eric Blake  <ebb9@byu.net>
44235
44236         * modules/unistd-safer (Files): Add unistd--.h.
44237         * modules/stdio-safer (Files): Add stdio--.h.
44238
44239 2005-08-31  Derek Price  <derek@ximbiot.com>
44240
44241         * lib/getdelim.c (getdelim): Return EOF on EOF.
44242         Reported by Larry Jones <lawrence.jones@ugs.com>.
44243
44244 2005-08-31  Bruno Haible  <bruno@clisp.org>
44245
44246         Avoid unnecessary diffs in the generated lib/Makefile.am.
44247         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
44248         the generated files.
44249         (func_import): Don't set cmd.
44250
44251 2005-08-31  Bruno Haible  <bruno@clisp.org>
44252
44253         * lib/strstr.c: Include <stddef.h>, for NULL.
44254         * lib/strcasestr.c: Likewise.
44255         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
44256
44257 2005-08-31  Bruno Haible  <bruno@clisp.org>
44258
44259         * gnulib-tool: New option --macro-prefix.
44260         (func_import): Use macro_prefix.
44261         (import): Handle option --macro-prefix.
44262
44263 2005-08-31  Bruno Haible  <bruno@clisp.org>
44264
44265         * gnulib-tool (import): Rename most ac_* variables to cached_*.
44266         Also use new variables cached_lgpl, cached_libtool.
44267
44268 2005-08-31  Bruno Haible  <bruno@clisp.org>
44269
44270         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
44271         always instantiating them.
44272
44273 2005-08-31  Bruno Haible  <bruno@clisp.org>
44274
44275         * gnulib-tool (func_import): Read the previous cached settings
44276         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
44277         earlier added by gnulib but are now dropped. Warn when a gnulib file
44278         overwrites a non-gnulib file.
44279
44280 2005-08-31  Bruno Haible  <bruno@clisp.org>
44281
44282         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
44283         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
44284         projects that don't keep autogenerated files in CVS. Put into
44285         actioncmd only the specified modules, not the transitive closure.
44286
44287 2005-08-31  Bruno Haible  <bruno@clisp.org>
44288
44289         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
44290         Create directories that shall be filled.
44291         (import): Don't look for gl_* macros in configure.ac. Recurse across
44292         all directories containing a gnulib-cache.m4 files, if meaningful.
44293
44294 2005-08-31  Bruno Haible  <bruno@clisp.org>
44295
44296         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
44297         (import): Set seen_libtool when we see gl_LIBTOOL.
44298
44299 2005-08-31  Bruno Haible  <bruno@clisp.org>
44300
44301         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
44302         declaration macro definitions from generated gnulib.m4.
44303
44304 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
44305
44306         * lib/iconvme.h: Add prototype for iconv_alloc.
44307
44308 2005-08-29  Simon Josefsson  <jas@extundo.com>
44309
44310         * lib/iconvme.c: Fix errno.
44311
44312 2005-08-29  Bruno Haible  <bruno@clisp.org>
44313
44314         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
44315         that it works when the directory contains spaces.
44316
44317 2005-08-29  Bruno Haible  <bruno@clisp.org>
44318
44319         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
44320
44321 2005-08-29  Bruno Haible  <bruno@clisp.org>
44322
44323         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
44324         Emit more advice.
44325
44326 2005-08-29  Bruno Haible  <bruno@clisp.org>
44327         and Stepan Kasal  <kasal@ucw.cz>
44328
44329         * check-module: If more parameters are given, check each of them
44330         separately; add more exceptions, as noted by Jim Meyering.
44331         (check_module): New procedure.
44332         (%exempt_header): Now contains all exceptions.
44333
44334 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
44335
44336         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
44337
44338 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
44339
44340         * lib/iconvme.c: Split iconv_string into iconv_alloc.
44341
44342 2005-08-28  Bruno Haible  <bruno@clisp.org>
44343
44344         * m4/gnulib-tool.m4: New file.
44345
44346 2005-08-27  Jim Meyering  <jim@meyering.net>
44347
44348         * modules/unistd-safer (Files): Add pipe-safer.c.
44349         * modules/fcntl-safer (Files): Add creat-safer.c.
44350
44351 2005-08-27  Jim Meyering  <jim@meyering.net>
44352
44353         * m4/stdlib-safer.m4: New file.  From coreutils.
44354         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
44355         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
44356         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
44357         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
44358         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
44359
44360 2005-08-27  Jim Meyering  <jim@meyering.net>
44361
44362         * lib/fopen-safer.c: Merge minor changes from coreutils.
44363         * lib/dup-safer.c: Likewise.
44364         * lib/fd-safer.c: Likewise.
44365
44366         Merge from coreutils.
44367         * lib/stdio--.h: New file.
44368         * lib/stdlib--.h: New file.
44369         * lib/mkstemp-safer.c: New file.
44370
44371         GNU tar needs these.
44372         * lib/pipe-safer.c: New file.
44373         * lib/creat-safer.c: New file.
44374         * lib/fcntl--.h (creat): Define to creat_safer.
44375         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
44376         * lib/unistd--.h (pipe): Define to pipe_safer.
44377         * lib/unistd-safer.h: Declare pipe_safer.
44378
44379 2005-08-26  Simon Josefsson  <jas@extundo.com>
44380
44381         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
44382         Haible <bruno@clisp.org>.
44383
44384 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
44385
44386         * lib/regex_internal.h: Remove all references to
44387         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
44388         or better.
44389         (bitset_not, bitset_merge, bitset_not_merge):
44390         (bitset_mask, re_string_allocate, re_string_construct):
44391         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
44392         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
44393         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
44394         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
44395         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44396         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44397         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
44398         (re_acquire_state_context):
44399         Remove unnecessary forward decls.
44400         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
44401         Put __attribute at function definition,
44402         now that the function decl has been removed.
44403         * lib/regex_internal.c (re_string_peek_byte_case):
44404         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
44405         Likewise.
44406
44407 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
44408
44409         * m4/regex.m4: Add AC_PREREQ(2.50).
44410         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
44411
44412 2005-08-25  Simon Josefsson  <jas@extundo.com>
44413
44414         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
44415         __fsetlocking.
44416
44417 2005-08-25  Simon Josefsson  <jas@extundo.com>
44418
44419         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
44420         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
44421         GLIBC specific code.
44422
44423 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44424
44425         Make regex safe for g++.  This fixes one real bug (an "err"
44426         that should have been "*err").  g++ problem reported by
44427         Sam Steingold.
44428         * lib/regex_internal.h (re_calloc): New macro, consistent with
44429         re_malloc etc.  All callers of calloc changed to use re_calloc.
44430         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
44431         not int.  All callers changed.
44432         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
44433         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
44434         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
44435         (find_recover_state): Change "err" to "*err"; this fixes what
44436         appears to be a real bug.
44437         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
44438         versus int.
44439
44440 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44441
44442         * modules/regex (Depends-on): Add malloc, since the code
44443         assumes that !malloc(0) means failure.
44444
44445 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44446
44447         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
44448
44449         alloca modernization/simplification for regex.
44450         * lib/regex.c: Remove portability cruft for alloca.  This no longer
44451         needs to be at the start of the file, and can be moved into
44452         regex_internal.h and simplified.
44453         * lib/regex_internal.h: Include <alloca.h>.
44454         (__libc_use_alloca) [!defined _LIBC]: New macro.
44455         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
44456         now works outside glibc.
44457
44458 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44459
44460         * config/srclist.txt: Add glibc bugs 1241, 1245.
44461
44462 2005-08-25  Jim Meyering  <jim@meyering.net>
44463
44464         * lib/open-safer.c: Include <config.h>.
44465         Otherwise, we'd lose LARGEFILE support in any file using
44466         e.g. "fcntl--.h"
44467
44468 2005-08-25  Bruno Haible  <bruno@clisp.org>
44469
44470         * m4/minmax.m4: Require autoconf 2.52.
44471         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
44472         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
44473         alternatives of translit over the alphabet.
44474         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
44475
44476 2005-08-24  Simon Josefsson  <jas@extundo.com>
44477
44478         * tests/test-getpass.c: New file.
44479
44480 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44481
44482         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
44483         for GNU regex features.
44484
44485 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44486
44487         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
44488         * lib/regex.h (regerror): Likewise.
44489
44490         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
44491         requires this.  (The code never needed it.)
44492
44493         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
44494         All uses of recently-renamed identifiers changed to use the new,
44495         POSIX-compliant names.  The code will build and run just fine
44496         without these changes, but it's better to eat our own dog food
44497         and use the standard-conforming names.
44498
44499         * lib/regex.h: Fix a multitude of POSIX name space violations.
44500         These changes have an effect only for programs that define
44501         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
44502         do not change anything for programs compiled in the normal way.
44503         Also, there is no effect on the ABI.
44504
44505         (_REGEX_SOURCE): New macro.
44506         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
44507         defined and _GNU_SOURCE is not; this fixes a name space violation.
44508
44509         Rename the following macros to obey POSIX requirements.
44510         The old names are still visible as macros if _REGEX_SOURCE is defined.
44511         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
44512         RE_BACKSLASH_ESCAPE_IN_LISTS.
44513         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
44514         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
44515         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
44516         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
44517         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
44518         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
44519         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
44520         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
44521         (REG_INTERVALS): renamed from RE_INTERVALS.
44522         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
44523         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
44524         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
44525         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
44526         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
44527         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
44528         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
44529         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
44530         RE_UNMATCHED_RIGHT_PAREN_ORD.
44531         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
44532         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
44533         (REG_DEBUG): renamed from RE_DEBUG.
44534         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
44535         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
44536         unusual, since we can't clash with the POSIX REG_ICASE.
44537         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
44538         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
44539         (REG_NO_SUB): renamed from RE_NO_SUB.
44540         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
44541         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
44542         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
44543         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
44544         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
44545         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
44546         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
44547         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
44548         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
44549         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
44550         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
44551         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
44552         RE_SYNTAX_POSIX_MINIMAL_BASIC.
44553         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
44554         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
44555         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
44556         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
44557         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
44558         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
44559         (REG_FIXED): Renamed from REGS_FIXED.
44560         (REG_NREGS): Renamed from RE_NREGS.
44561
44562         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
44563         of other REG_* macros, since POSIX says the user is allowed to
44564         #undef these macros selectively.
44565
44566         (reg_errcode_t): Update comment stating what other tables need
44567         to be consistent.
44568
44569         Rename the following enum values to obey POSIX requirements.
44570         The old names are still visible as macros.
44571         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
44572         is not defined, since GNU is supposed to be a superset of POSIX as
44573         much as possible, and since we want reg_errcode_t to be a signed
44574         type for implementation consistency.
44575         (_REG_NOERROR): Renamed from REG_NOERROR.
44576         (_REG_NOMATCH): Renamed from REG_NOMATCH.
44577         (_REG_BADPAT): Renamed from REG_BADPAT.
44578         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
44579         (_REG_ECTYPE): Renamed from REG_ECTYPE.
44580         (_REG_EESCAPE): Renamed from REG_EESCAPE.
44581         (_REG_ESUBREG): Renamed from REG_ESUBREG.
44582         (_REG_EBRACK): Renamed from REG_EBRACK.
44583         (_REG_EPAREN): Renamed from REG_EPAREN.
44584         (_REG_EBRACE): Renamed from REG_EBRACE.
44585         (_REG_BADBR): Renamed from REG_BADBR.
44586         (_REG_ERANGE): Renamed from REG_ERANGE.
44587         (_REG_ESPACE): Renamed from REG_ESPACE.
44588         (_REG_BADRPT): Renamed from REG_BADRPT.
44589         (_REG_EEND): Renamed from REG_EEND.
44590         (_REG_ESIZE): Renamed from REG_ESIZE.
44591         (_REG_ERPAREN): Renamed from REG_ERPAREN.
44592         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
44593         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
44594         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
44595         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
44596
44597         (_REG_RE_NAME, _REG_RM_NAME): New macros.
44598         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
44599         changed.  But support the old name if the new one is not defined
44600         and if _REGEX_SOURCE.
44601
44602         Change the following member names in struct re_pattern_buffer.
44603         The old names are still supported if !_REGEX_SOURCE.
44604         The new names are always supported, regardless of _REGEX_SOURCE.
44605         (re_buffer): Renamed from buffer.
44606         (re_allocated): Renamed from allocated.
44607         (re_used): Renamed from used.
44608         (re_syntax): Renamed from syntax.
44609         (re_fastmap): Renamed from fastmap.
44610         (re_translate): Renamed from translate.
44611         (re_can_be_null): Renamed from can_be_null.
44612         (re_regs_allocated): Renamed from regs_allocated.
44613         (re_fastmap_accurate): Renamed from fastmap_accurate.
44614         (re_no_sub): Renamed from no_sub.
44615         (re_not_bol): Renamed from not_bol.
44616         (re_not_eol): Renamed from not_eol.
44617         (re_newline_anchor): Renamed from newline_anchor.
44618
44619         Change the following member names in struct re_registers.
44620         The old names are still supported if !_REGEX_SOURCE.
44621         The new names are always supported, regardless of _REGEX_SOURCE.
44622         (rm_num_regs): Renamed from num_regs.
44623         (rm_start): Renamed from start.
44624         (rm_end): Renamed from end.
44625
44626         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
44627         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
44628         Prepend __ to parameter names.
44629
44630         Undo yesterday's changes.
44631
44632 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44633
44634         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
44635         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
44636         lib/regex.c.
44637
44638 2005-08-24  Jim Meyering  <jim@meyering.net>
44639
44640         Sync from coreutils.
44641         * m4/fcntl-safer.m4: New file.
44642
44643         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
44644         and object files for this module.
44645
44646 2005-08-24  Jim Meyering  <jim@meyering.net>
44647
44648         Sync from coreutils.
44649         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
44650
44651 2005-08-24  Jim Meyering  <jim@meyering.net>
44652
44653         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
44654         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
44655
44656 2005-08-24  Jim Meyering  <jim@meyering.net>
44657
44658         * modules/fcntl-safer: New module.
44659         * modules/fts (Depends-on): Add fcntl-safer.
44660         * MODULES.html.sh (File descriptor based Input/Output):
44661         Add fcntl-safer.
44662
44663 2005-08-24  Bruno Haible  <bruno@clisp.org>
44664
44665         Support for unit test modules.
44666         * modules/README: Mention tests modules.
44667         * modules/TEMPLATE-TESTS: New file.
44668         * gnulib-tool: New options --extract-tests-module, --with-tests and
44669         --tests-base (unused for the moment).
44670         (testsbase, inctests): New variables.
44671         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
44672         (func_verify_module): Exclude TEMPLATE-TESTS.
44673         (func_verify_nontests_module, func_verify_tests_module): New functions.
44674         (func_get_dependencies): Add implicit dependency for tests modules.
44675         (func_get_tests_module): New function.
44676         (func_modules_transitive_closure): When --with-tests was specified,
44677         include the unit tests as well, unless explicitly avoided.
44678         (func_emit_lib_Makefile_am): Ignore the tests modules here.
44679         (func_emit_tests_Makefile_am): New function.
44680         (func_create_testdir): When --with-tests was specified, emit a
44681         tests/ directory.
44682         * MODULES.html.sh (Future developments): Update.
44683
44684 2005-08-24  Bruno Haible  <bruno@clisp.org>
44685
44686         * modules/tls-tests: New file.
44687         * tests/test-tls.c: New file, from GNU gettext.
44688
44689 2005-08-24  Bruno Haible  <bruno@clisp.org>
44690
44691         * modules/lock-tests: New file.
44692         * tests/test-lock.c: New file, from GNU gettext.
44693
44694 2005-08-24  Bruno Haible  <bruno@clisp.org>
44695
44696         * lib/lock.h: Add multiple inclusion guard.
44697         * lib/tls.h: Add multiple inclusion guard.
44698
44699 2005-08-24  Bruno Haible  <bruno@clisp.org>
44700
44701         * gnulib-tool: Add support for the --aux-dir option to
44702         --create-testdir, --create-megatestdir, --test, --megatest.
44703         (func_create_testdir, func_create_megatestdir): Optionally emit a
44704         AC_CONFIG_AUX_DIR directive.
44705         (create-testdir, create-megatestdir, test, megatest): Provide a
44706         default value for $auxdir.
44707
44708 2005-08-24  Bruno Haible  <bruno@clisp.org>
44709
44710         * gnulib-tool (import): Use compound statement instead of subshell
44711         where possible.
44712
44713 2005-08-24  Bruno Haible  <bruno@clisp.org>
44714
44715         * gnulib-tool (import): Change --aux-dir default to "build-aux".
44716
44717 2005-08-24  Bruno Haible  <bruno@clisp.org>
44718
44719         * gnulib-tool (func_version): Update.
44720
44721 2005-08-24  Bruno Haible  <bruno@clisp.org>
44722
44723         * gnulib-tool (func_import, func_create_testdir,
44724         func_create_megatestdir): Quote all autoconf macro arguments.
44725
44726 2005-08-24  Bruno Haible  <bruno@clisp.org>
44727
44728         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
44729         option --force, because --force causes the aclocal.m4 of each
44730         subdirectory to be newer than the corresponding config.h.in.
44731
44732 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44733
44734         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
44735         All contents moved to gl_REGEX.
44736         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
44737         assume that it does.
44738
44739 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44740
44741         * lib/regex.h (REG_NOSYS)
44742         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
44743         Define, since POSIX requires it as of 2001.
44744         (_REG_ENOSYS)
44745         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
44746         New private symbol, used to keep the enum signed in all cases.
44747         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
44748         Youngman in
44749         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
44750
44751         * lib/regex_internal.c (re_string_skip_chars, register_state):
44752         (calc_state_hash):
44753         Remove forward decls; no longer needed now that we use prototypes.
44754         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
44755         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
44756         (clean_state_log_if_needed): Likewise.
44757
44758 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44759
44760         * config/srclist.txt: Add glibc bugs 1231-1233.
44761
44762 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44763
44764         Fix problems reported by Sam Steingold in
44765         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
44766         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
44767         assumed that reg_errcode_t is a signed type, which is not
44768         necessarily true if _XOPEN_SOURCE is not defined.
44769         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
44770         since some compilers warn about it otherwise.
44771
44772 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44773
44774         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
44775         (init_word_char, create_initial_state, duplicate_node_closure):
44776         (fetch_token, peek_token_bracket, build_range_exp):
44777         (build_collating_symbol): Remove forward decls; no longer needed
44778         now that we use prototypes.
44779
44780         * lib/regcomp.c:
44781         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
44782         (re_compile_fastmap_iter, regcomp, regerror, regfree):
44783         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
44784         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
44785         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
44786         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
44787         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
44788         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
44789         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
44790         (build_range_exp, build_collating_symbol, parse_bracket_exp):
44791         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
44792         (build_charclass, build_charclass_op, fetch_number, create_tree):
44793         (create_token_tree, mark_opt_subexp, duplicate_tree):
44794         Use prototypes rather than old-style definitions.
44795
44796         * lib/regex_internal.c:
44797         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
44798         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
44799         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44800         (re_string_reconstruct, re_string_peek_byte_case):
44801         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
44802         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44803         (re_node_set_init_copy, re_node_set_add_intersect):
44804         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44805         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44806         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44807         (re_acquire_state, re_acquire_state_context, register_state):
44808         (create_ci_newstate, create_cd_newstate, free_state):
44809         Likewise.
44810         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
44811         re_search_2):
44812         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
44813         (re_search_internal, prune_impossible_nodes):
44814         (acquire_init_state_context, check_matching, static):
44815         (check_halt_node_context, check_halt_state_context, proceed_next_node):
44816         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
44817         (update_regs, sift_states_backward, build_sifted_states):
44818         (clean_state_log_if_needed, merge_state_array):
44819         (update_cur_sifted_state, add_epsilon_src_nodes):
44820         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
44821         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
44822         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
44823         (find_recover_state, check_subexp_matching_top, transit_state_mb):
44824         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
44825         (check_arrival, check_arrival_add_next_nodes):
44826         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44827         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44828         (check_node_accept_bytes, check_node_accept, extend_buffers):
44829         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
44830         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
44831         (sift_ctx_init):
44832         Likewise.
44833
44834         * lib/regex_internal.h:
44835         (re_string_allocate, re_string_construct, re_string_reconstruct):
44836         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
44837         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
44838         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
44839         (re_string_context_at, re_string_peek_byte_case):
44840         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
44841         is defined, since we now use prototypes always.
44842
44843         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
44844         C89 or better.  All uses removed.
44845
44846 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44847
44848         * config/srclist.txt: Add glibc bugs 1220-1227.
44849
44850 2005-08-20  Jim Meyering  <jim@meyering.net>
44851
44852         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
44853         of unused local, dfa.
44854
44855 2005-08-20  Bruno Haible  <bruno@clisp.org>
44856
44857         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
44858
44859 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44860
44861         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
44862         (re_node_set_insert_last, re_dfa_add_node):
44863         Rename local variables to avoid GCC shadowing warnings.
44864
44865 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44866
44867         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
44868         [defined lint]: Suppress bogus uninitialized-variable warnings.
44869
44870         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
44871         and let the caller return REG_ESPACE if out of space.  This
44872         removes an uninitialied-variable warning with GCC 4.0.1, and also
44873         avoids taking the address of a local variable.  All callers
44874         changed.
44875
44876 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44877
44878         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
44879         $LIBCSRC/posix/regexec.c.
44880         Add glibc bug 1217 for regcomp.c.
44881
44882 2005-08-19  Jim Meyering  <jim@meyering.net>
44883
44884         * lib/regexec.c (proceed_next_node): Redo local variables to
44885         avoid GCC shadowing warnings.
44886
44887 2005-08-18  Bruno Haible  <bruno@clisp.org>
44888
44889         * lib/strstr.c (strstr): Fix return value in multibyte case.
44890         * lib/strcasestr.c (strcasestr): Likewise.
44891
44892 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44893
44894         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
44895
44896 2005-08-17  Jim Meyering  <jim@meyering.net>
44897
44898         Make the %s format (seconds since the epoch) work for a negative
44899         number and when used with a zero-padded field width, e.g. %015s.
44900
44901         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
44902         label so that it precedes the code to set `digits'.  Otherwise,
44903         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
44904         print `00-22'.  Now, it prints `-0022', as it should.
44905
44906 2005-08-17  Bruno Haible  <bruno@clisp.org>
44907
44908         * modules/strstr (Files): Add m4/mbrtowc.m4.
44909         (Depends-on): Add mbuiter.
44910
44911 2005-08-17  Bruno Haible  <bruno@clisp.org>
44912
44913         * modules/strcasestr: New file.
44914         * MODULES.html.sh (String handling, based on ANSI C 89): Add
44915         strcasestr.
44916
44917 2005-08-17  Bruno Haible  <bruno@clisp.org>
44918
44919         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
44920
44921 2005-08-17  Bruno Haible  <bruno@clisp.org>
44922
44923         * modules/mbuiter: New file.
44924         * MODULES.html.sh (Extended multibyte and wide character utilities):
44925         Add mbuiter.
44926
44927 2005-08-17  Bruno Haible  <bruno@clisp.org>
44928
44929         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
44930         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
44931
44932 2005-08-17  Bruno Haible  <bruno@clisp.org>
44933
44934         * m4/strcasestr.m4: New file.
44935
44936 2005-08-17  Bruno Haible  <bruno@clisp.org>
44937
44938         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
44939         * lib/strstr.c: Completely rewritten, with multibyte locale support.
44940
44941 2005-08-17  Bruno Haible  <bruno@clisp.org>
44942
44943         * lib/strcasestr.h: New file.
44944         * lib/strcasestr.c: New file.
44945
44946 2005-08-17  Bruno Haible  <bruno@clisp.org>
44947
44948         * lib/strcasecmp.c: Use mbuiter.h.
44949
44950 2005-08-17  Bruno Haible  <bruno@clisp.org>
44951
44952         * lib/mbuiter.h: New file.
44953
44954 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44955
44956         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
44957         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
44958         and gl_GETOPT are both invoked via different paths (as happens
44959         with GNU tar CVS because it uses both argp and getopt), the former
44960         wins.
44961
44962 2005-08-16  Bruno Haible  <bruno@clisp.org>
44963
44964         * modules/tls: New file.
44965         * MODULES.html.sh (Multithreading): Add tls.
44966
44967 2005-08-16  Bruno Haible  <bruno@clisp.org>
44968
44969         * modules/strnlen1: New file.
44970         * MODULES.html.sh (String handling): Add strnlen1.
44971
44972 2005-08-16  Bruno Haible  <bruno@clisp.org>
44973
44974         * modules/strcase (Files): Add m4/mbrtowc.m4.
44975         (Depends-on): Add strnlen1, mbchar.
44976
44977 2005-08-16  Bruno Haible  <bruno@clisp.org>
44978
44979         * modules/mbiter: New file.
44980         * MODULES.html.sh (Extended multibyte and wide character utilities):
44981         Add mbiter.
44982
44983 2005-08-16  Bruno Haible  <bruno@clisp.org>
44984
44985         * modules/mbfile: New file.
44986         * MODULES.html.sh (Extended multibyte and wide character utilities):
44987         Add mbfile.
44988
44989 2005-08-16  Bruno Haible  <bruno@clisp.org>
44990
44991         * modules/mbchar: New file.
44992         * MODULES.html.sh (Extended multibyte and wide character utilities):
44993         New section.
44994
44995 2005-08-16  Bruno Haible  <bruno@clisp.org>
44996
44997         * m4/tls.m4: New file, from GNU gettext.
44998
44999 2005-08-16  Bruno Haible  <bruno@clisp.org>
45000
45001         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
45002         always.
45003         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
45004
45005 2005-08-16  Bruno Haible  <bruno@clisp.org>
45006
45007         * m4/mbiter.m4: New file.
45008
45009 2005-08-16  Bruno Haible  <bruno@clisp.org>
45010
45011         * m4/mbfile.m4: New file.
45012
45013 2005-08-16  Bruno Haible  <bruno@clisp.org>
45014
45015         * m4/mbchar.m4: New file.
45016
45017 2005-08-16  Bruno Haible  <bruno@clisp.org>
45018
45019         * lib/tls.h: New file, from GNU gettext.
45020         * lib/tls.c: New file, from GNU gettext.
45021
45022 2005-08-16  Bruno Haible  <bruno@clisp.org>
45023
45024         * lib/strnlen1.h: New file.
45025         * lib/strnlen1.c: New file.
45026
45027 2005-08-16  Bruno Haible  <bruno@clisp.org>
45028
45029         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
45030         (mbi_init): Update.
45031         (mbi_avail, mbi_advance): Let the iteration end before the terminating
45032         NUL byte, not after it.
45033
45034 2005-08-16  Bruno Haible  <bruno@clisp.org>
45035
45036         * lib/strcase.h (strcasecmp): Add note in comments.
45037         * lib/strncasecmp.c: Use code from strcasecmp.c.
45038         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
45039         (strcasecmp): Work correctly in multibyte locales.
45040
45041 2005-08-16  Bruno Haible  <bruno@clisp.org>
45042
45043         * lib/mbiter.h: New file.
45044
45045 2005-08-16  Bruno Haible  <bruno@clisp.org>
45046
45047         * lib/mbfile.h: New file.
45048
45049 2005-08-16  Bruno Haible  <bruno@clisp.org>
45050
45051         * lib/mbchar.h: New file.
45052         * lib/mbchar.c: New file.
45053
45054 2005-08-16  Bruno Haible  <bruno@clisp.org>
45055
45056         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
45057         the valid ones. Makes the comparison operations transitive:
45058         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
45059         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
45060
45061 2005-08-15  Simon Josefsson  <jas@extundo.com>
45062
45063         * modules/ssize_t (License): Change to 'unlimited'.
45064
45065         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
45066
45067 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45068
45069         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
45070         Add comments for each pending glibc patch.
45071
45072 2005-08-15  Bruno Haible  <bruno@clisp.org>
45073
45074         * lib/regex.h (__restrict_arr): Don't define to __restrict if
45075         __cplusplus is defined.
45076
45077 2005-08-14  Jim Meyering  <jim@meyering.net>
45078
45079         Sync from coreutils.
45080
45081         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
45082         Use the hash-table-based cycle-detection code not just when
45083         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
45084         Reported by James Youngman in
45085         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
45086         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
45087         FTS_TIGHT_CYCLE_CHECK.
45088         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
45089         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
45090         once again.
45091         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
45092         * lib/fts.c (fd_safer): Remove decl.
45093         Include fcntl--.h rather than unistd-safer.h
45094         (fts_safe_changedir): Don't call fd_safer; no longer needed
45095         now that we include fcntl--.h.
45096
45097 2005-08-12  Simon Josefsson  <jas@extundo.com>
45098
45099         * modules/getndelim2: Use ssize_t module.
45100         * modules/getnline: Likewise.
45101         * modules/safe-read: Likewise.
45102         * modules/xreadlink: Likewise.
45103
45104         * modules/ssize_t: New file.
45105
45106 2005-08-12  Simon Josefsson  <jas@extundo.com>
45107
45108         * m4/readline.m4: Look for termcap, curses or ncurses if required.
45109
45110 2005-08-12  Simon Josefsson  <jas@extundo.com>
45111
45112         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45113         ssize_t.
45114
45115 2005-08-12  Simon Josefsson  <jas@extundo.com>
45116
45117         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
45118         readline, getdelim and check_version.
45119         (Support for systems lacking ISO C 99: Sizes of integer types):
45120         Add size_max.
45121
45122 2005-08-12  Bruno Haible  <bruno@clisp.org>
45123
45124         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
45125
45126 2005-08-11  Simon Josefsson  <jas@extundo.com>
45127
45128         * modules/readline: New file.
45129
45130         * modules/strnlen (Files): Add strnlen.h.
45131
45132 2005-08-11  Simon Josefsson  <jas@extundo.com>
45133
45134         * m4/readline.m4: New file.
45135
45136 2005-08-11  Simon Josefsson  <jas@extundo.com>
45137
45138         * lib/readline.h, readline.c: New file.
45139
45140 2005-08-11  Simon Josefsson  <jas@extundo.com>
45141
45142         * doc/gnulib.texi (Initial import, Finishing touches): Mention
45143         gl_AVOID.
45144
45145 2005-08-11  Bruno Haible  <bruno@clisp.org>
45146
45147         * lib/strnlen.h (strnlen): Change parameter name to match comment.
45148
45149 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
45150
45151         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
45152
45153 2005-08-10  Simon Josefsson  <jas@extundo.com>
45154
45155         * tests/test-iconvme.c: New file.
45156
45157 2005-08-10  Simon Josefsson  <jas@extundo.com>
45158
45159         * m4/strnlen.m4: New file.
45160
45161         * m4/strndup.m4: Don't check for strnlen declaration, done in
45162         strnlen.m4.
45163
45164 2005-08-10  Simon Josefsson  <jas@extundo.com>
45165
45166         * lib/strndup.c: Use strnlen.h.
45167
45168         * lib/strnlen.h: New file.
45169
45170 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
45171
45172         * README: Typos.
45173
45174 2005-08-02  Simon Josefsson  <jas@extundo.com>
45175
45176         * modules/readline: New file.
45177
45178 2005-08-02  Simon Josefsson  <jas@extundo.com>
45179
45180         * modules/getdelim: New file.
45181
45182         * modules/getline: Rewrite, don't use getndelim2.
45183
45184 2005-08-02  Simon Josefsson  <jas@extundo.com>
45185
45186         * m4/getline.m4: Separate out getdelim stuff into separate module.
45187
45188         * m4/getdelim.m4: New file.
45189
45190 2005-08-02  Simon Josefsson  <jas@extundo.com>
45191
45192         * lib/getline.h, getline.c: Rewrite.
45193
45194         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
45195
45196 2005-07-31  Bruno Haible  <bruno@clisp.org>
45197
45198         * lib/lock.h (gl_lock_initializer): New macro.
45199         (gl_lock_define_initialized): Use it.
45200         (gl_rwlock_initializer): New macro.
45201         (gl_rwlock_define_initialized): Use it.
45202         (gl_recursive_lock_initializer): New macro.
45203         (gl_recursive_lock_define_initialized): Use it.
45204
45205 2005-07-30  Karl Berry  <karl@gnu.org>
45206
45207         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
45208         Report from Ben Pfaff, regarding getopt.
45209
45210 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
45211
45212         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
45213         normal way.
45214         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
45215         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
45216         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
45217         (gl_GETOPT): Use the new macros.  Most of the implementation
45218         is moved to the new macros.  This is for programs like Emacs
45219         that don't want all the functionality of gl_GETOPT.
45220
45221 2005-07-26  Bruno Haible  <bruno@clisp.org>
45222
45223         * m4/lock.m4: Update from GNU gettext.
45224
45225 2005-07-26  Bruno Haible  <bruno@clisp.org>
45226
45227         * lib/lock.h: Update from GNU gettext.
45228         * lib/lock.c: Update from GNU gettext.
45229
45230 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
45231
45232         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
45233         obsolescent AC_TRY_RUN.  Include the default includes files, for
45234         'exit'.
45235
45236 2005-07-24  Bruno Haible  <bruno@clisp.org>
45237
45238         * modules/visibility: New file.
45239         * MODULES.html.sh (Misc): Add visibility.
45240
45241 2005-07-24  Bruno Haible  <bruno@clisp.org>
45242
45243         * m4/visibility.m4: New file.
45244
45245 2005-07-24  Bruno Haible  <bruno@clisp.org>
45246
45247         * doc/visibility.texi: New file.
45248
45249 2005-07-22  Bruno Haible  <bruno@clisp.org>
45250
45251         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
45252         $(ALLOCA_H), redundant through BUILT_SOURCES.
45253         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
45254         redundant through BUILT_SOURCES.
45255         * modules/byteswap (Makefile.am): Remove explicit dependency on
45256         $(BYTESWAP_H), redundant through BUILT_SOURCES.
45257         * modules/fnmatch (Makefile.am): Remove explicit dependency on
45258         $(FNMATCH_H), redundant through BUILT_SOURCES.
45259         * modules/getopt (Makefile.am): Remove explicit dependency on
45260         $(GETOPT_H), redundant through BUILT_SOURCES.
45261         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
45262         redundant through BUILT_SOURCES.
45263         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
45264         redundant through BUILT_SOURCES.
45265         * modules/stdbool (Makefile.am): Remove explicit dependency on
45266         $(STDBOOL_H), redundant through BUILT_SOURCES.
45267         * modules/stdint (Makefile.am): Remove explicit dependency on
45268         $(STDINT_H), redundant through BUILT_SOURCES.
45269         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
45270         Remove explicit dependency on $(SYSEXITS_H).
45271         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
45272
45273 2005-07-18  Simon Josefsson  <jas@extundo.com>
45274
45275         * lib/check-version.c (check_version): Accept identical versions too.
45276
45277 2005-07-18  Bruno Haible  <bruno@clisp.org>
45278
45279         * modules/lock: New file.
45280         * MODULES.html.sh (Multithreading): New section.
45281
45282 2005-07-18  Bruno Haible  <bruno@clisp.org>
45283
45284         * m4/lock.m4: New file, from GNU gettext.
45285
45286 2005-07-18  Bruno Haible  <bruno@clisp.org>
45287
45288         * lib/lock.h: New file, from GNU gettext.
45289         * lib/lock.c: New file, from GNU gettext.
45290
45291 2005-07-18  Bruno Haible  <bruno@clisp.org>
45292
45293         * lib/lock.h (gl_once_t): New type.
45294         (gl_once_define, gl_once): New macros.
45295         * lib/lock.c (fresh_once): New variable.
45296         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
45297         functions.
45298
45299 2005-07-16  Simon Josefsson  <jas@extundo.com>
45300
45301         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
45302         workaround, suggested by Bruno.
45303
45304 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45305
45306         * modules/xalloc (Depends-on): Add xalloc-die.
45307         * modules/xvasprintf (Depends-on): Add xalloc-die.
45308
45309 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45310
45311         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
45312         with a minor change.
45313
45314 2005-07-15  Bruno Haible  <bruno@clisp.org>
45315
45316         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
45317         When using lib/poll.c, define poll as rpl_poll.
45318
45319 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
45320
45321         * modules/argp (Depends-on): Remove unlocked-io.
45322
45323 2005-07-14  Derek Price  <derek@ximbiot.com>
45324
45325         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
45326         for glob symlink bug.
45327
45328 2005-07-14  Bruno Haible  <bruno@clisp.org>
45329
45330         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
45331         Instead, test for *_unlocked function declarations directly.
45332
45333 2005-07-11  Simon Josefsson  <jas@extundo.com>
45334
45335         * modules/size_max: New file.
45336
45337         * modules/xsize: Depend on size_max module for size_max.m4.
45338
45339 2005-07-11  Simon Josefsson  <jas@extundo.com>
45340
45341         * lib/size_max.h: New file.
45342
45343 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
45344
45345         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
45346         copyright symbol and the year.
45347         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
45348         (version_etc_va): Use parameterized copyright notice.
45349         Reword to conform to the current GNU coding standards.
45350
45351 2005-07-11  Karl Berry  <karl@gnu.org>
45352
45353         * doc/gnulib.texi (Quoting): new node.
45354         (Initial import): more info, from Patrice.
45355
45356 2005-07-11  Bruno Haible  <bruno@clisp.org>
45357
45358         * gnulib-tool (func_usage): Document option --avoid.
45359         (Command line options): Handle --avoid.
45360         (func_acceptable): New function.
45361         (func_modules_transitive_closure): Use it.
45362
45363 2005-07-11  Bruno Haible  <bruno@clisp.org>
45364
45365         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
45366         Reported by Jim Meyering.
45367
45368 2005-07-10  Bruno Haible  <bruno@clisp.org>
45369
45370         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
45371         Needed when size_t is smaller than 'unsigned int'.
45372         Reported by Paul Eggert.
45373
45374 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45375
45376         * modules/argp (Depends-on): Add unlocked-io
45377
45378 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45379
45380         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
45381         block of defines.
45382
45383 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45384
45385         * config/srclist.txt: Comment out regcomp.c, since we have a porting
45386         fix now.
45387
45388 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
45389         and Paul Eggert  <eggert@cs.ucla.edu>
45390
45391         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
45392         in wint_t, not wchar_t.  Remove now-unnecessary cast.
45393
45394 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45395
45396         * modules/regex (Files): Add lib/regex_internal.c,
45397         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
45398         (Depends-on): Add extensions.
45399         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
45400
45401 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45402
45403         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
45404         pathconf.
45405         * m4/same.m4 (gl_SAME): Likewise.
45406         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
45407
45408         * m4/regex.m4: Adjust to new libc regex implementation.
45409         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
45410         all the .c and .h parts of (the new) regex.
45411         Quote the m4 stuff better.
45412         Check for RE_ICASE bug of old gnulib.
45413         Check for REG_STARTEND of recent libc.
45414         Rename local variables from jm_* to gl_*.
45415         Quote operand of "test -f".
45416         Say "recent enough" version of libc, not "version 2".
45417         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
45418         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
45419         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
45420         Remove check for btowc, isascii.
45421         Require AM_LANGINFO_CODESET.
45422
45423 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45424
45425         * lib/regex.c, regex.h: Sync from libc.
45426         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
45427         * lib/regexec.c:
45428         New files, synced from libc, except that regex_internal.h
45429         currently has a small porting fix.
45430
45431 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45432
45433         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
45434         regex_internal.c, regexec.c.
45435         Add regex_internal.h too, but as a comment, since the libc version
45436         is currently broken in gnulib mode.
45437
45438 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45439
45440         Support programs like Emacs that use gnulib but not gettext.
45441         * MODULES.html.sh (Internationalization functions): Add gettext-h.
45442         * modules/gettext-h: New file.
45443         * modules/gettext (Files): Remove lib/gettext.h.
45444         (Depends-on): Add gettext-h.
45445         (Makefile.am): Remove lib_SOURCES.
45446         * modules/argmatch, modules/c-stack, modules/closeout:
45447         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
45448         * modules/execute, modules/file-type, modules/getaddrinfo:
45449         * modules/getopt, modules/human, modules/javacomp:
45450         * modules/javaexec, modules/mkdir-p, modules/obstack:
45451         * modules/openat, modules/pagealign_alloc, modules/pipe:
45452         * modules/quotearg, modules/regex, modules/rpmatch:
45453         * modules/unicodeio, modules/userspec, modules/version-etc:
45454         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
45455         * modules/xsetenv:
45456         Depend on gettext-h, not gettext.
45457
45458 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45459
45460         * gnulib-tool (func_import): Add support for 'public domain' license.
45461         * modules/alloca, modules/atexit, modules/memmove:
45462         Now public domain, not GPL.
45463         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
45464         * modules/realloc, modules/strerror, modules/strtod:
45465         Now LGPL, not GPL.
45466
45467 2005-07-05  Bruno Haible  <bruno@clisp.org>
45468
45469         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
45470         autoconf CVS. Needed for mingw.
45471
45472 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45473
45474         Remove the dependency of the strftime module on the tzset module.
45475         * modules/strftime (Depends-on): Remove dependency on tzset.
45476
45477 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45478
45479         Remove the dependency of the strftime module on the tzset module.
45480         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
45481         gl_FUNC_TZSET_CLOBBER.
45482
45483 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45484
45485         Remove the dependency of the strftime module on the tzset module.
45486         * lib/strftime.c (my_strftime)
45487         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
45488         Copy the input structure, to work around some of the bug with
45489         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
45490         Solaris releases, you should also use the tzset module, but we won't
45491         require it as a dependency any more since we don't want LGPLed code
45492         to depend on GPLed code.
45493
45494 2005-07-02  Jim Meyering  <jim@meyering.net>
45495
45496         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
45497         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
45498         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
45499         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
45500
45501 2005-07-02  Jim Meyering  <jim@meyering.net>
45502
45503         * lib/backupfile.c (backup_args): Change a `0' to NULL.
45504
45505 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
45506
45507         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
45508         declares only 'struct timespec;' (!).
45509
45510 2005-07-01  Jim Meyering  <jim@meyering.net>
45511
45512         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
45513         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
45514         * lib/save-cwd.c, tempname.c:
45515         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45516         and don't include <sys/file.h>).
45517
45518 2005-06-29  Jim Meyering  <jim@meyering.net>
45519
45520         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
45521         type name.  Use the variable name instead.
45522         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
45523         Likewise.
45524
45525 2005-06-28  Simon Josefsson  <jas@extundo.com>
45526
45527         * modules/check-version (Files): Add check-version.m4.
45528
45529 2005-06-28  Simon Josefsson  <jas@extundo.com>
45530
45531         * m4/check-version.m4: New file, suggested by Jim Meyering
45532         <jim@meyering.net>.
45533
45534 2005-06-28  Simon Josefsson  <jas@extundo.com>
45535
45536         * lib/check-version.h, lib/check-version.c: New files.
45537
45538 2005-06-28  Simon Josefsson  <jas@extundo.com>
45539
45540         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
45541         collision with global variable.  Better indentation.  Don't
45542         increment buffer pointer beyond buffer end.  Based on comments
45543         from Paul Eggert <eggert@cs.ucla.edu>.
45544
45545         * lib/base64.h: Indent.
45546
45547 2005-06-28  Simon Josefsson  <jas@extundo.com>
45548
45549         * doc/gnulib.texi (Library version handling): New section.
45550
45551 2005-06-28  Jim Meyering  <jim@meyering.net>
45552
45553         * check-module (find_included_lib_files): Hard-code another
45554         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
45555         but modules/fts-lgpl (correctly) does not list those files.
45556
45557         * modules/canonicalize (Files): Add lib/pathmax.h.
45558
45559 2005-06-25  Simon Josefsson  <jas@extundo.com>
45560
45561         * modules/check-version: New file.
45562
45563 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
45564
45565         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
45566         initializer of struct addrinfo, as an indication that we don't
45567         care how many members the structure has.
45568
45569 2005-06-24  Derek Price  <derek@ximbiot.com>
45570         and Bruno Haible  <bruno@clisp.org>
45571
45572         Remove stat module & update lstat.
45573         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
45574         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45575         * m4/stat.m4: Remove this file.
45576
45577 2005-06-24  Derek Price  <derek@ximbiot.com>
45578         and Bruno Haible  <bruno@clisp.org>
45579
45580         Remove stat module & update lstat.
45581         * lib/stat.c: Remove this file...
45582         (slash_aware_lstat): ...moving this content and its support...
45583         * lib/lstat.c (rpl_lstat): ...into here.
45584         * lib/lstat.h: New file.
45585
45586 2005-06-24  Derek Price  <derek@ximbiot.com>
45587         and Bruno Haible  <bruno@clisp.org>
45588
45589         Remove stat module & update lstat.
45590         * config/srclist.txt (libc sources): Remove stat.
45591
45592 2005-06-24  Derek Price  <derek@ximbiot.com>
45593         and Bruno Haible  <bruno@clisp.org>
45594
45595         Remove stat module & update lstat.
45596         * MODULES.html.sh (stat): Remove.
45597         * MODULES.html: Regenerated.
45598         * modules/lstat (Description): Correct function name.
45599         (Files): Add "lstat.h".
45600         (Depends-on): Remove stat, add xalloc, stat-macros.
45601         * modules/stat: Remove this file.
45602         (Include): Add "lstat.h", remove <sys/stat.h>.
45603
45604 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
45605
45606         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
45607         (ranged_convert): Don't save conversion in a temporary struct.
45608         This causes a warning with GCC 4.0.0, and anyway in the typical
45609         case it's not worth the extra 100 bytes or so of code.
45610         (ranged_convert, __mktime_internal): When calling a function via a
45611         pointer P, use P () rather than (*P) (), as we now assume C89 or
45612         better.
45613
45614 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
45615
45616         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
45617         "who -r" failed to give output.  Problem reported by Tim Waugh.
45618
45619         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
45620         (xcalloc): Use it to avoid needless tests.
45621         Problem reported by Jim Meyering.
45622
45623 2005-06-20  Derek Price  <derek@ximbiot.com>
45624
45625         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
45626         unnecessary for Autoconfs > 2.59c.
45627
45628 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45629
45630         * lib/argp.h (__option_is_short): Check upper limit of
45631         __key. Isprint() requires its argument to have the value
45632         of an unsigned char or EOF.
45633
45634 2005-06-16  Jim Meyering  <jim@meyering.net>
45635
45636         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
45637         when either N or S is zero.
45638
45639 2005-06-16  Derek Price  <derek@ximbiot.com>
45640
45641         * m4/bison.m4: Declare YACC & YFLAGS precious.
45642
45643 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
45644
45645         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
45646         multibyte string or pattern, fall back on unibyte matching.
45647         Problem reported by James Youngman.
45648
45649 2005-06-08  Bruno Haible  <bruno@clisp.org>
45650
45651         * modules/csharpcomp: New file.
45652         * MODULES.html.sh (C#): Add csharpcomp.
45653
45654 2005-06-08  Bruno Haible  <bruno@clisp.org>
45655
45656         * m4/csharpcomp.m4: New file, from GNU gettext.
45657
45658 2005-06-08  Bruno Haible  <bruno@clisp.org>
45659
45660         * lib/csharpcomp.h: New file, from GNU gettext.
45661         * lib/csharpcomp.c: New file, from GNU gettext.
45662         * lib/csharpcomp.sh.in: New file, from GNU gettext.
45663
45664 2005-06-08  Bruno Haible  <bruno@clisp.org>
45665
45666         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
45667         warning on mingw.
45668
45669 2005-06-07  Derek Price  <derek@ximbiot.com>
45670
45671         Sync from CVS.
45672         * lib/glob_.h: Indent nested #ifdef.
45673
45674 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45675
45676         Sync from coreutils.
45677         Use "file name" when talking about file names, instead of "filename"
45678         or "path", as per the GNU coding standards.
45679         * lib/mkdir-p.c: Renamed from makepath.c.
45680         (make_dir_parents): Renamed from make_path.  All callers changed.
45681         * lib/mkdir-p.h: Likewise.  All includers changed.
45682         * lib/filenamecat.c: Renamed from path-concat.c.
45683         (file_name_concat): Renamed from path_concat.  All callers changed.
45684         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
45685         * lib/filenamecat.h: Likewise.  All includers changed.
45686         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
45687         in comments or local variable names.
45688         * lib/basename.c: Likewise.
45689         * lib/canonicalize.c, canonicalize.h: Likewise.
45690         * lib/dirname.c, dirname.h: Likewise.
45691         * lib/euidaccess.c: Likewise.
45692         * lib/exclude.c: Likewise
45693         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
45694         * lib/fsusage.c, fsuage.h: Likewise.
45695         * lib/fts.c, fts_.h: Likewise.
45696         * lib/getcwd.c: Likewise.
45697         * lib/getloadavg.c: Likewise.
45698         * lib/mkstemp.c: Likewise.
45699         * lib/mountlist.c, mountlist.h: Likewise.
45700         * lib/openat.c, openat.h: Likewise.
45701         * lib/readlink-stub.c: Likewise.
45702         * lib/readutmp.c, readutmp.h: Likewise.
45703         * lib/rename.c: Likewise.
45704         * lib/rmdir.c: Likewise.
45705         * lib/same.c: Likewise.
45706         * lib/savedir.c: Likewise.
45707         * lib/stripslash.c: Likewise.
45708         * lib/tempname.c: Likewise.
45709         * lib/xreadlink.c: Likewise.
45710         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
45711         All uses changed.
45712         * lib/exclude.h: Likewise.
45713
45714         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
45715         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45716         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
45717         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45718         * lib/pathmax.h: Include <limits.h> unconditionally, since other
45719         files have been getting away with it for years (MORE/BSD 4.3
45720         is extinct now).
45721         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
45722         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45723
45724         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
45725         Define to 256, not 255, as per modern POSIX.
45726
45727 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45728
45729         Sync from coreutils.
45730         Use "file name" when talking about file names, instead of "filename"
45731         or "path", as per the GNU coding standards.
45732         * MODULES.html.sh: mkdir-p renamed from makepath.
45733         filenamecat renamed from path-concat.
45734         * modules/filenamecat: Renamed from modules/path-concat.
45735         (Files): filenamecat.h and filenamecat.c renamed from
45736         path-concat.h and path-concat.c.
45737         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
45738         (Include): filenamecat.h, not path-concat.h.
45739         * modules/mkdir-p: Renamed from modules/makepath.
45740         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
45741         makepath.c.
45742         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
45743         (Include): mkdir-p.h, not makepath.h.
45744
45745 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45746
45747         Sync from coreutils.
45748         * m4/mkdir-p.m4: Renamed from makepath.m4.
45749         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
45750         Rename files from makepath.c to mkdir-p.c, and from
45751         makepath.h to mkdir-p.h.
45752         * m4/filenamecat.m4: Renamed from path-concat.m4.
45753         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
45754         Rename files from path-concat.c to filenamecat.c,
45755         and from path-concat.h to filenamecat.h.
45756         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
45757         "file name" in local variables or comments.
45758         * m4/rename.m4: Likewise.
45759
45760 2005-06-01  Bruno Haible  <bruno@clisp.org>
45761
45762         * modules/csharpexec: New file.
45763         * MODULES.html.sh (C#): New section.
45764
45765 2005-06-01  Bruno Haible  <bruno@clisp.org>
45766
45767         * m4/csharp.m4: New file, from GNU gettext.
45768         * m4/csharpexec.m4: New file, from GNU gettext.
45769
45770 2005-06-01  Bruno Haible  <bruno@clisp.org>
45771
45772         * lib/csharpexec.h: New file, from GNU gettext.
45773         * lib/csharpexec.c: New file, from GNU gettext.
45774         * lib/csharpexec.sh.in: New file, from GNU gettext.
45775
45776 2005-05-31  Derek Price  <derek@ximbiot.com>
45777             Paul Eggert  <eggert@cs.ucla.edu>
45778
45779         Sync from cvs.
45780         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45781
45782 2005-05-31  Derek Price  <derek@ximbiot.com>
45783             Paul Eggert  <eggert@cs.ucla.edu>
45784
45785         Sync from cvs.
45786         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45787
45788 2005-05-29  Derek Price  <derek@ximbiot.com>
45789
45790         * config/srclist.txt (glob_.h, glob.c): Add these files.
45791
45792 2005-05-29  Derek Price  <derek@ximbiot.com>
45793
45794         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
45795         * modules/glob: New file.
45796         * modules/getlogin_r: Add link to POSIX spec in description.
45797
45798 2005-05-29  Derek Price  <derek@ximbiot.com>
45799             Paul Eggert  <eggert@cs.ucla.edu>
45800
45801         * m4/glob.m4: New file.
45802
45803 2005-05-29  Derek Price  <derek@ximbiot.com>
45804             Paul Eggert  <eggert@cs.ucla.edu>
45805
45806         * lib/glob_.h, lib/glob.c: New files.
45807
45808 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45809
45810         * modules/fts (Files): Remove m4/inttypes-pri.m4.
45811         * modules/fts-lgpl (Depends-on): Remove gettext.
45812
45813 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45814
45815         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
45816         and don't require gt_INTTYPES_PRI.
45817
45818 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45819
45820         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
45821
45822         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
45823         the configuration hassle isn't worth it.
45824         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
45825         (LONGEST_MODIFIER, PRIuMAX): Remove.
45826
45827 2005-05-27  Bruno Haible  <bruno@clisp.org>
45828
45829         * lib/getlogin_r.h: Remove second include of <stddef.h>.
45830
45831 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
45832
45833         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
45834         _POSIX_PTHREAD_SEMANTICS for Solaris.
45835
45836 2005-05-25  Derek Price  <derek@ximbiot.com>
45837
45838         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
45839
45840 2005-05-25  Derek Price  <derek@ximbiot.com>
45841             Paul Eggert  <eggert@cs.ucla.edu>
45842
45843         * modules/getlogin_r, m4/getlogin_r.m4: New files.
45844         * lib/getlogin_r.c, getlogin_r.h: New files.
45845
45846 2005-05-25  Bruno Haible  <bruno@clisp.org>
45847             Derek Price  <derek@ximbiot.com>
45848
45849         * lib/getlogin_r.h: Simplify API documentation.
45850
45851 2005-05-23  Derek Price  <derek@ximbiot.com>
45852
45853         * modules/minmax (Files): Add m4/minmax.m4.
45854         (configure.ac): Add gl_MINMAX.
45855
45856 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45857
45858         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
45859         so that unistd-safer.h (GPL'ed code) need not be included.
45860
45861 2005-05-22  Bruno Haible  <bruno@clisp.org>
45862
45863         * m4/minmax.m4: New file.
45864         Based on a patch by Derek Price <derek@ximbiot.com>.
45865
45866 2005-05-22  Bruno Haible  <bruno@clisp.org>
45867
45868         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
45869         (INT64_MIN): Fix definition.
45870         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
45871
45872         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
45873         NEED_SIGNED_INT_TYPES.
45874
45875         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
45876         HAVE_SYSTEM_INTTYPES.
45877
45878 2005-05-22  Bruno Haible  <bruno@clisp.org>
45879
45880         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
45881         Also include <sys/param.h> if it defines MIN, MAX.
45882         Based on a patch by Derek Price <derek@ximbiot.com>.
45883
45884 2005-05-21  Jim Meyering  <jim@meyering.net>
45885
45886         * modules/fts (Files): Add m4/inttypes-pri.m4.
45887         (Depends-on): Add lstat and remove gettext.  Alphabetize.
45888
45889 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45890
45891         New fts module.
45892         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
45893         (setup_dir, free_dir): New functions.
45894         (enter_dir, leave_dir): Define trivial
45895         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
45896         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
45897         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
45898         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
45899         Move to fts-cycle.c.
45900         (fts_open): Use setup_dir.
45901         (fts_close): Use free_dir.
45902         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
45903         This adds a label and some gotos, but the alternatives were messier.
45904         Check for memory allocation failure when entering a dir.
45905         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
45906         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
45907         (FTS): New member fts_cycle, that is a union that contains the
45908         old active_dir_ht and cycle_state.  All uses changed to mention
45909         fts_cycle.ht and fts_cycle.state.
45910         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
45911         fts.c, with the following changes:
45912         (setup_dir, free_dir): New functions.
45913         (enter_dir): Now returns bool.  Return true if successful, false
45914         if memory exhausted.  All callers changed.
45915         Do not bother partly cleaning up on
45916         memory allocation failure; that is free_dir's job.
45917         However, free ad if hash_insert fails, to avoid memory leak.
45918         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
45919         fts->fts_options to see which union member to use.
45920
45921 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45922
45923         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
45924         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
45925
45926 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45927
45928         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
45929
45930 2005-05-20  Jim Meyering  <jim@meyering.net>
45931
45932         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
45933         Now a macro, to pacify GCC.
45934
45935 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45936
45937         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
45938         of -1.
45939
45940 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45941
45942         * lib/chown.c (rpl_chown): Return -1 on failure.
45943
45944 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45945
45946         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
45947         Don't check for stddef.h.
45948         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
45949         don't use its results.
45950         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
45951         since we include them unconditionally.  Don't require
45952         AM_STDBOOL_H, since stdbool is a prerequisite.
45953         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
45954         since we assume C89 or better.
45955         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
45956         as we don't use their results.
45957         Don't check for fchdir, memmove, memset, strrchr, as we use
45958         them unconditionally.
45959         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
45960         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
45961
45962 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45963
45964         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
45965         Include <stddef.h> unconditionally, since we assume C89 now.
45966         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
45967         * lib/fts.c: Include fts_.h first, to check interface.
45968         Do not include intprops.h; no longer needed.
45969         Include cycle-check.h and hash.h, since fts_.h no longer does.
45970         Remove unnecessary casts of closedir to void.
45971         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
45972         decide whether to decrement nlinks.
45973         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
45974         (FTS): Use struct hash_table * instead of Hash_table, so that
45975         we no longer need to include hash.h here.
45976
45977 2005-05-18  Jim Meyering  <jim@meyering.net>
45978
45979         * modules/dirfd (License): Change to LGPL.  Most of the code
45980         is already in the public domain.
45981
45982 2005-05-18  Jim Meyering  <jim@meyering.net>
45983
45984         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
45985         Reported by Yoann Vandoorselaere.
45986
45987 2005-05-17  Jim Meyering  <jim@meyering.net>
45988
45989         * m4/fts.m4: New file, from coreutils.
45990
45991 2005-05-17  Jim Meyering  <jim@meyering.net>
45992
45993         * lib/fts.c, lib/fts_.h: New files, from coreutils.
45994
45995 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45996
45997         Sync from coreutils.
45998         * m4/unlinkdir.m4: New file.
45999
46000 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
46001
46002         Sync from coreutils.
46003         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
46004         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
46005         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
46006         White space changes only.
46007         * lib/makepath.c (make_path): Port to hosts where leading "//" is
46008         special.
46009         * lib/yesno.c: Include getline.h, not ctype.h.
46010         (yesno): Don't remove leading white space; POSIX doesn't allow it.
46011         Use getline to remove arbitrary restriction on response length.
46012
46013 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
46014
46015         * config/srclist-update: Spell out "Street" in FSF postal
46016         mail address; this is the style the FSF seems to prefer.
46017
46018         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
46019         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
46020         this updates FSF postal mail address.
46021
46022         Sync from coreutils.
46023         * modules/unlinkdir: New file.
46024         * modules/yesno (Depends-on): Add getline.
46025         * MODULES.html.sh (File system functions): Add unlinkdir.
46026
46027 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
46028
46029         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
46030         lib/strsep.h:
46031         Change the initial comment to refer to GPL, not LGPL.
46032         gnulib-tool will change it to LGPL as needed.
46033
46034         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
46035         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
46036         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
46037         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
46038         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
46039         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
46040         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
46041         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
46042         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
46043         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
46044         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
46045         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
46046         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
46047         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
46048         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
46049         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
46050         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
46051         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
46052         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
46053         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
46054         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
46055         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
46056         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
46057         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
46058         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
46059         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
46060         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
46061         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
46062         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
46063         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
46064         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
46065         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
46066         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
46067         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
46068         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
46069         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
46070         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
46071         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
46072         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
46073         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
46074         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
46075         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
46076         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
46077         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
46078         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
46079         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
46080         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
46081         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
46082         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
46083         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
46084         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
46085         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
46086         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
46087         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
46088         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
46089         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
46090         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
46091         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
46092         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
46093         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
46094         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
46095         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
46096         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
46097         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
46098         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
46099         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
46100         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
46101         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
46102         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
46103         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
46104         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
46105         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
46106         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
46107         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
46108         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
46109         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
46110         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
46111         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
46112         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
46113         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
46114         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
46115         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
46116         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
46117         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
46118         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
46119         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
46120         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
46121         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
46122         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
46123         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
46124         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
46125         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
46126         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
46127         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
46128         lib/yesno.c, lib/yesno.h:
46129         Update FSF postal mail address.
46130
46131 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
46132
46133         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
46134         tests/test-memmem.c, tests/test-stpncpy.c:
46135         Update FSF postal mail address.
46136
46137 2005-05-13  Bruno Haible  <bruno@clisp.org>
46138
46139         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
46140         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
46141         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
46142         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
46143         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
46144         Add support for 64-bit integers in the MSVC compiler.
46145
46146 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46147
46148         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
46149
46150 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
46151
46152         * gnulib-tool (func_import): Sort and uniquify recommended includes.
46153
46154 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
46155
46156         * doc/getdate.texi (General date syntax): Don't say that date
46157         date --iso-8601=ns generates acceptable dates; it doesn't yet.
46158         Problem reported by Nic Ferrier.
46159
46160 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46161
46162         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
46163         specified in ai_socktype. Fix invalid ai_protocol
46164         check. ai_protocol is usually set to 0 or depending on
46165         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
46166         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
46167         ai_socktype / ai_protocol in the returned addrinfo structure.
46168
46169 2005-05-10  Simon Josefsson  <jas@extundo.com>
46170
46171         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
46172         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
46173
46174 2005-05-10  Karl Berry  <karl@gnu.org>
46175
46176         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
46177         (from http://www.gnu.org/licenses).
46178         * doc/COPYING.LIB: also rename to COPYING.LESSER.
46179         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
46180         fdl.texi suffices.
46181
46182 2005-05-10  Karl Berry  <karl@gnu.org>
46183
46184         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
46185         (COPYING.DOC): remove.
46186
46187         * config/srclist-update: new FSF address.
46188
46189 2005-05-10  Derek Price  <derek@ximbiot.com>
46190
46191         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
46192         possible.
46193
46194 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46195             Bruno Haible  <bruno@clisp.org>
46196
46197         * modules/inet_ntop: New file.
46198         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
46199         inet_ntop.
46200
46201 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46202             Bruno Haible  <bruno@clisp.org>
46203
46204         * m4/inet_ntop.m4: New file.
46205
46206 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46207             Bruno Haible  <bruno@clisp.org>
46208
46209         * lib/inet_ntop.h: New file.
46210         * lib/inet_ntop.c: New file, from glibc with modifications.
46211
46212 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
46213
46214         * modules/time_r (License): Change to LGPL.
46215         * modules/extensions (License): Change to LGPL.  Actually,
46216         the license is more permissive than that, but currently gnulib-tool
46217         doesn't know how to handle more-permissive licenses.
46218
46219         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
46220         Problem reported by Dave Love.
46221
46222 2005-05-08  Jim Meyering  <jim@meyering.net>
46223
46224         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
46225         blank.
46226
46227 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
46228
46229         * modules/argmatch (Depends-on): Add stdbool.
46230         * modules/backupfile (Depends-on): Likewise.
46231         * modules/chdir-long (Depends-on): Likewise.
46232         * modules/closeout (Depends-on): Likewise.
46233         * modules/cycle-check (Depends-on): Likewise.
46234         * modules/dirname (Depends-on): Likewise.
46235         * modules/fnmatch (Depends-on): Likewise.
46236         * modules/fsusage (Depends-on): Likewise.
46237         * modules/fwriteerror (Depends-on): Likewise.
46238         * modules/getcwd (Depends-on): Likewise.
46239         * modules/getloadavg (Depends-on): Likewise.
46240         * modules/hard-locale (Depends-on): Likewise.
46241         * modules/makepath (Depends-on): Likewise.
46242         * modules/mountlist (Depends-on): Likewise.
46243         * modules/nanosleep (Depends-on): Likewise.
46244         * modules/posixtm (Depends-on): Likewise.
46245         * modules/quotearg (Depends-on): Likewise.
46246         * modules/readtokens (Depends-on): Likewise.
46247         * modules/readtokens0 (Depends-on): Likewise.
46248         * modules/readutmp (Depends-on): Likewise.
46249         * modules/save-cwd (Depends-on): Likewise.
46250         * modules/strftime (Depends-on): Likewise.
46251         * modules/userspec (Depends-on): Likewise.
46252         * modules/utimecmp (Depends-on): Likewise.
46253         * modules/xgetcwd (Depends-on): Likewise.
46254         * modules/xnanosleep (Depends-on): Likewise.
46255         * modules/xstrtod (Depends-on): Likewise.
46256         * modules/yesno (Depends-on): Likewise.
46257
46258 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
46259
46260         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
46261         needless checks.
46262
46263 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46264
46265         Merge from coreutils.  Among other things,
46266         add bulletproofing for cases where stdin, stdout, or stderr are closed.
46267         * lib/fd-safer.c: New file.
46268         * lib/fcntl-safer.h, open-safer.c: Remove.
46269         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
46270         * lib/dup-safer.c: Include unistd-safer.h first.
46271         Don't include errno.h.
46272         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
46273         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
46274         * lib/file-type.c: Rely on file-type.h change.
46275         * lib/getloadavg.c: Include unistd-safer.h.
46276         (getloadavg): Use safer open.
46277         * lib/getusershell.c: Include "stdio-safer.h".
46278         (getusershell): Use safer fopen.
46279         * lib/long-options.c (long_options): Use NULL rather than 0.
46280         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
46281         'free'.
46282         * lib/modechange.c: Likewise.
46283         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
46284         (MODE_DONE): New constant.
46285         (struct mode_change): Remove 'next' member.
46286         (make_node_op_equals): New function; like the old one of the
46287         same name, except it allocates an array.
46288         (mode_compile, mode_create_from_ref): Use it.
46289         (mode_compile): Allocate result as an array, not a linked list.
46290         Parse octal string ourself, so that we catch mistakes like "+0".
46291         (mode_adjust): Arg is an array, not a linked list.
46292         * lib/modechange.c: Include stat-macros.h, xalloc.h.
46293         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
46294         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
46295         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
46296         Remove.  This is now stat-macros.h's job.
46297         (talloc): Remove.  All callers replaced by xalloc, so that
46298         our invokers don't have to worry about reporting memory failures.
46299         (make_node_op_equals): Remove.
46300         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46301         New constants.
46302         (struct mode_change): Moved here from modechange.h.
46303         (mode_append_entry): Remove.
46304         (mode_compile): Remove MASKED_OPS arg, since it encouraged
46305         apps to have incorrect behavior.  Use simpler algorithm for head
46306         and tail.  Don't futz with umask; that's now the job of mode_adjust.
46307         Detect more invalid usages rather than having somewhat-random behavior.
46308         Don't insert an "a=" action, as that leads to incorrect behavior.
46309         (mode_compile, mode_create_from_ref): Return NULL on error instead
46310         of an enum, since now there's only one way to have an error.  All
46311         callers changed.
46312         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
46313         at the correct time.  Simplify calculation of "+u" and its ilk.
46314         Don't mishandle "+X".
46315         (mode_free): Remove "register" and localize decls.
46316         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46317         (struct mode_change): Move to modechange.c; callers don't
46318         need to see this stuff.
46319         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
46320         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
46321         (mode_change, mode_adjust): Reflect the new signatures noted above.
46322         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
46323         that might redefine system include files.
46324         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
46325         (my_usleep): Use NULL rather than (void *) 0.
46326         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
46327         Use siginterrupt to specify that system calls should be interrupted.
46328         (rpl_nanosleep): Move initialization of suspended closer to call of
46329         my_usleep.
46330         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
46331         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
46332         (desirable_utmp_entry): New function.
46333         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
46334         using x2nrealloc, to simplify logic.
46335         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
46336         size calculation.  Do not assume utmp file is a regular file.
46337         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
46338         (READ_UTMP_CHECK_PIDS): New constant.
46339         * lib/save-cwd.c: Include unistd-safer.h.
46340         (save_cwd): Use fd_safer.
46341         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
46342         [!_LIBC] Include "stat-macros.h" instead.
46343         * lib/unistd-safer.h (fd_safer): New decl.
46344
46345 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46346
46347         * modules/getloadavg (Depends-on): Add unistd-safer.
46348         * modules/getusershell (Depends-on): Add stdio-safer.
46349         * modules/lstat (Depends-on): Remove xalloc.
46350         * modules/mkstemp (Depends-on): Add stat-macros.
46351         * modules/modechange (Depends-on): Remove xstrtol.
46352         Add stat-macros, xalloc.
46353         * modules/save-cwd (Depends-on): Add unistd-safer.
46354         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
46355         * modules/unistd-safer (Files): Add lib/fd-safer.c
46356         (Makefile.am): Remove lib_SOURCES.
46357
46358         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
46359         Remove fcntl-safer; unistd-safer supersedes it.
46360
46361 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46362
46363         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
46364         AC_HEADER_STAT.
46365         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
46366         (gl_PREREQ_CHOWN): Remove.
46367         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
46368         it.  Don't require AC_HEADER_STAT.
46369         (gl_PREREQ_LSTAT): Remove.
46370         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
46371         Don't require AC_HEADER_STAT.
46372         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
46373         (gl_PREREQ_RMDIR): Remove.
46374         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
46375         mention stat-macros.h or AC_HEADER_STAT, since we'll make
46376         the stat-macros module a prerequisite.
46377         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
46378         * m4/filemode.m4 (gl_FILEMODE): Likewise.
46379         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
46380         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
46381         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
46382         variable names.
46383         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
46384         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
46385         variable prefixes.
46386         * m4/fcntl-safer.m4: Remove.
46387         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
46388         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
46389         Invoke gl_PREREQ_FD_SAFER.
46390         (gl_PREREQ_FD_SAFER): New macro.
46391         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
46392         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
46393         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
46394         Remove duplicate call to AC_LIBOBJ(readutmp).
46395         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
46396
46397         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
46398         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
46399
46400 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46401
46402         * MODULES.html.sh (Misc): Add byteswap.
46403
46404 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46405
46406         * modules/getcwd (Depends-on): Add extensions.
46407         * modules/openat (Depends-on): Likewise.
46408
46409 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46410
46411         * modules/byteswap: New file.
46412
46413 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46414
46415         * m4/byteswap.m4: New file.
46416
46417 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46418
46419         * lib/byteswap_.h: New file.
46420
46421 2005-04-25  Karl Berry  <karl@gnu.org>
46422
46423         * m4/gettext.m4: Update from GNU gettext 0.14.4.
46424
46425 2005-04-25  Albert Chin  <china@thewrittenword.com>
46426
46427         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
46428         Toolkit C bug.
46429
46430 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
46431
46432         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
46433         (func_ln_if_changed) Remove forcibly for no error message
46434         in case file does not exist.
46435
46436 2005-04-19  Simon Josefsson  <jas@extundo.com>
46437
46438         * gnulib-tool (Options): Make --symlink mean --symbolic.
46439
46440 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
46441
46442         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
46443
46444 2005-04-16  Simon Josefsson  <jas@extundo.com>
46445
46446         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
46447
46448 2005-04-15  Simon Josefsson  <jas@extundo.com>
46449
46450         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
46451
46452 2005-04-15  Simon Josefsson  <jas@extundo.com>
46453
46454         * gnulib-tool: Rename --symlink to --symbolic.
46455
46456 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
46457
46458         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
46459         symbolic links to files instead of copying/moving.  Add --aux-dir,
46460         specifying directory relative --dir where auxiliary build tools
46461         are placed.
46462
46463 2005-04-14  Bruno Haible  <bruno@clisp.org>
46464
46465         * modules/allocsa (License): Change to LGPL.
46466         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
46467
46468 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46469
46470         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
46471         that "UTC +1 second" continues to work.  Problem reported
46472         by Dmitry V. Levin.
46473         (relunit_snumber): New rule.
46474         (relunit): Use it.
46475
46476 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46477
46478         * lib/getdate.y (universal_time_zone_table): New constant.
46479         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
46480         universal_time_zone_table.
46481         (lookup_zone): Prefer universal_time_zone_table to
46482         local_time_zone_table, so that "GMT" time stamps are allowed in
46483         London during the summer.  Problem reported by Ian Abbott.
46484
46485 2005-04-12  Jim Meyering  <jim@meyering.net>
46486
46487         * lib/human.c (humblock): Set *options even when returning due to
46488         xstrtoumax conversion failure.  Thanks to a used-uninitialized
46489         warning from gcc-4.
46490
46491 2005-04-09  Jim Meyering  <jim@meyering.net>
46492
46493         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
46494         -Wuninitialized: initialize tm0.tm_year.
46495
46496 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
46497
46498         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
46499         count, since there's no maximum.  All uses changed.
46500         Add member dsts_seen.
46501         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
46502         not being INT_MAX.
46503         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
46504         Use pc_rels_seen to decide whther a date is absolute.
46505
46506         * lib/getdate.y (number): Don't overwrite year.
46507         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
46508         check.
46509
46510 2005-04-02  Simon Josefsson  <jas@extundo.com>
46511
46512         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
46513         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
46514
46515 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
46516
46517         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
46518         where no absolute path name can be longer than PATH_MAX.
46519
46520 2005-03-27  Jim Meyering  <jim@meyering.net>
46521
46522         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
46523
46524 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
46525
46526         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
46527         "one's complement" -> "ones' complement" in comment, as per Knuth.
46528         "value of type" -> "type or expression" in comment.
46529         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
46530
46531 2005-03-26  Jim Meyering  <jim@meyering.net>
46532
46533         Comment nits.
46534         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
46535         Correct typos: s/or/of/.
46536
46537 2005-03-26  Jim Meyering  <jim@meyering.net>
46538
46539         * modules/check-include-files: Move to ../ and rename to...
46540         * check-module: ...this.
46541
46542 2005-03-25  Jim Meyering  <jim@meyering.net>
46543
46544         * modules/xvasprintf (Files): Add xalloc.h.
46545
46546 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
46547
46548         * modules/gettext (Files): config/config.rpath ->
46549         build-aux/config.rpath
46550         * modules/iconv (Files): Likewise.
46551         Problem reported by Oskar Liljeblad.
46552
46553 2005-03-23  Jim Meyering  <jim@meyering.net>
46554
46555         * modules/check-include-files: New script to check for
46556         missing dependencies, multiple includes, etc.
46557
46558         * modules/c-strtold (Depends-on): Add xalloc.
46559         * modules/c-strtod (Depends-on): Add xalloc.
46560         * modules/hash (Depends-on): Add xalloc.
46561         (Files): Remove lib/xalloc.h.
46562
46563         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
46564         * modules/userspec (Files): Add lib/inttostr.h.
46565
46566 2005-03-23  Jim Meyering  <jim@meyering.net>
46567
46568         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
46569
46570 2005-03-22  Jim Meyering  <jim@meyering.net>
46571
46572         * modules/stat-macros: New module.
46573         * modules/canonicalize, modules/euidaccess, modules/file-type,
46574         * modules/filemode, modules/lchown, modules/makepath,
46575         * modules/rmdir, modules/stat: Depend on new stat-macros module
46576         rather than listing lib/stat-macros.h manually.
46577         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
46578
46579 2005-03-22  Jim Meyering  <jim@meyering.net>
46580
46581         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
46582
46583 2005-03-22  Bruno Haible  <bruno@clisp.org>
46584
46585         * config/srclist.txt: Replace target directory 'config' with
46586         'build-aux'.
46587         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
46588         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
46589         ../build-aux/.
46590
46591 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
46592
46593         * modules/chdir-long (Depends-on): Add mempcpy.
46594
46595         * modules/acl, modules/backupfile, modules/c-strtod,
46596         modules/c-strtold, modules/canon-host, modules/canonicalize,
46597         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
46598         modules/exclude, modules/exitfail, modules/file-type,
46599         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
46600         modules/getdate, modules/getline, modules/getpagesize,
46601         modules/getpass, modules/getugroups, modules/group-member,
46602         modules/hard-locale, modules/hash, modules/human, modules/idcache,
46603         modules/inttostr, modules/long-options, modules/makepath,
46604         modules/md5, modules/memcasecmp, modules/memcoll,
46605         modules/modechange, modules/mountlist, modules/path-concat,
46606         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
46607         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
46608         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
46609         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
46610         modules/strftime, modules/strndup, modules/strverscmp,
46611         modules/timespec, modules/unlocked-io, modules/userspec,
46612         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
46613         modules/yesno:
46614         Remove lib_SOURCES line from Makefile.am section, as this is now
46615         done automatically by the corresponding Autoconf macro.
46616
46617 2005-03-21  Jim Meyering  <jim@meyering.net>
46618
46619         Changes imported from coreutils.
46620
46621         * lib/cycle-check.c: Don't include xalloc.h.
46622
46623         * lib/path-concat.c: Don't include assert.h.
46624         (path_concat): Remove assertion that would have triggered
46625         for ABASE starting with more than one slash.
46626         Reported by Andreas Schwab.
46627
46628         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
46629         properly when ABASE is an absolute file name.
46630         Correct the description of this function.
46631         Include <assert.h>.
46632         Add an assertion and a test driver.
46633         This fixes a bug introduced on 2004-07-02.
46634         Andreas Schwab reported the resulting failure of cp --parents:
46635         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
46636
46637 2005-03-21  Jim Meyering  <jim@meyering.net>
46638
46639         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
46640         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
46641
46642 2005-03-21  Jim Meyering  <jim@meyering.net>
46643         and  Paul Eggert  <eggert@cs.ucla.edu>
46644
46645         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
46646         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
46647         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
46648         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
46649         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
46650         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
46651         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
46652         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
46653         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
46654         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
46655         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
46656         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
46657         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
46658         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
46659         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
46660         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
46661         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
46662         for these modules.
46663
46664 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
46665
46666         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
46667         (which shouldn't happen), generate nothing instead of returning 0
46668         immediately, so that nstrftime (NULL, ...) doesn't return 0.
46669
46670 2005-03-16  Bruno Haible  <bruno@clisp.org>
46671
46672         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
46673         HAVE_LONGLONG_64BIT.
46674
46675 2005-03-16  Bruno Haible  <bruno@clisp.org>
46676
46677         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
46678         HAVE_LONGLONG_64BIT.
46679
46680 2005-03-16  Bruno Haible  <bruno@clisp.org>
46681
46682         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
46683         HAVE_LONGLONG_64BIT.
46684
46685 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46686
46687         * lib/strftime.c (my_strftime): Prepend space to format so that we can
46688         reliably distinguish strftime failure from empty output on POSIX
46689         hosts.
46690
46691 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46692
46693         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
46694         (iconv_string): Don't guess a size-zero buffer, as that might cause
46695         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
46696         result would be 'too large', where 'too large' is (heuristically)
46697         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
46698         overflow concerns.  This will prevent some unwanted malloc failures
46699         when the inputs are very large.
46700
46701 2005-03-15  Karl Berry  <karl@gnu.org>
46702
46703         * config/srclist.txt (config.rpath): from gettext.
46704         * config/config.rpath: update.
46705
46706 2005-03-15  Bruno Haible  <bruno@clisp.org>
46707
46708         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
46709         to 'negate'.
46710
46711         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
46712         variable.
46713
46714         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
46715         results.
46716
46717 2005-03-14  Simon Josefsson  <jas@extundo.com>
46718
46719         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
46720         <fx@gnu.org>.
46721
46722 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
46723
46724         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
46725         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
46726         intprops.h.
46727         * lib/strtol.c: Likewise.
46728
46729 2005-03-14  Jim Meyering  <jim@meyering.net>
46730
46731         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
46732         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
46733         to be nonzero so that we (and caller) can detect the difference
46734         between a valid zero-length expansion and an error return, even
46735         when the underlying strftime fails before writing anything into
46736         that location.
46737
46738 2005-03-14  Bruno Haible  <bruno@clisp.org>
46739
46740         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
46741         Update from GNU gettext 0.14.3.
46742
46743 2005-03-10  Jim Meyering  <jim@meyering.net>
46744
46745         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
46746
46747 2005-03-10  Jim Meyering  <jim@meyering.net>
46748
46749         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
46750         so that this module works on systems without fchdir.
46751
46752 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46753
46754         Factor int-properties macros into a single file, except for
46755         glibc-related files.
46756         * lib/intprops.h: New file.
46757         * lib/getloadavg.c: Include it instead of limits.h.
46758         (INT_STRLEN_BOUND): Remove.
46759         * lib/human.c: Include intprops.h.
46760         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
46761         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
46762         302/1000.
46763         * lib/inttostr.h: Include intprops.h instead of limits.h.
46764         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
46765         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
46766         for consistency with intprops.h.
46767         (time_t_is_integer, twos_complement_arithmetic): Use them.
46768         * lib/sig2str.h: Include <signal.h>, intprops.h.
46769         (INT_STRLEN_BOUND): Remove.
46770         * lib/strftime.c (TYPE_SIGNED): Remove.
46771         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
46772         * lib/strtol.c: Adjust comments to match intprops.h.
46773         * lib/userspec.c: Include intprops.h.
46774         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
46775         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
46776         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
46777         instead of rolling our own expressions.
46778         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
46779
46780         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
46781         instead of int.
46782         (my_strftime): Do not mishandle years close to INT_MAX, by doing
46783         the right thing even if adding 1900 would overflow.  Similarly
46784         for tm_mon + 1 and tm_yday + 1.
46785         Make %Y always equivalent to %C%y, and similarly for %G and %g.
46786         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
46787         (DO_SIGNED_NUMBER): New macro.
46788         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
46789
46790 2005-03-07  Bruno Haible  <bruno@clisp.org>
46791
46792         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
46793
46794 2005-03-07  Bruno Haible  <bruno@clisp.org>
46795
46796         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
46797
46798 2005-03-04  Derek R. Price  <derek@ximbiot.com>
46799
46800         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
46801         (func_import): Only replace files via --import when they have actually
46802         changed.
46803
46804 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46805
46806         * m4/mmap-anon.m4: New file.
46807         * m4/pagealign_alloc.m4: New file.
46808
46809 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46810             Bruno Haible  <bruno@clisp.org>
46811
46812         * modules/pagealign_alloc: New file.
46813         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
46814
46815 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46816             Bruno Haible  <bruno@clisp.org>
46817
46818         * lib/pagealign_alloc.h: New file.
46819         * lib/pagealign_alloc.c: New file.
46820
46821 2005-03-03  Bruno Haible  <bruno@clisp.org>
46822
46823         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
46824         Use an all-permissive copyright notice, recommended by RMS.
46825
46826 2005-03-02  Bruno Haible  <bruno@clisp.org>
46827
46828         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
46829         of AIX, the replacement has to be done only after <string.h> is
46830         included, therefore not in config.h. stpncpy.h does the replacement,
46831         and stpncpy.c uses it.
46832
46833 2005-03-02  Bruno Haible  <bruno@clisp.org>
46834
46835         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
46836         stpncpy.c uses it.
46837
46838 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46839
46840         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
46841         The workaround isn't strictly needed for POSIX conformance, and
46842         it's too much of a pain to configure and maintain.  We'll ask
46843         people to fix their kernels instead.
46844         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
46845         (NANOSLEEP_BUG_WORKAROUND): Remove.
46846         (xnanosleep): Remove the workaround.
46847
46848 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46849
46850         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
46851         Reported by Derek Price.
46852         (Include): Add "timespec.h".
46853
46854         * modules/xnanosleep (Depends-on): Remove gethrxtime.
46855
46856 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46857
46858         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
46859         to detect nanosleep bug.
46860
46861 2005-03-01  Bruno Haible  <bruno@clisp.org>
46862
46863         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
46864
46865 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
46866
46867         * modules/gethrxtime: New file.
46868         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
46869         (Depends-on): Add gethrxtime.
46870         (configure.ac): Add gl_XNANOSLEEP.
46871         (Makefile.am): Remove lib_SOURCES line.
46872
46873 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46874
46875         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
46876         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
46877
46878 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46879
46880         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
46881         * lib/timespec.h (gettime): Return void, since it always
46882         succeeds now.  All uses changed.
46883         * lib/gettime.c (gettime) Likewise.
46884         [HAVE_NANOTIME]: Prefer nanotime.
46885         Assume gettimeofday succeeds, as POSIX requires.
46886         Assime time () succeeds, since other code already does.
46887         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
46888         (timespec_subtract): Remove.
46889         (NANOSLEEP_BUG_WORKAROUND): New constant.
46890         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
46891         things considerably.  Use it only on GNU/Linux hosts, since the
46892         workaround shouldn't be needed elsewhere.
46893
46894 2005-02-24  Bruno Haible  <bruno@clisp.org>
46895
46896         * modules/gettext (Files): Add m4/glibc2.m4.
46897
46898 2005-02-24  Bruno Haible  <bruno@clisp.org>
46899
46900         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
46901         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
46902         * m4/progtest.m4:
46903         Update from GNU gettext 0.14.2.
46904         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
46905
46906 2005-02-24  Bruno Haible  <bruno@clisp.org>
46907
46908         * lib/localcharset.c: Update from GNU gettext 0.14.2.
46909         * lib/config.charset: Update from GNU gettext 0.14.2.
46910
46911 2005-02-24  Bruno Haible  <bruno@clisp.org>
46912
46913         * lib/gettext.h: Update from GNU gettext 0.14.2.
46914
46915 2005-02-23  Simon Josefsson  <jas@extundo.com>
46916
46917         * m4/iconvme.m4: New file.
46918
46919 2005-02-23  Jim Meyering  <jim@meyering.net>
46920
46921         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
46922         change.
46923         Thanks to Bruno Haible for catching it.
46924
46925 2005-02-22  Simon Josefsson  <jas@extundo.com>
46926
46927         * modules/iconvme: New file.
46928
46929         * MODULES.html.sh: Add iconvme.
46930
46931 2005-02-22  Simon Josefsson  <jas@extundo.com>
46932
46933         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
46934
46935 2005-02-22  Simon Josefsson  <jas@extundo.com>
46936
46937         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
46938
46939 2005-02-22  Jim Meyering  <jim@meyering.net>
46940
46941         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
46942         s/ifndef/ifdef/.
46943
46944 2005-02-20  Neil Conway  <neilc@samurai.com>
46945
46946         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
46947         returned by OSX/Darwin if the specified buffer is not large
46948         enough for the hostname.
46949
46950 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46951
46952         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
46953         pass it to _help, otherwise the latter coredumps trying to
46954         dereference state.root_argp.
46955
46956 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46957
46958         * modules/chdir-long (Depends-on): Add memrchr.
46959         * modules/memrchr (Files): Add lib/memrchr.h.
46960         (Include): "memrchr.h".
46961
46962 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46963
46964         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
46965
46966 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46967
46968         * lib/memrchr.h: New file.
46969         * lib/chdir-long.c: Include it.
46970         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
46971         Don't bother including stddef.h.
46972
46973 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
46974
46975         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
46976         inclusion.
46977         Include <sys/types.h>, for dev_t.
46978         (ME_DUMMY, ME_REMOTE): Move from here....
46979         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
46980         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
46981         Dmitry V. Levin.
46982         Include mountlist.h first, to test the interface.
46983
46984 2005-01-29  Bruno Haible  <bruno@clisp.org>
46985
46986         * lib/progname.c (program_name): Initialize.
46987         Needed when linking statically on MacOS X.
46988
46989 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46990
46991         Sync from coreutils.
46992         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
46993         (Depends-on): Add c-strtod.
46994         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
46995
46996 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46997
46998         Sync from coreutils.
46999         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
47000
47001         Remove files that are specific to coreutils.
47002         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
47003
47004 2005-01-28  Bruno Haible  <bruno@clisp.org>
47005
47006         * modules/javacomp: New file.
47007         * MODULES.html.sh (Java): Add javacomp.
47008
47009 2005-01-28  Bruno Haible  <bruno@clisp.org>
47010
47011         * m4/javacomp.m4: New file, from GNU gettext.
47012
47013 2005-01-28  Bruno Haible  <bruno@clisp.org>
47014
47015         * lib/javacomp.sh.in: New file, from GNU gettext.
47016         * lib/javacomp.h: New file, from GNU gettext.
47017         * lib/javacomp.c: New file, from GNU gettext.
47018
47019 2005-01-26  Simon Josefsson  <jas@extundo.com>
47020
47021         * lib/gai_strerror.c: Use GPL in header.
47022
47023 2005-01-26  Bruno Haible  <bruno@clisp.org>
47024
47025         * modules/javaexec: New file.
47026         * MODULES.html.sh (Java): Add javaexec.
47027
47028 2005-01-26  Bruno Haible  <bruno@clisp.org>
47029
47030         * m4/javaexec.m4: New file, from GNU gettext.
47031
47032 2005-01-26  Bruno Haible  <bruno@clisp.org>
47033
47034         * lib/javaexec.sh.in: New file, from GNU gettext.
47035         * lib/javaexec.h: New file, from GNU gettext.
47036         * lib/javaexec.c: New file, from GNU gettext.
47037
47038 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47039
47040         * modules/lchown (Depends-on): Remove lchown.h
47041
47042 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47043
47044         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
47045         must be defined if the header file was not found, in order
47046         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
47047
47048 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47049
47050         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
47051         initializers for struct pentry_state.
47052         (__argp_error): Check return value of __asprintf
47053         (__argp_failure): Translate error message
47054
47055         * lib/argp-parse.c: Removed braces around the expansion of N_()
47056
47057 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47058
47059         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
47060         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
47061         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
47062         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
47063         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
47064         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
47065         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
47066         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
47067         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
47068         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
47069         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
47070         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
47071         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
47072         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
47073         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
47074         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
47075         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
47076         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
47077         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
47078         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
47079         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
47080         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
47081         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
47082         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
47083         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
47084         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
47085         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
47086         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
47087         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
47088         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
47089         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
47090         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
47091         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
47092         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
47093         xstrtol.m4, xstrtoumax.m4, yesno.m4:
47094         Use an all-permissive copyright notice, recommended by RMS.
47095
47096 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
47097
47098         * modules/chdir-long (Depends-on): Remove mempcpy.
47099
47100 2005-01-21  Jim Meyering  <jim@meyering.net>
47101
47102         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
47103         same value as for Solaris 9.
47104
47105         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
47106         component length.  This included changing the parameter to be
47107         of type `char *' rather than `char const *'.
47108         * lib/chdir-long.h (chdir_long): Update prototype.
47109
47110         * lib/openat.c (fdopendir, fstatat): New functions.
47111         * lib/openat.h: Include headers required for use of DIR and struct
47112         stat.
47113         [AT_SYMLINK_NOFOLLOW]: Define.
47114         (fdopendir, fstatat): Add prototypes.
47115
47116 2005-01-21  Bruno Haible  <bruno@clisp.org>
47117
47118         * modules/classpath: New file.
47119         * MODULES.html.sh (Java): Add classpath.
47120
47121 2005-01-21  Bruno Haible  <bruno@clisp.org>
47122
47123         * lib/classpath.h: New file, from GNU gettext.
47124         * lib/classpath.c: New file, from GNU gettext.
47125
47126 2005-01-20  Simon Josefsson  <jas@extundo.com>
47127
47128         * modules/version-etc-fsf: New file.
47129
47130 2005-01-20  Simon Josefsson  <jas@extundo.com>
47131
47132         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
47133         * lib/version-etc.c: Remove version_etc_copyright.
47134         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
47135         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
47136
47137 2005-01-20  Simon Josefsson  <jas@extundo.com>
47138
47139         * lib/base64.h (isbase64): Add.
47140
47141         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
47142         using a unsigned prototype, don't inline.
47143         (base64_decode): Use it.
47144
47145 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47146
47147         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
47148         it.
47149
47150 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47151
47152         * lib/save-cwd.c (save_cwd): Remove code to support the case
47153         where fchdir is missing or flaky.
47154
47155 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47156
47157         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
47158
47159 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
47160
47161         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
47162         AC_LIBSOURCES now does this.
47163         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
47164         with new ullong_max module.
47165
47166 2005-01-19  Bruno Haible  <bruno@clisp.org>
47167
47168         * modules/sh-quote: New file.
47169         * MODULES.html.sh (Executing programs): Add sh-quote.
47170
47171 2005-01-19  Bruno Haible  <bruno@clisp.org>
47172
47173         * lib/sh-quote.h: New file, from GNU gettext.
47174         * lib/sh-quote.c: New file, from GNU gettext.
47175
47176 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
47177
47178         Merge from coreutils.
47179         * m4/ullong_max.m4: New file.
47180         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
47181         (gl_MACROS): Assume localeconv exists.
47182
47183 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
47184
47185         Merge changes from coreutils, as described below in several
47186         changelogs dated today.
47187
47188         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
47189         (O_DIRECTORY): Remove; not needed here, since "." must be
47190         a directory.  All uses removed.
47191         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
47192         universal on Suns, and we also need to test for IRIX.
47193         Revamp code to use 'if' rather than '#if'.
47194         Avoid unnecessary comparison of cwd->desc to 0.
47195
47196         * lib/utimens.c (futimens): Robustify the previous patch, by checking
47197         for known valid error numbers rather than observed invalid ones.
47198
47199 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
47200
47201         * modules/ullong_max: New file.
47202
47203         * modules/chdir-long, modules/openat: New files.
47204         * modules/save-cwd (Depends-on): Depend on chdir-long.
47205         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
47206
47207 2005-01-18  Jim Meyering  <jim@meyering.net>
47208
47209         Merge from coreutils.
47210         * m4/chdir-long.m4, m4/openat.m4: New files.
47211         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
47212         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
47213         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
47214         is sane and DOES follow symlinks.  Besides, testing 20 different
47215         systems found no broken chown implementations.
47216         Prompted by a change in rsync's copy of this macro.
47217         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
47218
47219         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
47220
47221         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
47222         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
47223         NULL-means-set-to-current-time semantics.
47224         Remove temporary file immediately, rather than waiting
47225         for configure's at-exit trap code to do it.
47226
47227 2005-01-18  Jim Meyering  <jim@meyering.net>
47228
47229         * lib/version-etc.c (version_etc_copyright): Update copyright date.
47230
47231         * lib/utimens.c (futimens): Account for the fact that futimes
47232         can also fail with errno == ENOSYS or errno == ENOENT.
47233         Patch from Dmitry V. Levin.
47234
47235         Change the name of the robust chdir function from chdir to chdir_long.
47236         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
47237         (restore_cwd): Use chdir_long, not chdir.
47238         * lib/chdir-long.c: Renamed from chdir.c.
47239         * lib/chdir-long.h: Renamed from chdir.h.
47240         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
47241         Hurd.
47242
47243 2005-01-18  Bruno Haible  <bruno@clisp.org>
47244
47245         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
47246         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
47247         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
47248         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
47249         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
47250         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
47251         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
47252         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
47253         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
47254         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
47255         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
47256         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
47257         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
47258         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
47259         Use an all-permissive copyright notice, recommended by RMS.
47260
47261 2005-01-18  Bob Proulx  <bob@proulx.com>
47262
47263         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
47264         simplify offsetof() macro construct to avoid compile failure with
47265         native HP-UX 11.0 ANSI C compiler.
47266
47267 2005-01-17  Bruno Haible  <bruno@clisp.org>
47268
47269         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
47270         redundant because stpncpy.m4 takes care of it.
47271
47272 2005-01-17  Bruno Haible  <bruno@clisp.org>
47273
47274         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
47275
47276 2005-01-17  Bruno Haible  <bruno@clisp.org>
47277
47278         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
47279         used.
47280
47281 2005-01-17  Bruno Haible  <bruno@clisp.org>
47282
47283         * lib/fwriteerror.h (fwriteerror): Change specification to include
47284         fclose.
47285         * lib/fwriteerror.c: Include <stdbool.h>.
47286         (fwriteerror): At the end, close the file stream. Record whether
47287         stdout was already closed.
47288
47289 2005-01-17  Bruno Haible  <bruno@clisp.org>
47290
47291         * lib/execute.c (environ): Declare if needed.
47292         * lib/pipe.c (environ): Likewise.
47293         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
47294
47295 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47296
47297         * modules/argp: Depend on vsnprintf
47298
47299 2005-01-10  Jim Meyering  <jim@meyering.net>
47300
47301         * modules/closeout (Depends-on): Add atexit.
47302
47303 2005-01-06  Bruno Haible  <bruno@clisp.org>
47304
47305         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
47306
47307 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
47308
47309         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
47310         definitions to be after all include files, to avoid collisions.
47311         Problem reported by Bob Proulx.
47312
47313 2005-01-04  Jim Meyering  <jim@meyering.net>
47314
47315         Changes imported from coreutils.
47316         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
47317         as the mkstemp template, use a temporary directory and an
47318         8.3-friendly template to avoid trouble on systems like DJGPP.
47319         Reported by Juan M. Guerrero via Stepan Kasal.
47320         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
47321         close. Remove the temporary directory right away, rather than waiting
47322         for configure's at-exit trap code to do it.
47323         Suggestion from Stepan Kasal.
47324
47325 2005-01-01  Simon Josefsson  <jas@extundo.com>
47326
47327         * gnulib-tool: Print #include directives when --import'ing.
47328
47329 2004-12-28  Simon Josefsson  <jas@extundo.com>
47330
47331         * tests/test-base64.c: Include required header files.  Remove
47332         unused variables.
47333
47334 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47335
47336         * modules/error (Depends-on): Remove gettext.
47337
47338 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47339
47340         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
47341         not needed.  This removes a dependency on the gettext module.
47342         [defined _LIBC]: Do not include <libintl.h>; not needed.
47343
47344 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47345
47346         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
47347         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
47348
47349 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47350
47351         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
47352         HAVE_DECL_STRTOLD.
47353
47354 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47355
47356         * modules/getdate (Depends-on): Remove alloca-opt.
47357
47358 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47359
47360         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
47361
47362 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47363
47364         * lib/argp-parse.c: Include <stddef.h>.
47365         (alignof, alignto): New macros.
47366         (parser_init): Don't assume that void * is aligned sufficiently
47367         for struct option.
47368
47369         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
47370         need to extend the stack.
47371         (YYINITDEPTH): New macro, so that the initial stack isn't overly
47372         large.
47373
47374 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47375
47376         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
47377
47378 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47379
47380         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
47381         (2004-10-24) change.  Apparently this was a false alarm.
47382
47383         * modules/getdate: Depend on alloca-opt, not alloca.
47384
47385 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47386
47387         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
47388         Remove now-obsolete comment about AIX.
47389         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
47390         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
47391         (YYMAXDEPTH): New macro.
47392
47393 2004-12-18  Simon Josefsson  <jas@extundo.com>
47394
47395         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
47396
47397 2004-12-18  Bruno Haible  <bruno@clisp.org>
47398
47399         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
47400
47401 2004-12-18  Bruno Haible  <bruno@clisp.org>
47402
47403         * lib/fatal-signal.c (fatal_signals): Make non-const.
47404         (init_fatal_signals): New function.
47405         (uninstall_handlers, install_handlers): Ignore signals that were set to
47406         SIG_IGN.
47407         (at_fatal_signal): Call init_fatal_signals.
47408         (init_fatal_signal_set): Likewise. Ignore signals that were set to
47409         SIG_IGN.
47410         Reported by Paul Eggert.
47411
47412 2004-12-18  Bruno Haible  <bruno@clisp.org>
47413
47414         * doc/alloca.texi: New file.
47415         * doc/alloca-opt.texi: New file.
47416
47417 2004-12-17  Jim Meyering  <jim@meyering.net>
47418
47419         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
47420         Otherwise, install-sh could exit with improper exit status when
47421         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
47422
47423 2004-12-16  Simon Josefsson  <jas@extundo.com>
47424
47425         * tests/test-base64.c: Add license.
47426
47427 2004-12-15  Stepan Kasal  <address@hidden>
47428
47429         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
47430
47431 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
47432
47433         * modules/getcwd (Files): Add m4/d-ino.m4.
47434         Suggested by Mark D. Baushke.
47435
47436 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47437
47438         * lib/getdate.y (textint): New member "negative".
47439         (time_zone_hhmm): New function.
47440         Expect 14 shift-reduce conflicts, not 13.
47441         (o_colon_minutes): New rule.
47442         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
47443         (yylex): Set the "negative" member of signed numbers.
47444
47445 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47446
47447         * doc/getdate.texi (Time of day items, Time zone items):
47448         Describe new formats +00:00, UTC+00:00.
47449
47450 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
47451
47452         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
47453         spurious "-l"s.  Problem reported by Stepan Kasal.
47454
47455 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
47456
47457         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
47458         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
47459
47460 2004-12-04  Simon Josefsson  <jas@extundo.com>
47461
47462         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
47463         Vandoorselaere <yoann@prelude-ids.org>.
47464
47465 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47466
47467         Changes imported from coreutils.
47468         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
47469         exist.
47470         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
47471
47472 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47473
47474         Changes imported from coreutils.
47475         * lib/hard-locale.c: Assume <locale.h> exists.
47476         Include "strdup.h".
47477         (GLIBC_VERSION): New macro.
47478         (hard_locale): Assume setlocale exists.
47479         Rewrite to avoid #ifdef.
47480         Use strdup rather than malloc + strcpy.
47481         * lib/human.c: Assume <locale.h> exists.
47482         (human_readable): Assume localeconv exists.
47483
47484 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47485
47486         * modules/hard-locale (Depends-on): Add strdup.
47487
47488 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
47489
47490         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
47491         convert T2, not T.  (Imported from libc.)
47492
47493 2004-11-30  Simon Josefsson  <jas@extundo.com>
47494
47495         * modules/restrict (License): Change to LGPL.
47496
47497 2004-11-30  Simon Josefsson  <jas@extundo.com>
47498
47499         * m4/restrict.m4: Add copyright and copying conditions.
47500
47501 2004-11-30  Simon Josefsson  <jas@extundo.com>
47502
47503         * m4/base64.m4: New file.
47504
47505 2004-11-30  Simon Josefsson  <jas@extundo.com>
47506
47507         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
47508         base64.
47509
47510         * tests/test-base64.c: New file.
47511
47512         * modules/base64: New file.
47513
47514 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47515
47516         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
47517         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
47518
47519         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
47520
47521 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47522
47523         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
47524         (__getcwd.c): Don't restore errno; glibc doesn't.
47525         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
47526         first, falling back to our code only if its results look suspicious.
47527         Ensure that the resulting buffer is only as large as necessary.
47528
47529         * lib/readutmp.c: Include readutmp.h first.
47530         Include <errno.h>, since readutmp.h no longer does that.
47531         * lib/readutmp.h: Don't include <errno.h>,
47532         <sys/param.h>, <time.h>; not needed to establish interface.
47533         (errno): Remove decl.
47534         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
47535         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
47536         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
47537
47538 2004-11-28  Simon Josefsson  <jas@extundo.com>
47539
47540         * lib/base64.h, base64.c: New file.
47541
47542 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
47543
47544         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
47545
47546 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
47547
47548         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
47549         (Depends-on): Remove pathmax, same.  Add mempcpy.
47550         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
47551         (Makefile.am): Append getcwd.h to lib_SOURCES.
47552         (Include): Add getcwd.h.
47553         (Maintainer): Change from Jim Meyering to "all, glibc",
47554         since getdate now uses intended-for-glibc code.
47555         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
47556         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
47557
47558 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47559
47560         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
47561         HP's ANSI C compiler.
47562         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
47563         Declaring int functions causes warnings on some modern systems and
47564         shouldn't be needed to compile on ancient ones.
47565         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
47566         defined.
47567
47568         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
47569         with the following changes.
47570         (__set_errno): Parenthesize properly.
47571         Include <stdbool.h>.
47572         (MIN, MAX, MATCHING_INO): New macros.
47573         (__getcwd): Define with prototype, not K&R form.
47574         Use heuristics to allocate default buffer on stack if possible.
47575         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
47576         behavior, and to avoid the PATH_MAX limit when computing
47577         ../../../../...
47578         Use MATCHING_INO to compare inode number to file.
47579         Check for arithmetic overflow in size calculations.
47580         Fix bug in reallocation of dot array that caused getcwd to fail
47581         on directories nested deeper than 75.
47582         Be more careful about saving errno on error.
47583         Do not use realloc; use only free+malloc, as this is a bit
47584         more flexible and avoids a needless copy operation.
47585         Do not inspect st_dev and st_ino for symbolic links; POSIX
47586         doesn't specify the latter.
47587         Check for closedir errors.
47588         Avoid needless casts.
47589         Use "#ifdef weak_alias" around weak_alias, to be like other
47590         glibc code.
47591         The following changes to getcwd.c have effect only when used in
47592         gnulib; they have no effect inside glibc proper.
47593         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
47594         as alloca isn't used.
47595         (alloca, __alloca): Likewise.
47596         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
47597         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
47598         unconditionally, as gnulib assumes C89 or better.
47599         Do not include <sys/param.h>.
47600         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
47601         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
47602         better.
47603         (NULL) [!defined NULL]: Remove; we assume C89 or better.
47604         Include <dirent.h> in a way that is compatible with modern Autoconf.
47605         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
47606         New macros, if not already defined.
47607         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
47608         Use "_LIBC", not "defined _LIBC", for consistency.
47609         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
47610         a mempcpy module.
47611         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
47612         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
47613         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
47614         credit only to Jim Meyering and adjust the copyright dates.
47615         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
47616         <stdlib.h>, <unistd.h>, "pathmax.h".
47617         Instead, include "xgetcwd.h" (first) and "getcwd.h".
47618         (INITIAL_BUFFER_SIZE): Remove.
47619         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
47620
47621 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47622
47623         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
47624         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
47625         Use the _ONCE methods, for efficiency.
47626         Check for fcntl.h.  In test program, include <errno.h>
47627         and <fcntl.h> if available.  Remove old K&R cruft from
47628         test program.  Check for common errors in GNU/Linux,
47629         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
47630         don't do AC_LIBOBJ, as that's getcwd.m4's job.
47631         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
47632         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
47633         name accordingly.
47634         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
47635         accommodate new getcwd.c.
47636         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
47637         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
47638         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
47639         that's all we need now.
47640
47641 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47642
47643         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
47644         argp-parse.c depends on getopt internals, that means we should
47645         always use our getopt, to be on the safe side.
47646         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
47647         order not to spoil the result of an eventual previous invocation
47648         of gl_GETOPT_SUBSTITUTE.
47649
47650 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47651
47652         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
47653         redefinition warnings. To avoid them, include the defines
47654         in `#if !defined __need_getopt ... #endif'. The only place
47655         where __getopt_argv_const is used is in definitions
47656         of getopt_long and getopt_long_only below, which are as well
47657         protected by `#ifndef __need_getopt'.
47658         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
47659         __need_getopt after including <stdio.h> and <unistd.h> These
47660         headers might have defined it.
47661
47662 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47663
47664         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
47665
47666 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47667
47668         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
47669         (futimens): New function, which uses futimes if available.
47670         (futimens, utimens): Support timespec==NULL, with same semantics
47671         as utime and utimens.
47672         * lib/utimens.h (futimens): New decl.
47673
47674 2004-11-23  Jim Meyering  <jim@meyering.net>
47675
47676         * lib/getopt_.h: Remove trailing blanks.
47677
47678 2004-11-23  Jim Meyering  <jim@meyering.net>
47679
47680         * lib/__fpending.c: Add comment.
47681
47682 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
47683
47684         * modules/canonicalize (Depends-on): Add xreadlink.
47685         Problem reported by James Youngman.
47686
47687 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
47688
47689         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
47690         New macros.
47691         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
47692         optopt): Use them instead of invoking ## directly; otherwise, the
47693         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
47694
47695 2004-11-19  Bruno Haible  <bruno@clisp.org>
47696
47697         * lib/strtok_r.c: Move comments from here...
47698         * lib/strtok_r.h: ... to here.
47699
47700 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47701
47702         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
47703         implementations that mishandle size_t overflow.
47704
47705 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47706
47707         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
47708         might fail.  Problem reported by Yoann Vandoorselaere.
47709         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
47710         implementations that mishandle size_t overflow.
47711
47712 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47713
47714         * modules/canon-host (Depends-on): Add strdup.
47715
47716 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47717
47718         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
47719
47720 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47721
47722         * lib/canon-host.c: Include "strdup.h".
47723         (canon_host): Use getaddrinfo if available, so that IPv6 works.
47724         Use strdup instead of malloc/strcpy to duplicate strings.
47725
47726         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
47727         (human_space_before_unit): New constant.
47728         * lib/human.c (human_readable): Support it.
47729
47730         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
47731         (xgetcwd): Set errno correctly when failing.
47732         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
47733         the failure is actually due to a PATH_MAX problem.
47734
47735         Further getopt changes to make it more likely that glibc will
47736         buy the changes back.
47737         * lib/getopt.c (POSIXLY_CORRECT): New constant.
47738         (getopt): Use it, so to preserve glibc semantic
47739         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
47740         when compiling for libc.
47741         * lib/getopt_.h (__getopt_argv_const): Bring it back.
47742         (getopt_long, getopt_long_only): Use it.
47743
47744         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47745         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
47746         (getopt): Argv is now char * const *, as per standard.
47747         (_getopt_internal_r, _getopt_internal): Argv is now char **,
47748         not char *__getopt_argv_const *.
47749         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47750         _getopt_long_only_r): Likewise.
47751         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
47752         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47753         _getopt_long_r, _getopt_long_only_r): Likewise.
47754         * lib/getopt_.h (__getopt_argv_const): Remove.
47755         (getopt): Argv is now char * const *, as per standard.
47756
47757         * lib/getdate.y (tORDINAL): New token.
47758         (day, relunit): Allow it for relative times.
47759         (relative_time_table): Use tORDINAL for ordinals.
47760
47761 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47762
47763         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
47764         Document that "second" isn't allowed as an ordinal number.
47765
47766 2004-11-16  Jim Meyering  <jim@meyering.net>
47767
47768         * modules/closeout (Depends-on): Add fpending.
47769
47770 2004-11-15  Jim Meyering  <jim@meyering.net>
47771
47772         * lib/closeout.c: Include "__fpending.h" once again.
47773         Include <stdbool.h>.
47774         (close_stdout): Don't fail just because stdout was closed initially,
47775         since some programs don't write to stdout in the normal course of
47776         operation (other than --version and --help), and we don't want this
47777         function to make e.g. `touch file >&-' fail.
47778         But do fail if it was closed and someone has tried to write to it.
47779         E.g., `printf foo >&-' must fail.
47780
47781 2004-11-13  Jim Meyering  <jim@meyering.net>
47782
47783         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
47784
47785 2004-11-12  Simon Josefsson  <jas@extundo.com>
47786
47787         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
47788         small doc fix is still pending.
47789
47790 2004-11-11  Simon Josefsson  <jas@extundo.com>
47791
47792         * modules/strtok_r: New file.
47793
47794         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47795         strtok_r.
47796
47797 2004-11-11  Simon Josefsson  <jas@extundo.com>
47798
47799         * m4/strtok_r.m4: New file.
47800
47801         * m4/getopt.m4: Replace opterr.
47802
47803 2004-11-11  Simon Josefsson  <jas@extundo.com>
47804
47805         * lib/strtok_r.h, strtok_r.c: New file.
47806
47807 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47808
47809         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
47810         of replacing opterr, getopt, etc.  This should handle the
47811         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
47812
47813 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47814
47815         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
47816         we can stop lying to compilers about the constness of argv when we
47817         are compiled outside glibc.
47818         (getopt, getopt_long, getopt_long_only): Use it.
47819         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47820         _getopt_internal, getopt): Likewise.
47821         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47822         _getopt_long_only_r): Likewise.
47823         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47824         _getopt_long_r, _getopt_long_only_r): Likewise.
47825
47826         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
47827         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
47828         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
47829         the other external symbols.
47830         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
47831         declaration, since the above renaming now works around collisions.
47832
47833 2004-11-11  Jim Meyering  <jim@meyering.net>
47834
47835         * lib/linebreak.c: Remove trailing blanks.
47836         * lib/alloca_.h: Likewise.
47837         * lib/acosl.c: Likewise.
47838         * lib/euidaccess.c: Likewise.
47839         * lib/allocsa.h: Likewise.
47840
47841 2004-11-10  Simon Josefsson  <jas@extundo.com>
47842
47843         * m4/getaddrinfo.m4: New file.
47844
47845 2004-11-10  Simon Josefsson  <jas@extundo.com>
47846
47847         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
47848
47849 2004-11-10  Simon Josefsson  <jas@extundo.com>
47850
47851         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47852         getaddrinfo.
47853
47854         * modules/getaddrinfo: New file.
47855
47856 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47857
47858         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
47859
47860 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47861
47862         * lib/mktime.c (SHR): New macro, which is a portable
47863         substitute for >> that should work even on Crays.
47864         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
47865         Problem reported by Mark D. Baushke in
47866         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
47867         * lib/getdate.y (SHR): Likewise.
47868         (tm_diff): Use it.
47869         * lib/strftime.c (SHR): Likewise.
47870         (tm_diff): Use it.
47871         * lib/quotearg.c (struct quoting_options): Use unsigned int for
47872         quote_these_too, so that right shifts are well defined.  All uses
47873         changed.
47874
47875 2004-11-10  Jim Meyering  <jim@meyering.net>
47876
47877         Ensure that no close failure goes unreported.
47878         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
47879         return early when it seems there's nothing to flush.
47880         Don't include __fpending.h.
47881
47882 2004-11-10  Jim Meyering  <jim@meyering.net>
47883
47884         * modules/closeout (Depends-on): Remove fpending.
47885
47886 2004-11-10  Jim Meyering  <jim@meyering.net>
47887
47888         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
47889
47890 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47891
47892         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
47893         gl_FUNC_STRFTIME.
47894         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
47895         and AC_REQUIRE when possible, to avoid duplicate checks.
47896         Check for <wchar.h>.
47897
47898 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47899
47900         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
47901
47902 2004-11-09  Bruno Haible  <bruno@clisp.org>
47903
47904         * m4/sockpfaf.m4: New file.
47905
47906 2004-11-05  Bruno Haible  <bruno@clisp.org>
47907
47908         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
47909         Reported by Mark D. Baushke <mdb@cvshome.org>.
47910
47911 2004-11-04  Bruno Haible  <bruno@clisp.org>
47912
47913         2004-09-11  Bruno Haible  <bruno@clisp.org>
47914                 * allocsa.valgrind: New file.
47915         2004-02-06  Bruno Haible  <bruno@clisp.org>
47916                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
47917                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
47918                 Reported by Christopher Seip <chris.seip@hp.com>.
47919
47920 2004-11-04  Bruno Haible  <bruno@clisp.org>
47921
47922         * modules/allocsa (Files): Add lib/allocsa.valgrind.
47923         (Makefile.am): Distribute it.
47924
47925 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47926
47927         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
47928         with errno == ERANGE if the buffer is too small.
47929         Problem reported by Mark D. Baushke.
47930
47931 2004-11-03  Albert Chin  <china@thewrittenword.com>
47932             Paul Eggert  <eggert@cs.ucla.edu>
47933
47934         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
47935         equivalent, substitute $ac_type for equivalent type rather than
47936         blindly using uint32_t *always* which won't work if uint32_t is not
47937         available.  Define _UINT32_T to work around typedef of uint32_t if
47938         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
47939         2.5.1.
47940
47941 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47942
47943         * m4/jm-macros.m4: Sync from coreutils.
47944         (gl_MACROS): Check for mbrlen, for pathchk.
47945         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
47946
47947 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47948
47949         * lib/xreadlink.c (MAXSIZE): New macro.
47950         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
47951         size does not exceed MAXSIZE.  Avoid cast.
47952         As suggested by Mark D. Baushke in
47953         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
47954         if readlink fails with buffer size just under MAXSIZE, try again
47955         with MAXSIZE.
47956
47957 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47958
47959         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
47960
47961 2004-11-02  Derek R. Price  <derek@ximbiot.com>
47962         and  Paul Eggert  <eggert@cs.ucla.edu>
47963
47964         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
47965         (get_date): Overparenthesize to avoid GCC warning.
47966
47967 2004-11-02  Bruno Haible  <bruno@clisp.org>
47968
47969         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
47970         returns void.
47971
47972 2004-11-02  Bruno Haible  <bruno@clisp.org>
47973
47974         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
47975         function returns void.
47976
47977 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47978
47979         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
47980         fflush_unlocked, flockfile, funlockfile, funlockfile,
47981         fputs_unlocked, putc_unlocked.
47982
47983 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47984
47985         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47986         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
47987         already declared.
47988
47989 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47990
47991         * modules/getdate (Files): Add doc/getdate.texi.
47992         (Depends-on): Add setenv, xalloc.
47993
47994 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47995
47996         * lib/getdate.y: Add support for TZ="foo" within a date string.
47997         Fix some bugs near time_t boundaries.  Reject dates with
47998         out-of-range components, e.g., "Sept 31".
47999         Include <stdlib.h>, "setenv.h", "xalloc.h".
48000         (ISDIGIT_LOCALE): Remove; unused.
48001         Note that the TZ and time functions used here are not reentrant.
48002         (mktime_ok, get_tz): New functions.
48003         (TZBUFSIZE): New constant.
48004         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
48005         This requires that we sometimes generate our own TZ="XXX..." setting.
48006
48007 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
48008
48009         * doc/getdate.texi: New file, from coreutils with modifications for
48010         the new TZ parsing.
48011
48012 2004-10-27  Derek R. Price  <derek@ximbiot.com>
48013
48014         * lib/mktime.c (not_equal_tm): Remove redundant check.
48015
48016 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
48017
48018         * modules/regex (lib_SOURCES): Add regex.c.
48019         Reported by James Youngman in
48020         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
48021
48022 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
48023
48024         * lib/getdate.y: Use Bison 1.875 features, and some minor
48025         code cleanups.  This change does not affect semantics.
48026         Don't include <stdlib.h>; no longer needed.
48027         Don't include unlocked-io.h; only the "#if TEST" code uses
48028         stdio, and performance isn't crucial there.
48029         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
48030         Bison 1.875 features as described below.
48031         All uses of "PC." replaced by "pc->".
48032         (YYSTYPE): Add a forward declaration.
48033         (yylex, yyerror): Use full prototypes in forward decls.
48034         Use "%pure-parser" rather than obsolescent "%pure_parser".
48035         Use %parse-param and %lex-param instead of obsolescent
48036         YYPARSE_PARAM and YYLEX_PARAM.
48037         (meridian_table, month_and_day_table, time_units_table,
48038         relative_time_table, time_zone_table, military_table,
48039         lookup_zone, lookup_word, get_date):
48040         Use NULL instead of 0 where appropriate.
48041         (to_hour): Avoid abort (), to avoid a dependency on
48042         stdlib.h.
48043         (yyerror, yylex): Now accepts parser_control * arg.
48044         (main) [TEST]: Use '\0' rather than 0 for char.
48045
48046 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
48047
48048         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
48049
48050 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
48051
48052         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
48053         It's now the caller's responsibility to handle the case where
48054         !HAVE_GETPAGESIZE && !defined getpagesize.
48055
48056         * lib/mktime.c (leapyear): Arg is long int, not int.
48057
48058 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
48059
48060         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
48061
48062 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
48063
48064         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
48065         missing.  Problem reported by James Youngman.
48066
48067 2004-10-16  Simon Josefsson  <jas@extundo.com>
48068
48069         * gnulib-tool: Fix comments.  Fix parse problem.
48070         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
48071
48072 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
48073
48074         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
48075         implementation of getopt_long.  Problem reported by Alexander Taler in:
48076         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
48077
48078 2004-10-15  Bruno Haible  <bruno@clisp.org>
48079
48080         * gnulib-tool: Untabify. Initialize supplied_libname.
48081         (func_usage): More homogenous output.
48082         (func_modules_transitive_closure, func_modules_to_filelist,
48083         func_emit_lib_Makefile_am): New functions.
48084         (func_import): New function, extracted from big case statement. Use
48085         func_get_license, func_modules_transitive_closure,
48086         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
48087         opt_lgpl. Don't use test -a, as it's not portable.
48088         (func_create_testdir): Use func_modules_transitive_closure,
48089         func_modules_to_filelist, func_emit_lib_Makefile_am.
48090
48091 2004-10-15  Bruno Haible  <bruno@clisp.org>
48092
48093         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
48094
48095 2004-10-15  Bruno Haible  <bruno@clisp.org>
48096
48097         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
48098         the portions belonging to each module.
48099         Suggested by Derek Robert Price <derek@ximbiot.com>.
48100
48101 2004-10-12  Simon Josefsson  <jas@extundo.com>
48102
48103         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
48104         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
48105         to real functions.
48106
48107 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48108
48109         * modules/vsnprintf: New file.
48110
48111 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48112
48113         * m4/vsnprintf.m4: New file.
48114
48115 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48116
48117         * lib/vsnprintf.h: New file.
48118         * lib/vsnprintf.c: New file.
48119
48120 2004-10-11  Bruno Haible  <bruno@clisp.org>
48121
48122         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
48123         vsnprintf.
48124
48125 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
48126
48127         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
48128
48129 2004-10-07  Bruno Haible  <bruno@clisp.org>
48130
48131         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
48132         fits into the provided buffer.
48133
48134 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
48135
48136         * lib/diacrit.c, diacrit.h: Add GPL notice.
48137
48138         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
48139         notice.
48140         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
48141         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
48142         This avoids a potential constant-folding bug.
48143
48144 2004-10-05  Bruno Haible  <bruno@clisp.org>
48145
48146         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
48147         for the declaration of strsep.
48148
48149 2004-10-05  Bruno Haible  <bruno@clisp.org>
48150
48151         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
48152
48153 2004-10-04  Simon Josefsson  <jas@extundo.com>
48154
48155         * modules/memmem: New file.
48156         * tests/test-memmem.c: New file.
48157         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
48158
48159 2004-10-04  Simon Josefsson  <jas@extundo.com>
48160
48161         * m4/memmem.m4: New file.
48162
48163 2004-10-04  Simon Josefsson  <jas@extundo.com>
48164
48165         * lib/memmem.h: New file.
48166         * lib/memmem.c: New file, taken from glibc.
48167
48168 2004-10-04  Simon Josefsson  <jas@extundo.com>
48169
48170         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
48171         '#ifdef USE_UNLOCKED_IO'.
48172
48173 2004-10-04  Simon Josefsson  <jas@extundo.com>
48174
48175         * config/srclist.txt: Add memmem from glibc.
48176
48177 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48178
48179         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
48180
48181         * modules/argmatch, modules/argp, modules/closeout, modules/error,
48182         modules/exclude, modules/getdate, modules/getline,
48183         modules/getndelim2, modules/getpass, modules/getpass-gnu,
48184         modules/getusershell, modules/linebuffer, modules/md5,
48185         modules/mountlist, modules/posixtm, modules/readtokens,
48186         modules/readutmp, modules/regex, modules/sha1,
48187         modules/version-etc, modules/yesno:
48188         Remove dependency on unlocked-io.
48189
48190 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48191
48192         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
48193
48194         * m4/unlocked-io.m4: Add copyright notice.
48195         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
48196
48197 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48198
48199         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
48200         * lib/xmalloc.c (xmemdup): Likewise.
48201         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
48202         XFREE): Remove these long-obsolescent macros.
48203         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
48204         * lib/xstrdup.c: Remove.
48205
48206         * lib/regex.c (re_comp): Cast gettext return value to char *,
48207         Problem reported by Martin Neitzel via Mark D. Baushke.
48208
48209 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48210
48211         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
48212         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
48213         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
48214         regex.c, sha1.c, version-etc.c, yesno.c:
48215         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
48216         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
48217         the includer's responsibility.
48218
48219         Sync from coreutils.
48220
48221         * lib/modechange.c (mode_compile): Don't decrement a pointer that
48222         points to the start of a string, as the C Standard says the
48223         resulting behavior is undefined.
48224
48225         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
48226         simple -> simple_backups, numbered_existing ->
48227         numbered_existing_backups, numbered -> numbered_backups
48228         to avoid shadowing problems.  All uses changed.
48229         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
48230         * lib/backupfile.c (check_extension, numbered_backup):
48231         Rename locals to avoid shadowing 'basename'.
48232         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
48233         once.
48234
48235         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
48236         * lib/.cvsignore: Add getopt.h.
48237
48238 2004-10-04  Bruno Haible  <bruno@clisp.org>
48239
48240         * modules/README: New file.
48241         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
48242         not a module.
48243
48244 2004-10-02  Jim Meyering  <jim@meyering.net>
48245
48246         * lib/dirfd.h, getpagesize.h: Add copyright notice.
48247
48248 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48249
48250         * modules/strsep: New file.
48251
48252 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48253
48254         * m4/strsep.m4: New file.
48255
48256 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48257
48258         * lib/strsep.h: New file.
48259         * lib/strsep.c: New file.
48260
48261 2004-10-01  Simon Josefsson  <jas@extundo.com>
48262
48263         * lib/snprintf.c (snprintf): Handle size==0.
48264
48265 2004-10-01  Simon Josefsson  <jas@extundo.com>
48266             Bruno Haible  <bruno@clisp.org>
48267
48268         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
48269         (snprintf): Declare 'args'.
48270
48271 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
48272
48273         * lib/snprintf.c: Remove comments as to why each header is needed.
48274
48275 2004-10-01  Bruno Haible  <bruno@clisp.org>
48276
48277         * MODULES.html.sh: Add strsep.
48278
48279 2004-09-30  Simon Josefsson  <jas@extundo.com>
48280
48281         * modules/snprintf: New file.
48282
48283 2004-09-30  Simon Josefsson  <jas@extundo.com>
48284
48285         * m4/snprintf.m4: New file.
48286
48287 2004-09-30  Simon Josefsson  <jas@extundo.com>
48288
48289         * lib/snprintf.h, lib/snprintf.c: New files.
48290
48291 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
48292
48293         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
48294         (hol_entry_help): Never translate an empty string.
48295         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
48296         * lib/argp.h (OPTION_NO_TRANS): New option.
48297
48298 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48299
48300         * modules/argp (Maintainer): Replace Simon Josefsson
48301         by Sergey Poznyakoff.
48302
48303 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48304
48305         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
48306         changes merged back into glibc.
48307
48308 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48309
48310         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
48311
48312 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
48313
48314         * lib/xvasprintf.c: Include xalloc.h.
48315         (xvasprintf): Use xalloc_die, not xmalloc_die.
48316
48317 2004-09-29  Bruno Haible  <bruno@clisp.org>
48318
48319         * modules/alloca-opt: New file, derived from modules/alloca.
48320         * modules/allocsa: Depend on alloca-opt instead of alloca.
48321         * modules/setenv: Likewise.
48322         * modules/vasnprintf: Likewise.
48323         * MODULES.html.sh: Add alloca-opt.
48324
48325 2004-09-28  Simon Josefsson  <jas@extundo.com>
48326
48327         * gnulib-tool: New parameter --lgpl, to asseert that modules are
48328         LGPL, and to replace license template from GPL to LGPL.
48329
48330 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48331
48332         * modules/dummy: Change license to LGPL.
48333
48334 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48335
48336         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
48337
48338 2004-09-24  Simon Josefsson  <jas@extundo.com>
48339
48340         * modules/minmax (License): Change from GPL to LGPL.
48341
48342 2004-09-23  Simon Josefsson  <jas@extundo.com>
48343
48344         * gnulib-tool (--import): Typo.
48345
48346 2004-09-23  Simon Josefsson  <jas@extundo.com>
48347
48348         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
48349
48350 2004-09-22  Bruno Haible  <bruno@clisp.org>
48351
48352         * modules/*: Add 'License' field.
48353         * gnulib-tool: Accept --extract-license option.
48354         (func_get_license): New function.
48355
48356 2004-09-21  Bruno Haible  <bruno@clisp.org>
48357
48358         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
48359         Reported by Simon Josefsson.
48360
48361 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48362
48363         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
48364         gl_AC_TYPE_LONG_LONG.
48365
48366 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48367
48368         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
48369
48370 2004-09-18  Simon Josefsson  <jas@extundo.com>
48371         and  Paul Eggert  <eggert@cs.ucla.edu>
48372
48373         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
48374         calls with autoreconf.  Define GL_LIB.
48375
48376 2004-09-14  Karl Berry  <karl@gnu.org>
48377
48378         * config/srclist.txt: unsync setenv.c, sigh.
48379
48380 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48381
48382         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
48383         Problem reported by Bruno Haible in:
48384         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
48385
48386 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48387
48388         * config/srclist.txt: Comment out argp-pvh.c.
48389
48390 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
48391
48392         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
48393         in case some system header has #define'd it.  Problem reported by
48394         Soeren D. Schulze in
48395         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
48396
48397 2004-09-09  Karl Berry  <karl@gnu.org>
48398
48399         * regex.[ch]: delete from the root.  These were supposed to be
48400                 synced with emacs cvs, but this has not happened for about
48401                 a year, and anyway nothing else uses emacs regex.[ch].
48402                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
48403                 lib/regex[.ch] is untouched.
48404
48405 2004-09-09  Bruno Haible  <bruno@clisp.org>
48406
48407         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
48408
48409 2004-09-09  Bruno Haible  <bruno@clisp.org>
48410
48411         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
48412         modifications.
48413         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
48414
48415 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48416
48417         * modules/xvasprintf: New file.
48418         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
48419
48420 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48421
48422         * lib/xvasprintf.h: New file.
48423         * lib/xvasprintf.c: New file.
48424         * lib/xasprintf.c: New file.
48425
48426 2004-09-08  Bruno Haible  <bruno@clisp.org>
48427
48428         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
48429
48430 2004-09-08  Bruno Haible  <bruno@clisp.org>
48431
48432         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
48433         length is > INT_MAX.
48434         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
48435         more.
48436
48437 2004-09-08  Bruno Haible  <bruno@clisp.org>
48438
48439         * lib/stdint_.h: New file, taken from GNU clisp.
48440
48441 2004-09-08  Bruno Haible  <bruno@clisp.org>
48442             Oskar Liljeblad  <oskar@osk.mine.nu>
48443
48444         * modules/stdint: New file.
48445         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
48446
48447 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48448
48449         Import from coreutils.
48450         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
48451         strings on unbounded length.  alloca's performance benefits aren't
48452         that important here.
48453         (V_STRDUP): Remove.
48454         (parse_with_separator): New function, with most of the internals
48455         of the old parse_user_spec.  Allow user to omit both user and group,
48456         for compatibility with FreeBSD.
48457         Clone only the user name, not the entire spec.
48458         Do not set *uid, *gid unless entirely successful.
48459         Avoid memory leak in some failing cases.
48460         Fix regression for USER.GROUP reported by Dmitry V. Levin in
48461         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
48462         (parse_user_spec): Rewrite to use parse_with_separator.
48463
48464 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48465
48466         * modules/userspec: Don't depend on alloca.
48467
48468 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48469
48470         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
48471
48472 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
48473
48474         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
48475         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
48476         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
48477
48478 2004-08-16  Simon Josefsson  <jas@extundo.com>
48479
48480         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
48481         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
48482         Add --dry-run for --import.
48483         Let user provided command line parameters override configure.ac
48484         settings.
48485
48486 2004-08-12  Simon Josefsson  <jas@extundo.com>
48487
48488         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
48489         as discussed with Paul Eggert in threads rooted at
48490         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
48491         and
48492         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
48493         Before, the test was empty, and relied on ELIDE_CODE in source
48494         code.)
48495         (gl_PREREQ_GETOPT): New macro.
48496         (gl_GETOPT): Use them.
48497
48498 2004-08-12  Simon Josefsson  <jas@extundo.com>
48499
48500         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
48501         * lib/getopt_.h: Renamed from getopt.h.
48502
48503 2004-08-12  Simon Josefsson  <jas@extundo.com>
48504
48505         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
48506         Change default library name from libfoo to libgnu.
48507         Now, if you have a configure.ac that says:
48508                 gl_SOURCE_BASE(gl)
48509                 gl_M4_BASE(gl/m4)
48510                 gl_MODULES(error getopt etcetera)
48511                 gl_INIT
48512         you can import all you need by running:
48513                 ../gnulib/gnulib-tool --import
48514
48515         * modules/getopt (Files): Rename getopt.h to getopt_.h.
48516         (Makefile.am): Rewrite, use logic from argz.
48517         (Include): Use <getopt.h> instead of "getopt.h".
48518
48519 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48520
48521         * modules/argp (Files): Add m4/unlocked-io.m4.
48522         (Depends-on): Add extensions.
48523
48524 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48525
48526         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
48527         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
48528         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
48529         Check for program_invocation_name, program_invocation_short_name,
48530         flockfile, funlockfile, features.h, _getopt_long_only_r.
48531
48532 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48533
48534         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
48535         its complicated substitute.
48536         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
48537         and program_invocation_name.
48538         (__argp_basename) [!_LIBC]: Remove; the only use was
48539         replaced by its body.
48540         (__argp_short_program_name): Change condition from
48541         !defined __argp_short_program_name to
48542         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
48543         to match argp-namefrob.h.
48544         (__argp_failure): Don't assume strerror_r returns char *.
48545         * lib/argp-parse.c (N_): Define unconditionally.
48546         (argp_default_options): Fill out initializers with 0 to avoid
48547         gcc warnings.
48548
48549 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48550
48551         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
48552         getopt1.c.
48553
48554 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48555
48556         Merge from coreutils.
48557
48558         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
48559
48560         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
48561         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
48562
48563 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48564
48565         Merge from coreutils.
48566
48567         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
48568         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
48569         for Reliant Unix 5.43.
48570
48571         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
48572         (union fooround): Use uintmax_t, not long int.
48573         The rest is a merge from libc:
48574         [defined _LIBC]: Include <shlib-compat.h>.
48575         (_obstack) [defined _LIBC]: Remove after 2.3.4.
48576
48577         * lib/settime.c (settime): Recode to avoid warning with
48578         Sun Forte C 6U2.
48579
48580         * lib/strverscmp.c: Convert to UTF-8.
48581
48582 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48583
48584         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
48585         m4/uintmax_t.m4.
48586
48587 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48588
48589         * modules/xalloc-die: New file.
48590         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
48591
48592         * modules/md5 (Files): Add m4/uint32_t.m4.
48593         * modules/sha1: Renamed from modules/sha.
48594         (Files):
48595         Rename lib/sha.h to lib/sha1.h.
48596         Rename lib/sha.c to lib/sha1.c.
48597         Rename m4/sha.m4 to m4/sha1.m4.
48598         (lib_SOURCES): Likewise.
48599         (configure.ac): Rename gl_SHA to gl_SHA1.
48600         (Include): sha.h -> sha1.h.
48601
48602 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48603
48604         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
48605         * m4/sha1.m4: Renamed from sha.m4.
48606         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
48607
48608 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48609
48610         * lib/obstack.h (obstack_empty_p):
48611         Don't assume that chunk->contents is suitably aligned.
48612         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
48613         Likewise. Problem reported by Benno in
48614         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
48615
48616         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
48617         readable.  This could be improved further but it'd take some work.
48618
48619 2004-08-08  Simon Josefsson  <jas@extundo.com>
48620
48621         * modules/xgethostname (Depends-on): Remove exit and error (not
48622         used).
48623
48624         * modules/getpass-gnu: Add getpass.h.
48625         (Depends-on): Add stdbool.
48626         * modules/getpass: Add getpass.h.
48627
48628 2004-08-08  Simon Josefsson  <jas@extundo.com>
48629
48630         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
48631         Check getpass declaration.
48632
48633 2004-08-08  Simon Josefsson  <jas@extundo.com>
48634
48635         * lib/xgethostname.c: Don't include error.h (not used).
48636
48637         * lib/getpass.h: Add.
48638         * lib/getpass.c: Include getpass.h first.
48639
48640 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
48641
48642         * lib/xalloc-die.c: New file.
48643         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
48644         All uses removed.
48645         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
48646         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
48647         xalloc-die.c.
48648         (_, N_, xalloc_die): Move to xalloc-die.c.
48649         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
48650         so that we needn't mess with xalloc_msg_memory_exhausted.
48651
48652         * lib/sha1.h: Renamed from sha.h.
48653         (SHA1_H): Renamed from _SHA_H.
48654         (sha1_ctx): Renamed from sha_ctx.
48655         (sha1_init_ctx): Renamed from sha_init_ctx.
48656         (sha1_process_block): Renamed from sha_process_block.
48657         (sha1_process_bytes): Renamed from sha_process_bytes.
48658         (sha1_finish_ctx): Renamed from sha_finish_ctx.
48659         (sha1_read_ctx): Renamed from sha_read_ctx.
48660         (sha1_stream): Renamed from sha_stream.
48661         (sha1_buffer): Renamed from sha_buffer.
48662         * lib/sha1.c: Likewise; renamed from sha.c.
48663         Do not include <sys/types.h>.
48664         Include <stddef.h> rather than <stdlib.h>.
48665
48666 2004-08-08  Bruno Haible  <bruno@clisp.org>
48667
48668         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
48669         FILESYSTEM_PREFIX_LEN.
48670         * lib/progreloc.c: Likewise.
48671         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
48672
48673 2004-08-06  Simon Josefsson  <jas@extundo.com>
48674
48675         * modules/progname (Depends-on): Don't depend on stdbool.
48676
48677 2004-08-06  Simon Josefsson  <jas@extundo.com>
48678
48679         * modules/getsubopt: New file.
48680         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48681         getsubopt.
48682
48683 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48684
48685         More merge from coreutils.
48686
48687         * m4/utimens.m4, m4/utimecmp.m4: New files.
48688         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
48689         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
48690         prereq.m4, sha.m4: Import changes from coreutils.
48691
48692 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48693
48694         More merge from coreutils.
48695         * modules/raise, modules/readtokens0, modules/utimens:
48696         * modules/utimecmp, module/xnanosleep: New files.
48697         * modules/strftime: Add lib/strftime.h.
48698         Change include from <time.h> to "strftime.h".
48699         * modules/yesno: Add lib/yesno.h.
48700         * modules/backupfile: Remove lib/addext.c.
48701         * modules/euidaccess: Add stat-macros.h.
48702         * modules/canonicalize, modules/euidaccess,
48703         modules/filemode, modules/lchown, modules/makepath,
48704         modules/rmdir, modules/stat: Likewise.
48705
48706 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48707
48708         Merge from tar.
48709         * lib/argp-help.c (make_hol, hol_append): Don't assume that
48710         SIZE_MAX is a valid preprocessor constant.
48711         (__argp_basename): Change from "#ifndef _LIBC"
48712         to "#ifndef __argp_short_program_name", so that
48713         we don't compile these functions for tar.
48714
48715         More merges from coreutils.
48716         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
48717         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
48718         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
48719         * lib/addext.c: Remove; no longer needed.
48720         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
48721         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
48722         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
48723         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
48724         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
48725         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
48726         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
48727         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
48728         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
48729         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48730         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
48731         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
48732         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
48733         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
48734         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
48735         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
48736         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
48737         Import changes from coreutils.
48738
48739 2004-08-05  Simon Josefsson  <jas@extundo.com>
48740
48741         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
48742
48743 2004-08-05  Simon Josefsson  <jas@extundo.com>
48744
48745         * m4/getsubopt.m4: New file.
48746
48747 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48748
48749         Merge from coreutils.
48750
48751         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
48752         * m4/getcwd-path-max.m4: New files.
48753
48754         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
48755         FILESYSTEM_PREFIX_LEN ->
48756         FILE_SYSTEM_PREFIX_LEN.
48757         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
48758         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
48759         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
48760         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
48761
48762         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
48763         prerequisite modules now handle the DOS stuff.
48764         Don't check for unistd.h.
48765
48766 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48767
48768         Merge from coreutils.
48769
48770         * lib/.gdb-history: Remove; this doesn't belong here.
48771
48772         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
48773         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
48774         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
48775         * lib/getcwd.c: New files.
48776
48777         * lib/dirname.h: Include <stdbool.h>.
48778         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
48779         for consistency with POSIX terminology.  All uses changed.
48780         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
48781         (strip_trailing_slashes): Use bool for booleans.
48782         * lib/stripslash.c (strip_trailing_slashes): Likewise.
48783
48784         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
48785         sometimes returns a positive errno value even when it succeeds.
48786         (print_errno_message) [!LIBC]: Fall back on strerror if
48787         __strerror_r fails.
48788
48789         * lib/path-concat.c (mempcpy): Don't define if a system header defines
48790         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
48791         (longest_relative_suffix): New function.
48792         (path_concat): Use it.  Assume first argument is not NULL.
48793         Port to DOS.  Omit redundant separators.
48794         Report an error instead of returning NULL.
48795         Use mempcpy instead of memcpy.
48796         (xpath_concat): Remove: not declared or used.
48797
48798         * lib/same.h: Include <stdbool.h>
48799         (same_name): Return bool, not int.
48800         * lib/same.c (same_name): Likewise.
48801         (errno): Don't declare; we assume C89 or better now.
48802
48803         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
48804         if not already defined.
48805
48806         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
48807         * lib/dup-safer.c (errno): Likewise.
48808
48809 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48810
48811         Merge from coreutils.
48812         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
48813         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
48814         * modules/path-concat: Don't depend on strdup.
48815
48816 2004-08-03  Simon Josefsson  <jas@extundo.com>
48817
48818         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
48819         * lib/progname.h: Don't include stdbool.h.
48820
48821 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48822
48823         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
48824         * MODULES.html.sh (func_all_modules): Remove fatal.
48825
48826 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48827
48828         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
48829
48830 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48831
48832         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
48833         working.
48834
48835 2004-08-02  Simon Josefsson  <jas@extundo.com>
48836
48837         * lib/getsubopt.h: New file, with comments from Bruno Haible.
48838         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
48839         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
48840
48841 2004-08-01  Simon Josefsson  <jas@extundo.com>
48842
48843         * lib/xgetdomainname.c: Include stdlib.h, for free().
48844
48845 2004-07-19  Bruno Haible  <bruno@clisp.org>
48846
48847         * MODULES.html.sh (func_all_modules): Add dummy.
48848
48849 2004-07-16  Simon Josefsson  <jas@extundo.com>
48850
48851         * modules/dummy: New file.
48852
48853 2004-07-16  Simon Josefsson  <jas@extundo.com>
48854
48855         * lib/dummy.c: New file.
48856
48857 2004-07-16  Bruno Haible  <bruno@clisp.org>
48858
48859         * lib/backupfile.h: Add extern "C" for C++.
48860         * lib/closeout.h: Likewise.
48861         * lib/copy-file.h: Likewise.
48862         * lib/findprog.h: Likewise.
48863         * lib/full-write.h: Likewise.
48864         * lib/pathname.h: Likewise.
48865         * lib/progname.h: Likewise.
48866         * lib/stpcpy.h: Likewise.
48867         * lib/stpncpy.h: Likewise.
48868         * lib/strcase.h: Likewise.
48869         * lib/strstr.h: Likewise.
48870         * lib/xalloc.h: Likewise.
48871
48872         * lib/mbswidth.h: Add extern "C" for C++.
48873         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
48874
48875 2004-07-13  Robert Millan  <robertmh@gnu.org>
48876
48877         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
48878
48879 2004-07-09  Simon Josefsson  <jas@extundo.com>
48880
48881         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
48882         failed without this.)
48883
48884 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48885
48886         * modules/chown (Files): Add lib/fchown-stub.c, since
48887         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
48888
48889 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48890
48891         * lib/fchown-stub.c: New file.
48892
48893 2004-06-24  Jim Meyering  <jim@meyering.net>
48894
48895         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
48896
48897 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48898
48899         * modules/argz: Omit "#include".
48900
48901         * MODULES.html.sh (func_all_modules): Add calloc, to match
48902         2004-06-01 addition of calloc module.
48903
48904 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48905
48906         * m4/argz.m4: New file, which is autoupdated from libtool.
48907
48908 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48909
48910         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
48911         libtool.
48912
48913 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48914
48915         * config/srclist-update: Don't insist on "USA." before the
48916         close-comment, as libtool omits the period and puts the */ on a
48917         separate line.
48918         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
48919         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
48920
48921 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
48922
48923         * modules/argz: New file.
48924         * MODULES.html.sh (func_all_modules): Add argz.
48925
48926 2004-06-12  Jim Meyering  <jim@meyering.net>
48927         and  Paul Eggert  <eggert@cs.ucla.edu>
48928
48929         * modules/hash (Files): Add lib/xalloc.h.
48930         * modules/pipe (Depends-on): Add wait-process.
48931         * modules/stat (Depends-on): Add xalloc.
48932         * modules/userspec (Files): Add lib/userspec.h.
48933         * modules/xstrto
48934
48935         Upgrade from gettext-0.13.
48936         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
48937         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
48938         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
48939
48940 2004-06-10  Jim Meyering  <jim@meyering.net>
48941
48942         * lib/calloc.c: New file.
48943
48944 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
48945
48946         * lib/getdate.y (yylex): Allow space between sign and number.
48947         Problem reported by Dan Jacobson.
48948
48949 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48950
48951         Merge from coreutils CVS.
48952
48953         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
48954         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
48955         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
48956         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
48957         xstrtol.m4: Fix copyright date and/or serial number.
48958
48959         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
48960         See if we need an fchown replacement.
48961         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
48962         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
48963         and use the replacement function if we detect either defect.
48964
48965         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
48966         gl_UTIMECMP.
48967
48968 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48969         and  Jim Meyering  <jim@meyering.net>
48970
48971         Merge from coreutils CVS.
48972
48973         * lib/stat-macros.h: New file, with contents from file-type.h
48974         and coreutils' system.h.
48975         * lib/file-type.c: Include "stat-macros.h".
48976         * lib/file-type.h (file_type): Move all macro definitions to new file,
48977         stat-macros.h.
48978
48979         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
48980         Wrap old code with this conditional.
48981         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
48982         function that does not dereference symlinks.
48983         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
48984
48985         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
48986         dependency problems.
48987         (xreadlink): Accept new arg SIZE, for efficiency.
48988         All decls and uses changed.
48989         * lib/xreadlink.h: Include <stddef.h>, for size_t.
48990
48991         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
48992         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
48993
48994         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
48995         sysexits.h.
48996
48997 2004-06-01  Jim Meyering  <jim@meyering.net>
48998
48999         * m4/calloc.m4: New file.
49000
49001 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
49002
49003         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
49004         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
49005         Also, fix a typo in a diagnostic.
49006
49007 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
49008
49009         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
49010         or AC_FUNC_REALLOC.
49011
49012 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
49013
49014         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
49015         macros to be defined.
49016         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
49017         the allocator returns NULL because the requested size is zero.
49018
49019 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
49020
49021         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
49022         var.  Add comment explaining why libc still defines it.  This
49023         merges the following patch from glibc:
49024         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
49025
49026 2004-05-20  Andreas Schwab  <schwab@suse.de>
49027
49028         * m4/free.m4: Replace free if it not known to work, not the other
49029         way round.
49030
49031 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
49032
49033         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
49034         present in glibc since revision 1.1 of this file.
49035         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
49036         obstack_alignment_mask, obstack_alloc, obstack_base,
49037         obstack_blank, obstack_blank_fast, obstack_chunk_size,
49038         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
49039         obstack_grow0, obstack_init, obstack_int_grow,
49040         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
49041         obstack_next_free, obstack_object_size, obstack_ptr_grow,
49042         obstack_ptr_grow_fast, obstack_room): Remove declarations of
49043         nonexistent functions.
49044
49045 2004-05-18  Karl Berry  <karl@gnu.org>
49046
49047         * config/srclist.txt: break link for vasnprintf.c.
49048
49049 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
49050
49051         Port obstack to the AS/400, where pointers are 16 bytes wide and
49052         you cannot cast an integer to a valid pointer.  This patch is
49053         currently waiting to be integrated into glibc; see
49054         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
49055
49056         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
49057         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
49058         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
49059         (struct obstack): temp member is now a union of a pointer and
49060         an integer, instead of an integer.  All integer uses changed.
49061         This does not affect the physical layout of struct obstack,
49062         except on hosts (like the AS/400) where the size or alignment of
49063         void * is greater than that of ptrdiff_t.
49064         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
49065         __STDC__)]: Store temporary in pointer member of union, not
49066         integer member.
49067         * lib/obstack.c: Include <stddef.h>, for offsetof.
49068         (struct fooalign): Remove; it doesn't need a name.
49069         (union fooround): Change double to long double, and add void *.
49070         (DEFAULT_ALIGNMENT): Use offsetof to compute.
49071         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
49072         not a macro.  Hence the values are always int; so remove all
49073         casts-to-int in uses.
49074
49075 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
49076
49077         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
49078         we can get this patch merged into glibc.
49079
49080 2004-05-17  Derek R. Price  <derek@ximbiot.com>
49081             Paul Eggert  <eggert@cs.ucla.edu>
49082
49083         * m4/argp: Depend on alloca.
49084
49085 2004-05-17  Derek R. Price  <derek@ximbiot.com>
49086             Paul Eggert  <eggert@cs.ucla.edu>
49087
49088         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
49089         freecoding.
49090
49091 2004-05-17  Bruno Haible  <bruno@clisp.org>
49092
49093         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
49094         precision that consists of a '.' followed by an empty digit string.
49095         Patch by Tor Lillqvist <tml@iki.fi>.
49096
49097 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
49098
49099         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
49100         for backward compatibility with older code.  We need our own
49101         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
49102         it under some other name, and our alloca.h will define it.
49103
49104 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
49105             Derek Price  <derek@ximbiot.com>
49106
49107         * lib/alloca.c: Include <alloca.h>, to get our interface.
49108         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
49109         include <alloca.h> first.  Use C89 prototype for alloca; this
49110         requires including <stddef.h> for size_t.  Use extern "C" if C++.
49111         Use #elif for simplicity, since we can assume C89 now.
49112         Don't try to source the system alloca.h since it will not be found
49113         and to prevent recursively including its replacement.
49114         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
49115         * lib/regex.c: Likewise.
49116
49117 2004-05-16  Derek Price  <derek@ximbiot.com>
49118             Paul Eggert  <eggert@cs.ucla.edu>
49119
49120         getline cleanup.  This changes the getndelim2 API: both order of
49121         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
49122         no delimiter).
49123
49124         * lib/getline.c: Don't include stddef.h or stdio.h, since our
49125         interface does that.
49126         (getline): Always use getdelim, so that we don't have two
49127         copies of this code.
49128         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
49129         if available.
49130         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
49131         (GETNDELIM2_MAXIMUM): New macro.
49132         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
49133         instead of the old practice of delim2==0.  All callers changed.
49134         Return -1 on overflow, instead of returning junk.
49135         Do not set *linesize unless allocation succeeds.
49136         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
49137         that we include sys/types.h.
49138         * lib/getnline.h: Likewise.
49139         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
49140         (getndelim2): Reorder arguments.
49141         * lib/getnline.c (getnline, getndelim):
49142         Don't discard the NMAX argument.
49143         (getnline): Invoke getndelim, to avoid code duplication.
49144         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
49145         of (size_t) -1 by callers of the getnline family.
49146
49147 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
49148
49149         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
49150         Check for gettimeofday.
49151         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
49152         Check for settimeofday, stime.
49153
49154 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
49155
49156         * lib/nanosleep.c (suspended): Change its type from int to
49157         sig_atomic_t volatile.
49158         (first_call): Make it private to rpl_nanosleep, and have it
49159         be zero initially as that's a bit faster.
49160         (my_usleep): Round up fractional times instead of truncating them,
49161         as this is the usual meaning for 'sleep'.
49162
49163         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
49164         doesn't work.
49165         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
49166         (ENOSYS): Define if not defined.
49167         (settime): Fall back on stime if it exists and settimeofday fails.
49168         But don't bother with fallbacks if a method fails with errno == EPERM.
49169
49170 2004-05-11  Jim Meyering  <jim@meyering.net>
49171
49172         Prior to this change, the save_cwd caller required read access to the
49173         current directory on most systems (ones with the fchdir function).
49174
49175         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
49176         fails, try write-only, and finally, resort to using xgetcwd.
49177
49178 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
49179
49180         * lib/obstack.c, obstack.h: Import changes from libc.
49181
49182 2004-04-28  Bruno Haible  <bruno@clisp.org>
49183
49184         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
49185         also implicitly appends .exe to executables.
49186         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
49187         accepts Windows pathnames.
49188         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
49189         Treat Cygwin like Windows, since it now accepts Windows pathnames.
49190         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
49191         Treat Cygwin like Windows, since it now accepts Windows pathnames.
49192         Reported by Derek Robert Price <derek@ximbiot.com>.
49193
49194 2004-04-21  Karl Berry  <karl@gnu.org>
49195
49196         * config/srclist.txt (localcharset.c): break sync.
49197
49198 2004-04-20  Paul Eggert  <eggert@twinsun.com>
49199
49200         * m4/host-os.m4: Add a copyright notice.
49201
49202 2004-04-20  Jim Meyering  <jim@meyering.net>
49203
49204         Change UTILS_ to gl_ in AC_DEFINE'd names.
49205         Change utils_- and jm_-prefixed variables, too.
49206         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
49207         UTILS_FUNC_MKDIR_TRAILING_SLASH.
49208         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
49209
49210         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
49211         Don't emit trailing blanks.
49212         Also rename jm_-prefixed variables to have gl_ prefix.
49213
49214         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
49215         Also rename jm_-prefixed variables to have gl_ prefix.
49216
49217         * m4/jm-macros.m4: Reflect the renamings.
49218         * m4/prereq.m4: Likewise.
49219
49220 2004-04-20  Jim Meyering  <jim@meyering.net>
49221
49222         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
49223         memory.
49224
49225 2004-04-20  Jim Meyering  <jim@meyering.net>
49226             Bruno Haible  <bruno@clisp.org>
49227
49228         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
49229         memory when realloc fails.
49230
49231 2004-04-19  Jim Meyering  <jim@meyering.net>
49232
49233         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
49234         now that readutmp.c may call `free (0)'.
49235
49236 2004-04-19  Bruno Haible  <bruno@clisp.org>
49237
49238         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
49239         * m4/inttypes_h.m4: Likewise.
49240         * m4/stdint_h.m4: Likewise.
49241         * m4/intmax_t.m4: Likewise.
49242         * m4/uintmax_t.m4: Likewise.
49243
49244 2004-04-18  Jim Meyering  <jim@meyering.net>
49245
49246         * m4/prereq.m4: Don't forbid jm_ prefix.
49247
49248         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
49249         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
49250         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
49251         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
49252         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
49253         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
49254         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
49255         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
49256         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
49257         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
49258         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
49259         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
49260         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
49261         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
49262         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
49263         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
49264         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
49265         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
49266         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
49267
49268 2004-04-18  Jim Meyering  <jim@meyering.net>
49269
49270         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
49271         failure, don't leak memory and do call END_UTMP_ENT.
49272
49273 2004-04-16  Jim Meyering  <jim@meyering.net>
49274
49275         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
49276         coreutils' stat program.
49277         (gl_PREREQ): Don't require jm_PREREQ_STAT.
49278
49279 2004-04-11  Paul Eggert  <eggert@twinsun.com>
49280
49281         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
49282         C89.
49283         (CHAR_BIT): Remove, since we assume C89.
49284         Include <stdint.h> if available, as per current Autoconf CVS advice.
49285
49286 2004-03-31  Jim Meyering  <jim@meyering.net>
49287
49288         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
49289         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
49290         * m4/xalloc.m4: Likewise.
49291
49292 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49293
49294         Merge from coreutils.
49295
49296         * m4/inttostr.m4: New file.
49297         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
49298         Require AM_STDBOOL_H and gl_TIMESPEC instead.
49299         Require gl_CLOCK_TIME.
49300         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
49301
49302 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49303
49304         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
49305         not bool, to be more consistent with Unix conventions.
49306         Suggested by Bruno Haible.
49307
49308         Merge from coreutils.
49309
49310         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
49311         * lib/umaxtostr.c: New files.
49312
49313         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
49314         the usual <time.h> dance.
49315         (get_date): Change signature to support fractional time stamps.
49316         All callers changed.
49317         * lib/getdate.y: Include "getdate.h" first, as we can now
49318         assume C89 and don't need to worry about 'const'.
49319         Similarly, include "unlocked-io.h" near start, not in middle.
49320         Include <limits.h>.
49321         (textint.value): Use long int rather than int.
49322         (textint.digits): Use size_t rather than int.
49323         (BILLION, LOG10_BILLION): New constants.
49324         (parser_control): New member rel_ns.  Members day_ordinal,
49325         time_zone, month, day, hour, minutes, rel_year, rel_month,
49326         rel_day, rel_hour, rel_minutes, rel_seconds
49327         are now long int, not int.  Member seconds is now struct timespec,
49328         not int.  New member timespec_seen.  Members dates_seen, days_seen,
49329         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
49330         not int.
49331         (%union.intval): Now long int, not int.
49332         New member timespec.
49333         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
49334         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
49335         (spec): Now is a timespec or an item list.
49336         (timespec, items): New nonterminals.
49337         (time, rel, relunit, number, get_date):
49338         Add support for fractional seconds.
49339         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
49340         (gmtime, localtime, mktime): Remove decls; not needed with C89.
49341         (to_hour): First arg is now long int, not int.
49342         (to_year): Returns long int, not int.
49343         Don't treat year -70 like 70.
49344         (tm_diff): Returns long int, not int.
49345         (lookup_word): Use bool instead of int when appropriate.
49346         (yylex): Use size_t for count, not int.
49347         Detect overflow when parsing large integer constants.
49348         Add support for fractions.
49349         (get_date): Make pointers 'const' if possible.
49350         Use more-portable code to detect integer overflow.
49351         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
49352         Don't use ctime; it's not reliable if the year has >4 digits.
49353
49354         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
49355         This is for compatibility with BSD.
49356
49357         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
49358         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
49359         From coreutils' system.h.
49360
49361         * lib/userspec.c: Don't include "posixver.h".
49362         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
49363         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
49364         compatible extension.  Simplify code by removing a boolean int
49365         that was always nonzero if a string was nonnull.
49366
49367 2004-03-30  Jim Meyering  <jim@meyering.net>
49368
49369         Merge from coreutils.
49370
49371         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
49372         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
49373         on some systems one must include <grp.h> before it.
49374         Reported by Christian Krackowizer.
49375
49376 2004-03-30  Jim Meyering  <jim@meyering.net>
49377
49378         Merge from coreutils.
49379
49380         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
49381
49382         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
49383         an empty input stream.
49384
49385         * lib/readtokens.c: Include <stdbool.h>.
49386         (readtoken): Use `size_t' rather than int/long.
49387         All callers adjusted.
49388         Use `bool' rather than `int' where appropriate.
49389         Use memset rather than an explicit loop.
49390         Use x2nrealloc rather than xrealloc.
49391         Allow the use of `\0' as a delimiter.
49392         (readtokens): Likewise.
49393         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
49394
49395 2004-03-30  Jim Meyering  <jim@meyering.net>
49396
49397         * m4/realloc.m4: Remove file, since now it does no more than
49398         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
49399         the `configure.ac' section of module/realloc.
49400         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
49401
49402 2004-03-30  Bruno Haible  <bruno@clisp.org>
49403
49404         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
49405         nonnull.
49406
49407 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49408
49409         Merge changes to getloadavg.c from coreutils and Emacs.
49410
49411         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
49412         Define to an expression, not to the empty string.
49413         Include cloexec.h and xalloc.h.
49414         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
49415         Use set_cloexec_flag rather than rolling our own.
49416         * lib/cloexec.c, lib/cloexec.h: New files.
49417
49418 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49419
49420         * m4/cloexec.m4: New file.
49421
49422 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49423
49424         * lib/getopt.h: Sync with libc CVS.
49425
49426 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49427             Bruno Haible  <bruno@clisp.org>
49428
49429         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
49430         mbswidth.
49431
49432 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49433             Bruno Haible  <bruno@clisp.org>
49434
49435         * lib/mbswidth.h: Include <wchar.h> only if
49436         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
49437         <wchar.h>.
49438         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
49439
49440 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49441
49442         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
49443         Sync with libc CVS.
49444         * lib/getopt_int.h: New file, also synced from libc.
49445
49446 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49447
49448         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
49449         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
49450         Bring back getopt.c, getopt.h, getopt1.c.
49451
49452 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49453
49454         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
49455         All uses changed.  Check for sa_sigaction member; this fixes
49456         a bug first reported by Jason Andrade in
49457         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49458
49459 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49460
49461         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
49462         '#if' expressions.  Unlike the code it replaces, it does not
49463         depend on (defined _SC_PAGESIZE).  However, it does depend on
49464         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
49465         first reported by Jason Andrade in
49466         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49467
49468 2004-02-25  Simon Josefsson  <jas@extundo.com>
49469
49470         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
49471
49472 2004-02-25  Simon Josefsson  <jas@extundo.com>
49473
49474         * lib/strdup.h: New file.
49475         * lib/strdup.c: Include it.
49476         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
49477         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
49478
49479 2004-02-23  Karl Berry  <karl@gnu.org>
49480
49481         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
49482         (from fencepost.gnu.org:/gd/gnuorg).
49483
49484 2004-02-23  Karl Berry  <karl@gnu.org>
49485
49486         * config/srclistvars.sh (GNUORG) [karl]: redefine.
49487         * config/srclist.txt: add maintain/standards documents.
49488
49489 2004-02-18  Bruno Haible  <bruno@clisp.org>
49490
49491         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
49492         Reported by Derek Robert Price <derek@ximbiot.com>.
49493
49494 2004-02-16  Karl Berry  <karl@gnu.org>
49495
49496         * config/mkinstalldirs, install-sh: update from automake.
49497
49498 2004-02-06  Karl Berry  <karl@gnu.org>
49499
49500         * m4/po.m4: update from gettext 0.14.1.
49501
49502 2004-02-06  Karl Berry  <karl@gnu.org>
49503
49504         * lib/config.charset: update from gettext 0.14.1.
49505
49506 2004-02-05  Paul Eggert  <eggert@twinsun.com>
49507
49508         Add comments and code, prompted by suggestions from Bruno Haible
49509         for sh-quote.
49510         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
49511         describing the enum quoting_style values.
49512         * lib/quotearg.c (quotearg_alloc): New function.
49513         (quotearg_buffer_restyled): Treat lone { and } as special.
49514         Treat = as special.  Work around bug with older shells
49515         that "see" a '\' that is really the 2nd byte of a multibyte char.
49516         Quote empty string with shell_quoting_style.
49517
49518 2004-02-03  Bruno Haible  <bruno@clisp.org>
49519
49520         * m4/pipe.m4: New file, from GNU gettext.
49521
49522 2004-02-03  Bruno Haible  <bruno@clisp.org>
49523
49524         * lib/pipe.h: New file, from GNU gettext.
49525         * lib/pipe.c: New file, from GNU gettext.
49526
49527 2004-01-27  Bruno Haible  <bruno@clisp.org>
49528
49529         * m4/execute.m4: New file, from GNU gettext.
49530
49531 2004-01-27  Bruno Haible  <bruno@clisp.org>
49532
49533         * lib/execute.h: New file, from GNU gettext.
49534         * lib/execute.c: New file, from GNU gettext.
49535         * lib/w32spawn.h: New file, from GNU gettext.
49536
49537 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49538
49539         Merge from diffutils.
49540
49541         * lib/file-type.c (file_type): Add typed memory objects.
49542         * lib/file-type.h (S_TYPEISTMO): New macro.
49543
49544         * lib/c-stack.h (c_stack_action): Remove argv argument.
49545         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
49546         (die): Don't calculate message unless segv_action returns.
49547         (get_stack_location, min_address_from_argv, max_address_from_argv,
49548         volatile stack_base, volatile_stack_size): Remove.
49549         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
49550         that every segmentation violation is a stack overflow.  (Ouch!)
49551         See Debian bug 136249 (still outstanding) for more info about why
49552         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
49553
49554 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49555
49556         Exit-status fix from coreutils.
49557
49558         Use exit_failure consistently in place of EXIT_FAILURE,
49559         so that program exit statuses are consistent on failure.
49560
49561         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
49562         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
49563         * lib/argmatch.h: Comment fix to match the above.
49564         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
49565         Now a macro referring to exit_failure, instead of a separate
49566         variable.  Include "exitfail.h" to get it.
49567         * lib/xstrtol.h: Include "exitfail.h".
49568         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
49569
49570         * lib/long-options.c (parse_long_options): Use prototype
49571         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
49572         for clarity.
49573
49574 2004-01-21  Jim Meyering  <jim@meyering.net>
49575
49576         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
49577         so as not to conflict with a different-sized __mktime_internal
49578         function in GNU libc.
49579         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
49580         Problem building statically-linked `ls' reported by Michael Brunnbauer.
49581
49582 2004-01-20  Karl Berry  <karl@gnu.org>
49583
49584         * config/config.guess: update from config.
49585
49586         * config/srclistvars.sh: GNUWWWLICENSES for karl.
49587
49588 2004-01-20  Bruno Haible  <bruno@clisp.org>
49589
49590         Safer stack allocation.
49591         * lib/setenv.c: Include allocsa.h.
49592         (alloca): Remove fallback definition.
49593         (freea): Remove macro.
49594         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
49595         instead of freea.
49596
49597 2004-01-20  Bruno Haible  <bruno@clisp.org>
49598
49599         * m4/eealloc.m4: New file, from GNU gettext.
49600
49601 2004-01-20  Bruno Haible  <bruno@clisp.org>
49602
49603         * m4/allocsa.m4: New file, from GNU gettext.
49604
49605 2004-01-20  Bruno Haible  <bruno@clisp.org>
49606
49607         * lib/xallocsa.h: New file, from GNU gettext.
49608         * lib/xallocsa.c: New file, from GNU gettext.
49609
49610 2004-01-20  Bruno Haible  <bruno@clisp.org>
49611
49612         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
49613
49614 2004-01-20  Bruno Haible  <bruno@clisp.org>
49615
49616         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
49617         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
49618         specially.
49619
49620 2004-01-20  Bruno Haible  <bruno@clisp.org>
49621
49622         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
49623         patch.
49624
49625 2004-01-20  Bruno Haible  <bruno@clisp.org>
49626
49627         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
49628
49629 2004-01-20  Bruno Haible  <bruno@clisp.org>
49630
49631         * lib/eealloc.h: New file.
49632
49633 2004-01-20  Bruno Haible  <bruno@clisp.org>
49634
49635         * lib/binary-io.h: Avoid warnings on Cygwin.
49636
49637 2004-01-20  Bruno Haible  <bruno@clisp.org>
49638
49639         * lib/allocsa.h: New file, from GNU gettext.
49640         * lib/allocsa.c: New file, from GNU gettext.
49641
49642 2004-01-18  Karl Berry  <karl@gnu.org>
49643
49644         * doc/gpl.texi, doc/lgpl.texi: new files.
49645
49646 2004-01-18  Karl Berry  <karl@gnu.org>
49647
49648         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
49649         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
49650
49651 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49652
49653         Merge from coreutils.
49654
49655         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
49656         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
49657         (gl_DEFAULT_POSIX2_VERSION): Move
49658         the documentation from 'configure' into 'config.hin',
49659         so that 'configure --help' isn't burdened by it and
49660         we don't have to worry about its formatting there.
49661         Reword the documentation so that it's more succinct
49662         and can be run together into a single paragraph.
49663         * m4/same.m4 (gl_SAME): Check for pathconf.
49664
49665 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49666
49667         Merge from coreutils.
49668
49669         * lib/posixver.c: Include posixver.h.
49670
49671         * lib/same.c: Include <stdbool.h>, <limits.h>.
49672         (_POSIX_NAME_MAX): Define if not defined.
49673         (MIN): New macro.
49674         (same_name): If file names are silently truncated, report
49675         that the file names are the same if they are the same after
49676         the silent truncation.
49677
49678         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
49679         conversion function.
49680         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
49681         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
49682         longer needed.
49683
49684 2004-01-15  Jim Meyering  <jim@meyering.net>
49685
49686         Merge from coreutils.
49687
49688         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
49689         if no library is required.
49690         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
49691         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
49692         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
49693         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
49694         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
49695         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
49696         value, $ac_cv_search_crypt, if it's "none required".
49697         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
49698         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
49699         not gl_FUNC_GETLOADAVG.
49700         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
49701         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
49702
49703 2004-01-15  Jim Meyering  <jim@meyering.net>
49704
49705         Merge from coreutils.
49706
49707         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
49708         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
49709         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
49710
49711         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
49712         optional configure-time default.
49713
49714         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49715
49716         * lib/xreadlink.c (xreadlink): Correct outdated comment.
49717
49718 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
49719
49720         Merge from coreutils.
49721
49722         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
49723         value, $ac_cv_search_nanosleep, if it's "none required".
49724
49725 2004-01-14  Paul Eggert  <eggert@twinsun.com>
49726
49727         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
49728         with like-named macro in fnmatch.c.
49729         (EXT): Use an internal constant instead.
49730
49731         Merge fnmatch patches from glibc.
49732         * lib/fnmatch.c (mbsinit): Remove define.
49733         Add libc_hidden_ver (__fnmatch, fnmatch).
49734         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
49735         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
49736
49737 2004-01-14  Karl Berry  <karl@gnu.org>
49738
49739         * config/install-sh: update from automake.
49740
49741 2004-01-13  Karl Berry  <karl@gnu.org>
49742
49743         * config/install-sh: update from automake.
49744
49745 2004-01-09  Karl Berry  <karl@gnu.org>
49746
49747         * config/install-sh: update from automake.
49748
49749 2004-01-05  Karl Berry  <karl@gnu.org>
49750
49751         * config/config.{sub,guess}: update from config.
49752
49753 2003-12-31  Karl Berry  <karl@gnu.org>
49754
49755         * config/depcomp: update from automake.
49756
49757 2003-12-14  Karl Berry  <karl@gnu.org>
49758
49759         * lib/config.charset: update from gettext-runtime.
49760
49761 2003-12-03  Paul Eggert  <eggert@twinsun.com>
49762
49763         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
49764         Bug reported by Alfred M. Szmidt.
49765
49766 2003-12-03  Bruno Haible  <bruno@clisp.org>
49767
49768         * m4/gettext.m4: Upgrade from gettext-0.13.
49769         * m4/po.m4: Upgrade from gettext-0.13.
49770         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
49771         * m4/intmax.m4: New file, from gettext-0.13.
49772         * m4/printf-posix.m4: New file, from gettext-0.13.
49773
49774 2003-11-29  Karl Berry  <karl@gnu.org>
49775
49776         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
49777
49778 2003-11-25  Paul Eggert  <eggert@twinsun.com>
49779             Bruno Haible  <bruno@clisp.org>
49780
49781         * lib/printf-parse.h: Don't include sys/types.h.
49782         (ARG_NONE): New macro.
49783         (char_directive): Change type of *arg_index fields to size_t.
49784         * lib/printf-parse.c: Don't include sys/types.h.
49785         (SSIZE_MAX): Remove macro.
49786         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
49787         Remove unnecessary overflow check.
49788         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
49789         fields.
49790
49791 2003-11-25  Bruno Haible  <bruno@clisp.org>
49792
49793         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
49794
49795 2003-11-25  Bruno Haible  <bruno@clisp.org>
49796
49797         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
49798         gt_TYPE_SSIZE_T.
49799
49800 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49801
49802         * modules/alloca: Remove dependency on xalloc.
49803
49804 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49805
49806         * lib/alloca.c: Remove dependency on xalloc module.
49807         (xalloc_die): Remove.
49808         (memory_full) [!defined emacs]: New macro.
49809         [!defined emacs]: Don't include xalloc.h.
49810         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
49811         address arithmetic overflows.  Change datatypes a bit to avoid
49812         unnecessary casts.
49813
49814 2003-11-22  Jim Meyering  <jim@meyering.net>
49815
49816         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
49817         s/size/size_t/.
49818
49819 2003-11-21  Karl Berry  <karl@gnu.org>
49820
49821         * config/config.{sub,guess}: update from config.
49822
49823 2003-11-18  Karl Berry  <karl@gnu.org>
49824
49825         * config/config.{sub,guess}: update from config.
49826
49827         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
49828
49829 2003-11-17  Paul Eggert  <eggert@twinsun.com>
49830
49831         * README: Mention that S+T cannot overflow if S is the size of
49832         an existing object and T is sufficiently small.
49833
49834 2003-11-17  Jim Meyering  <jim@meyering.net>
49835
49836         On systems without utime and without a utimes function capable of
49837         dealing with a NULL struct utimbuf* argument, this utime replacement
49838         could -- in unusual circumstances -- leak a file descriptor.
49839         * lib/utime.c: Include <unistd.h> and <errno.h>.
49840         (utime_null): Be sure to close `fd' and to preserve errno.
49841         Reported by Geoff Collyer via Arnold Robbins.
49842
49843 2003-11-17  Bruno Haible  <bruno@clisp.org>
49844
49845         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
49846         (Depends-on): Add xsize.
49847
49848 2003-11-17  Bruno Haible  <bruno@clisp.org>
49849
49850         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
49851
49852 2003-11-17  Bruno Haible  <bruno@clisp.org>
49853
49854         * lib/vasnprintf.c (alloca): Remove fallback definition.
49855         (freea): Remove definition.
49856         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
49857         Reported by Paul Eggert.
49858
49859 2003-11-16  Paul Eggert  <eggert@twinsun.com>
49860             Bruno Haible  <bruno@clisp.org>
49861
49862         Protect against address arithmetic overflow.
49863         * lib/printf-args.h: Include stddef.h.
49864         (arguments): Change type of field 'count' to size_t.
49865         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
49866         'unsigned int' where appropriate.
49867         * lib/printf-parse.h: Include sys/types.h.
49868         (char_directive): Change type of *arg_index fields to ssize_t.
49869         (char_directives): Change type of fields 'count', max_*_length to
49870         size_t.
49871         * lib/printf-parse.c: Include sys/types.h and xsize.h.
49872         (SSIZE_MAX): Define fallback value.
49873         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
49874         instead of 'int' where appropriate. Check a_allocated, d_allocated
49875         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
49876         * lib/vasnprintf.c: Include xsize.h.
49877         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
49878         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
49879         overflow. Avoid wraparound when converting a width or precision from
49880         decimal to binary.
49881
49882 2003-11-16  Bruno Haible  <bruno@clisp.org>
49883
49884         Update from GNU gettext.
49885         * lib/printf-parse.c: Generalize to it can be compiled for wide
49886         strings.
49887         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49888         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
49889         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
49890         SNPRINTF): New macros.
49891         Don't include <alloca.h> if the file is used inside libintl.
49892         (local_wcslen): New function, for Solaris 2.5.1.
49893         (VASNPRINTF): Use it instead of wcslen.
49894
49895 2003-11-16  Bruno Haible  <bruno@clisp.org>
49896
49897         * lib/xsize.h (xmax): New function.
49898         (xsum, xsum3, xsum4): Declare as "pure" functions.
49899
49900 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49901
49902         * modules/xalloc (Files): Undo latest change, since xalloc.h
49903         no longer needs SIZE_MAX or PTRDIFF_MAX.
49904
49905 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49906
49907         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
49908         gl_PTRDIFF_MAX.
49909
49910 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49911
49912         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
49913         "return", to pacify some unknown compiler.  Problem reported
49914         by Joerg Schilling.
49915
49916 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49917
49918         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
49919         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
49920         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
49921         heuristic is just as accurate as far as we know, and it removes a
49922         dependency on size_max.m4 and ptrdiff_max.m4.
49923
49924 2003-11-11  Bruno Haible  <bruno@clisp.org>
49925
49926         * modules/xsize (Files): Add m4/size_max.m4.
49927         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
49928
49929 2003-11-11  Bruno Haible  <bruno@clisp.org>
49930
49931         * m4/size_max.m4: New file.
49932         * m4/ptrdiff_max.m4: New file.
49933         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
49934         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
49935         (gl_XALLOC): Invoke it.
49936
49937 2003-11-11  Bruno Haible  <bruno@clisp.org>
49938
49939         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
49940         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
49941         defined.
49942
49943 2003-11-10  Paul Eggert  <eggert@twinsun.com>
49944
49945         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
49946         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
49947         rejected some allocations of exactly SIZE_MAX - 2 bytes.
49948         From Bruno Haible.
49949         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
49950         not (size_t) -1, since it's defined here.
49951
49952 2003-11-09  Karl Berry  <karl@gnu.org>
49953
49954         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
49955
49956 2003-11-06  Paul Eggert  <eggert@twinsun.com>
49957
49958         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
49959         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
49960         Reject sizes of exactly SIZE_MAX bytes.
49961         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
49962         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
49963
49964 2003-11-05  Bruno Haible  <bruno@clisp.org>
49965
49966         * lib/xsize.h: Include limits.h, to avoid a possible collision with
49967         SIZE_MAX defined in <limits.h> on Solaris.
49968
49969 2003-11-04  Jim Meyering  <jim@meyering.net>
49970
49971         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
49972         variable names, rather than @VAR@.
49973         * modules/poll: Likewise.
49974
49975 2003-11-04  Bruno Haible  <bruno@clisp.org>
49976
49977         * modules/xsize: New file.
49978         * modules/linebreak: Depend on xsize.
49979         * MODULES.html.sh (func_all_modules): Add xsize.
49980
49981 2003-11-04  Bruno Haible  <bruno@clisp.org>
49982
49983         * m4/xsize.m4: New file.
49984
49985 2003-11-04  Bruno Haible  <bruno@clisp.org>
49986
49987         * lib/xsize.h: New file.
49988         * lib/linebreak.c: Include xsize.h.
49989         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
49990         argument for overflow.
49991         Suggested by Paul Eggert.
49992
49993 2003-11-03  Karl Berry  <karl@gnu.org>
49994
49995         * config/config.{guess,sub}: update from config.
49996
49997 2003-11-03  Jim Meyering  <jim@meyering.net>
49998
49999         * modules/userspec (lib_SOURCES): Add userspec.h.
50000         (Include): Add "userspec.h".
50001         Improve description.
50002
50003 2003-11-03  Jim Meyering  <jim@meyering.net>
50004
50005         * lib/userspec.c: Include "userspec.h".
50006         * lib/userspec.h: New file.
50007
50008 2003-11-03  Bruno Haible  <bruno@clisp.org>
50009
50010         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
50011
50012 2003-11-03  Bruno Haible  <bruno@clisp.org>
50013
50014         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
50015         available, to avoid (extremely rare) race condition.
50016         Suggested by Paul Eggert.
50017
50018 2003-11-02  Karl Berry  <karl@gnu.org>
50019
50020         * config/srclist.txt (vasprintf.c): sync broken, sigh.
50021
50022 2003-10-31  Paul Eggert  <eggert@twinsun.com>
50023
50024         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
50025         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
50026         (read_filesystem_list): Set and use me_type_malloced.
50027         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
50028         whatever the type happens to be), for brevity and consistency.
50029         Check for size calculation overflow on Alphas running OSF/1.
50030
50031 2003-10-31  Jim Meyering  <jim@meyering.net>
50032
50033         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
50034
50035         * lib/linebuffer.c: Include <string.h> for declaration of memset.
50036
50037 2003-10-30  Paul Eggert  <eggert@twinsun.com>
50038             Bruno Haible  <bruno@clisp.org>
50039
50040         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
50041         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
50042
50043 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
50044
50045         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
50046         netbsd*-gnu*.  Suggested by Robert Millan.
50047
50048 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50049
50050         * modules/group-member: Depend on stdbool.
50051
50052 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50053
50054         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
50055
50056 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50057
50058         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
50059         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
50060         after the 'gnu' in these cases.  This fixes some bugs in the
50061         previous change, and is based on suggestions by Robert Millan.
50062
50063 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50064
50065         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
50066         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
50067         no longer needed.
50068         * lib/quotearg.c (quotearg_n_options): Use it.
50069         * lib/group-member.c: Include <stdbool.h>.
50070         (free_group_info): Arg is now const *; don't free arg.
50071         (get_group_info): Now returns bool and accepts struct group_info *,
50072         rather than returning a malloc'ed struct group_info *.
50073         All uses changed.  Check for overflow in internal size calculation.
50074
50075         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
50076         rather than xmalloc/xrealloc.
50077         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
50078         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
50079         conformance bug: the old code used a pointer after freeing the
50080         storage that it addressed.
50081         * lib/hash.c (hash_initialize): Simplify the code by using
50082         xalloc_oversized rather than doing it by hand.
50083         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
50084         the buffer preserved.  Use free and xmalloc instead.
50085         * lib/quotearg.c (quotearg_n_options): Likewise.
50086         Use a simpler test for size overflow.  Don't use xalloc_oversized
50087         because unsigned int might be wider than size_t (!); this suggests
50088         that we should switch from unsigned int to size_t for slot numbers.
50089
50090 2003-10-28  Paul Eggert  <eggert@twinsun.com>
50091
50092         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
50093         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
50094         NetBSD kernels.  Requested by Richard Stallman.
50095
50096 2003-10-27  Paul Eggert  <eggert@twinsun.com>
50097
50098         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
50099         to allocate the returned structure.  Do not allocate a subarray,
50100         as x2nrealloc will do that.
50101         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
50102         instead of xnrealloc.
50103         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
50104
50105 2003-10-27  Bruno Haible  <bruno@clisp.org>
50106
50107         * lib/stdbool_.h: Better support for BeOS.
50108
50109 2003-10-26  Paul Eggert  <eggert@twinsun.com>
50110
50111         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
50112         now uses inline.
50113
50114 2003-10-26  Paul Eggert  <eggert@twinsun.com>
50115
50116         * lib/xalloc.h (xalloc_oversized): New static inline function, for
50117         callers that want to do their own size-overflow checking.  Include
50118         <stdbool.h>, since xalloc_oversized returns bool.
50119         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
50120         to use xalloc_oversized.
50121
50122         Add two functions x2realloc, x2nrealloc, for programs that grow
50123         arrays dynamically by doubling their sizes.
50124         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
50125         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
50126         New functions.
50127
50128         Port to C99 semantics for 'inline' of external functions.
50129         Bug reported by Bruno Haible.
50130         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
50131         with the old contents of xnmalloc.
50132         (xnmalloc, xmalloc): Use it.
50133         (xnrealloc_inline): New static inline function,
50134         with the old contents of xnrealloc.
50135         (xnrealloc, xrealloc): Use it.
50136
50137         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
50138         that.
50139
50140 2003-10-26  Karl Berry  <karl@gnu.org>
50141
50142         * config/srclist.txt (COPYING.DOC): no longer available from
50143         /gd/gnuorg; don't know where the ultimate source is.
50144
50145 2003-10-25  Paul Eggert  <eggert@twinsun.com>
50146
50147         Fix several address-calculation bugs in the hash modules,
50148         plus some minor code cleanup.
50149
50150         * lib/hash.h: Include <stdbool.h>, for bool.
50151         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
50152         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
50153         hash_get_n_entries, hash_get_max_bucket_length,
50154         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
50155         hash_rehash): Use size_t rather than unsigned.
50156         * lib/hash.c (struct hash_table, hash_get_n_buckets,
50157         hash_get_n_buckets_used, hash_get_n_entries,
50158         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
50159         hash_get_entries, hash_do_for_each, hash_string, is_prime,
50160         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
50161         Likewise.
50162         (SIZE_MAX): Define if not defined.
50163         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
50164         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
50165         hash_print):
50166         Use const * when possible.
50167         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
50168         (check_tuning): Fix bug: if tuning parameters were very close to
50169         0 or 1, rounding errors could have caused subscript violations.
50170         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
50171         (hash_initialize): Add 'fail:' label
50172         to free table and return NULL, and use it to simplify code.
50173         Use calloc rather than clearing the storage ourself.
50174         (hash_initialize, hash_rehash): Check for arithmetic overflow in
50175         buffer size calculations.
50176         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
50177         Include <stddef.h>, for size_t.
50178         * lib/hash-pjw.c (hash_pjw): Likewise.
50179         Switch to method described by Bruno Haible.
50180         Include <limits.h>, for CHAR_BIT.
50181         (SIZE_BITS): New macro.
50182
50183 2003-10-23  Paul Eggert  <eggert@twinsun.com>
50184
50185         * m4/getline.m4 (AM_FUNC_GETLINE):
50186         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
50187         hosts.  Problem reported by Derek Robert Price in
50188         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
50189         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
50190         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
50191
50192 2003-10-21  Paul Eggert  <eggert@twinsun.com>
50193
50194         * lib/getndelim2.c (getndelim2): When size calculation overflows,
50195         ceiling the allocation at NMAX bytes rather than silently
50196         discarding input bytes before NMAX is reached.  This makes
50197         a difference only if NMAX exceeds SIZE_MAX / 2.
50198
50199         * lib/obstack.c: Merge from glibc.
50200         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
50201         Add libc_hidden_def (_obstack_newchunk).
50202         (_obstack_free) [! defined _LIBC]: Remove.
50203         [defined _LIBC]: Make a strong alias from obstack_free, rather than
50204         a clone of the function body.
50205         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
50206         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
50207
50208         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
50209         glibc.
50210         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
50211         arg to memcpy.
50212
50213         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
50214         (obstack_ptr_grow_fast, obstack_int_grow_fast):
50215         Don't use lvalue casts, as GCC plans to remove support for them
50216         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
50217         was also present in the non-GCC version, indicating that this
50218         code had always been buggy and had never been widely used.
50219         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
50220         Use the fast variant of each macro, rather than copying the
50221         definiens of the fast variant; that way, we'll be more likely to
50222         catch future bugs in the fast variants.
50223
50224 2003-10-20  Bruno Haible  <bruno@clisp.org>
50225
50226         * modules/wait-process: New file.
50227         * MODULES.html.sh (func_all_modules): Add wait-process.
50228
50229 2003-10-20  Bruno Haible  <bruno@clisp.org>
50230
50231         * m4/wait-process.m4: New file.
50232
50233 2003-10-20  Bruno Haible  <bruno@clisp.org>
50234
50235         * lib/wait-process.h: New file, from GNU gettext.
50236         * lib/wait-process.c: New file, from GNU gettext.
50237
50238 2003-10-19  Jim Meyering  <jim@meyering.net>
50239
50240         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
50241         HPUX 10.20.
50242
50243 2003-10-18  Karl Berry  <karl@gnu.org>
50244
50245         * config/config.guess: update from config.
50246
50247 2003-10-16  Paul Eggert  <eggert@twinsun.com>
50248
50249         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
50250         (getgroups): First arg is int, not size_t.
50251         Don't let 'free' mangle errno.
50252
50253 2003-10-16  Paul Eggert  <eggert@twinsun.com>
50254
50255         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
50256
50257 2003-10-16  Karl Berry  <karl@gnu.org>
50258
50259         * config/config.{guess,sub}: update from config.
50260
50261 2003-10-16  Jim Meyering  <jim@meyering.net>
50262
50263         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
50264         memcpy.
50265
50266 2003-10-15  Paul Eggert  <eggert@twinsun.com>
50267
50268         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
50269         (SIZE_MAX): Remove.
50270         (new_exclude, add_exclude_file): Initial size no longer needs to
50271         be a power of 2.
50272         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
50273         our own address arithmetic overflow checking.
50274
50275         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
50276         (fnmatch): Do not alloca more than 2000 wide characters;
50277         instead, use malloc for large buffers.
50278         Check for address arithmetic overflow, and return -1
50279         with errno set to ENOMEM in that case.
50280         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
50281         (NEW_PATTERN): Do not alloca more than 8000 bytes;
50282         instead, return -1.  Check for address arithmetic overflow.
50283
50284 2003-10-14  Paul Eggert  <eggert@twinsun.com>
50285
50286         Handle invalid suffixes and overflow independently, so that
50287         callers can treat them independently as needed.  Fix some bugs in
50288         suffix handling, e.g., "100k@" was not diagnosed as an invalid
50289         suffix for a human-readable blocksize.  The major caller-visible
50290         change is the addition of a new
50291         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
50292         that both overflow and suffix chars were found.
50293
50294         * lib/human.c (humblock): Don't check separately for invalid suffix
50295         char; that is xstrtoumax's job (now that its bug is fixed).
50296         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
50297         INTMAX_MAX]: New macros.
50298         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
50299         TYPE_MAXIMUM): New macros.
50300         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
50301         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
50302         if overflow occurs, as it's what __strtol does and it's more useful
50303         in practice.
50304         (__xstrtol): If __strtol reports some error other than ERANGE,
50305         reflect it to the caller as LONGINT_INVALID.  If it reports
50306         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
50307         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
50308         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
50309         value.
50310         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
50311         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
50312         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
50313         [defined UINTMAX_MAX]: New macros.
50314
50315 2003-10-14  Bruno Haible  <bruno@clisp.org>
50316
50317         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
50318
50319 2003-10-14  Bruno Haible  <bruno@clisp.org>
50320
50321         * m4/sig_atomic_t: New file, from GNU gettext.
50322         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
50323
50324 2003-10-14  Bruno Haible  <bruno@clisp.org>
50325
50326         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
50327         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
50328         Also use volatile where needed.
50329
50330 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50331
50332         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
50333         Change maintainer from Bruno Haible to 'all'.
50334
50335 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50336
50337         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
50338
50339 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50340
50341         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
50342         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
50343         and define in terms of the other primitives.
50344         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
50345         (SIZE_MAX): Define if not already defined.
50346         (array_size_overflow): New function.
50347         (xalloc_die): Abort instead of exiting if 'error' returns.
50348         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
50349         (xmalloc, xrealloc): Use them.
50350         (xcalloc): Check for address arithmetic overflow.
50351         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
50352         a bit faster than strcpy.
50353
50354 2003-10-10  Simon Josefsson  <jas@extundo.com>
50355
50356         * modules/argp (Depends-on): Add restrict and strcase.
50357
50358 2003-10-10  Simon Josefsson  <jas@extundo.com>
50359
50360         * m4/argp.m4: Add AC_C_INLINE.
50361
50362 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50363
50364         Merge getpass from libc, plus a few fixes.
50365
50366         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
50367         Include <stdbool.h>.
50368         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
50369         __fsetlocking to empty.
50370         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
50371         do include <bits/libc-lock.h>.
50372         Do not include <fcntl.h>; not needed.
50373         [_LIBC]: Include <wchar.h>.
50374         (NOTCANCEL_MODE): New macro.
50375         (flockfile, funlockfile) [_LIBC]: New macros.
50376         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
50377         [!_LIBC]: New macros.
50378         (call_fclose): New function.
50379         (getpass): Use it.  Save tty stream separately; this simplifies the
50380         code and makes it more reliable if stdin happens to equal stdout.
50381         Invoke __fsetlocking on tty.
50382         Handle thread cancellation if needed.
50383         Namespace cleanup (use __tcgetattr, __getline).
50384         Use bool for Booleans.
50385         [USE_IN_LIBIO]: Handle wide streams.
50386         [!_LIBC]: Unconditionally do the fseek, since we don't know what
50387         stream might go where.
50388
50389         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
50390         doesn't have to include <stdio.h> before us.
50391         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
50392         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
50393         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
50394         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
50395         if not declared, so that we can use getpass.c code from libc without
50396         rewriting it.
50397         (flockfile, ftrylockfile, funlockfile): New macros.
50398
50399 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50400
50401         * modules/getpass: Depend on stdbool.
50402
50403 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50404
50405         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
50406
50407 2003-10-07  Karl Berry  <karl@gnu.org>
50408
50409         * config/config.{guess,sub}: update from config.
50410
50411 2003-10-06  Jim Meyering  <jim@meyering.net>
50412             Bruno Haible  <bruno@clisp.org>
50413
50414         This lets translators provide better translations for the
50415         "Written by ..." part of --version output.
50416         * lib/version-etc.h: Include stdarg.h.
50417         (version_etc_copyright): Declare as readonly.
50418         (version_etc): Make this function variadic with a NULL-terminated list
50419         of author name strings.
50420         (version_etc_va): New declaration.
50421         * lib/version-etc.c: Include stdarg.h, stdlib.h.
50422         (version_etc_copyright): Declare as readonly.
50423         (version_etc_va): New function. Provide a different translatable string
50424         for each possible number of authors < 10. Abbreviate when there are 10
50425         authors or more.
50426         (version_etc): Make this function variadic. Call version_etc_va.
50427         Suggestion from Gary V. Vaughan.
50428
50429         * lib/long-options.h (parse_long_options): Change prototype: the
50430         authors string is moved to the end and becomes variadic.
50431         * lib/long-options.c: Include stdarg.h.
50432         (parse_long_options): Make this function variadic, too.
50433         Call version_etc_va, not version_etc.
50434
50435 2003-10-06  Bruno Haible  <bruno@clisp.org>
50436
50437         * modules/version-etc-2: Remove file.
50438         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
50439
50440 2003-10-06  Bruno Haible  <bruno@clisp.org>
50441
50442         * modules/fatal-signal: New file.
50443         * MODULES.html.sh (func_all_modules): Add fatal-signal.
50444
50445 2003-10-06  Bruno Haible  <bruno@clisp.org>
50446
50447         * m4/fatal-signal.m4: New file.
50448         * m4/signalblocking.m4: New file, from GNU gettext.
50449
50450 2003-10-06  Bruno Haible  <bruno@clisp.org>
50451
50452         * lib/version-etc-2.h: Remove file.
50453         * lib/version-etc-2.c: Remove file.
50454
50455 2003-10-06  Bruno Haible  <bruno@clisp.org>
50456
50457         * lib/fatal-signal.h: New file, from GNU gettext.
50458         * lib/fatal-signal.c: New file, from GNU gettext.
50459
50460 2003-10-05  Paul Eggert  <eggert@twinsun.com>
50461
50462         * README: Rework advice for preventing empty .o files.
50463         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
50464         not <sys/types.h>.
50465
50466 2003-10-04  Karl Berry  <karl@gnu.org>
50467
50468         * lib/argp*: update from libc.
50469
50470 2003-10-04  Karl Berry  <karl@gnu.org>
50471
50472         * config/config.{guess,sub}: update from config.
50473
50474 2003-10-02  Bruno Haible  <bruno@clisp.org>
50475
50476         * modules/lchown (Include): Add lchown.h.
50477         * modules/time_r (Include): Use "..." syntax.
50478         * modules/xgetdomainname (Include): Add xgetdomainname.h.
50479
50480 2003-10-01  Simon Josefsson  <jas@extundo.com>
50481
50482         * MODULES.html.sh (func_all_modules): Move gethostname from section
50483         'based on' to section 'lacking' POSIX:2001.
50484
50485 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
50486
50487         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
50488         to output mode on the same stream.
50489
50490 2003-09-29  Paul Eggert  <eggert@twinsun.com>
50491
50492         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
50493         Fix arg typo in previous patch.
50494
50495 2003-09-28  Jim Meyering  <jim@meyering.net>
50496
50497         * lib/error.c: Correct cpp indentation.
50498
50499 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50500
50501         * modules/free: New file.
50502
50503 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50504
50505         * m4/free.m4: New file.
50506
50507 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50508
50509         * lib/minmax.h (MIN, MAX)
50510         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
50511         Omit the special code that used __typeof__, since we worry that
50512         it could be more trouble than it's worth.  See:
50513         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
50514         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
50515
50516         * lib/free.c: New file.
50517
50518 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
50519
50520         Trivial fixes to Makefile.am parts of module listings.
50521         * modules/strstr: Append strstr.h to lib_SOURCES.
50522         * modules/strcase: Likewise, for strcase.h.
50523
50524 2003-09-27  Karl Berry  <karl@gnu.org>
50525
50526         * config/mkinstalldirs: update from automake.
50527
50528 2003-09-26  Paul Eggert  <eggert@twinsun.com>
50529
50530         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
50531         (error_tail): Do not loop, reallocating temporary buffer, since
50532         the output cannot contain more wide characters than the input
50533         contains bytes, the size must be big enough already.  This avoids
50534         one potential size overflow calculation.  Check for size overflow
50535         when calculating temporary buffer size.  Free temporary buffer
50536         when done, if it was allocated with malloc; this plugs a memory
50537         leak.  Remove casts from void * to pointers, that are no longer
50538         needed now that we're assuming C89 or better.
50539
50540         Merge error changes from glibc.
50541
50542         * lib/error.c, error.h: Update copyright notice header to match glibc.
50543         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
50544         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
50545         Disable cancellation while printing error.
50546         * lib/error.h: Prepend __ to parameter names.
50547
50548 2003-09-26  Jim Meyering  <jim@meyering.net>
50549
50550         * lib/error.c (error_tail): Move some declarations
50551         into inner scope where the local variables are used.
50552
50553 2003-09-26  Bruno Haible  <bruno@clisp.org>
50554
50555         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
50556         stpncpy().
50557         Don't define stpncpy through config.h; it's now done through stpncpy.h.
50558
50559 2003-09-26  Bruno Haible  <bruno@clisp.org>
50560
50561         * lib/stpncpy.h (gnu_stpncpy): New declaration.
50562         (stpncpy): Define as alias for gnu_stpncpy.
50563         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
50564
50565 2003-09-25  Simon Josefsson  <jas@extundo.com>
50566
50567         * lib/xgetdomainname.h: New file.
50568         * lib/xgetdomainname.c: New file.
50569
50570 2003-09-25  Simon Josefsson  <jas@extundo.com>
50571             Bruno Haible  <bruno@clisp.org>
50572
50573         * modules/getdomainname: New file.
50574         * modules/xgetdomainname: New file.
50575         * MODULES.html.sh (func_all_modules): Add getdomainname,
50576         xgetdomainname.
50577
50578 2003-09-25  Simon Josefsson  <jas@extundo.com>
50579             Bruno Haible  <bruno@clisp.org>
50580
50581         * m4/getdomainname.m4: New file.
50582
50583 2003-09-25  Simon Josefsson  <jas@extundo.com>
50584             Bruno Haible  <bruno@clisp.org>
50585
50586         * lib/getdomainname.h: New file.
50587         * lib/getdomainname.c: New file.
50588
50589 2003-09-25  Karl Berry  <karl@gnu.org>
50590
50591         * lib/argp-fmtstream.c, argp-help.c: update from libc.
50592
50593 2003-09-25  Karl Berry  <karl@gnu.org>
50594
50595         * config/install-sh: update from automake.
50596
50597 2003-09-25  Bruno Haible  <bruno@clisp.org>
50598
50599         * modules/version-etc-2: New file, from modules/version-etc with
50600         modifications.
50601         * MODULES.html.sh (func_all_modules): Add version-etc-2.
50602
50603 2003-09-25  Bruno Haible  <bruno@clisp.org>
50604
50605         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
50606         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
50607
50608 2003-09-24  Simon Josefsson  <jas@extundo.com>
50609
50610         * modules/xgethostname: Add xgethostname.h.
50611
50612 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50613
50614         * lib/linebuffer.c (freebuffer): Don't free the argument, just
50615         the buffer associated with the argument.  Bug reported by
50616         Simon Josefsson.
50617
50618 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50619
50620         * README: Document assumptions that 'int' is at least 32 bits
50621         wide, that integer arithmetic is 2's complement without overflow,
50622         that there are no holes in integer values, that adding sizes of
50623         two nonoverlapping objects can't overflow, and that all-bits-zero
50624         yields scalar zero.  Fix spelling and capitalization typos.
50625
50626 2003-09-19  Karl Berry  <karl@gnu.org>
50627
50628         * lib/argp.h: update from libc.
50629
50630 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50631
50632         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
50633         to avoid spurious warnings like "AC_RUN_IFELSE was called before
50634         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
50635
50636 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50637
50638         * gnulib-tool: Use "test -h", not "test -L", for portability
50639         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
50640         (tags_regexp): Remove, since \| doesn't conform to POSIX.
50641         (sed_extract_prog): Issue s commands one-by-one, rather than
50642         using \| in one s command.
50643
50644 2003-09-16  Paul Eggert  <eggert@twinsun.com>
50645
50646         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
50647         input error, instead of returning NULL the next time we are called
50648         (and therefore losing track of errno).
50649
50650 2003-09-16  Bruno Haible  <bruno@clisp.org>
50651
50652         * gnulib-tool (func_create_testdir): Warn about duplicated
50653         dependencies.
50654
50655 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50656
50657         * modules/argmatch, modules/fatal, modules/obstack,
50658         modules/xalloc, modules/xgethostname: Sort dependencies by
50659         importance, not alphabetically.
50660
50661 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50662
50663         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
50664         fails, so that the caller gets the proper errno.
50665
50666         * lib/readutmp.c (read_utmp): Likewise.
50667         Check for fstat error.  Close stream and free storage
50668         when failing.
50669
50670 2003-09-14  Karl Berry  <karl@gnu.org>
50671
50672         * config/srclist.txt (strdup.c): disable for c89 changes.
50673
50674 2003-09-14  Jim Meyering  <jim@meyering.net>
50675
50676         * lib/getloadavg.c: Correct cpp indentation.
50677         * lib/strdup.c: Likewise.
50678         * lib/vasnprintf.c: Likewise.
50679
50680 2003-09-14  Bruno Haible  <bruno@clisp.org>
50681
50682         * modules/fwriteerror: New file.
50683         * MODULES.html.sh (func_all_modules): Add fwriteerror.
50684
50685 2003-09-14  Bruno Haible  <bruno@clisp.org>
50686
50687         * lib/fwriteerror.h: New file.
50688         * lib/fwriteerror.c: New file.
50689
50690 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50691
50692         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
50693         modules/xgethostname, modules/xalloc: Depend on exit.
50694
50695 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50696
50697         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
50698
50699         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
50700         and AC_MINIX, too, so that their extensions are available.
50701
50702         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
50703         This macro has been superseded by gl_BACKUPFILE.
50704
50705         More patches to assume C89 or better.
50706
50707         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
50708
50709         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
50710         unconditionally.
50711         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
50712         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
50713         Include <string.h>, <stdlib.h> unconditionally.
50714         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
50715         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
50716         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
50717         headers or for string.h.
50718         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
50719         or strtoul.
50720
50721         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
50722         headers.
50723         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
50724         * m4/userspec.m4 (gl_USERSPEC): Likewise.
50725         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
50726         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
50727         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
50728         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
50729         memcpy, memset.
50730         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
50731         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
50732         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
50733         strtol.
50734         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
50735         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
50736         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
50737         strtoul.
50738
50739 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50740
50741         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
50742         * lib/obstack.c [!defined _LIBC]: Likewise.
50743         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
50744         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
50745         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
50746
50747         More changes to assume C89 or better.
50748
50749         * lib/error.c (error_tail): Assume vprintf.
50750
50751         * lib/argmatch.c (getenv): Remove decl.
50752         * lib/progreloc.c (get_full_program_name): Define via prototype.
50753         * lib/setenv.c (clearenv): Likewise.
50754         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
50755         needed.
50756         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
50757         (malloc, memcpy): Remove decls.
50758         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
50759         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
50760         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50761         (memcpy): Remove macro.
50762         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
50763         (__P): Remove.  All uses removed.
50764         (PTR): Remove.  All uses changed to void *.
50765         (CHAR_BIT, NULL): Remove.
50766         (spaces, zeros, memset_space, memset_zero)
50767         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
50768         Remove.
50769         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
50770         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
50771         Define with prototype.
50772         Remove now-unnecessary prototype decl.
50773         (extra_args_spec): Assume ANSI C.  All uses changed.
50774         (extra_args_spec_iso): Remove.
50775         (my_strftime, emacs_strftimeu): Define via prototype.
50776         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
50777         unconditionally.
50778         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
50779         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
50780         (strtoul, strtol): Remove decls.
50781         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
50782         LONG_MAX): Remove.
50783         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50784         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
50785         (LOCALE_PARAM_PROTO): New macro.
50786         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
50787         (INTERNAL (strtol), strtol): Define with a prototype.
50788         (PARAMS): Remove.  All uses removed.
50789         * lib/tempname.c: Include <string.h> unconditionally.
50790         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
50791         * lib/xgethostname.c (main): Define with a prototype.
50792         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
50793         Include <stdlib.h> unconditionally.
50794         (calloc, malloc, realloc, free): Remove decls.
50795         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
50796         Include <stdlib.h> unconditionally.  Sort include file names.
50797         (strtod): Remove.
50798         (xstrtod): Define with a prototype.
50799         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
50800         (strtol, strtoul): Remove decls.
50801
50802 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50803
50804         More patches to assume C89 or better.
50805         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
50806         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
50807         string.h, memchr, STDC_HEADERS.
50808
50809 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50810
50811         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
50812         Include <stdlib.h>, <string.h> unconditionally.
50813         Remove now-unnecessary cast to char *.
50814         * lib/strnlen.c: Include <string.h> unconditionally.
50815         * lib/yesno.c (yesno): Define with a prototype.
50816
50817 2003-09-11  Bruno Haible  <bruno@clisp.org>
50818
50819         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
50820
50821 2003-09-10  Jim Meyering  <jim@meyering.net>
50822
50823         * lib/error.c: Correct indentation of cpp directives.
50824
50825 2003-09-10  Bruno Haible  <bruno@clisp.org>
50826
50827         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
50828         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
50829         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
50830         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
50831         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
50832         <stdlib.h> and <string.h> checks.
50833         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
50834         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
50835
50836 2003-09-10  Bruno Haible  <bruno@clisp.org>
50837
50838         * lib/strcspn.c: Include <string.h> unconditionally.
50839         * lib/strpbrk.c: Include <string.h> unconditionally.
50840         * lib/strstr.c: Include <string.h> unconditionally.
50841         * lib/unicodeio.c: Include <string.h> unconditionally.
50842         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
50843         * lib/unsetenv.c: Likewise.
50844         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
50845         * lib/yesno.c: Include <stdlib.h> unconditionally.
50846         (rpmatch): Add prototype.
50847
50848 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50849
50850         More patches to assume C89 or better.
50851         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
50852         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
50853         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
50854         or for string.h.
50855         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
50856         stdlib.h.
50857         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
50858         C headers.
50859         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
50860         string.h.
50861         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
50862         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
50863         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
50864         or for string.h.
50865         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
50866         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
50867         C headers.
50868         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
50869         memcpy.
50870         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
50871         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
50872         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
50873         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
50874         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
50875         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
50876         string.h, free.
50877         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
50878         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
50879         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
50880         C headers, or for string.h.
50881         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
50882         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
50883         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
50884         headers, memory.h, stdlib.h, string.h, strings.h.
50885         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
50886         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
50887         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
50888         strchr.
50889         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
50890         headers, memory.h, string.h.
50891         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
50892         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
50893         free.
50894         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
50895         headers.
50896         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
50897         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
50898         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
50899         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
50900         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
50901
50902 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50903
50904         More K&R removal.
50905
50906         * lib/acosl.c (main): Use a prototype.
50907         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
50908         tanl.c: Likewise.
50909
50910         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
50911
50912         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
50913         (getopt, etopt_long, getopt_long_only, _getopt_internal)
50914         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
50915         with a prototype.
50916         * lib/getopt.c (const): Remove macro.
50917         Include <string.h> unconditionally.
50918         (my_index): Remove; all uses changed to strchr.
50919         (strlen): Remove decl.
50920         (exchange): Remove forward decl; no longer needed.
50921         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
50922         Define with prototype.
50923         * lib/getopt1.c (const): Remove macro.
50924         (getopt_long, getopt_long_only, main): Define with prototype.
50925
50926         * lib/getugroups.c: Include <string.h> unconditionally.
50927
50928         * lib/getusershell.c: Include <stdlib.h> unconditionally.
50929         (getusershell, setusershell, endusershell, readname, main):
50930         Define with prototypes.
50931
50932         * lib/group-member.c: Include group-member.h first.
50933         Include <stdlib.h> unconditionally.
50934
50935         * lib/hard-locale.c: Include hard-locale.h first.
50936         Include <stdlib.h>, <string.h> unconditionally.
50937
50938         * lib/hash.c (free, malloc): Remove decls.
50939         Include <stdlib.h> unconditionally.
50940
50941         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
50942         (getenv): Do not declare.
50943
50944         * lib/idcache.c: Include <string.h> unconditionally.
50945
50946         * lib/long-options.c: Include long-options.h first, to test interface.
50947         Include <stdlib.h> unconditionally.
50948
50949         * lib/makepath.c: Include makepath.h first, to test interface.
50950         Include <stdlib.h> and <string.h> unconditionally.
50951
50952         * lib/linebuffer.c: Include <stdlib.h>.
50953         (free): Remove decl.
50954
50955         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
50956         stddef.h. rpl_malloc returns void *, not char *.
50957         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
50958         prototype.
50959
50960         * lib/md5.h: Include <limits.h> unconditionally.
50961         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
50962         (__P): Remove; all uses removed.
50963         * lib/md5.c: Include "md5.h" first.
50964         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
50965         md5_buffer, md5_process_bytes, md5_process_block):
50966         Define with prototypes.
50967         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
50968         * lib/sha.c: Include "sha.h" first.
50969         Include <stdlib.h>, <string.h> unconditionally.
50970
50971         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
50972         * lib/memcmp.c (__ptr_t): Likewise.
50973         * lib/memrchr.c (__ptr_t): Likewise.
50974         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
50975         Include <string.h> unconditionally.
50976         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
50977         * lib/memchr.c: Include <stdlib.h> unconditionally.
50978         * lib/memchr.c (LONG_MAX): Remove.
50979         * lib/memrchr.c (LONG_MAX): Likewise.
50980         * lib/memchr.c (__memchr): Define via a prototype.
50981         * lib/memrchr.c (__memrchr): Likewise.
50982         * lib/memcmp.c (__P): Remove, and remove all uses.
50983         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
50984         Remove forward decls; no longer needed.
50985         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
50986         Use types required by C89 in prototype.
50987
50988         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
50989         * lib/savedir.c: Likewise.
50990         * lib/mkdir.c (free): Remove decl.
50991         * lib/rmdir.c (rmdir): Define with a prototype.
50992         * lib/savedir.c: Include savedir.h first, to test interface.
50993
50994         * lib/mktime.c (STDC_HEADERS): Remove.
50995         Include <stdlib.h>, <string.h> unconditionally.
50996
50997         * lib/modechange.c: Include <stdlib.h> unconditionally.
50998         (malloc): Remove decl.
50999
51000         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
51001         (free): Remove decl.
51002
51003         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
51004         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
51005         (This type really should be intptr_t, but that's a C99ism.)
51006         (_obstack_memcpy): Remove: all uses changed to memcpy.
51007         Include <string.h> unconditionally.
51008         (struct obstack): Assume __STDC__ for types of members
51009         chunkfun, freefun, extra_arg.
51010         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
51011         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
51012         obstack_begin, obstack_specify_allocation,
51013         obstack_specify_allocation_with_arg, obstack_chunkfun,
51014         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
51015         Remove unprototyped decls and the macros that use them.
51016         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
51017         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
51018         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
51019         (defined __STDC__ && __STDC__)]:
51020         Remove nonprototyped code.
51021         Include <stdlib.h> unconditionally.
51022         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
51023         _obstack_allocated_p, _obstack_free, obstack_free,
51024         _obstack_memory_used, print_and_abort):
51025         Define using prototypes.
51026         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
51027         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
51028         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
51029         obstack_next_free, obstack_object_size, obstack_room) [0]:
51030         Remove unused, unprototyped code.
51031
51032         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
51033
51034         * lib/physmem.c (physmem_total, physmem_available, main): Define
51035         with prototypes.
51036
51037         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
51038         (main): Define with a prototype.
51039
51040         * lib/posixver.c (getenv): Remove decl.
51041
51042         * lib/putenv.c (malloc): Returns void *, not char *.
51043         Include <string.h> unconditionally.
51044         (strchr, memcpy, NULL): Do not define.
51045
51046         * lib/readtokens.c: Include readtokens.h first, to test interface.
51047         Include <stdlib.h>, <string.h> unconditionally.
51048         (init_tokenbuffer): Define with a prototype.
51049
51050         * lib/regex.c (PARAMS): Remove.  All uses removed.
51051         All uses of _RE_ARGS removed, too.
51052         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
51053         unconditionally.
51054         (bzero): Assume memset exists.
51055         (memcmp, memcpy, NULL): Remove.
51056         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
51057         char, or assignments to local vars of type signed char.
51058         (init_syntax_once, PREFIX(extract_number_and_incr),
51059         PREFIX(print_partial_compiled_pattern),
51060         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
51061         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
51062         PREFIX(regex_grow_registers), PREFIX(regex_compile),
51063         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
51064         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
51065         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
51066         wcs_compile_range, byte_compile_range, truncate_wchar,
51067         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
51068         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
51069         count_mbs_length, wcs_re_match_2_internal,
51070         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
51071         PREFIX(alt_match_null_string_p),
51072         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
51073         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
51074         regfree, PREFIX(extract_number)): Define with prototype.  Remove
51075         now-unnecessary declaration, if any.
51076         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
51077         regcomp, regexec):
51078         Remove now-unnecessary casts among pointer types.
51079         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
51080
51081         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
51082         (free): Remove decl.
51083
51084         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
51085
51086         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
51087         (free): Remove decl.
51088
51089         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
51090         * lib/xgetcwd.c: Likewise.
51091
51092         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
51093         (free): Remove decl.
51094
51095         * lib/strchrnul.c (strchrnul): Define with a prototype.
51096         Fix bug: c_in was not converted to char before searching.
51097
51098         The following changes are not K&R related:
51099
51100         * lib/group-member.h: Include <sys/types.h>, so that this file is
51101         self-contained.
51102         * lib/makepath.h: Likewise.
51103
51104         * lib/getusershell.c (readname, default_index, line_size, readname):
51105         Use size_t, not int, for sizes.
51106         (readname): If the size overflows, report an error instead of
51107         looping forever.
51108
51109 2003-09-09  Paul Eggert  <eggert@twinsun.com>
51110
51111         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
51112         libc.
51113
51114 2003-09-09  Paul Eggert  <eggert@twinsun.com>
51115
51116         * README: New section: portability guidelines.
51117
51118 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
51119
51120         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
51121         C89 spec.
51122
51123 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
51124
51125         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
51126
51127 2003-09-08  Paul Eggert  <eggert@twinsun.com>
51128
51129         Assume C89 or better; remove K&R cruft.
51130         A few of these changes were first proposed by Derek Robert Price
51131         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
51132
51133         * lib/addext.c: Include <string.h> unconditionally.
51134         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
51135         Don't declare getenv or malloc.
51136
51137         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
51138         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
51139         (NULL): Remove.
51140         (find_stack_direction, alloca): Use prototypes.
51141
51142         * lib/atexit.c (atexit): Define using a prototype.
51143
51144         * lib/basename.c, dirname.c, stripslash.c:
51145         Include <string.h> unconditionally.
51146
51147         * lib/bcopy.c: Include <stddef.h>.
51148         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
51149
51150         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
51151
51152         * lib/error.h (error, error_at_line, error_print_progname)
51153         [! (defined (__STDC__) && __STDC__)]: Remove decls.
51154         * lib/error.c: Include error.h first, to check interface.
51155         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
51156         (VA_START): Remove; all uses changeed to va_start.
51157         (exit, strerror): Remove decls.
51158         (error_print_progname): Prototype uncondionally.
51159         Don't include <errno.h>; no longer needed.
51160         (private_strerror): Remove.
51161         (error_tail): Always define.
51162         (error, error_at_line): Assume C89 or better; always use prototypes.
51163         * lib/fatal.c: Include "fatal.h" first, to test interface.
51164         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
51165         (VA_START): Remove; all uses changed to va_start.
51166         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
51167         this case.
51168         (exit): Remove decl.
51169         (fatal): Prototype unconditionally.  Assume va_start works.
51170         Abort at end, to pacify gcc.
51171
51172         * lib/euidaccess.c (main): Define with a prototype.
51173
51174         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
51175
51176         * lib/exitfail.c: Include <stdlib.h> unconditionally.
51177
51178         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
51179         prototypes.
51180         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
51181         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
51182         (getenv): Remove decl.
51183         (fnmatch): Define using a prototype.
51184         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
51185         (FCT): Define using a prototype.
51186
51187         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
51188
51189         * lib/gethostname.c: Include <stddef.h>.
51190         (gethostname): Define with prototype.  Length is size_t, not int.
51191
51192 2003-09-08  Paul Eggert  <eggert@twinsun.com>
51193
51194         Assume C89 or better; remove K&R cruft.
51195         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
51196         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
51197         string.h, getenv, malloc.
51198         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
51199         headers.
51200         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
51201         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
51202         do not check for strerror.
51203         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
51204         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
51205         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
51206         do not check for doprnt or vprintf.
51207         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
51208         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
51209
51210 2003-09-08  Paul Eggert  <eggert@twinsun.com>
51211
51212         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
51213         getversion.c should have been removed then, but was accidentally
51214         preserved.
51215
51216         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
51217         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
51218
51219 2003-09-08  Karl Berry  <karl@gnu.org>
51220
51221         * config/config.sub, config.guess, srclistvars.sh: update from savannah
51222                 config, forget about prep.
51223
51224         * config/depcomp, missing: update from automake.
51225
51226 2003-09-07  Paul Eggert  <eggert@twinsun.com>
51227
51228         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
51229         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
51230
51231 2003-09-07  Paul Eggert  <eggert@twinsun.com>
51232
51233         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
51234         copy_tm_result.  Bug reported by Simon Josefsson in
51235         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
51236
51237 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51238
51239         * m4/time_r.m4: New file.
51240         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
51241         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
51242         is. Check for timegm declaration.
51243         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
51244         Do not check for gmtime_r.
51245         Replace mktime if __mktime_internal does not exist and if mktime
51246         hasn't been replaced already.
51247
51248 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51249
51250         * lib/time_r.c, lib/time_r.h: New files.
51251
51252         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
51253         __localtime_r.
51254         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
51255         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
51256
51257         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
51258         __gmtime_r.
51259         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
51260         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
51261         Include <time_r.h>.
51262
51263         * lib/timegm.c: Switch to glibc implementation, with the following
51264         changes:
51265         [defined HAVE_CONFIG_H]: Include <config.h>.
51266         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
51267         (__mktime_internal) [!defined _LIBC]: New decl.
51268         (__gmtime_r) [!defined _LIBC]: New macro and function.
51269         (timegm): Use a prototype, since gnulib assumes C89.
51270         Do not bother declaring tmp to be const, as it's not really usefu.
51271         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
51272         (timegm): Declare only if HAVE_DECL_TIMEGM.
51273
51274 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51275
51276         * MODULES.html.sh (func_all_modules): Add time_r.
51277         * modules/time_r: New file.
51278         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
51279         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
51280
51281 2003-09-03  Paul Eggert  <eggert@twinsun.com>
51282
51283         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
51284         Bug reported by Lute Kamstra in
51285         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
51286
51287         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
51288         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
51289         course with correspondingly smaller numbers for tomorrow and
51290         yesterday.  From Tadayoshi Funaba.  Originally installed into
51291         sh-utils on 1999-08-07, but the patch got lost (I guess during the
51292         coreutils merge?).
51293
51294 2003-08-31  Simon Josefsson  <jas@extundo.com>
51295
51296         * modules/timegm: New file.
51297         * MODULES.html.sh (func_all_modules): Add timegm.
51298
51299 2003-08-31  Simon Josefsson  <jas@extundo.com>
51300
51301         * m4/timegm.m4: New file.
51302
51303 2003-08-31  Simon Josefsson  <jas@extundo.com>
51304
51305         * lib/timegm.h: New file.
51306         * lib/timegm.c: New file.  Based on
51307         wget-1.8.2/src/http.c:mktime_from_utc.
51308
51309 2003-08-31  Karl Berry  <karl@gnu.org>
51310
51311         * lib/argp.h: update from libc.
51312
51313 2003-08-28  Bruno Haible  <bruno@clisp.org>
51314
51315         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
51316         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
51317         followed by '#define fnmatch fnmatch_posix' gives an error.
51318
51319 2003-08-28  Bruno Haible  <bruno@clisp.org>
51320
51321         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
51322         warning on QNX, which defines O_BINARY to 000000.
51323
51324 2003-08-27  Jim Meyering  <jim@meyering.net>
51325
51326         * m4/mkstemp.m4: Require that the system mkstemp be able to create
51327         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
51328         would fail after 32.  Reported by Danny Levinson.  Details here:
51329         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
51330
51331 2003-08-24  Bruno Haible  <bruno@clisp.org>
51332
51333         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
51334         MSVC7 <stdio.h> is included later.
51335
51336 2003-08-22  Simon Josefsson  <jas@extundo.com>
51337
51338         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
51339
51340 2003-08-20  Karl Berry  <karl@gnu.org>
51341
51342         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
51343
51344 2003-08-20  Bruno Haible  <bruno@clisp.org>
51345
51346         * modules/progname: New file.
51347         * MODULES.html.sh (func_all_modules): Add progname.
51348
51349 2003-08-20  Bruno Haible  <bruno@clisp.org>
51350
51351         * lib/progname.h: New file, from GNU gettext.
51352         * lib/progname.c: New file, from GNU gettext.
51353         * lib/progreloc.c: New file, from GNU gettext.
51354
51355 2003-08-19  Jim Meyering  <jim@meyering.net>
51356
51357         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
51358         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
51359
51360 2003-08-19  Bruno Haible  <bruno@clisp.org>
51361
51362         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
51363         more.
51364
51365 2003-08-19  Bruno Haible  <bruno@clisp.org>
51366
51367         * lib/xstrdup.c: Assume <string.h> exists.
51368
51369 2003-08-18  Paul Eggert  <eggert@twinsun.com>
51370
51371         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
51372         in makefile rules.
51373
51374 2003-08-18  Jim Meyering  <jim@meyering.net>
51375
51376         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
51377         * m4/lib-ld.m4: Likewise.
51378
51379 2003-08-18  Jim Meyering  <jim@meyering.net>
51380
51381         * lib/setenv.h: Indent nested cpp directive.
51382         * lib/vasnprintf.c: Remove trailing blanks.
51383
51384 2003-08-17  Simon Josefsson  <jas@extundo.com>
51385
51386         * modules/xstrndup: New file.
51387         * MODULES.html.sh (func_all_modules): Add xstrndup.
51388
51389 2003-08-17  Simon Josefsson  <jas@extundo.com>
51390
51391         * modules/argp: Fix autoconf macro name. Add more dependencies.
51392
51393 2003-08-17  Simon Josefsson  <jas@extundo.com>
51394
51395         * m4/xstrndup.m4: New file.
51396
51397 2003-08-17  Simon Josefsson  <jas@extundo.com>
51398
51399         * m4/argp.m4: New file.
51400
51401 2003-08-17  Simon Josefsson  <jas@extundo.com>
51402             Bruno Haible  <bruno@clisp.org>
51403
51404         * lib/xstrndup.h: New file.
51405         * lib/xstrndup.c: New file.
51406
51407 2003-08-17  Bruno Haible  <bruno@clisp.org>
51408
51409         * modules/strndup (Files, Include): Add lib/strndup.h.
51410
51411 2003-08-17  Bruno Haible  <bruno@clisp.org>
51412
51413         * modules/euidaccess (Files): Add lib/euidaccess.h.
51414
51415 2003-08-17  Bruno Haible  <bruno@clisp.org>
51416
51417         * lib/strndup.h: New file.
51418
51419 2003-08-17  Bruno Haible  <bruno@clisp.org>
51420
51421         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
51422         like AC_GNU_SOURCE.
51423         * modules/extensions (configure.ac): Comment out the invocation of
51424         gl_USE_SYSTEM_EXTENSIONS.
51425
51426 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51427
51428         Merges from coreutils, etc.
51429         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
51430         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
51431         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
51432         fixing a typo.
51433         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
51434         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
51435
51436 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51437
51438         Document merge from coreutils.
51439         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
51440         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
51441         * modules/utime: Add m4/utimes-null.m4.
51442
51443 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51444
51445         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
51446         space, undoing this 2003-08-12 change:
51447         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51448
51449 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51450
51451         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
51452         strtoul.c from libc, undoing this 2003-08-12 change:
51453         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51454
51455 2003-08-16  Jim Meyering  <jim@meyering.net>
51456
51457         Merges from coreutils.
51458         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
51459         prefix.  Adjust cache variables similarly.  Create 500 rather than
51460         just 300 files, to exercise bug on Darwin6.5, too.
51461         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
51462         $missing_dir.
51463         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
51464         AM_SYS_POSIX_TERMIOS.
51465         Reported by mkc@mathdogs.com.
51466         Also change use of $am_cv_sys_posix_termios
51467         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
51468         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
51469         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
51470         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
51471         in /proc/mounts until it finds one with matching device number.  This
51472         is unnecessary when the FILE argument *is* a mount point.  No stat call
51473         is necessary in that case.  So, disable the statvfs-testing code on
51474         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
51475         as RedHat bug# 84846.
51476         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51477         to 1MB, so as not to render systems with no stack size limit (e.g.,
51478         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51479         Include <unistd.h>.  On some systems,
51480         it is required for the definition of _SC_PAGESIZE.
51481
51482 2003-08-16  Jim Meyering  <jim@meyering.net>
51483
51484         Merge from coreutils.
51485         * lib/xstrtoimax.c: #else #if -> #elif.
51486         * lib/xstrtoumax.c: Likewise.
51487
51488 2003-08-16  Jim Meyering  <jim@meyering.net>
51489
51490         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
51491         * m4/utimes.m4: Removed.
51492         * m4/utimes-null.m4: Renamed from utimes.m4.
51493
51494         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51495         to 1MB, so as not to render systems with no stack size limit (e.g.,
51496         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51497         Include <unistd.h>.  On some systems,
51498         it is required for the definition of _SC_PAGESIZE.
51499
51500 2003-08-16  Jim Meyering  <jim@meyering.net>
51501         and Paul Eggert  <eggert@cs.ucla.edu>
51502
51503         Merges from coreutils, etc.
51504
51505         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
51506         using the latest version from cvs.  This avoids problems with #line
51507         directives using a vendor (Sun) compiler.
51508         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
51509         Don't set GETGROUPS_LIB here; now it's
51510         done via getgroups.m4's wrapper function.
51511         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
51512         rather than just in sh-util/configure.in, so that the
51513         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
51514         same.
51515         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
51516         AC_FUNC_GETLOADAVG where to find getloadavg.c.
51517         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
51518         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
51519         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
51520         Remove code that is now done by the newly-required macros.
51521         Append $(EXEEXT) to DF_PROG.
51522         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
51523         Do not invoke or require the following here,
51524         since prereq.m4 or some gnulib .m4 now does this for us:
51525         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
51526         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
51527         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
51528         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
51529         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
51530         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
51531         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
51532         AC_FUNC_OBSTACK.
51533         Do not replace the following functions, as this is now the job
51534         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
51535         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
51536         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
51537         atexit getpass, strdup, getpagesize.
51538         Replace 'raise'.
51539         Do not check for the following functions, as this is now the job
51540         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
51541         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
51542         setregid.
51543         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
51544         Check for sys/sysctl.h.
51545         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
51546         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
51547         of checking for ssize_t ourselves.
51548
51549         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
51550         Require every macro that gnulib/modules/* suggests for us.
51551         (jm_PREREQ_ADDEXT): New macro.
51552         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
51553         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
51554
51555         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
51556         (gl_PHYSMEM): Use it.
51557         Also check for `table' function.
51558         Check for new headers and functions.
51559         Add check for sys/sysmp.h.
51560         With suggestions from Kaveh Ghazi.
51561         Ignore headers that are present but cannot be compiled.  This
51562         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
51563         C 5.4.
51564
51565 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51566
51567         Document merge from coreutils.
51568         * modules/userspec: Depend on posixver.
51569         * modules/strftime: Depend on tzset.
51570
51571 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51572
51573         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
51574         rather than tab, after '#' in shell-script copyright notices.
51575         Suggested by Bruno Haible.
51576
51577 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51578
51579         * config/srclist-update: Use three spaces, rather than tab, after '#'
51580         in shell-script copyright notices.  Suggested by Bruno Haible.
51581         Remove unnecessary parenthesization in regular expression.
51582
51583 2003-08-15  Jim Meyering  <jim@meyering.net>
51584
51585         Merge from coreutils.
51586         * lib/xgethostname.c: Include <stdlib.h>.
51587         (xghostname): Don't exit for anything other than memory-related
51588         failure; just return NULL.
51589         * lib/userspec.c: Include "posixver.h".
51590         (parse_user_spec): Accept `.' as a separator only
51591         in pre-POSIX-200112 mode.
51592         * lib/strtoimax.c: Use #elif rather than #else #if.
51593         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
51594         Remove function, now that we can rely on a working tzset function.
51595         [!_LIBC]: Ensure that the required autoconf test has been run.
51596         [!defined _NL_CURRENT && HAVE_STRFTIME]:
51597         Use underlying_strftime for %r.
51598         * lib/sha.c: Merge in some clean-up and optimization changes from
51599         glibc.
51600         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
51601         Ensure that it is a multiple of 64.
51602         Rearrange loop exit tests so as to avoid performing an
51603         additional fread after encountering an error or EOF.
51604         * lib/realloc.c: Update copyright date.
51605
51606 2003-08-15  Jim Meyering  <jim@meyering.net>
51607         and Paul Eggert  <eggert@twinsun.com>
51608
51609         Merge from coreutils.
51610         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
51611         member but strut utmpx does not.  Needed for AIX 4.3.3.
51612         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
51613
51614 2003-08-15  Jim Meyering  <jim@meyering.net>
51615         and Paul Eggert  <eggert@cs.ucla.edu>
51616
51617         Merges from coreutils, etc.
51618         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
51619         Require gl_FUNC_TZSET_CLOBBER.
51620         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
51621         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
51622         members.
51623
51624 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51625
51626         Help the merge from coreutils.
51627         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
51628         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
51629         * m4/tzset.m4: Use it too.
51630
51631 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51632
51633         * modules/tzset: New file.
51634
51635 2003-08-14  Jim Meyering  <jim@meyering.net>
51636
51637         Merges from coreutils.
51638         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
51639         variable names, rather than @FNMATCH_H@.
51640         * modules/alloca: Likewise for $(ALLOCA_H).
51641
51642         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
51643         the three copies of the literal target, `fnmatch.h'.
51644         * modules/alloca (alloca.h): Likewise.
51645
51646 2003-08-14  Jim Meyering  <jim@meyering.net>
51647
51648         Merge from coreutils.
51649         * m4/tzset.m4: New file.
51650         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
51651         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
51652         otherwise, AIX 5.1 systems would end up using the latter.
51653         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
51654         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
51655         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
51656         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
51657
51658 2003-08-14  Jim Meyering  <jim@meyering.net>
51659
51660         Merge from coreutils.
51661         * lib/obstack.h: Whitespace changes.
51662         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
51663         and xcalloc return values.
51664         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
51665         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
51666         hang on OSF/1 5.1 for DIR on both local and remote file systems.
51667         Reported by (and fix confirmed by) Nelson H. F. Beebe.
51668         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51669         error from mntctl.
51670         Use mntctl's return value to drive the entry-processing loop, since
51671         we can't rely on the value of the vmt_length member in the last
51672         entry.  On some systems doing so could result in exhausting
51673         virtual memory.  Based in part on a patch from Mike Jetzer.
51674
51675 2003-08-14  Jim Meyering  <jim@meyering.net>
51676         and Paul Eggert  <eggert@twinsun.com>
51677
51678         Merges from coreutils, plus other fixes.
51679         * lib/physmem.c: Merge in portability changes from gcc/libiberty
51680         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
51681         for credits and details.  Thanks to Kaveh Ghazi for helping
51682         to keep these files in sync.
51683         (ARRAY_SIZE): Define it.
51684         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
51685         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
51686         (memcasecmp): Don't assume size_t fits in unsigned int.
51687         Remove casts and duplicate code.
51688         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
51689         (memcpy): Remove definition.
51690         Merge in some clean-up and optimization changes from glibc.
51691         [BLOCKSIZE]: Move definition to top of file.
51692         Ensure that it is a multiple of 64.
51693         Rearrange loop exit tests so as to avoid performing an
51694         additional fread after encountering an error or EOF.
51695         * lib/md5.h (md5_uintptr): Define.
51696         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
51697         return to the initial working directory.  Preserve errno
51698         for caller.
51699         * lib/idcache.c: Include "xalloc.h".
51700         (xmalloc, xrealloc): Remove decls.
51701         (getuser): Remove casts no longer required in C89.
51702         * lib/human.c: Include stdio.h, for sprintf.
51703         * lib/group-member.c: Include "xalloc.h".
51704         (xmalloc, xrealloc): Remove decls.
51705         (get_group_info): Remove casts no longer required in C89.
51706         * lib/getusershell.c (readname): Remove casts no longer required in
51707         C89.
51708         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
51709         * lib/getline.c: Whitespace fix, from coreutils.
51710
51711 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51712
51713         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
51714         Check for isascii.
51715
51716         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51717         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51718         Undo previous (whitespace-only) change.
51719
51720 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51721
51722         * lib/exclude.c: Include <ctype.h>
51723         (IN_CTYPE_DOMAIN): New macro.
51724         (is_space): New fn.
51725         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
51726         and empty lines.
51727
51728         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51729         Undo previous (whitespace-only) change.
51730
51731 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51732
51733         * config/srclist-update: Change update back to the old behavior,
51734         leaving whitespace alone.  Use one 'sed' command rather than a
51735         pipeline.
51736         (fixlicense): Now a variable, not a function.
51737         (remove_trailing_blanks): Remove.
51738         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
51739         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51740         Undo previous (whitespace-only) change.
51741
51742 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51743
51744         Merge from coreutils.
51745         * modules/euidaccess: Add lib_SOURCES, include for new
51746         file euidaccess.h
51747
51748 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51749
51750         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51751         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51752         Normalize leading white space and remove trailing white space.
51753
51754         Merge from coreutils
51755         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
51756
51757         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
51758         0.12.1.  These files are now being upgraded automatically by
51759         ../config/srclist-update.
51760
51761 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51762
51763         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51764         Normalize leading white space and remove trailing white space.
51765         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
51766         notice, as per ../config/srclist-update.
51767
51768         Merge from coreutils.
51769         * lib/euidaccess.h: New file.
51770         * lib/euidaccess.c: Include it.
51771         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
51772         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
51773         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
51774
51775 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51776
51777         * config/srclist-update: Add copyright notice.
51778         (remove_id_lines, remove_trailing_blanks): New constants.
51779         (fixfile): Use them to normalize spacing a bit in copied files.
51780         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51781         Normalize leading white space and remove trailing white space.
51782
51783         * config/texinfo.tex: Sync with texinfo.
51784
51785         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
51786         strtoul.c from libc, to merge coreutils whitespace changes.
51787
51788         * config/srclist.txt: Get the following m4 files from gettext:
51789         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
51790         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
51791         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
51792         wint_t.m4.
51793
51794 2003-08-12  Karl Berry  <karl@gnu.org>
51795
51796         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
51797         been made.
51798
51799 2003-08-11  Paul Eggert  <eggert@twinsun.com>
51800
51801         * modules/gnu-source, m4/gnu-source.m4:
51802         Remove; we're assuming Autoconf 2.54 or later now.
51803         Suggested by Bruno Haible.
51804         * MODULES.html.sh (func_all_modules): Remove gnu-source.
51805
51806 2003-08-11  Bruno Haible  <bruno@clisp.org>
51807
51808         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
51809
51810 2003-08-11  Bruno Haible  <bruno@clisp.org>
51811
51812         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
51813         (vasnprintf): Use it instead of wcslen.
51814
51815 2003-08-11  Bruno Haible  <bruno@clisp.org>
51816
51817         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
51818         value to ensure that _Bool promotes to int. Use #define for _Bool when
51819         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
51820
51821 2003-08-10  Karl Berry  <karl@gnu.org>
51822
51823         * lib/regex.h: update from libc (whitespace fix).
51824
51825 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51826
51827         Merge some files from coreutils.  These changes were
51828         originally made by Jim Meyering.
51829         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
51830         many older Unixes require this.
51831         * lib/alloca.c (alloca): Remove cast to argument of free;
51832         no longer needed in C89.
51833         * lib/alloca_.h, regex.h: Fix white space to match
51834         what GNU indent does.
51835
51836 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51837
51838         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
51839         apparently Emacs's Unicode mode got confused before my 2003-08-05
51840         checkin.
51841
51842 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51843
51844         * m4/extensions.m4: New file.
51845         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
51846         Require gl_USE_SYSTEM_EXTENSIONS.
51847         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
51848         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
51849
51850 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51851
51852         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
51853         * modules/extensions, modules/gnu-source: New files.
51854         * modules/timespec, modules/unlocked-io: Depend on extensions.
51855
51856 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51857
51858         * modules/restrict: New file.
51859         * MODULES.html.sh (func_all_modules): Add restrict.
51860         * modules/regex: Depend on restrict.
51861
51862 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51863
51864         * m4/restrict.m4: New file.
51865         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
51866
51867 2003-08-07  Bruno Haible  <bruno@clisp.org>
51868
51869         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
51870         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
51871
51872 2003-08-07  Bruno Haible  <bruno@clisp.org>
51873
51874         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
51875         makes the module 'getndelim2' compatible with the module 'getline'.
51876
51877 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51878
51879         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
51880         byte with "\201" to avoid glitches when editing that source file
51881         with multi-gnome-terminal.
51882
51883 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51884
51885         * lib/bumpalloc.h: Remove.
51886
51887 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51888
51889         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
51890         * modules/bumpalloc: Remove.
51891
51892 2003-08-04  Paul Eggert  <eggert@twinsun.com>
51893
51894         * lib/getloadavg.c: Change copyright notice and spacing to conform to
51895         GNU coding style.
51896
51897         Merge from coreutils.
51898         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
51899         1. From glibc.
51900         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
51901         from Karl Berry, implemented by Jim Meyering.
51902         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
51903         from Dmitry V. Levin.
51904         Remove anachronistic cast of xrealloc.
51905         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
51906         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
51907         type. Otherwise, it wouldn't compile with at least /bin/cc on
51908         ymp-cray-unicos9.0.2.X.
51909         Combine two mostly-identical uses of alloca into one.
51910         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
51911
51912 2003-08-04  Dave Love  <d.love@dl.ac.uk>
51913
51914         [From Emacs.]
51915
51916         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
51917         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
51918         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
51919         obsolete NLIST_NAME_UNION.
51920         [__GNU__]: Undef BSD and FSCALE.
51921         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
51922
51923 2003-08-03  Paul Eggert  <eggert@twinsun.com>
51924
51925         * lib/stdbool_.h (_Bool): Make it signed char, instead of
51926         an enum type, so that it's guaranteed to promote to int.  See:
51927         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
51928
51929 2003-08-03  Karl Berry  <karl@gnu.org>
51930
51931         * config/depcomp: update from automake.
51932
51933 2003-07-31  Paul Eggert  <eggert@twinsun.com>
51934
51935         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
51936         (strerror): Don't assume that a printable int fits in 14 bytes.
51937
51938 2003-07-31  Bruno Haible  <bruno@clisp.org>
51939
51940         * modules/getpass-gnu: New file.
51941         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
51942
51943 2003-07-31  Bruno Haible  <bruno@clisp.org>
51944
51945         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
51946
51947 2003-07-24  Karl Berry  <karl@gnu.org>
51948
51949         * config/missing: update from automake.
51950
51951 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
51952             Bruno Haible  <bruno@clisp.org>
51953
51954         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
51955         * lib/getline.c (getline, getdelim): Likewise.
51956         Remove _GNU_SOURCE define; now it's defined in config.h through
51957         m4/getline.m4.
51958
51959 2003-07-23  Karl Berry  <karl@gnu.org>
51960
51961         * config/config.sub: update from prep.
51962
51963 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51964
51965         * modules/xalloc (Depends-on): Add exitfail.
51966         * modules/xmemcoll: Likewise.
51967
51968 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51969
51970         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
51971         over-parenthesization in macros.
51972
51973         Sync with coreutils.
51974
51975         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
51976         required by C99.
51977
51978         Use `exit_failure' for xalloc and xmemcoll instead of their own
51979         private exit-failure variables.
51980         * lib/xalloc.h (xalloc_exit_failure): Remove.
51981         * lib/xmalloc.c: Likewise.  Include exitfail.h.
51982         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
51983         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
51984         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
51985         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
51986
51987 2003-07-20  Jim Meyering  <jim@meyering.net>
51988
51989         * modules/closeout (Depends-on): Add exitfail.
51990         Suggestion from Bruno Haible.
51991
51992 2003-07-19  Karl Berry  <karl@gnu.org>
51993
51994         * config/config.sub: update from prep.
51995
51996 2003-07-18  Paul Eggert  <eggert@twinsun.com>
51997
51998         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
51999         Remove.
52000         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
52001         to test that it can stand by itself.  Include "exitfail.h".
52002         Clients should set exit_failure instead.
52003         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
52004
52005 2003-07-18  Bruno Haible  <bruno@clisp.org>
52006
52007         * modules/getndelim2: New file.
52008         * modules/getline: Share files with module getndelim2.
52009         * modules/getnline: Depend on getndelim2 instead of sharing files with
52010         it. Add getnline.c to lib_SOURCES.
52011         * MODULES.html.sh (func_all_modules): Add getndelim2.
52012
52013 2003-07-18  Bruno Haible  <bruno@clisp.org>
52014
52015         * m4/getndelim2.m4: New file.
52016         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
52017         invoke gl_PREREQ_GETNDELIM2.
52018         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
52019         gl_PREREQ_GETNDELIM2.
52020         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
52021         gl_GETNDELIM2.
52022
52023 2003-07-18  Bruno Haible  <bruno@clisp.org>
52024
52025         * lib/getndelim2.h: New file.
52026         * lib/getndelim2.c: Make into a module of its own. Include config.h,
52027         getndelim2.h.
52028         (getndelim2): Make non-static. Change return type to ssize_t.
52029         * lib/getline.h: Change argument names.
52030         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
52031         * lib/getnline.c: Include getndelim2.h.
52032
52033 2003-07-18  Andreas Schwab  <schwab@suse.de>
52034
52035         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
52036
52037 2003-07-17  Karl Berry  <karl@gnu.org>
52038
52039         * config/config.sub: update from prep.
52040
52041 2003-07-17  Bruno Haible  <bruno@clisp.org>
52042
52043         * modules/getnline: New file.
52044         * modules/getline: Add lib/getndelim2.c to source file list.
52045         * MODULES.html.sh (func_all_modules): Add getnline.
52046
52047 2003-07-17  Bruno Haible  <bruno@clisp.org>
52048
52049         * m4/getnline.m4: New file.
52050
52051 2003-07-17  Bruno Haible  <bruno@clisp.org>
52052
52053         * m4/Makefile.am.in: Remove file.
52054         * m4/Makefile.am: Remove file.
52055         * m4/Makefile.in: Remove file.
52056
52057 2003-07-17  Bruno Haible  <bruno@clisp.org>
52058
52059         * lib/getnline.h: New file.
52060         * lib/getnline.c: New file.
52061         * lib/getndelim2.c: New file, extracted from getline.c.
52062         (getndelim2): Renamed from getdelim2, with added nmax argument.
52063         * lib/getline.c: Include getndelim2.c.
52064         (getdelim2): Moved out to getndelim2.c.
52065         (getline, getdelim): Update.
52066
52067 2003-07-17  Bruno Haible  <bruno@clisp.org>
52068
52069         * lib/Makefile.am: Remove file.
52070         * lib/Makefile.in: Remove file.
52071
52072 2003-07-17  Bruno Haible  <bruno@clisp.org>
52073
52074         * configure.in: Remove file.
52075         * Makefile.in: Remove file.
52076
52077 2003-07-17  Bruno Haible  <bruno@clisp.org>
52078
52079         * MODULES.html.sh: Put the </BODY> right before </HTML>.
52080
52081 2003-07-16  Karl Berry  <karl@gnu.org>
52082
52083         * config/srclist-update: was running fixlicense twice, which caused
52084                 texinfo.tex to be nullified for some reason.  Simplify,
52085                 $gplsrc is no longer needed as far as I can see?
52086
52087 2003-07-16  Jim Meyering  <jim@meyering.net>
52088
52089         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
52090
52091 2003-07-15  Paul Eggert  <eggert@twinsun.com>
52092
52093         * config/srclist.txt: Get the following files from gettext-runtime/intl
52094         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
52095         ref-del.sin.  From Bruno Haible.
52096         * config/srclist-update (fixfile): Change grep pattern again, since the
52097         previous fix didn't work (there was another trailing $).  Use
52098         '[$]' to escape the $s.
52099
52100 2003-07-15  Karl Berry  <karl@gnu.org>
52101
52102         * lib/vasnprintf.c: update from gettext.
52103
52104 2003-07-15  Karl Berry  <karl@gnu.org>
52105
52106         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
52107         gets expanded when surrounded by '$'.
52108
52109 2003-07-15  Jim Meyering  <jim@meyering.net>
52110
52111         * modules/save-cwd: Don't depend on error.  From Derek Price.
52112
52113 2003-07-15  Jim Meyering  <jim@meyering.net>
52114
52115         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
52116
52117 2003-07-14  Simon Josefsson  <jas@extundo.com>
52118
52119         * modules/mempcpy: New file.
52120         * MODULES.html.sh (func_all_modules): Add mempcpy.
52121
52122 2003-07-14  Simon Josefsson  <jas@extundo.com>
52123
52124         * m4/mempcpy.m4: New file.
52125
52126 2003-07-14  Simon Josefsson  <jas@extundo.com>
52127
52128         * lib/mempcpy.h: New file.
52129         * lib/mempcpy.c: New file.
52130
52131 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52132
52133         * modules/getdate, modules/posixtm: Depend on mktime.
52134
52135 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52136
52137         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
52138         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
52139         unicodeio.c, unicodeio.h, unlocked-io.h:
52140         Switch from LGPL to GPL.
52141
52142 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52143
52144         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
52145         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
52146         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
52147         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
52148         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
52149         updated automatically by ../config/srclist-update.  This changes
52150         their license from LPGL to GPL.
52151
52152 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52153
52154         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
52155         assumed to refer to the root of the most recent stable gettext version.
52156         * config/srclistvars.sh: Add defaults for eggert.
52157         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
52158         Match "This program" as well as "The program".  This is needed
52159         for gettext.
52160
52161 2003-07-14  Jim Meyering  <jim@meyering.net>
52162
52163         Don't emit diagnostics.  Let callers do that.
52164         * lib/save-cwd.c: Don't include "error.h".
52165         (save_cwd): Don't call error.  Ensure that errno is valid
52166         when returning nonzero.
52167
52168         * lib/save-cwd.h (restore_cwd): Update prototype.
52169         * lib/save-cwd.c (restore_cwd): Remove two parameters.
52170         Simplify.  Don't call error upon failure.  Let callers do that.
52171         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
52172         when auditing is enabled.  But don't bother updating the #if.
52173
52174 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
52175
52176         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
52177         it breaks C++ compilation.
52178         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
52179
52180 2003-07-10  Simon Josefsson  <jas@extundo.com>
52181
52182         * modules/strchrnul (Makefile.am): Add strchrnul.h.
52183
52184 2003-07-10  Jim Meyering  <jim@meyering.net>
52185
52186         * m4/clock_time.m4: Remove trailing blank.
52187         * m4/intmax_t.m4: Likewise.
52188
52189 2003-07-10  Jim Meyering  <jim@meyering.net>
52190
52191         * lib/vasnprintf.c: Remove trailing blanks.
52192         Make cpp indentation consistent.
52193
52194 2003-07-09  Paul Eggert  <eggert@twinsun.com>
52195
52196         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
52197         posixver.c, strftime.c, strnlen.c, strverscmp.c:
52198         Switch from LGPL to GPL.
52199
52200 2003-07-09  Paul Eggert  <eggert@twinsun.com>
52201
52202         * config/srclist.txt: Sort sublists.  Add
52203         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
52204         that differ from gnulib for one reason or another; we'd like this list
52205         to be smaller but for now let's document what we have.
52206
52207 2003-07-08  Paul Eggert  <eggert@twinsun.com>
52208
52209         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
52210         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
52211         and sweeter "eval x=$x".
52212         * config/srclist.txt: Get lib/argp* from glibc.
52213
52214 2003-07-07  Paul Eggert  <eggert@twinsun.com>
52215
52216         * lib/mktime.c: Fix some boundary cases and remove need for floating
52217         point.
52218
52219         Issue a compile-time diagnostic if time_t is floating point, or if
52220         two's complement arithmetic is not in effect, or if arithmetic
52221         right shift does not propagate the sign.  These assumptions were
52222         all in the original code but they weren't checked.
52223
52224         (TIME_T_MIDPOINT, verify): New macros.
52225         (__isleap): Remove; it has integer overflow problems.
52226         (leapyear): New function, without those problems.
52227         (ydhms_tm_diff): Remove; splitting into two parts.
52228         (ydhms_diff): New function, containing the arithmetic part of
52229         the old ydhms_tm_diff function.  Issue a compile-time
52230         diagnostic if we are not using C99 integer division.
52231         Avoid casts when possible.
52232         (guess_time_tm): New function, containing the checking part of
52233         the old ydhms_tm_diff function.  Return the new value, rather than
52234         the difference between it and the old.  Accept a new argument T
52235         so that *T specifies the old value.  Check for overflow in the result.
52236
52237         (__mktime_internal): Use a time_t offset, not a long int offset.
52238         This undoes the 2003-06-04 change, which is no longer needed now
52239         that we have better overflow checking.
52240         (localtime_offset): Likewise.
52241
52242         (__mktime_internal): Avoid harmful overflow on hosts where time_t
52243         and long are 64-bit but int is only 32-bit.
52244         (ydhms_diff): Use long int to store year1 and yday1.
52245         Issue a compile-time diagnostic if long int is not wide enough.
52246
52247         (__mktime_internal): Use long int to store adjusted year and yday.
52248         Use plain C rather than preprocessor commands, if that doesn't
52249         affect efficiency.
52250         Check for overflow (and try to repair) after each probe
52251         rather than checking only at the very end.  This avoids some bugs
52252         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
52253         does not equal GMT offset at maximum time).
52254         Use integer to check for overflow rather than floating point; this
52255         is more portable to non-IEEE hosts, and is a tad faster.
52256         When we detect that we are oscillating between two values,
52257         don't check whether tm_isdst has the requested value, since
52258         we already know the answer.  When tm_isdst has the wrong value,
52259         use a different heuristic to find the right one, based on the
52260         extreme values actually observed in practice in tz2003a,
52261         rather than the (overly optimistic) "previous 3 calendar quarters".
52262
52263         (not_equal_tm, print_tm, check_result): Use "const T" rather than
52264         "T const" to accommodate glibc style.
52265         (check_result): Use less-confusing report format.  "long" -> "long int.
52266         (main): Likewise.
52267         Don't loop if the iteration overflows time_t.
52268         Allow a negative step in the iteration.
52269
52270 2003-07-06  Karl Berry  <karl@gnu.org>
52271
52272         * config/depcomp: update from automake.
52273         * config/config.sub: update from prep.
52274
52275 2003-07-03  Karl Berry  <karl@gnu.org>
52276
52277         * config/config.guess: update from prep.
52278
52279 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52280
52281         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
52282         xreadlink.c now includes it unconditionally.
52283
52284 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52285
52286         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
52287         having it depend on HAVE_SYS_TYPES_H.
52288
52289 2003-07-01  Bruno Haible  <bruno@clisp.org>
52290
52291         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
52292         <sys/types.h> should be sufficient.
52293         Reported by Paul Eggert.
52294
52295 2003-06-26  Karl Berry  <karl@gnu.org>
52296
52297         * config/depcomp: update from automake.
52298
52299 2003-06-26  Bruno Haible  <bruno@clisp.org>
52300
52301         * modules/human: Depend on module stdbool.
52302
52303 2003-06-25  Bruno Haible  <bruno@clisp.org>
52304
52305         * modules/readlink: New file.
52306         * modules/xreadlink: Depend on it.
52307         * MODULES.html.sh (func_all_modules): Add readlink.
52308
52309 2003-06-25  Bruno Haible  <bruno@clisp.org>
52310
52311         * m4/readlink.m4: New file.
52312
52313 2003-06-25  Bruno Haible  <bruno@clisp.org>
52314
52315         * lib/readlink.c: New file.
52316
52317 2003-06-22  Karl Berry  <karl@gnu.org>
52318
52319         * config/srclist.txt: update mkinstalldirs from automake.
52320         * config/mkinstalldirs: update.
52321
52322 2003-06-22  Bruno Haible  <bruno@clisp.org>
52323
52324         Portability to mingw32.
52325         * m4/ssize_t.m4: New file, from GNU gettext.
52326         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
52327         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
52328
52329 2003-06-22  Bruno Haible  <bruno@clisp.org>
52330
52331         * modules/safe-read: Add m4/ssize_t.m4.
52332         * modules/xreadlink: Add m4/ssize_t.m4.
52333
52334 2003-06-20  Bruno Haible  <bruno@clisp.org>
52335
52336         Assume C89, so PARAMS isn't needed.
52337         * lib/unicodeio.h (PARAMS): Remove.
52338         * lib/unicodeio.c: Don't use PARAMS.
52339
52340 2003-06-18  Karl Berry  <karl@gnu.org>
52341
52342         * config/config.{guess,sub}: update from prep.
52343
52344 2003-06-18  Jim Meyering  <jim@meyering.net>
52345
52346         Merge changes from coreutils.
52347         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
52348         Remove explicit declarations of xmalloc and realloc.
52349         Include xalloc.h.
52350         (read_utmp): Remove anachronistic cast of xmalloc.
52351
52352 2003-06-17  Paul Eggert  <eggert@twinsun.com>
52353
52354         Assume C89, so PARAMS isn't needed.
52355         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
52356         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
52357         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
52358         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
52359         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
52360         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
52361         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
52362         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
52363         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
52364         lib/xstrtod.h, lib/xstrtol.h: Likewise.
52365         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
52366         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
52367         no longer needed. Anyway, config.h should always be included before any
52368         other file.
52369
52370 2003-06-11  Simon Josefsson  <jas@extundo.com>
52371
52372         * modules/sysexits: New file.
52373         * MODULES.html.sh (func_all_modules): Add sysexits.
52374
52375 2003-06-11  Simon Josefsson  <jas@extundo.com>
52376
52377         * lib/sysexit_.h: New file.
52378
52379 2003-06-11  Derek Price  <derek@ximbiot.com>
52380
52381         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
52382         necessary.
52383
52384 2003-06-11  Bruno Haible  <bruno@clisp.org>
52385
52386         * m4/sysexits.m4: New file.
52387
52388 2003-06-10  Simon Josefsson  <jas@extundo.com>
52389
52390         * lib/argp.h: New file, from glibc.
52391         * lib/argp-ba.c: New file, from glibc.
52392         * lib/argp-eexst.c: New file, from glibc.
52393         * lib/argp-fmtstream.c: New file, from glibc.
52394         * lib/argp-fmtstream.h: New file, from glibc.
52395         * lib/argp-fs-xinl.c: New file, from glibc.
52396         * lib/argp-help.c: New file, from glibc.
52397         * lib/argp-namefrob.h: New file, from glibc.
52398         * lib/argp-parse.c: New file, from glibc.
52399         * lib/argp-pv.c: New file, from glibc.
52400         * lib/argp-pvh.c: New file, from glibc.
52401         * lib/argp-xinl.c: New file, from glibc.
52402
52403 2003-06-10  Simon Josefsson  <jas@extundo.com>
52404
52405         * modules/strchrnul: New file.
52406
52407 2003-06-10  Simon Josefsson  <jas@extundo.com>
52408
52409         * modules/argp: New file.
52410
52411 2003-06-10  Simon Josefsson  <jas@extundo.com>
52412
52413         * m4/strchrnul.m4: New file.
52414
52415 2003-06-10  Simon Josefsson  <jas@extundo.com>
52416
52417         * lib/strchrnul.h: New file.
52418         * lib/strchrnul.c: New file.
52419
52420 2003-06-10  Bruno Haible  <bruno@clisp.org>
52421
52422         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
52423
52424 2003-06-07  Karl Berry  <karl@gnu.org>
52425
52426         * config/config.{guess,sub}: update from prep.
52427
52428 2003-06-07  Jim Meyering  <jim@meyering.net>
52429
52430         * modules/strtod: Use $(...) notation, not @...@ for
52431         AC_REPLACE'd variables.
52432         * modules/localcharset: Likewise.
52433
52434 2003-06-07  Jim Meyering  <jim@meyering.net>
52435
52436         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
52437         in place of my name in the copyright comment.
52438         Remove definition and uses of __P.
52439
52440         From coreutils.
52441         * lib/stat.c: Don't declare xmalloc explicitly.
52442         Instead, include "xalloc.h".
52443         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
52444         xrealloc, and xcalloc return values.
52445         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
52446         Improve comment.
52447         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
52448
52449 2003-06-07  Bruno Haible  <bruno@clisp.org>
52450
52451         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
52452         avoid AC_CONFIG_LINKS.
52453         * modules/fnmatch (Makefile.am): Use explicit creation rule for
52454         fnmatch.h, to avoid AC_CONFIG_LINKS.
52455         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
52456
52457 2003-06-07  Bruno Haible  <bruno@clisp.org>
52458
52459         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
52460         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
52461         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52462         directory.
52463         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
52464         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52465         directory.
52466
52467 2003-06-06  Jim Meyering  <jim@meyering.net>
52468
52469         Merge from coreutils.
52470         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
52471         Consolidate declarations and initializations of *_base* locals.
52472
52473         Merge from coreutils.
52474         This avoids a core dump on systems without GNU putenv,
52475         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
52476         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
52477         (unsetenv): New static function, from GNU libc.
52478         (rpl_putenv): Use it.
52479
52480         * lib/modechange.c: Remove trailing blanks.
52481
52482         Merge from coreutils.
52483         * lib/fsusage.c: Remove declaration of statfs.
52484         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
52485
52486         * lib/posixtm.c: Include <stdbool.h> unconditionally.
52487
52488 2003-06-06  Jim Meyering  <jim@meyering.net>
52489
52490         * lib/stdbool_.h: Renamed from stdbool.h.in.
52491
52492 2003-06-06  Jim Meyering  <jim@meyering.net>
52493             Bruno Haible  <bruno@clisp.org>
52494
52495         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
52496         Adjust Makefile.am snippet not to redirect directly to target.
52497         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
52498
52499 2003-06-05  Paul Eggert  <eggert@twinsun.com>
52500
52501         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
52502         mismatch, look in future quarters as well as past.  This fixes a
52503         bug when processing fall-backwards gaps immediately after a long
52504         period of daylight-saving time.
52505
52506         * lib/mktime.c: Assume freestanding C89 or better.
52507         (HAVE_LIMITS_H): Remove.  Assume it's 1.
52508         (__P): Remove; not used.
52509         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
52510         (mktime, not_equal_tm, print_tm, check_result,
52511         main): Use prototypes.  Use const * where appropriate.
52512         (main): Fix typo in testing code that uncovered by above changes.
52513         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
52514
52515 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52516
52517         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
52518         locale.h, localeconv.  This merges changes from coreutils.
52519
52520         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
52521         It can be removed after the next Autoconf is released.
52522         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
52523         needed.
52524
52525 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52526
52527         * lib/mktime.c: Fix Debian bug 177940
52528         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
52529         (localtime_offset): Now long int, not time_t, because we want it
52530         to be guaranteed to be signed.  All uses changed.
52531         (__mktime_internal): If overflow would occur when adding offset,
52532         don't add it.
52533
52534         Merge 'human' changes from coreutils.  Rewrite to support
52535         locale-specific notations like thousands separators.
52536         * lib/human.c: Simplify authorship notice.
52537         Include human.h immediately after config.h.
52538         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
52539         <limits.h>: Do not include, since human.h does.
52540         (SIZE_MAX, UINTMAX_MAX): New macros.
52541         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
52542         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
52543         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
52544         (power_letter): Renamed from suffixes.
52545         (generate_suffix_backwards): Remove.
52546         (adjust_value): Now takes int style (because of human.h changes)
52547         and long double value (for greater precision on some platforms).
52548         (group_number): New function.
52549         (human_readable): Use it.  Use integer options, not enum.
52550         Put the options before the sizes in the arg list.
52551         Support all the new options.
52552         The old human_readable function has been removed;
52553         use inttostr.h instead.
52554         (human_readable, default_block_size, humblock):
52555         Use uintmax_t, not int, for block sizes.
52556         (human_readable_inexact, block_size_types): Remove.
52557         (block_size_opts): New constant.
52558         (human_options): Renamed from human_block_size, with new signature
52559         that allows block sizes up to UINTMAX_MAX.  All callers changed.
52560         * lib/human.h: Add copyright and authorship notice.
52561         Include <limits.h> and <stdbool.h> unconditionally.
52562         (PARAMS): Remove.  All uses removed.
52563         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
52564         (enum human_inexact_style): Remove tag; now a nameless enum.
52565         (human_floor, human_ceiling, human_round_to_even): Now have
52566         values 2, 0, 1 rather than -1, 1, 0.
52567         (human_group_digits, human_suppress_point_zero, human_autoscale,
52568         human_base_1024, human_SI, human_B): New constants.
52569         (human_readable_inexact, human_block_size): Remove.
52570         (human_readable): Size args are now uintmax_t, not int.
52571         (human_options): New decl.
52572
52573         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
52574         unnecessary now that we assume C89 or better.  This change
52575         imported from coreutils.
52576
52577         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52578         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
52579         in the 2003-05-30 sync from glibc.
52580
52581         .h files should stand alone, but we shouldn't include <sys/types.h>
52582         if we can get away with just <stddef.h>.
52583
52584         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
52585         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
52586         rather than <sys/types.h>, as we merely need size_t.
52587         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
52588         to get size_t.
52589         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
52590         Include <stdio.h>, to get FILE.
52591         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
52592         memcasecmp.h has included <stddef.h> and all we need is size_t.
52593         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
52594         our interface, instead of including <sys/types.h>
52595
52596 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52597
52598         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
52599         now, as glibc mktime is buggy on non-glibc systems.
52600
52601 2003-06-03  Karl Berry  <karl@gnu.org>
52602
52603         * config/config.sub: update from prep.
52604
52605 2003-06-02  Paul Eggert  <eggert@twinsun.com>
52606
52607         [from coreutils]
52608         Fix some minor time-related bugs with POSIX time arguments.
52609         Some valid time stamps were being rejected (notably -1, and
52610         time stamps before 1900 on 64-bit hosts).  And some invalid
52611         time stamps were being accepted, e.g. September 31.
52612
52613         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
52614         that we can return (time_t) -1 successfully.
52615         * lib/posixtm.c: Likewise.
52616         [HAVE_STDBOOL_H]: Include <stdbool.h>.
52617         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
52618         (t): Remove static var.
52619         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
52620         of static var.  All uses changed.
52621         (year): Do not reject years before 1900; they can occur with
52622         64-bit time_t.
52623         (posix_time_parse): Do not check for out-of-range components;
52624         that is now the caller's responsibility, since our checks were
52625         only approximations.
52626         (posixtime): Use mktime to check for out-of-range components,
52627         since it knows them exactly.
52628         If mktime returns (time_t) -1, check whether an error actually occurred
52629         by invoking localtime on -1.
52630         (main) [TEST_POSIXTIME]: Check for input data errors, and report
52631         posixtime failures better.
52632         Improve the test data (in comments only).
52633
52634 2003-06-02  Karl Berry  <karl@gnu.org>
52635
52636         * config/mkinstalldirs (version): new variable.
52637         (--version): new option.
52638         (usage): improve message.
52639
52640 2003-05-30  Karl Berry  <karl@gnu.org>
52641
52642         * lib/mktime.c: update from libc.
52643
52644 2003-05-30  Bruno Haible  <bruno@clisp.org>
52645
52646         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
52647         * config/config.rpath: Upgrade to gettext-0.12.1.
52648
52649 2003-05-30  Bruno Haible  <bruno@clisp.org>
52650
52651         * m4/gettext.m4: Upgrade to gettext-0.12.1.
52652         * m4/nls.m4: New file, from gettext-0.12.1.
52653         * m4/po.m4: New file, from gettext-0.12.1.
52654         * m4/progtest.m4: Upgrade to gettext-0.12.1.
52655
52656 2003-05-30  Bruno Haible  <bruno@clisp.org>
52657
52658         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
52659         * lib/localcharset.h: Likewise.
52660         * lib/localcharset.c: Likewise.
52661
52662 2003-05-29  Karl Berry  <karl@gnu.org>
52663
52664         * config/config.rpath: update from gettext.
52665
52666 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52667
52668         Assume the headers required for C89 freestanding compilers.
52669         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
52670         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
52671         * m4/human.m4 (gl_HUMAN): Likewise.
52672         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
52673         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
52674         * m4/userspec.m4 (gl_USERSPEC): Likewise.
52675         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
52676         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
52677         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
52678
52679 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52680
52681         Assume the headers required for C89 freestanding compilers.
52682         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
52683         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
52684         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
52685         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
52686         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
52687         define, since <limits.h> is guaranteed to do that.
52688         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
52689         * lib/exclude.c: Include <stdbool.h> unconditionally.
52690         * lib/tempname.c: Include <stddef.h> unconditionally.
52691         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
52692         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
52693         <stddef.h> does that.
52694         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
52695         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
52696         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
52697         needed.
52698         * lib/xstrtol.c: Likewise.
52699         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
52700         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
52701
52702         * lib/addext.c (addext): Use assignment rather than cast, to avoid
52703         warnings on some platforms.
52704
52705         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52706         arbitrarily.
52707
52708 2003-05-26  Jim Meyering  <jim@meyering.net>
52709
52710         Merge in a change from coreutils:
52711         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
52712         that is guaranteed to be `no'.  Use `no_such_member' to indicate
52713         that condition, rather than `-1' which is slightly misleading.
52714         Change the name of the cache variable to have the gl_ prefix.
52715         Prompted by a patch from Richard Dawe for DJGPP.
52716
52717 2003-05-24  Karl Berry  <karl@gnu.org>
52718
52719         * config/config.guess: update from prep.
52720
52721 2003-05-22  Karl Berry  <karl@gnu.org>
52722
52723         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
52724
52725 2003-05-20  Karl Berry  <karl@gnu.org>
52726
52727         * config/config.guess: update from prep.
52728
52729 2003-05-18  Karl Berry  <karl@gnu.org>
52730
52731         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
52732         might actually be set by the user.
52733
52734         * config/depcomp, install-sh, mdate-sh: update from automake.
52735
52736 2003-05-17  Bruno Haible  <bruno@clisp.org>
52737
52738         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
52739         invalid expansion for AC_EGREP_CPP.
52740         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
52741         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
52742         Suggested by Akim Demaille <akim@epita.fr> in
52743         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
52744
52745 2003-05-12  Jim Meyering  <jim@meyering.net>
52746
52747         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
52748         the space-padded-by-default conversion specifiers, %e, %k, %l.
52749
52750 2003-05-12  Bruno Haible  <bruno@clisp.org>
52751
52752         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
52753         the string is longer than 4 KB.
52754
52755 2003-05-11  Karl Berry  <karl@gnu.org>
52756
52757         * config/config.{guess,sub}: update from prep.
52758
52759 2003-05-09  Bruno Haible  <bruno@clisp.org>
52760
52761         * modules/error: Add m4/strerror_r.m4 to file list.
52762
52763 2003-05-03  Bruno Haible  <bruno@clisp.org>
52764
52765         Upgrade to Unicode-4.0.
52766         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
52767         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
52768         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
52769         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
52770         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
52771         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
52772         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
52773         Change width of U+E0100..U+E01EF from 1 to 0.
52774
52775 2003-04-25  Jim Meyering  <jim@meyering.net>
52776
52777         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
52778         of type size_t, not int.
52779
52780 2003-04-25  Bruno Haible  <bruno@clisp.org>
52781
52782         * lib/copy-file.c: Include <stddef.h>, for size_t.
52783
52784 2003-04-21  Paul Eggert  <eggert@twinsun.com>
52785
52786         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
52787         code which expansion is under static control.  Patch imported from
52788         Akim Demaille's patch to Bison; see
52789         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
52790
52791 2003-04-14  Bruno Haible  <bruno@clisp.org>
52792
52793         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
52794
52795 2003-04-11  Jim Meyering  <jim@meyering.net>
52796
52797         Merge changes from Coreutils.
52798
52799         2003-03-22  Jim Meyering  <jim@meyering.net>
52800
52801         * lib/strftime.c (widen): Cast alloca return value to proper type.
52802
52803         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
52804
52805         From GNU libc.
52806         * lib/strftime.c (my_strftime): Handle very large width
52807         specifications for numeric values correctly.  Improve checks for
52808         overflow.
52809
52810         2003-01-19  Jim Meyering  <jim@meyering.net>
52811
52812         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
52813         definitions.
52814         (nl_get_alt_digit) [! defined my_strftime]: Define.
52815         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
52816         _nl_get_alt_digit and _nl_get_walt_digit.
52817
52818         * lib/strftime.c (my_strftime): Merge in locale-related changes from
52819         libc. These changes have no effect outside of _LIBC.
52820
52821 2003-04-10  Bruno Haible  <bruno@clisp.org>
52822
52823         * modules/findprog: New file.
52824         * MODULES.html.sh (func_all_modules): Add it.
52825
52826 2003-04-10  Bruno Haible  <bruno@clisp.org>
52827
52828         * m4/findprog.m4: New file.
52829         * m4/eaccess.m4: New file.
52830
52831 2003-04-10  Bruno Haible  <bruno@clisp.org>
52832
52833         * lib/findprog.h: New file, from GNU gettext.
52834         * lib/findprog.c: New file, from GNU gettext.
52835
52836 2003-04-05  Jim Meyering  <jim@meyering.net>
52837
52838         Merge changes from Coreutils.
52839
52840         * lib/exclude.h (PARAMS): Remove definition and uses.
52841         * lib/exclude.c: Remove uses of `PARAMS'.
52842
52843         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
52844         Add test-cases for DOS filenames. Declare program_name.
52845         (main): Set up program_name.  Patch by Rich Dawe.
52846
52847         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
52848         error from mntctl.
52849         Use mntctl's return value to drive the entry-processing loop, since
52850         we can't rely on the value of the vmt_length member in the last
52851         entry.  On some systems doing so could result in exhausting
52852         virtual memory.  Based in part on a patch from Mike Jetzer.
52853
52854 2003-04-04  Bruno Haible  <bruno@clisp.org>
52855
52856         * modules/linebreak: New file.
52857         * MODULES.html.sh (func_all_modules): Add it.
52858
52859 2003-04-04  Bruno Haible  <bruno@clisp.org>
52860
52861         * m4/linebreak.m4: New file.
52862
52863 2003-04-04  Bruno Haible  <bruno@clisp.org>
52864
52865         * lib/linebreak.h: New file, from GNU gettext.
52866         * lib/linebreak.c: New file, from GNU gettext with slight
52867         modifications.
52868         * lib/lbrkprop.h: New file, from GNU gettext.
52869
52870 2003-04-03  Bruno Haible  <bruno@clisp.org>
52871
52872         * modules/utf8-ucs4: New file.
52873         * modules/utf16-ucs4: New file.
52874         * modules/ucs4-utf8: New file.
52875         * modules/ucs4-utf16: New file.
52876         * MODULES.html.sh (func_all_modules): Add them.
52877
52878 2003-04-03  Bruno Haible  <bruno@clisp.org>
52879
52880         * m4/utf-ucs4.m4: New file.
52881         * m4/ucs4-utf.m4: New file.
52882
52883 2003-04-03  Bruno Haible  <bruno@clisp.org>
52884
52885         * lib/utf8-ucs4.h: New file, from GNU gettext.
52886         * lib/utf16-ucs4.h: New file, from GNU gettext.
52887         * lib/ucs4-utf8.h: New file, from GNU gettext.
52888         * lib/ucs4-utf16.h: New file, from GNU gettext.
52889
52890 2003-04-02  Bruno Haible  <bruno@clisp.org>
52891
52892         * modules/binary-io: New file.
52893         * MODULES.html.sh (func_all_modules): Add it.
52894
52895 2003-04-02  Bruno Haible  <bruno@clisp.org>
52896
52897         * lib/binary-io.h: New file, from GNU gettext.
52898
52899 2003-04-01  Bruno Haible  <bruno@clisp.org>
52900
52901         * modules/pathname: New file.
52902         * MODULES.html.sh (func_all_modules): Add it.
52903
52904 2003-04-01  Bruno Haible  <bruno@clisp.org>
52905
52906         * lib/pathname.h: New file, from GNU gettext.
52907         * lib/concatpath.c: New file, from GNU gettext.
52908
52909 2003-03-30  Bruno Haible  <bruno@clisp.org>
52910
52911         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
52912
52913 2003-03-30  Bruno Haible  <bruno@clisp.org>
52914
52915         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
52916         function chown() doesn't exist.
52917
52918 2003-03-28  Bruno Haible  <bruno@clisp.org>
52919
52920         * modules/copy-file: New file.
52921         * MODULES.html.sh (func_all_modules): Add it.
52922
52923 2003-03-28  Bruno Haible  <bruno@clisp.org>
52924
52925         * m4/copy-file.m4: New file.
52926
52927 2003-03-28  Bruno Haible  <bruno@clisp.org>
52928
52929         * lib/copy-file.h: New file, from GNU gettext.
52930         * lib/copy-file.c: New file, from GNU gettext.
52931
52932 2003-03-18  Jim Meyering  <jim@meyering.net>
52933
52934         * lib/quote.c (quote_n): Fix typo in comment.
52935
52936 2003-03-18  Bruno Haible  <bruno@clisp.org>
52937
52938         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
52939         checking.
52940         * m4/onceonly_2_57.m4: Likewise.
52941
52942 2003-03-17  Bruno Haible  <bruno@clisp.org>
52943
52944         * m4/onceonly.m4: Require autoconf 2.54 or newer.
52945         (m4_quote): Remove macro.
52946         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
52947
52948 2003-03-14  Jim Meyering  <jim@meyering.net>
52949
52950         Merge changes from Coreutils.
52951         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
52952         to be const, in order to avoid warnings.
52953         (obstack_room): Likewise.
52954         (obstack_empty_p): Likewise.
52955
52956 2003-03-14  Bruno Haible  <bruno@clisp.org>
52957
52958         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
52959         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
52960
52961 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52962
52963         Merge changes from Bison.
52964         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
52965         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
52966         when compiling Bison 1.875's `bitset bset = obstack_alloc
52967         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
52968         * lib/hash.c: Include <stdbool.h> unconditionally.
52969
52970 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52971
52972         * m4/onceonly.m4 (m4_quote): New macro.
52973         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
52974         Quote AC_FOREACH variable-expansions properly.
52975
52976 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52977
52978         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
52979
52980 2003-03-09  Paul Eggert  <eggert@twinsun.com>
52981
52982         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
52983         Reported by Bruce Becker; see:
52984         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
52985
52986 2003-03-03  Paul Eggert  <eggert@twinsun.com>
52987             Bruno Haible  <bruno@clisp.org>
52988
52989         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
52990         Reported by John Hughes, see
52991         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
52992
52993 2003-02-20  Bruno Haible  <bruno@clisp.org>
52994
52995         * MODULES.html.sh (func_all_modules): Add poll.
52996
52997 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52998
52999         * modules/poll: New file.
53000
53001 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
53002
53003         * lib/poll_.h: New file.
53004         * lib/poll.c: New file.
53005
53006 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
53007
53008         * m4/poll.m4: New file.
53009
53010 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
53011
53012         * modules/mathl: New file.
53013
53014 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
53015
53016         * lib/mathl.h: New file.
53017         * lib/acosl.c: New file.
53018         * lib/asinl.c: New file.
53019         * lib/atanl.c: New file.
53020         * lib/ceill.c: New file.
53021         * lib/cosl.c: New file.
53022         * lib/expl.c: New file.
53023         * lib/floorl.c: New file.
53024         * lib/frexpl.c: New file.
53025         * lib/ldexpl.c: New file.
53026         * lib/logl.c: New file.
53027         * lib/sincosl.c: New file.
53028         * lib/sinl.c: New file.
53029         * lib/sqrtl.c: New file.
53030         * lib/tanl.c: New file.
53031         * lib/trigl.c: New file.
53032         * lib/trigl.h: New file.
53033
53034 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
53035
53036         * m4/mathl.m4: New file.
53037
53038 2003-02-18  Bruno Haible  <bruno@clisp.org>
53039
53040         * MODULES.html.sh (func_all_modules): Add mathl.
53041
53042 2003-02-17  Bruno Haible  <bruno@clisp.org>
53043
53044         * modules/mkdtemp: New module.
53045         * MODULES.html.sh (func_all_modules): Add it.
53046
53047 2003-02-17  Bruno Haible  <bruno@clisp.org>
53048
53049         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
53050
53051 2003-02-17  Bruno Haible  <bruno@clisp.org>
53052
53053         * lib/mkdtemp.h: New file, from GNU gettext.
53054         * lib/mkdtemp.c: New file, from GNU gettext.
53055
53056 2003-02-02  Jim Meyering  <jim@meyering.net>
53057
53058         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
53059         e.g. glibc-2.2.93.
53060
53061 2003-01-31  Bruno Haible  <bruno@clisp.org>
53062
53063         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
53064         'rpl_rename'.
53065         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
53066         'rpl_strnlen'.
53067         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
53068         'rpl_strtod'.
53069         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
53070         'rpl_utime'.
53071
53072 2003-01-31  Bruno Haible  <bruno@clisp.org>
53073
53074         * lib/rename.c: #undef rename before defining rpl_rename.
53075         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
53076
53077 2003-01-30  Bruno Haible  <bruno@clisp.org>
53078
53079         * modules/vasnprintf, modules/vasprintf: New modules.
53080         * MODULES.html.sh (func_all_modules): Add them.
53081
53082 2003-01-30  Bruno Haible  <bruno@clisp.org>
53083
53084         * m4/signed.m4: New file, from GNU gettext.
53085         * m4/longdouble.m4: New file, from GNU gettext.
53086         * m4/wchar_t.m4: New file, from GNU gettext.
53087         * m4/wint_t.m4: New file, from GNU gettext.
53088         * m4/vasnprintf.m4: New file.
53089         * m4/vasprintf.m4: New file.
53090
53091 2003-01-30  Bruno Haible  <bruno@clisp.org>
53092
53093         * lib/printf-args.h: New file, from GNU gettext.
53094         * lib/printf-args.c: New file, from GNU gettext.
53095         * lib/printf-parse.h: New file, from GNU gettext.
53096         * lib/printf-parse.c: New file, from GNU gettext.
53097         * lib/vasnprintf.h: New file, from GNU gettext.
53098         * lib/vasnprintf.c: New file, from GNU gettext.
53099         * lib/asnprintf.c: New file, from GNU gettext.
53100         * lib/vasprintf.h: New file, from GNU gettext with modifications.
53101         * lib/vasprintf.c: New file, from GNU gettext.
53102         * lib/asprintf.c: New file, from GNU gettext.
53103
53104 2003-01-29  Bruno Haible  <bruno@clisp.org>
53105
53106         * modules/stpncpy: New module.
53107         * MODULES.html.sh (func_all_modules): Add it.
53108
53109 2003-01-29  Bruno Haible  <bruno@clisp.org>
53110
53111         * m4/stpncpy.m4: New file.
53112
53113 2003-01-29  Bruno Haible  <bruno@clisp.org>
53114
53115         * lib/stpncpy.h: New file, from GNU gettext with modifications.
53116         * lib/stpncpy.c: New file, from GNU gettext with modifications.
53117
53118 2003-01-28  Bruno Haible  <bruno@clisp.org>
53119
53120         * modules/c-ctype: New module.
53121         * MODULES.html.sh (func_all_modules): Add it.
53122
53123 2003-01-28  Bruno Haible  <bruno@clisp.org>
53124
53125         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
53126         Paul Eggert.
53127         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
53128         Paul Eggert.
53129
53130 2003-01-27  Bruno Haible  <bruno@clisp.org>
53131
53132         * modules/xsetenv: New module.
53133         * MODULES.html.sh (func_all_modules): Add it.
53134
53135 2003-01-27  Bruno Haible  <bruno@clisp.org>
53136
53137         * lib/xsetenv.h: New file, from GNU gettext.
53138         * lib/xsetenv.c: New file, from GNU gettext.
53139
53140 2003-01-23  Jim Meyering  <jim@meyering.net>
53141
53142         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
53143         from working on systems without dirfd (at least Irix and OSF1/Tru64).
53144
53145 2003-01-23  Bruno Haible  <bruno@clisp.org>
53146
53147         * modules/minmax: New module.
53148         * MODULES.html.sh (func_all_modules): Add it.
53149
53150 2003-01-23  Bruno Haible  <bruno@clisp.org>
53151
53152         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
53153         Eggert.
53154
53155 2003-01-22  Bruno Haible  <bruno@clisp.org>
53156
53157         * modules/exit: New module.
53158         * MODULES.html.sh (func_all_modules): Add it.
53159
53160 2003-01-22  Bruno Haible  <bruno@clisp.org>
53161
53162         * lib/exit.h: New file, from GNU gettext.
53163
53164 2003-01-19  Bruno Haible  <bruno@clisp.org>
53165
53166         * gnulib-tool: Recognize option --extract-maintainer.
53167         (func_get_maintainer): New function.
53168         * modules/*: Add Maintainer entry.
53169
53170 2003-01-16  Jim Meyering  <jim@meyering.net>
53171
53172         * m4/regex.m4: The `regex' struct is both input and output.
53173         Initialize it before each use.  Patch by Tim Waugh.
53174
53175 2003-01-16  Bruno Haible  <bruno@clisp.org>
53176
53177         * MODULES.html.sh: Add a table of contents. Add the module name as
53178         leftmost column. Add hyperlinks.
53179
53180 2003-01-15  Bruno Haible  <bruno@clisp.org>
53181
53182         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
53183
53184 2003-01-15  Bruno Haible  <bruno@clisp.org>
53185
53186         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
53187         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
53188         suffix.
53189
53190 2003-01-15  Bruno Haible  <bruno@clisp.org>
53191
53192         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
53193
53194 2003-01-15  Bruno Haible  <bruno@clisp.org>
53195
53196         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
53197         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
53198
53199 2003-01-14  Jim Meyering  <jim@meyering.net>
53200
53201         * lib/same.c (same_name): Tweak a comment.
53202
53203 2003-01-14  Bruno Haible  <bruno@clisp.org>
53204
53205         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
53206         when a string comparison is sufficient.
53207
53208 2003-01-14  Bruno Haible  <bruno@clisp.org>
53209
53210         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
53211         'unsigned int'.
53212
53213 2003-01-14  Bruno Haible  <bruno@clisp.org>
53214
53215         * lib/hash-pjw.c: Add comment about low quality of this function.
53216
53217 2003-01-13  Bruno Haible  <bruno@clisp.org>
53218
53219         * modules/stpcpy: Distribute lib/stpcpy.h.
53220         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
53221
53222 2003-01-13  Bruno Haible  <bruno@clisp.org>
53223
53224         * modules/*: Add a description.
53225         * modules/strpbrk: Fix Makefile.am snippet.
53226         * modules/strtoimax: Fix dependencies.
53227         * modules/strtoumax: Likewise.
53228
53229 2003-01-13  Bruno Haible  <bruno@clisp.org>
53230
53231         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
53232         * modules/alloca (Makefile.am): All object files depend on alloca.h.
53233         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
53234
53235 2003-01-13  Bruno Haible  <bruno@clisp.org>
53236
53237         * gnulib-tool (func_create_testdir): Store config/* files in the main
53238         directory.
53239         * config.rpath: Move to ...
53240         * config/config.rpath: ... here.
53241         * modules/gettext: Contains config/config.rpath, not config.rpath.
53242         * modules/iconv: Likewise.
53243
53244 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53245
53246         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53247         to avoid collisions with libcurses and libreadline.
53248
53249         * m4/getstr.m4: Remove.
53250         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
53251
53252 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53253
53254         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53255         to avoid collisions with libcurses and libreadline.
53256
53257         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
53258         * lib/getstr.h, getstr.c: Remove.
53259         * lib/getline.c: Include "getline.h", to check interface.
53260         Move body of old getstr.c here: this defines MIN_CHUNK and
53261         declares getdelim2, which is renamed from getstr.
53262         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
53263
53264         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
53265         All uses changed.
53266         * lib/linebuffer.h: Likewise.
53267         (readline): Remove backward-compatibility macro.
53268
53269 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53270
53271         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53272         to avoid collisions with libcurses and libreadline.
53273         * getstr: Remove.
53274         * MODULES.html.sh: Remove getstr.
53275         * modules/getline: Depend on unlocked-io, not getstr.
53276
53277 2003-01-12  Jim Meyering  <jim@meyering.net>
53278
53279         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
53280
53281 2003-01-10  Bruno Haible  <bruno@clisp.org>
53282
53283         * modules/alloca: Change Makefile.am requirements. Simplify Include
53284         requirements. Add lib/alloca_.h to file list.
53285
53286 2003-01-10  Bruno Haible  <bruno@clisp.org>
53287
53288         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
53289
53290 2003-01-10  Bruno Haible  <bruno@clisp.org>
53291
53292         * lib/alloca_.h: New file.
53293         * lib/getdate.y: Unconditionally include alloca.h.
53294         * lib/makepath.c: Likewise.
53295         * lib/setenv.c: Likewise.
53296         * lib/userspec.c: Likewise.
53297
53298 2003-01-09  Karl Berry  <karl@gnu.org>
53299
53300         * MODULES.html.sh: include `dirname $0` in PATH, to find
53301         gnulib-tool.
53302
53303 2003-01-09  Bruno Haible  <bruno@clisp.org>
53304
53305         * modules/stdbool: Change configure.ac, Makefile.am requirements.
53306         Simplify Include requirements. Add lib/stdbool.h.in to file list.
53307
53308 2003-01-09  Bruno Haible  <bruno@clisp.org>
53309
53310         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
53311
53312 2003-01-09  Bruno Haible  <bruno@clisp.org>
53313
53314         * lib/stdbool.h.in: New file.
53315
53316 2003-01-09  Bruno Haible  <bruno@clisp.org>
53317
53318         * gnulib-tool (func_all_modules): Ignore files ending in ~.
53319         * MODULES.html.sh: Likewise.
53320
53321 2003-01-08  Jim Meyering  <jim@meyering.net>
53322
53323         * lib/full-write.c: Undefine and define-away `const' after inclusion
53324         of errno.h, not before.  Suggestion from Bruno Haible.
53325
53326 2003-01-08  Bruno Haible  <bruno@clisp.org>
53327
53328         * modules/full-read: Depend on full-write.
53329
53330 2003-01-08  Bruno Haible  <bruno@clisp.org>
53331
53332         * lib/safe-read.c: Include specification header first, to ensure its
53333         selfcontainedness.
53334         * lib/full-write.c: Likewise.
53335
53336 2003-01-07  Jim Meyering  <jim@meyering.net>
53337
53338         * lib/full-write.c: Rework so that it may serve to define full_read,
53339         too.
53340         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
53341
53342 2003-01-07  Bruno Haible  <bruno@clisp.org>
53343
53344         * lib/strtoimax.c: Include <stdint.h> as an alternative to
53345         <inttypes.h>.
53346         * lib/xstrtol.h: Likewise.
53347         * lib/xstrtoimax.c: Likewise.
53348         * lib/xstrtoumax.c: Likewise.
53349         * lib/human.h: Likewise.
53350
53351         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
53352         on systems that have <inttypes.h> but not <stdint.h>.
53353
53354 2003-01-07  Bruno Haible  <bruno@clisp.org>
53355
53356         * MODULES.html.sh: Add copyright notice.
53357         (missed_files): Omit CVS directory entries.
53358         (func_module): Make it work with sed-3.02.
53359         * MODULES.txt: Remove file.
53360
53361 2003-01-06  Jim Meyering  <jim@meyering.net>
53362
53363         * lib/version-etc.c: Update year in translatable copyright string.
53364
53365 2003-01-03  Karl Berry  <karl@gnu.org>
53366
53367         * config/config.{guess,sub}: update from prep.
53368
53369 2003-01-02  Karl Berry  <karl@gnu.org>
53370
53371         * doc/COPYING.DOC: belatedly updated to 1.2.
53372
53373 2003-01-01  Karl Berry  <karl@gnu.org>
53374
53375         * gnulib-tool (func_verify_module): report module name $module in
53376         error message, not $1.
53377         * gnulib-tool (create-testdir): don't complain if destdir couldn't
53378         be created, only if it doesn't exist.
53379         * gnulib-tool (last_checkin_date): don't expand the $Date here.
53380
53381 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53382
53383         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
53384
53385 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53386
53387         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
53388         memcmp if strcoll doesn't work.
53389
53390 2002-12-31  Bruno Haible  <bruno@clisp.org>
53391
53392         * lib/utime.c (utime_null): No need to call ftruncate if the file was
53393         nonempty.
53394
53395 2002-12-31  Bruno Haible  <bruno@clisp.org>
53396
53397         * lib/memcoll.c (STRCOLL): New macro.
53398         (memcoll): Use it.
53399
53400 2002-12-31  Bruno Haible  <bruno@clisp.org>
53401
53402         * lib/localcharset.h: New file.
53403         * lib/localcharset.c: Include it.
53404         * lib/unicodeio.c: Likewise.
53405
53406 2002-12-31  Bruno Haible  <bruno@clisp.org>
53407
53408         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
53409         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
53410
53411 2002-12-31  Bruno Haible  <bruno@clisp.org>
53412
53413         * lib/getline.h: Include <stddef.h>, for size_t.
53414
53415         * lib/unicodeio.h: Include <stddef.h>, for size_t.
53416         * lib/unicodeio.c: Don't include <stddef.h>.
53417
53418 2002-12-31  Bruno Haible  <bruno@clisp.org>
53419
53420         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
53421         HAVE_TM_ZONE.
53422
53423 2002-12-24  Karl Berry  <karl@gnu.org>
53424
53425         * config/config.guess: update from prep.
53426
53427 2002-12-24  Bruno Haible  <bruno@clisp.org>
53428
53429         General infrasructure.
53430         * m4/README: Rewritten.
53431         * m4/onceonly.m4: New file.
53432         * m4/onceonly_2_57.m4: New file.
53433
53434         Module atexit.
53435         * m4/atexit.m4: New file.
53436
53437         Module strtod.
53438         * m4/strtod.m4: New file.
53439
53440         Module strtol.
53441         * m4/strtol.m4: New file.
53442
53443         Module strtoul.
53444         * m4/strtoul.m4: New file.
53445
53446         Module memchr.
53447         * m4/memchr.m4: New file.
53448
53449         Module memcmp.
53450         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
53451         (jm_FUNC_MEMCMP): Invoke it.
53452
53453         Module memcpy.
53454         * m4/memcpy.m4: New file.
53455
53456         Module memmove.
53457         * m4/memmove.m4: New file.
53458
53459         Module memset.
53460         * m4/memset.m4: New file.
53461
53462         Module strcspn.
53463         * m4/strcspn.m4: New file.
53464
53465         Module strpbrk.
53466         * m4/strpbrk.m4: New file.
53467
53468         Module strstr.
53469         * m4/strstr.m4: New file.
53470
53471         Module strerror.
53472         * m4/strerror.m4: New file.
53473
53474         Module mktime.
53475         * m4/mktime.m4: Renamed from jm-mktime.m4.
53476         (gl_PREREQ_MKTIME): New macro.
53477         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
53478
53479         Module malloc.
53480         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
53481         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
53482         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
53483
53484         Module realloc.
53485         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
53486         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
53487         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
53488
53489         Module strftime.
53490         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
53491         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
53492         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
53493         gl_TM_GMTOFF.
53494         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
53495
53496         Module xalloc.
53497         * m4/xalloc.m4: New file.
53498
53499         Module alloca.
53500         * m4/alloca.m4: New file.
53501
53502         Module putenv.
53503         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
53504         (jm_FUNC_PUTENV): Invoke it.
53505
53506         Module setenv.
53507         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
53508         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
53509         when invoked twice.
53510         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
53511         gt_FUNC_SETENV.
53512
53513         Module memrchr.
53514         * m4/memrchr.m4: New file.
53515
53516         Module stpcpy.
53517         * m4/stpcpy.m4: New file.
53518
53519         Module strcase.
53520         * m4/strcase.m4: New file.
53521
53522         Module strdup.
53523         * m4/strdup.m4: New file.
53524
53525         Module strnlen.
53526         * m4/strnlen.m4: New file.
53527
53528         Module strndup.
53529         * m4/strndup.m4: New file.
53530
53531         Module xstrtod.
53532         * m4/xstrtod.m4: New file.
53533
53534         Module xstrtol.
53535         * m4/xstrtol.m4: New file.
53536
53537         Module getdate.
53538         * m4/getdate.m4: New file.
53539
53540         Module unlocked-io.
53541         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
53542         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
53543         * m4/jm-glibc-io.m4n: Remove file.
53544
53545         Module long-options.
53546         * m4/long-options.m4: New file.
53547
53548         Module md5.
53549         * m4/md5.m4: New file.
53550
53551         Module sha.
53552         * m4/sha.m4: New file.
53553
53554         Module getstr.
53555         * m4/getstr.m4: New file.
53556
53557         Module getline.
53558         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
53559         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
53560         <sys/types.h>, for size_t. Use the function name gnu_getline, not
53561         simply getline. Infoke gl_PREREQ_GETLINE.
53562
53563         Module obstack.
53564         * m4/obstack.m4: New file.
53565
53566         Module hash.
53567         * m4/hash.m4: New file.
53568
53569         Module readtokens.
53570         * m4/readtokens.m4: New file.
53571
53572         Module strverscmp.
53573         * m4/strverscmp.m4: New file.
53574
53575         Module stdbool.
53576         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
53577         OSF/1.
53578
53579         Module strtoll.
53580         * m4/strtoll.m4: New file.
53581
53582         Module strtoull.
53583         * m4/strtoull.m4: New file.
53584
53585         Module strtoimax.
53586         * m4/strtoimax.m4: New file.
53587
53588         Module strtoumax.
53589         * m4/strtoumax.m4: New file.
53590
53591         Module xstrtoimax.
53592         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
53593         jm_AC_PREREQ_XSTRTOIMAX.
53594         Moved the strtol prerequisites to strtol.m4.
53595         Moved the strtoll prerequisites to strtoll.m4.
53596         Moved the strtoimax prerequisites to strtoimax.m4.
53597
53598         Module xstrtoumax.
53599         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
53600         jm_AC_PREREQ_XSTRTOUMAX.
53601         Moved the strtoul prerequisites to strtoul.m4.
53602         Moved the strtoull prerequisites to strtoull.m4.
53603         Moved the strtoumax prerequisites to strtoumax.m4.
53604
53605         Module chown.
53606         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
53607         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
53608
53609         Module dup2.
53610         * m4/dup2.m4: New file.
53611
53612         Module ftruncate.
53613         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
53614         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
53615
53616         Module getgroups.
53617         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
53618         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
53619
53620         Module gettimeofday.
53621         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
53622         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
53623         gl_PREREQ_GETTIMEOFDAY.
53624
53625         Module mkdir.
53626         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
53627         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
53628
53629         Module mkstemp.
53630         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
53631         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
53632         jm_AC_TYPE_UINTMAX_T.
53633         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
53634
53635         Module stat.
53636         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
53637         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
53638
53639         Module lstat.
53640         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
53641         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
53642
53643         Module timespec.
53644         * m4/timespec.m4 (gl_TIMESPEC): New macro.
53645         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
53646         * m4/st_mtim.m4: Indentation.
53647
53648         Module nanosleep.
53649         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
53650         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
53651         gl_PREREQ_NANOSLEEP.
53652
53653         Module regex.
53654         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
53655         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
53656         (gl_REGEX): New macro.
53657
53658         Module rename.
53659         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
53660         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
53661
53662         Module rmdir.
53663         * m4/rmdir.m4: New file.
53664
53665         Module utime.
53666         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
53667         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
53668         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
53669
53670         Module dirname.
53671         * m4/dirname.m4: New file.
53672
53673         Module getopt.
53674         * m4/getopt.m4: New file.
53675
53676         Module unistd-safer.
53677         * m4/unistd-safer.m4: New file.
53678
53679         Module fnmatch.
53680         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
53681         declaration.
53682         (gl_PREREQ_FNMATCH_EXTRA): New macro.
53683         (gl_FUNC_FNMATCH_POSIX): New macro.
53684         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
53685         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
53686         simply fnmatch.
53687
53688         Module exclude.
53689         * m4/exclude.m4: New file.
53690
53691         Module human.
53692         * m4/human.m4: New file.
53693
53694         Module acl.
53695         * m4/acl.m4: Nop.
53696
53697         Module backupfile.
53698         * m4/backupfile.m4: New file.
53699         * m4/d-ino.m4: Indentation.
53700
53701         Module fsusage.
53702         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
53703         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
53704         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
53705
53706         Module dirfd.
53707         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
53708         requirements.
53709
53710         Module euidaccess.
53711         * m4/euidaccess.m4: New file.
53712
53713         Module file-type.
53714         * m4/file-type.m4: New file.
53715
53716         Module fileblocks.
53717         * m4/fileblocks.m4: New file.
53718
53719         Module filemode.
53720         * m4/filemode.m4: New file.
53721
53722         Module isdir.
53723         * m4/isdir.m4: New file.
53724
53725         Module lchown.
53726         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
53727         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
53728
53729         Module makepath.
53730         * m4/makepath.m4: New file.
53731
53732         Module modechange.
53733         * m4/modechange.m4: New file.
53734
53735         Module mountlist.
53736         * m4/mountlist.m4: New file.
53737         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
53738         Indentation.
53739
53740         Module path-concat.
53741         * m4/path-concat.m4: New file.
53742
53743         Module pathmax.
53744         * m4/pathmax.m4: New file.
53745
53746         Module same.
53747         * m4/same.m4: New file.
53748
53749         Module save-cwd.
53750         * m4/save-cwd.m4: New file.
53751
53752         Module savedir.
53753         * m4/savedir.m4: New file.
53754
53755         Module xgetcwd.
53756         * m4/xgetcwd.m4: New file.
53757         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
53758
53759         Module xreadlink.
53760         * m4/xreadlink.m4: New file.
53761
53762         Module safe-read.
53763         * m4/safe-read.m4: New file.
53764
53765         Module safe-write.
53766         * m4/safe-write.m4: New file.
53767
53768         Module closeout.
53769         * m4/closeout.m4: New file.
53770
53771         Module stdio-safer.
53772         * m4/stdio-safer.m4: New file.
53773
53774         Module getpass.
53775         * m4/getpass.m4: New file.
53776
53777         Module getugroups.
53778         * m4/getugroups.m4: New file.
53779
53780         Module group-member.
53781         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
53782         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
53783
53784         Module idcache.
53785         * m4/idcache.m4: New file.
53786
53787         Module userspec.
53788         * m4/userspec.m4: New file.
53789
53790         Module gettime.
53791         * m4/clock_time.m4: New file.
53792         * m4/gettime.m4: New file.
53793
53794         Module settime.
53795         * m4/settime.m4: New file.
53796
53797         Module posixtm.
53798         * m4/posixtm.m4: New file.
53799
53800         Module gethostname.
53801         * m4/gethostname.m4: New file.
53802
53803         Module canon-host.
53804         * m4/canon-host.m4: New file.
53805
53806         Module gettext.
53807         * m4/codeset.m4: New file, from gettext-0.11.5.
53808         * m4/gettext.m4: New file, from gettext-0.11.5.
53809         * m4/glibc21.m4: New file, from gettext-0.11.5.
53810         * m4/iconv.m4: New file, from gettext-0.11.5.
53811         * m4/intdiv0.m4: New file, from gettext-0.11.5.
53812         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
53813         * m4/inttypes.m4: New file, from gettext-0.11.5.
53814         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
53815         * m4/isc-posix.m4: New file, from gettext-0.11.5.
53816         * m4/lcmessage.m4: New file, from gettext-0.11.5.
53817         * m4/lib-ld.m4: New file, from gettext-0.11.5.
53818         * m4/lib-link.m4: New file, from gettext-0.11.5.
53819         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
53820         * m4/progtest.m4: New file, from gettext-0.11.5.
53821         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
53822         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
53823         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
53824
53825         Module localcharset.
53826         * m4/localcharset.m4: New file.
53827
53828         Module hard-locale.
53829         * m4/hard-locale.m4: New file.
53830
53831         Module mbswidth.
53832         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
53833         onceonly macros.
53834         * m4/mbrtowc.m4: Add comment.
53835
53836         Module memcasecmp.
53837         * m4/memcasecmp.m4: New file.
53838
53839         Module memcoll.
53840         * m4/memcoll.m4: New file.
53841
53842         Module unicodeio.
53843         * m4/unicodeio.m4: New file.
53844
53845         Module rpmatch.
53846         * m4/rpmatch.m4: New file.
53847
53848         Module yesno.
53849         * m4/yesno.m4: New file.
53850
53851         Module exitfail.
53852         * m4/exitfail.m4: New file.
53853
53854         Module c-stack.
53855         * m4/c-stack.m4 (gl_C_STACK): New macro.
53856         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
53857
53858         Module error.
53859         * m4/error.m4 (gl_ERROR): New macro.
53860         (jm_PREREQ_ERROR): Use onceonly macros.
53861
53862         Module fatal.
53863         * m4/fatal.m4: New file.
53864
53865         Module getloadavg.
53866         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
53867         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
53868
53869         Module getpagesize.
53870         * m4/getpagesize.m4: New file.
53871
53872         Module getusershell.
53873         * m4/getusershell.m4: New file.
53874
53875         Module physmem.
53876         * m4/physmem.m4: New file.
53877
53878         Module posixver.
53879         * m4/posixver.m4: New file.
53880
53881         Module quotearg.
53882         * m4/quotearg.m4: New file.
53883
53884         Module quote.
53885         * m4/quote.m4: New file.
53886
53887         Module readutmp.
53888         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
53889
53890         Module sig2str.
53891         * m4/sig2str.m4: New file.
53892
53893         Other.
53894         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
53895         ulonglong.m4.
53896         * m4/intmax_t.m4: New file.
53897         * m4/d-type.m4: Indentation.
53898         * m4/jm-macros.m4: Update.
53899         * m4/prereq.m4 (jm_PREREQ): Update.
53900         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
53901         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
53902         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
53903         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
53904         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
53905         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
53906         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
53907         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
53908         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
53909         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
53910         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
53911         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
53912         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
53913         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
53914         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
53915         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
53916         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
53917         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
53918         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
53919
53920 2002-12-24  Bruno Haible  <bruno@clisp.org>
53921
53922         * MODULES.txt: Update according to m4/ changes.
53923
53924         Module gettext.
53925         * config.rpath: New file, from gettext-0.11.5.
53926
53927         * modules/*: New module descriptions.
53928         * gnulib-tool: New file.
53929         * MODULES.html.sh: New file.
53930
53931 2002-12-21  Karl Berry  <karl@gnu.org>
53932
53933         * doc/fdl.texi: update to version 1.2.
53934
53935 2002-12-19  Karl Berry  <karl@gnu.org>
53936
53937         * config/config.guess: update from prep.
53938
53939 2002-12-18  Bruno Haible  <bruno@clisp.org>
53940
53941         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
53942         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
53943
53944 2002-12-17  Bruno Haible  <bruno@clisp.org>
53945
53946         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
53947         stdlib.h, string.h.
53948
53949 2002-12-17  Bruno Haible  <bruno@clisp.org>
53950
53951         * lib/canon-host.c (strdup): Remove unused declaration.
53952
53953         * lib/fsusage.c: Include full_read.h.
53954         (get_fs_usage): Use full_read instead of safe_read.
53955
53956         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
53957
53958 2002-12-12  Karl Berry  <karl@gnu.org>
53959
53960         * config/config.guess: update from prep.
53961
53962 2002-12-11  Bruno Haible  <bruno@clisp.org>
53963
53964         * m4/setenv.m4: New file, from gettext-0.11.5.
53965
53966 2002-12-11  Bruno Haible  <bruno@clisp.org>
53967
53968         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
53969         not unsetenv().
53970         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
53971         modifications:
53972
53973         2002-12-11  Bruno Haible  <bruno@clisp.org>
53974
53975                 * setenv.c (alloca): Fall back to malloc.
53976                 (freea): New macro.
53977                 (setenv): Use freea() to free memory allocated with alloca().
53978
53979         2002-11-13  Bruno Haible  <bruno@clisp.org>
53980
53981                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
53982                 function declarations.
53983                 * unsetenv.c (unsetenv): Likewise.
53984
53985         2002-03-04  Bruno Haible  <bruno@clisp.org>
53986
53987                 Portability to AIX 4.3.3.
53988                 * unsetenv.c: New file, extracted from setenv.c.
53989                 * setenv.c: Move the unsetenv() function to unsetenv.c.
53990
53991         2001-12-20  Bruno Haible  <bruno@clisp.org>
53992
53993                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
53994                 use malloc instead. For SunOS 4.
53995
53996         2001-12-11  Bruno Haible  <bruno@clisp.org>
53997
53998                 * setenv.c: Declare alloca.
53999                 (compar_fn_t): New typedef.
54000                 (KNOWN_VALUE, STORE_VALUE): Use it.
54001
54002         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
54003         setenv.h.
54004
54005 2002-12-10  Paul Eggert  <eggert@twinsun.com>
54006
54007         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
54008         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
54009         Choose values that are less likely to collide with system fnmatch
54010         options.
54011         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
54012         defined (e.g., a pure POSIX system).
54013         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
54014         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
54015
54016 2002-12-06  Paul Eggert  <eggert@twinsun.com>
54017
54018         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
54019         a pain in practice to deal with generated m4 files.  This change
54020         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
54021
54022         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
54023         and jm-glibc-io.m4, as they are no longer a special case.
54024         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
54025         kludge and the auto-generation stuff.  Check only whether the
54026         functions are declared, not whether they exist, since older hosts
54027         that don't declare the functions can't use the optimization anyway.
54028
54029 2002-12-06  Jim Meyering  <jim@meyering.net>
54030
54031         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
54032
54033         Merge in changes from libc's misc/error.c, in preparation
54034         for the merge of gnulib's changes back into libc.
54035
54036         * lib/error.c (_): Define only if not already defined.
54037         Move definition to follow all #include directives.
54038         Include unlocked-io.h only if !_LIBC.
54039         [_LIBC]: Include <libio/libioP.h>.
54040         [USE_IN_LIBIO]: Include <libio/iolibio.h>
54041         (fflush): Tweak definition to use INTUSE.
54042         (putc): Define.
54043
54044 2002-12-05  Paul Eggert  <eggert@twinsun.com>
54045
54046         * lib/alloca.c [defined emacs]: Include "lisp.h".
54047         (xalloc_die) [defined emacs]: New macro.
54048         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
54049         [! defined emacs]: Include <xalloc.h>.
54050         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
54051         (pointer): Typedef to POINTER_TYPE *.
54052         (malloc): Remove decl; we now always use xmalloc.
54053         (alloca): Use old-style definition, since Emacs needs this.
54054         Check for arithmetic overflow when computing combined size.
54055
54056 2002-12-04  Paul Eggert  <eggert@twinsun.com>
54057
54058         Do not generate unlocked-io.h automatically, since it's easier to
54059         maintain it by hand.
54060
54061         * lib/unlocked-io.h: New file, from GNU diffutils,
54062         but with proper copyright notice and attribution.
54063         * lib/gen-uio: Remove.
54064         * lib/Makefile.am: Add copyright notice.
54065         (libfetish_a_SOURCES): Add unlocked-io.h.
54066         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
54067         (DISTCLEANFILES, io_functions): Remove macros.
54068         (EXTRA_DIST): Remove gen_uio.
54069         (unlocked-io.h): Remove rule.
54070
54071 2002-12-04  Jim Meyering  <jim@meyering.net>
54072
54073         Reflect the fact that stat.c and lstat.c are no longer generated.
54074         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
54075         (DISTCLEANFILES): Likewise.
54076         (EXTRA_DIST): Likewise.
54077         (all_local): Don't depend on stat.c or lstat.c.
54078         (stat.c, lstat.c): Remove rules.
54079         (EXTRA_DIST): Remove xstat.in.
54080
54081         * lib/xstat.in: Remove file.  Contents moved into stat.c.
54082         * lib/stat.c: New file.  Contents mostly from xstat.in.
54083         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
54084         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
54085
54086         * lib/safe-read.c: Rework so that it may serve to define safe_write,
54087         too.
54088         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
54089
54090 2002-12-03  Jim Meyering  <jim@meyering.net>
54091
54092         * lib/safe-read.c, safe-write.c: Change variable names and comments,
54093         but not semantics, to minimize the differences between these two files.
54094         (safe_read): Change comment to mention SAFE_READ_ERROR.
54095
54096         * lib/safe-read.c (IS_EINTR): Define.
54097         (safe_read): Use IS_EINTR in place of in-function cpp directives.
54098
54099 2002-12-02  Jim Meyering  <jim@meyering.net>
54100
54101         * lib/safe-read.c (EINTR): Define.
54102         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
54103         (INT_MAX): Provide fallback.
54104         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
54105
54106         * lib/safe-read.h (SAFE_READ_ERROR): Define.
54107
54108 2002-12-02  Bruno Haible  <bruno@clisp.org>
54109
54110         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
54111         Define, taken from safe-read.c.
54112         (INT_MAX): Provide fallback.
54113         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
54114         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
54115
54116         * lib/safe-read.c (EINTR): Remove definition.
54117         (safe_read): Don't use EINTR if it is absent.
54118
54119 2002-12-01  Jim Meyering  <jim@meyering.net>
54120
54121         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
54122         zero.
54123         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
54124
54125 2002-11-27  Paul Eggert  <eggert@twinsun.com>
54126
54127         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
54128         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
54129         with `if (! (value < limit)) abort ();', for readability.
54130
54131 2002-11-26  Karl Berry  <karl@gnu.org>
54132
54133         * lib/strdup.c: copy from libc again, with jim's ok.
54134         * lib/.cppi-disable: re-add strdup.c
54135
54136 2002-11-25  Karl Berry  <karl@gnu.org>
54137
54138         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
54139         instead of "strtol.c".
54140
54141 2002-11-25  Karl Berry  <karl@gnu.org>
54142
54143         * config/install-sh: update from automake for variable quoting, $0 in
54144         error msgs, etc.
54145
54146         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
54147         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
54148         entry.
54149
54150 2002-11-25  Jim Meyering  <jim@meyering.net>
54151
54152         * lib/mktime.c: Sync from libc, now that it has the latest fix.
54153
54154 2002-11-24  Karl Berry  <karl@gnu.org>
54155
54156         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
54157         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
54158
54159 2002-11-24  Jim Meyering  <jim@meyering.net>
54160
54161         Update from coreutils:
54162
54163         * lib/mktime.c: Merge in changes from libc.
54164
54165         Avoid a link-time failure on some Linux systems.
54166         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
54167         (otherwise).
54168         (__mon_yday): Declare with the STATIC attribute.
54169         (__mktime_internal): Likewise.
54170         Based on a report from Greg Schafer.
54171
54172 2002-11-23  Jim Meyering  <jim@meyering.net>
54173
54174         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
54175         Use `unsigned', not `int', as type of index.
54176
54177         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
54178
54179         * lib/fsusage.c: Remove unneeded parentheses around operands of
54180         `defined'.
54181
54182 2002-11-22  Paul Eggert  <eggert@twinsun.com>
54183
54184         * lib/quotearg.h: Allow multiple inclusion by surrounding with
54185         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
54186         so that we can be included first.
54187         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
54188         * lib/quotearg.c: Include quotearg.h immediately after config.h.
54189         No need to include stddef.h or sys/types.h any more.
54190         Surround local include files with "", not "<>".
54191         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
54192         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
54193         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
54194         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
54195         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
54196         (ISPRINT): Remove; no longer needed now that we assume C89.
54197
54198         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
54199         Preserve errno.
54200
54201         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
54202         quotearg_char): Use SIZE_MAX rather than
54203         (size_t) -1 when we are talking about "infinity".
54204
54205         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
54206
54207 2002-11-22  Paul Eggert  <eggert@twinsun.com>
54208
54209         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
54210         hint that one should use `if (! x) abort ();' rather than `assert
54211         (x);', and anyway it's one less thing to worry about configuring.
54212         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
54213         hash_rehash, hash_insert): Use abort rather than assert.
54214
54215 2002-11-22  Bruno Haible  <bruno@clisp.org>
54216
54217         * lib/safe-read.h: Assume C89. Add comments.
54218         (safe_read): Change return type to size_t.
54219         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
54220         byte counts > SSIZE_MAX correctly.
54221         * lib/safe-write.h: New file.
54222         * lib/safe-write.c: New file.
54223         * lib/full-read.h: New file.
54224         * lib/full-read.c: New file.
54225         * lib/full-write.h: Assume C89. Add comments.
54226         * lib/full-write.c: Include safe-write.h.
54227         (full_write): Rewritten to use safe_write.
54228         Suggested by Jim Meyering and Paul Eggert.
54229
54230 2002-11-21  Jim Meyering  <jim@meyering.net>
54231
54232         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
54233
54234         Merge in changes from the coreutils.
54235
54236         2002-09-25  Paul Eggert  <eggert@twinsun.com>
54237         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
54238         <stdint.h>.
54239         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
54240         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
54241         int.  Work more efficiently if X is the same width as uintmax_t.
54242         Do not compare X to -1, to avoid bogus compiler warning.
54243         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
54244         Don't assume that f_frsize and f_bsize are the same type.
54245
54246         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
54247         warning on FreeBSD.
54248
54249         * lib/makepath.c (make_path): Restore umask *before* creating the final
54250         component.
54251         (make_path): Minor reformatting.
54252
54253         * lib/xmalloc.c: Adjust to work with new autoconf macros,
54254         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
54255         HAVE_MALLOC/HAVE_REALLOC.
54256
54257         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
54258         dummy ones.  At least on GNU/Linux systems, `auto' means something
54259         else.
54260         From Michael Stone.
54261
54262 2002-11-21  Bruno Haible  <bruno@clisp.org>
54263
54264         Remove case insensitive option matching.
54265         * lib/argmatch.h (argcasematch): Remove declaration.
54266         (ARGCASEMATCH): Remove macro.
54267         (__xargmatch_internal): Remove case_sensitive argument.
54268         (XARGMATCH): Update.
54269         (XARGCASEMATCH): Remove macro.
54270         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
54271         case_sensitive argument.
54272         (argcasematch): Remove function.
54273         (__xargmatch_internal): Remove case_sensitive argument.
54274         (main): Use XARGMATCH instead of XARGCASEMATCH.
54275
54276         * lib/xmalloc.c: Change compile-time error message. Add comment about
54277         required autoconf version.
54278
54279 2002-11-20  Paul Eggert  <eggert@twinsun.com>
54280
54281         Merge argmatch cleanups from Bison.  Assume C89.
54282
54283         * lib/argmatch.c: Include config.h here, not in argmatch.h.
54284         Include stdlib.h, for EXIT_FAILURE.
54285         Always include <string.h>, since we assume C89.
54286         (EXIT_FAILURE): Remove pre-C89 bug workaround.
54287         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
54288         Include <stddef.h> instead, since it's all we need for size_t.
54289         (PARAMS): Remove.  All uses removed.
54290         (ARRAY_CARDINALITY): Do not bother to #undef.
54291         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
54292         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54293         Remove unnecessary parentheses.
54294         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54295         Insert necessary parentheses.
54296         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
54297         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
54298
54299 2002-11-19  Bruno Haible  <bruno@clisp.org>
54300
54301         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
54302         * lib/mbswidth.h: Include <stddef.h>, for size_t.
54303
54304         * lib/mbswidth.h (PARAMS): Remove macro.
54305         (mbswidth, mbsnwidth): Use ANSI C function declarations.
54306         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
54307
54308         * lib/gcd.h (PARAMS): Remove macro.
54309         (gcd): Use ANSI C function declarations.
54310         * lib/gcd.c (gcd): Likewise.
54311
54312 2002-11-15  Bruno Haible  <bruno@clisp.org>
54313
54314         * lib/strcspn.c: Include <stddef.h>.
54315         (strcspn): Use ANSI C function declaration. Change return type to
54316         size_t. Use NULL.
54317         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
54318         (strpbrk): Use NULL.
54319         * lib/strpbrk.h (PARAMS): Remove macro.
54320         (strpbrk): Use ANSI C function declaration.
54321         * lib/strstr.c: Don't include <sys/types.h>.
54322         * lib/strstr.h (PARAMS): Remove macro.
54323         (strstr): Use ANSI C function declarations.
54324
54325 2002-11-14  Karl Berry  <karl@gnu.org>
54326
54327         * config/mkinstalldirs: `do' on separate line, instead of
54328         `for var; do'.
54329
54330 2002-11-06  Bruno Haible  <bruno@clisp.org>
54331
54332         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
54333         * lib/gcd.c (gcd): Likewise.
54334
54335 2002-11-05  Bruno Haible  <bruno@clisp.org>
54336
54337         * lib/gcd.h: New file, from gettext-0.11.5.
54338         * lib/gcd.c: New file, from gettext-0.11.5.
54339
54340 2002-11-05  Bruno Haible  <bruno@clisp.org>
54341
54342         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54343         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54344         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54345         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54346
54347         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
54348         <libintl.h>.
54349         * lib/makepath.c: Include gettext.h instead of <locale.h> and
54350         <libintl.h>.
54351
54352         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
54353         * lib/human.c: Include gettext.h instead of <libintl.h>.
54354         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
54355         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
54356         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
54357         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
54358         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
54359         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
54360         (textdomain): Remove definition.
54361         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
54362
54363         * lib/long-options.c: Remove include of <libintl.h> and definition of
54364         _.
54365         * lib/same.c: Remove include of <libintl.h> and definition of _.
54366
54367 2002-11-04  Owen Taylor  <otaylor@redhat.com>
54368
54369         * lib/config.charset: A few additions for Solaris.
54370
54371 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54372
54373         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
54374         * lib/localcharset.c (locale_charset): Declare as extern "C".
54375
54376 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54377
54378         * lib/config.charset: msdos in uk_UA uses CP1125.
54379
54380 2002-11-04  Bruno Haible  <bruno@clisp.org>
54381
54382         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
54383         * lib/strcase.h: New file, from GNU gettext-0.11.5.
54384         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
54385         * lib/strstr.h: New file, from GNU gettext-0.11.5.
54386         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
54387
54388 2002-11-04  Bruno Haible  <bruno@clisp.org>
54389
54390         * lib/localcharset.c (locale_charset): Don't return an empty string.
54391
54392 2002-11-04  Bruno Haible  <bruno@clisp.org>
54393
54394         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
54395         aliases.
54396
54397 2002-11-04  Bruno Haible  <bruno@clisp.org>
54398
54399         * lib/config.charset: Update for newest glibc. Add canonical names
54400         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
54401
54402 2002-11-04  Bruno Haible  <bruno@clisp.org>
54403
54404         * lib/config.charset: Add support for NetBSD.
54405
54406 2002-11-04  Bruno Haible  <bruno@clisp.org>
54407
54408         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
54409
54410 2002-11-01  Bruno Haible  <bruno@clisp.org>
54411
54412         * configure.in: Add AC_CONFIG_AUX_DIR call.
54413         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
54414         test/Makefile.
54415         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
54416
54417 2002-09-28  Karl Berry  <karl@gnu.org>
54418
54419         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
54420         installed automake until the next release, since changes have been
54421         made.
54422
54423 2002-09-25  Karl Berry  <karl@gnu.org>
54424
54425         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
54426         * lib/getopt*: copy from libc/posix.
54427         * lib/gettext.h: copy from gettext.
54428         * lib/.cppi-disable: add strdup.c, gettext.h.
54429
54430 2002-09-25  Karl Berry  <karl@gnu.org>
54431
54432         * config/srclist.txt: enable gettext.h check.
54433         * config/config.{guess,sub}: update from prep.
54434         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
54435                 from automake 1.6.3.
54436         See srclist*.
54437
54438 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
54439
54440         * regex.c (PATFETCH): Remove the translating fetch.
54441         (PATFETCH_RAW): Rename to PATFETCH.
54442         (set_image_of_range): New fun.
54443         (SET_RANGE_TABLE_WORK_AREA): Use it.
54444         (regex_compile): Don't translate the pattern chars so eagerly.
54445         Only do it when inserting an `exactn' bytecode or when handling
54446         a char-range.
54447         (mutually_exclusive_p): Avoid empty statement.
54448
54449 2002-07-06  Jim Meyering  <meyering@lucent.com>
54450
54451         * m4/README: Don't mention Makefile.am.in.
54452         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
54453
54454 2002-07-01  Jim Meyering  <meyering@lucent.com>
54455
54456         * lib/c-stack.c: Include sys/time.h.
54457         From Volker Borchert.
54458
54459 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54460
54461         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
54462
54463 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54464
54465         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
54466         New macro.  Use it uniformly instead of
54467         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
54468         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
54469         reported by Vin Shelton.
54470
54471 2002-06-22  Paul Eggert  <eggert@twinsun.com>
54472
54473         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
54474         Do not assume SA_SIGINFO behavior.
54475         Bug reported by Jim Meyering on NetBSD 1.5.2.
54476
54477 2002-06-22  Jim Meyering  <meyering@lucent.com>
54478
54479         * m4/c-stack.m4: New file, from diffutils-2.8.2.
54480         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
54481
54482         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
54483         now that configure.ac uses AC_GNU_SOURCE.
54484         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
54485         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
54486
54487         Update to latest tools.  Suggestions from Paul Eggert.
54488         * m4/stdbool.m4: New file, from diffutils-2.8.2.
54489         * m4/gnu-source.m4: Update from diffutils-2.8.2.
54490         * m4/fnmatch.m4: Likewise.
54491         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
54492         to AC_HEADER_STDBOOL
54493
54494 2002-06-22  Jim Meyering  <meyering@lucent.com>
54495
54496         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
54497         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
54498
54499 2002-06-22  Jim Meyering  <meyering@lucent.com>
54500
54501         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
54502
54503         * lib/exitfail.c, exitfail.h: Likewise.
54504         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
54505
54506         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
54507         of fnmatch.h.
54508         (EXTRA_DIST): Add fnmatch_loop.c.
54509         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
54510
54511         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
54512         * lib/fnmatch.c: Update from diffutils-2.8.2.
54513         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
54514         * lib/fnmatch.h: Remove file.
54515
54516 2002-06-21  Jim Meyering  <meyering@lucent.com>
54517
54518         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
54519         * m4/mbrtowc.m4: Likewise.
54520
54521         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
54522         * m4/mbswidth.m4: Reflect name change:
54523         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
54524         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
54525
54526         * m4/lib-link.m4: Update from gettext-0.11.2.
54527         * m4/gettext.m4: Likewise.
54528
54529         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
54530         From Alfred M. Szmidt.
54531
54532 2002-06-18  Paul Eggert  <eggert@twinsun.com>
54533
54534         * lib/file-type.h: Report an error if neither S_ISREG nor
54535         S_IFREG is defined, instead of using a test specific to glibc
54536         2.2.  This should be safe, since POSIX requires S_ISREG and
54537         Unix Version 7 had S_IFREG.  We don't need to check for
54538         <sys/types.h> since we don't use any symbols that it defines.
54539
54540 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
54541
54542         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
54543         $@-t, so that each temporary file name is unique and valid in the first
54544         8 characters, for operation under DOS.
54545
54546 2002-06-15  Paul Eggert  <eggert@twinsun.com>
54547
54548         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
54549
54550 2002-06-15  Jim Meyering  <meyering@lucent.com>
54551
54552         Work even with DJGPP 2.03, which lacks support for symlinks.
54553         From Richard Dawe.
54554         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
54555         is defined.
54556         * lib/lchown.c (S_ISLNK): Likewise.
54557
54558 2002-06-15  Jim Meyering  <meyering@lucent.com>
54559
54560         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
54561         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
54562         have been included before this file.
54563
54564 2002-06-14  Jim Meyering  <meyering@lucent.com>
54565
54566         * lib/file-type.h: Use the version from diffutils-2.8.2.
54567         * lib/file-type.c: Likewise.
54568
54569 2002-06-07  Jim Meyering  <meyering@lucent.com>
54570
54571         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
54572         They're needed at least for NetBSD 1.5.2.
54573         ($statxfs_includes): Include those same headers.
54574         ($statxfs_includes): Include sys/vfs.h if available.
54575         ($statxfs_includes): Likewise for sys/statvfs.h.
54576         Check for the following members in both structs statfs and statvfs:
54577         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
54578
54579 2002-06-01  Jim Meyering  <meyering@lucent.com>
54580
54581         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
54582         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
54583
54584 2002-05-28  Jim Meyering  <meyering@lucent.com>
54585
54586         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
54587         Reported by Volker Borchert.
54588
54589 2002-05-27  Jim Meyering  <meyering@lucent.com>
54590
54591         Fix a problem seen only on nonconforming systems whereby ls.c's
54592         use of localtime, and then of gettimeofday would cause trouble:
54593         the localtime call used to initialize rpl_gettimeofday's save
54594         mechanism would clobber ls's current local time information so
54595         that in any long listing the first file would always be listed
54596         with date 1970-01-01.  Analysis by Volker Borchert.
54597
54598         * lib/gettimeofday.c (localtime): Undefine.
54599         (rpl_localtime): New function.
54600
54601 2002-05-27  Jim Meyering  <meyering@lucent.com>
54602
54603         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
54604         localtime.
54605
54606         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
54607         use the replacement function; it wouldn't resolve at link time.
54608         Reported by Volker Borchert.
54609
54610 2002-05-22  Jim Meyering  <meyering@lucent.com>
54611
54612         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
54613         file-type.h.
54614         * lib/file-type.h: New file.
54615         * lib/file-type.c (file_type): New file/function.  Extracted from
54616         diffutils.
54617
54618 2002-04-30  Jim Meyering  <meyering@lucent.com>
54619
54620         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
54621
54622 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54623
54624         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
54625
54626 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54627
54628         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
54629         Do not check for alloca.h (no longer used) or stdbool.h (was never
54630         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
54631
54632 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54633
54634         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
54635
54636 2002-04-29  Jim Meyering  <meyering@lucent.com>
54637
54638         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
54639         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
54640         Use AC_FUNC_STRNLEN here instead.
54641
54642         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
54643         With autoconf-2.53a, it's part of AC_PROG_CC.
54644
54645 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54646
54647         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
54648         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
54649
54650 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54651
54652         * lib/sig2str.h, lib/sig2str.c: New files.
54653         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
54654
54655 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54656
54657         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
54658         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
54659         of 127, since 64 is the largest conceivable number for ancient
54660         nonstandard hosts.
54661         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
54662
54663 2002-04-28  Jim Meyering  <meyering@lucent.com>
54664
54665         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
54666
54667 2002-04-24  Jim Meyering  <meyering@lucent.com>
54668
54669         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
54670         (jm_PREREQ): Use it.
54671
54672         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
54673         mach/mach.h fcntl.h.
54674         Check for this function: setlocale.
54675
54676 2002-04-24  Jim Meyering  <meyering@lucent.com>
54677
54678         * lib/gettext.h: New file, from Gettext.
54679         * lib/Makefile.am (INCLUDES): Remove -I../intl.
54680         (libfetish_a_SOURCES): Add gettext.h.
54681
54682 2002-04-16  Jim Meyering  <meyering@lucent.com>
54683
54684         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
54685         ut_pid, ut_id, ut_exit.
54686
54687 2002-04-16  Jim Meyering  <meyering@lucent.com>
54688
54689         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
54690         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
54691         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
54692
54693 2002-04-12  Jim Meyering  <meyering@lucent.com>
54694
54695         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
54696         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
54697         existence of the getmntinfo function.  Needed for Darwin 5.3.
54698
54699         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
54700         This is necessary at least on Darwin 5.3.
54701
54702         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
54703         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
54704         strnlen.o in the library, and that makes some versions of ranlib
54705         object.
54706
54707 2002-04-12  Jim Meyering  <meyering@lucent.com>
54708
54709         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
54710
54711 2002-04-09  Jim Meyering  <meyering@lucent.com>
54712
54713         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
54714         to be more precise.  Rather than saying we're checking whether the
54715         function `works', say what we're testing.
54716         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
54717         Reported by Bruno Haible.
54718
54719 2002-03-10  Jim Meyering  <meyering@lucent.com>
54720
54721         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
54722         Suggestion from Santiago Vila.
54723
54724 2002-03-08  Jim Meyering  <meyering@lucent.com>
54725
54726         * lib/rename.c: Mention that this wrapper is needed also on
54727         mips-dec-ultrix4.4 systems.
54728
54729 2002-03-02  Jim Meyering  <meyering@lucent.com>
54730
54731         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
54732         not HAVE_CLOCK_SETTIME.
54733
54734 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54735
54736         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
54737         Check for clock_settime.
54738
54739 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54740
54741         * lib/nanosleep.h: Rename to....
54742         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
54743
54744         * lib/gettime.c: New file.
54745         * lib/settime.c: New file.
54746         * lib/stime.c: Remove.
54747
54748         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
54749         timespec.h.  Remove nanosleep.h.
54750
54751 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54752
54753         * m4/acl.m4: New file.
54754         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
54755         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
54756
54757 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54758
54759         * lib/acl.c, lib/acl.h: New files.
54760         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
54761
54762 2002-02-24  Jim Meyering  <meyering@lucent.com>
54763
54764         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
54765         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
54766         cause trouble.  Reported by Nelson Beebe.
54767
54768 2002-02-23  Paul Eggert  <eggert@twinsun.com>
54769
54770         * lib/path-concat.c (xpath_concat): Reorder code to pacify
54771         compilers that don't know that xalloc_die never returns.
54772
54773 2002-02-20  Jim Meyering  <meyering@lucent.com>
54774
54775         * lib/getdate.c: Regenerate using bison-1.33.
54776
54777 2002-02-17  Jim Meyering  <meyering@lucent.com>
54778
54779         * config/config.guess (main): Don't use `head -1'; it's no longer
54780         portable. Use `sed 1q' instead.
54781
54782 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
54783
54784         * m4/codeset.m4: Upgrade to gettext-0.11.
54785         * m4/gettext.m4: Upgrade to gettext-0.11.
54786         * m4/glibc21.m4: Upgrade to gettext-0.11.
54787         * m4/iconv.m4: Upgrade to gettext-0.11.
54788         * m4/isc-posix.m4: Upgrade to gettext-0.11.
54789         * m4/lcmessage.m4: Upgrade to gettext-0.11.
54790         * m4/lib-ld.m4: New file, from gettext-0.11.
54791         * m4/lib-link.m4: New file, from gettext-0.11.
54792         * m4/lib-prefix.m4: New file, from gettext-0.11.
54793         * m4/progtest.m4: Upgrade to gettext-0.11.
54794
54795 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54796
54797         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
54798         (jm_PREREQ): Use it.
54799
54800 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54801
54802         * lib/posixver.c, lib/posixver.h: New files.
54803         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54804
54805 2002-02-02  Paul Eggert  <eggert@twinsun.com>
54806             Bruno Haible  <bruno@clisp.org>
54807
54808         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
54809         (fwrite_success_callback): New declaration.
54810         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
54811         print_unicode_char. Call failure callback instead of error.
54812         (fwrite_success_callback): New function.
54813         (exit_failure_callback): New function.
54814         (fallback_failure_callback): New function.
54815         (print_unicode_char): Call unicode_to_mb.
54816
54817 2002-01-26  Jim Meyering  <meyering@lucent.com>
54818
54819         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
54820         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
54821
54822 2002-01-26  Jim Meyering  <meyering@lucent.com>
54823
54824         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
54825
54826 2002-01-22  Paul Eggert  <eggert@twinsun.com>
54827
54828         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
54829
54830 2002-01-22  Jim Meyering  <meyering@lucent.com>
54831
54832         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
54833         Otherwise, some versions of automake would omit the rule that makes
54834         Makefile from Makefile.in.
54835
54836 2002-01-21  Paul Eggert  <eggert@twinsun.com>
54837
54838         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
54839         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54840         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
54841         (memcoll): Set errno to zero if there is no error.
54842
54843         * lib/quotearg.c (quotearg_buffer_restyled):
54844         Fix bug with quoting buffers containing NUL when backslashing escapes.
54845         This bug was exposed by the other changes in this patch.
54846         (quotearg_n_options): New arg ARGSIZE.
54847         All callers changed.
54848         (quoting_options_from_style): New function.
54849         (quotearg_n_style): Use it.
54850         (quotearg_n_style_mem): New function.
54851
54852         * lib/quotearg.h (quotearg_n_style_mem): New function.
54853
54854 2002-01-19  Jim Meyering  <meyering@lucent.com>
54855
54856         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
54857         Remove useless quotes: DF_PROG="df".
54858         * m4/strnlen.m4: New file.
54859
54860 2002-01-16  Paul Eggert  <eggert@twinsun.com>
54861
54862         * lib/backupfile.c (ISDIGIT): Comment fix.
54863         * lib/getdate.y (ISDIGIT): Likewise.
54864         * lib/posixtm.c (ISDIGIT, year): Likewise.
54865         * lib/strverscmp.c (ISDIGIT): Likewise.
54866         * lib/userspec.c (ISDIGIT): Likewise.
54867
54868 2002-01-16  Jim Meyering  <meyering@lucent.com>
54869
54870         * lib/getdate.y: Add three semicolons, each just before a closing
54871         brace. Bison (as of version 1.31) no longer papers over that mistake.
54872
54873 2002-01-05  Jim Meyering  <meyering@lucent.com>
54874
54875         * lib/version-etc.c (version_etc_copyright): Update copyright year.
54876
54877 2001-12-19  Paul Eggert  <eggert@twinsun.com>
54878
54879         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
54880         not silently exit merely because the output buffer happens to
54881         have nothing pending.
54882
54883 2001-12-18  Paul Eggert  <eggert@twinsun.com>
54884
54885         See the big note in ../ChangeLog.
54886         * lib/human.c (suffixes): Prefer K to k for 1024.
54887         (generate_suffix_backwards): New function.
54888         (human_readable_inexact): Use it.
54889         * lib/xstrtol.c (__xstrtol): If there is no number but there
54890         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
54891         Accept 'K' as well as 'k'.
54892
54893 2001-12-15  Jim Meyering  <meyering@lucent.com>
54894
54895         * lib/regex.h (__restrict_arr): Update from libc.
54896
54897         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
54898         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
54899         (STREQ): Define.
54900
54901 2001-12-14  Jim Meyering  <meyering@lucent.com>
54902
54903         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
54904         Suggestion from Bruno Haible.
54905
54906 2001-12-10  Jim Meyering  <meyering@lucent.com>
54907
54908         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
54909         xrealloc, Instead, include "xalloc.h".
54910         (initbuffer): Don't cast xmalloc return value to char*.
54911         (readline): Reword comment.
54912         Don't cast xrealloc return value to char*
54913         Return NULL, not 0.
54914
54915 2001-12-09  Jim Meyering  <meyering@lucent.com>
54916
54917         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
54918         about `signed and unsigned type in conditional expression'.
54919         * lib/posixtm.c (posix_time_parse): Likewise.
54920
54921         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
54922
54923         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
54924         to avoid a pedantic warning.
54925
54926         * lib/getstr.c: Don't include assert.h.
54927         (getstr): Remove warning-evoking assertions.
54928         Return -1 if offset parameter is out of bounds.
54929         Change the type of a local from int to size_t.
54930
54931         * lib/strftime.c (my_strftime_localtime_r): Include this function
54932         definition in the `#if ! HAVE_TM_GMTOFF' block.
54933
54934         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
54935         Include xalloc.h instead.
54936
54937 2001-12-02  Jim Meyering  <meyering@lucent.com>
54938
54939         * lib/tempname.c: Don't declare getenv, thus reverting the change of
54940         2001-11-18.  It's no longer necessary, now that stdlib.h is always
54941         included.
54942
54943         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
54944         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
54945
54946 2001-11-30  Akim Demaille  <akim@epita.fr>
54947
54948         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
54949         before being defined.
54950
54951 2001-11-27  Paul Eggert  <eggert@twinsun.com>
54952
54953         * lib/quotearg.h (quotearg_n, quotearg_n_style):
54954         First arg is int, not unsigned.
54955         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
54956         (SIZE_MAX, UINT_MAX): New macros.
54957         (quotearg_n_options): Abort if N is negative.
54958         Avoid overflow check on hosts where size_t is 64 bits and int
54959         is 32 bits, as overflow is impossible there.
54960         Fix off-by-one typo that caused unnecessary reallocation.
54961
54962 2001-11-27  Jim Meyering  <meyering@lucent.com>
54963
54964         * lib/tempname.c: Merge with version from libc.
54965         * lib/regex.c: Likewise.
54966
54967         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
54968         systems for which STDC_HEADERS is 0, it was not included, resulting in
54969         a warning about an integer-to-pointer conversion problem with getenv.
54970         Reported by Volker Borchert.
54971
54972 2001-11-26  Jim Meyering  <meyering@lucent.com>
54973
54974         * lib/gtod.h: Remove file.
54975         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
54976         * lib/gettimeofday.c: Don't include gtod.h.
54977         (GTOD_init): Remove function.
54978         (rpl_gettimeofday): Do its job here instead, rather than aborting.
54979         Suggestion from Volker Borchert.
54980
54981 2001-11-23  Jim Meyering  <meyering@lucent.com>
54982
54983         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
54984         it.
54985         * lib/hash.c (struct hash_table): Define it here instead.
54986
54987 2001-11-22  Jim Meyering  <meyering@lucent.com>
54988
54989         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
54990
54991 2001-11-20  Jim Meyering  <meyering@lucent.com>
54992
54993         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
54994         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
54995
54996 2001-11-19  Jim Meyering  <meyering@lucent.com>
54997
54998         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
54999         directory.  Use "conftestXXXXXX" as the template.
55000         Suggestion from Paul Eggert.
55001
55002         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
55003         immediately, so the test doesn't mistakenly hit the max-open-files
55004         limit.
55005
55006 2001-11-18  Paul Eggert  <eggert@twinsun.com>
55007
55008         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
55009         (TEMPORARIES): New macro.
55010         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
55011         removes an artificial limitation (e.g. HP-UX 10.20, where
55012         TMP_MAX is 17576).
55013
55014 2001-11-18  Jim Meyering  <meyering@lucent.com>
55015
55016         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
55017
55018 2001-11-18  Jim Meyering  <meyering@lucent.com>
55019
55020         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
55021         on SunOS 4.
55022
55023         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
55024         files will be created before anything else.
55025
55026 2001-11-17  Paul Eggert  <eggert@twinsun.com>
55027
55028         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
55029         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
55030
55031 2001-11-17  Jim Meyering  <meyering@lucent.com>
55032
55033         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
55034         Prompted by a report from Bob Proulx.
55035
55036         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
55037         Instead, require UTILS_FUNC_MKSTEMP.
55038
55039 2001-11-17  Jim Meyering  <meyering@lucent.com>
55040
55041         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
55042         Now, that's done as part of AC_FUNC_STRTOD.
55043
55044 2001-11-17  Jim Meyering  <meyering@lucent.com>
55045
55046         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
55047         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
55048         rather than group writable.  Patch by Juan F. Codagnone.
55049
55050         * lib/readtokens.c: Remove explicit declarations of xmalloc and
55051         xrealloc, Instead, include "xalloc.h".
55052
55053         * lib/mountlist.c: Include unlocked-io.h after all system headers.
55054         Remove explicit declarations of xmalloc, xrealloc,
55055         and xstrdup.  Instead, include "xalloc.h".
55056
55057         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
55058         unlocked-io.h.
55059         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
55060         Likewise.
55061         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
55062
55063         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
55064         Reported by Padraig Brady.
55065
55066         * lib/mkstemp.c: #undef mkstemp.
55067         Include config.h.
55068         (rpl_mkstemp): Rename from mkstemp.
55069         Protoize.
55070
55071 2001-11-16  Jim Meyering  <meyering@lucent.com>
55072
55073         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
55074         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
55075         determine the amount of total physical memory, use pstat_getstatic.
55076         HPUX-11 doesn't define _SC_PHYS_PAGES.
55077         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
55078         If sysconf couldn't be used to determine the amount of available
55079         physical memory, use both pstat_getstatic and pstat_getdynamic.
55080         Based on a patch from Bob Proulx.
55081
55082 2001-11-10  Jim Meyering  <meyering@lucent.com>
55083
55084         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
55085         (jm_PREREQ): Use it.
55086
55087 2001-11-09  Jim Meyering  <meyering@lucent.com>
55088
55089         * m4/jm-macros.m4: Require autoconf-2.52f.
55090         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
55091         Use these AC_-prefixed names, not the AM_-prefixed ones.
55092
55093         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
55094
55095 2001-11-05  Jim Meyering  <meyering@lucent.com>
55096
55097         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
55098
55099 2001-11-04  Jim Meyering  <meyering@lucent.com>
55100
55101         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
55102         $DEFS.
55103
55104 2001-11-03  Jim Meyering  <meyering@lucent.com>
55105
55106         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
55107         of AC_DEFUN.
55108
55109         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
55110         know the name of the variable in the macro definition.
55111
55112 2001-11-03  Jim Meyering  <meyering@lucent.com>
55113
55114         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
55115         in argmatch_to_argument call.
55116
55117         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
55118         argument.
55119
55120         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
55121         e.g., a fault due to an attempt to free a NULL pointer.
55122
55123 2001-11-01  Jim Meyering  <meyering@lucent.com>
55124
55125         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
55126         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
55127
55128 2001-11-01  Jim Meyering  <meyering@lucent.com>
55129
55130         * lib/dirfd.c, lib/dirfd.h: New files.
55131         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
55132
55133         * lib/hash.c (hash_print) [TESTING]: Clean up.
55134
55135 2001-10-22  Paul Eggert  <eggert@twinsun.com>
55136
55137         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
55138         to avoid a warning if -Wall.
55139
55140 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
55141
55142         * README: New file
55143         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
55144         (per RMS's instructions, this is now the canonical source)
55145         * lgpl/, gpl/: New directories.
55146
55147 2001-10-21  Paul Eggert  <eggert@twinsun.com>
55148
55149         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
55150
55151 2001-10-21  Jim Meyering  <meyering@lucent.com>
55152
55153         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
55154         this code would end up calling gettext even in packages built
55155         with --disable-nls.
55156         * lib/getopt.c (_): Likewise.
55157         * lib/regex.c (_): Likewise.
55158
55159 2001-10-20  Paul Eggert  <eggert@twinsun.com>
55160
55161         * m4/error.m4 (jm_PREREQ_ERROR):
55162         Do not invoke AC_CHECK_FUNCS with strerror_r, as
55163         AC_FUNC_STRERROR_R does that.
55164         Check for strerror declaration.
55165
55166         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
55167         are supposed to have them these days.
55168         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
55169         Merge changes from latest Autoconf CVS.
55170         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
55171         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
55172         POSIX decided to standardize on the int flavor of strerror_r.
55173
55174 2001-10-20  Paul Eggert  <eggert@twinsun.com>
55175
55176         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
55177         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
55178         Use strerror_r that is only a macro, even if it is not a function.
55179         (strerror): Check for HAVE_DECL_STRERROR before declaring.
55180         (private_strerror): Use prototypes, not old-style function definition.
55181         (print_errno_message): New function.
55182         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
55183         char*-flavored one.
55184         (error_tail, error, error_at_line): Use it.
55185
55186 2001-10-11  Jim Meyering  <meyering@lucent.com>
55187
55188         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
55189         and quote_n (1, ... to avoid clobbering a buffer.
55190
55191 2001-10-05  Jim Meyering  <meyering@lucent.com>
55192
55193         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
55194         hash-pjw.h.
55195         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
55196         * lib/hash-pjw.h: New file.
55197
55198 2001-09-30  Jim Meyering  <meyering@lucent.com>
55199
55200         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
55201         `struct fsstat' has the `f_fstypename' member.
55202         Use that to define FS_TYPE, which is now used to make
55203         the getfsstat link test tighter.
55204
55205 2001-09-30  Jim Meyering  <meyering@lucent.com>
55206
55207         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
55208         Include <sys/ucred.h>, for Apple Darwin.
55209         Include sys/mount.h and sys/fs_types.h only if available.
55210         (FS_TYPE): Define.
55211         (read_filesystem_list): Use FS_TYPE.
55212
55213 2001-09-29  Paul Eggert  <eggert@twinsun.com>
55214
55215         * lib/exclude.c (excluded_filename): 0 -> false, since it's
55216         a boolean context.
55217
55218 2001-09-29  Jim Meyering  <meyering@lucent.com>
55219
55220         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
55221         [one-argument getmntent function]): Include stdio.h before mntent.h.
55222         SunOS 4.1.x needs it for the declaration of `FILE'.
55223         Patch by Volker Borchert.
55224
55225         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
55226         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
55227         sys/fs_types.h, and make the link-test for getfsstat guard #include
55228         directives with appropriate #if HAVE_*_H tests so that we can
55229         detect getfsstat on Apple Darwin1.3.7 systems.
55230         Reported by Nelson Beebe.
55231         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
55232
55233 2001-09-28  Paul Eggert  <eggert@twinsun.com>
55234
55235         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
55236         #defines strtoimax.  Also treat the other strto* functions
55237         like strtoimax.
55238
55239         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55240         Check for strtoul and strtoumax,
55241         as those declarations are made even in the signed case.
55242         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
55243         Likewise, for strtol and strtoimax.
55244
55245 2001-09-28  Paul Eggert  <eggert@twinsun.com>
55246
55247         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
55248         #defines strtoimax.  Also treat the other strto* functions
55249         like strtoimax.
55250
55251         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
55252         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
55253         (strtoimax, strtoumax): Do not declare if already defined as a macro.
55254
55255 2001-09-26  Jim Meyering  <meyering@lucent.com>
55256
55257         Most macros in unlocked-io.h had the wrong number of arguments.
55258         * lib/gen-uio: New script.
55259         (USE_UNLOCKED_IO): Define to 1 if not already defined.
55260         * lib/unlocked-io.hin: Remove file.
55261         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
55262         rather than trying to embed it here.
55263         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
55264         Reported by Padraig Brady.
55265
55266 2001-09-25  Volker Borchert  <bt@teknon.de>
55267
55268         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
55269         `result'.
55270
55271 2001-09-24  Jim Meyering  <meyering@lucent.com>
55272
55273         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
55274
55275 2001-09-23  Jim Meyering  <meyering@lucent.com>
55276
55277         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
55278         instead of the mere test for existence of mntent.h.  The latter
55279         would get a false-positive on AIX 3.4 systems.
55280         In the outer getmntent if-block, don't die if neither of the getmntent
55281         tests succeeds.  Instead, just fall through and continue with the
55282         remaining tests.
55283
55284 2001-09-23  Jim Meyering  <meyering@lucent.com>
55285
55286         * lib/mountlist.c: Remove useless parentheses in #if directives.
55287         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
55288         the deprecated MOUNTED symbol is no longer defined in mntent.h.
55289
55290 2001-09-22  Jim Meyering  <meyering@lucent.com>
55291
55292         * m4/gettext.m4: New file.  From gettext.
55293         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
55294         * m4/progtest.m4: Likewise
55295         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
55296         * m4/glibc21.m4: Likewise.
55297
55298         * m4/libintl.m4: Remove.  No longer used.
55299
55300 2001-09-22  Jim Meyering  <meyering@lucent.com>
55301
55302         * lib/localcharset.c: Update from latest gettext.
55303         * lib/config.charset: Likewise.
55304
55305 2001-09-20  Jim Meyering  <meyering@lucent.com>
55306
55307         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
55308         strtoimax.
55309         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
55310         strtoumax.
55311
55312 2001-09-20  Jim Meyering  <meyering@lucent.com>
55313
55314         * lib/xstrtol.c (strtoimax): Guard declaration with
55315         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
55316         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
55317         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
55318         (strtoumax): Likewise, for completeness (it wasn't necessary).
55319
55320 2001-09-17  Paul Eggert  <eggert@twinsun.com>
55321
55322         * lib/strtoimax.c (HAVE_LONG_LONG):
55323         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
55324         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
55325         to work around bug in IBM C compiler.
55326
55327 2001-09-17  Jim Meyering  <meyering@lucent.com>
55328
55329         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
55330         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
55331         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
55332         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
55333         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
55334         whenever the right hand side need not be expanded by the shell.
55335
55336 2001-09-16  Paul Eggert  <eggert@twinsun.com>
55337
55338         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
55339         library.  It's not correct, as some older glibcs are buggy.
55340         fnmatch wasn't fixed until glibc 2.2.
55341
55342         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
55343         special shell magic here.
55344
55345 2001-09-16  Jim Meyering  <meyering@lucent.com>
55346
55347         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
55348         * m4/jm-macros.m4: Require it.
55349
55350 2001-09-16  Jim Meyering  <meyering@lucent.com>
55351
55352         * lib/mkdir.c: New file.
55353
55354 2001-09-15  Jim Meyering  <meyering@lucent.com>
55355
55356         * m4/jm-macros.m4: Check for help2man.
55357
55358 2001-09-11  Jim Meyering  <meyering@lucent.com>
55359
55360         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
55361         The body, by Paul Eggert, was moved here from configure.in.
55362         * m4/jm-macros.m4: Require UTILS_HOST_OS.
55363
55364 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55365
55366         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
55367         (jm_PREREQ): Use it.
55368
55369 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55370
55371         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
55372         Use ssize_t, not int, to store result of readlink.
55373         Check for ssize_t overflow as well as size_t overflow,
55374         as POSIX says the result of readlink is implementation-defined
55375         when ssize_t overflows.
55376         Remove unnecessary cast to char*.
55377         Use free+malloc instead of realloc, as the storage doesn't need
55378         to be preserved and it's clearer and can be more efficient that way.
55379         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
55380         * lib/xreadlink.h (xreadlink): Update prototype.
55381
55382 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55383
55384         * lib/xgetcwd.c: Revert some of the previous change; intead,
55385         fix the HAVE_GETCWD_NULL code to behave more like the
55386         !HAVE_GETCWD_NULL code used to.
55387
55388         Include "xalloc.h".
55389         (xgetcwd): Do not return NULL when memory is exhausted; instead,
55390         invoke xalloc_die.
55391
55392 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55393
55394         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
55395         sys/param.h, as pathmax.h includes them.
55396
55397 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55398
55399         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
55400         (jm_PREREQ_XGETCWD): New macro.
55401
55402         * m4/getcwd.m4: New file.
55403
55404 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55405
55406         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
55407         like the HAVE_GETCWD_NULL code.
55408         Include pathmax.h if not HAVE_GETCWD.
55409         Do not include xalloc.h.
55410         (INITIAL_BUFFER_SIZE): New symbol.
55411         Do not use xmalloc / xrealloc, since the caller is responsible for
55412         handling errors.  Preserve errno around `free' during failure.
55413         Do not overrun buffer when using getwd.
55414
55415 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55416
55417         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
55418         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
55419         getcwd (NULL, 0).
55420
55421 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55422
55423         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
55424         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
55425         spotted by Jim Meyering.
55426
55427 2001-09-03  Jim Meyering  <meyering@lucent.com>
55428
55429         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
55430         failure.
55431
55432 2001-09-02  Jim Meyering  <meyering@lucent.com>
55433
55434         * lib/error.c: Update from GNU libc.
55435
55436 2001-09-01  Jim Meyering  <meyering@lucent.com>
55437
55438         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
55439         Used by df.
55440
55441 2001-09-01  Jim Meyering  <meyering@lucent.com>
55442
55443         * lib/xreadlink.c: New file.
55444         * lib/xreadlink.h: New file.
55445         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
55446         xreadlink.h.
55447
55448         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
55449         doesn't conflict with sparc Solaris 7's definition in
55450         /usr/include/sys/int_types.h.
55451
55452         * lib/exclude.c: Use `""', not `<>' to #include non-system header
55453         files.
55454         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
55455         and strncasecmp as r-values.  Unixware didn't have declarations.
55456
55457 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55458
55459         * lib/xstrtol.h: Add copyright notice.
55460         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
55461         LONGINT_INVALID_SUFFIX_CHAR.
55462
55463 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55464
55465         * lib/xstrtol.c (strtoimax): New decl.
55466
55467 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55468
55469         * lib/xgetcwd.c: Don't include pathmax.h.
55470         Include stdlib.h and unistd.h if available.
55471         Include xalloc.h.
55472         (xmalloc, xstrdup, free): Remove decls.
55473         (xgetcwd): Don't assume sizes fit in unsigned.
55474         Check for overflow when computing sizes.
55475         Simplify reallocation code.
55476
55477 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55478
55479         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
55480         a directory's st_size can have an arbitrary value, so the old
55481         usage could waste an arbitrary amount of memory.  All uses
55482         changed.
55483         * lib/savedir.h: Update prototype.
55484
55485 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55486
55487         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
55488
55489         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
55490         old strtoimax.c.
55491
55492         Also, make the following further changes to make this file's
55493         configuration more similar to that of strtol.c:
55494         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
55495         (strtoumax, uintmax_t, strtoull, strtol): Remove.
55496         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
55497         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
55498         changed to signed values.
55499
55500         And make the following changes as well:
55501         Fix copyright notice, as 1999 was missing.
55502         (verify): New macro.
55503         (strtoimax): Check sizes at compile-time, not run-time.
55504         Prefer strtol to strtoll if both work.
55505         (main): Remove; it was not that useful and was a pain to maintain.
55506
55507         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
55508
55509 2001-08-31  Jim Meyering  <meyering@lucent.com>
55510
55511         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
55512         Use an initial, malloc'd, buffer of length 128 rather than
55513         a statically allocated one of length 1024.
55514
55515 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55516
55517         Simplify code, partly by assuming autoconf 2.52 semantics.
55518
55519         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
55520
55521         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
55522         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
55523         All uses removed.
55524         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
55525         Move AC_REQUIRE to next-to-top level, to avoid confusion.
55526         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
55527         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
55528         jm_AC_HEADER_INTTYPES_H.
55529         * m4/jm-macros.m4 (jm_MACROS): Likewise.
55530
55531         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
55532
55533         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55534         Quote first arg of AC_DEFUN.
55535         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
55536         since they are needed to parse the include file even if we need
55537         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
55538         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
55539         but with opposite signedness.
55540
55541 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55542
55543         Merge 'exclude' changes from tar 1.13.22.
55544         This fixes one or two unlikely storage allocation overflow bugs,
55545         but doesn't change user-visible behavior otherwise.
55546
55547 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55548
55549         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
55550         (jm_PREREQ_EXCLUDE): New macro.
55551
55552 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55553
55554         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
55555         tm to be declared.
55556
55557 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55558
55559         * lib/hash.c: Remove '2001' from copyright notice.
55560
55561 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55562
55563         * lib/full-write.h: New file.
55564         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
55565         * lib/full-write.c: Correct credits, as cccp.c no longer
55566         exists and anyway it was so heavily changed from the old cccp
55567         code as to be unrecognizable.  Include full-write.h.
55568         (full_write) Return size_t, with short writes meaning failure.
55569         All callers changed.  This fixes a bug with large buffers
55570         on 64-bit hosts.
55571         * lib/utime.c: Include full-write.h.
55572
55573 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55574
55575         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
55576         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
55577         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
55578         Include if available.
55579         (<xalloc.h>): Include
55580         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
55581         (verify): New macro.  Use it to verify that EXCLUDE macros do not
55582         collide with FNM macros.
55583         (struct patopts): New struct.
55584         (struct exclude): Use it, as exclude patterns now come with options.
55585         (new_exclude): Support above changes.
55586         (new_exclude, add_exclude_file):
55587         Initial size must now be a power of two to simplify overflow checking.
55588         (free_exclude, fnmatch_no_wildcards): New function.
55589         (excluded_filename): No longer requires options arg, as the options
55590         are determined by add_exclude.  Now returns bool, not int.
55591         (excluded_filename, add_exclude):
55592         Add support for the fancy new exclusion options.
55593         (add_exclude, add_exclude_file): Now takes int options arg.
55594         Check for arithmetic overflow when computing sizes.
55595         (add_exclude_file): xrealloc might modify errno, so don't
55596         realloc until after errno might be used.
55597
55598         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
55599         New macros.
55600         (free_exclude): New decl.
55601         (add_exclude, add_exclude_file): Now takes int options arg.
55602         (excluded_filename): No longer requires options arg, as the options
55603         are determined by add_exclude.  Now returns bool, not int.
55604
55605 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55606
55607         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
55608
55609 2001-08-27  Jim Meyering  <meyering@lucent.com>
55610
55611         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
55612
55613         * lib/version-etc.c (N_): Remove definition.
55614         Revert most of last change.
55615         Instead, simply don't mark the `Copyright...' string for translation.
55616         Based on advice from Paul Eggert.
55617
55618         * lib/strtoxmax.c: Tweak comment.
55619
55620 2001-08-26  Jim Meyering  <meyering@lucent.com>
55621
55622         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
55623
55624         * m4/xstrtoimax.m4: New file.
55625         * m4/xstrtoumax.m4: Add comments explaining why we
55626         AC_REPLACE_FUNCS(strtol).
55627
55628 2001-08-26  Jim Meyering  <meyering@lucent.com>
55629
55630         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
55631         of copyright with `%s' so translators don't get an untranslated
55632         message in 2002.
55633         (COPYRIGHT_YEAR): Define.
55634         (version_etc): Use fprintf rather than fputs.
55635         Suggestion from Ulrich Drepper.
55636
55637         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
55638
55639         * lib/strtoll.c: New file, from GNU libc.
55640         * lib/xstrtoimax.c: New file.
55641
55642         * lib/xstrtol.h: Add xstrtoimax.
55643         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
55644         * lib/strtoimax.c: New file.  Likewise, but first define
55645         STRTOUXMAX_SIGNED.
55646
55647         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
55648         ...
55649         * lib/strtoxmax.c: ... then renamed to this.
55650
55651 2001-08-18  Paul Eggert  <eggert@twinsun.com>
55652
55653         * m4/inttypes.m4: Add AC_PREREQ(2.13).
55654         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
55655         (jm_AC_TYPE_INTMAX_T): New macro.
55656         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
55657
55658         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
55659
55660         * m4/longlong.m4: Renamed from ulonglong.m4.
55661         * m4/inttypes.m4: Renamed from inttypes_h.m4.
55662         * m4/uintmax_t.m4: Removed.
55663
55664 2001-08-13  Paul Eggert  <eggert@twinsun.com>
55665
55666         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
55667         Port to Solaris 8, where 'sed' requires a space after the 'r'
55668         command, and where sh dislikes "$/".  Clean up the spacing a bit.
55669         Redirect output to $tmp just once.
55670
55671 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
55672
55673         * lib/addext.c (<errno.h>): Include.
55674         (errno): Declare if not defined.
55675         (addext): Work correctly when pathconf returns -1 and leaves
55676         errno alone because there is no limit.  Also, work even if
55677         pathconf returns a value greater than SIZE_MAX.
55678
55679 2001-08-12  Jim Meyering  <meyering@lucent.com>
55680
55681         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
55682         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
55683         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
55684         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
55685         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
55686         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
55687         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
55688         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
55689         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
55690         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
55691         utime.m4, utimes.m4, xstrtoumax.m4:
55692         Quote the first argument in each use of AC_DEFUN.
55693
55694 2001-08-12  Jim Meyering  <meyering@lucent.com>
55695
55696         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
55697         Simply `return getcwd (NULL, 0);'.
55698         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
55699         Use 1300 as initial value for length, not PATH_MAX.
55700
55701         * lib/pathmax.h: Clean up cpp syntax.
55702
55703 2001-08-12  Jim Meyering  <meyering@lucent.com>
55704
55705         * lib/gettimeofday.c: New file.
55706         * lib/gtod.h: New file.
55707         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
55708
55709 2001-08-05  Jim Meyering  <meyering@lucent.com>
55710
55711         * m4/jm-macros.m4: Require autoconf-2.52.
55712
55713 2001-08-04  Jim Meyering  <meyering@lucent.com>
55714
55715         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
55716         stmt, to get in sync with glibc.
55717
55718 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55719
55720         The following changes are from gettext 0.10.39 as maintained by
55721         Bruno Haible.
55722
55723         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
55724         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
55725         with inverted sense.  All uses changed.
55726
55727         * lib/mbswidth.c: Don't include <limits.h>.
55728         Include <stdlib.h> and <string.h> unconditionally.
55729         (iswcntrl, mbsinit, ISCNTRL): New macros.
55730         (mbsnwidth): Use K&R style function declarations.
55731         Don't bother checking for MB_LEN_MAX == 1, since the compiler
55732         can optimize it when MB_CUR_MAX == 1.
55733         The width of control characters is zero, not 1.
55734
55735 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55736
55737         The following changes are from gettext 0.10.39 as maintained by
55738         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
55739
55740         * m4/codeset.m4: Upgrade to serial AM1.
55741         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
55742         all uses changed.  Quote first arg of AC_DEFUN.
55743         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
55744
55745         * m4/iconv.m4: Upgrade to serial AM2.
55746         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
55747         Add --with-libconv-prefix.
55748         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
55749         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
55750         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
55751         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
55752         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
55753
55754         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
55755         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
55756         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
55757         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
55758         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
55759         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
55760         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
55761         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
55762         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
55763
55764         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
55765         string.h any more.
55766
55767         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
55768         not the default value.
55769
55770         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
55771         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
55772         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
55773         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
55774         Also check for iswcntrl, used for wcwidth fallback.
55775         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
55776         to Autoconf 2.13.
55777
55778 2001-08-03  Jim Meyering  <meyering@lucent.com>
55779
55780         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
55781         as it was in the original.  Reported by Paul Eggert.
55782
55783 2001-07-16  Jim Meyering  <meyering@lucent.com>
55784
55785         * m4/gettimeofday.m4: New file.
55786         Prompted by a report from Bernhard Baehr.
55787
55788 2001-07-15  Jim Meyering  <meyering@lucent.com>
55789
55790         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
55791         stuff. Now it's in ../Makefile.cfg.
55792
55793 2001-07-15  Jim Meyering  <meyering@lucent.com>
55794
55795         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
55796         (BUILT_SOURCES): Add unlocked-io.h.
55797         (io_functions): Define.
55798         (unlocked-io.h): New rule.
55799         (DISTCLEANFILES): Add unlocked-io.h.
55800         (all-local): Depend on unlocked-io.h, to ensure it is created.
55801
55802         * lib/unlocked-io.hin: New file
55803
55804         * lib/regex.c: Update from glibc.
55805
55806 2001-07-05  Jim Meyering  <meyering@lucent.com>
55807
55808         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
55809         recommendation.
55810         (libfetish_a_SOURCES): Put all .h files here instead.
55811         Remove a thus-exposed (better checks in automake) duplicate and
55812         two unnecessary .h files.
55813
55814 2001-07-04  Jim Meyering  <meyering@lucent.com>
55815
55816         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
55817         that generates jm-glibc-io.m4 so that it doesn't trigger any make
55818         distcheck failure.
55819
55820 2001-07-02  Jim Meyering  <meyering@lucent.com>
55821
55822         The following changes were prompted by suggestions from Bruno Haible.
55823
55824         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
55825         is now generated.
55826         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
55827         definition of EXTRA_DIST.
55828         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
55829         ensure that the generated file is created/updated whenever the list
55830         of $(unlocked_functions) is changed.
55831         (jm-glibc-io.m4): New rule.
55832         (unlocked-io.h): New rule -- currently unused.
55833
55834 2001-06-24  Jim Meyering  <meyering@lucent.com>
55835
55836         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
55837         unmatched right bracket, rather than kludging it with an extra,
55838         falsely-matching quote in a comment.  Patch by Akim Demaille.
55839
55840 2001-06-11  Jim Meyering  <meyering@lucent.com>
55841
55842         * lib/regex.c: Update from GNU libc.
55843
55844 2001-05-27  Jim Meyering  <meyering@lucent.com>
55845
55846         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
55847         Check for ut_type in struct utmp.
55848
55849 2001-05-27  Jim Meyering  <meyering@lucent.com>
55850
55851         * lib/readutmp.h (UT_TYPE): Define.
55852
55853 2001-05-24  Jim Meyering  <meyering@lucent.com>
55854
55855         * lib/argmatch.c: Include "quote.h".
55856         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
55857         quote function.  Reported by Göran Uddeborg.
55858
55859 2001-05-22  Jim Meyering  <meyering@lucent.com>
55860
55861         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
55862         now that we use the package-supplied version unconditionally.
55863         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
55864
55865 2001-05-21  Jim Meyering  <meyering@lucent.com>
55866
55867         * m4/regex.m4: Change a couple backticks to single quotes to avoid
55868         shell syntax errors.
55869
55870 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55871
55872         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
55873
55874 2001-05-20  Paul Eggert  <eggert@twinsun.com>
55875
55876         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
55877         Don't bother to check library strftime, since
55878         we'll be using our own my_strftime function anyway.
55879         Define my_strftime instead of strftime.
55880
55881 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
55882
55883         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
55884         which is not yet declared.
55885
55886 2001-05-15  Jim Meyering  <meyering@lucent.com>
55887
55888         * m4/regex.m4: Use proper quoting so brackets appear in the test
55889         program.
55890         Reported by, and with help from, Bruno Haible.
55891
55892 2001-05-13  Jim Meyering  <meyering@lucent.com>
55893
55894         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
55895         undefined.
55896
55897 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55898
55899         dirname code cleanup.  base_name now behaves more compatibly
55900         with POSIX basename when given file names that have trailing
55901         slashes, and similarly for dir_name.  Add new primitives
55902         base_len and dir_len.  Put the directory-name-related decls
55903         into dirname.h.
55904
55905         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
55906         * lib/backupfile.c (base_name): Likewise.
55907         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
55908         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
55909         * lib/makepath.c (strip_trailing_slashes): Likewise.
55910         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
55911         ISSLASH): Likewise.
55912         * lib/rename.c (strip_trailing_slashes): Likewise.
55913         * lib/same.c (base_name): Likewise.
55914         * lib/stripslash.c (ISSLASH): Likewise.
55915
55916         * lib/addext.c: Include <dirname.h> after size_t is defined.
55917         * lib/backupfile.c: Likewise.
55918
55919         * lib/addext.c (addext): Use base_len to trim redundant
55920         trailing slashes instead of doing it ourselves.
55921         But do not trim the last slash if it is not redundant.
55922
55923         * lib/backupfile.c (find_backup_file_name,
55924         max_backup_version): Use base_len instead of rolling it ourselves.
55925         Handle the case of "" and (on DOS) "C:" correctly.
55926
55927         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
55928         needed. Include <string.h>, <dirname.h>.
55929         (base_name): Allow file names ending in slashes, other than names
55930         that are all slashes.  In this case, return the basename followed
55931         by the slashes.  This is more general, and can be used in places
55932         where the original base_name purposely had an assertion failure.
55933         (base_len): New function.
55934
55935         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
55936         Do not include <assert.h>; no longer needed.
55937         Include xalloc.h.
55938         (memrchr): Remove decl.
55939         (dir_name_r): Remove.
55940         (dir_len): Renamed from dirlen.  All callers changed.
55941         Rewrite in terms of base_name, for simplicity and consistency.
55942         (dir_name): Never return NULL.  All callers changed.
55943         Do not include <stdlib.h> in test program; no longer needed.
55944         return 0; is fine for test program.
55945
55946         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
55947         New macros.
55948         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
55949
55950         * lib/path-concat.c (path_concat): Use base_len to compute
55951         base length, not strlen; this means we cannot rely on memcpy
55952         to null-terminate.
55953
55954         * lib/same.c (STREQ): Remove.
55955         (same_name): Handle the case where the basename ends in trailing '/'.
55956
55957         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
55958         a slash was stripped.  Do not strip the last slash after a
55959         file system prefix.
55960
55961 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55962
55963         * lib/Makefile.am (libfetish_a_SOURCES):
55964         Add strftime.c, since we now compile it on all hosts.
55965
55966         * lib/strftime.c (my_strftime):
55967         Define to nstrftime if emacs, but only if my_strftime is not defined.
55968         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
55969         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
55970         Add one more extra argument: a nanoseconds value.
55971         All uses changed.
55972         (ns): New macro.
55973         (my_strftime function): Add %N format.
55974         (emacs_strftimeu): Renamed from emacs_strftime,
55975         with extra ut argument.
55976
55977 2001-05-09  Paul Eggert  <eggert@twinsun.com>
55978
55979         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
55980
55981 2001-04-21  Jim Meyering  <meyering@lucent.com>
55982
55983         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
55984         doesn't interfere.
55985
55986 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55987
55988         * m4/ftruncate.m4: Check for chsize.
55989         Link with ftruncate.o unconditionally if ftruncate is missing.
55990         This was required when cross-compiling to i586-mingw32msvc.
55991
55992 2001-04-08  Jim Meyering  <meyering@lucent.com>
55993
55994         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
55995         recomputed; that's necessary when the offset spans a DST transition.
55996         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
55997
55998 2001-04-02  Jim Meyering  <meyering@lucent.com>
55999
56000         * lib/regex.h, regex.c: Update from GNU libc.
56001
56002 2001-03-24  Jim Meyering  <meyering@lucent.com>
56003
56004         * m4/jm-macros.m4: Require autoconf-2.49d.
56005
56006 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
56007
56008         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
56009
56010 2001-03-19  Paul Eggert  <eggert@twinsun.com>
56011
56012         * lib/version-etc.c (version_etc_copyright): Update to 2001.
56013
56014 2001-03-17  Jim Meyering  <meyering@lucent.com>
56015
56016         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
56017         now that the version in autoconf is equivalent.
56018         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
56019
56020         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
56021         Suggestion from Akim Demaille.
56022
56023         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
56024         (jm_PREREQ_TEMPNAME): New function.
56025
56026 2001-03-16  Paul Eggert  <eggert@twinsun.com>
56027
56028         * lib/tempname.c (uint64_t): Define to uintmax_t if
56029         not defined, and if UINT64_MAX is not defined.
56030         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
56031         Reported by John David Anglin.
56032
56033 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
56034
56035         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
56036         resolve alias if codeset is empty.
56037         * lib/config.charset (BeOS): Use wildcard syntax.
56038
56039 2001-03-13  Jim Meyering  <meyering@lucent.com>
56040
56041         * lib/path-concat.c (path_concat)
56042         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
56043         concatenating e.g., `C:' and `foo'.
56044         From Bruno Haible.
56045
56046 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
56047
56048         * lib/localcharset.c (locale_charset): Don't use
56049         setlocale(LC_CTYPE,NULL). Don't return NULL.
56050         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
56051
56052 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
56053
56054         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
56055         support for DOS/DJGPP.
56056
56057 2001-03-01  Paul Eggert  <eggert@twinsun.com>
56058
56059         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
56060         lacks mkstemp.  Compile our own tempname.c if we compile our own
56061         mkstemp.c, as mkstemp relies on tempname.
56062
56063 2001-03-01  Jim Meyering  <meyering@lucent.com>
56064
56065         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
56066         AH_VERBATIM really does output its argument verbatim.
56067
56068 2001-02-28  Paul Eggert  <eggert@twinsun.com>
56069
56070         * lib/Makefile.am (libfetish_a_SOURCES):
56071         Add dup-safer.c, fopen-safer.c.
56072         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
56073
56074         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
56075         * lib/unistd-safer.h: New files.
56076
56077 2001-02-25  Paul Eggert  <eggert@twinsun.com>
56078
56079         The mkstemp replacement is taken from glibc 2.2.2, with some
56080         portability fixes for use outside glibc, as follows:
56081
56082         * lib/tempname.c (struct_stat64): New macro.
56083         (direxists, __gen_tempname): Use it.
56084         This avoids a portability problem with Solaris 8.
56085
56086         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
56087         (<stddef.h>, <stdint.h>, <string.h>):
56088         Include only if STDC_HEADERS || _LIBC.
56089         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
56090         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
56091         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
56092         (__set_errno): Define this macro if <errno.h> doesn't.
56093         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
56094         Define these macros if <stdio.h> doesn't.
56095         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
56096         Define these macros if <sys/stat.h>
56097         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
56098         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
56099         __xstat64): Define if not _LIBC.
56100         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
56101         (__gen_tempname): Invoke gettimeofday only if
56102         HAVE_GETTIMEOFDAY || _LIBC;
56103         otherwise, fall back on plain "time".
56104         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
56105
56106         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
56107
56108         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
56109
56110 2001-02-18  Paul Eggert  <eggert@twinsun.com>
56111
56112         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
56113
56114 2001-02-17  Paul Eggert  <eggert@twinsun.com>
56115
56116         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
56117         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
56118         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
56119         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
56120
56121 2001-02-17  Paul Eggert  <eggert@twinsun.com>
56122
56123         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
56124         Remove workaround macros for hosts that have mbrtowc but not
56125         mbstate_t, as we now insist on proper declarations for both
56126         before using mbrtowc.
56127
56128 2001-02-17  Jim Meyering  <meyering@lucent.com>
56129
56130         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
56131         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
56132         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
56133         UnixWare 7.1.1.
56134
56135         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
56136         rather than AC_CACHE_VAL.
56137
56138 2001-02-17  Jim Meyering  <meyering@lucent.com>
56139
56140         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
56141         around included file name.
56142
56143         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
56144
56145         * lib/strftime.c: Update from GNU libc (the only changes were to
56146         comments).
56147
56148 2001-02-17  Jim Meyering  <meyering@lucent.com>
56149
56150         * lib/regex.c: Update from libc.
56151
56152 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
56153
56154         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
56155         clash.
56156
56157 2001-02-16  Paul Eggert  <eggert@twinsun.com>
56158
56159         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
56160         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
56161         Reported by Mark Hounschell via Paul Eggert.
56162
56163 2001-02-07  Jim Meyering  <meyering@lucent.com>
56164
56165         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
56166
56167 2001-02-05  Jim Meyering  <meyering@lucent.com>
56168
56169         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
56170         it includes the patch required for `large file' support with at least
56171         HP-UX's 10.20 /bin/cc.
56172
56173 2001-02-03  Jim Meyering  <meyering@lucent.com>
56174
56175         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
56176         AS_IF, now that it works once again (mysteriously).
56177         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
56178
56179 2001-01-30  Jim Meyering  <meyering@lucent.com>
56180
56181         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
56182         * m4/chown.m4: Rename conftestchown to conftest.chown.
56183         * m4/rename.m4: s/conftestdir/conftest.d1/ and
56184         s/conftestdir2/conftest.d2/.
56185         * m4/utimes.m4: s/conftestdata/conftest.data/
56186         Inspired by Pavel Roskin's change in autoconf.
56187
56188 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
56189
56190         * lib/config.charset: Update for FreeBSD 4.2.
56191
56192 2001-01-27  Jim Meyering  <meyering@lucent.com>
56193
56194         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
56195         a use of AS_IF.
56196         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
56197
56198 2001-01-26  Jim Meyering  <meyering@lucent.com>
56199
56200         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
56201         quotearg.c includes it.
56202
56203 2001-01-26  Jim Meyering  <meyering@lucent.com>
56204
56205         * lib/quotearg.c: Include stddef.h.
56206         * lib/quote.c: Include stddef.h.
56207         Reported by Axel Kittenberger.
56208
56209         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
56210         line in double quotes so that it evokes a better diagnostic.
56211         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
56212         Reported by Axel Kittenberger.
56213
56214 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
56215
56216         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
56217         as if it was a `charset'.
56218
56219 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
56220
56221         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
56222         has const.
56223
56224 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
56225
56226         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
56227         to avoid a warning.  Add back 'const' to inptr.
56228
56229 2001-01-20  Jim Meyering  <meyering@lucent.com>
56230
56231         Be sure that headers are checked before used in code compiled
56232         for the type checks.
56233         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
56234         In place of that, invoke jm_CHECK_ALL_TYPES.
56235         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
56236         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
56237         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
56238         The check for ssize_t was mistakenly run before the test for unistd.h.
56239
56240         The configure-time check for stdbool.h was missing.
56241         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
56242         (jm_PREREQ_HASH): New function.
56243
56244 2001-01-17  Jim Meyering  <meyering@lucent.com>
56245
56246         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
56247         for autoconf-2.49c.
56248         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
56249
56250 2001-01-16  Jim Meyering  <meyering@lucent.com>
56251
56252         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
56253         From Bruno Haible.
56254
56255 2001-01-14  Jim Meyering  <meyering@lucent.com>
56256
56257         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
56258         foo and bar.  Create conftestdir/ in the script, not in the C code.
56259         Remove directories in the script, not in the C code.
56260         Remove conftestdir{,2} before trying to create the directory.
56261         Make the entire configure script fail if the mkdir fails.
56262
56263 2001-01-14  Jim Meyering  <meyering@lucent.com>
56264
56265         * lib/rename.c: New file.  From Volker Borchert.
56266         Include stdlib.h, string.h or strings.h, and xalloc.h.
56267         Use strip_trailing_slashes rather than open-coding it.
56268
56269 2001-01-03  Paul Eggert  <eggert@twinsun.com>
56270
56271         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
56272
56273 2001-01-03  Jim Meyering  <meyering@lucent.com>
56274
56275         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
56276         of local `inptr' to avoid warning with some system declarations of
56277         iconv.
56278
56279 2001-01-02  Volker Borchert  <bt@teknon.de>
56280
56281         * m4/rename.m4: New file.
56282         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
56283
56284 2001-01-01  Jim Meyering  <meyering@lucent.com>
56285
56286         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
56287         even on systems with utmpx.h.  It's necessary for the declaration of
56288         utmp's ut_user member.  Reported by Andreas Jaeger.
56289
56290         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
56291         available. They are required for the declarations of getgrgid and
56292         getpwuid resp.
56293         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
56294         Reported by Andreas Jaeger.
56295
56296 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
56297
56298         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
56299         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
56300         so `make install' also works in VPATH builds.
56301
56302 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
56303
56304         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
56305         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
56306         can be used in subdirectories.
56307
56308 2000-12-29  Paul Eggert  <eggert@twinsun.com>
56309
56310         * lib/modechange.c: Do not assume that mode_t uses the
56311         traditional octal encoding.  E.g. "chmod 1 FOO" should set
56312         the other-execute bit of FOO even if S_IXOTH != 1.
56313
56314         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
56315         WOTH, XOTH, ALLM): New macros.
56316         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
56317          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
56318         Use them.
56319         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
56320         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
56321         (mode_compile):
56322         No need to use uintmax_t; unsigned long is long enough.
56323         Don't bother to get suffix since we don't use it.
56324
56325 2000-12-26  Jim Meyering  <meyering@lucent.com>
56326
56327         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
56328         better with autoheader.
56329
56330 2000-12-24  Jim Meyering  <meyering@lucent.com>
56331
56332         * lib/hash.c (is_prime): Return explicit boolean values.
56333         (hash_get_first): Return NULL to appease Irix5.6's 89.
56334         Reported by Nelson Beebe.
56335
56336 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
56337
56338         * lib/localcharset.c (locale_charset): Add support for Win32.
56339
56340 2000-12-18  Paul Eggert  <eggert@twinsun.com>
56341
56342         * lib/physmem.h, lib/physmem.c: New files.
56343
56344         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
56345         (noinst_HEADERS): Add physmem.h.
56346
56347         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
56348         't' for compatibility with Solaris 8 sort.
56349
56350 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
56351
56352         * lib/config.charset: Add support for BeOS.
56353
56354 2000-12-17  Jim Meyering  <meyering@lucent.com>
56355
56356         * m4/dos.m4 (jm_AC_DOS): New file and macro.
56357         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
56358
56359 2000-12-16  Jim Meyering  <meyering@lucent.com>
56360
56361         This bug had a serious impact on chown: `chown N:M FILE' (for integer
56362         N and M) would have treated it like `chown N:N FILE'.
56363
56364         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
56365
56366 2000-12-16  Jim Meyering  <meyering@lucent.com>
56367
56368         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
56369         SHELLS_FILE to a file name that's useful on djgpp systems.
56370         Include stdlib.h.
56371         (ADDITIONAL_DEFAULT_SHELLS): Define.
56372         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
56373         Based mostly on a patch from Prashant TR.
56374
56375 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
56376
56377         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
56378         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
56379         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
56380
56381 2000-12-08  Andreas Schwab  <schwab@suse.de>
56382
56383         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
56384         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
56385
56386 2000-12-07  Jim Meyering  <meyering@lucent.com>
56387
56388         * lib/stripslash.c (ISSLASH): Define.
56389         (strip_trailing_slashes): Use ISSLASH rather than comparing against
56390         `/'.
56391         From Prashant TR.
56392
56393         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
56394         (dir_name_r): Declare this function as static.
56395         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
56396         manifest itself on a name containing a mix of slashes and
56397         backslashes.
56398         Make this function work with names starting with a DOS-style
56399         drive letter and colon prefix.
56400         (dir_name): Append `.' if necessary.
56401         Based mostly on patches from Prashant TR and Eli Zaretskii.
56402
56403         * lib/dirname.h (dir_name_r): Remove prototype.
56404
56405 2000-12-06  Paul Eggert  <eggert@twinsun.com>
56406
56407         * m4/off_t-format.m4: Remove this file.
56408         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
56409
56410 2000-12-06  Jim Meyering  <meyering@lucent.com>
56411
56412         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
56413         replacement strtoull, we may well need the replacement strtoul, too.
56414         Check for declarations of strtoul and strtoull.
56415         Check for strtol.  Mainly as a cue to cause automake to include
56416         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
56417         Check for limits.h -- strtol.c needs it.
56418
56419 2000-12-05  Jim Meyering  <meyering@lucent.com>
56420
56421         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
56422
56423 2000-12-04  Jim Meyering  <meyering@lucent.com>
56424
56425         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
56426         Also include memory.h, stdlib.h, unistd.h if appropriate.
56427         Reported by Andreas Jaeger (conflicting declaration of malloc).
56428
56429 2000-12-02  Jim Meyering  <meyering@lucent.com>
56430
56431         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
56432         * m4/jm-macros.m4 (jm_MACROS): require it.
56433
56434 2000-12-02  Jim Meyering  <meyering@lucent.com>
56435
56436         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
56437
56438 2000-12-01  Paul Eggert  <eggert@twinsun.com>
56439
56440         * lib/memrchr.c: Include <config.h> before any system include file.
56441
56442 2000-11-30  Jim Meyering  <meyering@lucent.com>
56443
56444         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
56445
56446 2000-11-30  Jim Meyering  <meyering@lucent.com>
56447
56448         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
56449
56450 2000-11-29  Paul Eggert  <eggert@twinsun.com>
56451
56452         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
56453
56454 2000-11-26  Jim Meyering  <meyering@lucent.com>
56455
56456         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
56457
56458 2000-11-22  Paul Eggert  <eggert@twinsun.com>
56459
56460         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
56461         size of (size_t) -1; it's not portable.
56462
56463 2000-11-17  Jim Meyering  <meyering@lucent.com>
56464
56465         * lib/strstr.c: Update from GNU libc.
56466
56467 2000-11-17  Akim Demaille  <akim@epita.fr>
56468
56469         * lib/obstack.h: Formatting changes.
56470         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
56471         prevent type checking.
56472         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
56473         cast the value to (void *): assigning a `foo *' to a `void *'
56474         variable is valid.
56475         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
56476
56477 2000-11-16  Jim Meyering  <meyering@lucent.com>
56478
56479         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
56480
56481 2000-11-11  Jim Meyering  <meyering@lucent.com>
56482
56483         * lib/error.c: Add a couple #includes, merging from GNU libc version.
56484
56485 2000-11-10  Jim Meyering  <meyering@lucent.com>
56486
56487         * lib/obstack.h: Update from GNU libc.
56488         * lib/obstack.c: Likewise.
56489
56490 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
56491
56492         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
56493
56494 2000-11-06  Paul Eggert  <eggert@twinsun.com>
56495
56496         * lib/getusershell.c (setusershell): Use rewind rather than
56497         fseek/fseeko, to avoid configuration hassles with fseeko.
56498         Don't bother opening SHELLS_FILE if shellstream is NULL;
56499         it's not necessary.
56500
56501 2000-11-05  Jim Meyering  <meyering@lucent.com>
56502
56503         * lib/makepath.h (make_dir): Declare.
56504         * lib/makepath.c (make_dir): Remove `static' attribute.
56505         Tweak a comment.
56506
56507 2000-11-04  Jim Meyering  <meyering@lucent.com>
56508
56509         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
56510
56511 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
56512
56513         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
56514         last one in a bucket, advance to the next bucket.
56515
56516 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
56517
56518         * lib/fnmatch.c: Do not comment out all the code if we are using
56519         the GNU C library, because in some cases we are replacing buggy
56520         code in the GNU C library itself.
56521
56522 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
56523
56524         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
56525         (regex_compile): Catch bogus \(\1\).
56526
56527 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56528
56529         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
56530         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
56531         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
56532
56533 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56534
56535         * lib/error.h, getline.h, modechange.h:
56536         Remove "2000" from Copyright line, as the file hasn't been
56537         changed this year other than in the copyright notice.
56538
56539         * lib/xalloc.h: Add "2000" to Copyright line, as this file
56540         was changed this year.
56541
56542 2000-10-29  Jim Meyering  <meyering@lucent.com>
56543
56544         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
56545         renaming.
56546         * m4/ls-mntd-fs.m4: Likewise
56547
56548 2000-10-29  Jim Meyering  <meyering@lucent.com>
56549
56550         * lib/xstat.in: Fix grammar in comment.
56551
56552 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
56553
56554         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
56555         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
56556         doesn't define __restrict_arr.
56557
56558 2000-10-28  Jim Meyering  <meyering@lucent.com>
56559
56560         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
56561         (jm_PREREQ_MEMCHR): New function.
56562
56563 2000-10-28  Jim Meyering  <meyering@lucent.com>
56564
56565         * lib/memchr.c: Update from libc.
56566         Adjust for portability:
56567         [HAVE_STDLIB_H]: Include stdlib.h.
56568         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
56569         Undef __memchr, too.
56570         [!weak_alias]: Define __memchr to memchr.
56571
56572         * lib/regex.c: Update from libc.
56573         * lib/regex.h: Likewise.
56574         * lib/getopt1.c: Likewise.
56575         * lib/memcmp.c: Likewise.
56576
56577         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
56578         Avoid using fseek, when possible -- it's broken by design.
56579         Patch by Ulrich Drepper.
56580
56581 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
56582
56583         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
56584         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
56585         Giving in to popular pressure to shut up the compiler with casts.
56586
56587 2000-10-26  Jim Meyering  <meyering@lucent.com>
56588
56589         * lib/strftime.c: Update from libc.
56590
56591 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
56592
56593         * regex.c: More `unsigned char' -> `re_char' changes.
56594         Also change several `int' into `re_wchar_t'.
56595         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
56596         (PUSH_FAILURE_POINTER): Don't cast any more.
56597         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
56598         We want GCC to complain, since this piece of code makes
56599         re_match non-reentrant, which *should* be fixed.
56600         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
56601         (EXTEND_BUFFER): Use RETALLOC.
56602         (SET_LIST_BIT): Don't cast.
56603         (re_wchar_t): New type.
56604         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
56605         that those two functions will always properly return.
56606         (IMMEDIATE_QUIT_CHECK): Cast to void.
56607         (analyse_first): Use recursion rather than an explicit stack.
56608         (re_compile_fastmap): Can't fail anymore.
56609         (re_search_2): Don't check re_compile_fastmap for failure.
56610         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
56611         Now also sets the new value (passed in a new argument).
56612         (re_match_2_internal): Use it.
56613         Also, use a new var `reg' of type size_t when looping through regs
56614         rather than reuse the inappropriate `mcnt'.
56615
56616 2000-10-25  Jim Meyering  <meyering@lucent.com>
56617
56618         * lib/obstack.c: Update from libc.
56619
56620 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
56621
56622         * regex.c (regex_compile): Change the way of handling a range from
56623         a char less than 256 to a char not less than 256.
56624
56625 2000-10-24  Andrew Innes  <andrewi@gnu.org>
56626
56627         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
56628         NT-Emacs only.
56629         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
56630         so that re_search functions only quit when callers expect them to.
56631
56632 2000-10-23  Jim Meyering  <meyering@lucent.com>
56633
56634         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
56635         wrong.  That set_locale call must not have any side effects.
56636         From Paul Eggert.
56637
56638 2000-10-22  Jim Meyering  <meyering@lucent.com>
56639
56640         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
56641         [CYCLIC]: Remove now-unused definition.
56642
56643         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
56644         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
56645         Suggestion from Ulrich Drepper.
56646
56647 2000-10-21  Jim Meyering  <meyering@lucent.com>
56648
56649         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
56650         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
56651         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
56652
56653 2000-10-21  Jim Meyering  <meyering@lucent.com>
56654
56655         * lib/dirname.c (memrchr): Declare if necessary.
56656         (dir_name): Remove the restriction that there be no
56657         trailing slashes.  Now, this code skips past them, effectively
56658         ignoring them.
56659         [TEST_DIRNAME] (main): New unit tests.
56660
56661         * lib/memrchr.c: New file from GNU libc.
56662         Undef __memrchr, too.
56663         [!weak_alias]: Define __memrchr to memrchr.
56664         Guard weak_alias use with `#ifdef weak_alias'.
56665
56666 2000-10-21  Jim Meyering  <meyering@lucent.com>
56667
56668         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
56669         (dir_name): Use dir_name_r.
56670         * lib/dirname.h (dir_name_r): Declare it.
56671
56672 2000-10-17  Jim Meyering  <meyering@lucent.com>
56673
56674         * lib/quote.h (PARAMS): Define and use.
56675         Reported by Akim Demaille.
56676
56677         * lib/getopt.c: Update from libc.
56678
56679 2000-10-16  Jim Meyering  <meyering@lucent.com>
56680
56681         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
56682         setlocale.
56683         From Jan Fedak.
56684
56685 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
56686
56687         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
56688
56689 2000-09-25  Jim Meyering  <meyering@lucent.com>
56690
56691         * lib/md5.h (rol): Define (from GnuPG).
56692
56693         * lib/sha.c: Give credit (GnuPG) where due.
56694         (M): Use rol rather than open-coding it.
56695         Add a FIXME comment.
56696
56697 2000-09-21  Jim Meyering  <meyering@lucent.com>
56698
56699         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
56700         Reported by Michael Stone.
56701
56702 2000-09-20  Jim Meyering  <meyering@lucent.com>
56703
56704         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
56705         (noinst_HEADERS): Add sha.h.
56706         Based on code from Scott G. Miller and from GnuPG.
56707
56708 2000-09-18  Jim Meyering  <meyering@lucent.com>
56709
56710         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
56711         LIBS. Otherwise, everyone ends up linking with -lelf for some
56712         configurations.
56713         Reported by Mike Stone.
56714
56715 2000-09-15  Jim Meyering  <meyering@lucent.com>
56716
56717         * lib/regex.c: Update from libc.
56718
56719 2000-09-10  Jim Meyering  <meyering@lucent.com>
56720
56721         * lib/getopt.c (_getopt_internal): Update from glibc.
56722
56723 2000-09-09  Jim Meyering  <meyering@lucent.com>
56724
56725         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
56726         think it should be used as a general replacement for isascii.
56727         * lib/fnmatch.c: Likewise.
56728         * lib/mbswidth.c: Likewise
56729         * lib/regex.c: Likewise.
56730
56731         Don't use atoi.
56732         * lib/userspec.c: Include sys/param.h and limits.h.
56733         Include xstrtol.h.
56734         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56735         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
56736         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
56737         UID, GID.  Check range.
56738
56739 2000-09-06  Jim Meyering  <meyering@lucent.com>
56740
56741         * lib/getopt.c (_getopt_internal): Update from glibc.
56742
56743 2000-08-30  Jim Meyering  <meyering@lucent.com>
56744
56745         * lib/strftime.c: Merge in changes from GNU libc.
56746
56747 2000-08-26  Jim Meyering  <meyering@lucent.com>
56748
56749         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
56750         * m4/fpending.m4: New file.
56751
56752 2000-08-26  Jim Meyering  <meyering@lucent.com>
56753
56754         * lib/closeout.c: Include "__fpending.h".
56755         (close_stdout_status): Return right away if there's nothing to flush.
56756
56757         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
56758         * lib/__fpending.c: New file.
56759         * lib/__fpending.h: New file.
56760
56761 2000-08-20  Jim Meyering  <meyering@lucent.com>
56762
56763         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
56764         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
56765         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
56766
56767 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
56768
56769         Improve fileutils installation on systems where running
56770         programs (like install) can't be unlinked.
56771         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
56772         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
56773
56774 2000-08-07  Paul Eggert  <eggert@twinsun.com>
56775
56776         Standardize on "memory exhausted" instead of "Memory exhausted"
56777         or "virtual memory exhausted".
56778         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
56779         "virtual memory exhausted".
56780         * lib/same.c (same_name): Invoke xalloc_die instead of printing
56781         our own message.
56782         * lib/userspec.c (parse_user_spec): Likewise.
56783         * lib/bumpalloc.h: comment fix
56784         * lib/same.c, userspec.c: Include xalloc.h.
56785
56786         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
56787         not char *const and pointing to a constant array.
56788         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
56789         (xrealloc): Comment fix.
56790
56791         * lib/userspec.c (parse_user_spec):
56792         Don't translate a message until just before returning,
56793         to avoid unnecessary translation.
56794
56795 2000-08-07  Jim Meyering  <meyering@lucent.com>
56796
56797         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
56798         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
56799         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
56800         getgroups.c, gethostname.c, getopt.h, group-member.c,
56801         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
56802         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
56803         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
56804         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
56805         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
56806         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
56807         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
56808         yesno.c: Back out Copyright date changes for each file with no change
56809         this year.  This eases coordination with other programs using the same
56810         source code modules.  From Paul Eggert.
56811
56812 2000-08-06  Paul Eggert  <eggert@twinsun.com>
56813
56814         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
56815         not char, for compatibility with glibc 2.1.3 strftime.c.
56816
56817 2000-08-03  Greg McGary  <greg@mcgary.org>
56818
56819         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
56820         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
56821         (EXTEND_BUFFER): Use them.
56822
56823 2000-08-01  Jim Meyering  <meyering@lucent.com>
56824
56825         * lib/dirname.c (ISSLASH): Define.
56826         (BACKSLASH_IS_PATH_SEPARATOR): Define.
56827         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
56828         both `\' and `/' may be use as path separators.
56829         Based on a patch from Prashant TR.
56830
56831 2000-07-31  Paul Eggert  <eggert@twinsun.com>
56832
56833         * lib/quotearg.c (quotearg_n_options): Don't make the initial
56834         slot vector a constant, since it might get modified.
56835
56836 2000-07-31  Jim Meyering  <meyering@lucent.com>
56837
56838         * lib/xmalloc.c: Use `virtual memory exhausted', not
56839         `Memory exhausted'.
56840         * lib/obstack.c (print_and_abort): Likewise.
56841
56842 2000-07-30  Paul Eggert  <eggert@twinsun.com>
56843
56844         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
56845         buffer, so that the caller can always quote one small
56846         component of a "memory exhausted" message in slot 0.
56847         From a suggestion by Jim Meyering.
56848
56849 2000-07-30  Jim Meyering  <meyering@lucent.com>
56850
56851         * lib/makepath.c (make_path): Quote the other instance, too.
56852
56853         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
56854         (STATIC_BUF_SIZE): Define.
56855         (quotearg_n_options): Use only statically allocated storage when
56856         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
56857         than STATIC_BUF_SIZE.
56858
56859 2000-07-29  Jim Meyering  <meyering@lucent.com>
56860
56861         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
56862         * lib/dirname.c (dir_name): Likewise.
56863
56864         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
56865         `/'.
56866
56867         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
56868         (dir_name): Assert that there are no trailing slashes.
56869
56870 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
56871
56872         * lib/mbswidth.h (mbswidth): Add a flags argument.
56873         (mbswidth): New declaration.
56874         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
56875         * lib/mbswidth.c (mbswidth): Add a flags argument.
56876         (mbsnwidth): New function.
56877
56878 2000-07-24  Jim Meyering  <meyering@lucent.com>
56879
56880         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
56881
56882 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56883
56884         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
56885
56886 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56887
56888         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
56889         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
56890         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
56891         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
56892         invoke multibyte primitives.
56893
56894 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56895
56896         * lib/quotearg.c:
56897         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
56898         so that mbstate_t is always defined.
56899
56900         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
56901         be 1 in at least one GCC installation, and this configuration
56902         error is likely to be common.  Ignoring MB_LEN_MAX hurts
56903         performance on hosts that have mbrtowc but have only unibyte
56904         locales, but I assume these hosts are rare.
56905
56906 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56907
56908         * lib/mbswidth.c (_XOPEN_SOURCE):
56909         Don't define; this causes problems on Solaris 7.
56910         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
56911
56912 2000-07-23  Jim Meyering  <meyering@lucent.com>
56913
56914         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
56915         too: getgrgid, getpwuid, getuid.
56916
56917 2000-07-23  Jim Meyering  <meyering@lucent.com>
56918
56919         * lib/basename.c (base_name): Add an assertion.
56920
56921 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
56922
56923         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
56924         shadow its mbsinit function.
56925
56926 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56927
56928         * lib/mbswidth.h: New file.
56929         * lib/mbswidth.c: New file.
56930         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
56931         (noinst_HEADERS): Add mbswidth.h.
56932
56933 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56934
56935         * lib/config.charset: Add support for FreeBSD. Improve support for
56936         HP-UX and IRIX 6.
56937
56938 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
56939
56940         * m4/mbswidth.m4: New file.
56941         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
56942
56943 2000-07-15  Jim Meyering  <meyering@lucent.com>
56944
56945         * lib/makepath.c: Include quote.h.
56946         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
56947         corresponding argument in a `quote (...)' call.
56948         Give better diagnostics.
56949
56950         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
56951         (noinst_HEADERS): Add quote.h.
56952
56953         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
56954         from tar's src/misc.c.
56955         * lib/quote.h: New file.  Prototypes for same.
56956
56957 2000-07-14  Paul Eggert  <eggert@twinsun.com>
56958
56959         From a suggestion by Bruno Haible.
56960         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
56961         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
56962         to decide whether to define the BeOS workaround macro;
56963         this adjusts to the change to AC_MBSTATE_T.
56964
56965 2000-07-14  Jim Meyering  <meyering@lucent.com>
56966
56967         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
56968         jm_AC_TYPE_UINTMAX_T.
56969
56970 2000-07-13  Paul Eggert  <eggert@twinsun.com>
56971
56972         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
56973
56974         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
56975         quotearg_buffer_restyled): Add support for
56976         clocale_quoting_style.  Undo previous change to
56977         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
56978         and "{RIGHT QUOTATION MARK}" msgids.
56979
56980 2000-07-10  Paul Eggert  <eggert@twinsun.com>
56981
56982         From a suggestion by Bruno Haible.
56983         * m4/mbstate_t.m4 (AC_MBSTATE_T):
56984         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
56985         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
56986         and mbstate_t, to a single-part test that simply defines mbstate_t.
56987         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
56988         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
56989
56990 2000-07-10  Jim Meyering  <meyering@lucent.com>
56991
56992         * m4/strerror_r.m4: Mirror the correction made in autoconf.
56993
56994         * m4/gnu-source.m4: Output to confdefs.h directly.
56995         Suggestion from Akim Demaille.
56996
56997 2000-07-09  Paul Eggert  <eggert@twinsun.com>
56998
56999         The old behavior of quoting `like this' doesn't look good with
57000         newer, ISO-style fonts.  See:
57001         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
57002
57003         Instead, quote "like this" by default.  Let the translator
57004         tailor the locale-specific quoting behavior by providing
57005         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
57006
57007         * lib/quotearg.c (N_): New macro.
57008         (gettext_default): New function.
57009         (quotearg_buffer_restyled): Use
57010         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
57011         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
57012
57013 2000-07-09  Jim Meyering  <meyering@lucent.com>
57014
57015         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
57016         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
57017
57018         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
57019         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
57020
57021 2000-07-09  Jim Meyering  <meyering@lucent.com>
57022
57023         * lib/Most files: Update copyright dates to include 2000.
57024
57025 2000-07-08  Jim Meyering  <meyering@lucent.com>
57026
57027         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
57028         if not defined.
57029         (xgethostname): Remove now-unnecessary #ifdef.
57030         Move declaration of `err' into loop where it's used.
57031
57032 2000-07-05  Paul Eggert  <eggert@twinsun.com>
57033         and Bruno Haible  <haible@clisp.cons.org>
57034
57035         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
57036         only if the test for an object-type mbstate_t fails.  This
57037         prevents us from mistakenly reporting that mbstate_t is a
57038         system object type after we "#define mbstate_t int" to work
57039         around its lack.
57040
57041 2000-07-05  Paul Eggert  <eggert@twinsun.com>
57042         and Bruno Haible  <haible@clisp.cons.org>
57043
57044         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
57045
57046 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
57047
57048         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
57049         to strerror_r.
57050         Include <ctype.h> for use of isalpha.
57051
57052 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
57053
57054         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
57055         by allocating a larger buffer. Test the gethostname return value for
57056         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
57057         returns an error and ENAMETOOLONG isn't defined.
57058
57059 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
57060
57061         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
57062         dimension.
57063
57064 2000-07-04  Jim Meyering  <meyering@lucent.com>
57065
57066         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
57067         of the deprecated AC_CHECKING.
57068
57069 2000-07-04  Jim Meyering  <meyering@lucent.com>
57070
57071         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
57072         Reported by Bruno Haible.
57073
57074 2000-07-04  Jim Meyering  <meyering@lucent.com>
57075
57076         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
57077         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
57078         lacks mbrtowc.
57079
57080 2000-07-03  Paul Eggert  <eggert@twinsun.com>
57081
57082         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
57083         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
57084
57085 2000-07-03  Paul Eggert  <eggert@twinsun.com>
57086         and Bruno Haible  <haible@clisp.cons.org>
57087
57088         * lib/quotearg.c (mbrtowc):
57089         Assign to *pwc, and return 1 only if result is nonzero.
57090         (iswprint): Use ISPRINT when substituting our own mbrtowc.
57091
57092 2000-07-03  Jim Meyering  <meyering@lucent.com>
57093
57094         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
57095
57096 2000-07-03  Jim Meyering  <meyering@lucent.com>
57097
57098         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
57099         This is necessary to get a definition of e.g., UTMP_FILE on
57100         HP-UX 10.20.
57101         From Bob Proulx.
57102
57103 2000-07-02  Jim Meyering  <meyering@lucent.com>
57104
57105         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
57106
57107         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
57108         AC_LIBOBJ(function_name).
57109         * m4/chown.m4: Likewise.
57110         * m4/fnmatch.m4: Likewise.
57111         * m4/ftruncate.m4: Likewise.
57112         * m4/getgroups.m4: Likewise.
57113         * m4/getline.m4: Likewise.
57114         * m4/group-member.m4: Likewise.
57115         * m4/jm-macros.m4: Likewise.
57116         * m4/lstat.m4: Likewise.
57117         * m4/malloc.m4: Likewise.
57118         * m4/memcmp.m4: Likewise.
57119         * m4/nanosleep.m4: Likewise.
57120         * m4/putenv.m4: Likewise.
57121         * m4/realloc.m4: Likewise.
57122         * m4/regex.m4: Likewise.
57123         * m4/stat.m4: Likewise.
57124         * m4/strftime.m4: Likewise.
57125
57126 2000-07-02  Jim Meyering  <meyering@lucent.com>
57127
57128         * lib/quotearg.c (mbstate_t): Don't define here.
57129
57130 2000-07-02  Jim Meyering  <meyering@lucent.com>
57131
57132         * lib/nanosleep.c (SIGCONT): Define if not already defined.
57133
57134 2000-07-01  Jim Meyering  <meyering@lucent.com>
57135
57136         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
57137
57138 2000-07-01  Jim Meyering  <meyering@lucent.com>
57139
57140         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
57141         problem.
57142
57143 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
57144
57145         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
57146         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
57147
57148 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
57149
57150         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
57151         per change in ../m4/ls-mntd-fs.m4.
57152         (read_filesystem_list): Ignore symbolic links.
57153
57154 2000-06-29  Jim Meyering  <meyering@lucent.com>
57155
57156         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
57157         for declaration of strcmp.
57158
57159         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
57160
57161         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
57162         Avoid warning by casting result to `char *' to remove `const'.
57163
57164 2000-06-28  Jim Meyering  <meyering@lucent.com>
57165
57166         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
57167         included by quotearg.c, for which we perform this test.  From
57168         Bruno Haible.
57169
57170 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
57171
57172         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
57173         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
57174         <utmpx.h> exists, put readutmp.o into LIBOBJS.
57175
57176 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
57177
57178         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
57179
57180 2000-06-26  Paul Eggert  <eggert@twinsun.com>
57181
57182         savedir now sets errno on failure and invokes xmalloc to get memory.
57183         Fix a couple of other minor bugs while we're at it.
57184
57185         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
57186         (NAMLEN): Remove macro.
57187         (malloc, realloc): Remove decls.
57188         (stpcpy): Likewise.
57189         ("xalloc.h"): Include.
57190         (NAME_SIZE_DEFAULT): New macro.
57191         (savedir): Use xmalloc / xrealloc to allocate memory.
57192         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
57193         Skip "" directory entries.
57194         Use strlen to calculate directory entry length, since the old method
57195         is rarely used these days and isn't worth supporting.
57196         Don't use a pointer after freeing it.
57197         Check for integer overflow when calculating allocation size.
57198         Use memcpy to copy entries, instead of stpcpy.
57199         Set errno properly when returning NULL.
57200         Check for readdir error.
57201
57202 2000-06-26  Jim Meyering  <meyering@lucent.com>
57203
57204         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
57205
57206 2000-06-25  Jim Meyering  <meyering@lucent.com>
57207
57208         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
57209         Linux header bug when _XOPEN_SOURCE is defined to 500.
57210
57211 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
57212
57213         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
57214         deficiency.
57215
57216 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
57217
57218         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
57219         Include xalloc.h.
57220         Don't include <stdlib.h>.  Don't declare malloc, realloc.
57221
57222 2000-06-24  Jim Meyering  <meyering@lucent.com>
57223
57224         * m4/strerror_r.m4: Revive this file -- to try out an experimental
57225         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
57226         for which strerror does return char*, but which lacks a conveniently
57227         accessible declaration of the function.  If the compile-test says
57228         strerror_r doesn't work, then resort to a `run'-test that works on
57229         BeOS and segfaults on DEC Unix.
57230
57231 2000-06-24  Jim Meyering  <meyering@lucent.com>
57232
57233         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
57234
57235 2000-06-23  Paul Eggert  <eggert@twinsun.com>
57236
57237         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
57238         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
57239
57240 2000-06-23  Paul Eggert  <eggert@twinsun.com>
57241
57242         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
57243         (mbrtowc, mbstate_t): Define substitutes if
57244         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
57245         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
57246         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
57247
57248 2000-06-23  Jim Meyering  <meyering@lucent.com>
57249
57250         * m4/afs.m4: Add missing AC_MSG_RESULT.
57251         Reported by Bruno Haible.
57252
57253         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
57254         Suggestion from Bruno Haible.
57255
57256 2000-06-23  Jim Meyering  <meyering@lucent.com>
57257
57258         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
57259
57260 2000-06-21  Jim Meyering  <meyering@lucent.com>
57261
57262         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
57263
57264 2000-06-21  Jim Meyering  <meyering@lucent.com>
57265
57266         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
57267         (noinst_HEADERS): Add getstr.h.
57268
57269         * lib/getline.c (getstr): Move into a separate file.
57270         * lib/getstr.c (getstr): New file, extracted from getline.c, with
57271         the following changes: new parameter, delim2; both delim[12]
57272         parameters have type `int', not `char'.  The latter would lose
57273         with 8-bit delimiters.
57274         * lib/getstr.h: New file.
57275
57276 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57277
57278         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
57279         than 1024, return a memory chunk of least possible size, instead
57280         of size PATH_MAX + 2. In the loop, increment the size proportionally.
57281         Use free/xmalloc instead of xrealloc to avoid copying for very long
57282         paths.
57283
57284 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57285
57286         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
57287         the empty string.
57288
57289 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57290
57291         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
57292         address, not strdup.  Include <stdlib.h> and don't declare free().
57293
57294 2000-06-19  Jim Meyering  <meyering@lucent.com>
57295
57296         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
57297
57298 2000-06-18  Jim Meyering  <meyering@lucent.com>
57299
57300         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
57301
57302         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
57303         `checking whether...' message to be consistent with that of the
57304         lstat test.
57305
57306 2000-06-18  Jim Meyering  <meyering@lucent.com>
57307
57308         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
57309         Besides, these days every porting target provides a mkdir function.
57310
57311         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
57312         needed. (this snippet comes from src/system.h).
57313
57314 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
57315
57316         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
57317
57318 2000-06-15  Paul Eggert  <eggert@twinsun.com>
57319
57320         * lib/human.c (adjust_value): New function.
57321         (human_readable_inexact): Apply rounding style even when
57322         printing approximate values.
57323
57324 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57325
57326         * lib/human.c (human_readable_inexact): Allow an input block
57327         size that is not a multiple of the output block size, and vice versa.
57328         Reported by Piergiorgio Sartor.
57329
57330 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57331
57332         * lib/getdate.y (get_date): Apply relative times after time
57333         zone indicator, not before.  Reported by Todd A. Jacobs.
57334
57335 2000-06-13  Jim Meyering  <meyering@lucent.com>
57336
57337         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
57338
57339         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
57340
57341 2000-06-12  Paul Eggert  <eggert@twinsun.com>
57342
57343         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
57344
57345 2000-06-12  Jim Meyering  <meyering@lucent.com>
57346
57347         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
57348         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
57349         optional argument.
57350         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
57351         the optional argument, `lib'.
57352
57353 2000-06-08  Jim Meyering  <meyering@lucent.com>
57354
57355         * m4/largefile.m4: Remove file (now that it's part of autoconf).
57356
57357 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57358
57359         Rewrite largefile configuration so that we don't need to run
57360         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
57361         AC_CANONICAL_HOST in configure.in -- jmm]
57362
57363         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
57364         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
57365         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
57366         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
57367         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
57368         All uses changed.
57369         Instead of inspecting the output of getconf, try to compile the
57370         test program without and with the macro definition.
57371         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
57372         for getconf.  Instead, check for the needed flags by compiling
57373         test programs.
57374
57375 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57376
57377         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
57378
57379 2000-06-04  Jim Meyering  <meyering@lucent.com>
57380
57381         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
57382         SunOS 4.1.4 for which gid_t is an unsigned type.
57383
57384 2000-06-03  Jim Meyering  <meyering@lucent.com>
57385
57386         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
57387         now that autoconf requires that.
57388
57389         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
57390         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
57391         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
57392
57393 2000-06-03  Jim Meyering  <meyering@lucent.com>
57394
57395         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
57396
57397 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57398
57399         * m4/glibc21.m4: New file.
57400         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
57401
57402 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57403
57404         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
57405         newer, don't install charset.alias.
57406         * lib/config.charset: Change the Linux/glibc rules so they become empty
57407         on glibc-2.1 or newer.
57408
57409 2000-06-02  Jim Meyering  <meyering@lucent.com>
57410
57411         * lib/mountlist.c: Back out last change.  Instead, do this...
57412         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
57413         me_dummy member using the same `ignore'-testing code.
57414         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
57415         fs_type strings.
57416         From Mark D. Roth.
57417
57418 2000-05-29  Jim Meyering  <meyering@lucent.com>
57419
57420         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
57421         mounts with the `ignore' attribute.  Based on a patch from
57422         Mark D. Roth.
57423
57424 2000-05-28  Jim Meyering  <meyering@lucent.com>
57425
57426         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
57427         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57428         * m4/stat.m4: Likewise.
57429         * m4/lstat.m4: Likewise.
57430         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
57431
57432         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
57433         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
57434
57435 2000-05-26  Jim Meyering  <meyering@lucent.com>
57436
57437         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
57438
57439 2000-05-24  Jim Meyering  <meyering@lucent.com>
57440
57441         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
57442         autoconf requires that.
57443         * m4/lib-check.m4: Likewise.
57444         * m4/jm-macros.m4: Likewise.
57445         * m4/strftime.m4: Likewise.
57446
57447         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
57448         AC_CHECK_DECLS, now that autoconf requires that.
57449
57450 2000-05-22  Jim Meyering  <meyering@lucent.com>
57451
57452         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57453         * m4/lstat.m4: Likewise.
57454
57455 2000-05-22  Jim Meyering  <meyering@lucent.com>
57456
57457         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
57458
57459 2000-05-20  Jim Meyering  <meyering@lucent.com>
57460
57461         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
57462         (jm_PREREQ): Use it.
57463
57464 2000-05-18  Jim Meyering  <meyering@lucent.com>
57465
57466         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
57467         back, too, since it may have been modified by allocate_entry.
57468         (hash_delete): Rewrite to use neither the assignment operator
57469         nor the comma operator in an if-expression.
57470
57471 2000-05-15  Paul Eggert  <eggert@twinsun.com>
57472
57473         * lib/closeout.c:
57474         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
57475         Remove; no longer needed.
57476         "quotearg.h": Add include.
57477         (file_name): Do not bother to explicitly initialize to NULL; it's less
57478         efficient on some hosts.
57479         (close_stdout_status): Remove test as to whether stdout was already
57480         closed; it breaks for the case "echo x | sort >&-".
57481         Quote file name colons.
57482         Do not assume that _("write error") lacks format strings.
57483
57484 2000-05-15  Jim Meyering  <meyering@lucent.com>
57485
57486         * lib/version-etc.c (version_etc_copyright): Update the copyright
57487         string used in all --version output.
57488
57489 2000-05-14  Jim Meyering  <meyering@lucent.com>
57490
57491         * lib/closeout.c (close_stdout_set_file_name): New function.
57492         (close_stdout_status): Use new file-scoped global.
57493         Return right away if fstat says the stdout file descriptor is invalid.
57494         * lib/closeout.h (close_stdout_set_file_name): Declare.
57495
57496 2000-05-10  Jim Meyering  <meyering@lucent.com>
57497
57498         * lib/closeout.c [default_exit_status]: New file-scoped variable.
57499         (close_stdout_set_status): New function.
57500         * lib/closeout.h (close_stdout_set_status): Declare.
57501
57502 2000-05-09  Jim Meyering  <meyering@lucent.com>
57503
57504         * m4/gettext.m4: Rename this...
57505         * m4/libintl.m4: ...to this.
57506
57507 2000-05-08  Jim Meyering  <meyering@lucent.com>
57508
57509         * lib/long-options.c: Don't include closeout.h.
57510         (parse_long_options): Don't call close_stdout for --version.
57511
57512 2000-05-06  Paul Eggert  <eggert@twinsun.com>
57513
57514         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
57515         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
57516         2.1.3 bug.  This avoids a clash when files like regex.c define
57517         _GNU_SOURCE.
57518
57519 2000-05-06  Jim Meyering  <meyering@lucent.com>
57520
57521         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
57522         (AC_REPLACE_FUNCS): Add strnlen.
57523
57524         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
57525         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
57526
57527         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
57528         AC_SEARCH_LIBS call for nanosleep.
57529         (LIB_NANOSLEEP): Set and AC_SUBST.
57530
57531 2000-05-06  Jim Meyering  <meyering@lucent.com>
57532
57533         * lib/strnlen.c: Undefine __strnlen and strnlen.
57534         [!weak_alias]: Define __strnlen to strnlen.
57535
57536         * lib/atexit.c: New file, from libiberty.
57537
57538 2000-05-06  Jim Meyering  <meyering@lucent.com>
57539
57540         * lib/closeout.c (close_stdout_status): Also check for errors on the
57541         stderr stream.
57542
57543 2000-05-05  Jim Meyering  <meyering@lucent.com>
57544
57545         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
57546         AC_SEARCH_LIBS call for clock_gettime.
57547         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
57548
57549         * m4/search-libs.m4: Update from autoconf.
57550
57551         su doesn't work on Solaris 2.6.
57552         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
57553         <shadow.h>.  Reported by Dragos Harabor.
57554
57555 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
57556
57557         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
57558         memcpy instead of xmalloc, xrealloc, path_concat.
57559         (locale_charset): Treat empty environment variables as absent.
57560         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
57561
57562 2000-05-04  Jim Meyering  <meyering@lucent.com>
57563
57564         * lib/getopt.c: Update from glibc.
57565         * lib/obstack.c: Likewise.
57566         * lib/obstack.h: Likewise.
57567         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
57568         file
57569
57570         * lib/regex.h: Likewise.
57571         * lib/strndup.c: Likewise.
57572         * lib/strnlen.c: New file, from glibc.
57573
57574 2000-05-03  Jim Meyering  <meyering@lucent.com>
57575
57576         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
57577
57578 2000-05-02  Paul Eggert  <eggert@twinsun.com>
57579
57580         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
57581         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
57582         compile-time test, rather than inspecting host and OS, to
57583         decide whether to define _LARGEFILE_SOURCE.
57584
57585 2000-05-01  Jim Meyering  <meyering@lucent.com>
57586
57587         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
57588
57589         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
57590         Based on a patch from Bruno Haible.
57591
57592 2000-05-01  Jim Meyering  <meyering@lucent.com>
57593
57594         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
57595
57596 2000-04-29  Jim Meyering  <meyering@lucent.com>
57597
57598         * lib/path-concat.c: Declare strdup only if it's not defined.
57599         * lib/canon-host.c: Likewise.
57600
57601 2000-04-28  Jim Meyering  <meyering@lucent.com>
57602
57603         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
57604         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
57605         is included first, then limits.h is included by locale.h by libintl.h.
57606         From John David Anglin.
57607
57608 2000-04-25  Jim Meyering  <meyering@lucent.com>
57609
57610         * lib/makepath.c (S_IRWXUGO): Define.
57611         (make_path): Always perform explicit chmod if MODE specifies any
57612         of the `special' permission bits.  Prompted by a bug report against
57613         install from Mate Wierdl and Joost van Baal.
57614
57615 2000-04-18  Jim Meyering  <meyering@lucent.com>
57616
57617         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
57618         (jm_PREREQ): Use it.
57619
57620 2000-04-18  Jim Meyering  <meyering@lucent.com>
57621
57622         * lib/README: New file.
57623
57624         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
57625         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
57626
57627 2000-04-17  Jim Meyering  <meyering@lucent.com>
57628
57629         Get it right :-)
57630         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
57631         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
57632         Suggestion from Akim Demaille.
57633
57634 2000-04-17  Jim Meyering  <meyering@lucent.com>
57635
57636         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
57637         the definition of it to rpl_strftime also defined-away the system's
57638         declaration.
57639
57640 2000-04-15  Jim Meyering  <meyering@lucent.com>
57641
57642         Use `C' to denote so-called `contiguous' files, the same way
57643         that tar does.
57644         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
57645         (ftypelet): Use S_ISCTG.
57646         From Michael Deutschmann.
57647
57648 2000-04-14  Jim Meyering  <meyering@lucent.com>
57649
57650         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
57651         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
57652         clobbered.
57653
57654 2000-04-14  Jim Meyering  <meyering@lucent.com>
57655
57656         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
57657
57658 2000-04-13  Jim Meyering  <meyering@lucent.com>
57659
57660         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
57661         AH_VERBATIM to insert required #ifndef into config.h.in.
57662         Suggestion from Akim Demaille.
57663
57664 2000-04-12  Jim Meyering  <meyering@lucent.com>
57665
57666         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
57667         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
57668         Christian Krackowizer.
57669
57670         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
57671         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
57672         (AC_SYS_LARGEFILE): Require.
57673         (AM_C_PROTOTYPES): Require.
57674
57675 2000-04-08  Jim Meyering  <meyering@lucent.com>
57676
57677         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
57678         names don't conflict.  Reported by Eli Zaretskii.
57679
57680 2000-04-07  Jim Meyering  <meyering@lucent.com>
57681
57682         * lib/putenv.c: Move inclusion of errno.h so it follows that of
57683         sys/types.h, to work around system header problems on AIX 3.2.5.
57684         From Bruno Haible.
57685
57686 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
57687
57688         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
57689         bug.  Deal with the different error behavior of Irix iconv.
57690
57691 2000-04-05  Paul Eggert  <eggert@twinsun.com>
57692
57693         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
57694         IRIX if the installer said otherwise.
57695
57696 2000-04-05  Jim Meyering  <meyering@lucent.com>
57697
57698         Portability tweaks required for ultrix4.3.
57699         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
57700         (jm_CHECK_DECLS): Add getutent to the list of functions.
57701         (_jm_DECL_HEADERS): Add utmpx.h.
57702         From John David Anglin.
57703
57704         * m4/strftime.m4: Back out the 2000-04-02 change.
57705         Instead of that change, simply undefine putenv in the test program.
57706
57707 2000-04-05  Jim Meyering  <meyering@lucent.com>
57708
57709         Portability tweaks required for ultrix4.3.
57710         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
57711         getutent.
57712         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
57713         * lib/canon-host.c: Declare strdup.
57714         * lib/path-concat.c: Likewise.
57715         From John David Anglin.
57716
57717 2000-04-04  Jim Meyering  <meyering@lucent.com>
57718
57719         Be more DOS 8.3-friendly.
57720         * lib/ref-add.sin: Renamed from ref-add.sed.in.
57721         * lib/ref-del.sin: Renamed from ref-del.sed.in.
57722         * lib/Makefile.am: Reflect renaming.
57723         Reported by Eli Zaretskii.
57724
57725         Use a temporary file name that won't clash with `charset.alias'
57726         in the DOS 8.3 name space.
57727         * lib/Makefile.am (charset_tmp): Define.
57728         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
57729         (uninstall-local): Likewise.
57730         Reported by Eli Zaretskii.
57731
57732 2000-04-03  Jim Meyering  <meyering@lucent.com>
57733
57734         * m4/gettext.m4: Fix typo in comment.
57735
57736         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
57737         textutils/configure.in).  Suggestion from Paul Eggert.
57738         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
57739
57740 2000-04-02  Paul Eggert  <eggert@twinsun.com>
57741
57742         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
57743         variable in the shell rather than using putenv, which isn't
57744         portable.  This avoids the configure-time inter-test dependency
57745         on the potentially-renamed putenv function.
57746
57747 2000-03-30  Paul Eggert  <eggert@twinsun.com>
57748
57749         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
57750         before checking struct stat.st_blksize, so that
57751         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
57752
57753 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57754
57755         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
57756         since strftime.c uses HAVE_STRFTIME to decide whether to use
57757         the underlying strftime.
57758
57759 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57760
57761         * lib/time/strftime.c (my_strftime): Make sure we call the system
57762         strftime, not ourselves, when invoking the underlying strftime.
57763
57764 2000-03-24  Jim Meyering  <meyering@lucent.com>
57765
57766         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
57767         (charset_alias): Define.
57768         (install-exec-local): Factor out common code.
57769         (uninstall-local): Split lines longer than 80.
57770         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
57771         (SUFFIXES): Define.
57772         (.sed.in.sed): New rule.  Don't redirect directly to $@.
57773         (CLEANFILES): Add ref-add.sed and ref-del.sed.
57774
57775 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
57776
57777         * lib/config.charset: Output a line containing "Packages using this
57778         file".
57779         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
57780         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
57781         ref-del.sed): New rules.
57782
57783 2000-03-17  Jim Meyering  <meyering@lucent.com>
57784
57785         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
57786         Otherwise, include <strings.h>
57787
57788 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
57789
57790         * lib/unicodeio.c (utf8_wctomb): New function.
57791         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
57792         format instead of in UCS-4 with platform dependent endianness.
57793
57794 2000-03-10  Jim Meyering  <meyering@lucent.com>
57795
57796         * m4/lib-check.m4: Look for getspnam in -lgen, too.
57797         From Marco Franzen.
57798
57799 2000-03-07  Paul Eggert  <eggert@twinsun.com>
57800
57801         * lib/savedir.c (savedir): Work even if directory size is
57802         negative; this can happen with some screwy NFS configurations.
57803
57804 2000-03-06  Jim Meyering  <meyering@lucent.com>
57805
57806         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
57807         if it's NULL (because we ran out of memory).  From Bruno Haible.
57808
57809 2000-03-05  Jim Meyering  <meyering@lucent.com>
57810
57811         * lib/localcharset.c ("path-concat.h"): Include.
57812         (get_charset_aliases): Use path_concat instead of ANSI string
57813         concatenation.
57814
57815         * lib/unicodeio.h (PARAMS): Define.
57816         Use it to guard prototype.
57817
57818 2000-03-04  Jim Meyering  <meyering@lucent.com>
57819
57820         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
57821         for lib/localcharset.c.
57822
57823 2000-03-04  Jim Meyering  <meyering@lucent.com>
57824
57825         * lib/Makefile.am (install-exec-local): Create $(libdir) before
57826         installing into it.
57827         (uninstall-local): Uncomment this rule so `make distcheck' works
57828         once again.
57829
57830         * lib/unicodeio.c (<errno.h>): Include it.
57831         (errno): Declare if not defined.
57832
57833         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
57834
57835         * lib/config.charset: New version, incorporating remarks from a linux
57836         i18n mailing list.  From Bruno Haible.
57837
57838 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
57839
57840         * m4/codeset.m4: New file.
57841         * m4/iconv.m4: New file.
57842         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
57843
57844 2000-03-03  Jim Meyering  <meyering@lucent.com>
57845
57846         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
57847
57848 2000-03-02  Jim Meyering  <meyering@lucent.com>
57849
57850         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
57851         the messages come out on separate lines.
57852
57853         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
57854         rather than jm_CHECK_DECLARATIONS.
57855         * m4/decl.m4: Remove now-unused file.
57856
57857         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
57858         geteuid.
57859
57860 2000-03-02  Jim Meyering  <meyering@lucent.com>
57861
57862         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
57863
57864 2000-03-01  Jim Meyering  <meyering@lucent.com>
57865
57866         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
57867         * lib/unicodeio.c: Likewise.
57868
57869 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
57870
57871         * lib/config.charset: New file.
57872         * lib/localcharset.c: New file.
57873         * lib/unicodeio.h, lib/unicodeio.c: New files.
57874         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
57875         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
57876         (noinst_HEADERS): Add unicodeio.h.
57877         (all-local, install-exec-local, charset.alias): New targets.
57878
57879 2000-02-28  Paul Eggert  <eggert@twinsun.com>
57880
57881         * lib/quotearg.c (ALERT_CHAR): New macro.
57882         (quotearg_buffer_restyled): Use it.
57883
57884 2000-02-27  Jim Meyering  <meyering@lucent.com>
57885
57886         * m4/check-decl.m4: Add getenv to the list.
57887
57888 2000-02-27  Jim Meyering  <meyering@lucent.com>
57889
57890         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
57891         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
57892
57893         * lib/backupfile.c: Guard inclusion of stdlib.h with
57894         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
57895         Declare malloc if needed.
57896
57897         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
57898         `#ifndef HAVE_DECL..'
57899         now that autoconf always defines the HAVE_DECL_ symbols.
57900         * lib/human.c: Likewise.
57901         * lib/same.c: Likewise.
57902         * lib/strtoumax.c: Likewise.
57903
57904         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
57905         declaration check was not run.
57906         * lib/hash.c: Likewise.
57907         * lib/human.c: Likewise.
57908         * lib/same.c: Likewise.
57909         * lib/strtoumax.c: Likewise.
57910
57911         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
57912         `.', then first look up the entire `.'-containing string as a login
57913         name.
57914
57915 2000-02-23  Jim Meyering  <meyering@lucent.com>
57916
57917         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
57918         in place of my hack.
57919
57920 2000-02-18  Paul Eggert  <eggert@twinsun.com>
57921
57922         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
57923         (textint): New typedef.
57924         (parser_control): Member year changed from int to textint.
57925         All uses changed.
57926         (YYSTYPE): Removed; replaced by %union with int and textint members.
57927         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
57928         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
57929         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
57930         (tSNUMBER, tUNUMBER): Now of type <textintval>.
57931         (date, number, to_year): Use width of number in digits, not its value,
57932         to determine whether it's a 2-digit year, or a 2-digit time.
57933         (yylex): Store number of digits of numeric tokens.
57934         Reported by John Kendall.
57935
57936         (parser_control): Changed from struct parser_control to typedef (for
57937         consistency).  All uses changed.
57938
57939         (tID): Removed; not used.
57940         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
57941
57942 2000-02-14  Paul Eggert  <eggert@twinsun.com>
57943
57944         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
57945         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
57946
57947 2000-02-12  Jim Meyering  <meyering@lucent.com>
57948
57949         * lib/userspec.c (ISDIGIT): Define it.
57950         (isdigit): Remove definition.
57951         (is_number): Use ISDIGIT, not isdigit.
57952         <libintl.h>: Include.
57953         (_ and N_): Define.
57954         (parse_user_spec): Mark translatable strings.
57955
57956 2000-02-10  Jim Meyering  <meyering@lucent.com>
57957
57958         With these changes, nanosleep.[ch] are finally enough like the other
57959         lib/* replacement files to compile on a few more losing systems.
57960
57961         * lib/nanosleep.h: Don't include config.h.
57962         Remove prototype from declaration of nanosleep.
57963         (PARAMS): Remove now-unneeded definition.
57964         * lib/nanosleep.c: #undef nanosleep.
57965         (rpl_nanosleep): Rename from nanosleep.
57966
57967 2000-02-10  Jim Meyering  <meyering@lucent.com>
57968
57969         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
57970         gnu_nanosleep to rpl_nanosleep.
57971
57972 2000-02-09  Jim Meyering  <meyering@lucent.com>
57973
57974         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
57975         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
57976
57977 2000-02-08  Akim Demaille  <akim@epita.fr>
57978
57979         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
57980         `[' and `]' and remove uses of `changequote'.
57981         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
57982         (AC_SYS_LARGEFILE): Likewise.
57983         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
57984         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
57985         of changequote.
57986         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
57987         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
57988         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
57989         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
57990
57991 2000-02-05  Jim Meyering  <meyering@lucent.com>
57992
57993         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
57994         Remove explicit use of AC_HEADER_TIME.  It is required by
57995         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
57996         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
57997         in autoconf whereby the expansion of the latter ended up preceding
57998         the expansion of its prerequisite, AC_HEADER_TIME.
57999         Reported by Volker Borchert.
58000
58001 2000-02-03  Jim Meyering  <meyering@lucent.com>
58002
58003         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
58004
58005 2000-02-03  Jim Meyering  <meyering@lucent.com>
58006
58007         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
58008         rather than with `#if HAVE_UTMPNAME'.
58009
58010 2000-02-02  Jim Meyering  <meyering@lucent.com>
58011
58012         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
58013         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
58014         Reported by Eli Zaretskii.
58015
58016 2000-02-01  Jim Meyering  <meyering@lucent.com>
58017
58018         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
58019
58020 2000-01-31  Jim Meyering  <meyering@lucent.com>
58021
58022         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
58023         functions.  Add the time.h and sys/time.h headers along with the
58024         AC_REQUIRE'ment of AC_HEADER_TIME.
58025
58026 2000-01-31  Jim Meyering  <meyering@lucent.com>
58027
58028         * lib/nanosleep.h (nanosleep): Guard declaration with
58029         `#if ! HAVE_DECL_NANOSLEEP'.
58030         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
58031         the declaration in that vendor's sys/timers.h.
58032         Reported by Christian Krackowizer.
58033
58034         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
58035         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
58036         (ISPRINT): Likewise.
58037         Reported by Tom Tromey.
58038
58039 2000-01-30  Jim Meyering  <meyering@lucent.com>
58040
58041         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
58042
58043         * m4/prereq.m4 (utmp_includes): Define.
58044         Check for ut_user and ut_name members in both struct utmpx
58045         and struct utmp.
58046
58047 2000-01-30  Jim Meyering  <meyering@lucent.com>
58048
58049         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
58050         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
58051         header files where only utmpx.ut_user is declared.
58052
58053         * lib/readutmp.h (UT_USER): Define.
58054
58055 2000-01-29  Jim Meyering  <meyering@lucent.com>
58056
58057         * m4/lib-check.m4: New file containing library-related checks from
58058         fileutils and sh-utils (textutils had none).
58059
58060 2000-01-28  Jim Meyering  <meyering@lucent.com>
58061
58062         * m4/perl.m4: Change format of warning message to look more like that
58063         from the missing script.  Suggestion from François Pinard.
58064
58065 2000-01-25  Jim Meyering  <meyering@lucent.com>
58066
58067         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
58068         well as time.h in the compile check.
58069         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
58070         Fix typo in cross-compiling case: s/yes/no/.
58071
58072 2000-01-23  Jim Meyering  <meyering@lucent.com>
58073
58074         * m4/jm-macros.m4: Move df-related tests here from
58075         fileutils/configure.in
58076
58077         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
58078         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
58079
58080         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
58081         s/space/ac_fsusage_space/.
58082         (jm_FILE_SYSTEM_USAGE): Take two parameters.
58083
58084         * m4/ftruncate.m4: New file (derived from part of
58085         fileutils/configure.in).
58086         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
58087         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
58088
58089         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
58090         AC_SUBST these here, rather than just in sh-util/configure.in, so
58091         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
58092         all the same.
58093         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
58094         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
58095         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
58096         (AC_SUBST(POW_LIBM)): Likewise.
58097         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
58098
58099 2000-01-23  Jim Meyering  <meyering@lucent.com>
58100
58101         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
58102         obstack.c.
58103
58104 2000-01-22  Jim Meyering  <meyering@lucent.com>
58105
58106         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
58107
58108         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
58109
58110         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
58111         configure.in
58112         (AC_CHECK_HEADERS): Likewise for sh-utils.
58113         (AC_CHECK_HEADERS): Likewise for textutils.
58114         Merge the three lists of headers.
58115
58116         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
58117         from fileutils' configure.in.
58118
58119         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
58120         code. Moved tests into their own function (_jm_DECL_HEADERS) in
58121         check-decl.m4.
58122
58123         * m4/check-decl.m4: Use #if rather than #ifdef.
58124         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
58125         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
58126         (_jm_DECL_HEADERS): Define new function.
58127         (jm_CHECK_DECLARATIONS): Require it.
58128
58129 2000-01-22  Jim Meyering  <meyering@lucent.com>
58130
58131         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
58132         [! HAVE_DECL_STRTOULL]: Declare strtoull.
58133         Required for some AIX systems.  Reported by Christian Krackowizer.
58134         [TESTING] (main): New function.
58135
58136         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
58137         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
58138         letters.
58139
58140         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
58141         iswprint.
58142
58143         * lib/strverscmp.c (ISDIGIT): Define.
58144         (strverscmp): Use ISDIGIT, not isdigit.
58145
58146 2000-01-19  Jim Meyering  <meyering@lucent.com>
58147
58148         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
58149         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
58150         defines `struct timespec' in <sys/time.h>
58151
58152         * m4/c-bs-a.m4: Remove uses of changequote altogether.
58153         Thanks to Akim for explaining.
58154
58155 2000-01-17  Paul Eggert  <eggert@twinsun.com>
58156
58157         * lib/nanosleep.c (nanosleep):
58158         Don't use SA_INTERRUPT to decide whether to call sigaction, as
58159         POSIX.1 doesn't require SA_INTERRUPT and some systems
58160         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
58161         it's been part of POSIX.1 since day 1 (in 1988).
58162
58163 2000-01-17  Jim Meyering  <meyering@lucent.com>
58164
58165         * lib/interlock: Remove unused file.  Reported by François Pinard.
58166
58167 2000-01-16  Paul Eggert  <eggert@twinsun.com>
58168
58169         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
58170         alert, backslash, formfeed, and vertical tab unnecessarily in
58171         shell quoting style.
58172
58173 2000-01-16  Jim Meyering  <meyering@lucent.com>
58174
58175         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
58176         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
58177         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
58178         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
58179
58180 2000-01-16  Jim Meyering  <meyering@lucent.com>
58181
58182         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
58183         because the latter didn't work.
58184
58185 2000-01-15  Jim Meyering  <meyering@lucent.com>
58186
58187         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
58188         (AC_REPLACE_FUNCS): Add memcpy and memset.
58189         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
58190         Add strpbrk.
58191         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
58192
58193 2000-01-12  Jim Meyering  <meyering@lucent.com>
58194
58195         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
58196         (jm_PREREQ): Use it.
58197         (jm_PREREQ_READUTMP): New macro.
58198         (jm_PREREQ): Use it.
58199
58200 2000-01-11  Paul Eggert  <eggert@twinsun.com>
58201
58202         Quote multibyte characters correctly.
58203         * m4/c-bs-a.m4: New file.
58204         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
58205         (jm_PREREQ): Use it.
58206
58207 2000-01-11  Paul Eggert  <eggert@twinsun.com>
58208
58209         * m4/uintmax_t.m4: Port to autoconf 2.13.
58210
58211 2000-01-08  Jim Meyering  <meyering@ascend.com>
58212
58213         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
58214         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
58215
58216 2000-01-04  Jim Meyering  <meyering@ascend.com>
58217
58218         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
58219         jm_STRUCT_DIRENT_D_TYPE.
58220         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
58221         jm_STRUCT_DIRENT_D_INO.
58222         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
58223         jm_STRUCT_UTIMBUF.
58224         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
58225         renamings.
58226         * m4/utime.m4: Likewise.
58227
58228         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
58229         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
58230
58231 2000-01-03  Paul Eggert  <eggert@twinsun.com>
58232
58233         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
58234         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
58235
58236 2000-01-02  Jim Meyering  <meyering@ascend.com>
58237
58238         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
58239         remember if this is necessary.
58240
58241 1999-12-26  Jim Meyering  <meyering@ascend.com>
58242
58243         * m4/jm-macros.m4: Use it here.
58244         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
58245
58246 1999-12-23  Jim Meyering  <meyering@ascend.com>
58247
58248         * m4/jm-macros.m4: Check for clock_gettime (moved from
58249         fileutils/configure.in)
58250         Check for gettimeofday.
58251
58252 1999-12-20  Jim Meyering  <meyering@ascend.com>
58253
58254         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
58255         autoconf-2.14a-1999-12-20.
58256
58257 1999-12-19  Jim Meyering  <meyering@ascend.com>
58258
58259         * m4/lstat-slash.m4: New file.
58260         * m4/jm-macros.m4: Use the new macro:
58261         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
58262
58263 1999-12-07  Jim Meyering  <meyering@ascend.com>
58264
58265         * m4/perl.m4: Require that File::Compare be available, too.
58266         Too many systems seem to lack it.
58267
58268         * m4/strftime.m4: Add checks for most of the cpp macros tested in
58269         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
58270
58271 1999-11-18  Paul Eggert  <eggert@twinsun.com>
58272
58273         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
58274         problem with the QNX 4.25 shell, which doesn't propagate exit
58275         status of failed commands inside shell assignments.
58276
58277 1999-11-17  Jim Meyering  <meyering@ascend.com>
58278
58279         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
58280
58281 1999-11-07  Jim Meyering  <meyering@ascend.com>
58282
58283         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
58284
58285 1999-11-06  Jim Meyering  <meyering@ascend.com>
58286
58287         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
58288         * m4/jm-macros.m4 (jm_MACROS): Use it here.
58289
58290 1999-11-05  Jim Meyering  <meyering@ascend.com>
58291
58292         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
58293         configure.in of textutils, fileutils, and sh-utils into this one
58294         (shared between those packages) file.
58295         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
58296         AC_STRUCT_ST_BLKSIZE.
58297
58298 1999-11-03  Jim Meyering  <meyering@ascend.com>
58299
58300         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
58301         of AC_CHECK_TYPE checks includes unistd.h.
58302         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
58303         Suggestion from Akim Demaille.
58304
58305 1999-10-30  Jim Meyering  <meyering@ascend.com>
58306
58307         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
58308         m4-quoted string.
58309         * m4/ls-mntd-fs.m4: Likewise.
58310         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
58311         * m4/jm-winsz1.m4: Likewise.
58312
58313         * m4/const.m4: Remove file, since the fix made it into the experimental
58314         version of autoconf.
58315         * m4/mktime.m4: Likewise.
58316
58317         * m4/check-type.m4: Remove file, now that the latest version of
58318         AC_CHECK_TYPE takes a third arg to specify additional #includes.
58319
58320         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
58321         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
58322         AC_CHECK_TYPE.
58323
58324 1999-10-04  Jim Meyering  <meyering@ascend.com>
58325
58326         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
58327
58328 1999-09-22  Paul Eggert  <eggert@twinsun.com>
58329
58330         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
58331         2.95.1 bug with HP-UX 10.20.
58332
58333 1999-09-17  Jim Meyering  <meyering@ascend.com>
58334
58335         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
58336         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
58337         due to missing strdup (against sh-utils-2.0).
58338
58339 1999-08-29  Jim Meyering  <meyering@ascend.com>
58340
58341         * m4/jm-macros.m4: Require jm_BISON.
58342         * m4/bison.m4: New file.
58343
58344 1999-08-17  Paul Eggert  <eggert@twinsun.com>
58345
58346         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
58347         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
58348
58349 1999-08-05  Jim Meyering  <meyering@ascend.com>
58350
58351         * m4/getline.m4: Rename test file from conftestdata to conftest.data
58352         to avoid conflicts with `conftest' on 8+3 filesystems.
58353         Suggestion from Eli Zaretskii.
58354
58355 1999-08-04  Jim Meyering  <meyering@ascend.com>
58356
58357         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
58358         fileutils and sh-utils (textutils's getline test was inadequate).
58359         (AM_FUNC_GETLINE): Run this test.
58360         (AC_CHECK_FUNCS): Check for getdelim.
58361         Reported by Bob Proulx.
58362
58363 1999-08-02  Jim Meyering  <meyering@ascend.com>
58364
58365         * m4/jm-macros.m4: Add a comment.
58366
58367 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58368
58369         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
58370         <inttypes.h> defines strtoumax as a macro (and not as a
58371         function).
58372
58373 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58374
58375         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
58376         that we can shift, multiply and divide unsigned long long
58377         values; Ultrix cc can't do it.
58378
58379 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58380
58381         * m4/mktime.m4: New file, which is a preview of what should appear
58382         in the next public autoconf release.
58383
58384 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58385
58386         * m4/lfs.m4: Remove this file.
58387         * m4/largefile.m4: New file.  It contains the old contents of
58388         lfs.m4, except that all names with prefix AC_LFS have been
58389         changed to use the prefix AC_SYS_LARGEFILE instead, to be
58390         compatible with future autoconf versions.  Also, some minor m4
58391         quoting problems have been fixed.
58392
58393 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58394
58395         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
58396         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
58397         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
58398         and simplify the shell code.
58399
58400 1999-08-01  Jim Meyering  <meyering@ascend.com>
58401
58402         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
58403         m4.
58404
58405 1999-07-20  Jim Meyering  <meyering@ascend.com>
58406
58407         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
58408
58409 1999-07-15  Jim Meyering  <meyering@ascend.com>
58410
58411         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
58412
58413 1999-05-22  Jim Meyering  <meyering@ascend.com>
58414
58415         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
58416
58417 1999-05-20  Jim Meyering  <meyering@ascend.com>
58418
58419         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
58420         Add a colon after each `then' in case $4 is empty.
58421
58422 1999-05-16  Jim Meyering  <meyering@ascend.com>
58423
58424         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
58425
58426 1999-05-10  Jim Meyering  <meyering@ascend.com>
58427
58428         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
58429
58430         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
58431         AC_FUNC_MKTIME.
58432
58433 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
58434
58435         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
58436
58437 1999-05-04  Paul Eggert  <eggert@twinsun.com>
58438
58439         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
58440         not CPPFLAGS, so that linking works correctly in IRIX.
58441
58442 1999-04-30  Paul Eggert  <eggert@twinsun.com>
58443
58444         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
58445
58446 1999-04-20  Paul Eggert  <eggert@twinsun.com>
58447
58448         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
58449         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
58450         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
58451         jm_AC_TYPE_UNSIGNED_LONG_LONG.
58452         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
58453
58454         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
58455
58456 1999-04-20  Jim Meyering  <meyering@ascend.com>
58457
58458         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
58459         AC_REPLACE xstroull if necessary.  From Paul Eggert.
58460         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
58461
58462 1999-04-18  Jim Meyering  <meyering@ascend.com>
58463
58464         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
58465         * m4/jm-macros.m4: Use it.
58466
58467 1999-04-06  Jim Meyering  <meyering@ascend.com>
58468
58469         * m4/strftime.m4: Remove test for %f.
58470
58471 1999-03-29  Jim Meyering  <meyering@ascend.com>
58472
58473         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
58474         superset of the AC_TYPE_* checks in the textutils, fileutils,
58475         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
58476         AC_TYPE_PID_T.
58477
58478 1999-03-28  Jim Meyering  <meyering@ascend.com>
58479
58480         * m4/jm-macros.m4: Define GNU_PACKAGE here.
58481         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
58482         replaced e.g., in the *.sh files of the sh-utils.
58483
58484 1999-03-20  Jim Meyering  <meyering@ascend.com>
58485
58486         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
58487         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
58488         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
58489
58490 1999-03-19  Jim Meyering  <meyering@ascend.com>
58491
58492         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
58493
58494 1999-03-12  Jim Meyering  <meyering@ascend.com>
58495
58496         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
58497
58498 1999-03-07  Jim Meyering  <meyering@ascend.com>
58499
58500         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
58501         declared.
58502
58503 1999-02-17  Jim Meyering  <meyering@ascend.com>
58504
58505         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
58506         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
58507
58508 1999-02-07  Jim Meyering  <meyering@ascend.com>
58509
58510         * m4/group-member.m4: New file -- extracted from sh-utils'
58511         configure.in.
58512
58513         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
58514         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
58515
58516 1999-02-06  Jim Meyering  <meyering@ascend.com>
58517
58518         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
58519         * m4/fnmatch.m4: Likewise.
58520         * m4/getgroups.m4: Likewise.
58521         * m4/lstat.m4: Likewise.
58522         * m4/malloc.m4: Likewise.
58523         * m4/putenv.m4: Likewise.
58524         * m4/realloc.m4: Likewise.
58525         * m4/regex.m4: Likewise.
58526         * m4/stat.m4: Likewise.
58527         * m4/strftime.m4: Likewise.
58528         Suggestion from Alain Magloire.
58529
58530         * m4/chown.m4: Use `.$ac_objext', not `.o'.
58531         * m4/fnmatch.m4: Likewise.
58532         * m4/getgroups.m4: Likewise.
58533         * m4/getline.m4: Likewise.
58534         * m4/lstat.m4: Likewise.
58535         * m4/malloc.m4: Likewise.
58536         * m4/memcmp.m4: Likewise.
58537         * m4/putenv.m4: Likewise.
58538         * m4/realloc.m4: Likewise.
58539         * m4/regex.m4: Likewise.
58540         * m4/stat.m4: Likewise.
58541         * m4/strftime.m4: Likewise.
58542         Suggestion from Alain Magloire.
58543
58544         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
58545         an argument.
58546
58547         * m4/regex.m4: Add a run-time Test for proper operation of
58548         re_compile_pattern.
58549
58550 1999-01-31  Jim Meyering  <meyering@ascend.com>
58551
58552         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
58553
58554 1999-01-30  Jim Meyering  <meyering@ascend.com>
58555
58556         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
58557
58558         * m4/jm-mktime.m4: Make this a wrapper around the official
58559         AM_FUNC_MKTIME rather than my private copy, now that the official one
58560         is up to date.
58561         * m4/mktime.m4: Remove file.
58562
58563         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
58564         * m4/uptime.m4: Likewise.
58565         * m4/uintmax_t.m4: Likewise.
58566
58567 1999-01-28  Jim Meyering  <meyering@ascend.com>
58568
58569         * m4/jm-macros.m4: Use jm_AFS.
58570         * m4/afs.m4: New file (from fileutils' configure.in).
58571
58572         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
58573         * m4/chown.m4: Likewise.
58574         * m4/d-ino.m4: Likewise.
58575         * m4/d-type.m4: Likewise.
58576         * m4/fnmatch.m4: Likewise.
58577         * m4/getgroups.m4: Likewise.
58578         * m4/gettext.m4: Likewise.
58579         * m4/jm-mktime.m4: Likewise.
58580         * m4/jm-winsz2.m4: Likewise.
58581         * m4/lcmessage.m4: Likewise.
58582         * m4/ls-mntd-fs.m4: Likewise.
58583         * m4/malloc.m4: Likewise.
58584         * m4/memcmp.m4: Likewise.
58585         * m4/putenv.m4: Likewise.
58586         * m4/realloc.m4: Likewise.
58587         * m4/st_mtim.m4: Likewise.
58588         * m4/strftime.m4: Likewise.
58589
58590 1999-01-16  Jim Meyering  <meyering@ascend.com>
58591
58592         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
58593         (ARGMATCH_DIE_DECL): Define.
58594
58595 1999-01-12  Jim Meyering  <meyering@ascend.com>
58596
58597         * m4/Makefile.am.in: Rewrite to avoid using fmt.
58598         Reported by Lars Hecking.
58599
58600 1999-01-10  Jim Meyering  <meyering@ascend.com>
58601
58602         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
58603         gross kludge.
58604         * m4/inttypes_h.m4: Likewise.
58605         * m4/lstat.m4: Likewise.
58606         * m4/malloc.m4: Likewise.
58607         * m4/readdir.m4: Likewise.
58608         * m4/realloc.m4: Likewise.
58609         * m4/st_dm_mode.m4: Likewise.
58610         * m4/stat.m4: Likewise.
58611         * m4/utimbuf.m4: Likewise.
58612         * m4/utimes.m4: Likewise.
58613
58614         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
58615         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
58616         comments in config.h.in are meaningful.
58617
58618         * m4/jm-macros.m4: Require autoconf-2.13 here.
58619
58620         * m4/regex.m4: By default, don't use the included regex.c on systems
58621         with glibc 2.  Suggestion from Uli Drepper.
58622
58623 1999-01-02  Jim Meyering  <meyering@ascend.com>
58624
58625         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
58626
58627 1998-12-18  Jim Meyering  <meyering@ascend.com>
58628
58629         * m4/Makefile.am.in (Makefile.am): Simplify rule.
58630         Based on a suggestion from Lars Hecking.
58631
58632 1998-11-16  Paul Eggert  <eggert@twinsun.com>
58633
58634         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
58635
58636 1998-11-16  Jim Meyering  <meyering@ascend.com>
58637
58638         * m4/lfs.m4: Double-quote the `uname...` expression.
58639
58640 1998-11-14  Jim Meyering  <meyering@ascend.com>
58641
58642         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
58643         * m4/stat.m4: Likewise.
58644
58645 1998-11-03  Jim Meyering  <meyering@ascend.com>
58646
58647         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
58648         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
58649
58650 1998-10-18  Jim Meyering  <meyering@ascend.com>
58651
58652         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
58653
58654 1998-10-17  Jim Meyering  <meyering@ascend.com>
58655
58656         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
58657         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
58658         calls for those previously hard-coded headers.  Instead, take a new
58659         parameter.
58660         (jm_CHECK_DECLARATIONS): Reflect interface change.
58661         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
58662         (jm_CHECK_DECL_LOCALTIME_R): New macro.
58663
58664         * m4/mktime.m4: Test for spring-forward gap before long-running test.
58665
58666 1998-10-14  Jim Meyering  <meyering@ascend.com>
58667
58668         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
58669         instead of "TZ=America/Vancouver".  From Paul Eggert.
58670
58671 1998-10-11  Jim Meyering  <meyering@ascend.com>
58672
58673         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
58674         This adds a test for a recently added compatibility fix for mktime.c.
58675         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
58676
58677 1998-09-27  Jim Meyering  <meyering@ascend.com>
58678
58679         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
58680
58681         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
58682         ../configure.in, including a change from Gordon Matzigkeit to allow
58683         cross-compiling for the Hurd.
58684
58685         * m4/glibc.m4: New file/macro to test for the GNU C Library
58686         versions 1 and 2.  From Gordon Matzigkeit.
58687         Indent.
58688
58689 1998-09-21  Jim Meyering  <meyering@ascend.com>
58690
58691         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
58692
58693 1998-08-18  Paul Eggert  <eggert@twinsun.com>
58694
58695         Port nanosecond-resolution times to UnixWare 2.1.2 and
58696         pedantic Solaris 2.6.
58697
58698         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
58699         AC_STRUCT_ST_MTIM.
58700         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
58701         Generate name of ns member, instead of just 1 or undef.
58702         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
58703
58704 1998-08-15  Jim Meyering  <meyering@ascend.com>
58705
58706         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
58707         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
58708         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
58709         instead of jm_TYPE_SSIZE_T.
58710
58711 1998-08-12  Jim Meyering  <meyering@ascend.com>
58712
58713         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
58714
58715 1998-08-02  Jim Meyering  <meyering@ascend.com>
58716
58717         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
58718         in acconfig.h manually.
58719
58720 1998-07-31  Paul Eggert  <eggert@twinsun.com>
58721
58722         * m4/st_mtim.m4: New file.
58723
58724 1998-07-28  Jim Meyering  <meyering@ascend.com>
58725
58726         * m4/utimes.m4: Undef stat.
58727
58728 1998-07-25  Jim Meyering  <meyering@ascend.com>
58729
58730         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
58731         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
58732
58733 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
58734
58735         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
58736         uid and gid actually remain unchanged.
58737
58738 1998-07-07  Jim Meyering  <meyering@ascend.com>
58739
58740         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
58741
58742 1998-07-04  Jim Meyering  <meyering@ascend.com>
58743
58744         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
58745         to prove that this macro can be used in packages without regex.c.
58746
58747 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
58748
58749         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
58750         is to be used.
58751
58752 1998-07-03  Jim Meyering  <meyering@ascend.com>
58753
58754         * m4/gettext.m4: Add -lintl if it's found to be necessary.
58755
58756         * m4/gettext.m4: New file -- from gettext-0.10.35.
58757         * m4/lcmessage.m4: Likewise.
58758         * m4/progtest.m4: Likewise.
58759
58760         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
58761         * m4/jm-macros.m4: Require the new macro.
58762
58763 1998-06-29  Jim Meyering  <meyering@ascend.com>
58764
58765         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
58766         for the definition of NGROUPS (used in a system header included
58767         by sys/mount.h).
58768
58769 1998-06-28  Jim Meyering  <meyering@ascend.com>
58770
58771         * m4/ls-mntd-fs.m4: New file.
58772         * m4/fstypename.m4: New file.
58773
58774         * m4/jm-macros.m4: Require the new macro.
58775         * m4/jm-glibc-io.m4: New file.
58776
58777 1998-05-19  Jim Meyering  <meyering@ascend.com>
58778
58779         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
58780         * m4/lchown.m4: New file.
58781
58782         * m4/Makefile.am.in: New file.
58783         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
58784
58785 1998-05-14  Jim Meyering  <meyering@ascend.com>
58786
58787         * m4/Makefile.am (EXTRA_DIST): Add them.
58788         * m4/jm-macros.m4: New file.
58789         * m4/utimbuf.m4: New file.
58790
58791 1998-05-12  Jim Meyering  <meyering@ascend.com>
58792
58793         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
58794
58795 1998-05-11  Jim Meyering  <meyering@ascend.com>
58796
58797         * m4/isc-posix.m4: New file.
58798
58799 1998-05-10  Jim Meyering  <meyering@ascend.com>
58800
58801         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
58802
58803 1998-05-09  Jim Meyering  <meyering@ascend.com>
58804
58805         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
58806         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
58807         with automake.
58808
58809         * m4/ssize_t.m4: New file.
58810         * m4/mktime.m4: Remove file -- the new automake has this now.
58811
58812 1998-04-26  Jim Meyering  <meyering@ascend.com>
58813
58814         * m4/assert.m4: New file.
58815         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
58816
58817 1998-04-05  Jim Meyering  <meyering@ascend.com>
58818
58819         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
58820         (jm_PREREQ): Use it here.
58821
58822 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
58823
58824         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
58825         in acconfig.h.
58826
58827 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
58828
58829         * m4/prereq.m4: New file.
58830         * m4/error.m4: New file.
58831         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
58832
58833 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
58834
58835         * m4/getline.m4: Don't set am_cv_func_working_getline before the
58836         cache-check for the same variable -- that defeated the purpose of
58837         the test; the test program was never run.  This was a problem only
58838         on systems with losing getline functions -- HP-UX 10.20 is one.
58839         Reported by Bjorn Helgaas.
58840
58841 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
58842
58843         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
58844
58845 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
58846
58847         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
58848
58849         * m4/const.m4: New file.  Use an initializer in this declaration
58850         typedef int charset[2]; const charset x;
58851         Reported by Bob Glickstein.
58852
58853 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
58854
58855         * m4/chown.m4: Fix reversed types on -1 args to chown.
58856         From Kaveh Ghazi.
58857
58858 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
58859
58860         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
58861         Add lseek and memchr.
58862
58863         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
58864         T.E.Dickey <dickey@clark.net> said that some older preprocessors
58865         have a 20-character limit on names.
58866
58867 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
58868
58869         * m4/inttypes_h.m4: New file.
58870         * m4/uintmax_t.m4: New file.
58871         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
58872
58873
58874         -----
58875
58876         Local Variables:
58877         coding: utf-8
58878         End:
58879
58880         Copyright (C) 1997-2009 Free Software Foundation, Inc.
58881
58882         Copying and distribution of this file, with or without
58883         modification, are permitted provided the copyright notice
58884         and this notice are preserved.